mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
752a45a153
AM335x-ICE boards contain the CDCE913 clock synthesizer, and their reset crystal capacitance load value of 10pF is wrong leading into lost packets in certain networking tests. Add DT data for this device, and probe it from the board file to program the crystal capacitance load value to 0pF to avoid any problems. Signed-off-by: Tero Kristo <t-kristo@ti.com>
21 lines
390 B
Text
21 lines
390 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
/ {
|
|
xtal25mhz: xtal25mhz {
|
|
compatible = "fixed-clock";
|
|
#clock-cells = <0>;
|
|
clock-frequency = <25000000>;
|
|
};
|
|
};
|
|
|
|
&i2c0 {
|
|
cdce913: cdce913@65 {
|
|
compatible = "ti,cdce913";
|
|
reg = <0x65>;
|
|
clocks = <&xtal25mhz>;
|
|
#clock-cells = <1>;
|
|
xtal-load-pf = <0>;
|
|
};
|
|
};
|