Statistics
| Branch: | Revision:

root / hw / palm.c @ 78895427

History | View | Annotate | Download (9 kB)

1 c3d2689d balrog
/*
2 c3d2689d balrog
 * PalmOne's (TM) PDAs.
3 c3d2689d balrog
 *
4 c3d2689d balrog
 * Copyright (C) 2006-2007 Andrzej Zaborowski  <balrog@zabor.org>
5 c3d2689d balrog
 *
6 c3d2689d balrog
 * This program is free software; you can redistribute it and/or
7 c3d2689d balrog
 * modify it under the terms of the GNU General Public License as
8 827df9f3 balrog
 * published by the Free Software Foundation; either version 2 or
9 827df9f3 balrog
 * (at your option) version 3 of the License.
10 c3d2689d balrog
 *
11 c3d2689d balrog
 * This program is distributed in the hope that it will be useful,
12 c3d2689d balrog
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 c3d2689d balrog
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 c3d2689d balrog
 * GNU General Public License for more details.
15 c3d2689d balrog
 *
16 fad6cb1a aurel32
 * You should have received a copy of the GNU General Public License along
17 8167ee88 Blue Swirl
 * with this program; if not, see <http://www.gnu.org/licenses/>.
18 c3d2689d balrog
 */
19 87ecb68b pbrook
#include "hw.h"
20 87ecb68b pbrook
#include "audio/audio.h"
21 87ecb68b pbrook
#include "sysemu.h"
22 87ecb68b pbrook
#include "console.h"
23 87ecb68b pbrook
#include "omap.h"
24 87ecb68b pbrook
#include "boards.h"
25 87ecb68b pbrook
#include "arm-misc.h"
26 827df9f3 balrog
#include "devices.h"
27 ca20cf32 Blue Swirl
#include "loader.h"
28 c3d2689d balrog
29 c227f099 Anthony Liguori
static uint32_t static_readb(void *opaque, target_phys_addr_t offset)
30 c3d2689d balrog
{
31 c3d2689d balrog
    uint32_t *val = (uint32_t *) opaque;
32 c3d2689d balrog
    return *val >> ((offset & 3) << 3);
33 c3d2689d balrog
}
34 c3d2689d balrog
35 c227f099 Anthony Liguori
static uint32_t static_readh(void *opaque, target_phys_addr_t offset)
36 827df9f3 balrog
{
37 c3d2689d balrog
    uint32_t *val = (uint32_t *) opaque;
38 c3d2689d balrog
    return *val >> ((offset & 1) << 3);
39 c3d2689d balrog
}
40 c3d2689d balrog
41 c227f099 Anthony Liguori
static uint32_t static_readw(void *opaque, target_phys_addr_t offset)
42 827df9f3 balrog
{
43 c3d2689d balrog
    uint32_t *val = (uint32_t *) opaque;
44 c3d2689d balrog
    return *val >> ((offset & 0) << 3);
45 c3d2689d balrog
}
46 c3d2689d balrog
47 c227f099 Anthony Liguori
static void static_write(void *opaque, target_phys_addr_t offset,
48 d951f6ff balrog
                uint32_t value)
