diff options
| author | Stephen Warren <swarren@nvidia.com> | 2013-06-18 09:46:52 -0600 | 
|---|---|---|
| committer | Tom Warren <twarren@nvidia.com> | 2013-07-11 14:15:16 -0700 | 
| commit | d035fcf9b6a5a0d7ce8d3d5f3ef960618deea47e (patch) | |
| tree | 9b47bc2529ebe5173636baadf945384a7d79e97b | |
| parent | b46694df845d8e2f654a871c24849cc217d4b5d2 (diff) | |
| download | olio-uboot-2014.01-d035fcf9b6a5a0d7ce8d3d5f3ef960618deea47e.tar.xz olio-uboot-2014.01-d035fcf9b6a5a0d7ce8d3d5f3ef960618deea47e.zip | |
ARM: tegra: enable LCD panel on Ventana
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
| -rw-r--r-- | board/nvidia/dts/tegra20-ventana.dts | 32 | ||||
| -rw-r--r-- | include/configs/ventana.h | 9 | 
2 files changed, 41 insertions, 0 deletions
| diff --git a/board/nvidia/dts/tegra20-ventana.dts b/board/nvidia/dts/tegra20-ventana.dts index e1a3d1ec9..1a526bab6 100644 --- a/board/nvidia/dts/tegra20-ventana.dts +++ b/board/nvidia/dts/tegra20-ventana.dts @@ -16,6 +16,17 @@  		reg = <0x00000000 0x40000000>;  	}; +	host1x { +		status = "okay"; +		dc@54200000 { +			status = "okay"; +			rgb { +				status = "okay"; +				nvidia,panel = <&lcd_panel>; +			}; +		}; +	}; +  	serial@70006300 {  		clock-frequency = < 216000000 >;  	}; @@ -56,4 +67,25 @@  		status = "okay";  		bus-width = <8>;  	}; + +	lcd_panel: panel { +		clock = <72072000>; +		xres = <1366>; +		yres = <768>; +		left-margin = <58>; +		right-margin = <58>; +		hsync-len = <58>; +		lower-margin = <4>; +		upper-margin = <4>; +		vsync-len = <4>; +		hsync-active-high; +		vsync-active-high; +		nvidia,bits-per-pixel = <16>; +		nvidia,pwm = <&pwm 2 0>; +		nvidia,backlight-enable-gpios = <&gpio 28 0>;	/* PD4 */ +		nvidia,lvds-shutdown-gpios = <&gpio 10 0>;	/* PB2 */ +		nvidia,backlight-vdd-gpios = <&gpio 176 0>;	/* PW0 */ +		nvidia,panel-vdd-gpios = <&gpio 22 0>;		/* PC6 */ +		nvidia,panel-timings = <0 0 200 0 0>; +	};  }; diff --git a/include/configs/ventana.h b/include/configs/ventana.h index 5755f1171..64e78751a 100644 --- a/include/configs/ventana.h +++ b/include/configs/ventana.h @@ -43,6 +43,7 @@  #define CONFIG_MACH_TYPE		MACH_TYPE_VENTANA  #define CONFIG_BOARD_EARLY_INIT_F +#define CONFIG_BOARD_LATE_INIT		/* Make sure LCD init is complete */  /* SD/MMC */  #define CONFIG_MMC @@ -73,6 +74,14 @@  /* USB keyboard */  #define CONFIG_USB_KEYBOARD +/* LCD support */ +#define CONFIG_LCD +#define CONFIG_PWM_TEGRA +#define CONFIG_VIDEO_TEGRA +#define LCD_BPP				LCD_COLOR16 +#define CONFIG_SYS_WHITE_ON_BLACK +#define CONFIG_CONSOLE_SCROLL_LINES	10 +  #include "tegra-common-post.h"  #endif /* __CONFIG_H */ |