]>
Commit | Line | Data |
---|---|---|
c3d2689d AZ |
1 | /* |
2 | * PalmOne's (TM) PDAs. | |
3 | * | |
4 | * Copyright (C) 2006-2007 Andrzej Zaborowski <[email protected]> | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU General Public License as | |
827df9f3 AZ |
8 | * published by the Free Software Foundation; either version 2 or |
9 | * (at your option) version 3 of the License. | |
c3d2689d AZ |
10 | * |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
fad6cb1a | 16 | * You should have received a copy of the GNU General Public License along |
8167ee88 | 17 | * with this program; if not, see <http://www.gnu.org/licenses/>. |
c3d2689d | 18 | */ |
64552b6b | 19 | |
12b16722 | 20 | #include "qemu/osdep.h" |
da34e65c | 21 | #include "qapi/error.h" |
87ecb68b | 22 | #include "audio/audio.h" |
9c17d615 | 23 | #include "sysemu/sysemu.h" |
1ca8334e | 24 | #include "sysemu/qtest.h" |
28ecbaee | 25 | #include "ui/console.h" |
0d09e41a | 26 | #include "hw/arm/omap.h" |
83c9f4ca | 27 | #include "hw/boards.h" |
12ec8bd5 | 28 | #include "hw/arm/boot.h" |
a331dd02 | 29 | #include "hw/input/tsc2xxx.h" |
64552b6b | 30 | #include "hw/irq.h" |
83c9f4ca | 31 | #include "hw/loader.h" |
ba1ba5cc | 32 | #include "cpu.h" |
7f1679dc | 33 | #include "qemu/cutils.h" |
db1015e9 | 34 | #include "qom/object.h" |
c3d2689d | 35 | |
7b675f1f | 36 | static uint64_t static_read(void *opaque, hwaddr offset, unsigned size) |
c3d2689d | 37 | { |
7b675f1f PM |
38 | uint32_t *val = (uint32_t *)opaque; |
39 | uint32_t sizemask = 7 >> size; | |
c3d2689d | 40 | |
7b675f1f | 41 | return *val >> ((offset & sizemask) << 3); |
c3d2689d AZ |
42 | } |
43 | ||
7b675f1f PM |
44 | static void static_write(void *opaque, hwaddr offset, uint64_t value, |
45 | unsigned size) | |
d951f6ff | 46 | { |
c3d2689d AZ |
47 | #ifdef SPY |
48 | printf("%s: value %08lx written at " PA_FMT "\n", | |
a89f364a | 49 | __func__, value, offset); |
c3d2689d AZ |
50 | #endif |
51 | } | |
52 | ||
ced52fa6 | 53 | static const MemoryRegionOps static_ops = { |
7b675f1f PM |
54 | .read = static_read, |
55 | .write = static_write, | |
56 | .valid.min_access_size = 1, | |
57 | .valid.max_access_size = 4, | |
ced52fa6 | 58 | .endianness = DEVICE_NATIVE_ENDIAN, |
c3d2689d AZ |
59 | }; |
60 | ||
61 | /* Palm Tunsgten|E support */ | |
8e129e07 AZ |
62 | |
63 | /* Shared GPIOs */ | |
c1abd462 PM |
64 | #define PALMTE_USBDETECT_GPIO 0 |
65 | #define PALMTE_USB_OR_DC_GPIO 1 | |
66 | #define PALMTE_TSC_GPIO 4 | |
67 | #define PALMTE_PINTDAV_GPIO 6 | |
68 | #define PALMTE_MMC_WP_GPIO 8 | |
69 | #define PALMTE_MMC_POWER_GPIO 9 | |
70 | #define PALMTE_HDQ_GPIO 11 | |
71 | #define PALMTE_HEADPHONES_GPIO 14 | |
72 | #define PALMTE_SPEAKER_GPIO 15 | |
8e129e07 | 73 | /* MPU private GPIOs */ |
c1abd462 PM |
74 | #define PALMTE_DC_GPIO 2 |
75 | #define PALMTE_MMC_SWITCH_GPIO 4 | |
76 | #define PALMTE_MMC1_GPIO 6 | |
77 | #define PALMTE_MMC2_GPIO 7 | |
78 | #define PALMTE_MMC3_GPIO 11 | |
8e129e07 | 79 | |
bc24a225 | 80 | static MouseTransformInfo palmte_pointercal = { |
c38b6e25 AZ |
81 | .x = 320, |
82 | .y = 320, | |
83 | .a = { -5909, 8, 22465308, 104, 7644, -1219972, 65536 }, | |
84 | }; | |
85 | ||
c3d2689d AZ |
86 | static void palmte_microwire_setup(struct omap_mpu_state_s *cpu) |
87 | { | |
bc24a225 | 88 | uWireSlave *tsc; |
d8f699cb | 89 | |
77831c20 | 90 | tsc = tsc2102_init(qdev_get_gpio_in(cpu->gpio, PALMTE_PINTDAV_GPIO)); |
d8f699cb AZ |
91 | |
92 | omap_uwire_attach(cpu->microwire, tsc, 0); | |
93 | omap_mcbsp_i2s_attach(cpu->mcbsp1, tsc210x_codec(tsc)); | |
c38b6e25 AZ |
94 | |
95 | tsc210x_set_transform(tsc, &palmte_pointercal); | |
c3d2689d AZ |
96 | } |
97 | ||
38a34e1d AZ |
98 | static struct { |
99 | int row; | |
100 | int column; | |
101 | } palmte_keymap[0x80] = { | |
102 | [0 ... 0x7f] = { -1, -1 }, | |
c1abd462 PM |
103 | [0x3b] = { 0, 0 }, /* F1 -> Calendar */ |
104 | [0x3c] = { 1, 0 }, /* F2 -> Contacts */ | |
105 | [0x3d] = { 2, 0 }, /* F3 -> Tasks List */ | |
106 | [0x3e] = { 3, 0 }, /* F4 -> Note Pad */ | |
107 | [0x01] = { 4, 0 }, /* Esc -> Power */ | |
108 | [0x4b] = { 0, 1 }, /* Left */ | |
109 | [0x50] = { 1, 1 }, /* Down */ | |
110 | [0x48] = { 2, 1 }, /* Up */ | |
111 | [0x4d] = { 3, 1 }, /* Right */ | |
112 | [0x4c] = { 4, 1 }, /* Centre */ | |
113 | [0x39] = { 4, 1 }, /* Spc -> Centre */ | |
38a34e1d AZ |
114 | }; |
115 | ||
116 | static void palmte_button_event(void *opaque, int keycode) | |
117 | { | |
118 | struct omap_mpu_state_s *cpu = (struct omap_mpu_state_s *) opaque; | |
119 | ||
120 | if (palmte_keymap[keycode & 0x7f].row != -1) | |
121 | omap_mpuio_key(cpu->mpuio, | |
122 | palmte_keymap[keycode & 0x7f].row, | |
123 | palmte_keymap[keycode & 0x7f].column, | |
124 | !(keycode & 0x80)); | |
125 | } | |
126 | ||
ad938fc1 PM |
127 | /* |
128 | * Encapsulation of some GPIO line behaviour for the Palm board | |
129 | * | |
130 | * QEMU interface: | |
131 | * + unnamed GPIO inputs 0..6: for the various miscellaneous input lines | |
132 | */ | |
133 | ||
134 | #define TYPE_PALM_MISC_GPIO "palm-misc-gpio" | |
8063396b | 135 | OBJECT_DECLARE_SIMPLE_TYPE(PalmMiscGPIOState, PALM_MISC_GPIO) |
ad938fc1 | 136 | |
db1015e9 | 137 | struct PalmMiscGPIOState { |
ad938fc1 | 138 | SysBusDevice parent_obj; |
db1015e9 | 139 | }; |
ad938fc1 | 140 | |
7fc42b4b AZ |
141 | static void palmte_onoff_gpios(void *opaque, int line, int level) |
142 | { | |
143 | switch (line) { | |
144 | case 0: | |
145 | printf("%s: current to MMC/SD card %sabled.\n", | |
a89f364a | 146 | __func__, level ? "dis" : "en"); |
7fc42b4b AZ |
147 | break; |
148 | case 1: | |
149 | printf("%s: internal speaker amplifier %s.\n", | |
a89f364a | 150 | __func__, level ? "down" : "on"); |
7fc42b4b AZ |
151 | break; |
152 | ||
153 | /* These LCD & Audio output signals have not been identified yet. */ | |
154 | case 2: | |
155 | case 3: | |
156 | case 4: | |
157 | printf("%s: LCD GPIO%i %s.\n", | |
a89f364a | 158 | __func__, line - 1, level ? "high" : "low"); |
7fc42b4b AZ |
159 | break; |
160 | case 5: | |
161 | case 6: | |
162 | printf("%s: Audio GPIO%i %s.\n", | |
a89f364a | 163 | __func__, line - 4, level ? "high" : "low"); |
7fc42b4b AZ |
164 | break; |
165 | } | |
166 | } | |
167 | ||
ad938fc1 PM |
168 | static void palm_misc_gpio_init(Object *obj) |
169 | { | |
170 | DeviceState *dev = DEVICE(obj); | |
171 | ||
172 | qdev_init_gpio_in(dev, palmte_onoff_gpios, 7); | |
173 | } | |
174 | ||
175 | static const TypeInfo palm_misc_gpio_info = { | |
176 | .name = TYPE_PALM_MISC_GPIO, | |
177 | .parent = TYPE_SYS_BUS_DEVICE, | |
178 | .instance_size = sizeof(PalmMiscGPIOState), | |
179 | .instance_init = palm_misc_gpio_init, | |
180 | /* | |
181 | * No class init required: device has no internal state so does not | |
182 | * need to set up reset or vmstate, and has no realize method. | |
183 | */ | |
184 | }; | |
185 | ||
7fc42b4b AZ |
186 | static void palmte_gpio_setup(struct omap_mpu_state_s *cpu) |
187 | { | |
ad938fc1 PM |
188 | DeviceState *misc_gpio; |
189 | ||
190 | misc_gpio = sysbus_create_simple(TYPE_PALM_MISC_GPIO, -1, NULL); | |
7fc42b4b AZ |
191 | |
192 | omap_mmc_handlers(cpu->mmc, | |
77831c20 | 193 | qdev_get_gpio_in(cpu->gpio, PALMTE_MMC_WP_GPIO), |
7fc42b4b AZ |
194 | qemu_irq_invert(omap_mpuio_in_get(cpu->mpuio) |
195 | [PALMTE_MMC_SWITCH_GPIO])); | |
196 | ||
ad938fc1 PM |
197 | qdev_connect_gpio_out(cpu->gpio, PALMTE_MMC_POWER_GPIO, |
198 | qdev_get_gpio_in(misc_gpio, 0)); | |
199 | qdev_connect_gpio_out(cpu->gpio, PALMTE_SPEAKER_GPIO, | |
200 | qdev_get_gpio_in(misc_gpio, 1)); | |
201 | qdev_connect_gpio_out(cpu->gpio, 11, qdev_get_gpio_in(misc_gpio, 2)); | |
202 | qdev_connect_gpio_out(cpu->gpio, 12, qdev_get_gpio_in(misc_gpio, 3)); | |
203 | qdev_connect_gpio_out(cpu->gpio, 13, qdev_get_gpio_in(misc_gpio, 4)); | |
204 | omap_mpuio_out_set(cpu->mpuio, 1, qdev_get_gpio_in(misc_gpio, 5)); | |
205 | omap_mpuio_out_set(cpu->mpuio, 3, qdev_get_gpio_in(misc_gpio, 6)); | |
7fc42b4b AZ |
206 | |
207 | /* Reset some inputs to initial state. */ | |
77831c20 JR |
208 | qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, PALMTE_USBDETECT_GPIO)); |
209 | qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, PALMTE_USB_OR_DC_GPIO)); | |
210 | qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, 4)); | |
211 | qemu_irq_lower(qdev_get_gpio_in(cpu->gpio, PALMTE_HEADPHONES_GPIO)); | |
7fc42b4b AZ |
212 | qemu_irq_lower(omap_mpuio_in_get(cpu->mpuio)[PALMTE_DC_GPIO]); |
213 | qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[6]); | |
214 | qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[7]); | |
215 | qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[11]); | |
216 | } | |
217 | ||
f93eb9ff AZ |
218 | static struct arm_boot_info palmte_binfo = { |
219 | .loader_start = OMAP_EMIFF_BASE, | |
220 | .ram_size = 0x02000000, | |
221 | .board_id = 0x331, | |
222 | }; | |
223 | ||
3ef96221 | 224 | static void palmte_init(MachineState *machine) |
c3d2689d | 225 | { |
4b3fedf3 | 226 | MemoryRegion *address_space_mem = get_system_memory(); |
f1eea068 | 227 | struct omap_mpu_state_s *mpu; |
c3d2689d | 228 | int flash_size = 0x00800000; |
c3d2689d AZ |
229 | static uint32_t cs0val = 0xffffffff; |
230 | static uint32_t cs1val = 0x0000e1a0; | |
231 | static uint32_t cs2val = 0x0000e1a0; | |
232 | static uint32_t cs3val = 0xe1a0e1a0; | |
c3d2689d | 233 | int rom_size, rom_loaded = 0; |
7f1679dc | 234 | MachineClass *mc = MACHINE_GET_CLASS(machine); |
ced52fa6 AK |
235 | MemoryRegion *flash = g_new(MemoryRegion, 1); |
236 | MemoryRegion *cs = g_new(MemoryRegion, 4); | |
c3d2689d | 237 | |
7f1679dc IM |
238 | if (machine->ram_size != mc->default_ram_size) { |
239 | char *sz = size_to_str(mc->default_ram_size); | |
240 | error_report("Invalid RAM size, should be %s", sz); | |
241 | g_free(sz); | |
242 | exit(EXIT_FAILURE); | |
243 | } | |
244 | ||
245 | memory_region_add_subregion(address_space_mem, OMAP_EMIFF_BASE, | |
246 | machine->ram); | |
4387b253 | 247 | |
7f1679dc | 248 | mpu = omap310_mpu_init(machine->ram, machine->cpu_type); |
c3d2689d AZ |
249 | |
250 | /* External Flash (EMIFS) */ | |
16260006 | 251 | memory_region_init_rom(flash, NULL, "palmte.flash", flash_size, |
f8ed85ac | 252 | &error_fatal); |
ced52fa6 AK |
253 | memory_region_add_subregion(address_space_mem, OMAP_CS0_BASE, flash); |
254 | ||
2c9b15ca | 255 | memory_region_init_io(&cs[0], NULL, &static_ops, &cs0val, "palmte-cs0", |
ced52fa6 AK |
256 | OMAP_CS0_SIZE - flash_size); |
257 | memory_region_add_subregion(address_space_mem, OMAP_CS0_BASE + flash_size, | |
258 | &cs[0]); | |
2c9b15ca | 259 | memory_region_init_io(&cs[1], NULL, &static_ops, &cs1val, "palmte-cs1", |
ced52fa6 AK |
260 | OMAP_CS1_SIZE); |
261 | memory_region_add_subregion(address_space_mem, OMAP_CS1_BASE, &cs[1]); | |
2c9b15ca | 262 | memory_region_init_io(&cs[2], NULL, &static_ops, &cs2val, "palmte-cs2", |
ced52fa6 AK |
263 | OMAP_CS2_SIZE); |
264 | memory_region_add_subregion(address_space_mem, OMAP_CS2_BASE, &cs[2]); | |
2c9b15ca | 265 | memory_region_init_io(&cs[3], NULL, &static_ops, &cs3val, "palmte-cs3", |
ced52fa6 AK |
266 | OMAP_CS3_SIZE); |
267 | memory_region_add_subregion(address_space_mem, OMAP_CS3_BASE, &cs[3]); | |
c3d2689d | 268 | |
f1eea068 | 269 | palmte_microwire_setup(mpu); |
c3d2689d | 270 | |
f1eea068 | 271 | qemu_add_kbd_event_handler(palmte_button_event, mpu); |
38a34e1d | 272 | |
f1eea068 | 273 | palmte_gpio_setup(mpu); |
8e129e07 | 274 | |
c3d2689d AZ |
275 | /* Setup initial (reset) machine state */ |
276 | if (nb_option_roms) { | |
2e55e842 | 277 | rom_size = get_image_size(option_rom[0].name); |
dcac9679 | 278 | if (rom_size > flash_size) { |
c3d2689d | 279 | fprintf(stderr, "%s: ROM image too big (%x > %x)\n", |
a89f364a | 280 | __func__, rom_size, flash_size); |
dcac9679 PB |
281 | rom_size = 0; |
282 | } | |
283 | if (rom_size > 0) { | |
2e55e842 | 284 | rom_size = load_image_targphys(option_rom[0].name, OMAP_CS0_BASE, |
dcac9679 | 285 | flash_size); |
c3d2689d | 286 | rom_loaded = 1; |
dcac9679 PB |
287 | } |
288 | if (rom_size < 0) { | |
c3d2689d | 289 | fprintf(stderr, "%s: error loading '%s'\n", |
a89f364a | 290 | __func__, option_rom[0].name); |
dcac9679 | 291 | } |
c3d2689d AZ |
292 | } |
293 | ||
2744ece8 | 294 | if (!rom_loaded && !machine->kernel_filename && !qtest_enabled()) { |
c3d2689d AZ |
295 | fprintf(stderr, "Kernel or ROM image must be specified\n"); |
296 | exit(1); | |
297 | } | |
298 | ||
299 | /* Load the kernel. */ | |
2744ece8 | 300 | arm_load_kernel(mpu->cpu, machine, &palmte_binfo); |
c3d2689d AZ |
301 | } |
302 | ||
e264d29d | 303 | static void palmte_machine_init(MachineClass *mc) |
f80f9ec9 | 304 | { |
e264d29d EH |
305 | mc->desc = "Palm Tungsten|E aka. Cheetah PDA (OMAP310)"; |
306 | mc->init = palmte_init; | |
4672cbd7 | 307 | mc->ignore_memory_transaction_failures = true; |
ba1ba5cc | 308 | mc->default_cpu_type = ARM_CPU_TYPE_NAME("ti925t"); |
7f1679dc IM |
309 | mc->default_ram_size = 0x02000000; |
310 | mc->default_ram_id = "omap1.dram"; | |
f80f9ec9 AL |
311 | } |
312 | ||
e264d29d | 313 | DEFINE_MACHINE("cheetah", palmte_machine_init) |
ad938fc1 PM |
314 | |
315 | static void palm_register_types(void) | |
316 | { | |
317 | type_register_static(&palm_misc_gpio_info); | |
318 | } | |
319 | ||
320 | type_init(palm_register_types) |