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>
|
2024-08-06 11:24:26 +08:00
|
|
|
# include <arch/syscall.h>
|
2022-05-17 12:16:29 +08:00
|
|
|
#endif
|
|
|
|
|
2024-04-23 18:42:30 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
2009-05-20 01:31:58 +08:00
|
|
|
|
2024-04-23 18:42:30 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
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>
|
|
|
|
|
2024-04-23 18:42:30 +08:00
|
|
|
/* Include NuttX-specific IRQ definitions */
|
|
|
|
|
|
|
|
#include <nuttx/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__
|
|
|
|
|
2024-08-06 11:24:26 +08:00
|
|
|
#ifndef up_switch_context
|
|
|
|
#define up_switch_context(tcb, rtcb) \
|
|
|
|
do { \
|
|
|
|
if (!up_interrupt_context()) \
|
|
|
|
{ \
|
|
|
|
sys_call2(SYS_switch_context, (uintptr_t)&rtcb->xcp.regs, \
|
|
|
|
(uintptr_t)tcb->xcp.regs); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2022-05-17 12:16:29 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-11-07 00:21:23 +08:00
|
|
|
#endif /* __ARCH_ARM_INCLUDE_IRQ_H */
|