2011-05-08 23:38:47 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/mips/include/irq.h
|
|
|
|
*
|
2021-03-28 16:10:05 +02: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
|
2011-05-08 23:38:47 +02:00
|
|
|
*
|
2021-03-28 16:10:05 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-05-08 23:38:47 +02:00
|
|
|
*
|
2021-03-28 16:10:05 +02: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.
|
2011-05-08 23:38:47 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-05 23:00:04 +02:00
|
|
|
/* This file should never be included directly but, rather, only indirectly
|
2011-05-08 23:38:47 +02:00
|
|
|
* through nuttx/irq.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_MIPS_INCLUDE_IRQ_H
|
|
|
|
#define __ARCH_MIPS_INCLUDE_IRQ_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-05-17 06:16:29 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
# include <stdbool.h>
|
|
|
|
#endif
|
|
|
|
|
2011-05-08 23:38:47 +02:00
|
|
|
/* Include NuttX-specific IRQ definitions */
|
|
|
|
|
|
|
|
#include <nuttx/irq.h>
|
|
|
|
|
|
|
|
/* Include chip-specific IRQ definitions (including IRQ numbers) */
|
|
|
|
|
|
|
|
#include <arch/chip/irq.h>
|
|
|
|
|
|
|
|
/* Include AVR architecture-specific IRQ definitions (including register
|
2016-02-14 23:11:25 +01:00
|
|
|
* save structure and up_irq_save()/up_irq_restore() macros
|
2011-05-08 23:38:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_MIPS32
|
|
|
|
# include <arch/mips32/irq.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 16:04:12 +02:00
|
|
|
* Pre-processor Definitions
|
2011-05-08 23:38:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
2022-05-17 06:16:29 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
2011-05-08 23:38:47 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2022-05-17 06:16:29 +02:00
|
|
|
* Public Data
|
2011-05-08 23:38:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2022-05-17 06:16:29 +02:00
|
|
|
/* g_current_regs holds a references to the current interrupt level
|
|
|
|
* register storage structure. It is non-NULL only during interrupt
|
|
|
|
* 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;
|
|
|
|
#define CURRENT_REGS g_current_regs
|
|
|
|
|
2011-05-08 23:38:47 +02:00
|
|
|
/****************************************************************************
|
2022-05-17 06:16:29 +02:00
|
|
|
* Public Function Prototypes
|
2011-05-08 23:38:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2022-05-17 06:16:29 +02:00
|
|
|
* 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.
|
|
|
|
*
|
2011-05-08 23:38:47 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2022-05-17 06:16:29 +02:00
|
|
|
#define up_cpu_index() (0)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Inline functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: up_interrupt_context
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return true is we are currently executing in the interrupt
|
|
|
|
* handler context.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#define up_interrupt_context() (g_current_regs != NULL)
|
2011-05-08 23:38:47 +02:00
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
#endif /* __ARCH_MIPS_INCLUDE_IRQ_H */
|