Skip to content
Snippets Groups Projects
Commit ac36dc7d authored by Anatolij Gustschin's avatar Anatolij Gustschin
Browse files

brxre1: disable video after DM_VIDEO conversion deadline


The board was not converted to DM_VIDEO before deadline, so disable
video support for now.

Signed-off-by: default avatarAnatolij Gustschin <agust@denx.de>
Cc: Hannes Schmelzer <hannes.schmelzer@br-automation.com>
parent bbc14b43
No related branches found
No related tags found
No related merge requests found
...@@ -164,12 +164,21 @@ int board_late_init(void) ...@@ -164,12 +164,21 @@ int board_late_init(void)
br_resetc_bmode(); br_resetc_bmode();
/* setup othbootargs for bootvx-command (vxWorks bootline) */ /* setup othbootargs for bootvx-command (vxWorks bootline) */
#ifdef CONFIG_LCD
snprintf(othbootargs, sizeof(othbootargs), snprintf(othbootargs, sizeof(othbootargs),
"u=vxWorksFTP pw=vxWorks o=0x%08x;0x%08x;0x%08x;0x%08x", "u=vxWorksFTP pw=vxWorks o=0x%08x;0x%08x;0x%08x;0x%08x",
(u32)gd->fb_base - 0x20, (u32)gd->fb_base - 0x20,
(u32)env_get_ulong("vx_memtop", 16, gd->fb_base - 0x20), (u32)env_get_ulong("vx_memtop", 16, gd->fb_base - 0x20),
(u32)env_get_ulong("vx_romfsbase", 16, 0), (u32)env_get_ulong("vx_romfsbase", 16, 0),
(u32)env_get_ulong("vx_romfssize", 16, 0)); (u32)env_get_ulong("vx_romfssize", 16, 0));
#else
snprintf(othbootargs, sizeof(othbootargs),
"u=vxWorksFTP pw=vxWorks o=0x%08x;0x%08x;0x%08x;0x%08x",
(u32)gd->relocaddr,
(u32)env_get_ulong("vx_memtop", 16, gd->relocaddr),
(u32)env_get_ulong("vx_romfsbase", 16, 0),
(u32)env_get_ulong("vx_romfssize", 16, 0));
#endif
env_set("othbootargs", othbootargs); env_set("othbootargs", othbootargs);
/* /*
* reset VBAR registers to its reset location, VxWorks 6.9.3.2 does * reset VBAR registers to its reset location, VxWorks 6.9.3.2 does
......
...@@ -92,8 +92,8 @@ CONFIG_USB_MUSB_TI=y ...@@ -92,8 +92,8 @@ CONFIG_USB_MUSB_TI=y
CONFIG_USB_STORAGE=y CONFIG_USB_STORAGE=y
CONFIG_USB_GADGET=y CONFIG_USB_GADGET=y
CONFIG_SYS_WHITE_ON_BLACK=y CONFIG_SYS_WHITE_ON_BLACK=y
CONFIG_AM335X_LCD=y # CONFIG_AM335X_LCD is not set
CONFIG_LCD=y # CONFIG_LCD is not set
CONFIG_SPL_TINY_MEMSET=y CONFIG_SPL_TINY_MEMSET=y
# CONFIG_OF_LIBFDT_OVERLAY is not set # CONFIG_OF_LIBFDT_OVERLAY is not set
# CONFIG_EFI_LOADER is not set # CONFIG_EFI_LOADER is not set
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment