diff options
author | Ali Saidi <Ali.Saidi@ARM.com> | 2011-04-04 11:42:31 -0500 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@ARM.com> | 2011-04-04 11:42:31 -0500 |
commit | d6289507d875dede9201bb2c48a889eca1e19900 (patch) | |
tree | 514f6d4382afb96f551eb21d15874aba95fa79ef /src | |
parent | 332adcdd1a11301a229f7c70a40f6ffd1270b3bf (diff) | |
download | gem5-d6289507d875dede9201bb2c48a889eca1e19900.tar.xz |
ARM: Include IDE/CF controller by default in PBX model.
Frame buffer and boot linux:
./build/ARM_FS/m5.opt configs/example/fs.py --benchmark=ArmLinuxFrameBuf --kernel=vmlinux.touchkit
Linux from a CF card:
./build/ARM_FS/m5.opt configs/example/fs.py --benchmark=ArmLinuxCflash --kernel=vmlinux.touchkit
Run Android
./build/ARM_FS/m5.opt configs/example/fs.py --benchmark=ArmAndroid --kernel=vmlinux.android
Run MP
./build/ARM_FS/m5.opt configs/example/fs.py --benchmark=ArmLinuxCflash --kernel=vmlinux.mp-2.6.38
Diffstat (limited to 'src')
-rw-r--r-- | src/dev/arm/RealView.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/dev/arm/RealView.py b/src/dev/arm/RealView.py index ef3f68a88..8a43c5b8d 100644 --- a/src/dev/arm/RealView.py +++ b/src/dev/arm/RealView.py @@ -43,6 +43,7 @@ from m5.params import * from m5.proxy import * from Device import BasicPioDevice, PioDevice, IsaFake, BadAddr, DmaDevice +from Ide import * from Platform import Platform from Terminal import Terminal from Uart import Uart @@ -131,6 +132,12 @@ class RealViewPBX(RealView): clcd = Pl111(pio_addr=0x10020000, int_num=55) kmi0 = Pl050(pio_addr=0x10006000, int_num=52) kmi1 = Pl050(pio_addr=0x10007000, int_num=53, is_mouse=True) + cf_ctrl = IdeController(disks=[], pci_func=0, pci_dev=0, pci_bus=0, + io_shift = 1, ctrl_offset = 2, Command = 0x1, + BAR0 = 0x18000000, BAR0Size = '16B', + BAR1 = 0x18000100, BAR1Size = '1B', + BAR0LegacyIO = True, BAR1LegacyIO = True) + l2x0_fake = IsaFake(pio_addr=0x1f002000, pio_size=0xfff) flash_fake = IsaFake(pio_addr=0x40000000, pio_size=0x4000000) @@ -149,7 +156,6 @@ class RealViewPBX(RealView): aaci_fake = AmbaFake(pio_addr=0x10004000) mmc_fake = AmbaFake(pio_addr=0x10005000) rtc_fake = AmbaFake(pio_addr=0x10017000, amba_id=0x41031) - cf0_fake = IsaFake(pio_addr=0x18000000, pio_size=0xfff) # Attach I/O devices that are on chip @@ -168,6 +174,7 @@ class RealViewPBX(RealView): self.clcd.pio = bus.port self.kmi0.pio = bus.port self.kmi1.pio = bus.port + self.cf_ctrl.pio = bus.port self.dmac_fake.pio = bus.port self.uart1_fake.pio = bus.port self.uart2_fake.pio = bus.port @@ -184,7 +191,6 @@ class RealViewPBX(RealView): self.mmc_fake.pio = bus.port self.rtc_fake.pio = bus.port self.flash_fake.pio = bus.port - self.cf0_fake.pio = bus.port # Reference for memory map and interrupt number # RealView Emulation Baseboard User Guide (ARM DUI 0143B) |