2008-11-06 16:21:23 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/arm/include/irq.h
|
2007-04-28 19:39:18 +00:00
|
|
|
*
|
2020-04-26 08:18:10 -06: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-28 19:39:18 +00:00
|
|
|
*
|
2020-04-26 08:18:10 -06:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-04-28 19:39:18 +00:00
|
|
|
*
|
2020-04-26 08:18:10 -06: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-28 19:39:18 +00:00
|
|
|
*
|
2008-11-06 16:21:23 +00:00
|
|
|
****************************************************************************/
|
2007-04-28 19:39:18 +00:00
|
|
|
|
2020-04-05 17:00:04 -04:00
|
|
|
/* This file should never be included directly but, rather, only indirectly
|
2009-05-07 15:59:13 +00:00
|
|
|
* through nuttx/irq.h
|
2007-04-28 19:39:18 +00:00
|
|
|
*/
|
|
|
|
|
2008-11-06 16:21:23 +00:00
|
|
|
#ifndef __ARCH_ARM_INCLUDE_IRQ_H
|
|
|
|
#define __ARCH_ARM_INCLUDE_IRQ_H
|
2007-04-28 19:39:18 +00:00
|
|
|
|
2008-11-06 16:21:23 +00:00
|
|
|
/****************************************************************************
|
2007-04-28 19:39:18 +00:00
|
|
|
* Included Files
|
2008-11-06 16:21:23 +00:00
|
|
|
****************************************************************************/
|
2007-04-28 19:39:18 +00:00
|
|
|
|
2009-05-19 17:31:58 +00:00
|
|
|
/* Include NuttX-specific IRQ definitions */
|
|
|
|
|
2007-11-02 23:05:53 +00:00
|
|
|
#include <nuttx/irq.h>
|
2009-05-19 17:31:58 +00:00
|
|
|
|
|
|
|
/* Include chip-specific IRQ definitions (including IRQ numbers) */
|
|
|
|
|
2007-04-28 19:39:18 +00:00
|
|
|
#include <arch/chip/irq.h>
|
|
|
|
|
2011-03-04 22:25:03 +00:00
|
|
|
/* Include ARM architecture-specific IRQ definitions (including register
|
2016-02-14 16:11:25 -06:00
|
|
|
* save structure and up_irq_save()/up_irq_restore() functions)
|
2009-05-19 17:31:58 +00:00
|
|
|
*/
|
|
|
|
|
2019-03-19 11:51:29 -06:00
|
|
|
#if defined(CONFIG_ARCH_ARMV7A)
|
2013-07-18 15:20:47 -06:00
|
|
|
# include <arch/armv7-a/irq.h>
|
2019-03-19 11:51:29 -06:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV7R)
|
2015-12-16 09:03:14 -06:00
|
|
|
# include <arch/armv7-r/irq.h>
|
2019-03-19 11:51:29 -06:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV7M)
|
2013-02-16 12:46:09 +00: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-19 21:38:25 -07:00
|
|
|
#elif defined(CONFIG_ARCH_ARMV6M)
|
2013-02-16 12:46:09 +00:00
|
|
|
# include <arch/armv6-m/irq.h>
|
2009-05-13 14:29:22 +00:00
|
|
|
#else
|
2013-02-16 12:46:09 +00:00
|
|
|
# include <arch/arm/irq.h>
|
2009-05-13 14:29:22 +00:00
|
|
|
#endif
|
|
|
|
|
2008-11-06 16:21:23 +00:00
|
|
|
#endif /* __ARCH_ARM_INCLUDE_IRQ_H */
|