From 52912b7d920777fa4632b10da2df7a263a0a6d24 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 4 Aug 2024 23:19:43 -0400 Subject: soc: bus: Bring down reserved chunk to 256 bytes Previously, there was 4096 bytes reserved after the IRQ table for allowing a higher number of interrupt lines to be used in the future. If we do the math, this allows for a maximum of 1040 interrupt lines. That many interrupt lines being available is not practical. We lower the reserved chunk to 256 bytes, giving us a more reasonable maximum of 80. Signed-off-by: Ian Moffett --- sv/soc/bus/bus.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sv/soc/bus/bus.md b/sv/soc/bus/bus.md index 8179518..465e6c9 100644 --- a/sv/soc/bus/bus.md +++ b/sv/soc/bus/bus.md @@ -21,4 +21,4 @@ each range is assigned to. | 0x1000034 | PIMC IRQ Table (pin 13) | 4 | | 0x1000038 | PIMC IRQ Table (pin 14) | 4 | | 0x100003C | PIMC IRQ Table (pin 15) | 4 | -| 0x1000040 | Reserved | 4096 | +| 0x1000040 | Reserved | 256 | -- cgit v1.2.3