49 d951f6ff balrog
{
50 c3d2689d balrog
#ifdef SPY
51 c3d2689d balrog
    printf("%s: value %08lx written at " PA_FMT "\n",
52 c3d2689d balrog
                    __FUNCTION__, value, offset);
53 c3d2689d balrog
#endif
54 c3d2689d balrog
}
55 c3d2689d balrog
56 d60efc6b Blue Swirl
static CPUReadMemoryFunc * const static_readfn[] = {
57 c3d2689d balrog
    static_readb,
58 c3d2689d balrog
    static_readh,
59 c3d2689d balrog
    static_readw,
60 c3d2689d balrog
};
61 c3d2689d balrog
62 d60efc6b Blue Swirl
static CPUWriteMemoryFunc * const static_writefn[] = {
63 c3d2689d balrog
    static_write,
64 c3d2689d balrog
    static_write,
65 c3d2689d balrog
    static_write,
66 c3d2689d balrog
};
67 c3d2689d balrog
68 c3d2689d balrog
/* Palm Tunsgten|E support */
69 8e129e07 balrog
70 8e129e07 balrog
/* Shared GPIOs */
71 8e129e07 balrog
#define PALMTE_USBDETECT_GPIO        0
72 8e129e07 balrog
#define PALMTE_USB_OR_DC_GPIO        1
73 8e129e07 balrog
#define PALMTE_TSC_GPIO                4
74 8e129e07 balrog
#define PALMTE_PINTDAV_GPIO        6
75 8e129e07 balrog
#define PALMTE_MMC_WP_GPIO        8
76 8e129e07 balrog
#define PALMTE_MMC_POWER_GPIO        9
77 8e129e07 balrog
#define PALMTE_HDQ_GPIO                11
78 8e129e07 balrog
#define PALMTE_HEADPHONES_GPIO        14
79 8e129e07 balrog
#define PALMTE_SPEAKER_GPIO        15
80 8e129e07 balrog
/* MPU private GPIOs */
81 8e129e07 balrog
#define PALMTE_DC_GPIO                2
82 8e129e07 balrog
#define PALMTE_MMC_SWITCH_GPIO        4
83 8e129e07 balrog
#define PALMTE_MMC1_GPIO        6
84 8e129e07 balrog
#define PALMTE_MMC2_GPIO        7
85 8e129e07 balrog
#define PALMTE_MMC3_GPIO        11
86 8e129e07 balrog
87 bc24a225 Paul Brook
static MouseTransformInfo palmte_pointercal = {
88 c38b6e25 balrog
    .x = 320,
89 c38b6e25 balrog
    .y = 320,
90 c38b6e25 balrog
    .a = { -5909, 8, 22465308, 104, 7644, -1219972, 65536 },
91 c38b6e25 balrog
};
92 c38b6e25 balrog
93 c3d2689d balrog
static void palmte_microwire_setup(struct omap_mpu_state_s *cpu)
94 c3d2689d balrog
{
95 bc24a225 Paul Brook
    uWireSlave *tsc;
96 d8f699cb balrog
97 22d83b14 Paul Brook
    tsc = tsc2102_init(omap_gpio_in_get(cpu->gpio)[PALMTE_PINTDAV_GPIO]);
98 d8f699cb balrog
99 d8f699cb balrog
    omap_uwire_attach(cpu->microwire, tsc, 0);
100 d8f699cb balrog
    omap_mcbsp_i2s_attach(cpu->mcbsp1, tsc210x_codec(tsc));
101 c38b6e25 balrog
102 c38b6e25 balrog
    tsc210x_set_transform(tsc, &palmte_pointercal);
103 c3d2689d balrog
}
104 c3d2689d balrog
105 38a34e1d balrog
static struct {
106 38a34e1d balrog
    int row;
107 38a34e1d balrog
    int column;
108 38a34e1d balrog
} palmte_keymap[0x80] = {
109 38a34e1d balrog
    [0 ... 0x7f] = { -1, -1 },
110 38a34e1d balrog
    [0x3b] = { 0, 0 },        /* F1        -> Calendar */
111 38a34e1d balrog
    [0x3c] = { 1, 0 },        /* F2        -> Contacts */
112 38a34e1d balrog
    [0x3d] = { 2, 0 },        /* F3        -> Tasks List */
113 38a34e1d balrog
    [0x3e] = { 3, 0 },        /* F4        -> Note Pad */
114 38a34e1d balrog
    [0x01] = { 4, 0 },        /* Esc        -> Power */
115 38a34e1d balrog
    [0x4b] = { 0, 1 },        /*            Left */
116 38a34e1d balrog
    [0x50] = { 1, 1 },        /*            Down */
117 38a34e1d balrog
    [0x48] = { 2, 1 },        /*           Up */
118 38a34e1d balrog
    [0x4d] = { 3, 1 },        /*           Right */
119 38a34e1d balrog
    [0x4c] = { 4, 1 },        /*            Centre */
120 38a34e1d balrog
    [0x39] = { 4, 1 },        /* Spc        -> Centre */
121 38a34e1d balrog
};
122 38a34e1d balrog
123 38a34e1d balrog
static void palmte_button_event(void *opaque, int keycode)
124 38a34e1d balrog
{
125 38a34e1d balrog
    struct omap_mpu_state_s *cpu = (struct omap_mpu_state_s *) opaque;
126 38a34e1d balrog
127 38a34e1d balrog
    if (palmte_keymap[keycode & 0x7f].row != -1)
128 38a34e1d balrog
        omap_mpuio_key(cpu->mpuio,
129 38a34e1d balrog
                        palmte_keymap[keycode & 0x7f].row,
130 38a34e1d balrog
                        palmte_keymap[keycode & 0x7f].column,
131 38a34e1d balrog
                        !(keycode & 0x80));
132 38a34e1d balrog
}
133 38a34e1d balrog
134 7fc42b4b balrog
static void palmte_onoff_gpios(void *opaque, int line, int level)
135 7fc42b4b balrog
{
136 7fc42b4b balrog
    switch (line) {
137 7fc42b4b balrog
    case 0:
138 7fc42b4b balrog
        printf("%s: current to MMC/SD card %sabled.\n",
139 7fc42b4b balrog
                        __FUNCTION__, level ? "dis" : "en");
140 7fc42b4b balrog
        break;
141 7fc42b4b balrog
    case 1:
142 7fc42b4b balrog
        printf("%s: internal speaker amplifier %s.\n",
143 7fc42b4b balrog
                        __FUNCTION__, level ? "down" : "on");
144 7fc42b4b balrog
        break;
145 7fc42b4b balrog
146 7fc42b4b balrog
    /* These LCD & Audio output signals have not been identified yet.  */
147 7fc42b4b balrog
    case 2:
148 7fc42b4b balrog
    case 3:
149 7fc42b4b balrog
    case 4:
150 7fc42b4b balrog
        printf("%s: LCD GPIO%i %s.\n",
151 7fc42b4b balrog
                        __FUNCTION__, line - 1, level ? "high" : "low");
152 7fc42b4b balrog
        break;
153 7fc42b4b balrog
    case 5:
154 7fc42b4b balrog
    case 6:
155 7fc42b4b balrog
        printf("%s: Audio GPIO%i %s.\n",
156 7fc42b4b balrog
                        __FUNCTION__, line - 4, level ? "high" : "low");
157 7fc42b4b balrog
        break;
158 7fc42b4b balrog
    }
159 7fc42b4b balrog
}
160 7fc42b4b balrog
161 7fc42b4b balrog
static void palmte_gpio_setup(struct omap_mpu_state_s *cpu)
162 7fc42b4b balrog
{
163 7fc42b4b balrog
    qemu_irq *misc_gpio;
164 7fc42b4b balrog
165 7fc42b4b balrog
    omap_mmc_handlers(cpu->mmc,
166 7fc42b4b balrog
                    omap_gpio_in_get(cpu->gpio)[PALMTE_MMC_WP_GPIO],
167 7fc42b4b balrog
                    qemu_irq_invert(omap_mpuio_in_get(cpu->mpuio)
168 7fc42b4b balrog
                            [PALMTE_MMC_SWITCH_GPIO]));
169 7fc42b4b balrog
170 7fc42b4b balrog
    misc_gpio = qemu_allocate_irqs(palmte_onoff_gpios, cpu, 7);
171 7fc42b4b balrog
    omap_gpio_out_set(cpu->gpio, PALMTE_MMC_POWER_GPIO,        misc_gpio[0]);
172 7fc42b4b balrog
    omap_gpio_out_set(cpu->gpio, PALMTE_SPEAKER_GPIO,        misc_gpio[1]);
173 7fc42b4b balrog
    omap_gpio_out_set(cpu->gpio, 11,                        misc_gpio[2]);
174 7fc42b4b balrog
    omap_gpio_out_set(cpu->gpio, 12,                        misc_gpio[3]);
175 7fc42b4b balrog
    omap_gpio_out_set(cpu->gpio, 13,                        misc_gpio[4]);
176 7fc42b4b balrog
    omap_mpuio_out_set(cpu->mpuio, 1,                        misc_gpio[5]);
177 7fc42b4b balrog
    omap_mpuio_out_set(cpu->mpuio, 3,                        misc_gpio[6]);
178 7fc42b4b balrog
179 7fc42b4b balrog
    /* Reset some inputs to initial state.  */
180 7fc42b4b balrog
    qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[PALMTE_USBDETECT_GPIO]);
