mirror of
https://xff.cz/git/u-boot/
synced 2025-09-25 20:41:16 +02:00
video: Drop remaining references to CONFIG_LCD
These rely on the old LCD implementation which is to be removed. Drop it all. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
committed by
Anatolij Gustschin
parent
777f3e3695
commit
0f9b86f811
45
README
45
README
@@ -770,51 +770,6 @@ The following options need to be configured:
|
|||||||
- Keyboard Support:
|
- Keyboard Support:
|
||||||
See Kconfig help for available keyboard drivers.
|
See Kconfig help for available keyboard drivers.
|
||||||
|
|
||||||
- LCD Support: CONFIG_LCD
|
|
||||||
|
|
||||||
Define this to enable LCD support (for output to LCD
|
|
||||||
display); also select one of the supported displays
|
|
||||||
by defining one of these:
|
|
||||||
|
|
||||||
CONFIG_NEC_NL6448AC33:
|
|
||||||
|
|
||||||
NEC NL6448AC33-18. Active, color, single scan.
|
|
||||||
|
|
||||||
CONFIG_NEC_NL6448BC20
|
|
||||||
|
|
||||||
NEC NL6448BC20-08. 6.5", 640x480.
|
|
||||||
Active, color, single scan.
|
|
||||||
|
|
||||||
CONFIG_NEC_NL6448BC33_54
|
|
||||||
|
|
||||||
NEC NL6448BC33-54. 10.4", 640x480.
|
|
||||||
Active, color, single scan.
|
|
||||||
|
|
||||||
CONFIG_SHARP_16x9
|
|
||||||
|
|
||||||
Sharp 320x240. Active, color, single scan.
|
|
||||||
It isn't 16x9, and I am not sure what it is.
|
|
||||||
|
|
||||||
CONFIG_SHARP_LQ64D341
|
|
||||||
|
|
||||||
Sharp LQ64D341 display, 640x480.
|
|
||||||
Active, color, single scan.
|
|
||||||
|
|
||||||
CONFIG_HLD1045
|
|
||||||
|
|
||||||
HLD1045 display, 640x480.
|
|
||||||
Active, color, single scan.
|
|
||||||
|
|
||||||
CONFIG_OPTREX_BW
|
|
||||||
|
|
||||||
Optrex CBL50840-2 NF-FW 99 22 M5
|
|
||||||
or
|
|
||||||
Hitachi LMG6912RPFC-00T
|
|
||||||
or
|
|
||||||
Hitachi SP14Q002
|
|
||||||
|
|
||||||
320x240. Black & white.
|
|
||||||
|
|
||||||
- MII/PHY support:
|
- MII/PHY support:
|
||||||
CONFIG_PHY_CLOCK_FREQ (ppc4xx)
|
CONFIG_PHY_CLOCK_FREQ (ppc4xx)
|
||||||
|
|
||||||
|
@@ -124,9 +124,6 @@ int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
|||||||
bdinfo_print_num_l("fdt_size", (ulong)gd->fdt_size);
|
bdinfo_print_num_l("fdt_size", (ulong)gd->fdt_size);
|
||||||
if (IS_ENABLED(CONFIG_DM_VIDEO))
|
if (IS_ENABLED(CONFIG_DM_VIDEO))
|
||||||
show_video_info();
|
show_video_info();
|
||||||
#if defined(CONFIG_LCD)
|
|
||||||
bdinfo_print_num_l("FB base ", gd->fb_base);
|
|
||||||
#endif
|
|
||||||
#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
|
#if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
|
||||||
bdinfo_print_num_l("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
|
bdinfo_print_num_l("multi_dtb_fit", (ulong)gd->multi_dtb_fit);
|
||||||
#endif
|
#endif
|
||||||
|
@@ -366,9 +366,6 @@ int stdio_add_devices(void)
|
|||||||
if (IS_ENABLED(CONFIG_SPLASH_SCREEN) &&
|
if (IS_ENABLED(CONFIG_SPLASH_SCREEN) &&
|
||||||
IS_ENABLED(CONFIG_CMD_BMP))
|
IS_ENABLED(CONFIG_CMD_BMP))
|
||||||
splash_display();
|
splash_display();
|
||||||
} else {
|
|
||||||
if (IS_ENABLED(CONFIG_LCD))
|
|
||||||
drv_lcd_init();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
drv_system_init();
|
drv_system_init();
|
||||||
|
@@ -63,8 +63,8 @@ For example, for snapper9260 you would create a text file called
|
|||||||
Example::
|
Example::
|
||||||
|
|
||||||
stdout=serial
|
stdout=serial
|
||||||
#ifdef CONFIG_LCD
|
#ifdef CONFIG_DM_VIDEO
|
||||||
stdout+=,lcd
|
stdout+=,vidconsole
|
||||||
#endif
|
#endif
|
||||||
bootcmd=
|
bootcmd=
|
||||||
/* U-Boot script for booting */
|
/* U-Boot script for booting */
|
||||||
|
@@ -68,7 +68,7 @@ struct global_data {
|
|||||||
* @mem_clk: memory clock rate in Hz
|
* @mem_clk: memory clock rate in Hz
|
||||||
*/
|
*/
|
||||||
unsigned long mem_clk;
|
unsigned long mem_clk;
|
||||||
#if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
|
#if defined(CONFIG_DM_VIDEO)
|
||||||
/**
|
/**
|
||||||
* @fb_base: base address of frame buffer memory
|
* @fb_base: base address of frame buffer memory
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user