mirror of
https://review.haiku-os.org/haiku
synced 2025-01-19 04:58:51 +01:00
c34046ba70
GICv2 can use interrupt numbers up to 1019: * 0-15 are SGIs aka ICIs * 16-31 are PPIs * 32-1019 are SPIs Change-Id: I1c19be77105683da3f6988a5607b14dc10a899db Reviewed-on: https://review.haiku-os.org/c/haiku/+/5565 Reviewed-by: Fredrik Holmqvist <fredrik.holmqvist@gmail.com> Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
18 lines
418 B
C
18 lines
418 B
C
/*
|
|
* Copyright 2005-2022, Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Axel Dörfler <axeld@pinc-software.de>
|
|
* Ingo Weinhold <bonefish@cs.tu-berlin.de>
|
|
* Johannes Wischert <johanneswi@gmail.com>
|
|
*/
|
|
#ifndef _KERNEL_ARCH_ARM_INT_H
|
|
#define _KERNEL_ARCH_ARM_INT_H
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
#define NUM_IO_VECTORS 1024
|
|
|
|
#endif /* _KERNEL_ARCH_ARM_INT_H */
|