1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2021 Michael Walle <michael@walle.cc>
*/
/dts-v1/;
/include/ "zynq-7000.dtsi"
/ {
model = "Ebang EBAZ4205";
compatible = "ebang,ebaz4205", "xlnx,zynq-7000";
aliases {
ethernet0 = &gem0;
serial0 = &uart1;
};
memory@0 {
device_type = "memory";
reg = <0x0 0x10000000>;
};
chosen {
stdout-path = "serial0:115200n8";
};
};
&clkc {
ps-clk-frequency = <33333333>;
fclk-enable = <8>;
};
&gem0 {
status = "okay";
phy-mode = "mii";
phy-handle = <&phy>;
/* PHY clock */
assigned-clocks = <&clkc 18>;
assigned-clock-rates = <25000000>;
phy: ethernet-phy@0 {
reg = <0>;
};
};
&gpio0 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_gpio0_default>;
};
&nfc0 {
status = "okay";
nand@0 {
reg = <0>;
};
};
&pinctrl0 {
pinctrl_gpio0_default: gpio0-default {
mux {
groups = "gpio0_20_grp", "gpio0_32_grp";
function = "gpio0";
};
conf {
groups = "gpio0_20_grp", "gpio0_32_grp";
io-standard = <3>;
slew-rate = <0>;
};
conf-pull-up {
pins = "MIO20", "MIO32";
bias-disable;
};
};
pinctrl_sdhci0_default: sdhci0-default {
mux {
groups = "sdio0_2_grp";
function = "sdio0";
};
conf {
groups = "sdio0_2_grp";
io-standard = <3>;
slew-rate = <0>;
bias-disable;
};
mux-cd {
groups = "gpio0_34_grp";
function = "sdio0_cd";
};
conf-cd {
groups = "gpio0_34_grp";
io-standard = <3>;
slew-rate = <0>;
bias-high-impedance;
bias-pull-up;
};
};
pinctrl_uart1_default: uart1-default {
mux {
groups = "uart1_4_grp";
function = "uart1";
};
conf {
groups = "uart1_4_grp";
io-standard = <3>;
slew-rate = <0>;
};
conf-rx {
pins = "MIO25";
bias-high-impedance;
};
conf-tx {
pins = "MIO24";
bias-disable;
};
};
};
&smcc {
status = "okay";
};
&sdhci0 {
status = "okay";
disable-wp;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_sdhci0_default>;
};
&uart1 {
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_uart1_default>;
};
|