mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
bdbc5604f2
Currently zcu102 Rev1.0 board includes RevA sdhci dt node which has no-1-8-v property. Since Rev1.0 has level shifters delete this property to enable support for 1.8v. Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
40 lines
648 B
Text
40 lines
648 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* dts file for Xilinx ZynqMP ZCU102 Rev1.0
|
|
*
|
|
* (C) Copyright 2016 - 2018, Xilinx, Inc.
|
|
*
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*/
|
|
|
|
#include "zynqmp-zcu102-revB.dts"
|
|
|
|
/ {
|
|
model = "ZynqMP ZCU102 Rev1.0";
|
|
compatible = "xlnx,zynqmp-zcu102-rev1.0", "xlnx,zynqmp-zcu102", "xlnx,zynqmp";
|
|
};
|
|
|
|
&eeprom {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
board_sn: board-sn@0 {
|
|
reg = <0x0 0x14>;
|
|
};
|
|
|
|
eth_mac: eth-mac@20 {
|
|
reg = <0x20 0x6>;
|
|
};
|
|
|
|
board_name: board-name@d0 {
|
|
reg = <0xd0 0x6>;
|
|
};
|
|
|
|
board_revision: board-revision@e0 {
|
|
reg = <0xe0 0x3>;
|
|
};
|
|
};
|
|
|
|
&sdhci1 {
|
|
/delete-property/ no-1-8-v;
|
|
};
|