:orphan: .. title:: ETH_MCUX .. option:: CONFIG_ETH_MCUX *MCUX Ethernet driver* Type: ``bool`` Help ==== Enable MCUX Ethernet driver. Note, this driver performs one shot PHY setup. There is no support for PHY disconnect, reconnect or configuration change. Direct dependencies =================== (\ :option:`NETWORKING ` && \ :option:`BOARD_IP_K66F `) || (\ :option:`NET_L2_ETHERNET ` && \ :option:`SOC_SERIES_IMX_RT `) || (\ :option:`NET_L2_ETHERNET ` && \ :option:`SOC_MK64F12 ` && \ :option:`SOC_SERIES_KINETIS_K6X `) || (\ :option:`HAS_MCUX_ENET ` && \ :option:`NET_L2_ETHERNET `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - y if \ :option:`NET_L2_ETHERNET ` - y if \ :option:`HAS_MCUX_ENET ` - y Symbols selected by this symbol =============================== - \ :option:`NOCACHE_MEMORY ` if \ :option:`HAS_MCUX_CACHE ` - \ :option:`ARM_MPU ` if \ :option:`CPU_CORTEX_M7 ` - \ :option:`NET_POWER_MANAGEMENT ` if \ :option:`PM_DEVICE ` Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/ip_k66f/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config ETH_MCUX bool default y if \ :option:`NET_L2_ETHERNET ` depends on \ :option:`NETWORKING ` && \ :option:`BOARD_IP_K66F ` ---- At ``soc/arm/nxp_imx/rt/Kconfig.defconfig.series:46`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.defconfig:1`` → ``soc/arm/nxp_imx/Kconfig.defconfig:4`` Menu path: (Top) .. parsed-literal:: config ETH_MCUX bool default y if \ :option:`HAS_MCUX_ENET ` depends on \ :option:`NET_L2_ETHERNET ` && \ :option:`SOC_SERIES_IMX_RT ` ---- At ``soc/arm/nxp_kinetis/k6x/Kconfig.defconfig.mk64f12:59`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:19`` → ``/home/runner/work/bridle/bridle/workspace/build/Kconfig/Kconfig.soc.defconfig:1`` → ``soc/arm/nxp_kinetis/Kconfig.defconfig:3`` → ``soc/arm/nxp_kinetis/k6x/Kconfig.defconfig.series:26`` Menu path: (Top) .. parsed-literal:: config ETH_MCUX bool default y depends on \ :option:`NET_L2_ETHERNET ` && \ :option:`SOC_MK64F12 ` && \ :option:`SOC_SERIES_KINETIS_K6X ` ---- At ``drivers/ethernet/Kconfig.mcux:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:20`` → ``drivers/ethernet/Kconfig:49`` Menu path: (Top) → Device Drivers → Ethernet Drivers .. parsed-literal:: menuconfig ETH_MCUX bool "MCUX Ethernet driver" select \ :option:`NOCACHE_MEMORY ` if \ :option:`HAS_MCUX_CACHE ` select \ :option:`ARM_MPU ` if \ :option:`CPU_CORTEX_M7 ` select \ :option:`NET_POWER_MANAGEMENT ` if \ :option:`PM_DEVICE ` depends on \ :option:`HAS_MCUX_ENET ` && \ :option:`NET_L2_ETHERNET ` help Enable MCUX Ethernet driver. Note, this driver performs one shot PHY setup. There is no support for PHY disconnect, reconnect or configuration change. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*