forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
boards: nxp: Support NXP ENET_1G on mimxrt1170_evk
Support NXP ENET_1G on mimxrt1170_evk/mimxrt1176/cm7 platform. Added test configuration sample.net.zperf.nxp_enet1g and documented the usage of the ethernet driver with ENET_1G peripheral. Fixes: zephyrproject-rtos#66348 Signed-off-by: Stanislav Poboril <stanislav.poboril@nxp.com>
- Loading branch information
1 parent
d124eec
commit 684885a
Showing
6 changed files
with
158 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright 2023-2024 NXP | ||
* | ||
* ENET_1G binding overlay | ||
*/ | ||
|
||
/ { | ||
soc { | ||
/delete-node/ ethernet@40424000; | ||
}; | ||
}; | ||
|
||
&enet1g { | ||
status = "okay"; | ||
}; | ||
|
||
&enet1g_mac { | ||
status = "okay"; | ||
}; | ||
|
||
&enet1g_mdio { | ||
status = "okay"; | ||
enet1g_phy: phy@1 { | ||
status = "okay"; | ||
}; | ||
}; | ||
|
||
&enet1g_ptp_clock { | ||
status = "okay"; | ||
}; | ||
|
||
&pinctrl { | ||
/delete-node/ pinmux_enet; | ||
/delete-node/ pinmux_enet_mdio; | ||
/delete-node/ pinmux_ptp; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters