blob: 6d19167512f5f022c1630433c25cb716f97deda5 [file] [log] [blame]
balrogc3d26892007-07-29 17:57:26 +00001/*
2 * PalmOne's (TM) PDAs.
3 *
4 * Copyright (C) 2006-2007 Andrzej Zaborowski <balrog@zabor.org>
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
balrog827df9f2008-04-14 21:05:22 +00008 * published by the Free Software Foundation; either version 2 or
9 * (at your option) version 3 of the License.
balrogc3d26892007-07-29 17:57:26 +000010 *
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 *
aurel32fad6cb12009-01-04 22:05:52 +000016 * You should have received a copy of the GNU General Public License along
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * with this program; if not, see <http://www.gnu.org/licenses/>.
balrogc3d26892007-07-29 17:57:26 +000018 */
pbrook87ecb682007-11-17 17:14:51 +000019#include "hw.h"
20#include "audio/audio.h"
21#include "sysemu.h"
22#include "console.h"
23#include "omap.h"
24#include "boards.h"
25#include "arm-misc.h"
balrog827df9f2008-04-14 21:05:22 +000026#include "devices.h"
Blue Swirlca20cf32009-09-20 14:58:02 +000027#include "loader.h"
balrogc3d26892007-07-29 17:57:26 +000028
Anthony Liguoric227f092009-10-01 16:12:16 -050029static uint32_t static_readb(void *opaque, target_phys_addr_t offset)
balrogc3d26892007-07-29 17:57:26 +000030{
31 uint32_t *val = (uint32_t *) opaque;
32 return *val >> ((offset & 3) << 3);
33}
34
Anthony Liguoric227f092009-10-01 16:12:16 -050035static uint32_t static_readh(void *opaque, target_phys_addr_t offset)
balrog827df9f2008-04-14 21:05:22 +000036{
balrogc3d26892007-07-29 17:57:26 +000037 uint32_t *val = (uint32_t *) opaque;
38 return *val >> ((offset & 1) << 3);
39}
40
Anthony Liguoric227f092009-10-01 16:12:16 -050041static uint32_t static_readw(void *opaque, target_phys_addr_t offset)
balrog827df9f2008-04-14 21:05:22 +000042{
balrogc3d26892007-07-29 17:57:26 +000043 uint32_t *val = (uint32_t *) opaque;
44 return *val >> ((offset & 0) << 3);
45}
46
Anthony Liguoric227f092009-10-01 16:12:16 -050047static void static_write(void *opaque, target_phys_addr_t offset,
balrogd951f6f2007-10-29 01:50:05 +000048 uint32_t value)
49{
balrogc3d26892007-07-29 17:57:26 +000050#ifdef SPY
51 printf("%s: value %08lx written at " PA_FMT "\n",
52 __FUNCTION__, value, offset);
53#endif
54}
55
Blue Swirld60efc62009-08-25 18:29:31 +000056static CPUReadMemoryFunc * const static_readfn[] = {
balrogc3d26892007-07-29 17:57:26 +000057 static_readb,
58 static_readh,
59 static_readw,
60};
61
Blue Swirld60efc62009-08-25 18:29:31 +000062static CPUWriteMemoryFunc * const static_writefn[] = {
balrogc3d26892007-07-29 17:57:26 +000063 static_write,
64 static_write,
65 static_write,
66};
67
68/* Palm Tunsgten|E support */
balrog8e129e02007-10-28 19:24:52 +000069
70/* Shared GPIOs */
71#define PALMTE_USBDETECT_GPIO 0
72#define PALMTE_USB_OR_DC_GPIO 1
73#define PALMTE_TSC_GPIO 4
74#define PALMTE_PINTDAV_GPIO 6
75#define PALMTE_MMC_WP_GPIO 8
76#define PALMTE_MMC_POWER_GPIO 9
77#define PALMTE_HDQ_GPIO 11
78#define PALMTE_HEADPHONES_GPIO 14
79#define PALMTE_SPEAKER_GPIO 15
80/* MPU private GPIOs */
81#define PALMTE_DC_GPIO 2
82#define PALMTE_MMC_SWITCH_GPIO 4
83#define PALMTE_MMC1_GPIO 6
84#define PALMTE_MMC2_GPIO 7
85#define PALMTE_MMC3_GPIO 11
86
Paul Brookbc24a222009-05-10 01:44:56 +010087static MouseTransformInfo palmte_pointercal = {
balrogc38b6e22008-04-26 13:33:29 +000088 .x = 320,
89 .y = 320,
90 .a = { -5909, 8, 22465308, 104, 7644, -1219972, 65536 },
91};
92
balrogc3d26892007-07-29 17:57:26 +000093static void palmte_microwire_setup(struct omap_mpu_state_s *cpu)
94{
Paul Brookbc24a222009-05-10 01:44:56 +010095 uWireSlave *tsc;
balrogd8f699c2007-11-04 22:53:50 +000096
Paul Brook22d83b12009-05-12 12:33:04 +010097 tsc = tsc2102_init(omap_gpio_in_get(cpu->gpio)[PALMTE_PINTDAV_GPIO]);
balrogd8f699c2007-11-04 22:53:50 +000098
99 omap_uwire_attach(cpu->microwire, tsc, 0);
100 omap_mcbsp_i2s_attach(cpu->mcbsp1, tsc210x_codec(tsc));
balrogc38b6e22008-04-26 13:33:29 +0000101
102 tsc210x_set_transform(tsc, &palmte_pointercal);
balrogc3d26892007-07-29 17:57:26 +0000103}
104
balrog38a34e12007-10-28 18:29:04 +0000105static struct {
106 int row;
107 int column;
108} palmte_keymap[0x80] = {
109 [0 ... 0x7f] = { -1, -1 },
110 [0x3b] = { 0, 0 }, /* F1 -> Calendar */
111 [0x3c] = { 1, 0 }, /* F2 -> Contacts */
112 [0x3d] = { 2, 0 }, /* F3 -> Tasks List */
113 [0x3e] = { 3, 0 }, /* F4 -> Note Pad */
114 [0x01] = { 4, 0 }, /* Esc -> Power */
115 [0x4b] = { 0, 1 }, /* Left */
116 [0x50] = { 1, 1 }, /* Down */
117 [0x48] = { 2, 1 }, /* Up */
118 [0x4d] = { 3, 1 }, /* Right */
119 [0x4c] = { 4, 1 }, /* Centre */
120 [0x39] = { 4, 1 }, /* Spc -> Centre */
121};
122
123static void palmte_button_event(void *opaque, int keycode)
124{
125 struct omap_mpu_state_s *cpu = (struct omap_mpu_state_s *) opaque;
126
127 if (palmte_keymap[keycode & 0x7f].row != -1)
128 omap_mpuio_key(cpu->mpuio,
129 palmte_keymap[keycode & 0x7f].row,
130 palmte_keymap[keycode & 0x7f].column,
131 !(keycode & 0x80));
132}
133
balrog7fc42b42007-11-03 00:41:31 +0000134static void palmte_onoff_gpios(void *opaque, int line, int level)
135{
136 switch (line) {
137 case 0:
138 printf("%s: current to MMC/SD card %sabled.\n",
139 __FUNCTION__, level ? "dis" : "en");
140 break;
141 case 1:
142 printf("%s: internal speaker amplifier %s.\n",
143 __FUNCTION__, level ? "down" : "on");
144 break;
145
146 /* These LCD & Audio output signals have not been identified yet. */
147 case 2:
148 case 3:
149 case 4:
150 printf("%s: LCD GPIO%i %s.\n",
151 __FUNCTION__, line - 1, level ? "high" : "low");
152 break;
153 case 5:
154 case 6:
155 printf("%s: Audio GPIO%i %s.\n",
156 __FUNCTION__, line - 4, level ? "high" : "low");
157 break;
158 }
159}
160
161static void palmte_gpio_setup(struct omap_mpu_state_s *cpu)
162{
163 qemu_irq *misc_gpio;
164
165 omap_mmc_handlers(cpu->mmc,
166 omap_gpio_in_get(cpu->gpio)[PALMTE_MMC_WP_GPIO],
167 qemu_irq_invert(omap_mpuio_in_get(cpu->mpuio)
168 [PALMTE_MMC_SWITCH_GPIO]));
169
170 misc_gpio = qemu_allocate_irqs(palmte_onoff_gpios, cpu, 7);
171 omap_gpio_out_set(cpu->gpio, PALMTE_MMC_POWER_GPIO, misc_gpio[0]);
172 omap_gpio_out_set(cpu->gpio, PALMTE_SPEAKER_GPIO, misc_gpio[1]);
173 omap_gpio_out_set(cpu->gpio, 11, misc_gpio[2]);
174 omap_gpio_out_set(cpu->gpio, 12, misc_gpio[3]);
175 omap_gpio_out_set(cpu->gpio, 13, misc_gpio[4]);
176 omap_mpuio_out_set(cpu->mpuio, 1, misc_gpio[5]);
177 omap_mpuio_out_set(cpu->mpuio, 3, misc_gpio[6]);
178
179 /* Reset some inputs to initial state. */
180 qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[PALMTE_USBDETECT_GPIO]);
181 qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[PALMTE_USB_OR_DC_GPIO]);
182 qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[4]);
183 qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[PALMTE_HEADPHONES_GPIO]);
184 qemu_irq_lower(omap_mpuio_in_get(cpu->mpuio)[PALMTE_DC_GPIO]);
185 qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[6]);
186 qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[7]);
187 qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[11]);
188}
189
balrogf93eb9f2008-04-14 20:27:51 +0000190static struct arm_boot_info palmte_binfo = {
191 .loader_start = OMAP_EMIFF_BASE,
192 .ram_size = 0x02000000,
193 .board_id = 0x331,
194};
195
Anthony Liguoric227f092009-10-01 16:12:16 -0500196static void palmte_init(ram_addr_t ram_size,
aliguori3023f332009-01-16 19:04:14 +0000197 const char *boot_device,
balrogc3d26892007-07-29 17:57:26 +0000198 const char *kernel_filename, const char *kernel_cmdline,
199 const char *initrd_filename, const char *cpu_model)
200{
201 struct omap_mpu_state_s *cpu;
202 int flash_size = 0x00800000;
balrogf93eb9f2008-04-14 20:27:51 +0000203 int sdram_size = palmte_binfo.ram_size;
balrogc3d26892007-07-29 17:57:26 +0000204 int io;
205 static uint32_t cs0val = 0xffffffff;
206 static uint32_t cs1val = 0x0000e1a0;
207 static uint32_t cs2val = 0x0000e1a0;
208 static uint32_t cs3val = 0xe1a0e1a0;
Anthony Liguoric227f092009-10-01 16:12:16 -0500209 ram_addr_t phys_flash;
balrogc3d26892007-07-29 17:57:26 +0000210 int rom_size, rom_loaded = 0;
aliguori3023f332009-01-16 19:04:14 +0000211 DisplayState *ds = get_displaystate();
balrogc3d26892007-07-29 17:57:26 +0000212
aliguori3023f332009-01-16 19:04:14 +0000213 cpu = omap310_mpu_init(sdram_size, cpu_model);
balrogc3d26892007-07-29 17:57:26 +0000214
215 /* External Flash (EMIFS) */
216 cpu_register_physical_memory(OMAP_CS0_BASE, flash_size,
217 (phys_flash = qemu_ram_alloc(flash_size)) | IO_MEM_ROM);
218
Avi Kivity1eed09c2009-06-14 11:38:51 +0300219 io = cpu_register_io_memory(static_readfn, static_writefn, &cs0val);
balrogc3d26892007-07-29 17:57:26 +0000220 cpu_register_physical_memory(OMAP_CS0_BASE + flash_size,
221 OMAP_CS0_SIZE - flash_size, io);
Avi Kivity1eed09c2009-06-14 11:38:51 +0300222 io = cpu_register_io_memory(static_readfn, static_writefn, &cs1val);
balrogc3d26892007-07-29 17:57:26 +0000223 cpu_register_physical_memory(OMAP_CS1_BASE, OMAP_CS1_SIZE, io);
Avi Kivity1eed09c2009-06-14 11:38:51 +0300224 io = cpu_register_io_memory(static_readfn, static_writefn, &cs2val);
balrogc3d26892007-07-29 17:57:26 +0000225 cpu_register_physical_memory(OMAP_CS2_BASE, OMAP_CS2_SIZE, io);
Avi Kivity1eed09c2009-06-14 11:38:51 +0300226 io = cpu_register_io_memory(static_readfn, static_writefn, &cs3val);
balrogc3d26892007-07-29 17:57:26 +0000227 cpu_register_physical_memory(OMAP_CS3_BASE, OMAP_CS3_SIZE, io);
228
229 palmte_microwire_setup(cpu);
230
balrog38a34e12007-10-28 18:29:04 +0000231 qemu_add_kbd_event_handler(palmte_button_event, cpu);
232
balrog7fc42b42007-11-03 00:41:31 +0000233 palmte_gpio_setup(cpu);
balrog8e129e02007-10-28 19:24:52 +0000234
balrogc3d26892007-07-29 17:57:26 +0000235 /* Setup initial (reset) machine state */
236 if (nb_option_roms) {
237 rom_size = get_image_size(option_rom[0]);
pbrookdcac9672009-04-09 20:05:49 +0000238 if (rom_size > flash_size) {
balrogc3d26892007-07-29 17:57:26 +0000239 fprintf(stderr, "%s: ROM image too big (%x > %x)\n",
240 __FUNCTION__, rom_size, flash_size);
pbrookdcac9672009-04-09 20:05:49 +0000241 rom_size = 0;
242 }
243 if (rom_size > 0) {
244 rom_size = load_image_targphys(option_rom[0], OMAP_CS0_BASE,
245 flash_size);
balrogc3d26892007-07-29 17:57:26 +0000246 rom_loaded = 1;
247 cpu->env->regs[15] = 0x00000000;
pbrookdcac9672009-04-09 20:05:49 +0000248 }
249 if (rom_size < 0) {
balrogc3d26892007-07-29 17:57:26 +0000250 fprintf(stderr, "%s: error loading '%s'\n",
251 __FUNCTION__, option_rom[0]);
pbrookdcac9672009-04-09 20:05:49 +0000252 }
balrogc3d26892007-07-29 17:57:26 +0000253 }
254
255 if (!rom_loaded && !kernel_filename) {
256 fprintf(stderr, "Kernel or ROM image must be specified\n");
257 exit(1);
258 }
259
260 /* Load the kernel. */
261 if (kernel_filename) {
262 /* Start at bootloader. */
balrogf93eb9f2008-04-14 20:27:51 +0000263 cpu->env->regs[15] = palmte_binfo.loader_start;
balrogc3d26892007-07-29 17:57:26 +0000264
balrogf93eb9f2008-04-14 20:27:51 +0000265 palmte_binfo.kernel_filename = kernel_filename;
266 palmte_binfo.kernel_cmdline = kernel_cmdline;
267 palmte_binfo.initrd_filename = initrd_filename;
268 arm_load_kernel(cpu->env, &palmte_binfo);
balrogc3d26892007-07-29 17:57:26 +0000269 }
270
pbrookc60e08d2008-07-01 16:24:38 +0000271 /* FIXME: We shouldn't really be doing this here. The LCD controller
272 will set the size once configured, so this just sets an initial
273 size until the guest activates the display. */
aliguori7b5d76d2009-03-13 15:02:13 +0000274 ds->surface = qemu_resize_displaysurface(ds, 320, 320);
aliguori7d957bd2009-01-15 22:14:11 +0000275 dpy_resize(ds);
balrogc3d26892007-07-29 17:57:26 +0000276}
277
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500278static QEMUMachine palmte_machine = {
aliguori4b32e162008-10-07 20:34:35 +0000279 .name = "cheetah",
280 .desc = "Palm Tungsten|E aka. Cheetah PDA (OMAP310)",
281 .init = palmte_init,
balrogc3d26892007-07-29 17:57:26 +0000282};
Anthony Liguorif80f9ec2009-05-20 18:38:09 -0500283
284static void palmte_machine_init(void)
285{
286 qemu_register_machine(&palmte_machine);
287}
288
289machine_init(palmte_machine_init);