2 * PXA270-based Clamshell PDA platforms.
4 * Copyright (c) 2006 Openedhand Ltd.
5 * Written by Andrzej Zaborowski <balrog@zabor.org>
7 * This code is licensed under the GNU GPL v2.
17 #include "qemu-timer.h"
22 #include "audio/audio.h"
26 #if TARGET_PHYS_ADDR_BITS == 32
27 #define REG_FMT "0x%02x"
29 #define REG_FMT "0x%02lx"
33 #define FLASH_BASE 0x0c000000
34 #define FLASH_ECCLPLB 0x00 /* Line parity 7 - 0 bit */
35 #define FLASH_ECCLPUB 0x04 /* Line parity 15 - 8 bit */
36 #define FLASH_ECCCP 0x08 /* Column parity 5 - 0 bit */
37 #define FLASH_ECCCNTR 0x0c /* ECC byte counter */
38 #define FLASH_ECCCLRR 0x10 /* Clear ECC */
39 #define FLASH_FLASHIO 0x14 /* Flash I/O */
40 #define FLASH_FLASHCTL 0x18 /* Flash Control */
42 #define FLASHCTL_CE0 (1 << 0)
43 #define FLASHCTL_CLE (1 << 1)
44 #define FLASHCTL_ALE (1 << 2)
45 #define FLASHCTL_WP (1 << 3)
46 #define FLASHCTL_CE1 (1 << 4)
47 #define FLASHCTL_RYBY (1 << 5)
48 #define FLASHCTL_NCE (FLASHCTL_CE0 | FLASHCTL_CE1)
51 target_phys_addr_t target_base
;
52 struct nand_flash_s
*nand
;
54 struct ecc_state_s ecc
;
57 static uint32_t sl_readb(void *opaque
, target_phys_addr_t addr
)
59 struct sl_nand_s
*s
= (struct sl_nand_s
*) opaque
;
61 addr
-= s
->target_base
;
64 #define BSHR(byte, from, to) ((s->ecc.lp[byte] >> (from - to)) & (1 << to))
66 return BSHR(0, 4, 0) | BSHR(0, 5, 2) | BSHR(0, 6, 4) | BSHR(0, 7, 6) |
67 BSHR(1, 4, 1) | BSHR(1, 5, 3) | BSHR(1, 6, 5) | BSHR(1, 7, 7);
69 #define BSHL(byte, from, to) ((s->ecc.lp[byte] << (to - from)) & (1 << to))
71 return BSHL(0, 0, 0) | BSHL(0, 1, 2) | BSHL(0, 2, 4) | BSHL(0, 3, 6) |
72 BSHL(1, 0, 1) | BSHL(1, 1, 3) | BSHL(1, 2, 5) | BSHL(1, 3, 7);
78 return s
->ecc
.count
& 0xff;
81 nand_getpins(s
->nand
, &ryby
);
83 return s
->ctl
| FLASHCTL_RYBY
;
88 return ecc_digest(&s
->ecc
, nand_getio(s
->nand
));
91 zaurus_printf("Bad register offset " REG_FMT
"\n", addr
);
96 static uint32_t sl_readl(void *opaque
, target_phys_addr_t addr
)
98 struct sl_nand_s
*s
= (struct sl_nand_s
*) opaque
;
99 addr
-= s
->target_base
;
101 if (addr
== FLASH_FLASHIO
)
102 return ecc_digest(&s
->ecc
, nand_getio(s
->nand
)) |
103 (ecc_digest(&s
->ecc
, nand_getio(s
->nand
)) << 16);
105 return sl_readb(opaque
, addr
);
108 static void sl_writeb(void *opaque
, target_phys_addr_t addr
,
111 struct sl_nand_s
*s
= (struct sl_nand_s
*) opaque
;
112 addr
-= s
->target_base
;
116 /* Value is ignored. */
121 s
->ctl
= value
& 0xff & ~FLASHCTL_RYBY
;
122 nand_setpins(s
->nand
,
123 s
->ctl
& FLASHCTL_CLE
,
124 s
->ctl
& FLASHCTL_ALE
,
125 s
->ctl
& FLASHCTL_NCE
,
126 s
->ctl
& FLASHCTL_WP
,
131 nand_setio(s
->nand
, ecc_digest(&s
->ecc
, value
& 0xff));
135 zaurus_printf("Bad register offset " REG_FMT
"\n", addr
);
139 static void sl_save(QEMUFile
*f
, void *opaque
)
141 struct sl_nand_s
*s
= (struct sl_nand_s
*) opaque
;
143 qemu_put_8s(f
, &s
->ctl
);
147 static int sl_load(QEMUFile
*f
, void *opaque
, int version_id
)
149 struct sl_nand_s
*s
= (struct sl_nand_s
*) opaque
;
151 qemu_get_8s(f
, &s
->ctl
);
162 static void sl_flash_register(struct pxa2xx_state_s
*cpu
, int size
)
166 CPUReadMemoryFunc
*sl_readfn
[] = {
171 CPUWriteMemoryFunc
*sl_writefn
[] = {
177 s
= (struct sl_nand_s
*) qemu_mallocz(sizeof(struct sl_nand_s
));
178 s
->target_base
= FLASH_BASE
;
180 if (size
== FLASH_128M
)
181 s
->nand
= nand_init(NAND_MFR_SAMSUNG
, 0x73);
182 else if (size
== FLASH_1024M
)
183 s
->nand
= nand_init(NAND_MFR_SAMSUNG
, 0xf1);
185 iomemtype
= cpu_register_io_memory(0, sl_readfn
,
187 cpu_register_physical_memory(s
->target_base
, 0x40, iomemtype
);
189 register_savevm("sl_flash", 0, 0, sl_save
, sl_load
, s
);
194 #define SPITZ_KEY_STROBE_NUM 11
195 #define SPITZ_KEY_SENSE_NUM 7
197 static const int spitz_gpio_key_sense
[SPITZ_KEY_SENSE_NUM
] = {
198 12, 17, 91, 34, 36, 38, 39
201 static const int spitz_gpio_key_strobe
[SPITZ_KEY_STROBE_NUM
] = {
202 88, 23, 24, 25, 26, 27, 52, 103, 107, 108, 114
205 /* Eighth additional row maps the special keys */
206 static int spitz_keymap
[SPITZ_KEY_SENSE_NUM
+ 1][SPITZ_KEY_STROBE_NUM
] = {
207 { 0x1d, 0x02, 0x04, 0x06, 0x07, 0x08, 0x0a, 0x0b, 0x0e, 0x3f, 0x40 },
208 { -1 , 0x03, 0x05, 0x13, 0x15, 0x09, 0x17, 0x18, 0x19, 0x41, 0x42 },
209 { 0x0f, 0x10, 0x12, 0x14, 0x22, 0x16, 0x24, 0x25, -1 , -1 , -1 },
210 { 0x3c, 0x11, 0x1f, 0x21, 0x2f, 0x23, 0x32, 0x26, -1 , 0x36, -1 },
211 { 0x3b, 0x1e, 0x20, 0x2e, 0x30, 0x31, 0x34, -1 , 0x1c, 0x2a, -1 },
212 { 0x44, 0x2c, 0x2d, 0x0c, 0x39, 0x33, -1 , 0x48, -1 , -1 , 0x38 },
213 { 0x37, 0x3d, -1 , 0x45, 0x57, 0x58, 0x4b, 0x50, 0x4d, -1 , -1 },
214 { 0x52, 0x43, 0x01, 0x47, 0x49, -1 , -1 , -1 , -1 , -1 , -1 },
217 #define SPITZ_GPIO_AK_INT 13 /* Remote control */
218 #define SPITZ_GPIO_SYNC 16 /* Sync button */
219 #define SPITZ_GPIO_ON_KEY 95 /* Power button */
220 #define SPITZ_GPIO_SWA 97 /* Lid */
221 #define SPITZ_GPIO_SWB 96 /* Tablet mode */
223 /* The special buttons are mapped to unused keys */
224 static const int spitz_gpiomap
[5] = {
225 SPITZ_GPIO_AK_INT
, SPITZ_GPIO_SYNC
, SPITZ_GPIO_ON_KEY
,
226 SPITZ_GPIO_SWA
, SPITZ_GPIO_SWB
,
228 static int spitz_gpio_invert
[5] = { 0, 0, 0, 0, 0, };
230 struct spitz_keyboard_s
{
231 qemu_irq sense
[SPITZ_KEY_SENSE_NUM
];
235 uint16_t keyrow
[SPITZ_KEY_SENSE_NUM
];
236 uint16_t strobe_state
;
237 uint16_t sense_state
;
239 uint16_t pre_map
[0x100];
243 int fifopos
, fifolen
;
247 static void spitz_keyboard_sense_update(struct spitz_keyboard_s
*s
)
250 uint16_t strobe
, sense
= 0;
251 for (i
= 0; i
< SPITZ_KEY_SENSE_NUM
; i
++) {
252 strobe
= s
->keyrow
[i
] & s
->strobe_state
;
255 if (!(s
->sense_state
& (1 << i
)))
256 qemu_irq_raise(s
->sense
[i
]);
257 } else if (s
->sense_state
& (1 << i
))
258 qemu_irq_lower(s
->sense
[i
]);
261 s
->sense_state
= sense
;
264 static void spitz_keyboard_strobe(void *opaque
, int line
, int level
)
266 struct spitz_keyboard_s
*s
= (struct spitz_keyboard_s
*) opaque
;
269 s
->strobe_state
|= 1 << line
;
271 s
->strobe_state
&= ~(1 << line
);
272 spitz_keyboard_sense_update(s
);
275 static void spitz_keyboard_keydown(struct spitz_keyboard_s
*s
, int keycode
)
277 int spitz_keycode
= s
->keymap
[keycode
& 0x7f];
278 if (spitz_keycode
== -1)
281 /* Handle the additional keys */
282 if ((spitz_keycode
>> 4) == SPITZ_KEY_SENSE_NUM
) {
283 qemu_set_irq(s
->gpiomap
[spitz_keycode
& 0xf], (keycode
< 0x80) ^
284 spitz_gpio_invert
[spitz_keycode
& 0xf]);
289 s
->keyrow
[spitz_keycode
>> 4] &= ~(1 << (spitz_keycode
& 0xf));
291 s
->keyrow
[spitz_keycode
>> 4] |= 1 << (spitz_keycode
& 0xf);
293 spitz_keyboard_sense_update(s
);
296 #define SHIFT (1 << 7)
297 #define CTRL (1 << 8)
300 #define QUEUE_KEY(c) s->fifo[(s->fifopos + s->fifolen ++) & 0xf] = c
302 static void spitz_keyboard_handler(struct spitz_keyboard_s
*s
, int keycode
)
307 case 0x2a: /* Left Shift */
313 case 0x36: /* Right Shift */
319 case 0x1d: /* Control */
333 code
= s
->pre_map
[mapcode
= ((s
->modifiers
& 3) ?
335 (keycode
& ~SHIFT
))];
337 if (code
!= mapcode
) {
339 if ((code
& SHIFT
) && !(s
->modifiers
& 1))
340 QUEUE_KEY(0x2a | (keycode
& 0x80));
341 if ((code
& CTRL
) && !(s
->modifiers
& 4))
342 QUEUE_KEY(0x1d | (keycode
& 0x80));
343 if ((code
& FN
) && !(s
->modifiers
& 8))
344 QUEUE_KEY(0x38 | (keycode
& 0x80));
345 if ((code
& FN
) && (s
->modifiers
& 1))
346 QUEUE_KEY(0x2a | (~keycode
& 0x80));
347 if ((code
& FN
) && (s
->modifiers
& 2))
348 QUEUE_KEY(0x36 | (~keycode
& 0x80));
350 if (keycode
& 0x80) {
351 if ((s
->imodifiers
& 1 ) && !(s
->modifiers
& 1))
352 QUEUE_KEY(0x2a | 0x80);
353 if ((s
->imodifiers
& 4 ) && !(s
->modifiers
& 4))
354 QUEUE_KEY(0x1d | 0x80);
355 if ((s
->imodifiers
& 8 ) && !(s
->modifiers
& 8))
356 QUEUE_KEY(0x38 | 0x80);
357 if ((s
->imodifiers
& 0x10) && (s
->modifiers
& 1))
359 if ((s
->imodifiers
& 0x20) && (s
->modifiers
& 2))
363 if ((code
& SHIFT
) && !((s
->modifiers
| s
->imodifiers
) & 1)) {
367 if ((code
& CTRL
) && !((s
->modifiers
| s
->imodifiers
) & 4)) {
371 if ((code
& FN
) && !((s
->modifiers
| s
->imodifiers
) & 8)) {
375 if ((code
& FN
) && (s
->modifiers
& 1) &&
376 !(s
->imodifiers
& 0x10)) {
377 QUEUE_KEY(0x2a | 0x80);
378 s
->imodifiers
|= 0x10;
380 if ((code
& FN
) && (s
->modifiers
& 2) &&
381 !(s
->imodifiers
& 0x20)) {
382 QUEUE_KEY(0x36 | 0x80);
383 s
->imodifiers
|= 0x20;
389 QUEUE_KEY((code
& 0x7f) | (keycode
& 0x80));
392 static void spitz_keyboard_tick(void *opaque
)
394 struct spitz_keyboard_s
*s
= (struct spitz_keyboard_s
*) opaque
;
397 spitz_keyboard_keydown(s
, s
->fifo
[s
->fifopos
++]);
399 if (s
->fifopos
>= 16)
403 qemu_mod_timer(s
->kbdtimer
, qemu_get_clock(vm_clock
) + ticks_per_sec
/ 32);
406 static void spitz_keyboard_pre_map(struct spitz_keyboard_s
*s
)
409 for (i
= 0; i
< 0x100; i
++)
411 s
->pre_map
[0x02 | SHIFT
] = 0x02 | SHIFT
; /* exclam */
412 s
->pre_map
[0x28 | SHIFT
] = 0x03 | SHIFT
; /* quotedbl */
413 s
->pre_map
[0x04 | SHIFT
] = 0x04 | SHIFT
; /* numbersign */
414 s
->pre_map
[0x05 | SHIFT
] = 0x05 | SHIFT
; /* dollar */
415 s
->pre_map
[0x06 | SHIFT
] = 0x06 | SHIFT
; /* percent */
416 s
->pre_map
[0x08 | SHIFT
] = 0x07 | SHIFT
; /* ampersand */
417 s
->pre_map
[0x28 ] = 0x08 | SHIFT
; /* apostrophe */
418 s
->pre_map
[0x0a | SHIFT
] = 0x09 | SHIFT
; /* parenleft */
419 s
->pre_map
[0x0b | SHIFT
] = 0x0a | SHIFT
; /* parenright */
420 s
->pre_map
[0x29 | SHIFT
] = 0x0b | SHIFT
; /* asciitilde */
421 s
->pre_map
[0x03 | SHIFT
] = 0x0c | SHIFT
; /* at */
422 s
->pre_map
[0xd3 ] = 0x0e | FN
; /* Delete */
423 s
->pre_map
[0x3a ] = 0x0f | FN
; /* Caps_Lock */
424 s
->pre_map
[0x07 | SHIFT
] = 0x11 | FN
; /* asciicircum */
425 s
->pre_map
[0x0d ] = 0x12 | FN
; /* equal */
426 s
->pre_map
[0x0d | SHIFT
] = 0x13 | FN
; /* plus */
427 s
->pre_map
[0x1a ] = 0x14 | FN
; /* bracketleft */
428 s
->pre_map
[0x1b ] = 0x15 | FN
; /* bracketright */
429 s
->pre_map
[0x1a | SHIFT
] = 0x16 | FN
; /* braceleft */
430 s
->pre_map
[0x1b | SHIFT
] = 0x17 | FN
; /* braceright */
431 s
->pre_map
[0x27 ] = 0x22 | FN
; /* semicolon */
432 s
->pre_map
[0x27 | SHIFT
] = 0x23 | FN
; /* colon */
433 s
->pre_map
[0x09 | SHIFT
] = 0x24 | FN
; /* asterisk */
434 s
->pre_map
[0x2b ] = 0x25 | FN
; /* backslash */
435 s
->pre_map
[0x2b | SHIFT
] = 0x26 | FN
; /* bar */
436 s
->pre_map
[0x0c | SHIFT
] = 0x30 | FN
; /* underscore */
437 s
->pre_map
[0x33 | SHIFT
] = 0x33 | FN
; /* less */
438 s
->pre_map
[0x35 ] = 0x33 | SHIFT
; /* slash */
439 s
->pre_map
[0x34 | SHIFT
] = 0x34 | FN
; /* greater */
440 s
->pre_map
[0x35 | SHIFT
] = 0x34 | SHIFT
; /* question */
441 s
->pre_map
[0x49 ] = 0x48 | FN
; /* Page_Up */
442 s
->pre_map
[0x51 ] = 0x50 | FN
; /* Page_Down */
448 s
->kbdtimer
= qemu_new_timer(vm_clock
, spitz_keyboard_tick
, s
);
449 spitz_keyboard_tick(s
);
456 static void spitz_keyboard_save(QEMUFile
*f
, void *opaque
)
458 struct spitz_keyboard_s
*s
= (struct spitz_keyboard_s
*) opaque
;
461 qemu_put_be16s(f
, &s
->sense_state
);
462 qemu_put_be16s(f
, &s
->strobe_state
);
463 for (i
= 0; i
< 5; i
++)
464 qemu_put_byte(f
, spitz_gpio_invert
[i
]);
467 static int spitz_keyboard_load(QEMUFile
*f
, void *opaque
, int version_id
)
469 struct spitz_keyboard_s
*s
= (struct spitz_keyboard_s
*) opaque
;
472 qemu_get_be16s(f
, &s
->sense_state
);
473 qemu_get_be16s(f
, &s
->strobe_state
);
474 for (i
= 0; i
< 5; i
++)
475 spitz_gpio_invert
[i
] = qemu_get_byte(f
);
477 /* Release all pressed keys */
478 memset(s
->keyrow
, 0, sizeof(s
->keyrow
));
479 spitz_keyboard_sense_update(s
);
488 static void spitz_keyboard_register(struct pxa2xx_state_s
*cpu
)
491 struct spitz_keyboard_s
*s
;
493 s
= (struct spitz_keyboard_s
*)
494 qemu_mallocz(sizeof(struct spitz_keyboard_s
));
495 memset(s
, 0, sizeof(struct spitz_keyboard_s
));
497 for (i
= 0; i
< 0x80; i
++)
499 for (i
= 0; i
< SPITZ_KEY_SENSE_NUM
+ 1; i
++)
500 for (j
= 0; j
< SPITZ_KEY_STROBE_NUM
; j
++)
501 if (spitz_keymap
[i
][j
] != -1)
502 s
->keymap
[spitz_keymap
[i
][j
]] = (i
<< 4) | j
;
504 for (i
= 0; i
< SPITZ_KEY_SENSE_NUM
; i
++)
505 s
->sense
[i
] = pxa2xx_gpio_in_get(cpu
->gpio
)[spitz_gpio_key_sense
[i
]];
507 for (i
= 0; i
< 5; i
++)
508 s
->gpiomap
[i
] = pxa2xx_gpio_in_get(cpu
->gpio
)[spitz_gpiomap
[i
]];
510 s
->strobe
= qemu_allocate_irqs(spitz_keyboard_strobe
, s
,
511 SPITZ_KEY_STROBE_NUM
);
512 for (i
= 0; i
< SPITZ_KEY_STROBE_NUM
; i
++)
513 pxa2xx_gpio_out_set(cpu
->gpio
, spitz_gpio_key_strobe
[i
], s
->strobe
[i
]);
515 spitz_keyboard_pre_map(s
);
516 qemu_add_kbd_event_handler((QEMUPutKBDEvent
*) spitz_keyboard_handler
, s
);
518 register_savevm("spitz_keyboard", 0, 0,
519 spitz_keyboard_save
, spitz_keyboard_load
, s
);
522 /* LCD backlight controller */
524 #define LCDTG_RESCTL 0x00
525 #define LCDTG_PHACTRL 0x01
526 #define LCDTG_DUTYCTRL 0x02
527 #define LCDTG_POWERREG0 0x03
528 #define LCDTG_POWERREG1 0x04
529 #define LCDTG_GPOR3 0x05
530 #define LCDTG_PICTRL 0x06
531 #define LCDTG_POLCTRL 0x07
533 static int bl_intensity
, bl_power
;
535 static void spitz_bl_update(struct pxa2xx_state_s
*s
)
537 if (bl_power
&& bl_intensity
)
538 zaurus_printf("LCD Backlight now at %i/63\n", bl_intensity
);
540 zaurus_printf("LCD Backlight now off\n");
543 static inline void spitz_bl_bit5(void *opaque
, int line
, int level
)
545 int prev
= bl_intensity
;
548 bl_intensity
&= ~0x20;
550 bl_intensity
|= 0x20;
552 if (bl_power
&& prev
!= bl_intensity
)
553 spitz_bl_update((struct pxa2xx_state_s
*) opaque
);
556 static inline void spitz_bl_power(void *opaque
, int line
, int level
)
559 spitz_bl_update((struct pxa2xx_state_s
*) opaque
);
562 static void spitz_lcdtg_dac_put(void *opaque
, uint8_t cmd
)
571 zaurus_printf("LCD in QVGA mode\n");
573 zaurus_printf("LCD in VGA mode\n");
577 bl_intensity
&= ~0x1f;
578 bl_intensity
|= value
;
580 spitz_bl_update((struct pxa2xx_state_s
*) opaque
);
583 case LCDTG_POWERREG0
:
584 /* Set common voltage to M62332FP */
591 #define CORGI_SSP_PORT 2
593 #define SPITZ_GPIO_LCDCON_CS 53
594 #define SPITZ_GPIO_ADS7846_CS 14
595 #define SPITZ_GPIO_MAX1111_CS 20
596 #define SPITZ_GPIO_TP_INT 11
598 static int lcd_en
, ads_en
, max_en
;
599 static struct max111x_s
*max1111
;
600 static struct ads7846_state_s
*ads7846
;
602 /* "Demux" the signal based on current chipselect */
603 static uint32_t corgi_ssp_read(void *opaque
)
608 return ads7846_read(ads7846
);
610 return max111x_read(max1111
);
614 static void corgi_ssp_write(void *opaque
, uint32_t value
)
617 spitz_lcdtg_dac_put(opaque
, value
);
619 ads7846_write(ads7846
, value
);
621 max111x_write(max1111
, value
);
624 static void corgi_ssp_gpio_cs(void *opaque
, int line
, int level
)
639 #define MAX1111_BATT_VOLT 1
640 #define MAX1111_BATT_TEMP 2
641 #define MAX1111_ACIN_VOLT 3
643 #define SPITZ_BATTERY_TEMP 0xe0 /* About 2.9V */
644 #define SPITZ_BATTERY_VOLT 0xd0 /* About 4.0V */
645 #define SPITZ_CHARGEON_ACIN 0x80 /* About 5.0V */
647 static void spitz_adc_temp_on(void *opaque
, int line
, int level
)
653 max111x_set_input(max1111
, MAX1111_BATT_TEMP
, SPITZ_BATTERY_TEMP
);
655 max111x_set_input(max1111
, MAX1111_BATT_TEMP
, 0);
658 static void spitz_ssp_save(QEMUFile
*f
, void *opaque
)
660 qemu_put_be32(f
, lcd_en
);
661 qemu_put_be32(f
, ads_en
);
662 qemu_put_be32(f
, max_en
);
663 qemu_put_be32(f
, bl_intensity
);
664 qemu_put_be32(f
, bl_power
);
667 static int spitz_ssp_load(QEMUFile
*f
, void *opaque
, int version_id
)
669 lcd_en
= qemu_get_be32(f
);
670 ads_en
= qemu_get_be32(f
);
671 max_en
= qemu_get_be32(f
);
672 bl_intensity
= qemu_get_be32(f
);
673 bl_power
= qemu_get_be32(f
);
678 static void spitz_ssp_attach(struct pxa2xx_state_s
*cpu
)
680 qemu_irq
*chipselects
;
682 lcd_en
= ads_en
= max_en
= 0;
684 ads7846
= ads7846_init(pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_TP_INT
]);
686 max1111
= max1111_init(0);
687 max111x_set_input(max1111
, MAX1111_BATT_VOLT
, SPITZ_BATTERY_VOLT
);
688 max111x_set_input(max1111
, MAX1111_BATT_TEMP
, 0);
689 max111x_set_input(max1111
, MAX1111_ACIN_VOLT
, SPITZ_CHARGEON_ACIN
);
691 pxa2xx_ssp_attach(cpu
->ssp
[CORGI_SSP_PORT
- 1], corgi_ssp_read
,
692 corgi_ssp_write
, cpu
);
694 chipselects
= qemu_allocate_irqs(corgi_ssp_gpio_cs
, cpu
, 3);
695 pxa2xx_gpio_out_set(cpu
->gpio
, SPITZ_GPIO_LCDCON_CS
, chipselects
[0]);
696 pxa2xx_gpio_out_set(cpu
->gpio
, SPITZ_GPIO_ADS7846_CS
, chipselects
[1]);
697 pxa2xx_gpio_out_set(cpu
->gpio
, SPITZ_GPIO_MAX1111_CS
, chipselects
[2]);
702 register_savevm("spitz_ssp", 0, 0, spitz_ssp_save
, spitz_ssp_load
, cpu
);
707 static void spitz_microdrive_attach(struct pxa2xx_state_s
*cpu
)
709 struct pcmcia_card_s
*md
;
711 BlockDriverState
*bs
;
713 index
= drive_get_index(IF_IDE
, 0, 0);
716 bs
= drives_table
[index
].bdrv
;
717 if (bdrv_is_inserted(bs
) && !bdrv_is_removable(bs
)) {
718 md
= dscm1xxxx_init(bs
);
719 pxa2xx_pcmcia_attach(cpu
->pcmcia
[1], md
);
723 /* Wm8750 and Max7310 on I2C */
725 #define AKITA_MAX_ADDR 0x18
726 #define SPITZ_WM_ADDRL 0x1b
727 #define SPITZ_WM_ADDRH 0x1a
729 #define SPITZ_GPIO_WM 5
732 static void spitz_wm8750_addr(void *opaque
, int line
, int level
)
734 i2c_slave
*wm
= (i2c_slave
*) opaque
;
736 i2c_set_slave_address(wm
, SPITZ_WM_ADDRH
);
738 i2c_set_slave_address(wm
, SPITZ_WM_ADDRL
);
742 static void spitz_i2c_setup(struct pxa2xx_state_s
*cpu
)
744 /* Attach the CPU on one end of our I2C bus. */
745 i2c_bus
*bus
= pxa2xx_i2c_bus(cpu
->i2c
[0]);
754 /* Attach a WM8750 to the bus */
755 wm
= wm8750_init(bus
, audio
);
757 spitz_wm8750_addr(wm
, 0, 0);
758 pxa2xx_gpio_out_set(cpu
->gpio
, SPITZ_GPIO_WM
,
759 qemu_allocate_irqs(spitz_wm8750_addr
, wm
, 1)[0]);
760 /* .. and to the sound interface. */
761 cpu
->i2s
->opaque
= wm
;
762 cpu
->i2s
->codec_out
= wm8750_dac_dat
;
763 cpu
->i2s
->codec_in
= wm8750_adc_dat
;
764 wm8750_data_req_set(wm
, cpu
->i2s
->data_req
, cpu
->i2s
);
768 static void spitz_akita_i2c_setup(struct pxa2xx_state_s
*cpu
)
770 /* Attach a Max7310 to Akita I2C bus. */
771 i2c_set_slave_address(max7310_init(pxa2xx_i2c_bus(cpu
->i2c
[0])),
775 /* Other peripherals */
777 static void spitz_out_switch(void *opaque
, int line
, int level
)
781 zaurus_printf("Charging %s.\n", level
? "off" : "on");
784 zaurus_printf("Discharging %s.\n", level
? "on" : "off");
787 zaurus_printf("Green LED %s.\n", level
? "on" : "off");
790 zaurus_printf("Orange LED %s.\n", level
? "on" : "off");
793 spitz_bl_bit5(opaque
, line
, level
);
796 spitz_bl_power(opaque
, line
, level
);
799 spitz_adc_temp_on(opaque
, line
, level
);
804 #define SPITZ_SCP_LED_GREEN 1
805 #define SPITZ_SCP_JK_B 2
806 #define SPITZ_SCP_CHRG_ON 3
807 #define SPITZ_SCP_MUTE_L 4
808 #define SPITZ_SCP_MUTE_R 5
809 #define SPITZ_SCP_CF_POWER 6
810 #define SPITZ_SCP_LED_ORANGE 7
811 #define SPITZ_SCP_JK_A 8
812 #define SPITZ_SCP_ADC_TEMP_ON 9
813 #define SPITZ_SCP2_IR_ON 1
814 #define SPITZ_SCP2_AKIN_PULLUP 2
815 #define SPITZ_SCP2_BACKLIGHT_CONT 7
816 #define SPITZ_SCP2_BACKLIGHT_ON 8
817 #define SPITZ_SCP2_MIC_BIAS 9
819 static void spitz_scoop_gpio_setup(struct pxa2xx_state_s
*cpu
,
820 struct scoop_info_s
*scp0
, struct scoop_info_s
*scp1
)
822 qemu_irq
*outsignals
= qemu_allocate_irqs(spitz_out_switch
, cpu
, 8);
824 scoop_gpio_out_set(scp0
, SPITZ_SCP_CHRG_ON
, outsignals
[0]);
825 scoop_gpio_out_set(scp0
, SPITZ_SCP_JK_B
, outsignals
[1]);
826 scoop_gpio_out_set(scp0
, SPITZ_SCP_LED_GREEN
, outsignals
[2]);
827 scoop_gpio_out_set(scp0
, SPITZ_SCP_LED_ORANGE
, outsignals
[3]);
830 scoop_gpio_out_set(scp1
, SPITZ_SCP2_BACKLIGHT_CONT
, outsignals
[4]);
831 scoop_gpio_out_set(scp1
, SPITZ_SCP2_BACKLIGHT_ON
, outsignals
[5]);
834 scoop_gpio_out_set(scp0
, SPITZ_SCP_ADC_TEMP_ON
, outsignals
[6]);
837 #define SPITZ_GPIO_HSYNC 22
838 #define SPITZ_GPIO_SD_DETECT 9
839 #define SPITZ_GPIO_SD_WP 81
840 #define SPITZ_GPIO_ON_RESET 89
841 #define SPITZ_GPIO_BAT_COVER 90
842 #define SPITZ_GPIO_CF1_IRQ 105
843 #define SPITZ_GPIO_CF1_CD 94
844 #define SPITZ_GPIO_CF2_IRQ 106
845 #define SPITZ_GPIO_CF2_CD 93
847 static int spitz_hsync
;
849 static void spitz_lcd_hsync_handler(void *opaque
, int line
, int level
)
851 struct pxa2xx_state_s
*cpu
= (struct pxa2xx_state_s
*) opaque
;
852 qemu_set_irq(pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_HSYNC
], spitz_hsync
);
856 static void spitz_gpio_setup(struct pxa2xx_state_s
*cpu
, int slots
)
860 * Bad hack: We toggle the LCD hsync GPIO on every GPIO status
861 * read to satisfy broken guests that poll-wait for hsync.
862 * Simulating a real hsync event would be less practical and
863 * wouldn't guarantee that a guest ever exits the loop.
866 lcd_hsync
= qemu_allocate_irqs(spitz_lcd_hsync_handler
, cpu
, 1)[0];
867 pxa2xx_gpio_read_notifier(cpu
->gpio
, lcd_hsync
);
868 pxa2xx_lcd_vsync_notifier(cpu
->lcd
, lcd_hsync
);
871 pxa2xx_mmci_handlers(cpu
->mmc
,
872 pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_SD_WP
],
873 pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_SD_DETECT
]);
875 /* Battery lock always closed */
876 qemu_irq_raise(pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_BAT_COVER
]);
879 pxa2xx_gpio_out_set(cpu
->gpio
, SPITZ_GPIO_ON_RESET
, cpu
->reset
);
881 /* PCMCIA signals: card's IRQ and Card-Detect */
883 pxa2xx_pcmcia_set_irq_cb(cpu
->pcmcia
[0],
884 pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_CF1_IRQ
],
885 pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_CF1_CD
]);
887 pxa2xx_pcmcia_set_irq_cb(cpu
->pcmcia
[1],
888 pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_CF2_IRQ
],
889 pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_CF2_CD
]);
891 /* Initialise the screen rotation related signals */
892 spitz_gpio_invert
[3] = 0; /* Always open */
893 if (graphic_rotate
) { /* Tablet mode */
894 spitz_gpio_invert
[4] = 0;
895 } else { /* Portrait mode */
896 spitz_gpio_invert
[4] = 1;
898 qemu_set_irq(pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_SWA
],
899 spitz_gpio_invert
[3]);
900 qemu_set_irq(pxa2xx_gpio_in_get(cpu
->gpio
)[SPITZ_GPIO_SWB
],
901 spitz_gpio_invert
[4]);
905 enum spitz_model_e
{ spitz
, akita
, borzoi
, terrier
};
907 #define SPITZ_RAM 0x04000000
908 #define SPITZ_ROM 0x00800000
910 static struct arm_boot_info spitz_binfo
= {
911 .loader_start
= PXA2XX_SDRAM_BASE
,
912 .ram_size
= 0x04000000,
915 static void spitz_common_init(ram_addr_t ram_size
, int vga_ram_size
,
916 DisplayState
*ds
, const char *kernel_filename
,
917 const char *kernel_cmdline
, const char *initrd_filename
,
918 const char *cpu_model
, enum spitz_model_e model
, int arm_id
)
920 struct pxa2xx_state_s
*cpu
;
921 struct scoop_info_s
*scp0
, *scp1
= NULL
;
924 cpu_model
= (model
== terrier
) ? "pxa270-c5" : "pxa270-c0";
926 /* Setup CPU & memory */
927 if (ram_size
< SPITZ_RAM
+ SPITZ_ROM
+ PXA2XX_INTERNAL_SIZE
) {
928 fprintf(stderr
, "This platform requires %i bytes of memory\n",
929 SPITZ_RAM
+ SPITZ_ROM
+ PXA2XX_INTERNAL_SIZE
);
932 cpu
= pxa270_init(spitz_binfo
.ram_size
, ds
, cpu_model
);
934 sl_flash_register(cpu
, (model
== spitz
) ? FLASH_128M
: FLASH_1024M
);
936 cpu_register_physical_memory(0, SPITZ_ROM
,
937 qemu_ram_alloc(SPITZ_ROM
) | IO_MEM_ROM
);
939 /* Setup peripherals */
940 spitz_keyboard_register(cpu
);
942 spitz_ssp_attach(cpu
);
944 scp0
= scoop_init(cpu
, 0, 0x10800000);
945 if (model
!= akita
) {
946 scp1
= scoop_init(cpu
, 1, 0x08800040);
949 spitz_scoop_gpio_setup(cpu
, scp0
, scp1
);
951 spitz_gpio_setup(cpu
, (model
== akita
) ? 1 : 2);
953 spitz_i2c_setup(cpu
);
956 spitz_akita_i2c_setup(cpu
);
958 if (model
== terrier
)
959 /* A 6.0 GB microdrive is permanently sitting in CF slot 1. */
960 spitz_microdrive_attach(cpu
);
961 else if (model
!= akita
)
962 /* A 4.0 GB microdrive is permanently sitting in CF slot 1. */
963 spitz_microdrive_attach(cpu
);
965 /* Setup initial (reset) machine state */
966 cpu
->env
->regs
[15] = spitz_binfo
.loader_start
;
968 spitz_binfo
.kernel_filename
= kernel_filename
;
969 spitz_binfo
.kernel_cmdline
= kernel_cmdline
;
970 spitz_binfo
.initrd_filename
= initrd_filename
;
971 spitz_binfo
.board_id
= arm_id
;
972 arm_load_kernel(cpu
->env
, &spitz_binfo
);
973 sl_bootparam_write(SL_PXA_PARAM_BASE
- PXA2XX_SDRAM_BASE
);
976 static void spitz_init(ram_addr_t ram_size
, int vga_ram_size
,
977 const char *boot_device
, DisplayState
*ds
,
978 const char *kernel_filename
, const char *kernel_cmdline
,
979 const char *initrd_filename
, const char *cpu_model
)
981 spitz_common_init(ram_size
, vga_ram_size
, ds
, kernel_filename
,
982 kernel_cmdline
, initrd_filename
, cpu_model
, spitz
, 0x2c9);
985 static void borzoi_init(ram_addr_t ram_size
, int vga_ram_size
,
986 const char *boot_device
, DisplayState
*ds
,
987 const char *kernel_filename
, const char *kernel_cmdline
,
988 const char *initrd_filename
, const char *cpu_model
)
990 spitz_common_init(ram_size
, vga_ram_size
, ds
, kernel_filename
,
991 kernel_cmdline
, initrd_filename
, cpu_model
, borzoi
, 0x33f);
994 static void akita_init(ram_addr_t ram_size
, int vga_ram_size
,
995 const char *boot_device
, DisplayState
*ds
,
996 const char *kernel_filename
, const char *kernel_cmdline
,
997 const char *initrd_filename
, const char *cpu_model
)
999 spitz_common_init(ram_size
, vga_ram_size
, ds
, kernel_filename
,
1000 kernel_cmdline
, initrd_filename
, cpu_model
, akita
, 0x2e8);
1003 static void terrier_init(ram_addr_t ram_size
, int vga_ram_size
,
1004 const char *boot_device
, DisplayState
*ds
,
1005 const char *kernel_filename
, const char *kernel_cmdline
,
1006 const char *initrd_filename
, const char *cpu_model
)
1008 spitz_common_init(ram_size
, vga_ram_size
, ds
, kernel_filename
,
1009 kernel_cmdline
, initrd_filename
, cpu_model
, terrier
, 0x33f);
1012 QEMUMachine akitapda_machine
= {
1014 .desc
= "Akita PDA (PXA270)",
1016 .ram_require
= SPITZ_RAM
+ SPITZ_ROM
+ PXA2XX_INTERNAL_SIZE
+ RAMSIZE_FIXED
,
1020 QEMUMachine spitzpda_machine
= {
1022 .desc
= "Spitz PDA (PXA270)",
1024 .ram_require
= SPITZ_RAM
+ SPITZ_ROM
+ PXA2XX_INTERNAL_SIZE
+ RAMSIZE_FIXED
,
1028 QEMUMachine borzoipda_machine
= {
1030 .desc
= "Borzoi PDA (PXA270)",
1031 .init
= borzoi_init
,
1032 .ram_require
= SPITZ_RAM
+ SPITZ_ROM
+ PXA2XX_INTERNAL_SIZE
+ RAMSIZE_FIXED
,
1036 QEMUMachine terrierpda_machine
= {
1038 .desc
= "Terrier PDA (PXA270)",
1039 .init
= terrier_init
,
1040 .ram_require
= SPITZ_RAM
+ SPITZ_ROM
+ PXA2XX_INTERNAL_SIZE
+ RAMSIZE_FIXED
,