board: imx8mp_evk: enable ENET for A53 SMP variant

Add ENET support for Cortex-A Core SMP board variant.

Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
This commit is contained in:
Jiafei Pan 2024-06-21 18:34:42 +08:00 committed by Anas Nashif
commit 5663a327b8
2 changed files with 25 additions and 0 deletions

View file

@ -39,6 +39,30 @@
}; };
&enet {
status = "okay";
};
&enet_mac {
pinctrl-0 = <&pinmux_enet>;
pinctrl-names = "default";
phy-handle = <&phy>;
zephyr,random-mac-address;
phy-connection-type = "rgmii";
status = "okay";
};
&enet_mdio {
pinctrl-0 = <&pinmux_mdio>;
pinctrl-names = "default";
status = "okay";
phy: phy@0 {
compatible = "realtek,rtl8211f";
reg = <1>;
status = "okay";
};
};
&uart4 { &uart4 {
current-speed = <115200>; current-speed = <115200>;
pinctrl-0 = <&uart4_default>; pinctrl-0 = <&uart4_default>;

View file

@ -13,6 +13,7 @@ CONFIG_ICACHE_LINE_SIZE_DETECT=y
# Zephyr Kernel Configuration # Zephyr Kernel Configuration
CONFIG_XIP=n CONFIG_XIP=n
CONFIG_KERNEL_DIRECT_MAP=y
# SMP # SMP
CONFIG_SMP=y CONFIG_SMP=y