]>
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 | |
12b16722 | 37 | #include "qemu/osdep.h" |
c0dbca36 | 38 | #include "qemu/error-report.h" |
83c9f4ca | 39 | #include "hw/hw.h" |
0d09e41a | 40 | #include "hw/arm/pxa.h" |
1422e32d | 41 | #include "net/net.h" |
0d09e41a | 42 | #include "hw/block/flash.h" |
bd2be150 | 43 | #include "hw/devices.h" |
83c9f4ca | 44 | #include "hw/boards.h" |
022c62cb | 45 | #include "exec/address-spaces.h" |
bdf921d6 | 46 | #include "sysemu/qtest.h" |
ba1ba5cc | 47 | #include "cpu.h" |
05ee37eb | 48 | |
1fc678cc AZ |
49 | static const int sector_len = 128 * 1024; |
50 | ||
3ef96221 | 51 | static void connex_init(MachineState *machine) |
05ee37eb | 52 | { |
bc24a225 | 53 | PXA2xxState *cpu; |
751c6a17 | 54 | DriveInfo *dinfo; |
01e0451a | 55 | int be; |
a6dc4c2d | 56 | MemoryRegion *address_space_mem = get_system_memory(); |
05ee37eb | 57 | |
3e3f6754 AZ |
58 | uint32_t connex_rom = 0x01000000; |
59 | uint32_t connex_ram = 0x04000000; | |
05ee37eb | 60 | |
a6dc4c2d | 61 | cpu = pxa255_init(address_space_mem, connex_ram); |
05ee37eb | 62 | |
751c6a17 | 63 | dinfo = drive_get(IF_PFLASH, 0, 0); |
bdf921d6 | 64 | if (!dinfo && !qtest_enabled()) { |
c0dbca36 AF |
65 | error_report("A flash image must be given with the " |
66 | "'pflash' parameter"); | |
05ee37eb AZ |
67 | exit(1); |
68 | } | |
69 | ||
3d08ff69 | 70 | #ifdef TARGET_WORDS_BIGENDIAN |
01e0451a | 71 | be = 1; |
3d08ff69 | 72 | #else |
01e0451a | 73 | be = 0; |
3d08ff69 | 74 | #endif |
cfe5f011 | 75 | if (!pflash_cfi01_register(0x00000000, NULL, "connext.rom", connex_rom, |
4be74634 | 76 | dinfo ? blk_by_legacy_dinfo(dinfo) : NULL, |
bdf921d6 | 77 | sector_len, connex_rom / sector_len, |
01e0451a | 78 | 2, 0, 0, 0, 0, be)) { |
c0dbca36 | 79 | error_report("Error registering flash memory"); |
05ee37eb AZ |
80 | exit(1); |
81 | } | |
82 | ||
5697ff6b | 83 | /* Interrupt line of NIC is connected to GPIO line 36 */ |
38641a52 | 84 | smc91c111_init(&nd_table[0], 0x04000300, |
0bb53337 | 85 | qdev_get_gpio_in(cpu->gpio, 36)); |
05ee37eb AZ |
86 | } |
87 | ||
3ef96221 | 88 | static void verdex_init(MachineState *machine) |
05ee37eb | 89 | { |
bc24a225 | 90 | PXA2xxState *cpu; |
751c6a17 | 91 | DriveInfo *dinfo; |
01e0451a | 92 | int be; |
a6dc4c2d | 93 | MemoryRegion *address_space_mem = get_system_memory(); |
3e3f6754 AZ |
94 | |
95 | uint32_t verdex_rom = 0x02000000; | |
96 | uint32_t verdex_ram = 0x10000000; | |
97 | ||
ba1ba5cc | 98 | cpu = pxa270_init(address_space_mem, verdex_ram, machine->cpu_type); |
3e3f6754 | 99 | |
751c6a17 | 100 | dinfo = drive_get(IF_PFLASH, 0, 0); |
bdf921d6 | 101 | if (!dinfo && !qtest_enabled()) { |
c0dbca36 AF |
102 | error_report("A flash image must be given with the " |
103 | "'pflash' parameter"); | |
3e3f6754 AZ |
104 | exit(1); |
105 | } | |
106 | ||
3d08ff69 | 107 | #ifdef TARGET_WORDS_BIGENDIAN |
01e0451a | 108 | be = 1; |
3d08ff69 | 109 | #else |
01e0451a | 110 | be = 0; |
3d08ff69 | 111 | #endif |
cfe5f011 | 112 | if (!pflash_cfi01_register(0x00000000, NULL, "verdex.rom", verdex_rom, |
4be74634 | 113 | dinfo ? blk_by_legacy_dinfo(dinfo) : NULL, |
bdf921d6 | 114 | sector_len, verdex_rom / sector_len, |
01e0451a | 115 | 2, 0, 0, 0, 0, be)) { |
c0dbca36 | 116 | error_report("Error registering flash memory"); |
3e3f6754 AZ |
117 | exit(1); |
118 | } | |
119 | ||
3e3f6754 AZ |
120 | /* Interrupt line of NIC is connected to GPIO line 99 */ |
121 | smc91c111_init(&nd_table[0], 0x04000300, | |
0bb53337 | 122 | qdev_get_gpio_in(cpu->gpio, 99)); |
05ee37eb AZ |
123 | } |
124 | ||
8a661aea | 125 | static void connex_class_init(ObjectClass *oc, void *data) |
f80f9ec9 | 126 | { |
8a661aea AF |
127 | MachineClass *mc = MACHINE_CLASS(oc); |
128 | ||
e264d29d EH |
129 | mc->desc = "Gumstix Connex (PXA255)"; |
130 | mc->init = connex_init; | |
4672cbd7 | 131 | mc->ignore_memory_transaction_failures = true; |
f80f9ec9 AL |
132 | } |
133 | ||
8a661aea AF |
134 | static const TypeInfo connex_type = { |
135 | .name = MACHINE_TYPE_NAME("connex"), | |
136 | .parent = TYPE_MACHINE, | |
137 | .class_init = connex_class_init, | |
138 | }; | |
e264d29d | 139 | |
8a661aea | 140 | static void verdex_class_init(ObjectClass *oc, void *data) |
e264d29d | 141 | { |
8a661aea AF |
142 | MachineClass *mc = MACHINE_CLASS(oc); |
143 | ||
e264d29d EH |
144 | mc->desc = "Gumstix Verdex (PXA270)"; |
145 | mc->init = verdex_init; | |
4672cbd7 | 146 | mc->ignore_memory_transaction_failures = true; |
ba1ba5cc | 147 | mc->default_cpu_type = ARM_CPU_TYPE_NAME("pxa270-c0"); |
e264d29d EH |
148 | } |
149 | ||
8a661aea AF |
150 | static const TypeInfo verdex_type = { |
151 | .name = MACHINE_TYPE_NAME("verdex"), | |
152 | .parent = TYPE_MACHINE, | |
153 | .class_init = verdex_class_init, | |
154 | }; | |
155 | ||
156 | static void gumstix_machine_init(void) | |
157 | { | |
158 | type_register_static(&connex_type); | |
159 | type_register_static(&verdex_type); | |
160 | } | |
161 | ||
0e6aac87 | 162 | type_init(gumstix_machine_init) |