From 8e73f1d497f8586271841750b800e60c054026ec Mon Sep 17 00:00:00 2001 From: Adrian Herrera Date: Mon, 19 Aug 2019 13:52:01 +0100 Subject: dev-arm,system-arm: missing GICv3 ranges property This patch adds the device tree "ranges" property to GICv3 for the VExpress_GEM5_V2 platform. It is also included in the GICv3 DTB auto generation. This allows the GICv3 ITS to be specified in the device tree. Change-Id: I00e1bb0fd45521e34820c0a23ddf047afec7aa4c Reviewed-by: Giacomo Travaglini Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20255 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg Tested-by: kokoro --- src/dev/arm/Gic.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src/dev/arm') diff --git a/src/dev/arm/Gic.py b/src/dev/arm/Gic.py index 734299f50..e1a8a78db 100644 --- a/src/dev/arm/Gic.py +++ b/src/dev/arm/Gic.py @@ -235,6 +235,7 @@ class Gicv3(BaseGic): node.append(self._state.interruptCellsProperty()) node.append(self._state.addrCellsProperty()) node.append(self._state.sizeCellsProperty()) + node.append(FdtProperty("ranges")) node.append(FdtProperty("interrupt-controller")) redist_stride = 0x40000 if self.gicv4 else 0x20000 -- cgit v1.2.3