mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
This is without the SD controller support, because I have a broken uSD slot on my board. Until that's fixed, it needs to be disabled. Signed-off-by: Ondrej Jirman <megi@xff.cz>
104 lines
1.5 KiB
Plaintext
104 lines
1.5 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
#include "zynq-7000.dtsi"
|
|
|
|
/ {
|
|
model = "EBAZ4205 board - megi config";
|
|
compatible = "megi,zynq-ebaz4205", "xlnx,zynq-7000";
|
|
|
|
aliases {
|
|
serial0 = &uart1;
|
|
ethernet0 = &gem0;
|
|
mmc0 = &sdhci0;
|
|
};
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x10000000>;
|
|
};
|
|
|
|
chosen {
|
|
bootargs = "earlycon";
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
ephy0_clk: ephy0-clk {
|
|
#clock-cells = <0>;
|
|
compatible = "fixed-clock";
|
|
clock-frequency = <25000000>;
|
|
clock-output-names = "ephy0_clk";
|
|
};
|
|
};
|
|
|
|
&clkc {
|
|
ps-clk-frequency = <33333333>;
|
|
clocks = <&ephy0_clk>;
|
|
clock-names = "gem0_emio_clk";
|
|
};
|
|
|
|
&adc {
|
|
status = "disabled";
|
|
};
|
|
|
|
&gpio0 {
|
|
status = "disabled";
|
|
};
|
|
|
|
&smcc {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
|
|
&gem0 {
|
|
status = "okay";
|
|
phy-mode = "rgmii-id";
|
|
phy-handle = <ðernet_phy>;
|
|
local-mac-address = [44 8F 17 36 1B A0];
|
|
|
|
ethernet_phy: ethernet-phy@0 {
|
|
reg = <0>;
|
|
max-speed = <100>;
|
|
};
|
|
};
|
|
|
|
&sdhci0 {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|
|
|
|
&nfc0 {
|
|
status = "okay";
|
|
bootph-all;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
nand@0 {
|
|
reg = <0>;
|
|
/*
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
partition@0 {
|
|
label = "nand-fsbl-uboot";
|
|
reg = <0x0 0x1000000>;
|
|
};
|
|
partition@1000000 {
|
|
label = "nand-linux";
|
|
reg = <0x1000000 0x2000000>;
|
|
};
|
|
partition@3000000 {
|
|
label = "nand-rootfs";
|
|
reg = <0x3000000 0x200000>;
|
|
};
|
|
};
|
|
*/
|
|
};
|
|
};
|
|
|
|
&uart1 {
|
|
bootph-all;
|
|
status = "okay";
|
|
};
|