Giacomo Travaglini has submitted this change. (
https://gem5-review.googlesource.com/c/public/gem5/+/35398 )
Change subject: dev: Use generateFdtProperty in the PioDevice
......................................................................
dev: Use generateFdtProperty in the PioDevice
Change-Id: I2126bf84e0648fe76570f9645179f90bdf79eb41
Signed-off-by: Giacomo Travaglini <[email protected]>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/35398
Tested-by: kokoro <[email protected]>
Reviewed-by: Andreas Sandberg <[email protected]>
Maintainer: Andreas Sandberg <[email protected]>
---
M src/dev/Device.py
1 file changed, 4 insertions(+), 4 deletions(-)
Approvals:
Andreas Sandberg: Looks good to me, approved; Looks good to me, approved
kokoro: Regressions pass
diff --git a/src/dev/Device.py b/src/dev/Device.py
index d9f351d..af49504 100644
--- a/src/dev/Device.py
+++ b/src/dev/Device.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2012-2016,2019 ARM Limited
+# Copyright (c) 2012-2016,2019-2020 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
@@ -61,10 +61,10 @@
raise(("Interrupt number smaller than 32 "+
" in PioDevice %s") % name)
- # subtracting 32 because Linux assumes that SPIs start at 0,
while
- # gem5 uses the internal GIC numbering (SPIs start at 32)
+ gic = self._parent.unproxy(self).gic
+
node.append(FdtPropertyWords("interrupts", sum(
- [[0, i.num - 32, 4] for i in interrupts], []) ))
+ [ i.generateFdtProperty(gic) for i in interrupts], []) ))
return node
--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/35398
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I2126bf84e0648fe76570f9645179f90bdf79eb41
Gerrit-Change-Number: 35398
Gerrit-PatchSet: 8
Gerrit-Owner: Giacomo Travaglini <[email protected]>
Gerrit-Reviewer: Andreas Sandberg <[email protected]>
Gerrit-Reviewer: Giacomo Travaglini <[email protected]>
Gerrit-Reviewer: kokoro <[email protected]>
Gerrit-MessageType: merged
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s