python: swap memory addresses of lupio-rng and lupio-sys
Match the same memory map as in QEMU LupV platform. Change-Id: I0319e6de26c308eb1b2f402fafe5337dba44733d Signed-off-by: Joël Porquet-Lupine <joel@porquet.org> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/61531 Reviewed-by: Jason Lowe-Power <power.jg@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com> Maintainer: Jason Lowe-Power <power.jg@gmail.com>
This commit is contained in:
committed by
Joël Porquet-Lupine
parent
1c6f57cd6d
commit
da3feeef09
@@ -147,7 +147,7 @@ class LupvBoard(AbstractSystemBoard, KernelDiskWorkload):
|
||||
|
||||
# LUPIO RNG
|
||||
self.lupio_rng = LupioRNG(
|
||||
pio_addr=0x20005000,
|
||||
pio_addr=0x20003000,
|
||||
platform = self.lupv,
|
||||
int_id = self._int_ids['RNG']
|
||||
)
|
||||
@@ -156,7 +156,7 @@ class LupvBoard(AbstractSystemBoard, KernelDiskWorkload):
|
||||
self.lupio_rtc = LupioRTC(pio_addr=0x20004000)
|
||||
|
||||
#LUPIO SYS
|
||||
self.lupio_sys = LupioSYS(pio_addr= 0x20003000)
|
||||
self.lupio_sys = LupioSYS(pio_addr= 0x20005000)
|
||||
|
||||
# LUPIO TMR
|
||||
self.lupio_tmr = LupioTMR(
|
||||
|
||||
Reference in New Issue
Block a user