logo.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Linux logo to be displayed on boot
  3. *
  4. * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu)
  5. * Copyright (C) 1996,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  6. * Copyright (C) 2001 Greg Banks <gnb@alphalink.com.au>
  7. * Copyright (C) 2001 Jan-Benedict Glaw <jbglaw@lug-owl.de>
  8. * Copyright (C) 2003 Geert Uytterhoeven <geert@linux-m68k.org>
  9. */
  10. #include <linux/linux_logo.h>
  11. #include <linux/stddef.h>
  12. #include <linux/module.h>
  13. #ifdef CONFIG_M68K
  14. #include <asm/setup.h>
  15. #endif
  16. #ifdef CONFIG_MIPS
  17. #include <asm/bootinfo.h>
  18. #endif
  19. static bool nologo;
  20. module_param(nologo, bool, 0);
  21. MODULE_PARM_DESC(nologo, "Disables startup logo");
  22. /*
  23. * Logos are located in the initdata, and will be freed in kernel_init.
  24. * Use late_init to mark the logos as freed to prevent any further use.
  25. */
  26. static bool logos_freed;
  27. static int __init fb_logo_late_init(void)
  28. {
  29. logos_freed = true;
  30. return 0;
  31. }
  32. late_initcall(fb_logo_late_init);
  33. /* logo's are marked __initdata. Use __init_refok to tell
  34. * modpost that it is intended that this function uses data
  35. * marked __initdata.
  36. */
  37. const struct linux_logo * __init_refok fb_find_logo(int depth)
  38. {
  39. const struct linux_logo *logo = NULL;
  40. if (nologo || logos_freed)
  41. return NULL;
  42. if (depth >= 1) {
  43. #ifdef CONFIG_LOGO_LINUX_MONO
  44. /* Generic Linux logo */
  45. logo = &logo_linux_mono;
  46. #endif
  47. #ifdef CONFIG_LOGO_SUPERH_MONO
  48. /* SuperH Linux logo */
  49. logo = &logo_superh_mono;
  50. #endif
  51. }
  52. if (depth >= 4) {
  53. #ifdef CONFIG_LOGO_LINUX_VGA16
  54. /* Generic Linux logo */
  55. logo = &logo_linux_vga16;
  56. #endif
  57. #ifdef CONFIG_LOGO_BLACKFIN_VGA16
  58. /* Blackfin processor logo */
  59. logo = &logo_blackfin_vga16;
  60. #endif
  61. #ifdef CONFIG_LOGO_SUPERH_VGA16
  62. /* SuperH Linux logo */
  63. logo = &logo_superh_vga16;
  64. #endif
  65. }
  66. if (depth >= 8) {
  67. #ifdef CONFIG_LOGO_LINUX_CLUT224
  68. /* Generic Linux logo */
  69. logo = &logo_linux_clut224;
  70. #endif
  71. #ifdef CONFIG_LOGO_BLACKFIN_CLUT224
  72. /* Blackfin Linux logo */
  73. logo = &logo_blackfin_clut224;
  74. #endif
  75. #ifdef CONFIG_LOGO_DEC_CLUT224
  76. /* DEC Linux logo on MIPS/MIPS64 or ALPHA */
  77. logo = &logo_dec_clut224;
  78. #endif
  79. #ifdef CONFIG_LOGO_MAC_CLUT224
  80. /* Macintosh Linux logo on m68k */
  81. if (MACH_IS_MAC)
  82. logo = &logo_mac_clut224;
  83. #endif
  84. #ifdef CONFIG_LOGO_PARISC_CLUT224
  85. /* PA-RISC Linux logo */
  86. logo = &logo_parisc_clut224;
  87. #endif
  88. #ifdef CONFIG_LOGO_SGI_CLUT224
  89. /* SGI Linux logo on MIPS/MIPS64 and VISWS */
  90. logo = &logo_sgi_clut224;
  91. #endif
  92. #ifdef CONFIG_LOGO_SUN_CLUT224
  93. /* Sun Linux logo */
  94. logo = &logo_sun_clut224;
  95. #endif
  96. #ifdef CONFIG_LOGO_SUPERH_CLUT224
  97. /* SuperH Linux logo */
  98. logo = &logo_superh_clut224;
  99. #endif
  100. #ifdef CONFIG_LOGO_M32R_CLUT224
  101. /* M32R Linux logo */
  102. logo = &logo_m32r_clut224;
  103. #endif
  104. }
  105. return logo;
  106. }
  107. EXPORT_SYMBOL_GPL(fb_find_logo);