diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-07 18:41:42 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-07 18:41:42 +0000 |
commit | a4a771c055ea50f255f0d9a555c8628587afbea3 (patch) | |
tree | 3be8f1d968b748351c5b5cf549ceaee5a1cc6d60 /hw/r2d.c | |
parent | db8d9902041dfe771812862ebf06980333a37468 (diff) |
sh4: mmio based CF support on r2d board (Takashi YOSHII).
This patch adds emulation for a CompactFlash on sh4/r2d board.
The device is CF, but wired to be worked as True-IDE mode, and connected
directly to SH bus. So, this code is to support generally mmio based
IDEs which are supported by "pata_platform" driver in linux kernel.
Signed-off-by: Takashi YOSHII <takasi-y@ops.dti.ne.jp>
Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5924 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/r2d.c')
-rw-r--r-- | hw/r2d.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -149,6 +149,11 @@ static void r2d_init(ram_addr_t ram_size, int vga_ram_size, sm501_vga_ram_addr = qemu_ram_alloc(SM501_VRAM_SIZE); sm501_init(ds, 0x10000000, sm501_vga_ram_addr, SM501_VRAM_SIZE, serial_hds[2]); + + /* onboard CF (True IDE mode, Master only). */ + mmio_ide_init(0x14001000, 0x1400080c, NULL, 1, + drives_table[drive_get_index(IF_IDE, 0, 0)].bdrv, NULL); + /* Todo: register on board registers */ { int kernel_size; |