balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Gumstix Platforms |
| 3 | * |
| 4 | * Copyright (c) 2007 by Thorsten Zitterell <info@bitmux.org> |
| 5 | * |
| 6 | * Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org> |
| 7 | * |
| 8 | * This code is licensed under the GNU GPL v2. |
| 9 | */ |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 10 | |
| 11 | /* |
| 12 | * Example usage: |
| 13 | * |
| 14 | * connex: |
| 15 | * ======= |
| 16 | * create image: |
| 17 | * # dd of=flash bs=1k count=16k if=/dev/zero |
| 18 | * # dd of=flash bs=1k conv=notrunc if=u-boot.bin |
| 19 | * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2 |
| 20 | * start it: |
| 21 | * # qemu-system-arm -M connex -pflash flash -monitor null -nographic |
| 22 | * |
| 23 | * verdex: |
| 24 | * ======= |
| 25 | * create image: |
| 26 | * # dd of=flash bs=1k count=32k if=/dev/zero |
| 27 | * # dd of=flash bs=1k conv=notrunc if=u-boot.bin |
| 28 | * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2 |
| 29 | * # dd of=flash bs=1k conv=notrunc seek=31744 if=uImage |
| 30 | * start it: |
| 31 | * # qemu-system-arm -M verdex -pflash flash -monitor null -nographic -m 289 |
| 32 | */ |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 33 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 34 | #include "hw.h" |
| 35 | #include "pxa.h" |
| 36 | #include "net.h" |
| 37 | #include "flash.h" |
| 38 | #include "sysemu.h" |
| 39 | #include "devices.h" |
| 40 | #include "boards.h" |
Blue Swirl | 2446333 | 2010-08-24 15:22:24 +0000 | [diff] [blame] | 41 | #include "blockdev.h" |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 42 | |
balrog | 1fc678c | 2007-11-25 00:29:23 +0000 | [diff] [blame] | 43 | static const int sector_len = 128 * 1024; |
| 44 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 45 | static void connex_init(ram_addr_t ram_size, |
aliguori | 3023f33 | 2009-01-16 19:04:14 +0000 | [diff] [blame] | 46 | const char *boot_device, |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 47 | const char *kernel_filename, const char *kernel_cmdline, |
| 48 | const char *initrd_filename, const char *cpu_model) |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 49 | { |
Paul Brook | bc24a22 | 2009-05-10 01:44:56 +0100 | [diff] [blame] | 50 | PXA2xxState *cpu; |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 51 | DriveInfo *dinfo; |
Blue Swirl | 3d08ff6 | 2010-03-29 19:23:56 +0000 | [diff] [blame] | 52 | int be; |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 53 | |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 54 | uint32_t connex_rom = 0x01000000; |
| 55 | uint32_t connex_ram = 0x04000000; |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 56 | |
aliguori | 3023f33 | 2009-01-16 19:04:14 +0000 | [diff] [blame] | 57 | cpu = pxa255_init(connex_ram); |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 58 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 59 | dinfo = drive_get(IF_PFLASH, 0, 0); |
| 60 | if (!dinfo) { |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 61 | fprintf(stderr, "A flash image must be given with the " |
| 62 | "'pflash' parameter\n"); |
| 63 | exit(1); |
| 64 | } |
| 65 | |
Blue Swirl | 3d08ff6 | 2010-03-29 19:23:56 +0000 | [diff] [blame] | 66 | #ifdef TARGET_WORDS_BIGENDIAN |
| 67 | be = 1; |
| 68 | #else |
| 69 | be = 0; |
| 70 | #endif |
Alex Williamson | 1724f04 | 2010-06-25 11:09:35 -0600 | [diff] [blame] | 71 | if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "connext.rom", |
| 72 | connex_rom), |
Blue Swirl | 3d08ff6 | 2010-03-29 19:23:56 +0000 | [diff] [blame] | 73 | dinfo->bdrv, sector_len, connex_rom / sector_len, |
| 74 | 2, 0, 0, 0, 0, be)) { |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 75 | fprintf(stderr, "qemu: Error registering flash memory.\n"); |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 76 | exit(1); |
| 77 | } |
| 78 | |
balrog | 5697ff6 | 2008-01-14 02:39:21 +0000 | [diff] [blame] | 79 | /* Interrupt line of NIC is connected to GPIO line 36 */ |
balrog | 38641a5 | 2007-11-17 14:07:13 +0000 | [diff] [blame] | 80 | smc91c111_init(&nd_table[0], 0x04000300, |
| 81 | pxa2xx_gpio_in_get(cpu->gpio)[36]); |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 84 | static void verdex_init(ram_addr_t ram_size, |
aliguori | 3023f33 | 2009-01-16 19:04:14 +0000 | [diff] [blame] | 85 | const char *boot_device, |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 86 | const char *kernel_filename, const char *kernel_cmdline, |
| 87 | const char *initrd_filename, const char *cpu_model) |
| 88 | { |
Paul Brook | bc24a22 | 2009-05-10 01:44:56 +0100 | [diff] [blame] | 89 | PXA2xxState *cpu; |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 90 | DriveInfo *dinfo; |
Blue Swirl | 3d08ff6 | 2010-03-29 19:23:56 +0000 | [diff] [blame] | 91 | int be; |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 92 | |
| 93 | uint32_t verdex_rom = 0x02000000; |
| 94 | uint32_t verdex_ram = 0x10000000; |
| 95 | |
aliguori | 3023f33 | 2009-01-16 19:04:14 +0000 | [diff] [blame] | 96 | cpu = pxa270_init(verdex_ram, cpu_model ?: "pxa270-c0"); |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 97 | |
Gerd Hoffmann | 751c6a1 | 2009-07-22 16:42:57 +0200 | [diff] [blame] | 98 | dinfo = drive_get(IF_PFLASH, 0, 0); |
| 99 | if (!dinfo) { |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 100 | fprintf(stderr, "A flash image must be given with the " |
| 101 | "'pflash' parameter\n"); |
| 102 | exit(1); |
| 103 | } |
| 104 | |
Blue Swirl | 3d08ff6 | 2010-03-29 19:23:56 +0000 | [diff] [blame] | 105 | #ifdef TARGET_WORDS_BIGENDIAN |
| 106 | be = 1; |
| 107 | #else |
| 108 | be = 0; |
| 109 | #endif |
Alex Williamson | 1724f04 | 2010-06-25 11:09:35 -0600 | [diff] [blame] | 110 | if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "verdex.rom", |
| 111 | verdex_rom), |
Blue Swirl | 3d08ff6 | 2010-03-29 19:23:56 +0000 | [diff] [blame] | 112 | dinfo->bdrv, sector_len, verdex_rom / sector_len, |
| 113 | 2, 0, 0, 0, 0, be)) { |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 114 | fprintf(stderr, "qemu: Error registering flash memory.\n"); |
| 115 | exit(1); |
| 116 | } |
| 117 | |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 118 | /* Interrupt line of NIC is connected to GPIO line 99 */ |
| 119 | smc91c111_init(&nd_table[0], 0x04000300, |
| 120 | pxa2xx_gpio_in_get(cpu->gpio)[99]); |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 121 | } |
| 122 | |
Anthony Liguori | f80f9ec | 2009-05-20 18:38:09 -0500 | [diff] [blame] | 123 | static QEMUMachine connex_machine = { |
aliguori | 4b32e16 | 2008-10-07 20:34:35 +0000 | [diff] [blame] | 124 | .name = "connex", |
| 125 | .desc = "Gumstix Connex (PXA255)", |
| 126 | .init = connex_init, |
balrog | 05ee37e | 2007-11-17 11:50:55 +0000 | [diff] [blame] | 127 | }; |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 128 | |
Anthony Liguori | f80f9ec | 2009-05-20 18:38:09 -0500 | [diff] [blame] | 129 | static QEMUMachine verdex_machine = { |
aliguori | 4b32e16 | 2008-10-07 20:34:35 +0000 | [diff] [blame] | 130 | .name = "verdex", |
| 131 | .desc = "Gumstix Verdex (PXA270)", |
| 132 | .init = verdex_init, |
balrog | 3e3f675 | 2007-11-24 23:47:38 +0000 | [diff] [blame] | 133 | }; |
Anthony Liguori | f80f9ec | 2009-05-20 18:38:09 -0500 | [diff] [blame] | 134 | |
| 135 | static void gumstix_machine_init(void) |
| 136 | { |
| 137 | qemu_register_machine(&connex_machine); |
| 138 | qemu_register_machine(&verdex_machine); |
| 139 | } |
| 140 | |
| 141 | machine_init(gumstix_machine_init); |