* [PATCH net-next v12 0/3] Add support for Nuvoton MA35D1 GMAC
@ 2026-02-10 5:22 Joey Lu
2026-02-10 5:22 ` [PATCH net-next v12 1/3] dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC Joey Lu
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Joey Lu @ 2026-02-10 5:22 UTC (permalink / raw)
To: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt,
conor+dt, mcoquelin.stm32, richardcochran
Cc: alexandre.torgue, joabreu, ychuang3, schung, yclu4,
peppe.cavallaro, linux-arm-kernel, netdev, devicetree,
linux-kernel, openbmc, linux-stm32, Joey Lu
This patch series is submitted to add GMAC support for Nuvoton MA35D1
SoC platform. This work involves implementing a GMAC driver glue layer
based on Synopsys DWMAC driver framework to leverage MA35D1's dual GMAC
interface capabilities.
Overview:
1. Added a GMAC driver glue layer for MA35D1 SoC, providing support for
the platform's two GMAC interfaces.
2. Added device tree settings, with specific configurations for our
development boards:
a. SOM board: Configured for two RGMII interfaces.
b. IoT board: Configured with one RGMII and one RMII interface.
3. Added dt-bindings for the GMAC interfaces.
v12:
- Drop private structure nvt_priv_data
- Fix error propagation to preserve probe deferral
- Refactor internal delay handling into a dedicated helper
- Move FIFO and filter configuration from driver to Device Tree
- Update DT binding to include "snps,dwmac-3.70a" compatible
v11:
- Propagate syscon lookup errors to allow proper probe deferral.
v10:
- Update DTS/DTSI files to follow proper hierarchy and port modeling
v9:
- Fixed file permissions. (YAML, driver, DTS)
- Moved phy-handle and PHY-related properties from SoC dtsi to board dts.
v8:
Changes since v7:
- Rebased onto the latest net-next.
- Removed unused symbol.
- stmmac parent driver now reads hardware features directly to support
Wake-on-LAN via magic packet, so PMT-related overrides in this driver
have been removed.
- Update dwmac-nuvoton driver:
- Update the license to GPL.
- Improve the description in Kconfig.
v7:
- Update dwmac-nuvoton driver
- Update probe function to use stmmac_pltfr_probe instead.
v6:
- Update dwmac-nuvoton driver
- Use NVT as the previx for all functions, structs, and defines.
- Remove unnecessary comments.
v5:
- Update yaml
- Remove the properties already defined in snps dwmac.
- Update dwmac-nuvoton driver
- Add a comment to explain the override of PMT flag.
v4:
- Update yaml
- Remove unnecessary property 'select'.
- Remove unnecessary compatible entries and fix items.
- Specify number of entries for 'reg'.
- Remove already defined property 'phy-handle'.
- Update example.
- Modify the property internal path delay to match the driver.
- Update dtsi
- Move 'status' to be the last property.
- Update dwmac-nuvoton driver
- Use remove instead of remove_new.
- Use dev_err_probe instead.
v3:
- Update yaml
- Fix for dt_binding_check warnings & errors.
- Add compatible in snps dwmac.
- Update dtsi
- Update dtsi to follow examples in yaml.
- Update dwmac-nuvoton driver
- Fix for auto build test warnings.
- Invalid path delay arguments will be returned.
v2:
- Update yaml
- Rename file to align with the compatible property.
- Add an argument to syscon to replace mac-id,
with corresponding descriptions.
- Use tx-internal-delay-ps and rx-internal-delay-ps properties for
configurable path delay with corresponding descriptions,
allowing selection between GMAC internal and PHY.
- Add all supported phy-mode options.
- Remove unused properties.
- Update dtsi
- Modify syscon configuration to include an argument for
GMAC interface selection.
- Update dwmac-nuvoton driver
- Remove redundant device information print statements.
- Remove non-global parameters.
- Retrieve GMAC interface selection from the syscon argument.
- Parse Tx and Rx path delays by correct properties.
- Update configurations to support Wake-on-LAN.
Joey Lu (3):
dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC
arm64: dts: nuvoton: Add Ethernet nodes
net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family
.../bindings/net/nuvoton,ma35d1-dwmac.yaml | 133 +++++++++++++++++
.../devicetree/bindings/net/snps,dwmac.yaml | 1 +
.../boot/dts/nuvoton/ma35d1-iot-512m.dts | 25 ++++
.../boot/dts/nuvoton/ma35d1-som-256m.dts | 24 +++
arch/arm64/boot/dts/nuvoton/ma35d1.dtsi | 52 +++++++
drivers/net/ethernet/stmicro/stmmac/Kconfig | 12 ++
drivers/net/ethernet/stmicro/stmmac/Makefile | 1 +
.../ethernet/stmicro/stmmac/dwmac-nuvoton.c | 139 ++++++++++++++++++
8 files changed, 387 insertions(+)
create mode 100644 Documentation/devicetree/bindings/net/nuvoton,ma35d1-dwmac.yaml
create mode 100644 drivers/net/ethernet/stmicro/stmmac/dwmac-nuvoton.c
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH net-next v12 1/3] dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC 2026-02-10 5:22 [PATCH net-next v12 0/3] Add support for Nuvoton MA35D1 GMAC Joey Lu @ 2026-02-10 5:22 ` Joey Lu 2026-02-10 13:35 ` Rob Herring (Arm) 2026-02-10 5:22 ` [PATCH net-next v12 2/3] arm64: dts: nuvoton: Add Ethernet nodes Joey Lu 2026-02-10 5:22 ` [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family Joey Lu 2 siblings, 1 reply; 8+ messages in thread From: Joey Lu @ 2026-02-10 5:22 UTC (permalink / raw) To: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt, conor+dt, mcoquelin.stm32, richardcochran Cc: alexandre.torgue, joabreu, ychuang3, schung, yclu4, peppe.cavallaro, linux-arm-kernel, netdev, devicetree, linux-kernel, openbmc, linux-stm32, Joey Lu Create initial schema for Nuvoton MA35 family Gigabit MAC. Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Joey Lu <a0987203069@gmail.com> --- .../bindings/net/nuvoton,ma35d1-dwmac.yaml | 133 ++++++++++++++++++ .../devicetree/bindings/net/snps,dwmac.yaml | 1 + 2 files changed, 134 insertions(+) create mode 100644 Documentation/devicetree/bindings/net/nuvoton,ma35d1-dwmac.yaml diff --git a/Documentation/devicetree/bindings/net/nuvoton,ma35d1-dwmac.yaml b/Documentation/devicetree/bindings/net/nuvoton,ma35d1-dwmac.yaml new file mode 100644 index 000000000000..4d9e06f2dc26 --- /dev/null +++ b/Documentation/devicetree/bindings/net/nuvoton,ma35d1-dwmac.yaml @@ -0,0 +1,133 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Nuvoton DWMAC glue layer controller + +maintainers: + - Joey Lu <yclu4@nuvoton.com> + +description: + Nuvoton 10/100/1000Mbps Gigabit Ethernet MAC Controller is based on + Synopsys DesignWare MAC (version 3.73a). + +allOf: + - $ref: snps,dwmac.yaml# + +properties: + compatible: + items: + - enum: + - nuvoton,ma35d1-dwmac + - enum: + - snps,dwmac-3.70a + + reg: + maxItems: 1 + description: + Register range should be one of the GMAC interface. + + interrupts: + maxItems: 1 + + clocks: + items: + - description: MAC clock + - description: PTP clock + + clock-names: + items: + - const: stmmaceth + - const: ptp_ref + + nuvoton,sys: + $ref: /schemas/types.yaml#/definitions/phandle-array + items: + - items: + - description: phandle to access syscon registers. + - description: GMAC interface ID. + enum: + - 0 + - 1 + description: + A phandle to the syscon with one argument that configures system registers + for MA35D1's two GMACs. The argument specifies the GMAC interface ID. + + resets: + maxItems: 1 + + reset-names: + items: + - const: stmmaceth + + phy-mode: + enum: + - rmii + - rgmii + - rgmii-id + - rgmii-txid + - rgmii-rxid + + tx-internal-delay-ps: + default: 0 + minimum: 0 + maximum: 2000 + description: + RGMII TX path delay used only when PHY operates in RGMII mode with + internal delay (phy-mode is 'rgmii-id' or 'rgmii-txid') in pico-seconds. + Allowed values are from 0 to 2000. + + rx-internal-delay-ps: + default: 0 + minimum: 0 + maximum: 2000 + description: + RGMII RX path delay used only when PHY operates in RGMII mode with + internal delay (phy-mode is 'rgmii-id' or 'rgmii-rxid') in pico-seconds. + Allowed values are from 0 to 2000. + +required: + - clocks + - clock-names + - nuvoton,sys + - resets + - reset-names + - phy-mode + +unevaluatedProperties: false + +examples: + - | + #include <dt-bindings/interrupt-controller/arm-gic.h> + #include <dt-bindings/clock/nuvoton,ma35d1-clk.h> + #include <dt-bindings/reset/nuvoton,ma35d1-reset.h> + ethernet@40120000 { + compatible = "nuvoton,ma35d1-dwmac", "snps,dwmac-3.70a"; + reg = <0x40120000 0x10000>; + interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; + interrupt-names = "macirq"; + clocks = <&clk EMAC0_GATE>, <&clk EPLL_DIV8>; + clock-names = "stmmaceth", "ptp_ref"; + + nuvoton,sys = <&sys 0>; + resets = <&sys MA35D1_RESET_GMAC0>; + reset-names = "stmmaceth"; + snps,multicast-filter-bins = <0>; + snps,perfect-filter-entries = <8>; + rx-fifo-depth = <4096>; + tx-fifo-depth = <2048>; + + phy-mode = "rgmii-id"; + phy-handle = <ð_phy0>; + mdio { + compatible = "snps,dwmac-mdio"; + #address-cells = <1>; + #size-cells = <0>; + + eth_phy0: ethernet-phy@0 { + reg = <0>; + }; + }; + }; diff --git a/Documentation/devicetree/bindings/net/snps,dwmac.yaml b/Documentation/devicetree/bindings/net/snps,dwmac.yaml index 38bc34dc4f09..de04cbbab0c6 100644 --- a/Documentation/devicetree/bindings/net/snps,dwmac.yaml +++ b/Documentation/devicetree/bindings/net/snps,dwmac.yaml @@ -69,6 +69,7 @@ properties: - ingenic,x2000-mac - loongson,ls2k-dwmac - loongson,ls7a-dwmac + - nuvoton,ma35d1-dwmac - nxp,s32g2-dwmac - qcom,qcs404-ethqos - qcom,sa8775p-ethqos -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH net-next v12 1/3] dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC 2026-02-10 5:22 ` [PATCH net-next v12 1/3] dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC Joey Lu @ 2026-02-10 13:35 ` Rob Herring (Arm) 0 siblings, 0 replies; 8+ messages in thread From: Rob Herring (Arm) @ 2026-02-10 13:35 UTC (permalink / raw) To: Joey Lu Cc: devicetree, andrew+netdev, mcoquelin.stm32, yclu4, alexandre.torgue, linux-kernel, edumazet, linux-stm32, schung, netdev, conor+dt, linux-arm-kernel, richardcochran, davem, openbmc, krzk+dt, kuba, ychuang3, peppe.cavallaro, pabeni, joabreu On Tue, 10 Feb 2026 13:22:24 +0800, Joey Lu wrote: > Create initial schema for Nuvoton MA35 family Gigabit MAC. > > Reviewed-by: Rob Herring (Arm) <robh@kernel.org> > Signed-off-by: Joey Lu <a0987203069@gmail.com> > --- > .../bindings/net/nuvoton,ma35d1-dwmac.yaml | 133 ++++++++++++++++++ > .../devicetree/bindings/net/snps,dwmac.yaml | 1 + > 2 files changed, 134 insertions(+) > create mode 100644 Documentation/devicetree/bindings/net/nuvoton,ma35d1-dwmac.yaml > My bot found errors running 'make dt_binding_check' on your patch: yamllint warnings/errors: dtschema/dtc warnings/errors: /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): clock-names: ['stmmaceth'] is too short from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): clocks: [[4294967295]] is too short from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): compatible:0: 'altr,socfpga-stmmac' is not one of ['nuvoton,ma35d1-dwmac'] from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): compatible: ['altr,socfpga-stmmac', 'snps,dwmac-3.70a', 'snps,dwmac'] is too long from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): phy-mode:0: 'sgmii' is not one of ['rmii', 'rgmii', 'rgmii-id', 'rgmii-txid', 'rgmii-rxid'] from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): 'nuvoton,sys' is a required property from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): 'resets' is a required property from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): 'reset-names' is a required property from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/altr,socfpga-stmmac.example.dtb: ethernet@ff700000 (altr,socfpga-stmmac): Unevaluated properties are not allowed ('altr,sysmgr-syscon' was unexpected) from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/sophgo,cv1800b-dwmac.example.dtb: ethernet@4070000 (sophgo,cv1800b-dwmac): compatible:0: 'sophgo,cv1800b-dwmac' is not one of ['nuvoton,ma35d1-dwmac'] from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/sophgo,cv1800b-dwmac.example.dtb: ethernet@4070000 (sophgo,cv1800b-dwmac): phy-mode:0: 'internal' is not one of ['rmii', 'rgmii', 'rgmii-id', 'rgmii-txid', 'rgmii-rxid'] from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/sophgo,cv1800b-dwmac.example.dtb: ethernet@4070000 (sophgo,cv1800b-dwmac): 'nuvoton,sys' is a required property from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): clock-names:1: 'ptp_ref' was expected from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): clock-names: ['stmmaceth', 'pclk', 'apb'] is too long from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): clocks: [[4294967295, 1], [4294967295, 2], [4294967295, 3]] is too long from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): compatible:0: 'thead,th1520-gmac' is not one of ['nuvoton,ma35d1-dwmac'] from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): reg: [[3875995648, 8192], [3959435264, 4096]] is too long from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): 'nuvoton,sys' is a required property from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): 'resets' is a required property from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): 'reset-names' is a required property from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml /builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/net/thead,th1520-gmac.example.dtb: ethernet@e7070000 (thead,th1520-gmac): Unevaluated properties are not allowed ('reg-names' was unexpected) from schema $id: http://devicetree.org/schemas/net/nuvoton,ma35d1-dwmac.yaml doc reference errors (make refcheckdocs): See https://patchwork.kernel.org/project/devicetree/patch/20260210052226.3005666-2-a0987203069@gmail.com The base for the series is generally the latest rc1. A different dependency should be noted in *this* patch. If you already ran 'make dt_binding_check' and didn't see the above error(s), then make sure 'yamllint' is installed and dt-schema is up to date: pip3 install dtschema --upgrade Please check and re-submit after running the above command yourself. Note that DT_SCHEMA_FILES can be set to your schema file to speed up checking your schema. However, it must be unset to test all examples with your schema. ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH net-next v12 2/3] arm64: dts: nuvoton: Add Ethernet nodes 2026-02-10 5:22 [PATCH net-next v12 0/3] Add support for Nuvoton MA35D1 GMAC Joey Lu 2026-02-10 5:22 ` [PATCH net-next v12 1/3] dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC Joey Lu @ 2026-02-10 5:22 ` Joey Lu 2026-02-10 5:22 ` [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family Joey Lu 2 siblings, 0 replies; 8+ messages in thread From: Joey Lu @ 2026-02-10 5:22 UTC (permalink / raw) To: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt, conor+dt, mcoquelin.stm32, richardcochran Cc: alexandre.torgue, joabreu, ychuang3, schung, yclu4, peppe.cavallaro, linux-arm-kernel, netdev, devicetree, linux-kernel, openbmc, linux-stm32, Joey Lu Add GMAC nodes for our MA35D1 development boards: two RGMII interfaces for SOM board, and one RGMII and one RMII interface for IoT board. Signed-off-by: Joey Lu <a0987203069@gmail.com> --- .../boot/dts/nuvoton/ma35d1-iot-512m.dts | 25 +++++++++ .../boot/dts/nuvoton/ma35d1-som-256m.dts | 24 +++++++++ arch/arm64/boot/dts/nuvoton/ma35d1.dtsi | 52 +++++++++++++++++++ 3 files changed, 101 insertions(+) diff --git a/arch/arm64/boot/dts/nuvoton/ma35d1-iot-512m.dts b/arch/arm64/boot/dts/nuvoton/ma35d1-iot-512m.dts index 9482bec1aa57..78534d613486 100644 --- a/arch/arm64/boot/dts/nuvoton/ma35d1-iot-512m.dts +++ b/arch/arm64/boot/dts/nuvoton/ma35d1-iot-512m.dts @@ -18,6 +18,8 @@ aliases { serial12 = &uart12; serial13 = &uart13; serial14 = &uart14; + ethernet0 = &gmac0; + ethernet1 = &gmac1; }; chosen { @@ -126,3 +128,26 @@ &uart14 { pinctrl-0 = <&pinctrl_uart14>; status = "okay"; }; + +&gmac0 { + status = "okay"; + phy-handle = <ð_phy0>; +}; + +&mdio0 { + eth_phy0: ethernet-phy@0 { + reg = <0>; + }; +}; + +&gmac1 { + status = "okay"; + phy-mode = "rmii"; + phy-handle = <ð_phy1>; +}; + +&mdio1 { + eth_phy1: ethernet-phy@1 { + reg = <1>; + }; +}; diff --git a/arch/arm64/boot/dts/nuvoton/ma35d1-som-256m.dts b/arch/arm64/boot/dts/nuvoton/ma35d1-som-256m.dts index f6f20a17e501..a029b660e8dc 100644 --- a/arch/arm64/boot/dts/nuvoton/ma35d1-som-256m.dts +++ b/arch/arm64/boot/dts/nuvoton/ma35d1-som-256m.dts @@ -18,6 +18,8 @@ aliases { serial12 = &uart12; serial14 = &uart14; serial16 = &uart16; + ethernet0 = &gmac0; + ethernet1 = &gmac1; }; chosen { @@ -129,3 +131,25 @@ &uart16 { pinctrl-0 = <&pinctrl_uart16>; status = "okay"; }; + +&gmac0 { + status = "okay"; + phy-handle = <ð_phy0>; +}; + +&mdio0 { + eth_phy0: ethernet-phy@0 { + reg = <0>; + }; +}; + +&gmac1 { + status = "okay"; + phy-handle = <ð_phy1>; +}; + +&mdio1 { + eth_phy1: ethernet-phy@1 { + reg = <1>; + }; +}; diff --git a/arch/arm64/boot/dts/nuvoton/ma35d1.dtsi b/arch/arm64/boot/dts/nuvoton/ma35d1.dtsi index e51b98f5bdce..7228ad4735b5 100644 --- a/arch/arm64/boot/dts/nuvoton/ma35d1.dtsi +++ b/arch/arm64/boot/dts/nuvoton/ma35d1.dtsi @@ -379,5 +379,57 @@ uart16: serial@40880000 { clocks = <&clk UART16_GATE>; status = "disabled"; }; + + gmac0: ethernet@40120000 { + compatible = "nuvoton,ma35d1-dwmac", "snps,dwmac-3.70a"; + reg = <0x0 0x40120000 0x0 0x10000>; + interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; + interrupt-names = "macirq"; + clocks = <&clk EMAC0_GATE>, <&clk EPLL_DIV8>; + clock-names = "stmmaceth", "ptp_ref"; + + nuvoton,sys = <&sys 0>; + resets = <&sys MA35D1_RESET_GMAC0>; + reset-names = "stmmaceth"; + snps,multicast-filter-bins = <0>; + snps,perfect-filter-entries = <8>; + rx-fifo-depth = <4096>; + tx-fifo-depth = <2048>; + + phy-mode = "rgmii-id"; + status = "disabled"; + + mdio0: mdio { + compatible = "snps,dwmac-mdio"; + #address-cells = <1>; + #size-cells = <0>; + }; + }; + + gmac1: ethernet@40130000 { + compatible = "nuvoton,ma35d1-dwmac", "snps,dwmac-3.70a"; + reg = <0x0 0x40130000 0x0 0x10000>; + interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; + interrupt-names = "macirq"; + clocks = <&clk EMAC1_GATE>, <&clk EPLL_DIV8>; + clock-names = "stmmaceth", "ptp_ref"; + + nuvoton,sys = <&sys 1>; + resets = <&sys MA35D1_RESET_GMAC1>; + reset-names = "stmmaceth"; + snps,multicast-filter-bins = <0>; + snps,perfect-filter-entries = <8>; + rx-fifo-depth = <4096>; + tx-fifo-depth = <2048>; + + phy-mode = "rgmii-id"; + status = "disabled"; + + mdio1: mdio { + compatible = "snps,dwmac-mdio"; + #address-cells = <1>; + #size-cells = <0>; + }; + }; }; }; -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family 2026-02-10 5:22 [PATCH net-next v12 0/3] Add support for Nuvoton MA35D1 GMAC Joey Lu 2026-02-10 5:22 ` [PATCH net-next v12 1/3] dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC Joey Lu 2026-02-10 5:22 ` [PATCH net-next v12 2/3] arm64: dts: nuvoton: Add Ethernet nodes Joey Lu @ 2026-02-10 5:22 ` Joey Lu 2026-02-10 13:12 ` Russell King (Oracle) 2 siblings, 1 reply; 8+ messages in thread From: Joey Lu @ 2026-02-10 5:22 UTC (permalink / raw) To: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt, conor+dt, mcoquelin.stm32, richardcochran Cc: alexandre.torgue, joabreu, ychuang3, schung, yclu4, peppe.cavallaro, linux-arm-kernel, netdev, devicetree, linux-kernel, openbmc, linux-stm32, Joey Lu, Andrew Lunn Add support for Gigabit Ethernet on Nuvoton MA35 series using dwmac driver. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Joey Lu <a0987203069@gmail.com> --- drivers/net/ethernet/stmicro/stmmac/Kconfig | 12 ++ drivers/net/ethernet/stmicro/stmmac/Makefile | 1 + .../ethernet/stmicro/stmmac/dwmac-nuvoton.c | 139 ++++++++++++++++++ 3 files changed, 152 insertions(+) create mode 100644 drivers/net/ethernet/stmicro/stmmac/dwmac-nuvoton.c diff --git a/drivers/net/ethernet/stmicro/stmmac/Kconfig b/drivers/net/ethernet/stmicro/stmmac/Kconfig index 07088d03dbab..861f1c6c14f1 100644 --- a/drivers/net/ethernet/stmicro/stmmac/Kconfig +++ b/drivers/net/ethernet/stmicro/stmmac/Kconfig @@ -132,6 +132,18 @@ config DWMAC_MESON the stmmac device driver. This driver is used for Meson6, Meson8, Meson8b and GXBB SoCs. +config DWMAC_NUVOTON + tristate "Nuvoton MA35 dwmac support" + default ARCH_MA35 + depends on OF && (ARCH_MA35 || COMPILE_TEST) + select MFD_SYSCON + help + Support for Ethernet controller on Nuvoton MA35 series SoC. + + This selects the Nuvoton MA35 series SoC glue layer support + for the stmmac device driver. The nuvoton-dwmac driver is + used for MA35 series SoCs. + config DWMAC_QCOM_ETHQOS tristate "Qualcomm ETHQOS support" default ARCH_QCOM diff --git a/drivers/net/ethernet/stmicro/stmmac/Makefile b/drivers/net/ethernet/stmicro/stmmac/Makefile index c9263987ef8d..4ade030b634f 100644 --- a/drivers/net/ethernet/stmicro/stmmac/Makefile +++ b/drivers/net/ethernet/stmicro/stmmac/Makefile @@ -20,6 +20,7 @@ obj-$(CONFIG_DWMAC_IPQ806X) += dwmac-ipq806x.o obj-$(CONFIG_DWMAC_LPC18XX) += dwmac-lpc18xx.o obj-$(CONFIG_DWMAC_MEDIATEK) += dwmac-mediatek.o obj-$(CONFIG_DWMAC_MESON) += dwmac-meson.o dwmac-meson8b.o +obj-$(CONFIG_DWMAC_NUVOTON) += dwmac-nuvoton.o obj-$(CONFIG_DWMAC_QCOM_ETHQOS) += dwmac-qcom-ethqos.o obj-$(CONFIG_DWMAC_RENESAS_GBETH) += dwmac-renesas-gbeth.o obj-$(CONFIG_DWMAC_ROCKCHIP) += dwmac-rk.o diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-nuvoton.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-nuvoton.c new file mode 100644 index 000000000000..29d15f41b244 --- /dev/null +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-nuvoton.c @@ -0,0 +1,139 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Nuvoton DWMAC specific glue layer + * + * Copyright (C) 2025 Nuvoton Technology Corp. + * + * Author: Joey Lu <a0987203069@gmail.com> + */ + +#include <linux/mfd/syscon.h> +#include <linux/of_device.h> +#include <linux/of_net.h> +#include <linux/platform_device.h> +#include <linux/regmap.h> +#include <linux/stmmac.h> + +#include "stmmac.h" +#include "stmmac_platform.h" + +#define NVT_REG_SYS_GMAC0MISCR 0x108 +#define NVT_REG_SYS_GMAC1MISCR 0x10C + +#define NVT_MISCR_RMII BIT(0) + +/* Two thousand picoseconds are evenly mapped to a 4-bit field, + * resulting in each step being 2000/15 picoseconds. + */ +#define NVT_PATH_DELAY_STEP 134 +#define NVT_TX_DELAY_MASK GENMASK(19, 16) +#define NVT_RX_DELAY_MASK GENMASK(23, 20) + +static int nvt_gmac_get_delay(struct device *dev, const char *property) +{ + u32 arg; + + if (of_property_read_u32(dev->of_node, property, &arg)) + return 0; + + if (arg > 2000) { + dev_err(dev, "Invalid %s argument.\n", property); + return -EINVAL; + } + + if (arg == 2000) + return 15; + + return arg / NVT_PATH_DELAY_STEP; +} + +static int nvt_gmac_setup(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + phy_interface_t phy_mode; + struct regmap *regmap; + u32 macid, miscr, reg; + int ret; + + regmap = syscon_regmap_lookup_by_phandle_args(dev->of_node, "nuvoton,sys", 1, &macid); + if (IS_ERR(regmap)) + ret = dev_err_probe(dev, PTR_ERR(regmap), "Failed to get sys register\n"); + + if (macid > 1) + ret = dev_err_probe(dev, -EINVAL, "Invalid sys arguments\n"); + + if (of_get_phy_mode(pdev->dev.of_node, &phy_mode)) + ret = dev_err_probe(dev, -EINVAL, "Missing phy mode property\n"); + + miscr = (macid == 0) ? NVT_REG_SYS_GMAC0MISCR : NVT_REG_SYS_GMAC1MISCR; + + switch (phy_mode) { + case PHY_INTERFACE_MODE_RGMII: + case PHY_INTERFACE_MODE_RGMII_ID: + case PHY_INTERFACE_MODE_RGMII_RXID: + case PHY_INTERFACE_MODE_RGMII_TXID: + ret = nvt_gmac_get_delay(dev, "rx-internal-delay-ps"); + if (ret < 0) + return ret; + reg = FIELD_PREP(NVT_RX_DELAY_MASK, ret); + + ret = nvt_gmac_get_delay(dev, "tx-internal-delay-ps"); + if (ret < 0) + return ret; + reg |= FIELD_PREP(NVT_TX_DELAY_MASK, ret); + break; + case PHY_INTERFACE_MODE_RMII: + reg = NVT_MISCR_RMII; + break; + default: + return dev_err_probe(dev, -EINVAL, "Unsupported phy-mode (%d)\n", phy_mode); + } + + regmap_update_bits(regmap, miscr, + NVT_RX_DELAY_MASK | NVT_TX_DELAY_MASK | NVT_MISCR_RMII, reg); + + return 0; +} + +static int nvt_gmac_probe(struct platform_device *pdev) +{ + struct plat_stmmacenet_data *plat_dat; + struct stmmac_resources stmmac_res; + struct device *dev = &pdev->dev; + int ret; + + ret = stmmac_get_platform_resources(pdev, &stmmac_res); + if (ret) + return dev_err_probe(dev, ret, "Failed to get platform resources\n"); + + plat_dat = devm_stmmac_probe_config_dt(pdev, stmmac_res.mac); + if (IS_ERR(plat_dat)) + return dev_err_probe(dev, PTR_ERR(plat_dat), "Failed to get platform data\n"); + + ret = nvt_gmac_setup(pdev); + if (ret) + return ret; + + return stmmac_pltfr_probe(pdev, plat_dat, &stmmac_res); +} + +static const struct of_device_id nvt_dwmac_match[] = { + { .compatible = "nuvoton,ma35d1-dwmac"}, + { } +}; +MODULE_DEVICE_TABLE(of, nvt_dwmac_match); + +static struct platform_driver nvt_dwmac_driver = { + .probe = nvt_gmac_probe, + .remove = stmmac_pltfr_remove, + .driver = { + .name = "nuvoton-dwmac", + .pm = &stmmac_pltfr_pm_ops, + .of_match_table = nvt_dwmac_match, + }, +}; +module_platform_driver(nvt_dwmac_driver); + +MODULE_AUTHOR("Joey Lu <a0987203069@gmail.com>"); +MODULE_DESCRIPTION("Nuvoton DWMAC specific glue layer"); +MODULE_LICENSE("GPL"); -- 2.43.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family 2026-02-10 5:22 ` [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family Joey Lu @ 2026-02-10 13:12 ` Russell King (Oracle) [not found] ` <747b9ab4-6711-426d-95a5-4ce6c8732edd@gmail.com> 0 siblings, 1 reply; 8+ messages in thread From: Russell King (Oracle) @ 2026-02-10 13:12 UTC (permalink / raw) To: Joey Lu Cc: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt, conor+dt, mcoquelin.stm32, richardcochran, alexandre.torgue, joabreu, ychuang3, schung, yclu4, peppe.cavallaro, linux-arm-kernel, netdev, devicetree, linux-kernel, openbmc, linux-stm32, Andrew Lunn Please note that net-next is currently closed, so you should be sending net-next patches with "RFC". See section 1.4 of: https://docs.kernel.org/process/maintainer-netdev.html On Tue, Feb 10, 2026 at 01:22:26PM +0800, Joey Lu wrote: > +static int nvt_gmac_setup(struct platform_device *pdev) > +{ > + struct device *dev = &pdev->dev; > + phy_interface_t phy_mode; > + struct regmap *regmap; > + u32 macid, miscr, reg; > + int ret; > + > + regmap = syscon_regmap_lookup_by_phandle_args(dev->of_node, "nuvoton,sys", 1, &macid); > + if (IS_ERR(regmap)) > + ret = dev_err_probe(dev, PTR_ERR(regmap), "Failed to get sys register\n"); > + > + if (macid > 1) > + ret = dev_err_probe(dev, -EINVAL, "Invalid sys arguments\n"); > + > + if (of_get_phy_mode(pdev->dev.of_node, &phy_mode)) > + ret = dev_err_probe(dev, -EINVAL, "Missing phy mode property\n"); If you pass in the plat_dat to this function, then you have access to plat_dat->phy_interface. I went through all the dwmac glue code and removed such PHY interface gets, so please don't introduce new instances. > + > + miscr = (macid == 0) ? NVT_REG_SYS_GMAC0MISCR : NVT_REG_SYS_GMAC1MISCR; I find the use of "miscr" to be the register offset, and "reg" to be the register value is confusing. Normally they're the other way around. > + > + switch (phy_mode) { > + case PHY_INTERFACE_MODE_RGMII: > + case PHY_INTERFACE_MODE_RGMII_ID: > + case PHY_INTERFACE_MODE_RGMII_RXID: > + case PHY_INTERFACE_MODE_RGMII_TXID: > + ret = nvt_gmac_get_delay(dev, "rx-internal-delay-ps"); > + if (ret < 0) > + return ret; > + reg = FIELD_PREP(NVT_RX_DELAY_MASK, ret); > + > + ret = nvt_gmac_get_delay(dev, "tx-internal-delay-ps"); > + if (ret < 0) > + return ret; > + reg |= FIELD_PREP(NVT_TX_DELAY_MASK, ret); > + break; > + case PHY_INTERFACE_MODE_RMII: > + reg = NVT_MISCR_RMII; > + break; > + default: > + return dev_err_probe(dev, -EINVAL, "Unsupported phy-mode (%d)\n", phy_mode); > + } > + > + regmap_update_bits(regmap, miscr, > + NVT_RX_DELAY_MASK | NVT_TX_DELAY_MASK | NVT_MISCR_RMII, reg); Please consider programming the NVT_MISCR_RMII bit via the plat_dat->set_phy_intf_sel() method. Is this register preserved over suspend/resume ? Thanks. -- RMK's Patch system: https://www.armlinux.org.uk/developer/patches/ FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last! ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <747b9ab4-6711-426d-95a5-4ce6c8732edd@gmail.com>]
* Re: [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family [not found] ` <747b9ab4-6711-426d-95a5-4ce6c8732edd@gmail.com> @ 2026-02-11 10:21 ` Russell King (Oracle) 2026-02-12 5:28 ` Joey Lu 0 siblings, 1 reply; 8+ messages in thread From: Russell King (Oracle) @ 2026-02-11 10:21 UTC (permalink / raw) To: Joey Lu Cc: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt, conor+dt, mcoquelin.stm32, richardcochran, alexandre.torgue, joabreu, ychuang3, schung, yclu4, peppe.cavallaro, linux-arm-kernel, netdev, devicetree, linux-kernel, openbmc, linux-stm32, Andrew Lunn On Wed, Feb 11, 2026 at 05:52:21PM +0800, Joey Lu wrote: > > Is this register preserved over suspend/resume ? > > It is not preserved by the GMAC suspend/resume flow and therefore needs to > be treated as a system register rather than a GMAC local context. That is another reason to use .set_phy_intf_sel as that will be called just before GMAC soft-reset in the .ndo_open() and resume paths. -- RMK's Patch system: https://www.armlinux.org.uk/developer/patches/ FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last! ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family 2026-02-11 10:21 ` Russell King (Oracle) @ 2026-02-12 5:28 ` Joey Lu 0 siblings, 0 replies; 8+ messages in thread From: Joey Lu @ 2026-02-12 5:28 UTC (permalink / raw) To: Russell King (Oracle) Cc: andrew+netdev, davem, edumazet, kuba, pabeni, robh, krzk+dt, conor+dt, mcoquelin.stm32, richardcochran, alexandre.torgue, joabreu, ychuang3, schung, yclu4, peppe.cavallaro, linux-arm-kernel, netdev, devicetree, linux-kernel, openbmc, linux-stm32, Andrew Lunn On 2/11/2026 6:21 PM, Russell King (Oracle) wrote: > On Wed, Feb 11, 2026 at 05:52:21PM +0800, Joey Lu wrote: >>> Is this register preserved over suspend/resume ? >> It is not preserved by the GMAC suspend/resume flow and therefore needs to >> be treated as a system register rather than a GMAC local context. > That is another reason to use .set_phy_intf_sel as that will be called > just before GMAC soft-reset in the .ndo_open() and resume paths. Got it! Thank you for clarifying. ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-02-12 5:28 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-10 5:22 [PATCH net-next v12 0/3] Add support for Nuvoton MA35D1 GMAC Joey Lu
2026-02-10 5:22 ` [PATCH net-next v12 1/3] dt-bindings: net: nuvoton: Add schema for Nuvoton MA35 family GMAC Joey Lu
2026-02-10 13:35 ` Rob Herring (Arm)
2026-02-10 5:22 ` [PATCH net-next v12 2/3] arm64: dts: nuvoton: Add Ethernet nodes Joey Lu
2026-02-10 5:22 ` [PATCH net-next v12 3/3] net: stmmac: dwmac-nuvoton: Add dwmac glue for Nuvoton MA35 family Joey Lu
2026-02-10 13:12 ` Russell King (Oracle)
[not found] ` <747b9ab4-6711-426d-95a5-4ce6c8732edd@gmail.com>
2026-02-11 10:21 ` Russell King (Oracle)
2026-02-12 5:28 ` Joey Lu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox