mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
be4634511a
Not using board revision is causing confusion about which board is supported and tested. Mark dts files exactly with board revision which was tested. When new board revision arives it can be symlink if SW view is the same. Also add -revX suffix to compatible string because user space tools are parsing this string and can change behavior depends of board revision. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
42 lines
676 B
Text
42 lines
676 B
Text
/*
|
|
* dts file for Xilinx ZynqMP ZCU102 RevB
|
|
*
|
|
* (C) Copyright 2016, Xilinx, Inc.
|
|
*
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include "zynqmp-zcu102-revA.dts"
|
|
|
|
/ {
|
|
model = "ZynqMP ZCU102 RevB";
|
|
};
|
|
|
|
&gem3 {
|
|
phy-handle = <&phyc>;
|
|
phyc: phy@c {
|
|
reg = <0xc>;
|
|
ti,rx-internal-delay = <0x8>;
|
|
ti,tx-internal-delay = <0xa>;
|
|
ti,fifo-depth = <0x1>;
|
|
};
|
|
/* Cleanup from RevA */
|
|
/delete-node/ phy@21;
|
|
};
|
|
|
|
/* Different qspi 512Mbit version */
|
|
|
|
/* Fix collision with u61 */
|
|
&i2c0 {
|
|
i2cswitch@75 {
|
|
i2c@2 {
|
|
max15303@1b { /* u8 */
|
|
compatible = "max15303";
|
|
reg = <0x1b>;
|
|
};
|
|
/delete-node/ max15303@20;
|
|
};
|
|
};
|
|
};
|