drivers: ethernet: Remove deprecated eth_mcux
This driver was deprecated and must be removed by Zephyr version 4.1 according to lifecycle/release guidelines. Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
This commit is contained in:
parent
2ba6ba8494
commit
d46c382950
22 changed files with 89 additions and 2003 deletions
|
@ -66,7 +66,7 @@ const clock_enet_pll_config_t ethPllConfig = {
|
|||
defined(CONFIG_SOC_MIMXRT1024)
|
||||
.enableClkOutput500M = true,
|
||||
#endif
|
||||
#if defined(CONFIG_ETH_NXP_ENET) || defined(CONFIG_ETH_MCUX)
|
||||
#if defined(CONFIG_ETH_NXP_ENET)
|
||||
#if DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(enet))
|
||||
.enableClkOutput = true,
|
||||
#endif
|
||||
|
@ -74,7 +74,7 @@ const clock_enet_pll_config_t ethPllConfig = {
|
|||
.enableClkOutput1 = true,
|
||||
#endif
|
||||
#endif
|
||||
#if defined(CONFIG_PTP_CLOCK_MCUX) || defined(CONFIG_PTP_CLOCK_NXP_ENET)
|
||||
#if defined(CONFIG_PTP_CLOCK_NXP_ENET)
|
||||
.enableClkOutput25M = true,
|
||||
#else
|
||||
.enableClkOutput25M = false,
|
||||
|
|
|
@ -408,7 +408,7 @@ __weak void clock_init(void)
|
|||
CLOCK_SetRootClock(kCLOCK_Root_Lpi2c6, &rootCfg);
|
||||
#endif
|
||||
|
||||
#if CONFIG_ETH_MCUX || CONFIG_ETH_NXP_ENET
|
||||
#if CONFIG_ETH_NXP_ENET
|
||||
#if DT_NODE_HAS_STATUS_OKAY(DT_NODELABEL(enet))
|
||||
/* 50 MHz ENET clock */
|
||||
rootCfg.mux = kCLOCK_ENET1_ClockRoot_MuxSysPll1Div2;
|
||||
|
@ -455,7 +455,7 @@ __weak void clock_init(void)
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_PTP_CLOCK_MCUX) || defined(CONFIG_PTP_CLOCK_NXP_ENET)
|
||||
#if defined(CONFIG_PTP_CLOCK_NXP_ENET)
|
||||
/* 24MHz PTP clock */
|
||||
rootCfg.mux = kCLOCK_ENET_TIMER1_ClockRoot_MuxOscRc48MDiv2;
|
||||
rootCfg.div = 1;
|
||||
|
|
|
@ -105,7 +105,7 @@ __weak void clock_init(void)
|
|||
CLOCK_SetLpuartClock(LPUART0SRC_OSCERCLK);
|
||||
#endif
|
||||
|
||||
#if CONFIG_ETH_MCUX || CONFIG_ETH_NXP_ENET
|
||||
#if CONFIG_ETH_NXP_ENET
|
||||
CLOCK_SetEnetTime0Clock(TIMESRC_OSCERCLK);
|
||||
#endif
|
||||
#if CONFIG_ETH_NXP_ENET_RMII_EXT_CLK
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue