arm: increase number of io vectors to 1024

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>
This commit is contained in:
David Karoly 2022-08-24 12:21:34 +02:00 committed by waddlesplash
parent 028f04593a
commit c34046ba70

View File

@ -1,5 +1,5 @@
/*
* Copyright 2005-2009, Haiku Inc. All rights reserved.
* Copyright 2005-2022, Haiku Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
@ -12,6 +12,6 @@
#include <SupportDefs.h>
#define NUM_IO_VECTORS 256
#define NUM_IO_VECTORS 1024
#endif /* _KERNEL_ARCH_ARM_INT_H */