:orphan: .. title:: CONFIG_ETH_MCUX .. kconfig:: CONFIG_ETH_MCUX CONFIG_ETH_MCUX ############### *MCUX Ethernet driver* Type: ``bool`` Help ==== .. code-block:: none 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 =================== (\ :kconfig:`NETWORKING ` && \ :kconfig:`BOARD_IP_K66F `) || (\ :kconfig:`NET_L2_ETHERNET ` && \ :kconfig:`SOC_SERIES_IMX_RT `) || (\ :kconfig:`NET_L2_ETHERNET ` && \ :kconfig:`SOC_MK64F12 ` && \ :kconfig:`SOC_SERIES_KINETIS_K6X `) || (\ :kconfig:`NET_L2_ETHERNET ` && \ :kconfig:`SOC_SERIES_IMX_RT `) || (\ :kconfig:`NET_L2_ETHERNET ` && \ :kconfig:`SOC_MK64F12 ` && \ :kconfig:`SOC_SERIES_KINETIS_K6X `) || (\ :kconfig:`HAS_MCUX_ENET ` && \ :kconfig:`NET_L2_ETHERNET `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - y if \ :kconfig:`NET_L2_ETHERNET ` - y if \ :kconfig:`HAS_MCUX_ENET ` - y - y if \ :kconfig:`HAS_MCUX_ENET ` - y Symbols selected by this symbol =============================== - \ :kconfig:`NOCACHE_MEMORY ` if \ :kconfig:`HAS_MCUX_CACHE ` - \ :kconfig:`ARM_MPU ` if \ :kconfig:`CPU_CORTEX_M7 ` - \ :kconfig:`NET_POWER_MANAGEMENT ` if \ :kconfig:`PM_DEVICE ` Kconfig definitions =================== At ``/arm/ip_k66f/Kconfig.defconfig:28`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config ETH_MCUX bool default y if NET_L2_ETHERNET depends on NETWORKING && BOARD_IP_K66F ---- At ``/arm/nxp_imx/rt/Kconfig.defconfig.series:47`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:25`` → ``/kconfig/Kconfig.soc.defconfig:1`` → ``/arm/nxp_imx/Kconfig.defconfig:8`` Menu path: (Top) .. code-block:: kconfig config ETH_MCUX bool default y if HAS_MCUX_ENET depends on NET_L2_ETHERNET && SOC_SERIES_IMX_RT ---- At ``/arm/nxp_kinetis/k6x/Kconfig.defconfig.mk64f12:59`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:25`` → ``/kconfig/Kconfig.soc.defconfig:1`` → ``/arm/nxp_kinetis/Kconfig.defconfig:7`` → ``/arm/nxp_kinetis/k6x/Kconfig.defconfig.series:26`` Menu path: (Top) .. code-block:: kconfig config ETH_MCUX bool default y depends on NET_L2_ETHERNET && SOC_MK64F12 && SOC_SERIES_KINETIS_K6X ---- At ``/arm/nxp_imx/rt/Kconfig.defconfig.series:47`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` → ``/arm/nxp_imx/Kconfig.defconfig:8`` Menu path: (Top) .. code-block:: kconfig config ETH_MCUX bool default y if HAS_MCUX_ENET depends on NET_L2_ETHERNET && SOC_SERIES_IMX_RT ---- At ``/arm/nxp_kinetis/k6x/Kconfig.defconfig.mk64f12:59`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` → ``/arm/nxp_kinetis/Kconfig.defconfig:7`` → ``/arm/nxp_kinetis/k6x/Kconfig.defconfig.series:26`` Menu path: (Top) .. code-block:: kconfig config ETH_MCUX bool default y depends on NET_L2_ETHERNET && SOC_MK64F12 && SOC_SERIES_KINETIS_K6X ---- At ``/ethernet/Kconfig.mcux:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:20`` → ``/ethernet/Kconfig:49`` Menu path: (Top) → Device Drivers → Ethernet Drivers .. code-block:: kconfig menuconfig ETH_MCUX bool "MCUX Ethernet driver" select NOCACHE_MEMORY if HAS_MCUX_CACHE select ARM_MPU if CPU_CORTEX_M7 select NET_POWER_MANAGEMENT if PM_DEVICE depends on HAS_MCUX_ENET && 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.)*