blob: c5591293634a171be87c2a4ce57741df22e471bb [file] [log] [blame]
Robert Winkler2a90ed02013-06-17 11:31:29 -07001/*
2 * Copyright (C) 2013, Boundary Devices <info@boundarydevices.com>
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., http://www.fsf.org/about/contact/
20 *
21 */
22
Simon Glass1ab16922022-07-31 12:28:48 -060023#include <display_options.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060024#include <env.h>
Robert Winkler2a90ed02013-06-17 11:31:29 -070025#include <splash.h>
Simon Glassbcb87b62022-10-18 07:10:26 -060026#include <video.h>
Tom Rinidec7ea02024-05-20 13:35:03 -060027#include <vsprintf.h>
28#include <linux/kernel.h>
Robert Winkler2a90ed02013-06-17 11:31:29 -070029
Alexey Brodkine0af4f32016-07-01 22:48:16 +030030static struct splash_location default_splash_locations[] = {
31 {
32 .name = "sf",
33 .storage = SPLASH_STORAGE_SF,
34 .flags = SPLASH_STORAGE_RAW,
35 .offset = 0x0,
36 },
37 {
38 .name = "mmc_fs",
39 .storage = SPLASH_STORAGE_MMC,
40 .flags = SPLASH_STORAGE_FS,
41 .devpart = "0:1",
42 },
43 {
Julien Massonc7b67d92022-10-17 10:33:21 +020044 .name = "mmc_raw",
45 .storage = SPLASH_STORAGE_MMC,
46 .flags = SPLASH_STORAGE_RAW,
47 .devpart = "0:1",
48 },
49 {
Alexey Brodkine0af4f32016-07-01 22:48:16 +030050 .name = "usb_fs",
51 .storage = SPLASH_STORAGE_USB,
52 .flags = SPLASH_STORAGE_FS,
53 .devpart = "0:1",
54 },
55 {
56 .name = "sata_fs",
57 .storage = SPLASH_STORAGE_SATA,
58 .flags = SPLASH_STORAGE_FS,
59 .devpart = "0:1",
60 },
61};
62
Simon Glass8e5a8b62021-11-19 13:24:01 -070063#ifdef CONFIG_VIDEO_LOGO
Anatolij Gustschin2d902ea2019-09-18 16:47:33 +020064
65#include <bmp_logo_data.h>
66
67static int splash_video_logo_load(void)
68{
69 char *splashimage;
Ye Lia2cdea22020-06-10 02:52:22 -070070 ulong bmp_load_addr;
Anatolij Gustschin2d902ea2019-09-18 16:47:33 +020071
72 splashimage = env_get("splashimage");
73 if (!splashimage)
74 return -ENOENT;
75
Simon Glass3ff49ec2021-07-24 09:03:29 -060076 bmp_load_addr = hextoul(splashimage, 0);
Anatolij Gustschin2d902ea2019-09-18 16:47:33 +020077 if (!bmp_load_addr) {
78 printf("Error: bad 'splashimage' address\n");
79 return -EFAULT;
80 }
81
82 memcpy((void *)bmp_load_addr, bmp_logo_bitmap,
83 ARRAY_SIZE(bmp_logo_bitmap));
84
85 return 0;
86}
87#else
88static inline int splash_video_logo_load(void) { return -ENOSYS; }
89#endif
90
Jeroen Hofsteef7f37e22014-06-26 19:53:16 +020091__weak int splash_screen_prepare(void)
Robert Winkler2a90ed02013-06-17 11:31:29 -070092{
Nikhil M Jain33ff6122023-04-20 17:41:09 +053093 if (CONFIG_IS_ENABLED(SPLASH_SOURCE))
Anatolij Gustschin2d902ea2019-09-18 16:47:33 +020094 return splash_source_load(default_splash_locations,
95 ARRAY_SIZE(default_splash_locations));
96
97 return splash_video_logo_load();
Robert Winkler2a90ed02013-06-17 11:31:29 -070098}
Robert Winkler8571c6c2013-06-17 11:31:30 -070099
Anatolij Gustschinb9b5eaf2013-07-02 00:04:05 +0200100void splash_get_pos(int *x, int *y)
101{
Simon Glass64b723f2017-08-03 12:22:12 -0600102 char *s = env_get("splashpos");
Anatolij Gustschinb9b5eaf2013-07-02 00:04:05 +0200103
Nikhil M Jain4bd4c312023-04-20 17:41:12 +0530104 if (!CONFIG_IS_ENABLED(SPLASH_SCREEN_ALIGN) || !s)
Anatolij Gustschinb9b5eaf2013-07-02 00:04:05 +0200105 return;
106
107 if (s[0] == 'm')
108 *x = BMP_ALIGN_CENTER;
109 else
110 *x = simple_strtol(s, NULL, 0);
111
112 s = strchr(s + 1, ',');
113 if (s != NULL) {
114 if (s[1] == 'm')
115 *y = BMP_ALIGN_CENTER;
116 else
117 *y = simple_strtol(s + 1, NULL, 0);
118 }
119}
Nikita Kiryanov1ae13d32015-02-03 13:32:32 +0200120
Nikhil M Jain33ff6122023-04-20 17:41:09 +0530121#if CONFIG_IS_ENABLED(VIDEO) && !CONFIG_IS_ENABLED(HIDE_LOGO_VERSION)
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200122
123#ifdef CONFIG_VIDEO_LOGO
124#include <bmp_logo.h>
125#endif
126#include <dm.h>
127#include <video_console.h>
128#include <video_font.h>
Dzmitry Sankouski7fa964a2023-03-07 13:21:14 +0300129#include <video_font_data.h>
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200130
131void splash_display_banner(void)
132{
Dzmitry Sankouski7fa964a2023-03-07 13:21:14 +0300133 struct video_fontdata __maybe_unused *fontdata = fonts;
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200134 struct udevice *dev;
135 char buf[DISPLAY_OPTIONS_BANNER_LENGTH];
136 int col, row, ret;
137
138 ret = uclass_get_device(UCLASS_VIDEO_CONSOLE, 0, &dev);
139 if (ret)
140 return;
141
Dzmitry Sankouski7fa964a2023-03-07 13:21:14 +0300142#if IS_ENABLED(CONFIG_VIDEO_LOGO)
143 col = BMP_LOGO_WIDTH / fontdata->width + 1;
144 row = BMP_LOGO_HEIGHT / fontdata->height + 1;
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200145#else
146 col = 0;
147 row = 0;
148#endif
149
150 display_options_get_banner(false, buf, sizeof(buf));
151 vidconsole_position_cursor(dev, col, 1);
152 vidconsole_put_string(dev, buf);
153 vidconsole_position_cursor(dev, 0, row);
154}
Simon Glass52cb5042022-10-18 07:46:31 -0600155#endif /* CONFIG_VIDEO && !CONFIG_HIDE_LOGO_VERSION */
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200156
Igor Opaniuk1f6bfad2019-05-29 09:01:43 +0000157/*
158 * Common function to show a splash image if env("splashimage") is set.
Simon Glassbcb87b62022-10-18 07:10:26 -0600159 * For additional details please refer to doc/README.splashprepare.
Igor Opaniuk1f6bfad2019-05-29 09:01:43 +0000160 */
Igor Opaniuk1f6bfad2019-05-29 09:01:43 +0000161int splash_display(void)
Nikita Kiryanov1ae13d32015-02-03 13:32:32 +0200162{
Igor Opaniuk1f6bfad2019-05-29 09:01:43 +0000163 ulong addr;
164 char *s;
Nikita Kiryanov1ae13d32015-02-03 13:32:32 +0200165 int x = 0, y = 0, ret;
Nikhil M Jain4bd4c312023-04-20 17:41:12 +0530166 if (!CONFIG_IS_ENABLED(SPLASH_SCREEN))
167 return -ENOSYS;
Igor Opaniuk1f6bfad2019-05-29 09:01:43 +0000168 s = env_get("splashimage");
169 if (!s)
170 return -EINVAL;
171
Simon Glass3ff49ec2021-07-24 09:03:29 -0600172 addr = hextoul(s, NULL);
Nikita Kiryanov1ae13d32015-02-03 13:32:32 +0200173 ret = splash_screen_prepare();
174 if (ret)
175 return ret;
176
177 splash_get_pos(&x, &y);
178
Nikhil M Jain4bd4c312023-04-20 17:41:12 +0530179 if (CONFIG_IS_ENABLED(BMP))
180 ret = bmp_display(addr, x, y);
181 else
182 return -ENOSYS;
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200183
184 /* Skip banner output on video console if the logo is not at 0,0 */
185 if (x || y)
186 goto end;
187
Nikhil M Jain33ff6122023-04-20 17:41:09 +0530188#if CONFIG_IS_ENABLED(VIDEO) && !CONFIG_IS_ENABLED(HIDE_LOGO_VERSION)
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200189 splash_display_banner();
Anatolij Gustschin11f71182019-10-30 15:04:10 +0100190#endif
Anatolij Gustschinc07ecbb2019-09-20 17:23:41 +0200191end:
192 return ret;
Nikita Kiryanov1ae13d32015-02-03 13:32:32 +0200193}