mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
60 lines
1 KiB
Text
60 lines
1 KiB
Text
|
// SPDX-License-Identifier: GPL-2.0+ OR X11
|
||
|
|
||
|
/*
|
||
|
* UltraZed-EV Carrier Card v1 (based on the UltraZed-EV SoM)
|
||
|
* http://ultrazed.org/product/ultrazed-ev-carrier-card
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
#include "avnet-ultrazedev-som-v1.0.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "Avnet UltraZed EV Carrier Card v1.0";
|
||
|
compatible = "avnet,ultrazedev-cc-v1.0-ultrazedev-som-v1.0",
|
||
|
"xlnx,zynqmp";
|
||
|
chosen {
|
||
|
stdout-path = "serial0:115200n8";
|
||
|
xlnx,eeprom = &eeprom;
|
||
|
};
|
||
|
aliases {
|
||
|
ethernet0 = &gem3;
|
||
|
serial0 = &uart0;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&uart0 {
|
||
|
device_type = "serial";
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&i2c_cc {
|
||
|
/* Microchip 24AA025E48T-I/OT: 2K I2C Serial EEPROM with EUI-48 */
|
||
|
eeprom: eeprom@51 {
|
||
|
compatible = "atmel,24c02";
|
||
|
reg = <0x51>;
|
||
|
};
|
||
|
|
||
|
/* IDT Versa Clock 5P49V5935B */
|
||
|
vc5: clock-generator@6a {
|
||
|
compatible = "idt,5p49v5935";
|
||
|
reg = <0x6a>;
|
||
|
#clock-cells = <1>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
/* Ethernet RJ-45 */
|
||
|
&gem3 {
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
/* microSD card slot */
|
||
|
&sdhci1 {
|
||
|
status = "okay";
|
||
|
xlnx,mio_bank = <1>;
|
||
|
clock-frequency = <199998000>;
|
||
|
max-frequency = <50000000>;
|
||
|
no-1-8-v;
|
||
|
disable-wp;
|
||
|
};
|