]> git.proxmox.com Git - qemu.git/blame - hw/gumstix.c
prepare for future GPLv2+ relicensing
[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.
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
87ecb68b
PB
37#include "hw.h"
38#include "pxa.h"
39#include "net.h"
40#include "flash.h"
87ecb68b
PB
41#include "devices.h"
42#include "boards.h"
2446333c 43#include "blockdev.h"
a6dc4c2d 44#include "exec-memory.h"
05ee37eb 45
1fc678cc
AZ
46static const int sector_len = 128 * 1024;
47
c227f099 48static void connex_init(ram_addr_t ram_size,
3023f332 49 const char *boot_device,
3e3f6754
AZ
50 const char *kernel_filename, const char *kernel_cmdline,
51 const char *initrd_filename, const char *cpu_model)
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
GH
63 dinfo = drive_get(IF_PFLASH, 0, 0);
64 if (!dinfo) {
05ee37eb
AZ
65 fprintf(stderr, "A flash image must be given with the "
66 "'pflash' parameter\n");
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,
3d08ff69 76 dinfo->bdrv, sector_len, connex_rom / sector_len,
01e0451a 77 2, 0, 0, 0, 0, be)) {
3e3f6754 78 fprintf(stderr, "qemu: Error registering flash memory.\n");
05ee37eb
AZ
79 exit(1);
80 }
81
5697ff6b 82 /* Interrupt line of NIC is connected to GPIO line 36 */
38641a52 83 smc91c111_init(&nd_table[0], 0x04000300,
0bb53337 84 qdev_get_gpio_in(cpu->gpio, 36));
05ee37eb
AZ
85}
86
c227f099 87static void verdex_init(ram_addr_t ram_size,
3023f332 88 const char *boot_device,
05ee37eb
AZ
89 const char *kernel_filename, const char *kernel_cmdline,
90 const char *initrd_filename, const char *cpu_model)
91{
bc24a225 92 PXA2xxState *cpu;
751c6a17 93 DriveInfo *dinfo;
01e0451a 94 int be;
a6dc4c2d 95 MemoryRegion *address_space_mem = get_system_memory();
3e3f6754
AZ
96
97 uint32_t verdex_rom = 0x02000000;
98 uint32_t verdex_ram = 0x10000000;
99
a6dc4c2d 100 cpu = pxa270_init(address_space_mem, verdex_ram, cpu_model ?: "pxa270-c0");
3e3f6754 101
751c6a17
GH
102 dinfo = drive_get(IF_PFLASH, 0, 0);
103 if (!dinfo) {
3e3f6754
AZ
104 fprintf(stderr, "A flash image must be given with the "
105 "'pflash' parameter\n");
106 exit(1);
107 }
108
3d08ff69 109#ifdef TARGET_WORDS_BIGENDIAN
01e0451a 110 be = 1;
3d08ff69 111#else
01e0451a 112 be = 0;
3d08ff69 113#endif
cfe5f011 114 if (!pflash_cfi01_register(0x00000000, NULL, "verdex.rom", verdex_rom,
3d08ff69 115 dinfo->bdrv, sector_len, verdex_rom / sector_len,
01e0451a 116 2, 0, 0, 0, 0, be)) {
3e3f6754
AZ
117 fprintf(stderr, "qemu: Error registering flash memory.\n");
118 exit(1);
119 }
120
3e3f6754
AZ
121 /* Interrupt line of NIC is connected to GPIO line 99 */
122 smc91c111_init(&nd_table[0], 0x04000300,
0bb53337 123 qdev_get_gpio_in(cpu->gpio, 99));
05ee37eb
AZ
124}
125
f80f9ec9 126static QEMUMachine connex_machine = {
4b32e168
AL
127 .name = "connex",
128 .desc = "Gumstix Connex (PXA255)",
129 .init = connex_init,
05ee37eb 130};
3e3f6754 131
f80f9ec9 132static QEMUMachine verdex_machine = {
4b32e168
AL
133 .name = "verdex",
134 .desc = "Gumstix Verdex (PXA270)",
135 .init = verdex_init,
3e3f6754 136};
f80f9ec9
AL
137
138static void gumstix_machine_init(void)
139{
140 qemu_register_machine(&connex_machine);
141 qemu_register_machine(&verdex_machine);
142}
143
144machine_init(gumstix_machine_init);