mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 10:30:32 +00:00
ad1158c50e
Add DT overlays to support additional DH i.MX8MP DHCOM SoM 660-100 population options with 1x or 2x RMII PHY mounted on PDK2 or PDK3 carrier boards. Use SPL DTO support to apply matching SoM specific DTO to cater for the SoM differences. Remove ad-hoc patching of control DT from fdtdec_board_setup(). Signed-off-by: Marek Vasut <marex@denx.de>
24 lines
625 B
Text
24 lines
625 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
|
|
/*
|
|
* Copyright (C) 2023 Marek Vasut <marex@denx.de>
|
|
*/
|
|
#include "imx8mp-dhcom-som-overlay-eth1xfast.dts"
|
|
|
|
/* Dual RMII 100/Full Fast ethernet on this SoM variant. */
|
|
|
|
&fec { /* Second ethernet */
|
|
pinctrl-0 = <&pinctrl_fec_rmii>;
|
|
phy-handle = <ðphy1f>;
|
|
phy-mode = "rmii";
|
|
status = "okay";
|
|
|
|
assigned-clock-parents = <&clk IMX8MP_SYS_PLL1_266M>,
|
|
<&clk IMX8MP_SYS_PLL2_100M>,
|
|
<&clk IMX8MP_SYS_PLL2_50M>,
|
|
<&clk IMX8MP_SYS_PLL2_50M>;
|
|
assigned-clock-rates = <0>, <100000000>, <50000000>, <0>;
|
|
};
|
|
|
|
ðphy1f { /* SMSC LAN8740Ai */
|
|
status = "okay";
|
|
};
|