2e54df0f35
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
504 lines
14 KiB
C
504 lines
14 KiB
C
/****************************************************************************
|
|
* arch/arm/src/rp2040/rp2040_irq.c
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdint.h>
|
|
#include <assert.h>
|
|
#include <debug.h>
|
|
|
|
#include <nuttx/irq.h>
|
|
#include <nuttx/arch.h>
|
|
#include <arch/irq.h>
|
|
|
|
#include "nvic.h"
|
|
#include "ram_vectors.h"
|
|
#include "arm_arch.h"
|
|
#include "arm_internal.h"
|
|
|
|
#include "rp2040_irq.h"
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/* Get a 32-bit version of the default priority */
|
|
|
|
#define DEFPRIORITY32 \
|
|
(NVIC_SYSH_PRIORITY_DEFAULT << 24 | NVIC_SYSH_PRIORITY_DEFAULT << 16 | \
|
|
NVIC_SYSH_PRIORITY_DEFAULT << 8 | NVIC_SYSH_PRIORITY_DEFAULT)
|
|
|
|
#if defined(CONFIG_SMP) && CONFIG_ARCH_INTERRUPTSTACK > 7
|
|
# define INTSTACK_ALLOC (CONFIG_SMP_NCPUS * INTSTACK_SIZE)
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
/* g_current_regs[] holds a references to the current interrupt level
|
|
* register storage structure. If is non-NULL only during interrupt
|
|
* processing. Access to g_current_regs[] must be through the macro
|
|
* CURRENT_REGS for portability.
|
|
*/
|
|
|
|
#ifdef CONFIG_SMP
|
|
/* For the case of configurations with multiple CPUs, then there must be one
|
|
* such value for each processor that can receive an interrupt.
|
|
*/
|
|
|
|
volatile uint32_t *g_current_regs[CONFIG_SMP_NCPUS];
|
|
#else
|
|
volatile uint32_t *g_current_regs[1];
|
|
#endif
|
|
|
|
#ifdef CONFIG_SMP
|
|
extern void rp2040_send_irqreq(int irqreq);
|
|
#endif
|
|
|
|
#if defined(CONFIG_SMP) && CONFIG_ARCH_INTERRUPTSTACK > 7
|
|
/* In the SMP configuration, we will need custom interrupt stacks.
|
|
* These definitions provide the aligned stack allocations.
|
|
*/
|
|
|
|
static uint64_t g_intstack_alloc[INTSTACK_ALLOC >> 3];
|
|
|
|
/* These definitions provide the "top" of the push-down stacks. */
|
|
|
|
const uint32_t g_cpu_intstack_top[CONFIG_SMP_NCPUS] =
|
|
{
|
|
(uint32_t)g_intstack_alloc + INTSTACK_SIZE,
|
|
#if CONFIG_SMP_NCPUS > 1
|
|
(uint32_t)g_intstack_alloc + (2 * INTSTACK_SIZE),
|
|
#endif /* CONFIG_SMP_NCPUS > 1 */
|
|
};
|
|
#endif /* defined(CONFIG_SMP) && CONFIG_ARCH_INTERRUPTSTACK > 7 */
|
|
|
|
/* This is the address of the exception vector table (determined by the
|
|
* linker script).
|
|
*/
|
|
|
|
extern uint32_t _vectors[];
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: rp2040_dumpnvic
|
|
*
|
|
* Description:
|
|
* Dump some interesting NVIC registers
|
|
*
|
|
****************************************************************************/
|
|
|
|
#if defined(CONFIG_DEBUG_IRQ_INFO)
|
|
static void rp2040_dumpnvic(const char *msg, int irq)
|
|
{
|
|
irqstate_t flags;
|
|
|
|
flags = enter_critical_section();
|
|
|
|
irqinfo("NVIC (%s, irq=%d):\n", msg, irq);
|
|
irqinfo(" ISER: %08x ICER: %08x\n",
|
|
getreg32(ARMV6M_NVIC_ISER), getreg32(ARMV6M_NVIC_ICER));
|
|
irqinfo(" ISPR: %08x ICPR: %08x\n",
|
|
getreg32(ARMV6M_NVIC_ISPR), getreg32(ARMV6M_NVIC_ICPR));
|
|
irqinfo(" IRQ PRIO: %08x %08x %08x %08x\n",
|
|
getreg32(ARMV6M_NVIC_IPR0), getreg32(ARMV6M_NVIC_IPR1),
|
|
getreg32(ARMV6M_NVIC_IPR2), getreg32(ARMV6M_NVIC_IPR3));
|
|
irqinfo(" %08x %08x %08x %08x\n",
|
|
getreg32(ARMV6M_NVIC_IPR4), getreg32(ARMV6M_NVIC_IPR5),
|
|
getreg32(ARMV6M_NVIC_IPR6), getreg32(ARMV6M_NVIC_IPR7));
|
|
|
|
irqinfo("SYSCON:\n");
|
|
irqinfo(" CPUID: %08x\n",
|
|
getreg32(ARMV6M_SYSCON_CPUID));
|
|
irqinfo(" ICSR: %08x AIRCR: %08x\n",
|
|
getreg32(ARMV6M_SYSCON_ICSR), getreg32(ARMV6M_SYSCON_AIRCR));
|
|
irqinfo(" SCR: %08x CCR: %08x\n",
|
|
getreg32(ARMV6M_SYSCON_SCR), getreg32(ARMV6M_SYSCON_CCR));
|
|
irqinfo(" SHPR2: %08x SHPR3: %08x\n",
|
|
getreg32(ARMV6M_SYSCON_SHPR2), getreg32(ARMV6M_SYSCON_SHPR3));
|
|
|
|
leave_critical_section(flags);
|
|
}
|
|
|
|
#else
|
|
# define rp2040_dumpnvic(msg, irq)
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: rp2040_nmi, rp2040_busfault, rp2040_usagefault, rp2040_pendsv,
|
|
* rp2040_dbgmonitor, rp2040_pendsv, rp2040_reserved
|
|
*
|
|
* Description:
|
|
* Handlers for various exceptions. None are handled and all are fatal
|
|
* error conditions. The only advantage these provided over the default
|
|
* unexpected interrupt handler is that they provide a diagnostic output.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
|
static int rp2040_nmi(int irq, FAR void *context, FAR void *arg)
|
|
{
|
|
up_irq_save();
|
|
_err("PANIC!!! NMI received\n");
|
|
PANIC();
|
|
return 0;
|
|
}
|
|
|
|
static int rp2040_pendsv(int irq, FAR void *context, FAR void *arg)
|
|
{
|
|
up_irq_save();
|
|
_err("PANIC!!! PendSV received\n");
|
|
PANIC();
|
|
return 0;
|
|
}
|
|
|
|
static int rp2040_reserved(int irq, FAR void *context, FAR void *arg)
|
|
{
|
|
up_irq_save();
|
|
_err("PANIC!!! Reserved interrupt\n");
|
|
PANIC();
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: rp2040_clrpend
|
|
*
|
|
* Description:
|
|
* Clear a pending interrupt at the NVIC.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static inline void rp2040_clrpend(int irq)
|
|
{
|
|
/* This will be called on each interrupt exit whether the interrupt can be
|
|
* enambled or not. So this assertion is necessarily lame.
|
|
*/
|
|
|
|
DEBUGASSERT((unsigned)irq < NR_IRQS);
|
|
|
|
/* Check for an external interrupt */
|
|
|
|
if (irq >= RP2040_IRQ_EXTINT && irq < RP2040_IRQ_EXTINT + 32)
|
|
{
|
|
/* Set the appropriate bit in the ISER register to enable the
|
|
* interrupt
|
|
*/
|
|
|
|
putreg32((1 << (irq - RP2040_IRQ_EXTINT)), ARMV6M_NVIC_ICPR);
|
|
}
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: up_irqinitialize
|
|
****************************************************************************/
|
|
|
|
void up_irqinitialize(void)
|
|
{
|
|
uint32_t regaddr;
|
|
int i;
|
|
|
|
/* Disable all interrupts */
|
|
|
|
putreg32(0xffffffff, ARMV6M_NVIC_ICER);
|
|
putreg32(0, ARMV6M_SYSTICK_CSR);
|
|
|
|
/* Set all interrupts (and exceptions) to the default priority */
|
|
|
|
putreg32(DEFPRIORITY32, ARMV6M_SYSCON_SHPR2);
|
|
putreg32(DEFPRIORITY32, ARMV6M_SYSCON_SHPR3);
|
|
|
|
/* Make sure that we are using the correct vector table. The default
|
|
* vector address is 0x0000:0000 but if we are executing code that is
|
|
* positioned in SRAM or in external FLASH, then we may need to reset
|
|
* the interrupt vector so that it refers to the table in SRAM or in
|
|
* external FLASH.
|
|
*/
|
|
|
|
putreg32((uint32_t)_vectors, ARMV6M_SYSCON_VECTAB);
|
|
|
|
#ifdef CONFIG_ARCH_RAMVECTORS
|
|
/* If CONFIG_ARCH_RAMVECTORS is defined, then we are using a RAM-based
|
|
* vector table that requires special initialization.
|
|
*/
|
|
|
|
arm_ramvec_initialize();
|
|
#endif
|
|
|
|
/* Now set all of the interrupt lines to the default priority */
|
|
|
|
for (i = 0; i < 8; i++)
|
|
{
|
|
regaddr = ARMV6M_NVIC_IPR(i);
|
|
putreg32(DEFPRIORITY32, regaddr);
|
|
}
|
|
|
|
/* currents_regs is non-NULL only while processing an interrupt */
|
|
|
|
CURRENT_REGS = NULL;
|
|
|
|
/* Attach the SVCall and Hard Fault exception handlers. The SVCall
|
|
* exception is used for performing context switches; The Hard Fault
|
|
* must also be caught because a SVCall may show up as a Hard Fault
|
|
* under certain conditions.
|
|
*/
|
|
|
|
irq_attach(RP2040_IRQ_SVCALL, arm_svcall, NULL);
|
|
irq_attach(RP2040_IRQ_HARDFAULT, arm_hardfault, NULL);
|
|
|
|
/* Attach all other processor exceptions (except reset and sys tick) */
|
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
|
irq_attach(RP2040_IRQ_NMI, rp2040_nmi, NULL);
|
|
irq_attach(RP2040_IRQ_PENDSV, rp2040_pendsv, NULL);
|
|
irq_attach(RP2040_IRQ_RESERVED, rp2040_reserved, NULL);
|
|
#endif
|
|
|
|
rp2040_dumpnvic("initial", NR_IRQS);
|
|
|
|
/* And finally, enable interrupts */
|
|
|
|
#ifndef CONFIG_SUPPRESS_INTERRUPTS
|
|
up_irq_enable();
|
|
#endif
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_disable_irq
|
|
*
|
|
* Description:
|
|
* Disable the IRQ specified by 'irq'
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_disable_irq(int irq)
|
|
{
|
|
DEBUGASSERT((unsigned)irq < NR_IRQS);
|
|
|
|
#ifdef CONFIG_SMP
|
|
if (irq >= RP2040_IRQ_EXTINT && irq != RP2040_SIO_IRQ_PROC1 &&
|
|
up_cpu_index() != 0)
|
|
{
|
|
/* Must be handled by Core 0 */
|
|
|
|
rp2040_send_irqreq(-irq);
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
/* Check for an external interrupt */
|
|
|
|
if (irq >= RP2040_IRQ_EXTINT && irq < RP2040_IRQ_EXTINT + 32)
|
|
{
|
|
/* Set the appropriate bit in the ICER register to disable the
|
|
* interrupt
|
|
*/
|
|
|
|
putreg32((1 << (irq - RP2040_IRQ_EXTINT)), ARMV6M_NVIC_ICER);
|
|
}
|
|
|
|
/* Handle processor exceptions. Only SysTick can be disabled */
|
|
|
|
else if (irq == RP2040_IRQ_SYSTICK)
|
|
{
|
|
modifyreg32(ARMV6M_SYSTICK_CSR, SYSTICK_CSR_ENABLE, 0);
|
|
}
|
|
|
|
rp2040_dumpnvic("disable", irq);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_enable_irq
|
|
*
|
|
* Description:
|
|
* Enable the IRQ specified by 'irq'
|
|
*
|
|
****************************************************************************/
|
|
|
|
void up_enable_irq(int irq)
|
|
{
|
|
/* This will be called on each interrupt exit whether the interrupt can be
|
|
* enambled or not. So this assertion is necessarily lame.
|
|
*/
|
|
|
|
DEBUGASSERT((unsigned)irq < NR_IRQS);
|
|
|
|
#ifdef CONFIG_SMP
|
|
if (irq >= RP2040_IRQ_EXTINT && irq != RP2040_SIO_IRQ_PROC1 &&
|
|
up_cpu_index() != 0)
|
|
{
|
|
/* Must be handled by Core 0 */
|
|
|
|
rp2040_send_irqreq(irq);
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
/* Check for external interrupt */
|
|
|
|
if (irq >= RP2040_IRQ_EXTINT && irq < RP2040_IRQ_EXTINT + 32)
|
|
{
|
|
/* Set the appropriate bit in the ISER register to enable the
|
|
* interrupt
|
|
*/
|
|
|
|
putreg32((1 << (irq - RP2040_IRQ_EXTINT)), ARMV6M_NVIC_ISER);
|
|
}
|
|
|
|
/* Handle processor exceptions. Only SysTick can be disabled */
|
|
|
|
else if (irq == RP2040_IRQ_SYSTICK)
|
|
{
|
|
modifyreg32(ARMV6M_SYSTICK_CSR, 0, SYSTICK_CSR_ENABLE);
|
|
}
|
|
|
|
rp2040_dumpnvic("enable", irq);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: arm_ack_irq
|
|
*
|
|
* Description:
|
|
* Acknowledge the IRQ
|
|
*
|
|
****************************************************************************/
|
|
|
|
void arm_ack_irq(int irq)
|
|
{
|
|
rp2040_clrpend(irq);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: up_prioritize_irq
|
|
*
|
|
* Description:
|
|
* Set the priority of an IRQ.
|
|
*
|
|
* Since this API is not supported on all architectures, it should be
|
|
* avoided in common implementations where possible.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_ARCH_IRQPRIO
|
|
int up_prioritize_irq(int irq, int priority)
|
|
{
|
|
uint32_t regaddr;
|
|
uint32_t regval;
|
|
int shift;
|
|
|
|
DEBUGASSERT(irq == RP2040_IRQ_SVCALL ||
|
|
irq == RP2040_IRQ_PENDSV ||
|
|
irq == RP2040_IRQ_SYSTICK ||
|
|
(irq >= RP2040_IRQ_EXTINT && irq < NR_IRQS));
|
|
DEBUGASSERT(priority >= NVIC_SYSH_PRIORITY_MAX &&
|
|
priority <= NVIC_SYSH_PRIORITY_MIN);
|
|
|
|
/* Check for external interrupt */
|
|
|
|
if (irq >= RP2040_IRQ_EXTINT && irq < RP2040_IRQ_EXTINT + 32)
|
|
{
|
|
/* ARMV6M_NVIC_IPR() maps register IPR0-IPR7 with four settings per
|
|
* register.
|
|
*/
|
|
|
|
regaddr = ARMV6M_NVIC_IPR(irq >> 2);
|
|
shift = (irq & 3) << 3;
|
|
}
|
|
|
|
/* Handle processor exceptions. Only SVCall, PendSV, and SysTick can be
|
|
* reprioritized. And we will not permit modification of SVCall through
|
|
* this function.
|
|
*/
|
|
|
|
else if (irq == RP2040_IRQ_PENDSV)
|
|
{
|
|
regaddr = ARMV6M_SYSCON_SHPR2;
|
|
shift = SYSCON_SHPR3_PRI_14_SHIFT;
|
|
}
|
|
else if (irq == RP2040_IRQ_SYSTICK)
|
|
{
|
|
regaddr = ARMV6M_SYSCON_SHPR2;
|
|
shift = SYSCON_SHPR3_PRI_15_SHIFT;
|
|
}
|
|
else
|
|
{
|
|
return ERROR;
|
|
}
|
|
|
|
/* Set the priority */
|
|
|
|
regval = getreg32(regaddr);
|
|
regval &= ~((uint32_t)0xff << shift);
|
|
regval |= ((uint32_t)priority << shift);
|
|
putreg32(regval, regaddr);
|
|
|
|
rp2040_dumpnvic("prioritize", irq);
|
|
return OK;
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: arm_intstack_top
|
|
*
|
|
* Description:
|
|
* Return a pointer to the top the correct interrupt stack allocation
|
|
* for the current CPU.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#if defined(CONFIG_SMP) && CONFIG_ARCH_INTERRUPTSTACK > 7
|
|
uintptr_t arm_intstack_top(void)
|
|
{
|
|
return g_cpu_intstack_top[up_cpu_index()];
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: arm_intstack_alloc
|
|
*
|
|
* Description:
|
|
* Return a pointer to the "alloc" the correct interrupt stack allocation
|
|
* for the current CPU.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#if defined(CONFIG_SMP) && CONFIG_ARCH_INTERRUPTSTACK > 7
|
|
uintptr_t arm_intstack_alloc(void)
|
|
{
|
|
return g_cpu_intstack_top[up_cpu_index()] - INTSTACK_SIZE;
|
|
}
|
|
#endif
|