]> Git Repo - qemu.git/blame - hw/arm/mainstone.c
hw: Fix qemu_allocate_irqs() leaks
[qemu.git] / hw / arm / mainstone.c
CommitLineData
ef056e43
AZ
1/*
2 * PXA270-based Intel Mainstone platforms.
3 *
4 * Copyright (c) 2007 by Armin Kuster <[email protected]> or
5 * <[email protected]>
6 *
7 * Code based on spitz platform by Andrzej Zaborowski <[email protected]>
8 *
9 * This code is licensed under the GNU GPL v2.
6b620ca3
PB
10 *
11 * Contributions after 2012-01-13 are licensed under the terms of the
12 * GNU GPL, version 2 or (at your option) any later version.
ef056e43 13 */
83c9f4ca 14#include "hw/hw.h"
0d09e41a 15#include "hw/arm/pxa.h"
bd2be150 16#include "hw/arm/arm.h"
1422e32d 17#include "net/net.h"
bd2be150 18#include "hw/devices.h"
83c9f4ca 19#include "hw/boards.h"
0d09e41a 20#include "hw/block/flash.h"
9c17d615 21#include "sysemu/blockdev.h"
83c9f4ca 22#include "hw/sysbus.h"
022c62cb 23#include "exec/address-spaces.h"
d2f7c496 24#include "sysemu/qtest.h"
ef056e43 25
459505a2
DES
26/* Device addresses */
27#define MST_FPGA_PHYS 0x08000000
28#define MST_ETH_PHYS 0x10000300
29#define MST_FLASH_0 0x00000000
30#define MST_FLASH_1 0x04000000
31
32/* IRQ definitions */
33#define MMC_IRQ 0
34#define USIM_IRQ 1
35#define USBC_IRQ 2
36#define ETHERNET_IRQ 3
37#define AC97_IRQ 4
38#define PEN_IRQ 5
39#define MSINS_IRQ 6
40#define EXBRD_IRQ 7
41#define S0_CD_IRQ 9
42#define S0_STSCHG_IRQ 10
43#define S0_IRQ 11
44#define S1_CD_IRQ 13
45#define S1_STSCHG_IRQ 14
46#define S1_IRQ 15
47
52975c31 48static const struct keymap map[0xE0] = {
bd464c2e
AZ
49 [0 ... 0xDF] = { -1, -1 },
50 [0x1e] = {0,0}, /* a */
51 [0x30] = {0,1}, /* b */
52 [0x2e] = {0,2}, /* c */
53 [0x20] = {0,3}, /* d */
54 [0x12] = {0,4}, /* e */
55 [0x21] = {0,5}, /* f */
56 [0x22] = {1,0}, /* g */
57 [0x23] = {1,1}, /* h */
58 [0x17] = {1,2}, /* i */
59 [0x24] = {1,3}, /* j */
60 [0x25] = {1,4}, /* k */
61 [0x26] = {1,5}, /* l */
62 [0x32] = {2,0}, /* m */
63 [0x31] = {2,1}, /* n */
64 [0x18] = {2,2}, /* o */
65 [0x19] = {2,3}, /* p */
66 [0x10] = {2,4}, /* q */
67 [0x13] = {2,5}, /* r */
68 [0x1f] = {3,0}, /* s */
69 [0x14] = {3,1}, /* t */
70 [0x16] = {3,2}, /* u */
71 [0x2f] = {3,3}, /* v */
72 [0x11] = {3,4}, /* w */
73 [0x2d] = {3,5}, /* x */
74 [0x15] = {4,2}, /* y */
75 [0x2c] = {4,3}, /* z */
76 [0xc7] = {5,0}, /* Home */
77 [0x2a] = {5,1}, /* shift */
7dbc1158
SW
78 /*
79 * There are two matrix positions which map to space,
80 * but QEMU can only use one of them for the reverse
81 * mapping, so simply use the second one.
82 */
83 /* [0x39] = {5,2}, space */
bd464c2e 84 [0x39] = {5,3}, /* space */
7dbc1158
SW
85 /*
86 * Matrix position {5,4} and other keys are missing here.
87 * TODO: Compare with Linux code and test real hardware.
88 */
89 [0x1c] = {5,5}, /* enter (TODO: might be wrong) */
bd464c2e
AZ
90 [0xc8] = {6,0}, /* up */
91 [0xd0] = {6,1}, /* down */
92 [0xcb] = {6,2}, /* left */
93 [0xcd] = {6,3}, /* right */
94};
95
ef056e43
AZ
96enum mainstone_model_e { mainstone };
97
7fb4fdcf
AZ
98#define MAINSTONE_RAM 0x04000000
99#define MAINSTONE_ROM 0x00800000
100#define MAINSTONE_FLASH 0x02000000
101
f93eb9ff
AZ
102static struct arm_boot_info mainstone_binfo = {
103 .loader_start = PXA2XX_SDRAM_BASE,
104 .ram_size = 0x04000000,
105};
106
02e5c167 107static void mainstone_common_init(MemoryRegion *address_space_mem,
3ef96221 108 MachineState *machine,
6efa6d50 109 enum mainstone_model_e model, int arm_id)
ef056e43 110{
6d1f1778 111 uint32_t sector_len = 256 * 1024;
a8170e5e 112 hwaddr mainstone_flash_base[] = { MST_FLASH_0, MST_FLASH_1 };
1c88de67 113 PXA2xxState *mpu;
cb380f61 114 DeviceState *mst_irq;
751c6a17
GH
115 DriveInfo *dinfo;
116 int i;
01e0451a 117 int be;
02e5c167 118 MemoryRegion *rom = g_new(MemoryRegion, 1);
3ef96221 119 const char *cpu_model = machine->cpu_model;
ef056e43
AZ
120
121 if (!cpu_model)
122 cpu_model = "pxa270-c5";
123
124 /* Setup CPU & memory */
1c88de67 125 mpu = pxa270_init(address_space_mem, mainstone_binfo.ram_size, cpu_model);
2c9b15ca 126 memory_region_init_ram(rom, NULL, "mainstone.rom", MAINSTONE_ROM);
c5705a77 127 vmstate_register_ram_global(rom);
02e5c167
AK
128 memory_region_set_readonly(rom, true);
129 memory_region_add_subregion(address_space_mem, 0, rom);
ef056e43 130
3d08ff69 131#ifdef TARGET_WORDS_BIGENDIAN
01e0451a 132 be = 1;
3d08ff69 133#else
01e0451a 134 be = 0;
3d08ff69 135#endif
e4bcb14c 136 /* There are two 32MiB flash devices on the board */
6d1f1778 137 for (i = 0; i < 2; i ++) {
751c6a17
GH
138 dinfo = drive_get(IF_PFLASH, 0, i);
139 if (!dinfo) {
d2f7c496
AF
140 if (qtest_enabled()) {
141 break;
142 }
6d1f1778
AZ
143 fprintf(stderr, "Two flash images must be given with the "
144 "'pflash' parameter\n");
145 exit(1);
146 }
147
cfe5f011
AK
148 if (!pflash_cfi01_register(mainstone_flash_base[i], NULL,
149 i ? "mainstone.flash1" : "mainstone.flash0",
150 MAINSTONE_FLASH,
01e0451a
AL
151 dinfo->bdrv, sector_len,
152 MAINSTONE_FLASH / sector_len, 4, 0, 0, 0, 0,
153 be)) {
6d1f1778
AZ
154 fprintf(stderr, "qemu: Error registering flash memory.\n");
155 exit(1);
156 }
e4bcb14c 157 }
7233b355 158
cb380f61 159 mst_irq = sysbus_create_simple("mainstone-fpga", MST_FPGA_PHYS,
1c88de67 160 qdev_get_gpio_in(mpu->gpio, 0));
f1de1334 161
bd464c2e 162 /* setup keypad */
1c88de67 163 pxa27x_register_keypad(mpu->kp, map, 0xe0);
bd464c2e 164
f1de1334 165 /* MMC/SD host */
1c88de67 166 pxa2xx_mmci_handlers(mpu->mmc, NULL, qdev_get_gpio_in(mst_irq, MMC_IRQ));
f1de1334 167
1c88de67 168 pxa2xx_pcmcia_set_irq_cb(mpu->pcmcia[0],
b651fc6f
DES
169 qdev_get_gpio_in(mst_irq, S0_IRQ),
170 qdev_get_gpio_in(mst_irq, S0_CD_IRQ));
1c88de67 171 pxa2xx_pcmcia_set_irq_cb(mpu->pcmcia[1],
b651fc6f
DES
172 qdev_get_gpio_in(mst_irq, S1_IRQ),
173 qdev_get_gpio_in(mst_irq, S1_CD_IRQ));
174
cb380f61
DES
175 smc91c111_init(&nd_table[0], MST_ETH_PHYS,
176 qdev_get_gpio_in(mst_irq, ETHERNET_IRQ));
ef056e43 177
3ef96221
MA
178 mainstone_binfo.kernel_filename = machine->kernel_filename;
179 mainstone_binfo.kernel_cmdline = machine->kernel_cmdline;
180 mainstone_binfo.initrd_filename = machine->initrd_filename;
f93eb9ff 181 mainstone_binfo.board_id = arm_id;
3aaa8dfa 182 arm_load_kernel(mpu->cpu, &mainstone_binfo);
ef056e43
AZ
183}
184
3ef96221 185static void mainstone_init(MachineState *machine)
ef056e43 186{
3ef96221 187 mainstone_common_init(get_system_memory(), machine, mainstone, 0x196);
ef056e43
AZ
188}
189
f80f9ec9 190static QEMUMachine mainstone2_machine = {
4b32e168
AL
191 .name = "mainstone",
192 .desc = "Mainstone II (PXA27x)",
193 .init = mainstone_init,
ef056e43 194};
f80f9ec9
AL
195
196static void mainstone_machine_init(void)
197{
198 qemu_register_machine(&mainstone2_machine);
199}
200
201machine_init(mainstone_machine_init);
This page took 0.698905 seconds and 4 git commands to generate.