-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: zynq: Add support for Arty Z7 board
Board has eth, usb, mmc, qspi, uart and 512MB memory. Signed-off-by: Michal Simek <[email protected]>
- Loading branch information
1 parent
457c44a
commit 879a283
Showing
2 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Digilent ARTY Z7 board DTS | ||
* | ||
* Copyright (C) 2016 Digilent | ||
* | ||
* SPDX-License-Identifier: GPL-2.0+ | ||
*/ | ||
/dts-v1/; | ||
#include "zynq-7000.dtsi" | ||
|
||
/ { | ||
model = "Zynq ARTY Z7 Development Board"; | ||
compatible = "digilent,zynq-artyz7", "xlnx,zynq-7000"; | ||
|
||
aliases { | ||
ethernet0 = &gem0; | ||
serial0 = &uart0; | ||
spi0 = &qspi; | ||
mmc0 = &sdhci0; | ||
}; | ||
|
||
memory { | ||
device_type = "memory"; | ||
reg = <0x0 0x20000000>; | ||
}; | ||
|
||
chosen { | ||
bootargs = ""; | ||
stdout-path = "serial0:115200n8"; | ||
}; | ||
|
||
usb_phy0: phy0 { | ||
compatible = "usb-nop-xceiv"; | ||
#phy-cells = <0>; | ||
reset-gpios = <&gpio0 46 1>; | ||
}; | ||
}; | ||
|
||
&clkc { | ||
ps-clk-frequency = <50000000>; | ||
}; | ||
|
||
&gem0 { | ||
status = "okay"; | ||
phy-mode = "rgmii-id"; | ||
phy-handle = <ðernet_phy>; | ||
|
||
ethernet_phy: ethernet-phy@0 { /* rtl8211e-vl */ | ||
reg = <1>; | ||
}; | ||
}; | ||
|
||
&qspi { | ||
u-boot,dm-pre-reloc; | ||
status = "okay"; | ||
}; | ||
|
||
&sdhci0 { | ||
u-boot,dm-pre-reloc; | ||
status = "okay"; | ||
}; | ||
|
||
&uart0 { | ||
u-boot,dm-pre-reloc; | ||
status = "okay"; | ||
}; | ||
|
||
&usb0 { | ||
status = "okay"; | ||
dr_mode = "host"; | ||
usb-phy = <&usb_phy0>; | ||
}; |