blob: 36aa050f9a214addb3ab80347e8b855e68e91673 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/*
3 * Linux logo to be displayed on boot
4 *
5 * Copyright (C) 1996 Larry Ewing (lewing@isc.tamu.edu)
6 * Copyright (C) 1996,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
7 * Copyright (C) 2001 Greg Banks <gnb@alphalink.com.au>
8 * Copyright (C) 2001 Jan-Benedict Glaw <jbglaw@lug-owl.de>
9 * Copyright (C) 2003 Geert Uytterhoeven <geert@linux-m68k.org>
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/linux_logo.h>
13#include <linux/stddef.h>
14#include <linux/module.h>
15
16#ifdef CONFIG_M68K
17#include <asm/setup.h>
18#endif
19
Rusty Russell90ab5ee2012-01-13 09:32:20 +103020static bool nologo;
Randy Dunlapaccaa242007-10-16 01:29:37 -070021module_param(nologo, bool, 0);
22MODULE_PARM_DESC(nologo, "Disables startup logo");
23
Tomi Valkeinen92b004d2014-12-18 13:40:06 +020024/*
25 * Logos are located in the initdata, and will be freed in kernel_init.
26 * Use late_init to mark the logos as freed to prevent any further use.
27 */
28
29static bool logos_freed;
30
31static int __init fb_logo_late_init(void)
32{
33 logos_freed = true;
34 return 0;
35}
36
Takeshi Kihara3fc4f2f2017-03-20 18:31:00 +010037late_initcall_sync(fb_logo_late_init);
Tomi Valkeinen92b004d2014-12-18 13:40:06 +020038
Fabian Frederickbd721ea2016-08-02 14:03:33 -070039/* logo's are marked __initdata. Use __ref to tell
Sam Ravnborg92cc6b02007-06-03 00:47:53 +020040 * modpost that it is intended that this function uses data
41 * marked __initdata.
42 */
Fabian Frederickbd721ea2016-08-02 14:03:33 -070043const struct linux_logo * __ref fb_find_logo(int depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 const struct linux_logo *logo = NULL;
46
Tomi Valkeinen92b004d2014-12-18 13:40:06 +020047 if (nologo || logos_freed)
Randy Dunlapaccaa242007-10-16 01:29:37 -070048 return NULL;
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 if (depth >= 1) {
51#ifdef CONFIG_LOGO_LINUX_MONO
52 /* Generic Linux logo */
53 logo = &logo_linux_mono;
54#endif
55#ifdef CONFIG_LOGO_SUPERH_MONO
56 /* SuperH Linux logo */
57 logo = &logo_superh_mono;
58#endif
59 }
60
61 if (depth >= 4) {
62#ifdef CONFIG_LOGO_LINUX_VGA16
63 /* Generic Linux logo */
64 logo = &logo_linux_vga16;
65#endif
66#ifdef CONFIG_LOGO_SUPERH_VGA16
67 /* SuperH Linux logo */
68 logo = &logo_superh_vga16;
69#endif
70 }
71
72 if (depth >= 8) {
73#ifdef CONFIG_LOGO_LINUX_CLUT224
74 /* Generic Linux logo */
75 logo = &logo_linux_clut224;
76#endif
77#ifdef CONFIG_LOGO_DEC_CLUT224
78 /* DEC Linux logo on MIPS/MIPS64 or ALPHA */
Ralf Baechle41702d92007-10-18 03:04:37 -070079 logo = &logo_dec_clut224;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#endif
81#ifdef CONFIG_LOGO_MAC_CLUT224
82 /* Macintosh Linux logo on m68k */
83 if (MACH_IS_MAC)
84 logo = &logo_mac_clut224;
85#endif
86#ifdef CONFIG_LOGO_PARISC_CLUT224
87 /* PA-RISC Linux logo */
88 logo = &logo_parisc_clut224;
89#endif
90#ifdef CONFIG_LOGO_SGI_CLUT224
H. Peter Anvinc5f9ee32014-02-25 12:05:34 -080091 /* SGI Linux logo on MIPS/MIPS64 */
Ralf Baechle41702d92007-10-18 03:04:37 -070092 logo = &logo_sgi_clut224;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
94#ifdef CONFIG_LOGO_SUN_CLUT224
95 /* Sun Linux logo */
96 logo = &logo_sun_clut224;
97#endif
98#ifdef CONFIG_LOGO_SUPERH_CLUT224
99 /* SuperH Linux logo */
100 logo = &logo_superh_clut224;
101#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103 return logo;
104}
105EXPORT_SYMBOL_GPL(fb_find_logo);