mirror of
https://github.com/seL4/seL4.git
synced 2026-04-04 22:39:54 +00:00
tqma8xqp1gb: fix MAX_IRQ setting
The highest defined interrupt in the data sheet is 543 - 32 = 511. This is important, because the code expects all IRQ numbers to fit into 9 bits (which 511 does, but 512 would not). Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
This commit is contained in:
@@ -20,7 +20,7 @@ if(KernelPlatformTqma8xqp1gb)
|
||||
list(APPEND KernelDTSList "src/plat/tqma8xqp1gb/overlay-${KernelPlatform}.dts")
|
||||
declare_default_headers(
|
||||
TIMER_FREQUENCY 8000000
|
||||
MAX_IRQ 512
|
||||
MAX_IRQ 511
|
||||
TIMER drivers/timer/arm_generic.h
|
||||
TIMER_OVERHEAD_TICKS 1
|
||||
INTERRUPT_CONTROLLER arch/machine/gic_v3.h
|
||||
|
||||
Reference in New Issue
Block a user