diff options
| author | Frieder Schrempf <[email protected]> | 2025-08-25 15:54:28 +0200 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-09-05 09:03:28 -0300 |
| commit | 048fdda977abe8ebb51dfab7450f7a5b80465059 (patch) | |
| tree | 659e120ca98f78388e32f5df610c358498a2e0f0 | |
| parent | 8addeb94c72bfac9561a1bae3844a94c05cefb47 (diff) | |
imx: kontron-sl-mx6ul: Enable second ethernet interface
This ensures both interfaces can be used in U-Boot and both MAC addresses
are exported to the Linux kernel devicetree.
Signed-off-by: Frieder Schrempf <[email protected]>
| -rw-r--r-- | arch/arm/dts/imx6ul-kontron-bl-common-u-boot.dtsi | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/arch/arm/dts/imx6ul-kontron-bl-common-u-boot.dtsi b/arch/arm/dts/imx6ul-kontron-bl-common-u-boot.dtsi index 39cc6d05d3f..042bda7462a 100644 --- a/arch/arm/dts/imx6ul-kontron-bl-common-u-boot.dtsi +++ b/arch/arm/dts/imx6ul-kontron-bl-common-u-boot.dtsi @@ -30,9 +30,6 @@ * in Linux we can't assign the shared reset GPIO to the PHYs, as this * would cause Linux to reset both PHYs every time one of them gets * reinitialized. - * - * Also we disable the second ethernet as it currently doesn't work with - * the devicetree setup in U-Boot. */ &fec1 { @@ -53,11 +50,16 @@ clocks = <&clks IMX6UL_CLK_ENET_REF>; clock-names = "rmii-ref"; }; + + ethphy2: ethernet-phy@2 { + reg = <2>; + micrel,led-mode = <0>; + clocks = <&clks IMX6UL_CLK_ENET2_REF>; + clock-names = "rmii-ref"; + }; }; }; &fec2 { - status = "disabled"; - /delete-property/ phy-handle; /delete-node/ mdio; }; |