181 7fc42b4b balrog
    qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[PALMTE_USB_OR_DC_GPIO]);
182 7fc42b4b balrog
    qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[4]);
183 7fc42b4b balrog
    qemu_irq_lower(omap_gpio_in_get(cpu->gpio)[PALMTE_HEADPHONES_GPIO]);
184 7fc42b4b balrog
    qemu_irq_lower(omap_mpuio_in_get(cpu->mpuio)[PALMTE_DC_GPIO]);
185 7fc42b4b balrog
    qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[6]);
186 7fc42b4b balrog
    qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[7]);
187 7fc42b4b balrog
    qemu_irq_raise(omap_mpuio_in_get(cpu->mpuio)[11]);
188 7fc42b4b balrog
}
189 7fc42b4b balrog
190 f93eb9ff balrog
static struct arm_boot_info palmte_binfo = {
191 f93eb9ff balrog
    .loader_start = OMAP_EMIFF_BASE,
192 f93eb9ff balrog
    .ram_size = 0x02000000,
193 f93eb9ff balrog
    .board_id = 0x331,
194 f93eb9ff balrog
};
195 f93eb9ff balrog
196 c227f099 Anthony Liguori
static void palmte_init(ram_addr_t ram_size,
197 3023f332 aliguori
                const char *boot_device,
198 c3d2689d balrog
                const char *kernel_filename, const char *kernel_cmdline,
199 c3d2689d balrog
                const char *initrd_filename, const char *cpu_model)
