summaryrefslogtreecommitdiffstats
path: root/bsps/arm/include/dev/irq/arm-gic-arch.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2024-04-10 14:47:51 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2024-04-16 07:26:35 +0200
commit26eb5816df304c56e684dbb312412885a5f39d49 (patch)
treef25ba9e925eed8aa1f387c0401c6344af8fd5c95 /bsps/arm/include/dev/irq/arm-gic-arch.h
parentbsps/arm: Improve GICv2 support (diff)
downloadrtems-26eb5816df304c56e684dbb312412885a5f39d49.tar.bz2
dev/irq: Improve Doxgyen group assignments
Make the GIC interrupt controller support a subgroup of the generic interrupt controller support.
Diffstat (limited to '')
-rw-r--r--bsps/arm/include/dev/irq/arm-gic-arch.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/bsps/arm/include/dev/irq/arm-gic-arch.h b/bsps/arm/include/dev/irq/arm-gic-arch.h
index f2ea76f22f..f6c8b5d426 100644
--- a/bsps/arm/include/dev/irq/arm-gic-arch.h
+++ b/bsps/arm/include/dev/irq/arm-gic-arch.h
@@ -3,9 +3,10 @@
/**
* @file
*
- * @ingroup RTEMSBSPsARMShared
+ * @ingroup DevIRQGIC
*
- * @brief ARM-specific IRQ handlers.
+ * @brief This header file provides interfaces of the ARM Generic Interrupt
+ * Controller (GIC) support specific to the Arm architecture.
*/
/*
@@ -44,6 +45,12 @@
extern "C" {
#endif
+/**
+ * @addtogroup DevIRQGIC
+ *
+ * @{
+ */
+
static inline uint32_t arm_interrupt_enable_interrupts(void)
{
return _ARMV4_Status_irq_enable();
@@ -62,6 +69,8 @@ static inline void arm_interrupt_facility_set_exception_handler(void)
*/
}
+/** @} */
+
#ifdef __cplusplus
}
#endif