2015-10-03 01:47:23 +02:00
|
|
|
/****************************************************************************
|
2016-08-07 02:16:31 +02:00
|
|
|
* arch/sim/include/irq.h
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-03-28 17:21:53 +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
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-03-28 17:21:53 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-03-28 17:21:53 +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.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2015-10-03 01:47:23 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-04-05 23:00:04 +02:00
|
|
|
/* This file should never be included directly but, rather,
|
2007-02-18 00:21:28 +01:00
|
|
|
* only indirectly through nuttx/irq.h
|
|
|
|
*/
|
|
|
|
|
2016-08-07 02:48:45 +02:00
|
|
|
#ifndef __ARCH_SIM_INCLUDE_IRQ_H
|
|
|
|
#define __ARCH_SIM_INCLUDE_IRQ_H
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-03 01:47:23 +02:00
|
|
|
/****************************************************************************
|
2021-04-05 07:01:15 +02:00
|
|
|
* Included Files
|
2015-10-03 01:47:23 +02:00
|
|
|
****************************************************************************/
|
2020-07-28 21:15:46 +02:00
|
|
|
|
2021-04-05 07:01:15 +02:00
|
|
|
#include <arch/setjmp.h>
|
2014-10-03 16:23:57 +02:00
|
|
|
|
2021-04-05 07:01:15 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
2014-10-03 16:23:57 +02:00
|
|
|
|
2021-04-05 07:01:15 +02:00
|
|
|
#define NR_IRQS 64
|
2014-10-03 16:23:57 +02:00
|
|
|
|
2015-10-03 01:47:23 +02:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Types
|
2015-10-03 01:47:23 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-10-03 16:23:57 +02:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
/* This struct defines the way the registers are stored */
|
|
|
|
|
|
|
|
struct xcptcontext
|
|
|
|
{
|
2020-07-28 21:15:46 +02:00
|
|
|
void *sigdeliver; /* Actual type is sig_deliver_t */
|
2021-04-05 07:01:15 +02:00
|
|
|
jmp_buf regs;
|
2007-02-18 00:21:28 +01:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2015-10-03 01:47:23 +02:00
|
|
|
/****************************************************************************
|
2020-05-09 18:56:52 +02:00
|
|
|
* Public Function Prototypes
|
2015-10-03 01:47:23 +02:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
2016-02-14 23:11:25 +01:00
|
|
|
|
2020-07-28 21:15:46 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2016-02-14 23:11:25 +01:00
|
|
|
/* Name: up_irq_save, up_irq_restore, and friends.
|
|
|
|
*
|
2020-05-09 18:56:52 +02:00
|
|
|
* NOTE: These functions should never be called from application code and,
|
2016-02-14 23:11:25 +01:00
|
|
|
* as a general rule unless you really know what you are doing, this
|
|
|
|
* function should not be called directly from operation system code either:
|
|
|
|
* Typically, the wrapper functions, enter_critical_section() and
|
|
|
|
* leave_critical section(), are probably what you really want.
|
|
|
|
*/
|
|
|
|
|
2020-05-09 18:56:52 +02:00
|
|
|
irqstate_t up_irq_save(void);
|
|
|
|
void up_irq_restore(irqstate_t flags);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-07-28 21:15:46 +02:00
|
|
|
#endif /* !__ASSEMBLY__ */
|
2016-08-07 02:48:45 +02:00
|
|
|
#endif /* __ARCH_SIM_INCLUDE_IRQ_H */
|