* [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM
@ 2026-02-28 11:32 Meghana Malladi
2026-02-28 11:32 ` [PATCH v2 1/2] arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support Meghana Malladi
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Meghana Malladi @ 2026-02-28 11:32 UTC (permalink / raw)
To: nm, vigneshr
Cc: conor+dt, krzk+dt, robh, kristo, linux-kernel, devicetree,
linux-arm-kernel, netdev, srk, Roger Quadros, danishanwar,
m-malladi
This series adds device tree overlay support for enabling ICSSG0 dual EMAC
on the AM642 EVM, along with the necessary PHY driver configuration.
The overlay enables both ICSSG0 Ethernet interfaces (port0 and port1) in
dual EMAC mode and can be combined with the existing ICSSG1 overlay to
enable all four ICSSG interfaces if needed.
The series also enables the DP83TG720 PHY driver required for the
DP83TG720-IND-SPE-EVM daughter card used with the ICSSG0 interface.
Meghana Malladi (2):
arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support
arm64: defconfig: Enable DP83TG720 PHY driver
arch/arm64/boot/dts/ti/Makefile | 4 +
.../boot/dts/ti/k3-am642-evm-icssg0.dtso | 203 ++++++++++++++++++
arch/arm64/configs/defconfig | 1 +
3 files changed, 208 insertions(+)
create mode 100644 arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso
base-commit: 4916f2e2f3fc9aef289fcd07949301e5c29094c2
--
2.43.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v2 1/2] arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support 2026-02-28 11:32 [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Meghana Malladi @ 2026-02-28 11:32 ` Meghana Malladi 2026-03-09 4:44 ` Vignesh Raghavendra 2026-02-28 11:32 ` [PATCH v2 2/2] arm64: defconfig: Enable DP83TG720 PHY driver Meghana Malladi 2026-03-04 15:32 ` [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Daolin Qiu 2 siblings, 1 reply; 7+ messages in thread From: Meghana Malladi @ 2026-02-28 11:32 UTC (permalink / raw) To: nm, vigneshr Cc: conor+dt, krzk+dt, robh, kristo, linux-kernel, devicetree, linux-arm-kernel, netdev, srk, Roger Quadros, danishanwar, m-malladi Add device tree overlay to enable ICSSG0 dual EMAC support on AM642 EVM. This overlay enables both ICSSG0 Ethernet interfaces (port0 and port1) in dual EMAC mode. Users can combine this with the existing ICSSG1 overlay to enable all four ICSSG interfaces if needed. Signed-off-by: Meghana Malladi <m-malladi@ti.com> --- v1: https://lore.kernel.org/all/20260226115454.1730618-1-m-malladi@ti.com/ v2-v1: - Drop bringing up ICSSG1 support in this overlay as suggested by MD Danish Anwar <danishanwar@ti.com> arch/arm64/boot/dts/ti/Makefile | 4 + .../boot/dts/ti/k3-am642-evm-icssg0.dtso | 203 ++++++++++++++++++ 2 files changed, 207 insertions(+) create mode 100644 arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile index ba01a929e06f..d2cd124a5b08 100644 --- a/arch/arm64/boot/dts/ti/Makefile +++ b/arch/arm64/boot/dts/ti/Makefile @@ -62,6 +62,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-am62x-sk-hdmi-audio.dtbo # Boards with AM64x SoC dtb-$(CONFIG_ARCH_K3) += k3-am642-evm.dtb +dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-icssg0.dtbo dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-icssg1-dualemac.dtbo dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-icssg1-dualemac-mii.dtbo dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-pcie0-ep.dtbo @@ -218,6 +219,8 @@ k3-am62p5-sk-csi2-ov5640-dtbs := k3-am62p5-sk.dtb \ k3-am62x-sk-csi2-ov5640.dtbo k3-am62p5-sk-csi2-tevi-ov5640-dtbs := k3-am62p5-sk.dtb \ k3-am62x-sk-csi2-tevi-ov5640.dtbo +k3-am642-evm-icssg0-dtbs := \ + k3-am642-evm.dtb k3-am642-evm-icssg0.dtbo k3-am642-evm-icssg1-dualemac-dtbs := \ k3-am642-evm.dtb k3-am642-evm-icssg1-dualemac.dtbo k3-am642-evm-icssg1-dualemac-mii-dtbs := \ @@ -306,6 +309,7 @@ dtb- += k3-am625-beagleplay-csi2-ov5640.dtb \ k3-am62p5-sk-csi2-imx219.dtb \ k3-am62p5-sk-csi2-ov5640.dtb \ k3-am62p5-sk-csi2-tevi-ov5640.dtb \ + k3-am642-evm-icssg0.dtb \ k3-am642-evm-icssg1-dualemac.dtb \ k3-am642-evm-icssg1-dualemac-mii.dtb \ k3-am642-evm-pcie0-ep.dtb \ diff --git a/arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso b/arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso new file mode 100644 index 000000000000..425a16948cc1 --- /dev/null +++ b/arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso @@ -0,0 +1,203 @@ +// SPDX-License-Identifier: GPL-2.0-only OR MIT +/** + * DT overlay for enabling ICSSG0 dual EMAC on AM642 EVM + * + * AM642 EVM Product link: https://www.ti.com/tool/TMDS64EVM + * DP83TG720 daughter card link: https://www.ti.com/tool/DP83TG720-IND-SPE-EVM + * + * Copyright (C) 2020-2024 Texas Instruments Incorporated - https://www.ti.com/ + */ + +/dts-v1/; +/plugin/; + +#include <dt-bindings/gpio/gpio.h> +#include "k3-pinctrl.h" + +&{/aliases} { + ethernet0 = &icssg0_emac0; + ethernet1 = &icssg0_emac1; +}; + +&{/} { + icssg0_eth: icssg0-eth { + compatible = "ti,am642-icssg-prueth"; + pinctrl-names = "default"; + pinctrl-0 = <&pru_icssg0_rgmii1_pins_default>, <&pru_icssg0_rgmii2_pins_default>; + + sram = <&oc_sram>; + ti,prus = <&pru0_0>, <&rtu0_0>, <&tx_pru0_0>, <&pru0_1>, <&rtu0_1>, <&tx_pru0_1>; + firmware-name = "ti-pruss/am64x-sr2-pru0-prueth-fw.elf", + "ti-pruss/am64x-sr2-rtu0-prueth-fw.elf", + "ti-pruss/am64x-sr2-txpru0-prueth-fw.elf", + "ti-pruss/am64x-sr2-pru1-prueth-fw.elf", + "ti-pruss/am64x-sr2-rtu1-prueth-fw.elf", + "ti-pruss/am64x-sr2-txpru1-prueth-fw.elf"; + + ti,pruss-gp-mux-sel = <2>, /* MII mode */ + <2>, + <2>, + <2>, /* MII mode */ + <2>, + <2>; + + ti,mii-g-rt = <&icssg0_mii_g_rt>; + ti,mii-rt = <&icssg0_mii_rt>; + ti,pa-stats = <&icssg0_pa_stats>; + ti,iep = <&icssg0_iep0>, <&icssg0_iep1>; + + interrupt-parent = <&icssg0_intc>; + interrupts = <24 0 2>, <25 1 3>; + interrupt-names = "tx_ts0", "tx_ts1"; + + dmas = <&main_pktdma 0xc100 0>, /* egress slice 0 */ + <&main_pktdma 0xc101 0>, /* egress slice 0 */ + <&main_pktdma 0xc102 0>, /* egress slice 0 */ + <&main_pktdma 0xc103 0>, /* egress slice 0 */ + <&main_pktdma 0xc104 0>, /* egress slice 1 */ + <&main_pktdma 0xc105 0>, /* egress slice 1 */ + <&main_pktdma 0xc106 0>, /* egress slice 1 */ + <&main_pktdma 0xc107 0>, /* egress slice 1 */ + <&main_pktdma 0x4100 0>, /* ingress slice 0 */ + <&main_pktdma 0x4101 0>, /* ingress slice 1 */ + <&main_pktdma 0x4102 0>, /* mgmnt rsp slice 0 */ + <&main_pktdma 0x4103 0>; /* mgmnt rsp slice 1 */ + dma-names = "tx0-0", "tx0-1", "tx0-2", "tx0-3", + "tx1-0", "tx1-1", "tx1-2", "tx1-3", + "rx0", "rx1", + "rxmgm0", "rxmgm1"; + + ethernet-ports { + #address-cells = <1>; + #size-cells = <0>; + + icssg0_emac0: port@0 { + reg = <0>; + phy-handle = <&icssg0_phy00>; + phy-mode = "rgmii-id"; + syscon-rgmii-delay = <&main_conf 0x4100>; + /* Filled in by bootloader */ + local-mac-address = [00 00 00 00 00 00]; + }; + + icssg0_emac1: port@1 { + reg = <1>; + phy-handle = <&icssg0_phy01>; + phy-mode = "rgmii-id"; + syscon-rgmii-delay = <&main_conf 0x4104>; + /* Filled in by bootloader */ + local-mac-address = [00 00 00 00 00 00]; + }; + }; + }; +}; + +&main_pmx0 { + pru_icssg0_mdio_pins_default: pru-icssg0-mdio-pins-default { + pinctrl-single,pins = < + /* (P3) PRG0_MDIO0_MDC */ + AM64X_IOPAD(0x0204, PIN_OUTPUT, 0) + /* (P2) PRG0_MDIO0_MDIO */ + AM64X_IOPAD(0x0200, PIN_INPUT, 0) + /* (P16) GPIO0_32 - GPMC0_ADVn_ALE - GPIO_ETH0/1_RESETn# */ + AM64X_IOPAD(0x0084, PIN_OUTPUT, 7) + >; + }; + + pru_icssg0_rgmii1_pins_default: pru-icssg0-rgmii1-pins-default { + pinctrl-single,pins = < + /* (module-sitara) */ + /* (a14-y1) PRG0_PRU0_GPO0.PRG0_RGMII1_RD0 */ + AM64X_IOPAD(0x0160, PIN_INPUT, 2) + /* (b14-r4) PRG0_PRU0_GPO1.PRG0_RGMII1_RD1 */ + AM64X_IOPAD(0x0164, PIN_INPUT, 2) + /* (d14-u2) PRG0_PRU0_GPO2.PRG0_RGMII1_RD2 */ + AM64X_IOPAD(0x0168, PIN_INPUT, 2) + /* (e14-v2) PRG0_PRU0_GPO3.PRG0_RGMII1_RD3 */ + AM64X_IOPAD(0x016c, PIN_INPUT, 2) + /* (e13-t3) PRG0_PRU0_GPO6.PRG0_RGMII1_RXC */ + AM64X_IOPAD(0x0178, PIN_INPUT, 2) + /* (b13-aa2) PRG0_PRU0_GPO4.PRG0_RGMII1_RX_CTL */ + AM64X_IOPAD(0x0170, PIN_INPUT, 2) + + /* (a11-y3) PRG0_PRU0_GPO11.PRG0_RGMII1_TD0 */ + AM64X_IOPAD(0x018c, PIN_OUTPUT, 2) + /* (c11-aa3) PRG0_PRU0_GPO12.PRG0_RGMII1_TD1 */ + AM64X_IOPAD(0x0190, PIN_OUTPUT, 2) + /* (d11-r6) PRG0_PRU0_GPO13.PRG0_RGMII1_TD2 */ + AM64X_IOPAD(0x0194, PIN_OUTPUT, 2) + /* (b10-v4) PRG0_PRU0_GPO14.PRG0_RGMII1_TD3 */ + AM64X_IOPAD(0x0198, PIN_OUTPUT, 2) + /* (e10-u4) PRG0_PRU0_GPO16.PRG0_RGMII1_TXC */ + AM64X_IOPAD(0x01a0, PIN_OUTPUT, 2) + /* (c10-t5) PRG0_PRU0_GPO15.PRG0_RGMII1_TX_CTL */ + AM64X_IOPAD(0x019c, PIN_OUTPUT, 2) + >; + }; + + pru_icssg0_rgmii2_pins_default: pru-icssg0-rgmii2-pins-default { + pinctrl-single,pins = < + /* (e9-y2) PRG0_PRU1_GPO0.PRG0_RGMII2_RD0 */ + AM64X_IOPAD(0x01b0, PIN_INPUT, 2) + /* (a8-w2) PRG0_PRU1_GPO1.PRG0_RGMII2_RD1 */ + AM64X_IOPAD(0x01b4, PIN_INPUT, 2) + /* (c8-v3) PRG0_PRU1_GPO2.PRG0_RGMII2_RD2 */ + AM64X_IOPAD(0x01b8, PIN_INPUT, 2) + /* (d8-t4) PRG0_PRU1_GPO3.PRG0_RGMII2_RD3 */ + AM64X_IOPAD(0x01bc, PIN_INPUT, 2) + /* (e7-r5) PRG0_PRU1_GPO6.PRG0_RGMII2_RXC */ + AM64X_IOPAD(0x01c8, PIN_INPUT, 2) + /* (b7-w3) PRG0_PRU1_GPO4.PRG0_RGMII2_RX_CTL */ + AM64X_IOPAD(0x01c0, PIN_INPUT, 2) + + /* (a5-w4) PRG0_PRU1_GPO11.PRG0_RGMII2_TD0 */ + AM64X_IOPAD(0x01dc, PIN_OUTPUT, 2) + /* (c5-y4) PRG0_PRU1_GPO12.PRG0_RGMII2_TD1 */ + AM64X_IOPAD(0x01e0, PIN_OUTPUT, 2) + /* (d5-t6) PRG0_PRU1_GPO13.PRG0_RGMII2_TD2 */ + AM64X_IOPAD(0x01e4, PIN_OUTPUT, 2) + /* (b4-u6) PRG0_PRU1_GPO14.PRG0_RGMII2_TD3 */ + AM64X_IOPAD(0x01e8, PIN_OUTPUT, 2) + /* (a3-aa4) PRG0_PRU1_GPO16.PRG0_RGMII2_TXC */ + AM64X_IOPAD(0x01f0, PIN_OUTPUT, 2) + /* (c4-u5) PRG0_PRU1_GPO15.PRG0_RGMII2_TX_CTL */ + AM64X_IOPAD(0x01ec, PIN_OUTPUT, 2) + >; + }; + + icssg0_iep0_pins_default: icssg0-iep0-pins-default { + pinctrl-single,pins = < + AM64X_IOPAD(0x01ac, PIN_OUTPUT, 2) /* (W1) PRG0_PRU0_GPO19.PRG0_IEP0_EDC_SYNC_OUT0 */ + >; + }; +}; + +&icssg0_mdio { + pinctrl-names = "default"; + status = "okay"; + pinctrl-0 = <&pru_icssg0_mdio_pins_default>; + #address-cells = <1>; + #size-cells = <0>; + + icssg0_phy00: ethernet-phy@0 { + reg = <0x0>; + }; + + icssg0_phy01: ethernet-phy@1 { + reg = <0xA>; + }; +}; + +&icssg0_iep0 { + pinctrl-names = "default"; + pinctrl-0 = <&icssg0_iep0_pins_default>; +}; + +&main_gpio0 { + phy-line-hog { + gpio-hog; + gpios = <32 GPIO_ACTIVE_HIGH>; + output-high; + line-name = "phy-hog-line"; + }; +}; -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 1/2] arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support 2026-02-28 11:32 ` [PATCH v2 1/2] arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support Meghana Malladi @ 2026-03-09 4:44 ` Vignesh Raghavendra 0 siblings, 0 replies; 7+ messages in thread From: Vignesh Raghavendra @ 2026-03-09 4:44 UTC (permalink / raw) To: Meghana Malladi, nm Cc: conor+dt, krzk+dt, robh, kristo, linux-kernel, devicetree, linux-arm-kernel, netdev, srk, Roger Quadros, danishanwar On 28/02/26 17:02, Meghana Malladi wrote: > Add device tree overlay to enable ICSSG0 dual EMAC support on AM642 EVM. > This overlay enables both ICSSG0 Ethernet interfaces (port0 and port1) in > dual EMAC mode. > > Users can combine this with the existing ICSSG1 overlay to enable all four > ICSSG interfaces if needed. > > Signed-off-by: Meghana Malladi <m-malladi@ti.com> > --- > > v1: https://lore.kernel.org/all/20260226115454.1730618-1-m-malladi@ti.com/ > v2-v1: > - Drop bringing up ICSSG1 support in this overlay as suggested by > MD Danish Anwar <danishanwar@ti.com> > > arch/arm64/boot/dts/ti/Makefile | 4 + > .../boot/dts/ti/k3-am642-evm-icssg0.dtso | 203 ++++++++++++++++++ > 2 files changed, 207 insertions(+) > create mode 100644 arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso > > diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile > index ba01a929e06f..d2cd124a5b08 100644 > --- a/arch/arm64/boot/dts/ti/Makefile > +++ b/arch/arm64/boot/dts/ti/Makefile > @@ -62,6 +62,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-am62x-sk-hdmi-audio.dtbo > > # Boards with AM64x SoC > dtb-$(CONFIG_ARCH_K3) += k3-am642-evm.dtb > +dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-icssg0.dtbo > dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-icssg1-dualemac.dtbo > dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-icssg1-dualemac-mii.dtbo > dtb-$(CONFIG_ARCH_K3) += k3-am642-evm-pcie0-ep.dtbo > @@ -218,6 +219,8 @@ k3-am62p5-sk-csi2-ov5640-dtbs := k3-am62p5-sk.dtb \ > k3-am62x-sk-csi2-ov5640.dtbo > k3-am62p5-sk-csi2-tevi-ov5640-dtbs := k3-am62p5-sk.dtb \ > k3-am62x-sk-csi2-tevi-ov5640.dtbo > +k3-am642-evm-icssg0-dtbs := \ > + k3-am642-evm.dtb k3-am642-evm-icssg0.dtbo > k3-am642-evm-icssg1-dualemac-dtbs := \ > k3-am642-evm.dtb k3-am642-evm-icssg1-dualemac.dtbo > k3-am642-evm-icssg1-dualemac-mii-dtbs := \ > @@ -306,6 +309,7 @@ dtb- += k3-am625-beagleplay-csi2-ov5640.dtb \ > k3-am62p5-sk-csi2-imx219.dtb \ > k3-am62p5-sk-csi2-ov5640.dtb \ > k3-am62p5-sk-csi2-tevi-ov5640.dtb \ > + k3-am642-evm-icssg0.dtb \ > k3-am642-evm-icssg1-dualemac.dtb \ > k3-am642-evm-icssg1-dualemac-mii.dtb \ > k3-am642-evm-pcie0-ep.dtb \ > diff --git a/arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso b/arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso > new file mode 100644 > index 000000000000..425a16948cc1 > --- /dev/null > +++ b/arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso > @@ -0,0 +1,203 @@ > +// SPDX-License-Identifier: GPL-2.0-only OR MIT > +/** > + * DT overlay for enabling ICSSG0 dual EMAC on AM642 EVM > + * > + * AM642 EVM Product link: https://www.ti.com/tool/TMDS64EVM > + * DP83TG720 daughter card link: https://www.ti.com/tool/DP83TG720-IND-SPE-EVM > + * > + * Copyright (C) 2020-2024 Texas Instruments Incorporated - https://www.ti.com/ 2020-2026 > + */ > + > +/dts-v1/; > +/plugin/; > + > +#include <dt-bindings/gpio/gpio.h> > +#include "k3-pinctrl.h" > + > +&{/aliases} { > + ethernet0 = &icssg0_emac0; > + ethernet1 = &icssg0_emac1; > +}; > + > +&{/} { > + icssg0_eth: icssg0-eth { > + compatible = "ti,am642-icssg-prueth"; > + pinctrl-names = "default"; > + pinctrl-0 = <&pru_icssg0_rgmii1_pins_default>, <&pru_icssg0_rgmii2_pins_default>; > + > + sram = <&oc_sram>; > + ti,prus = <&pru0_0>, <&rtu0_0>, <&tx_pru0_0>, <&pru0_1>, <&rtu0_1>, <&tx_pru0_1>; > + firmware-name = "ti-pruss/am64x-sr2-pru0-prueth-fw.elf", > + "ti-pruss/am64x-sr2-rtu0-prueth-fw.elf", > + "ti-pruss/am64x-sr2-txpru0-prueth-fw.elf", > + "ti-pruss/am64x-sr2-pru1-prueth-fw.elf", > + "ti-pruss/am64x-sr2-rtu1-prueth-fw.elf", > + "ti-pruss/am64x-sr2-txpru1-prueth-fw.elf"; > + > + ti,pruss-gp-mux-sel = <2>, /* MII mode */ > + <2>, > + <2>, > + <2>, /* MII mode */ > + <2>, > + <2>; > + > + ti,mii-g-rt = <&icssg0_mii_g_rt>; > + ti,mii-rt = <&icssg0_mii_rt>; > + ti,pa-stats = <&icssg0_pa_stats>; > + ti,iep = <&icssg0_iep0>, <&icssg0_iep1>; > + Please Sort properties as per Documentation/devicetree/bindings/dts-coding-style.rst Example vendor specific properties come after generic ones > + interrupt-parent = <&icssg0_intc>; > + interrupts = <24 0 2>, <25 1 3>; > + interrupt-names = "tx_ts0", "tx_ts1"; > + > + dmas = <&main_pktdma 0xc100 0>, /* egress slice 0 */ > + <&main_pktdma 0xc101 0>, /* egress slice 0 */ > + <&main_pktdma 0xc102 0>, /* egress slice 0 */ > + <&main_pktdma 0xc103 0>, /* egress slice 0 */ > + <&main_pktdma 0xc104 0>, /* egress slice 1 */ > + <&main_pktdma 0xc105 0>, /* egress slice 1 */ > + <&main_pktdma 0xc106 0>, /* egress slice 1 */ > + <&main_pktdma 0xc107 0>, /* egress slice 1 */ > + <&main_pktdma 0x4100 0>, /* ingress slice 0 */ > + <&main_pktdma 0x4101 0>, /* ingress slice 1 */ > + <&main_pktdma 0x4102 0>, /* mgmnt rsp slice 0 */ > + <&main_pktdma 0x4103 0>; /* mgmnt rsp slice 1 */ > + dma-names = "tx0-0", "tx0-1", "tx0-2", "tx0-3", > + "tx1-0", "tx1-1", "tx1-2", "tx1-3", > + "rx0", "rx1", > + "rxmgm0", "rxmgm1"; > + > + ethernet-ports { > + #address-cells = <1>; > + #size-cells = <0>; > + > + icssg0_emac0: port@0 { > + reg = <0>; > + phy-handle = <&icssg0_phy00>; > + phy-mode = "rgmii-id"; > + syscon-rgmii-delay = <&main_conf 0x4100>; > + /* Filled in by bootloader */ > + local-mac-address = [00 00 00 00 00 00]; > + }; > + > + icssg0_emac1: port@1 { > + reg = <1>; > + phy-handle = <&icssg0_phy01>; > + phy-mode = "rgmii-id"; > + syscon-rgmii-delay = <&main_conf 0x4104>; > + /* Filled in by bootloader */ > + local-mac-address = [00 00 00 00 00 00]; > + }; > + }; > + }; > +}; > + > +&main_pmx0 { > + pru_icssg0_mdio_pins_default: pru-icssg0-mdio-pins-default { These pmx nodes will fail make dtbs_check > + pinctrl-single,pins = < > + /* (P3) PRG0_MDIO0_MDC */ > + AM64X_IOPAD(0x0204, PIN_OUTPUT, 0) > + /* (P2) PRG0_MDIO0_MDIO */ > + AM64X_IOPAD(0x0200, PIN_INPUT, 0) > + /* (P16) GPIO0_32 - GPMC0_ADVn_ALE - GPIO_ETH0/1_RESETn# */ > + AM64X_IOPAD(0x0084, PIN_OUTPUT, 7) > + >; > + }; > + > + pru_icssg0_rgmii1_pins_default: pru-icssg0-rgmii1-pins-default { > + pinctrl-single,pins = < > + /* (module-sitara) */ What does this comment mean? > + /* (a14-y1) PRG0_PRU0_GPO0.PRG0_RGMII1_RD0 */ What does a14-y1 mean? > + AM64X_IOPAD(0x0160, PIN_INPUT, 2) > + /* (b14-r4) PRG0_PRU0_GPO1.PRG0_RGMII1_RD1 */ > + AM64X_IOPAD(0x0164, PIN_INPUT, 2) > + /* (d14-u2) PRG0_PRU0_GPO2.PRG0_RGMII1_RD2 */ > + AM64X_IOPAD(0x0168, PIN_INPUT, 2) > + /* (e14-v2) PRG0_PRU0_GPO3.PRG0_RGMII1_RD3 */ > + AM64X_IOPAD(0x016c, PIN_INPUT, 2) > + /* (e13-t3) PRG0_PRU0_GPO6.PRG0_RGMII1_RXC */ > + AM64X_IOPAD(0x0178, PIN_INPUT, 2) > + /* (b13-aa2) PRG0_PRU0_GPO4.PRG0_RGMII1_RX_CTL */ > + AM64X_IOPAD(0x0170, PIN_INPUT, 2) > + > + /* (a11-y3) PRG0_PRU0_GPO11.PRG0_RGMII1_TD0 */ > + AM64X_IOPAD(0x018c, PIN_OUTPUT, 2) > + /* (c11-aa3) PRG0_PRU0_GPO12.PRG0_RGMII1_TD1 */ > + AM64X_IOPAD(0x0190, PIN_OUTPUT, 2) > + /* (d11-r6) PRG0_PRU0_GPO13.PRG0_RGMII1_TD2 */ > + AM64X_IOPAD(0x0194, PIN_OUTPUT, 2) > + /* (b10-v4) PRG0_PRU0_GPO14.PRG0_RGMII1_TD3 */ > + AM64X_IOPAD(0x0198, PIN_OUTPUT, 2) > + /* (e10-u4) PRG0_PRU0_GPO16.PRG0_RGMII1_TXC */ > + AM64X_IOPAD(0x01a0, PIN_OUTPUT, 2) > + /* (c10-t5) PRG0_PRU0_GPO15.PRG0_RGMII1_TX_CTL */ > + AM64X_IOPAD(0x019c, PIN_OUTPUT, 2) > + >; > + }; > + > + pru_icssg0_rgmii2_pins_default: pru-icssg0-rgmii2-pins-default { > + pinctrl-single,pins = < > + /* (e9-y2) PRG0_PRU1_GPO0.PRG0_RGMII2_RD0 */ > + AM64X_IOPAD(0x01b0, PIN_INPUT, 2) > + /* (a8-w2) PRG0_PRU1_GPO1.PRG0_RGMII2_RD1 */ > + AM64X_IOPAD(0x01b4, PIN_INPUT, 2) > + /* (c8-v3) PRG0_PRU1_GPO2.PRG0_RGMII2_RD2 */ > + AM64X_IOPAD(0x01b8, PIN_INPUT, 2) > + /* (d8-t4) PRG0_PRU1_GPO3.PRG0_RGMII2_RD3 */ > + AM64X_IOPAD(0x01bc, PIN_INPUT, 2) > + /* (e7-r5) PRG0_PRU1_GPO6.PRG0_RGMII2_RXC */ > + AM64X_IOPAD(0x01c8, PIN_INPUT, 2) > + /* (b7-w3) PRG0_PRU1_GPO4.PRG0_RGMII2_RX_CTL */ > + AM64X_IOPAD(0x01c0, PIN_INPUT, 2) > + > + /* (a5-w4) PRG0_PRU1_GPO11.PRG0_RGMII2_TD0 */ > + AM64X_IOPAD(0x01dc, PIN_OUTPUT, 2) > + /* (c5-y4) PRG0_PRU1_GPO12.PRG0_RGMII2_TD1 */ > + AM64X_IOPAD(0x01e0, PIN_OUTPUT, 2) > + /* (d5-t6) PRG0_PRU1_GPO13.PRG0_RGMII2_TD2 */ > + AM64X_IOPAD(0x01e4, PIN_OUTPUT, 2) > + /* (b4-u6) PRG0_PRU1_GPO14.PRG0_RGMII2_TD3 */ > + AM64X_IOPAD(0x01e8, PIN_OUTPUT, 2) > + /* (a3-aa4) PRG0_PRU1_GPO16.PRG0_RGMII2_TXC */ > + AM64X_IOPAD(0x01f0, PIN_OUTPUT, 2) > + /* (c4-u5) PRG0_PRU1_GPO15.PRG0_RGMII2_TX_CTL */ > + AM64X_IOPAD(0x01ec, PIN_OUTPUT, 2) > + >; > + }; > + > + icssg0_iep0_pins_default: icssg0-iep0-pins-default { > + pinctrl-single,pins = < > + AM64X_IOPAD(0x01ac, PIN_OUTPUT, 2) /* (W1) PRG0_PRU0_GPO19.PRG0_IEP0_EDC_SYNC_OUT0 */ > + >; > + }; > +}; > + > +&icssg0_mdio { > + pinctrl-names = "default"; > + status = "okay"; > + pinctrl-0 = <&pru_icssg0_mdio_pins_default>; > + #address-cells = <1>; > + #size-cells = <0>; > + > + icssg0_phy00: ethernet-phy@0 { > + reg = <0x0>; > + }; > + > + icssg0_phy01: ethernet-phy@1 { > + reg = <0xA>; Small caps for hex digits. Please run all DT checks before posting. reg doesnt match node address here. > + }; > +}; > + > +&icssg0_iep0 { > + pinctrl-names = "default"; > + pinctrl-0 = <&icssg0_iep0_pins_default>; > +}; > + > +&main_gpio0 { > + phy-line-hog { > + gpio-hog; > + gpios = <32 GPIO_ACTIVE_HIGH>; > + output-high; > + line-name = "phy-hog-line"; > + }; > +}; -- Regards Vignesh https://ti.com/opensource ^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v2 2/2] arm64: defconfig: Enable DP83TG720 PHY driver 2026-02-28 11:32 [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Meghana Malladi 2026-02-28 11:32 ` [PATCH v2 1/2] arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support Meghana Malladi @ 2026-02-28 11:32 ` Meghana Malladi 2026-03-04 15:32 ` [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Daolin Qiu 2 siblings, 0 replies; 7+ messages in thread From: Meghana Malladi @ 2026-02-28 11:32 UTC (permalink / raw) To: nm, vigneshr Cc: conor+dt, krzk+dt, robh, kristo, linux-kernel, devicetree, linux-arm-kernel, netdev, srk, Roger Quadros, danishanwar, m-malladi Enable DP83TG720 PHY driver as a module to support TI's DP83TG720 1000BASE-T1 Automotive Ethernet PHY. This is required for the DP83TG720-IND-SPE-EVM daughter card used with AM642 EVM ICSSG0 interface. Signed-off-by: Meghana Malladi <m-malladi@ti.com> --- v1: https://lore.kernel.org/all/20260226185448.2167189-1-m-malladi@ti.com/ v2-v1: - Post this patch along with corresponding DTS patch as suggested by Krzysztof Kozlowski <krzk@kernel.org> arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index b67d5b1fc45b..3b88df2ca5e1 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -420,6 +420,7 @@ CONFIG_REALTEK_PHY=y CONFIG_ROCKCHIP_PHY=y CONFIG_DP83867_PHY=y CONFIG_DP83869_PHY=m +CONFIG_DP83TG720_PHY=m CONFIG_DP83TD510_PHY=y CONFIG_VITESSE_PHY=y CONFIG_XILINX_GMII2RGMII=m -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM 2026-02-28 11:32 [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Meghana Malladi 2026-02-28 11:32 ` [PATCH v2 1/2] arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support Meghana Malladi 2026-02-28 11:32 ` [PATCH v2 2/2] arm64: defconfig: Enable DP83TG720 PHY driver Meghana Malladi @ 2026-03-04 15:32 ` Daolin Qiu 2026-03-04 15:44 ` Krzysztof Kozlowski 2 siblings, 1 reply; 7+ messages in thread From: Daolin Qiu @ 2026-03-04 15:32 UTC (permalink / raw) To: Meghana Malladi, nm, vigneshr Cc: conor+dt, krzk+dt, robh, kristo, linux-kernel, devicetree, linux-arm-kernel, netdev, srk, Roger Quadros, danishanwar, d-qiu On 2/28/26 05:32, Meghana Malladi wrote: > This series adds device tree overlay support for enabling ICSSG0 dual EMAC > on the AM642 EVM, along with the necessary PHY driver configuration. > > The overlay enables both ICSSG0 Ethernet interfaces (port0 and port1) in > dual EMAC mode and can be combined with the existing ICSSG1 overlay to > enable all four ICSSG interfaces if needed. > > The series also enables the DP83TG720 PHY driver required for the > DP83TG720-IND-SPE-EVM daughter card used with the ICSSG0 interface. > > Meghana Malladi (2): > arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support > arm64: defconfig: Enable DP83TG720 PHY driver > > arch/arm64/boot/dts/ti/Makefile | 4 + > .../boot/dts/ti/k3-am642-evm-icssg0.dtso | 203 ++++++++++++++++++ > arch/arm64/configs/defconfig | 1 + > 3 files changed, 208 insertions(+) > create mode 100644 arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso > > > base-commit: 4916f2e2f3fc9aef289fcd07949301e5c29094c2 Tested both ipv6 and ipv4 ping to be functional with the following topology. DUT 1 eth3 <---> eth2 DUT2 DUT1 log: https://gist.github.com/dao-qiu/f261147110b6b05d1fb989ee74e1d694 DUT2 log: https://gist.github.com/dao-qiu/3add536e2370d6afe36145f46df784e6 Tested-by: Daolin Qiu <d-qiu@ti.com> ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM 2026-03-04 15:32 ` [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Daolin Qiu @ 2026-03-04 15:44 ` Krzysztof Kozlowski 2026-03-07 0:21 ` Daolin Qiu 0 siblings, 1 reply; 7+ messages in thread From: Krzysztof Kozlowski @ 2026-03-04 15:44 UTC (permalink / raw) To: Daolin Qiu, Meghana Malladi, nm, vigneshr Cc: conor+dt, krzk+dt, robh, kristo, linux-kernel, devicetree, linux-arm-kernel, netdev, srk, Roger Quadros, danishanwar On 04/03/2026 16:32, Daolin Qiu wrote: > > On 2/28/26 05:32, Meghana Malladi wrote: >> This series adds device tree overlay support for enabling ICSSG0 dual EMAC >> on the AM642 EVM, along with the necessary PHY driver configuration. >> >> The overlay enables both ICSSG0 Ethernet interfaces (port0 and port1) in >> dual EMAC mode and can be combined with the existing ICSSG1 overlay to >> enable all four ICSSG interfaces if needed. >> >> The series also enables the DP83TG720 PHY driver required for the >> DP83TG720-IND-SPE-EVM daughter card used with the ICSSG0 interface. >> >> Meghana Malladi (2): >> arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support >> arm64: defconfig: Enable DP83TG720 PHY driver >> >> arch/arm64/boot/dts/ti/Makefile | 4 + >> .../boot/dts/ti/k3-am642-evm-icssg0.dtso | 203 ++++++++++++++++++ >> arch/arm64/configs/defconfig | 1 + >> 3 files changed, 208 insertions(+) >> create mode 100644 arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso >> >> >> base-commit: 4916f2e2f3fc9aef289fcd07949301e5c29094c2 > > Tested both ipv6 and ipv4 ping to be functional with the following > topology. > > DUT 1 eth3 <---> eth2 DUT2 > > DUT1 log: https://gist.github.com/dao-qiu/f261147110b6b05d1fb989ee74e1d694 > > DUT2 log: https://gist.github.com/dao-qiu/3add536e2370d6afe36145f46df784e6 > > Tested-by: Daolin Qiu <d-qiu@ti.com> > You cannot test defconfig, so please don't post it to cover letter. Same effort for you - one Tb tag - but now you require maintainers to handle it specially when applying. Best regards, Krzysztof ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM 2026-03-04 15:44 ` Krzysztof Kozlowski @ 2026-03-07 0:21 ` Daolin Qiu 0 siblings, 0 replies; 7+ messages in thread From: Daolin Qiu @ 2026-03-07 0:21 UTC (permalink / raw) To: Krzysztof Kozlowski, Meghana Malladi, nm, vigneshr Cc: conor+dt, krzk+dt, robh, kristo, linux-kernel, devicetree, linux-arm-kernel, netdev, srk, Roger Quadros, danishanwar On 3/4/26 09:44, Krzysztof Kozlowski wrote: > On 04/03/2026 16:32, Daolin Qiu wrote: >> On 2/28/26 05:32, Meghana Malladi wrote: >>> This series adds device tree overlay support for enabling ICSSG0 dual EMAC >>> on the AM642 EVM, along with the necessary PHY driver configuration. >>> >>> The overlay enables both ICSSG0 Ethernet interfaces (port0 and port1) in >>> dual EMAC mode and can be combined with the existing ICSSG1 overlay to >>> enable all four ICSSG interfaces if needed. >>> >>> The series also enables the DP83TG720 PHY driver required for the >>> DP83TG720-IND-SPE-EVM daughter card used with the ICSSG0 interface. >>> >>> Meghana Malladi (2): >>> arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support >>> arm64: defconfig: Enable DP83TG720 PHY driver >>> >>> arch/arm64/boot/dts/ti/Makefile | 4 + >>> .../boot/dts/ti/k3-am642-evm-icssg0.dtso | 203 ++++++++++++++++++ >>> arch/arm64/configs/defconfig | 1 + >>> 3 files changed, 208 insertions(+) >>> create mode 100644 arch/arm64/boot/dts/ti/k3-am642-evm-icssg0.dtso >>> >>> >>> base-commit: 4916f2e2f3fc9aef289fcd07949301e5c29094c2 >> Tested both ipv6 and ipv4 ping to be functional with the following >> topology. >> >> DUT 1 eth3 <---> eth2 DUT2 >> >> DUT1 log: https://gist.github.com/dao-qiu/f261147110b6b05d1fb989ee74e1d694 >> >> DUT2 log: https://gist.github.com/dao-qiu/3add536e2370d6afe36145f46df784e6 >> >> Tested-by: Daolin Qiu <d-qiu@ti.com> >> > You cannot test defconfig, so please don't post it to cover letter. Same > effort for you - one Tb tag - but now you require maintainers to handle > it specially when applying. Apologies for this, I was not aware the problem with testing defconfig. I will keep this in mind when I add the Tb tag in any future patches. > > Best regards, > Krzysztof ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-03-09 4:45 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-28 11:32 [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Meghana Malladi 2026-02-28 11:32 ` [PATCH v2 1/2] arm64: dts: ti: k3-am642-evm: Add ICSSG0 overlay for dual EMAC support Meghana Malladi 2026-03-09 4:44 ` Vignesh Raghavendra 2026-02-28 11:32 ` [PATCH v2 2/2] arm64: defconfig: Enable DP83TG720 PHY driver Meghana Malladi 2026-03-04 15:32 ` [PATCH v2 0/2] Add ICSSG0 dual EMAC support for AM642 EVM Daolin Qiu 2026-03-04 15:44 ` Krzysztof Kozlowski 2026-03-07 0:21 ` Daolin Qiu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox