Linux boot fails with "fatal: Unable to find destination for [0x10015000:0x10015008] on system.iobus" because m5ops_base is not being passed to the C++ correctly
Description
[0x10015000:0x10015008] is supposed to be in the m5ops address range.
system.m5ops_base represents the m5ops base address and is configured as 0x10010000 in src/dev/arm/RealView.py. However, it seems not passed correctly to C++ world.
I checked its runtime value in config.ini and also manually printed it out in configs/example/arm/fs_bigLITTLE.py. All of these showed the same result: 268500992 i.e. 0x10010000, which means in python world, the value of system.m5ops_base is set correctly.
When I checked the corresponding value in C++ world, however, it seemed not passed from python world as expected. In src/sim/system.cc, the constructor of the System class sets its member, _m5opRange, according to p->m5ops_base passed from python world. The most strange thing is: the value of p->m5ops_base was 0 ! This made gem5 not recognize the correct m5ops address range.
[0x10015000:0x10015008] is supposed to be in the m5ops address range.
system.m5ops_base represents the m5ops base address and is configured as 0x10010000 in src/dev/arm/RealView.py. However, it seems not passed correctly to C++ world.
I checked its runtime value in config.ini and also manually printed it out in configs/example/arm/fs_bigLITTLE.py. All of these showed the same result: 268500992 i.e. 0x10010000, which means in python world, the value of system.m5ops_base is set correctly.
When I checked the corresponding value in C++ world, however, it seemed not passed from python world as expected. In src/sim/system.cc, the constructor of the System class sets its member, _m5opRange, according to p->m5ops_base passed from python world. The most strange thing is: the value of p->m5ops_base was 0 ! This made gem5 not recognize the correct m5ops address range.
gem5-dev thread here.