summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-08-04 23:19:43 -0400
committerIan Moffett <ian@osmora.org>2024-08-04 23:29:06 -0400
commit52912b7d920777fa4632b10da2df7a263a0a6d24 (patch)
treee60997b2332d3d21e48bcdebac0fe77387bb5405
parentcb00f021981cefe3d0a58fe2020fcf5dcabb3e85 (diff)
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 <ian@osmora.org>
-rw-r--r--sv/soc/bus/bus.md2
1 files changed, 1 insertions, 1 deletions
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 |