hc
2023-11-06 9df731a176aab8e03b984b681b1bea01ccff6644
u-boot/drivers/video/Kconfig
....@@ -14,6 +14,21 @@
1414 option compiles in the video uclass and routes all LCD/video access
1515 through this.
1616
17
+config SPL_DM_VIDEO
18
+ bool "Enable driver model support for LCD/video in SPL"
19
+ depends on DM_VIDEO && SPL
20
+ help
21
+ This enables driver model for LCD and video devices in SPL. These support
22
+ a bitmap display of various sizes and depths which can be drawn on
23
+ to display a command-line console or splash screen. Enabling this
24
+ option compiles in the video uclass and routes all LCD/video access
25
+ through this.
26
+
27
+config SPL_VIDEO_BUF
28
+ hex "SPL video memory buffer for any use"
29
+ depends on SPL_DM_VIDEO
30
+ default 0xa200000
31
+
1732 config BACKLIGHT_PWM
1833 bool "Generic PWM based Backlight Driver"
1934 depends on DM_VIDEO && DM_PWM
....@@ -390,6 +405,12 @@
390405 help
391406 This enables library for accessing EDID data from an LCD panel.
392407
408
+config SPL_I2C_EDID
409
+ bool "Enable EDID library in SPL"
410
+ depends on DM_I2C && SPL_DM_VIDEO
411
+ help
412
+ This enables library in SPL for accessing EDID data from an LCD panel.
413
+
393414 config DISPLAY
394415 bool "Enable Display support"
395416 depends on DM