diff options
author | Tom Rini <trini@konsulko.com> | 2023-05-05 09:36:08 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-05-05 09:36:08 -0400 |
commit | ab75996ba49c140c529f14b5c40d0d16430feefb (patch) | |
tree | acedbf783e9db8b8b7d0adadb3aa14565d7c646b /board | |
parent | eb59ece5204fe06bd037fe64944bfbb3b85864ea (diff) | |
parent | def72d5c6265bde4e9eb7976db53a77fabc4808a (diff) | |
download | u-boot-WIP/05May2023.zip u-boot-WIP/05May2023.tar.gz u-boot-WIP/05May2023.tar.bz2 |
Merge tag 'video-for-v2023.07-rc2' of https://source.denx.de/u-boot/custodians/u-boot-videoWIP/05May2023
- enable video support in SPL
- support splash screen for TI am62x
- replace #ifdef and #if with if's in bmp/splash
- add lm3533 backlight driver
- add Solomon SSD2825 DSI/LVDS bridge driver
- add Renesas R61307 and R69328 MIPI DSI panel drivers
- add tegra DC based PWM backlight driver
- add generic endeavoru (HTC One X) panel driver
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/am62x/evm.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/board/ti/am62x/evm.c b/board/ti/am62x/evm.c index 034fbed..e00e42e 100644 --- a/board/ti/am62x/evm.c +++ b/board/ti/am62x/evm.c @@ -19,9 +19,15 @@ DECLARE_GLOBAL_DATA_PTR; -#ifdef CONFIG_SPLASH_SCREEN +#if CONFIG_IS_ENABLED(SPLASH_SCREEN) static struct splash_location default_splash_locations[] = { { + .name = "sf", + .storage = SPLASH_STORAGE_SF, + .flags = SPLASH_STORAGE_RAW, + .offset = 0x700000, + }, + { .name = "mmc", .storage = SPLASH_STORAGE_MMC, .flags = SPLASH_STORAGE_FS, |