diff options
| author | Tom Rini <trini@ti.com> | 2013-03-18 12:31:00 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-18 14:37:18 -0400 | 
| commit | 0ce033d2582129243aca10d3072a221386bbba44 (patch) | |
| tree | 6e50a3f4eed22007549dc740d0fa647a6c8cec5b /board/nvidia/dts/tegra20-seaboard.dts | |
| parent | b5bec88434adb52413f1bc33fa63d7642cb8fd35 (diff) | |
| parent | b27673ccbd3d5435319b5c09c3e7061f559f925d (diff) | |
| download | olio-uboot-2014.01-0ce033d2582129243aca10d3072a221386bbba44.tar.xz olio-uboot-2014.01-0ce033d2582129243aca10d3072a221386bbba44.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Albert's rework of the linker scripts conflicted with Simon's making
everyone use __bss_end.  We also had a minor conflict over
README.scrapyard being added to in mainline and enhanced in
u-boot-arm/master with proper formatting.
Conflicts:
	arch/arm/cpu/ixp/u-boot.lds
	arch/arm/cpu/u-boot.lds
	arch/arm/lib/Makefile
	board/actux1/u-boot.lds
	board/actux2/u-boot.lds
	board/actux3/u-boot.lds
	board/dvlhost/u-boot.lds
	board/freescale/mx31ads/u-boot.lds
	doc/README.scrapyard
	include/configs/tegra-common.h
Build tested for all of ARM and run-time tested on am335x_evm.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/nvidia/dts/tegra20-seaboard.dts')
| -rw-r--r-- | board/nvidia/dts/tegra20-seaboard.dts | 15 | 
1 files changed, 9 insertions, 6 deletions
| diff --git a/board/nvidia/dts/tegra20-seaboard.dts b/board/nvidia/dts/tegra20-seaboard.dts index 527a29689..c0e2e1e5f 100644 --- a/board/nvidia/dts/tegra20-seaboard.dts +++ b/board/nvidia/dts/tegra20-seaboard.dts @@ -1,7 +1,6 @@  /dts-v1/; -/memreserve/ 0x1c000000 0x04000000; -/include/ ARCH_CPU_DTS +#include "tegra20.dtsi"  / {  	model = "NVIDIA Seaboard"; @@ -12,14 +11,15 @@  	};  	aliases { -		/* This defines the order of our USB ports */ +		/* This defines the order of our ports */  		usb0 = "/usb@c5008000";  		usb1 = "/usb@c5000000"; -  		i2c0 = "/i2c@7000d000";  		i2c1 = "/i2c@7000c000";  		i2c2 = "/i2c@7000c400";  		i2c3 = "/i2c@7000c500"; +		sdhci0 = "/sdhci@c8000600"; +		sdhci1 = "/sdhci@c8000400";  	};  	memory { @@ -156,13 +156,16 @@  	};  	sdhci@c8000400 { -		cd-gpios = <&gpio 69 0>; /* gpio PI5 */ +		status = "okay"; +		cd-gpios = <&gpio 69 1>; /* gpio PI5 */  		wp-gpios = <&gpio 57 0>; /* gpio PH1 */  		power-gpios = <&gpio 70 0>; /* gpio PI6 */ +		bus-width = <4>;  	};  	sdhci@c8000600 { -		support-8bit; +		status = "okay"; +		bus-width = <8>;  	};  	lcd_panel: panel { |