Robert Winkler | 2a90ed0 | 2013-06-17 11:31:29 -0700 | [diff] [blame] | 1 | /* |
| 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 Glass | 1ab1692 | 2022-07-31 12:28:48 -0600 | [diff] [blame] | 23 | #include <display_options.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 24 | #include <env.h> |
Robert Winkler | 2a90ed0 | 2013-06-17 11:31:29 -0700 | [diff] [blame] | 25 | #include <splash.h> |
Simon Glass | bcb87b6 | 2022-10-18 07:10:26 -0600 | [diff] [blame] | 26 | #include <video.h> |
Tom Rini | dec7ea0 | 2024-05-20 13:35:03 -0600 | [diff] [blame] | 27 | #include <vsprintf.h> |
| 28 | #include <linux/kernel.h> |
Robert Winkler | 2a90ed0 | 2013-06-17 11:31:29 -0700 | [diff] [blame] | 29 | |
Alexey Brodkin | e0af4f3 | 2016-07-01 22:48:16 +0300 | [diff] [blame] | 30 | static 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 Masson | c7b67d9 | 2022-10-17 10:33:21 +0200 | [diff] [blame] | 44 | .name = "mmc_raw", |
| 45 | .storage = SPLASH_STORAGE_MMC, |
| 46 | .flags = SPLASH_STORAGE_RAW, |
| 47 | .devpart = "0:1", |
| 48 | }, |
| 49 | { |
Alexey Brodkin | e0af4f3 | 2016-07-01 22:48:16 +0300 | [diff] [blame] | 50 | .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 Glass | 8e5a8b6 | 2021-11-19 13:24:01 -0700 | [diff] [blame] | 63 | #ifdef CONFIG_VIDEO_LOGO |
Anatolij Gustschin | 2d902ea | 2019-09-18 16:47:33 +0200 | [diff] [blame] | 64 | |
| 65 | #include <bmp_logo_data.h> |
| 66 | |
| 67 | static int splash_video_logo_load(void) |
| 68 | { |
| 69 | char *splashimage; |
Ye Li | a2cdea2 | 2020-06-10 02:52:22 -0700 | [diff] [blame] | 70 | ulong bmp_load_addr; |
Anatolij Gustschin | 2d902ea | 2019-09-18 16:47:33 +0200 | [diff] [blame] | 71 | |
| 72 | splashimage = env_get("splashimage"); |
| 73 | if (!splashimage) |
| 74 | return -ENOENT; |
| 75 | |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 76 | bmp_load_addr = hextoul(splashimage, 0); |
Anatolij Gustschin | 2d902ea | 2019-09-18 16:47:33 +0200 | [diff] [blame] | 77 | 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 |
| 88 | static inline int splash_video_logo_load(void) { return -ENOSYS; } |
| 89 | #endif |
| 90 | |
Jeroen Hofstee | f7f37e2 | 2014-06-26 19:53:16 +0200 | [diff] [blame] | 91 | __weak int splash_screen_prepare(void) |
Robert Winkler | 2a90ed0 | 2013-06-17 11:31:29 -0700 | [diff] [blame] | 92 | { |
Nikhil M Jain | 33ff612 | 2023-04-20 17:41:09 +0530 | [diff] [blame] | 93 | if (CONFIG_IS_ENABLED(SPLASH_SOURCE)) |
Anatolij Gustschin | 2d902ea | 2019-09-18 16:47:33 +0200 | [diff] [blame] | 94 | return splash_source_load(default_splash_locations, |
| 95 | ARRAY_SIZE(default_splash_locations)); |
| 96 | |
| 97 | return splash_video_logo_load(); |
Robert Winkler | 2a90ed0 | 2013-06-17 11:31:29 -0700 | [diff] [blame] | 98 | } |
Robert Winkler | 8571c6c | 2013-06-17 11:31:30 -0700 | [diff] [blame] | 99 | |
Anatolij Gustschin | b9b5eaf | 2013-07-02 00:04:05 +0200 | [diff] [blame] | 100 | void splash_get_pos(int *x, int *y) |
| 101 | { |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 102 | char *s = env_get("splashpos"); |
Anatolij Gustschin | b9b5eaf | 2013-07-02 00:04:05 +0200 | [diff] [blame] | 103 | |
Nikhil M Jain | 4bd4c31 | 2023-04-20 17:41:12 +0530 | [diff] [blame] | 104 | if (!CONFIG_IS_ENABLED(SPLASH_SCREEN_ALIGN) || !s) |
Anatolij Gustschin | b9b5eaf | 2013-07-02 00:04:05 +0200 | [diff] [blame] | 105 | 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 Kiryanov | 1ae13d3 | 2015-02-03 13:32:32 +0200 | [diff] [blame] | 120 | |
Nikhil M Jain | 33ff612 | 2023-04-20 17:41:09 +0530 | [diff] [blame] | 121 | #if CONFIG_IS_ENABLED(VIDEO) && !CONFIG_IS_ENABLED(HIDE_LOGO_VERSION) |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 122 | |
| 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 Sankouski | 7fa964a | 2023-03-07 13:21:14 +0300 | [diff] [blame] | 129 | #include <video_font_data.h> |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 130 | |
| 131 | void splash_display_banner(void) |
| 132 | { |
Dzmitry Sankouski | 7fa964a | 2023-03-07 13:21:14 +0300 | [diff] [blame] | 133 | struct video_fontdata __maybe_unused *fontdata = fonts; |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 134 | 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 Sankouski | 7fa964a | 2023-03-07 13:21:14 +0300 | [diff] [blame] | 142 | #if IS_ENABLED(CONFIG_VIDEO_LOGO) |
| 143 | col = BMP_LOGO_WIDTH / fontdata->width + 1; |
| 144 | row = BMP_LOGO_HEIGHT / fontdata->height + 1; |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 145 | #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 Glass | 52cb504 | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 155 | #endif /* CONFIG_VIDEO && !CONFIG_HIDE_LOGO_VERSION */ |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 156 | |
Igor Opaniuk | 1f6bfad | 2019-05-29 09:01:43 +0000 | [diff] [blame] | 157 | /* |
| 158 | * Common function to show a splash image if env("splashimage") is set. |
Simon Glass | bcb87b6 | 2022-10-18 07:10:26 -0600 | [diff] [blame] | 159 | * For additional details please refer to doc/README.splashprepare. |
Igor Opaniuk | 1f6bfad | 2019-05-29 09:01:43 +0000 | [diff] [blame] | 160 | */ |
Igor Opaniuk | 1f6bfad | 2019-05-29 09:01:43 +0000 | [diff] [blame] | 161 | int splash_display(void) |
Nikita Kiryanov | 1ae13d3 | 2015-02-03 13:32:32 +0200 | [diff] [blame] | 162 | { |
Igor Opaniuk | 1f6bfad | 2019-05-29 09:01:43 +0000 | [diff] [blame] | 163 | ulong addr; |
| 164 | char *s; |
Nikita Kiryanov | 1ae13d3 | 2015-02-03 13:32:32 +0200 | [diff] [blame] | 165 | int x = 0, y = 0, ret; |
Nikhil M Jain | 4bd4c31 | 2023-04-20 17:41:12 +0530 | [diff] [blame] | 166 | if (!CONFIG_IS_ENABLED(SPLASH_SCREEN)) |
| 167 | return -ENOSYS; |
Igor Opaniuk | 1f6bfad | 2019-05-29 09:01:43 +0000 | [diff] [blame] | 168 | s = env_get("splashimage"); |
| 169 | if (!s) |
| 170 | return -EINVAL; |
| 171 | |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 172 | addr = hextoul(s, NULL); |
Nikita Kiryanov | 1ae13d3 | 2015-02-03 13:32:32 +0200 | [diff] [blame] | 173 | ret = splash_screen_prepare(); |
| 174 | if (ret) |
| 175 | return ret; |
| 176 | |
| 177 | splash_get_pos(&x, &y); |
| 178 | |
Nikhil M Jain | 4bd4c31 | 2023-04-20 17:41:12 +0530 | [diff] [blame] | 179 | if (CONFIG_IS_ENABLED(BMP)) |
| 180 | ret = bmp_display(addr, x, y); |
| 181 | else |
| 182 | return -ENOSYS; |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 183 | |
| 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 Jain | 33ff612 | 2023-04-20 17:41:09 +0530 | [diff] [blame] | 188 | #if CONFIG_IS_ENABLED(VIDEO) && !CONFIG_IS_ENABLED(HIDE_LOGO_VERSION) |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 189 | splash_display_banner(); |
Anatolij Gustschin | 11f7118 | 2019-10-30 15:04:10 +0100 | [diff] [blame] | 190 | #endif |
Anatolij Gustschin | c07ecbb | 2019-09-20 17:23:41 +0200 | [diff] [blame] | 191 | end: |
| 192 | return ret; |
Nikita Kiryanov | 1ae13d3 | 2015-02-03 13:32:32 +0200 | [diff] [blame] | 193 | } |