200 c3d2689d balrog
{
201 c3d2689d balrog
    struct omap_mpu_state_s *cpu;
202 c3d2689d balrog
    int flash_size = 0x00800000;
203 f93eb9ff balrog
    int sdram_size = palmte_binfo.ram_size;
204 c3d2689d balrog
    int io;
205 c3d2689d balrog
    static uint32_t cs0val = 0xffffffff;
206 c3d2689d balrog
    static uint32_t cs1val = 0x0000e1a0;
207 c3d2689d balrog
    static uint32_t cs2val = 0x0000e1a0;
208 c3d2689d balrog
    static uint32_t cs3val = 0xe1a0e1a0;
209 c3d2689d balrog
    int rom_size, rom_loaded = 0;
210 3023f332 aliguori
    DisplayState *ds = get_displaystate();
211 c3d2689d balrog
212 3023f332 aliguori
    cpu = omap310_mpu_init(sdram_size, cpu_model);
213 c3d2689d balrog
214 c3d2689d balrog
    /* External Flash (EMIFS) */
215 c3d2689d balrog
    cpu_register_physical_memory(OMAP_CS0_BASE, flash_size,
216 1724f049 Alex Williamson
                                 qemu_ram_alloc(NULL, "palmte.flash",
217 1724f049 Alex Williamson
                                                flash_size) | IO_MEM_ROM);
218 c3d2689d balrog
219 1eed09cb Avi Kivity
    io = cpu_register_io_memory(static_readfn, static_writefn, &cs0val);
220 c3d2689d balrog
    cpu_register_physical_memory(OMAP_CS0_BASE + flash_size,
221 c3d2689d balrog
                    OMAP_CS0_SIZE - flash_size, io);
222 1eed09cb Avi Kivity
    io = cpu_register_io_memory(static_readfn, static_writefn, &cs1val);
223 c3d2689d balrog
    cpu_register_physical_memory(OMAP_CS1_BASE, OMAP_CS1_SIZE, io);
224 1eed09cb Avi Kivity
    io = cpu_register_io_memory(static_readfn, static_writefn, &cs2val);
225 c3d2689d balrog
    cpu_register_physical_memory(OMAP_CS2_BASE, OMAP_CS2_SIZE, io);
226 1eed09cb Avi Kivity
    io = cpu_register_io_memory(static_readfn, static_writefn, &cs3val);
227 c3d2689d balrog
    cpu_register_physical_memory(OMAP_CS3_BASE, OMAP_CS3_SIZE, io);
228 c3d2689d balrog
229 c3d2689d balrog
    palmte_microwire_setup(cpu);
230 c3d2689d balrog
231 38a34e1d balrog
    qemu_add_kbd_event_handler(palmte_button_event, cpu);
232 38a34e1d balrog
233 7fc42b4b balrog
    palmte_gpio_setup(cpu);
234 8e129e07 balrog
235 c3d2689d balrog
    /* Setup initial (reset) machine state */
236 c3d2689d balrog
    if (nb_option_roms) {
237 c3d2689d balrog
        rom_size = get_image_size(option_rom[0]);
238 dcac9679 pbrook
        if (rom_size > flash_size) {
239 c3d2689d balrog
            fprintf(stderr, "%s: ROM image too big (%x > %x)\n",
240 c3d2689d balrog
                            __FUNCTION__, rom_size, flash_size);
241 dcac9679 pbrook
            rom_size = 0;
242 dcac9679 pbrook
        }
243 dcac9679 pbrook
        if (rom_size > 0) {
244 dcac9679 pbrook
            rom_size = load_image_targphys(option_rom[0], OMAP_CS0_BASE,
245 dcac9679 pbrook
                                           flash_size);
246 c3d2689d balrog
            rom_loaded = 1;
247 dcac9679 pbrook
        }
248 dcac9679 pbrook
        if (rom_size < 0) {
249 c3d2689d balrog
            fprintf(stderr, "%s: error loading '%s'\n",
250 c3d2689d balrog
                            __FUNCTION__, option_rom[0]);
251 dcac9679 pbrook
        }
252 c3d2689d balrog
    }
253 c3d2689d balrog
254 c3d2689d balrog
    if (!rom_loaded && !kernel_filename) {
255 c3d2689d balrog
        fprintf(stderr, "Kernel or ROM image must be specified\n");
256 c3d2689d balrog
        exit(1);
257 c3d2689d balrog
    }
258 c3d2689d balrog
259 c3d2689d balrog
    /* Load the kernel.  */
260 c3d2689d balrog
    if (kernel_filename) {
261 f93eb9ff balrog
        palmte_binfo.kernel_filename = kernel_filename;
262 f93eb9ff balrog
        palmte_binfo.kernel_cmdline = kernel_cmdline;
263 f93eb9ff balrog
        palmte_binfo.initrd_filename = initrd_filename;
264 f93eb9ff balrog
        arm_load_kernel(cpu->env, &palmte_binfo);
265 c3d2689d balrog
    }
266 c3d2689d balrog
267 c60e08d9 pbrook
    /* FIXME: We shouldn't really be doing this here.  The LCD controller
268 c60e08d9 pbrook
       will set the size once configured, so this just sets an initial
269 c60e08d9 pbrook
       size until the guest activates the display.  */
270 7b5d76da aliguori
    ds->surface = qemu_resize_displaysurface(ds, 320, 320);
271 7d957bd8 aliguori
    dpy_resize(ds);
272 c3d2689d balrog
}
273 c3d2689d balrog
274 f80f9ec9 Anthony Liguori
static QEMUMachine palmte_machine = {
275 4b32e168 aliguori
    .name = "cheetah",
276 4b32e168 aliguori
    .desc = "Palm Tungsten|E aka. Cheetah PDA (OMAP310)",
277 4b32e168 aliguori
    .init = palmte_init,
278 c3d2689d balrog
};
279 f80f9ec9 Anthony Liguori
280 f80f9ec9 Anthony Liguori
static void palmte_machine_init(void)
281 f80f9ec9 Anthony Liguori
{
282 f80f9ec9 Anthony Liguori
    qemu_register_machine(&palmte_machine);
283 f80f9ec9 Anthony Liguori
}
284 f80f9ec9 Anthony Liguori
285 f80f9ec9 Anthony Liguori
machine_init(palmte_machine_init);