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