diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-06 16:49:48 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-06 16:49:48 +0000 |
commit | a1bb27b1e98a372545f37a599c0f9ea785502554 (patch) | |
tree | 5fa9e7adb13704849dddfa7ce82e32c931564543 /hw/realview.c | |
parent | 84409ddbda9b4d8f2d2ad4f580e987800b8e7c4e (diff) | |
download | qemu-a1bb27b1e98a372545f37a599c0f9ea785502554.tar.gz qemu-a1bb27b1e98a372545f37a599c0f9ea785502554.tar.bz2 qemu-a1bb27b1e98a372545f37a599c0f9ea785502554.zip |
SD card emulation (initial implementation by Andrzei Zaborowski).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2620 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/realview.c')
-rw-r--r-- | hw/realview.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/realview.c b/hw/realview.c index a5607e79bf..1d351bf2b5 100644 --- a/hw/realview.c +++ b/hw/realview.c @@ -1,7 +1,7 @@ /* * ARM RealView Baseboard System emulation. * - * Copyright (c) 2006 CodeSourcery. + * Copyright (c) 2006-2007 CodeSourcery. * Written by Paul Brook * * This code is licenced under the GPL. @@ -55,6 +55,8 @@ static void realview_init(int ram_size, int vga_ram_size, int boot_device, pl110_init(ds, 0x10020000, pic, 23, 1); + pl181_init(0x10005000, sd_bdrv, pic, 17, 18); + pci_bus = pci_vpb_init(pic, 48, 1); if (usb_enabled) { usb_ohci_init_pci(pci_bus, 3, -1); |