mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-27 15:00:16 +00:00
41 lines
819 B
C
41 lines
819 B
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup RTEMSBSPsARMShared
|
|
*
|
|
* @brief ARM_A9MPCORE_IRQ Support
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2013 embedded brains GmbH. All rights reserved.
|
|
*
|
|
* embedded brains GmbH
|
|
* Dornierstr. 4
|
|
* 82178 Puchheim
|
|
* Germany
|
|
* <info@embedded-brains.de>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#ifndef LIBBSP_ARM_SHARED_ARM_A9MPCORE_IRQ_H
|
|
#define LIBBSP_ARM_SHARED_ARM_A9MPCORE_IRQ_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#define A9MPCORE_IRQ_GT 27
|
|
#define A9MPCORE_IRQ_NFIQ 28
|
|
#define A9MPCORE_IRQ_PT 29
|
|
#define A9MPCORE_IRQ_PW 30
|
|
#define A9MPCORE_IRQ_NIRQ 31
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* LIBBSP_ARM_SHARED_ARM_A9MPCORE_IRQ_H */
|