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
|
|
|
*
|
2009-12-16 15:52:56 +01:00
|
|
|
* Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
|
2012-09-13 20:32:24 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2011-03-28 23:21:11 +02:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
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
|
|
|
/****************************************************************************
|
2014-10-03 16:23:57 +02:00
|
|
|
* Pre-processor Definitions
|
2015-10-03 01:47:23 +02:00
|
|
|
****************************************************************************/
|
2020-07-28 21:15:46 +02:00
|
|
|
|
2020-08-29 08:06:56 +02:00
|
|
|
#define NR_IRQS 64
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-10-03 16:23:57 +02:00
|
|
|
/* Number of registers saved in context switch */
|
|
|
|
|
|
|
|
#if defined(CONFIG_HOST_X86_64) && !defined(CONFIG_SIM_M32)
|
2020-07-28 21:15:46 +02:00
|
|
|
/* Storage order: %rbx, %rsp, %rbp, %r12, %r13, %r14, %r15, %rip */
|
2014-10-03 16:23:57 +02:00
|
|
|
|
|
|
|
# define XCPTCONTEXT_REGS 8
|
2020-12-31 09:27:08 +01:00
|
|
|
# define XCPTCONTEXT_SIZE (8 * XCPTCONTEXT_REGS)
|
2017-08-26 19:38:44 +02:00
|
|
|
#elif defined(CONFIG_HOST_X86) || defined(CONFIG_SIM_M32)
|
2020-07-28 21:15:46 +02:00
|
|
|
/* Storage order: %ebx, %esi, %edi, %ebp, sp, and return PC */
|
2014-10-03 16:23:57 +02:00
|
|
|
|
|
|
|
# define XCPTCONTEXT_REGS 6
|
2020-12-31 09:27:08 +01:00
|
|
|
# define XCPTCONTEXT_SIZE (4 * XCPTCONTEXT_REGS)
|
2017-08-26 19:38:44 +02:00
|
|
|
#elif defined(CONFIG_HOST_ARM)
|
2020-02-07 07:41:58 +01:00
|
|
|
# define XCPTCONTEXT_REGS 16
|
2020-12-31 09:27:08 +01:00
|
|
|
# define XCPTCONTEXT_SIZE (4 * XCPTCONTEXT_REGS)
|
2014-10-03 16:23:57 +02:00
|
|
|
#endif
|
|
|
|
|
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__
|
|
|
|
|
|
|
|
#if defined(CONFIG_HOST_X86_64) && !defined(CONFIG_SIM_M32)
|
|
|
|
typedef unsigned long xcpt_reg_t;
|
|
|
|
#else
|
2020-12-22 08:34:55 +01:00
|
|
|
typedef unsigned int xcpt_reg_t;
|
2014-10-03 16:23:57 +02:00
|
|
|
#endif
|
|
|
|
|
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 */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2020-07-28 21:15:46 +02:00
|
|
|
xcpt_reg_t regs[XCPTCONTEXT_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 */
|