diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2015-12-09 00:44:42 +1000 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2015-12-18 13:15:58 +0100 |
commit | 7bbf825492ef8399146a5885f5e4e90d296baf55 (patch) | |
tree | c58154a7fad4317e3ca915555f03c1a2fba53025 /arch | |
parent | 04a44d367168da8e12cfe23bf65dfff2e01bc4a4 (diff) | |
download | talos-obmc-uboot-7bbf825492ef8399146a5885f5e4e90d296baf55.tar.gz talos-obmc-uboot-7bbf825492ef8399146a5885f5e4e90d296baf55.zip |
arm: zynq: Update ZYBO config options
Update the ZYBO device tree and enable config options that relate to the
added devices in the device tree.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Michal Simek <monstr@monstr.eu>
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/zynq-zybo.dts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/dts/zynq-zybo.dts b/arch/arm/dts/zynq-zybo.dts index 199264ac8e..fbbb891191 100644 --- a/arch/arm/dts/zynq-zybo.dts +++ b/arch/arm/dts/zynq-zybo.dts @@ -16,6 +16,7 @@ aliases { ethernet0 = &gem0; serial0 = &uart1; + spi0 = &qspi; mmc0 = &sdhci0; }; @@ -29,6 +30,10 @@ stdout-path = "serial0:115200n8"; }; + usb_phy0: phy0 { + compatible = "usb-nop-xceiv"; + #phy-cells = <0>; + }; }; &clkc { @@ -54,3 +59,14 @@ u-boot,dm-pre-reloc; status = "okay"; }; + +&qspi { + u-boot,dm-pre-reloc; + status = "okay"; +}; + +&usb0 { + status = "okay"; + dr_mode = "host"; + usb-phy = <&usb_phy0>; +}; |