File tree Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ # STM32N6570 DISCOVERY board configuration
2+
3+ # Copyright (c) 2025 STMicroelectronics
4+ # SPDX-License-Identifier: Apache-2.0
5+
6+ if BOARD_STM32N6570_DK
7+
8+ if NETWORKING
9+
10+ config NET_L2_ETHERNET
11+ default y
12+
13+ endif # NETWORKING
14+
15+ endif # BOARD_STM32N6570_DK
Original file line number Diff line number Diff line change @@ -86,6 +86,8 @@ The Zephyr ``stm32n6570_dk`` board supports the following hardware features:
8686| UART | on-chip | serial port-polling; |
8787| | | serial port-interrupt |
8888+-----------+------------+-------------------------------------+
89+ | ETHERNET | on-chip | ethernet |
90+ +-----------+------------+-------------------------------------+
8991
9092
9193Other hardware features are not yet supported on this Zephyr port.
Original file line number Diff line number Diff line change 148148 current-speed = <115200>;
149149 status = "okay";
150150};
151+
152+ &mac {
153+ status = "okay";
154+ pinctrl-0 = <ð1_rgmii_gtx_clk_pf0
155+ ð1_rgmii_clk125_pf2
156+ ð1_rgmii_rx_clk_pf7
157+ ð1_rgmii_rxd2_pf8
158+ ð1_rgmii_rxd3_pf9
159+ ð1_rgmii_rx_ctl_pf10
160+ ð1_rgmii_tx_ctl_pf11
161+ ð1_rgmii_txd1_pf13
162+ ð1_rgmii_txd0_pf12
163+ ð1_rgmii_rxd0_pf14
164+ ð1_rgmii_rxd1_pf15
165+ ð1_rgmii_txd2_pg3
166+ ð1_rgmii_txd3_pg4
167+ ð1_phy_intn_pd3>;
168+ pinctrl-names = "default";
169+ phy-connection-type = "rgmii";
170+ };
171+
172+ &mdio {
173+ status = "okay";
174+ pinctrl-0 = <ð1_mdio_pd12 ð1_mdc_pd1>;
175+ pinctrl-names = "default";
176+
177+ ethernet-phy@0 {
178+ compatible = "ethernet-phy";
179+ reg = <0x0>;
180+ status = "okay";
181+ };
182+ };
You can’t perform that action at this time.
0 commit comments