4 * Copyright (c) 2007 by Thorsten Zitterell <info@bitmux.org>
6 * Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org>
8 * This code is licensed under the GNU GPL v2.
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.
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
24 * # qemu-system-arm -M connex -pflash flash -monitor null -nographic
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
34 * # qemu-system-arm -M verdex -pflash flash -monitor null -nographic -m 289
37 #include "qemu/osdep.h"
38 #include "qemu/error-report.h"
40 #include "hw/arm/pxa.h"
42 #include "hw/block/flash.h"
43 #include "hw/devices.h"
44 #include "hw/boards.h"
45 #include "exec/address-spaces.h"
46 #include "sysemu/qtest.h"
49 static const int sector_len
= 128 * 1024;
51 static void connex_init(MachineState
*machine
)
56 MemoryRegion
*address_space_mem
= get_system_memory();
58 uint32_t connex_rom
= 0x01000000;
59 uint32_t connex_ram
= 0x04000000;
61 cpu
= pxa255_init(address_space_mem
, connex_ram
);
63 dinfo
= drive_get(IF_PFLASH
, 0, 0);
64 if (!dinfo
&& !qtest_enabled()) {
65 error_report("A flash image must be given with the "
66 "'pflash' parameter");
70 #ifdef TARGET_WORDS_BIGENDIAN
75 if (!pflash_cfi01_register(0x00000000, NULL
, "connext.rom", connex_rom
,
76 dinfo
? blk_by_legacy_dinfo(dinfo
) : NULL
,
77 sector_len
, connex_rom
/ sector_len
,
79 error_report("Error registering flash memory");
83 /* Interrupt line of NIC is connected to GPIO line 36 */
84 smc91c111_init(&nd_table
[0], 0x04000300,
85 qdev_get_gpio_in(cpu
->gpio
, 36));
88 static void verdex_init(MachineState
*machine
)
93 MemoryRegion
*address_space_mem
= get_system_memory();
95 uint32_t verdex_rom
= 0x02000000;
96 uint32_t verdex_ram
= 0x10000000;
98 cpu
= pxa270_init(address_space_mem
, verdex_ram
, machine
->cpu_type
);
100 dinfo
= drive_get(IF_PFLASH
, 0, 0);
101 if (!dinfo
&& !qtest_enabled()) {
102 error_report("A flash image must be given with the "
103 "'pflash' parameter");
107 #ifdef TARGET_WORDS_BIGENDIAN
112 if (!pflash_cfi01_register(0x00000000, NULL
, "verdex.rom", verdex_rom
,
113 dinfo
? blk_by_legacy_dinfo(dinfo
) : NULL
,
114 sector_len
, verdex_rom
/ sector_len
,
115 2, 0, 0, 0, 0, be
)) {
116 error_report("Error registering flash memory");
120 /* Interrupt line of NIC is connected to GPIO line 99 */
121 smc91c111_init(&nd_table
[0], 0x04000300,
122 qdev_get_gpio_in(cpu
->gpio
, 99));
125 static void connex_class_init(ObjectClass
*oc
, void *data
)
127 MachineClass
*mc
= MACHINE_CLASS(oc
);
129 mc
->desc
= "Gumstix Connex (PXA255)";
130 mc
->init
= connex_init
;
131 mc
->ignore_memory_transaction_failures
= true;
134 static const TypeInfo connex_type
= {
135 .name
= MACHINE_TYPE_NAME("connex"),
136 .parent
= TYPE_MACHINE
,
137 .class_init
= connex_class_init
,
140 static void verdex_class_init(ObjectClass
*oc
, void *data
)
142 MachineClass
*mc
= MACHINE_CLASS(oc
);
144 mc
->desc
= "Gumstix Verdex (PXA270)";
145 mc
->init
= verdex_init
;
146 mc
->ignore_memory_transaction_failures
= true;
147 mc
->default_cpu_type
= ARM_CPU_TYPE_NAME("pxa270-c0");
150 static const TypeInfo verdex_type
= {
151 .name
= MACHINE_TYPE_NAME("verdex"),
152 .parent
= TYPE_MACHINE
,
153 .class_init
= verdex_class_init
,
156 static void gumstix_machine_init(void)
158 type_register_static(&connex_type
);
159 type_register_static(&verdex_type
);
162 type_init(gumstix_machine_init
)