2008-11-07 00:21:23 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/arm/include/irq.h
|
2007-04-29 03:39:18 +08:00
|
|
|
*
|
2020-04-26 22:18:10 +08:00
|
|
|
* 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
|
2007-04-29 03:39:18 +08:00
|
|
|
*
|
2020-04-26 22:18:10 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-04-29 03:39:18 +08:00
|
|
|
*
|
2020-04-26 22:18:10 +08:00
|
|
|
* 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.
|
2007-04-29 03:39:18 +08:00
|
|
|
*
|
2008-11-07 00:21:23 +08:00
|
|
|
****************************************************************************/
|
2007-04-29 03:39:18 +08:00
|
|
|
|
2020-04-06 05:00:04 +08:00
|
|
|
/* This file should never be included directly but, rather, only indirectly
|
2009-05-07 23:59:13 +08:00
|
|
|
* through nuttx/irq.h
|
2007-04-29 03:39:18 +08:00
|
|
|
*/
|
|
|
|
|
2008-11-07 00:21:23 +08:00
|
|
|
#ifndef __ARCH_ARM_INCLUDE_IRQ_H
|
|
|
|
#define __ARCH_ARM_INCLUDE_IRQ_H
|
2007-04-29 03:39:18 +08:00
|
|
|
|
2008-11-07 00:21:23 +08:00
|
|
|
/****************************************************************************
|
2007-04-29 03:39:18 +08:00
|
|
|
* Included Files
|
2008-11-07 00:21:23 +08:00
|
|
|
****************************************************************************/
|
2007-04-29 03:39:18 +08:00
|
|
|
|
2022-05-17 12:16:29 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
# include <stdbool.h>
|
|
|
|
#endif
|
|
|
|
|
2009-05-20 01:31:58 +08:00
|
|
|
/* Include NuttX-specific IRQ definitions */
|
|
|
|
|
2007-11-03 07:05:53 +08:00
|
|
|
#include <nuttx/irq.h>
|
2009-05-20 01:31:58 +08:00
|
|
|
|
|
|
|
/* Include chip-specific IRQ definitions (including IRQ numbers) */
|
|
|
|
|
2007-04-29 03:39:18 +08:00
|
|
|
#include <arch/chip/irq.h>
|
|
|
|
|
2011-03-05 06:25:03 +08:00
|
|
|
/* Include ARM architecture-specific IRQ definitions (including register
|
2016-02-15 06:11:25 +08:00
|
|
|
* save structure and up_irq_save()/up_irq_restore() functions)
|
2009-05-20 01:31:58 +08:00
|
|
|
*/
|
|
|
|
|
2019-03-20 01:51:29 +08:00
|
|
|
#if defined(CONFIG_ARCH_ARMV7A)
|
2013-07-19 05:20:47 +08:00
|
|
|
# include <arch/armv7-a/irq.h>
|
2019-03-20 01:51:29 +08:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV7R)
|
2015-12-16 23:03:14 +08:00
|
|
|
# include <arch/armv7-r/irq.h>
|
2023-05-31 20:54:19 +08:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV8R)
|
|
|
|
# include <arch/armv8-r/irq.h>
|
2019-03-20 01:51:29 +08:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV7M)
|
2013-02-16 20:46:09 +08:00
|
|
|
# include <arch/armv7-m/irq.h>
|
2020-04-22 10:09:50 +08:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV8M)
|
|
|
|
# include <arch/armv8-m/irq.h>
|
2020-09-20 12:38:25 +08:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV6M)
|
2013-02-16 20:46:09 +08:00
|
|
|
# include <arch/armv6-m/irq.h>
|
2009-05-13 22:29:22 +08:00
|
|
|
#else
|
2013-02-16 20:46:09 +08:00
|
|
|
# include <arch/arm/irq.h>
|
2009-05-13 22:29:22 +08:00
|
|
|
#endif
|
|
|
|
|
2022-06-30 03:47:43 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-05-17 12:16:29 +08:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* g_current_regs[] holds a references to the current interrupt level
|
2024-03-06 09:11:21 +08:00
|
|
|
* register storage structure. It is non-NULL only during interrupt
|
2022-05-17 12:16:29 +08:00
|
|
|
* processing. Access to g_current_regs[] must be through the macro
|
|
|
|
* CURRENT_REGS for portability.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* For the case of architectures with multiple CPUs, then there must be one
|
|
|
|
* such value for each processor that can receive an interrupt.
|
|
|
|
*/
|
|
|
|
|
|
|
|
EXTERN volatile uint32_t *g_current_regs[CONFIG_SMP_NCPUS];
|
|
|
|
#define CURRENT_REGS (g_current_regs[up_cpu_index()])
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: up_cpu_index
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return an index in the range of 0 through (CONFIG_SMP_NCPUS-1) that
|
|
|
|
* corresponds to the currently executing CPU.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* An integer index in the range of 0 through (CONFIG_SMP_NCPUS-1) that
|
|
|
|
* corresponds to the currently executing CPU.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
2023-10-25 20:11:20 +08:00
|
|
|
int up_cpu_index(void) noinstrument_function;
|
2022-05-17 12:16:29 +08:00
|
|
|
#else
|
|
|
|
# define up_cpu_index() (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Inline functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: up_interrupt_context
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return true is we are currently executing in the interrupt
|
|
|
|
* handler context.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2023-10-25 20:11:20 +08:00
|
|
|
noinstrument_function
|
2022-05-17 12:16:29 +08:00
|
|
|
static inline bool up_interrupt_context(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
irqstate_t flags = up_irq_save();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool ret = CURRENT_REGS != NULL;
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
up_irq_restore(flags);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-11-07 00:21:23 +08:00
|
|
|
#endif /* __ARCH_ARM_INCLUDE_IRQ_H */
|