]>
Commit | Line | Data |
---|---|---|
05ee37eb AZ |
1 | /* |
2 | * Gumstix Platforms | |
3 | * | |
4 | * Copyright (c) 2007 by Thorsten Zitterell <[email protected]> | |
5 | * | |
6 | * Code based on spitz platform by Andrzej Zaborowski <[email protected]> | |
7 | * | |
8 | * This code is licensed under the GNU GPL v2. | |
6b620ca3 PB |
9 | * |
10 | * Contributions after 2012-01-13 are licensed under the terms of the | |
11 | * GNU GPL, version 2 or (at your option) any later version. | |
05ee37eb | 12 | */ |
3e3f6754 AZ |
13 | |
14 | /* | |
15 | * Example usage: | |
16 | * | |
17 | * connex: | |
18 | * ======= | |
19 | * create image: | |
20 | * # dd of=flash bs=1k count=16k if=/dev/zero | |
21 | * # dd of=flash bs=1k conv=notrunc if=u-boot.bin | |
22 | * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2 | |
23 | * start it: | |
24 | * # qemu-system-arm -M connex -pflash flash -monitor null -nographic | |
25 | * | |
26 | * verdex: | |
27 | * ======= | |
28 | * create image: | |
29 | * # dd of=flash bs=1k count=32k if=/dev/zero | |
30 | * # dd of=flash bs=1k conv=notrunc if=u-boot.bin | |
31 | * # dd of=flash bs=1k conv=notrunc seek=256 if=rootfs.arm_nofpu.jffs2 | |
32 | * # dd of=flash bs=1k conv=notrunc seek=31744 if=uImage | |
33 | * start it: | |
34 | * # qemu-system-arm -M verdex -pflash flash -monitor null -nographic -m 289 | |
35 | */ | |
05ee37eb | 36 | |
83c9f4ca | 37 | #include "hw/hw.h" |
0d09e41a | 38 | #include "hw/arm/pxa.h" |
1422e32d | 39 | #include "net/net.h" |
0d09e41a | 40 | #include "hw/block/flash.h" |
bd2be150 | 41 | #include "hw/devices.h" |
83c9f4ca | 42 | #include "hw/boards.h" |
9c17d615 | 43 | #include "sysemu/blockdev.h" |
022c62cb | 44 | #include "exec/address-spaces.h" |
05ee37eb | 45 | |
1fc678cc AZ |
46 | static const int sector_len = 128 * 1024; |
47 | ||
5f072e1f | 48 | static void connex_init(QEMUMachineInitArgs *args) |
05ee37eb | 49 | { |
bc24a225 | 50 | PXA2xxState *cpu; |
751c6a17 | 51 | DriveInfo *dinfo; |
01e0451a | 52 | int be; |
a6dc4c2d | 53 | MemoryRegion *address_space_mem = get_system_memory(); |
05ee37eb | 54 | |
3e3f6754 AZ |
55 | uint32_t connex_rom = 0x01000000; |
56 | uint32_t connex_ram = 0x04000000; | |
05ee37eb | 57 | |
a6dc4c2d | 58 | cpu = pxa255_init(address_space_mem, connex_ram); |
05ee37eb | 59 | |
751c6a17 GH |
60 | dinfo = drive_get(IF_PFLASH, 0, 0); |
61 | if (!dinfo) { | |
05ee37eb AZ |
62 | fprintf(stderr, "A flash image must be given with the " |
63 | "'pflash' parameter\n"); | |
64 | exit(1); | |
65 | } | |
66 | ||
3d08ff69 | 67 | #ifdef TARGET_WORDS_BIGENDIAN |
01e0451a | 68 | be = 1; |
3d08ff69 | 69 | #else |
01e0451a | 70 | be = 0; |
3d08ff69 | 71 | #endif |
cfe5f011 | 72 | if (!pflash_cfi01_register(0x00000000, NULL, "connext.rom", connex_rom, |
3d08ff69 | 73 | dinfo->bdrv, sector_len, connex_rom / sector_len, |
01e0451a | 74 | 2, 0, 0, 0, 0, be)) { |
3e3f6754 | 75 | fprintf(stderr, "qemu: Error registering flash memory.\n"); |
05ee37eb AZ |
76 | exit(1); |
77 | } | |
78 | ||
5697ff6b | 79 | /* Interrupt line of NIC is connected to GPIO line 36 */ |
38641a52 | 80 | smc91c111_init(&nd_table[0], 0x04000300, |
0bb53337 | 81 | qdev_get_gpio_in(cpu->gpio, 36)); |
05ee37eb AZ |
82 | } |
83 | ||
5f072e1f | 84 | static void verdex_init(QEMUMachineInitArgs *args) |
05ee37eb | 85 | { |
5f072e1f | 86 | const char *cpu_model = args->cpu_model; |
bc24a225 | 87 | PXA2xxState *cpu; |
751c6a17 | 88 | DriveInfo *dinfo; |
01e0451a | 89 | int be; |
a6dc4c2d | 90 | MemoryRegion *address_space_mem = get_system_memory(); |
3e3f6754 AZ |
91 | |
92 | uint32_t verdex_rom = 0x02000000; | |
93 | uint32_t verdex_ram = 0x10000000; | |
94 | ||
a6dc4c2d | 95 | cpu = pxa270_init(address_space_mem, verdex_ram, cpu_model ?: "pxa270-c0"); |
3e3f6754 | 96 | |
751c6a17 GH |
97 | dinfo = drive_get(IF_PFLASH, 0, 0); |
98 | if (!dinfo) { | |
3e3f6754 AZ |
99 | fprintf(stderr, "A flash image must be given with the " |
100 | "'pflash' parameter\n"); | |
101 | exit(1); | |
102 | } | |
103 | ||
3d08ff69 | 104 | #ifdef TARGET_WORDS_BIGENDIAN |
01e0451a | 105 | be = 1; |
3d08ff69 | 106 | #else |
01e0451a | 107 | be = 0; |
3d08ff69 | 108 | #endif |
cfe5f011 | 109 | if (!pflash_cfi01_register(0x00000000, NULL, "verdex.rom", verdex_rom, |
3d08ff69 | 110 | dinfo->bdrv, sector_len, verdex_rom / sector_len, |
01e0451a | 111 | 2, 0, 0, 0, 0, be)) { |
3e3f6754 AZ |
112 | fprintf(stderr, "qemu: Error registering flash memory.\n"); |
113 | exit(1); | |
114 | } | |
115 | ||
3e3f6754 AZ |
116 | /* Interrupt line of NIC is connected to GPIO line 99 */ |
117 | smc91c111_init(&nd_table[0], 0x04000300, | |
0bb53337 | 118 | qdev_get_gpio_in(cpu->gpio, 99)); |
05ee37eb AZ |
119 | } |
120 | ||
f80f9ec9 | 121 | static QEMUMachine connex_machine = { |
4b32e168 AL |
122 | .name = "connex", |
123 | .desc = "Gumstix Connex (PXA255)", | |
124 | .init = connex_init, | |
e4ada29e | 125 | DEFAULT_MACHINE_OPTIONS, |
05ee37eb | 126 | }; |
3e3f6754 | 127 | |
f80f9ec9 | 128 | static QEMUMachine verdex_machine = { |
4b32e168 AL |
129 | .name = "verdex", |
130 | .desc = "Gumstix Verdex (PXA270)", | |
131 | .init = verdex_init, | |
e4ada29e | 132 | DEFAULT_MACHINE_OPTIONS, |
3e3f6754 | 133 | }; |
f80f9ec9 AL |
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); |