mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 02:33:18 +00:00
As prep for drivers being converted to utilize DT_INST and removal of per instance Kconfig symbols, move soc.c code to utilize DT_NODELABEL instead. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
206 lines
6.0 KiB
C
206 lines
6.0 KiB
C
/*
|
|
* Copyright (c) 2018, NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <init.h>
|
|
#include <soc.h>
|
|
#include <dt-bindings/rdc/imx_rdc.h>
|
|
#include <arch/arm/aarch32/cortex_m/cmsis.h>
|
|
#include "wdog_imx.h"
|
|
|
|
/* Initialize Resource Domain Controller. */
|
|
static void SOC_RdcInit(void)
|
|
{
|
|
/* Move M4 core to the configured RDC domain */
|
|
RDC_SetDomainID(RDC, rdcMdaM4, M4_DOMAIN_ID, false);
|
|
|
|
/* Set access to WDOG3 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapWdog3,
|
|
RDC_DOMAIN_PERM(M4_DOMAIN_ID, RDC_DOMAIN_PERM_RW),
|
|
false, false);
|
|
|
|
#if DT_HAS_NODE(DT_NODELABEL(uart1))
|
|
/* Set access to UART_1 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapUart1, RDC_DT_VAL(uart1), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(uart2))
|
|
/* Set access to UART_2 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapUart2, RDC_DT_VAL(uart2), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(uart3))
|
|
/* Set access to UART_3 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapUart3, RDC_DT_VAL(uart3), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(uart4))
|
|
/* Set access to UART_4 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapUart4, RDC_DT_VAL(uart4), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(uart5))
|
|
/* Set access to UART_5 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapUart5, RDC_DT_VAL(uart5), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(uart6))
|
|
/* Set access to UART_6 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapUart6, RDC_DT_VAL(uart6), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(gpio1))
|
|
/* Set access to GPIO_1 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapGpio1, RDC_DT_VAL(gpio1), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(gpio2))
|
|
/* Set access to GPIO_2 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapGpio2, RDC_DT_VAL(gpio2), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(gpio3))
|
|
/* Set access to GPIO_3 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapGpio3, RDC_DT_VAL(gpio3), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(gpio4))
|
|
/* Set access to GPIO_4 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapGpio4, RDC_DT_VAL(gpio4), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(gpio5))
|
|
/* Set access to GPIO_5 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapGpio5, RDC_DT_VAL(gpio5), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(gpio6))
|
|
/* Set access to GPIO_6 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapGpio6, RDC_DT_VAL(gpio6), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(gpio7))
|
|
/* Set access to GPIO_7 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapGpio7, RDC_DT_VAL(gpio7), false, false);
|
|
#endif
|
|
|
|
#ifdef CONFIG_IPM_IMX
|
|
/* Set access to MU B for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapMuB, RDC_DT_VAL(mub), false, false);
|
|
#endif /* CONFIG_IPM_IMX */
|
|
|
|
#if DT_HAS_NODE(DT_NODELABEL(epit1))
|
|
/* Set access to EPIT_1 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapEpit1, RDC_DT_VAL(epit1), false, false);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(epit2))
|
|
/* Set access to EPIT_2 for M4 core */
|
|
RDC_SetPdapAccess(RDC, rdcPdapEpit2, RDC_DT_VAL(epit2), false, false);
|
|
#endif
|
|
}
|
|
|
|
/* Initialize cache. */
|
|
static void SOC_CacheInit(void)
|
|
{
|
|
/* Enable System Bus Cache */
|
|
/* set command to invalidate all ways and write GO bit
|
|
* to initiate command
|
|
*/
|
|
LMEM_PSCCR = LMEM_PSCCR_INVW1_MASK | LMEM_PSCCR_INVW0_MASK;
|
|
LMEM_PSCCR |= LMEM_PSCCR_GO_MASK;
|
|
/* Wait until the command completes */
|
|
while (LMEM_PSCCR & LMEM_PSCCR_GO_MASK)
|
|
;
|
|
/* Enable system bus cache, enable write buffer */
|
|
LMEM_PSCCR = (LMEM_PSCCR_ENWRBUF_MASK | LMEM_PSCCR_ENCACHE_MASK);
|
|
__ISB();
|
|
|
|
/* Enable Code Bus Cache */
|
|
/* set command to invalidate all ways and write GO bit
|
|
* to initiate command
|
|
*/
|
|
LMEM_PCCCR = LMEM_PCCCR_INVW1_MASK | LMEM_PCCCR_INVW0_MASK;
|
|
LMEM_PCCCR |= LMEM_PCCCR_GO_MASK;
|
|
/* Wait until the command completes */
|
|
while (LMEM_PCCCR & LMEM_PCCCR_GO_MASK)
|
|
;
|
|
/* Enable code bus cache, enable write buffer */
|
|
LMEM_PCCCR = (LMEM_PCCCR_ENWRBUF_MASK | LMEM_PCCCR_ENCACHE_MASK);
|
|
__ISB();
|
|
__DSB();
|
|
}
|
|
|
|
/* Initialize clock. */
|
|
static void SOC_ClockInit(void)
|
|
{
|
|
/* OSC/PLL is already initialized by Cortex-A9 core */
|
|
|
|
/* Enable IP bridge and IO mux clock */
|
|
CCM_ControlGate(CCM, ccmCcgrGateIomuxIptClkIo, ccmClockNeededAll);
|
|
CCM_ControlGate(CCM, ccmCcgrGateIpmux1Clk, ccmClockNeededAll);
|
|
CCM_ControlGate(CCM, ccmCcgrGateIpmux2Clk, ccmClockNeededAll);
|
|
CCM_ControlGate(CCM, ccmCcgrGateIpmux3Clk, ccmClockNeededAll);
|
|
|
|
#ifdef CONFIG_UART_IMX
|
|
/* Set UART clock is derived from OSC clock (24M) */
|
|
CCM_SetRootMux(CCM, ccmRootUartClkSel, ccmRootmuxUartClkOsc24m);
|
|
|
|
/* Configure UART divider */
|
|
CCM_SetRootDivider(CCM, ccmRootUartClkPodf, 0);
|
|
|
|
/* Enable UART clock */
|
|
CCM_ControlGate(CCM, ccmCcgrGateUartClk, ccmClockNeededAll);
|
|
CCM_ControlGate(CCM, ccmCcgrGateUartSerialClk, ccmClockNeededAll);
|
|
#endif /* CONFIG_UART_IMX */
|
|
|
|
#ifdef CONFIG_COUNTER_IMX_EPIT
|
|
/* Select EPIT clock is derived from OSC (24M) */
|
|
CCM_SetRootMux(CCM, ccmRootPerclkClkSel, ccmRootmuxPerclkClkOsc24m);
|
|
|
|
/* Configure EPIT divider */
|
|
CCM_SetRootDivider(CCM, ccmRootPerclkPodf, 0);
|
|
|
|
/* Enable EPIT clocks */
|
|
#if DT_HAS_NODE(DT_NODELABEL(epit1))
|
|
CCM_ControlGate(CCM, ccmCcgrGateEpit1Clk, ccmClockNeededAll);
|
|
#endif
|
|
#if DT_HAS_NODE(DT_NODELABEL(epit2))
|
|
CCM_ControlGate(CCM, ccmCcgrGateEpit2Clk, ccmClockNeededAll);
|
|
#endif
|
|
#endif /* CONFIG_COUNTER_IMX_EPIT */
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @brief Perform basic hardware initialization
|
|
*
|
|
* Initialize the interrupt controller device drivers.
|
|
* Also initialize the counter device driver, if required.
|
|
*
|
|
* @return 0
|
|
*/
|
|
static int mcimx6x_m4_init(struct device *arg)
|
|
{
|
|
ARG_UNUSED(arg);
|
|
|
|
unsigned int oldLevel; /* Old interrupt lock level */
|
|
|
|
/* Disable interrupts */
|
|
oldLevel = irq_lock();
|
|
|
|
/* Configure RDC */
|
|
SOC_RdcInit();
|
|
|
|
/* Disable WDOG3 powerdown */
|
|
WDOG_DisablePowerdown(WDOG3);
|
|
|
|
/* Initialize Cache */
|
|
SOC_CacheInit();
|
|
|
|
/* Initialize clock */
|
|
SOC_ClockInit();
|
|
|
|
/*
|
|
* Install default handler that simply resets the CPU
|
|
* if configured in the kernel, NOP otherwise
|
|
*/
|
|
NMI_INIT();
|
|
|
|
/* Restore interrupt state */
|
|
irq_unlock(oldLevel);
|
|
|
|
return 0;
|
|
}
|
|
|
|
SYS_INIT(mcimx6x_m4_init, PRE_KERNEL_1, 0);
|