diff options
| author | Simon Glass <sjg@chromium.org> | 2012-10-17 13:24:52 +0000 | 
|---|---|---|
| committer | Tom Warren <twarren@nvidia.com> | 2012-11-19 08:15:37 -0700 | 
| commit | 1b24a50b44d9577c65759d252571f94e8f702777 (patch) | |
| tree | 49fbfff9ee78a97f70c3e2b3488bd3905bbe2fa2 /board/nvidia/common/board.c | |
| parent | 0be8f203f6aba3c1fc117fd0c651c324977c4a27 (diff) | |
| download | olio-uboot-2014.01-1b24a50b44d9577c65759d252571f94e8f702777.tar.xz olio-uboot-2014.01-1b24a50b44d9577c65759d252571f94e8f702777.zip | |
tegra: Add LCD support to Nvidia boards
Add calls to the LCD driver from Nvidia board code.
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'board/nvidia/common/board.c')
| -rw-r--r-- | board/nvidia/common/board.c | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index f23c87daf..76ec6876e 100644 --- a/board/nvidia/common/board.c +++ b/board/nvidia/common/board.c @@ -26,6 +26,7 @@  #include <linux/compiler.h>  #include <asm/io.h>  #include <asm/arch/clock.h> +#include <asm/arch/display.h>  #include <asm/arch/emc.h>  #include <asm/arch/funcmux.h>  #include <asm/arch/pinmux.h> @@ -124,6 +125,9 @@ int board_init(void)  	if (pwm_init(gd->fdt_blob))  		debug("%s: Failed to init pwm\n", __func__);  #endif +#ifdef CONFIG_LCD +	tegra_lcd_check_next_stage(gd->fdt_blob, 0); +#endif  	/* boot param addr */  	gd->bd->bi_boot_params = (NV_PA_SDRAM_BASE + 0x100); @@ -149,6 +153,9 @@ int board_init(void)  	pin_mux_usb();  	board_usb_init(gd->fdt_blob);  #endif +#ifdef CONFIG_LCD +	tegra_lcd_check_next_stage(gd->fdt_blob, 0); +#endif  #ifdef CONFIG_TEGRA_NAND  	pin_mux_nand(); @@ -179,7 +186,19 @@ int board_early_init_f(void)  	/* Initialize periph GPIOs */  	gpio_early_init();  	gpio_early_init_uart(); +#ifdef CONFIG_LCD +	tegra_lcd_early_init(gd->fdt_blob); +#endif  	return 0;  }  #endif	/* EARLY_INIT */ + +int board_late_init(void) +{ +#ifdef CONFIG_LCD +	/* Make sure we finish initing the LCD */ +	tegra_lcd_check_next_stage(gd->fdt_blob, 1); +#endif +	return 0; +} |