]> git.proxmox.com Git - qemu.git/blame - hw/gumstix.c
user: Restore debug usage message for '-d ?' in user mode emulation
[qemu.git] / hw / gumstix.c
CommitLineData
05ee37eb
AZ
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 */
3e3f6754
AZ
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 */
05ee37eb 33
87ecb68b
PB
34#include "hw.h"
35#include "pxa.h"
36#include "net.h"
37#include "flash.h"
87ecb68b
PB
38#include "devices.h"
39#include "boards.h"
2446333c 40#include "blockdev.h"
05ee37eb 41
1fc678cc
AZ
42static const int sector_len = 128 * 1024;
43
c227f099 44static void connex_init(ram_addr_t ram_size,
3023f332 45 const char *boot_device,
3e3f6754
AZ
46 const char *kernel_filename, const char *kernel_cmdline,
47 const char *initrd_filename, const char *cpu_model)
05ee37eb 48{
bc24a225 49 PXA2xxState *cpu;
751c6a17 50 DriveInfo *dinfo;
3d08ff69 51 int be;
05ee37eb 52
3e3f6754
AZ
53 uint32_t connex_rom = 0x01000000;
54 uint32_t connex_ram = 0x04000000;
05ee37eb 55
3023f332 56 cpu = pxa255_init(connex_ram);
05ee37eb 57
751c6a17
GH
58 dinfo = drive_get(IF_PFLASH, 0, 0);
59 if (!dinfo) {
05ee37eb
AZ
60 fprintf(stderr, "A flash image must be given with the "
61 "'pflash' parameter\n");
62 exit(1);
63 }
64
3d08ff69
BS
65#ifdef TARGET_WORDS_BIGENDIAN
66 be = 1;
67#else
68 be = 0;
69#endif
1724f049
AW
70 if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "connext.rom",
71 connex_rom),
3d08ff69
BS
72 dinfo->bdrv, sector_len, connex_rom / sector_len,
73 2, 0, 0, 0, 0, be)) {
3e3f6754 74 fprintf(stderr, "qemu: Error registering flash memory.\n");
05ee37eb
AZ
75 exit(1);
76 }
77
5697ff6b 78 /* Interrupt line of NIC is connected to GPIO line 36 */
38641a52 79 smc91c111_init(&nd_table[0], 0x04000300,
0bb53337 80 qdev_get_gpio_in(cpu->gpio, 36));
05ee37eb
AZ
81}
82
c227f099 83static void verdex_init(ram_addr_t ram_size,
3023f332 84 const char *boot_device,
05ee37eb
AZ
85 const char *kernel_filename, const char *kernel_cmdline,
86 const char *initrd_filename, const char *cpu_model)
87{
bc24a225 88 PXA2xxState *cpu;
751c6a17 89 DriveInfo *dinfo;
3d08ff69 90 int be;
3e3f6754
AZ
91
92 uint32_t verdex_rom = 0x02000000;
93 uint32_t verdex_ram = 0x10000000;
94
3023f332 95 cpu = pxa270_init(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
BS
104#ifdef TARGET_WORDS_BIGENDIAN
105 be = 1;
106#else
107 be = 0;
108#endif
1724f049
AW
109 if (!pflash_cfi01_register(0x00000000, qemu_ram_alloc(NULL, "verdex.rom",
110 verdex_rom),
3d08ff69
BS
111 dinfo->bdrv, sector_len, verdex_rom / sector_len,
112 2, 0, 0, 0, 0, be)) {
3e3f6754
AZ
113 fprintf(stderr, "qemu: Error registering flash memory.\n");
114 exit(1);
115 }
116
3e3f6754
AZ
117 /* Interrupt line of NIC is connected to GPIO line 99 */
118 smc91c111_init(&nd_table[0], 0x04000300,
0bb53337 119 qdev_get_gpio_in(cpu->gpio, 99));
05ee37eb
AZ
120}
121
f80f9ec9 122static QEMUMachine connex_machine = {
4b32e168
AL
123 .name = "connex",
124 .desc = "Gumstix Connex (PXA255)",
125 .init = connex_init,
05ee37eb 126};
3e3f6754 127
f80f9ec9 128static QEMUMachine verdex_machine = {
4b32e168
AL
129 .name = "verdex",
130 .desc = "Gumstix Verdex (PXA270)",
131 .init = verdex_init,
3e3f6754 132};
f80f9ec9
AL
133
134static void gumstix_machine_init(void)
135{
136 qemu_register_machine(&connex_machine);
137 qemu_register_machine(&verdex_machine);
138}
139
140machine_init(gumstix_machine_init);