qemu/hw/spitz.c
<<
>>
Prefs
   1/*
   2 * PXA270-based Clamshell PDA platforms.
   3 *
   4 * Copyright (c) 2006 Openedhand Ltd.
   5 * Written by Andrzej Zaborowski <balrog@zabor.org>
   6 *
   7 * This code is licensed under the GNU GPL v2.
   8 */
   9
  10#include "hw.h"
  11#include "pxa.h"
  12#include "arm-misc.h"
  13#include "sysemu.h"
  14#include "pcmcia.h"
  15#include "i2c.h"
  16#include "ssi.h"
  17#include "flash.h"
  18#include "qemu-timer.h"
  19#include "devices.h"
  20#include "sharpsl.h"
  21#include "console.h"
  22#include "block.h"
  23#include "audio/audio.h"
  24#include "boards.h"
  25
  26#undef REG_FMT
  27#define REG_FMT                 "0x%02lx"
  28
  29/* Spitz Flash */
  30#define FLASH_BASE              0x0c000000
  31#define FLASH_ECCLPLB           0x00    /* Line parity 7 - 0 bit */
  32#define FLASH_ECCLPUB           0x04    /* Line parity 15 - 8 bit */
  33#define FLASH_ECCCP             0x08    /* Column parity 5 - 0 bit */
  34#define FLASH_ECCCNTR           0x0c    /* ECC byte counter */
  35#define FLASH_ECCCLRR           0x10    /* Clear ECC */
  36#define FLASH_FLASHIO           0x14    /* Flash I/O */
  37#define FLASH_FLASHCTL          0x18    /* Flash Control */
  38
  39#define FLASHCTL_CE0            (1 << 0)
  40#define FLASHCTL_CLE            (1 << 1)
  41#define FLASHCTL_ALE            (1 << 2)
  42#define FLASHCTL_WP             (1 << 3)
  43#define FLASHCTL_CE1            (1 << 4)
  44#define FLASHCTL_RYBY           (1 << 5)
  45#define FLASHCTL_NCE            (FLASHCTL_CE0 | FLASHCTL_CE1)
  46
  47typedef struct {
  48    NANDFlashState *nand;
  49    uint8_t ctl;
  50    ECCState ecc;
  51} SLNANDState;
  52
  53static uint32_t sl_readb(void *opaque, target_phys_addr_t addr)
  54{
  55    SLNANDState *s = (SLNANDState *) opaque;
  56    int ryby;
  57
  58    switch (addr) {
  59#define BSHR(byte, from, to)    ((s->ecc.lp[byte] >> (from - to)) & (1 << to))
  60    case FLASH_ECCLPLB:
  61        return BSHR(0, 4, 0) | BSHR(0, 5, 2) | BSHR(0, 6, 4) | BSHR(0, 7, 6) |
  62                BSHR(1, 4, 1) | BSHR(1, 5, 3) | BSHR(1, 6, 5) | BSHR(1, 7, 7);
  63
  64#define BSHL(byte, from, to)    ((s->ecc.lp[byte] << (to - from)) & (1 << to))
  65    case FLASH_ECCLPUB:
  66        return BSHL(0, 0, 0) | BSHL(0, 1, 2) | BSHL(0, 2, 4) | BSHL(0, 3, 6) |
  67                BSHL(1, 0, 1) | BSHL(1, 1, 3) | BSHL(1, 2, 5) | BSHL(1, 3, 7);
  68
  69    case FLASH_ECCCP:
  70        return s->ecc.cp;
  71
  72    case FLASH_ECCCNTR:
  73        return s->ecc.count & 0xff;
  74
  75    case FLASH_FLASHCTL:
  76        nand_getpins(s->nand, &ryby);
  77        if (ryby)
  78            return s->ctl | FLASHCTL_RYBY;
  79        else
  80            return s->ctl;
  81
  82    case FLASH_FLASHIO:
  83        return ecc_digest(&s->ecc, nand_getio(s->nand));
  84
  85    default:
  86        zaurus_printf("Bad register offset " REG_FMT "\n", (unsigned long)addr);
  87    }
  88    return 0;
  89}
  90
  91static uint32_t sl_readl(void *opaque, target_phys_addr_t addr)
  92{
  93    SLNANDState *s = (SLNANDState *) opaque;
  94
  95    if (addr == FLASH_FLASHIO)
  96        return ecc_digest(&s->ecc, nand_getio(s->nand)) |
  97                (ecc_digest(&s->ecc, nand_getio(s->nand)) << 16);
  98
  99    return sl_readb(opaque, addr);
 100}
 101
 102static void sl_writeb(void *opaque, target_phys_addr_t addr,
 103                uint32_t value)
 104{
 105    SLNANDState *s = (SLNANDState *) opaque;
 106
 107    switch (addr) {
 108    case FLASH_ECCCLRR:
 109        /* Value is ignored.  */
 110        ecc_reset(&s->ecc);
 111        break;
 112
 113    case FLASH_FLASHCTL:
 114        s->ctl = value & 0xff & ~FLASHCTL_RYBY;
 115        nand_setpins(s->nand,
 116                        s->ctl & FLASHCTL_CLE,
 117                        s->ctl & FLASHCTL_ALE,
 118                        s->ctl & FLASHCTL_NCE,
 119                        s->ctl & FLASHCTL_WP,
 120                        0);
 121        break;
 122
 123    case FLASH_FLASHIO:
 124        nand_setio(s->nand, ecc_digest(&s->ecc, value & 0xff));
 125        break;
 126
 127    default:
 128        zaurus_printf("Bad register offset " REG_FMT "\n", (unsigned long)addr);
 129    }
 130}
 131
 132static void sl_save(QEMUFile *f, void *opaque)
 133{
 134    SLNANDState *s = (SLNANDState *) opaque;
 135
 136    qemu_put_8s(f, &s->ctl);
 137    ecc_put(f, &s->ecc);
 138}
 139
 140static int sl_load(QEMUFile *f, void *opaque, int version_id)
 141{
 142    SLNANDState *s = (SLNANDState *) opaque;
 143
 144    qemu_get_8s(f, &s->ctl);
 145    ecc_get(f, &s->ecc);
 146
 147    return 0;
 148}
 149
 150enum {
 151    FLASH_128M,
 152    FLASH_1024M,
 153};
 154
 155static void sl_flash_register(PXA2xxState *cpu, int size)
 156{
 157    int iomemtype;
 158    SLNANDState *s;
 159    CPUReadMemoryFunc * const sl_readfn[] = {
 160        sl_readb,
 161        sl_readb,
 162        sl_readl,
 163    };
 164    CPUWriteMemoryFunc * const sl_writefn[] = {
 165        sl_writeb,
 166        sl_writeb,
 167        sl_writeb,
 168    };
 169
 170    s = (SLNANDState *) qemu_mallocz(sizeof(SLNANDState));
 171    s->ctl = 0;
 172    if (size == FLASH_128M)
 173        s->nand = nand_init(NAND_MFR_SAMSUNG, 0x73);
 174    else if (size == FLASH_1024M)
 175        s->nand = nand_init(NAND_MFR_SAMSUNG, 0xf1);
 176
 177    iomemtype = cpu_register_io_memory(sl_readfn,
 178                    sl_writefn, s);
 179    cpu_register_physical_memory(FLASH_BASE, 0x40, iomemtype);
 180
 181    register_savevm(NULL, "sl_flash", 0, 0, sl_save, sl_load, s);
 182}
 183
 184/* Spitz Keyboard */
 185
 186#define SPITZ_KEY_STROBE_NUM    11
 187#define SPITZ_KEY_SENSE_NUM     7
 188
 189static const int spitz_gpio_key_sense[SPITZ_KEY_SENSE_NUM] = {
 190    12, 17, 91, 34, 36, 38, 39
 191};
 192
 193static const int spitz_gpio_key_strobe[SPITZ_KEY_STROBE_NUM] = {
 194    88, 23, 24, 25, 26, 27, 52, 103, 107, 108, 114
 195};
 196
 197/* Eighth additional row maps the special keys */
 198static int spitz_keymap[SPITZ_KEY_SENSE_NUM + 1][SPITZ_KEY_STROBE_NUM] = {
 199    { 0x1d, 0x02, 0x04, 0x06, 0x07, 0x08, 0x0a, 0x0b, 0x0e, 0x3f, 0x40 },
 200    {  -1 , 0x03, 0x05, 0x13, 0x15, 0x09, 0x17, 0x18, 0x19, 0x41, 0x42 },
 201    { 0x0f, 0x10, 0x12, 0x14, 0x22, 0x16, 0x24, 0x25,  -1 ,  -1 ,  -1  },
 202    { 0x3c, 0x11, 0x1f, 0x21, 0x2f, 0x23, 0x32, 0x26,  -1 , 0x36,  -1  },
 203    { 0x3b, 0x1e, 0x20, 0x2e, 0x30, 0x31, 0x34,  -1 , 0x1c, 0x2a,  -1  },
 204    { 0x44, 0x2c, 0x2d, 0x0c, 0x39, 0x33,  -1 , 0x48,  -1 ,  -1 , 0x38 },
 205    { 0x37, 0x3d,  -1 , 0x45, 0x57, 0x58, 0x4b, 0x50, 0x4d,  -1 ,  -1  },
 206    { 0x52, 0x43, 0x01, 0x47, 0x49,  -1 ,  -1 ,  -1 ,  -1 ,  -1 ,  -1  },
 207};
 208
 209#define SPITZ_GPIO_AK_INT       13      /* Remote control */
 210#define SPITZ_GPIO_SYNC         16      /* Sync button */
 211#define SPITZ_GPIO_ON_KEY       95      /* Power button */
 212#define SPITZ_GPIO_SWA          97      /* Lid */
 213#define SPITZ_GPIO_SWB          96      /* Tablet mode */
 214
 215/* The special buttons are mapped to unused keys */
 216static const int spitz_gpiomap[5] = {
 217    SPITZ_GPIO_AK_INT, SPITZ_GPIO_SYNC, SPITZ_GPIO_ON_KEY,
 218    SPITZ_GPIO_SWA, SPITZ_GPIO_SWB,
 219};
 220static int spitz_gpio_invert[5] = { 0, 0, 0, 0, 0, };
 221
 222typedef struct {
 223    qemu_irq sense[SPITZ_KEY_SENSE_NUM];
 224    qemu_irq *strobe;
 225    qemu_irq gpiomap[5];
 226    int keymap[0x80];
 227    uint16_t keyrow[SPITZ_KEY_SENSE_NUM];
 228    uint16_t strobe_state;
 229    uint16_t sense_state;
 230
 231    uint16_t pre_map[0x100];
 232    uint16_t modifiers;
 233    uint16_t imodifiers;
 234    uint8_t fifo[16];
 235    int fifopos, fifolen;
 236    QEMUTimer *kbdtimer;
 237} SpitzKeyboardState;
 238
 239static void spitz_keyboard_sense_update(SpitzKeyboardState *s)
 240{
 241    int i;
 242    uint16_t strobe, sense = 0;
 243    for (i = 0; i < SPITZ_KEY_SENSE_NUM; i ++) {
 244        strobe = s->keyrow[i] & s->strobe_state;
 245        if (strobe) {
 246            sense |= 1 << i;
 247            if (!(s->sense_state & (1 << i)))
 248                qemu_irq_raise(s->sense[i]);
 249        } else if (s->sense_state & (1 << i))
 250            qemu_irq_lower(s->sense[i]);
 251    }
 252
 253    s->sense_state = sense;
 254}
 255
 256static void spitz_keyboard_strobe(void *opaque, int line, int level)
 257{
 258    SpitzKeyboardState *s = (SpitzKeyboardState *) opaque;
 259
 260    if (level)
 261        s->strobe_state |= 1 << line;
 262    else
 263        s->strobe_state &= ~(1 << line);
 264    spitz_keyboard_sense_update(s);
 265}
 266
 267static void spitz_keyboard_keydown(SpitzKeyboardState *s, int keycode)
 268{
 269    int spitz_keycode = s->keymap[keycode & 0x7f];
 270    if (spitz_keycode == -1)
 271        return;
 272
 273    /* Handle the additional keys */
 274    if ((spitz_keycode >> 4) == SPITZ_KEY_SENSE_NUM) {
 275        qemu_set_irq(s->gpiomap[spitz_keycode & 0xf], (keycode < 0x80) ^
 276                        spitz_gpio_invert[spitz_keycode & 0xf]);
 277        return;
 278    }
 279
 280    if (keycode & 0x80)
 281        s->keyrow[spitz_keycode >> 4] &= ~(1 << (spitz_keycode & 0xf));
 282    else
 283        s->keyrow[spitz_keycode >> 4] |= 1 << (spitz_keycode & 0xf);
 284
 285    spitz_keyboard_sense_update(s);
 286}
 287
 288#define SHIFT   (1 << 7)
 289#define CTRL    (1 << 8)
 290#define FN      (1 << 9)
 291
 292#define QUEUE_KEY(c)    s->fifo[(s->fifopos + s->fifolen ++) & 0xf] = c
 293
 294static void spitz_keyboard_handler(SpitzKeyboardState *s, int keycode)
 295{
 296    uint16_t code;
 297    int mapcode;
 298    switch (keycode) {
 299    case 0x2a:  /* Left Shift */
 300        s->modifiers |= 1;
 301        break;
 302    case 0xaa:
 303        s->modifiers &= ~1;
 304        break;
 305    case 0x36:  /* Right Shift */
 306        s->modifiers |= 2;
 307        break;
 308    case 0xb6:
 309        s->modifiers &= ~2;
 310        break;
 311    case 0x1d:  /* Control */
 312        s->modifiers |= 4;
 313        break;
 314    case 0x9d:
 315        s->modifiers &= ~4;
 316        break;
 317    case 0x38:  /* Alt */
 318        s->modifiers |= 8;
 319        break;
 320    case 0xb8:
 321        s->modifiers &= ~8;
 322        break;
 323    }
 324
 325    code = s->pre_map[mapcode = ((s->modifiers & 3) ?
 326            (keycode | SHIFT) :
 327            (keycode & ~SHIFT))];
 328
 329    if (code != mapcode) {
 330#if 0
 331        if ((code & SHIFT) && !(s->modifiers & 1))
 332            QUEUE_KEY(0x2a | (keycode & 0x80));
 333        if ((code & CTRL ) && !(s->modifiers & 4))
 334            QUEUE_KEY(0x1d | (keycode & 0x80));
 335        if ((code & FN   ) && !(s->modifiers & 8))
 336            QUEUE_KEY(0x38 | (keycode & 0x80));
 337        if ((code & FN   ) && (s->modifiers & 1))
 338            QUEUE_KEY(0x2a | (~keycode & 0x80));
 339        if ((code & FN   ) && (s->modifiers & 2))
 340            QUEUE_KEY(0x36 | (~keycode & 0x80));
 341#else
 342        if (keycode & 0x80) {
 343            if ((s->imodifiers & 1   ) && !(s->modifiers & 1))
 344                QUEUE_KEY(0x2a | 0x80);
 345            if ((s->imodifiers & 4   ) && !(s->modifiers & 4))
 346                QUEUE_KEY(0x1d | 0x80);
 347            if ((s->imodifiers & 8   ) && !(s->modifiers & 8))
 348                QUEUE_KEY(0x38 | 0x80);
 349            if ((s->imodifiers & 0x10) && (s->modifiers & 1))
 350                QUEUE_KEY(0x2a);
 351            if ((s->imodifiers & 0x20) && (s->modifiers & 2))
 352                QUEUE_KEY(0x36);
 353            s->imodifiers = 0;
 354        } else {
 355            if ((code & SHIFT) && !((s->modifiers | s->imodifiers) & 1)) {
 356                QUEUE_KEY(0x2a);
 357                s->imodifiers |= 1;
 358            }
 359            if ((code & CTRL ) && !((s->modifiers | s->imodifiers) & 4)) {
 360                QUEUE_KEY(0x1d);
 361                s->imodifiers |= 4;
 362            }
 363            if ((code & FN   ) && !((s->modifiers | s->imodifiers) & 8)) {
 364                QUEUE_KEY(0x38);
 365                s->imodifiers |= 8;
 366            }
 367            if ((code & FN   ) && (s->modifiers & 1) &&
 368                            !(s->imodifiers & 0x10)) {
 369                QUEUE_KEY(0x2a | 0x80);
 370                s->imodifiers |= 0x10;
 371            }
 372            if ((code & FN   ) && (s->modifiers & 2) &&
 373                            !(s->imodifiers & 0x20)) {
 374                QUEUE_KEY(0x36 | 0x80);
 375                s->imodifiers |= 0x20;
 376            }
 377        }
 378#endif
 379    }
 380
 381    QUEUE_KEY((code & 0x7f) | (keycode & 0x80));
 382}
 383
 384static void spitz_keyboard_tick(void *opaque)
 385{
 386    SpitzKeyboardState *s = (SpitzKeyboardState *) opaque;
 387
 388    if (s->fifolen) {
 389        spitz_keyboard_keydown(s, s->fifo[s->fifopos ++]);
 390        s->fifolen --;
 391        if (s->fifopos >= 16)
 392            s->fifopos = 0;
 393    }
 394
 395    qemu_mod_timer(s->kbdtimer, qemu_get_clock(vm_clock) +
 396                   get_ticks_per_sec() / 32);
 397}
 398
 399static void spitz_keyboard_pre_map(SpitzKeyboardState *s)
 400{
 401    int i;
 402    for (i = 0; i < 0x100; i ++)
 403        s->pre_map[i] = i;
 404    s->pre_map[0x02 | SHIFT     ] = 0x02 | SHIFT;       /* exclam */
 405    s->pre_map[0x28 | SHIFT     ] = 0x03 | SHIFT;       /* quotedbl */
 406    s->pre_map[0x04 | SHIFT     ] = 0x04 | SHIFT;       /* numbersign */
 407    s->pre_map[0x05 | SHIFT     ] = 0x05 | SHIFT;       /* dollar */
 408    s->pre_map[0x06 | SHIFT     ] = 0x06 | SHIFT;       /* percent */
 409    s->pre_map[0x08 | SHIFT     ] = 0x07 | SHIFT;       /* ampersand */
 410    s->pre_map[0x28             ] = 0x08 | SHIFT;       /* apostrophe */
 411    s->pre_map[0x0a | SHIFT     ] = 0x09 | SHIFT;       /* parenleft */
 412    s->pre_map[0x0b | SHIFT     ] = 0x0a | SHIFT;       /* parenright */
 413    s->pre_map[0x29 | SHIFT     ] = 0x0b | SHIFT;       /* asciitilde */
 414    s->pre_map[0x03 | SHIFT     ] = 0x0c | SHIFT;       /* at */
 415    s->pre_map[0xd3             ] = 0x0e | FN;          /* Delete */
 416    s->pre_map[0x3a             ] = 0x0f | FN;          /* Caps_Lock */
 417    s->pre_map[0x07 | SHIFT     ] = 0x11 | FN;          /* asciicircum */
 418    s->pre_map[0x0d             ] = 0x12 | FN;          /* equal */
 419    s->pre_map[0x0d | SHIFT     ] = 0x13 | FN;          /* plus */
 420    s->pre_map[0x1a             ] = 0x14 | FN;          /* bracketleft */
 421    s->pre_map[0x1b             ] = 0x15 | FN;          /* bracketright */
 422    s->pre_map[0x1a | SHIFT     ] = 0x16 | FN;          /* braceleft */
 423    s->pre_map[0x1b | SHIFT     ] = 0x17 | FN;          /* braceright */
 424    s->pre_map[0x27             ] = 0x22 | FN;          /* semicolon */
 425    s->pre_map[0x27 | SHIFT     ] = 0x23 | FN;          /* colon */
 426    s->pre_map[0x09 | SHIFT     ] = 0x24 | FN;          /* asterisk */
 427    s->pre_map[0x2b             ] = 0x25 | FN;          /* backslash */
 428    s->pre_map[0x2b | SHIFT     ] = 0x26 | FN;          /* bar */
 429    s->pre_map[0x0c | SHIFT     ] = 0x30 | FN;          /* underscore */
 430    s->pre_map[0x33 | SHIFT     ] = 0x33 | FN;          /* less */
 431    s->pre_map[0x35             ] = 0x33 | SHIFT;       /* slash */
 432    s->pre_map[0x34 | SHIFT     ] = 0x34 | FN;          /* greater */
 433    s->pre_map[0x35 | SHIFT     ] = 0x34 | SHIFT;       /* question */
 434    s->pre_map[0x49             ] = 0x48 | FN;          /* Page_Up */
 435    s->pre_map[0x51             ] = 0x50 | FN;          /* Page_Down */
 436
 437    s->modifiers = 0;
 438    s->imodifiers = 0;
 439    s->fifopos = 0;
 440    s->fifolen = 0;
 441    s->kbdtimer = qemu_new_timer(vm_clock, spitz_keyboard_tick, s);
 442    spitz_keyboard_tick(s);
 443}
 444
 445#undef SHIFT
 446#undef CTRL
 447#undef FN
 448
 449static void spitz_keyboard_save(QEMUFile *f, void *opaque)
 450{
 451    SpitzKeyboardState *s = (SpitzKeyboardState *) opaque;
 452    int i;
 453
 454    qemu_put_be16s(f, &s->sense_state);
 455    qemu_put_be16s(f, &s->strobe_state);
 456    for (i = 0; i < 5; i ++)
 457        qemu_put_byte(f, spitz_gpio_invert[i]);
 458}
 459
 460static int spitz_keyboard_load(QEMUFile *f, void *opaque, int version_id)
 461{
 462    SpitzKeyboardState *s = (SpitzKeyboardState *) opaque;
 463    int i;
 464
 465    qemu_get_be16s(f, &s->sense_state);
 466    qemu_get_be16s(f, &s->strobe_state);
 467    for (i = 0; i < 5; i ++)
 468        spitz_gpio_invert[i] = qemu_get_byte(f);
 469
 470    /* Release all pressed keys */
 471    memset(s->keyrow, 0, sizeof(s->keyrow));
 472    spitz_keyboard_sense_update(s);
 473    s->modifiers = 0;
 474    s->imodifiers = 0;
 475    s->fifopos = 0;
 476    s->fifolen = 0;
 477
 478    return 0;
 479}
 480
 481static void spitz_keyboard_register(PXA2xxState *cpu)
 482{
 483    int i, j;
 484    SpitzKeyboardState *s;
 485
 486    s = (SpitzKeyboardState *)
 487            qemu_mallocz(sizeof(SpitzKeyboardState));
 488    memset(s, 0, sizeof(SpitzKeyboardState));
 489
 490    for (i = 0; i < 0x80; i ++)
 491        s->keymap[i] = -1;
 492    for (i = 0; i < SPITZ_KEY_SENSE_NUM + 1; i ++)
 493        for (j = 0; j < SPITZ_KEY_STROBE_NUM; j ++)
 494            if (spitz_keymap[i][j] != -1)
 495                s->keymap[spitz_keymap[i][j]] = (i << 4) | j;
 496
 497    for (i = 0; i < SPITZ_KEY_SENSE_NUM; i ++)
 498        s->sense[i] = pxa2xx_gpio_in_get(cpu->gpio)[spitz_gpio_key_sense[i]];
 499
 500    for (i = 0; i < 5; i ++)
 501        s->gpiomap[i] = pxa2xx_gpio_in_get(cpu->gpio)[spitz_gpiomap[i]];
 502
 503    s->strobe = qemu_allocate_irqs(spitz_keyboard_strobe, s,
 504                    SPITZ_KEY_STROBE_NUM);
 505    for (i = 0; i < SPITZ_KEY_STROBE_NUM; i ++)
 506        pxa2xx_gpio_out_set(cpu->gpio, spitz_gpio_key_strobe[i], s->strobe[i]);
 507
 508    spitz_keyboard_pre_map(s);
 509    qemu_add_kbd_event_handler((QEMUPutKBDEvent *) spitz_keyboard_handler, s);
 510
 511    register_savevm(NULL, "spitz_keyboard", 0, 0,
 512                    spitz_keyboard_save, spitz_keyboard_load, s);
 513}
 514
 515/* LCD backlight controller */
 516
 517#define LCDTG_RESCTL    0x00
 518#define LCDTG_PHACTRL   0x01
 519#define LCDTG_DUTYCTRL  0x02
 520#define LCDTG_POWERREG0 0x03
 521#define LCDTG_POWERREG1 0x04
 522#define LCDTG_GPOR3     0x05
 523#define LCDTG_PICTRL    0x06
 524#define LCDTG_POLCTRL   0x07
 525
 526typedef struct {
 527    SSISlave ssidev;
 528    int bl_intensity;
 529    int bl_power;
 530} SpitzLCDTG;
 531
 532static void spitz_bl_update(SpitzLCDTG *s)
 533{
 534    if (s->bl_power && s->bl_intensity)
 535        zaurus_printf("LCD Backlight now at %i/63\n", s->bl_intensity);
 536    else
 537        zaurus_printf("LCD Backlight now off\n");
 538}
 539
 540/* FIXME: Implement GPIO properly and remove this hack.  */
 541static SpitzLCDTG *spitz_lcdtg;
 542
 543static inline void spitz_bl_bit5(void *opaque, int line, int level)
 544{
 545    SpitzLCDTG *s = spitz_lcdtg;
 546    int prev = s->bl_intensity;
 547
 548    if (level)
 549        s->bl_intensity &= ~0x20;
 550    else
 551        s->bl_intensity |= 0x20;
 552
 553    if (s->bl_power && prev != s->bl_intensity)
 554        spitz_bl_update(s);
 555}
 556
 557static inline void spitz_bl_power(void *opaque, int line, int level)
 558{
 559    SpitzLCDTG *s = spitz_lcdtg;
 560    s->bl_power = !!level;
 561    spitz_bl_update(s);
 562}
 563
 564static uint32_t spitz_lcdtg_transfer(SSISlave *dev, uint32_t value)
 565{
 566    SpitzLCDTG *s = FROM_SSI_SLAVE(SpitzLCDTG, dev);
 567    int addr;
 568    addr = value >> 5;
 569    value &= 0x1f;
 570
 571    switch (addr) {
 572    case LCDTG_RESCTL:
 573        if (value)
 574            zaurus_printf("LCD in QVGA mode\n");
 575        else
 576            zaurus_printf("LCD in VGA mode\n");
 577        break;
 578
 579    case LCDTG_DUTYCTRL:
 580        s->bl_intensity &= ~0x1f;
 581        s->bl_intensity |= value;
 582        if (s->bl_power)
 583            spitz_bl_update(s);
 584        break;
 585
 586    case LCDTG_POWERREG0:
 587        /* Set common voltage to M62332FP */
 588        break;
 589    }
 590    return 0;
 591}
 592
 593static void spitz_lcdtg_save(QEMUFile *f, void *opaque)
 594{
 595    SpitzLCDTG *s = (SpitzLCDTG *)opaque;
 596    qemu_put_be32(f, s->bl_intensity);
 597    qemu_put_be32(f, s->bl_power);
 598}
 599
 600static int spitz_lcdtg_load(QEMUFile *f, void *opaque, int version_id)
 601{
 602    SpitzLCDTG *s = (SpitzLCDTG *)opaque;
 603    s->bl_intensity = qemu_get_be32(f);
 604    s->bl_power = qemu_get_be32(f);
 605    return 0;
 606}
 607
 608static int spitz_lcdtg_init(SSISlave *dev)
 609{
 610    SpitzLCDTG *s = FROM_SSI_SLAVE(SpitzLCDTG, dev);
 611
 612    spitz_lcdtg = s;
 613    s->bl_power = 0;
 614    s->bl_intensity = 0x20;
 615
 616    register_savevm(&dev->qdev, "spitz-lcdtg", -1, 1,
 617                    spitz_lcdtg_save, spitz_lcdtg_load, s);
 618    return 0;
 619}
 620
 621/* SSP devices */
 622
 623#define CORGI_SSP_PORT          2
 624
 625#define SPITZ_GPIO_LCDCON_CS    53
 626#define SPITZ_GPIO_ADS7846_CS   14
 627#define SPITZ_GPIO_MAX1111_CS   20
 628#define SPITZ_GPIO_TP_INT       11
 629
 630static DeviceState *max1111;
 631
 632/* "Demux" the signal based on current chipselect */
 633typedef struct {
 634    SSISlave ssidev;
 635    SSIBus *bus[3];
 636    int enable[3];
 637} CorgiSSPState;
 638
 639static uint32_t corgi_ssp_transfer(SSISlave *dev, uint32_t value)
 640{
 641    CorgiSSPState *s = FROM_SSI_SLAVE(CorgiSSPState, dev);
 642    int i;
 643
 644    for (i = 0; i < 3; i++) {
 645        if (s->enable[i]) {
 646            return ssi_transfer(s->bus[i], value);
 647        }
 648    }
 649    return 0;
 650}
 651
 652static void corgi_ssp_gpio_cs(void *opaque, int line, int level)
 653{
 654    CorgiSSPState *s = (CorgiSSPState *)opaque;
 655    assert(line >= 0 && line < 3);
 656    s->enable[line] = !level;
 657}
 658
 659#define MAX1111_BATT_VOLT       1
 660#define MAX1111_BATT_TEMP       2
 661#define MAX1111_ACIN_VOLT       3
 662
 663#define SPITZ_BATTERY_TEMP      0xe0    /* About 2.9V */
 664#define SPITZ_BATTERY_VOLT      0xd0    /* About 4.0V */
 665#define SPITZ_CHARGEON_ACIN     0x80    /* About 5.0V */
 666
 667static void spitz_adc_temp_on(void *opaque, int line, int level)
 668{
 669    if (!max1111)
 670        return;
 671
 672    if (level)
 673        max111x_set_input(max1111, MAX1111_BATT_TEMP, SPITZ_BATTERY_TEMP);
 674    else
 675        max111x_set_input(max1111, MAX1111_BATT_TEMP, 0);
 676}
 677
 678static void spitz_ssp_save(QEMUFile *f, void *opaque)
 679{
 680    CorgiSSPState *s = (CorgiSSPState *)opaque;
 681    int i;
 682
 683    for (i = 0; i < 3; i++) {
 684        qemu_put_be32(f, s->enable[i]);
 685    }
 686}
 687
 688static int spitz_ssp_load(QEMUFile *f, void *opaque, int version_id)
 689{
 690    CorgiSSPState *s = (CorgiSSPState *)opaque;
 691    int i;
 692
 693    if (version_id != 1) {
 694        return -EINVAL;
 695    }
 696    for (i = 0; i < 3; i++) {
 697        s->enable[i] = qemu_get_be32(f);
 698    }
 699    return 0;
 700}
 701
 702static int corgi_ssp_init(SSISlave *dev)
 703{
 704    CorgiSSPState *s = FROM_SSI_SLAVE(CorgiSSPState, dev);
 705
 706    qdev_init_gpio_in(&dev->qdev, corgi_ssp_gpio_cs, 3);
 707    s->bus[0] = ssi_create_bus(&dev->qdev, "ssi0");
 708    s->bus[1] = ssi_create_bus(&dev->qdev, "ssi1");
 709    s->bus[2] = ssi_create_bus(&dev->qdev, "ssi2");
 710
 711    register_savevm(&dev->qdev, "spitz_ssp", -1, 1,
 712                    spitz_ssp_save, spitz_ssp_load, s);
 713    return 0;
 714}
 715
 716static void spitz_ssp_attach(PXA2xxState *cpu)
 717{
 718    DeviceState *mux;
 719    DeviceState *dev;
 720    void *bus;
 721
 722    mux = ssi_create_slave(cpu->ssp[CORGI_SSP_PORT - 1], "corgi-ssp");
 723
 724    bus = qdev_get_child_bus(mux, "ssi0");
 725    ssi_create_slave(bus, "spitz-lcdtg");
 726
 727    bus = qdev_get_child_bus(mux, "ssi1");
 728    dev = ssi_create_slave(bus, "ads7846");
 729    qdev_connect_gpio_out(dev, 0,
 730                          pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_TP_INT]);
 731
 732    bus = qdev_get_child_bus(mux, "ssi2");
 733    max1111 = ssi_create_slave(bus, "max1111");
 734    max111x_set_input(max1111, MAX1111_BATT_VOLT, SPITZ_BATTERY_VOLT);
 735    max111x_set_input(max1111, MAX1111_BATT_TEMP, 0);
 736    max111x_set_input(max1111, MAX1111_ACIN_VOLT, SPITZ_CHARGEON_ACIN);
 737
 738    pxa2xx_gpio_out_set(cpu->gpio, SPITZ_GPIO_LCDCON_CS,
 739                        qdev_get_gpio_in(mux, 0));
 740    pxa2xx_gpio_out_set(cpu->gpio, SPITZ_GPIO_ADS7846_CS,
 741                        qdev_get_gpio_in(mux, 1));
 742    pxa2xx_gpio_out_set(cpu->gpio, SPITZ_GPIO_MAX1111_CS,
 743                        qdev_get_gpio_in(mux, 2));
 744}
 745
 746/* CF Microdrive */
 747
 748static void spitz_microdrive_attach(PXA2xxState *cpu, int slot)
 749{
 750    PCMCIACardState *md;
 751    BlockDriverState *bs;
 752    DriveInfo *dinfo;
 753
 754    dinfo = drive_get(IF_IDE, 0, 0);
 755    if (!dinfo)
 756        return;
 757    bs = dinfo->bdrv;
 758    if (bdrv_is_inserted(bs) && !bdrv_is_removable(bs)) {
 759        md = dscm1xxxx_init(dinfo);
 760        pxa2xx_pcmcia_attach(cpu->pcmcia[slot], md);
 761    }
 762}
 763
 764/* Wm8750 and Max7310 on I2C */
 765
 766#define AKITA_MAX_ADDR  0x18
 767#define SPITZ_WM_ADDRL  0x1b
 768#define SPITZ_WM_ADDRH  0x1a
 769
 770#define SPITZ_GPIO_WM   5
 771
 772static void spitz_wm8750_addr(void *opaque, int line, int level)
 773{
 774    i2c_slave *wm = (i2c_slave *) opaque;
 775    if (level)
 776        i2c_set_slave_address(wm, SPITZ_WM_ADDRH);
 777    else
 778        i2c_set_slave_address(wm, SPITZ_WM_ADDRL);
 779}
 780
 781static void spitz_i2c_setup(PXA2xxState *cpu)
 782{
 783    /* Attach the CPU on one end of our I2C bus.  */
 784    i2c_bus *bus = pxa2xx_i2c_bus(cpu->i2c[0]);
 785
 786    DeviceState *wm;
 787
 788    /* Attach a WM8750 to the bus */
 789    wm = i2c_create_slave(bus, "wm8750", 0);
 790
 791    spitz_wm8750_addr(wm, 0, 0);
 792    pxa2xx_gpio_out_set(cpu->gpio, SPITZ_GPIO_WM,
 793                    qemu_allocate_irqs(spitz_wm8750_addr, wm, 1)[0]);
 794    /* .. and to the sound interface.  */
 795    cpu->i2s->opaque = wm;
 796    cpu->i2s->codec_out = wm8750_dac_dat;
 797    cpu->i2s->codec_in = wm8750_adc_dat;
 798    wm8750_data_req_set(wm, cpu->i2s->data_req, cpu->i2s);
 799}
 800
 801static void spitz_akita_i2c_setup(PXA2xxState *cpu)
 802{
 803    /* Attach a Max7310 to Akita I2C bus.  */
 804    i2c_create_slave(pxa2xx_i2c_bus(cpu->i2c[0]), "max7310",
 805                     AKITA_MAX_ADDR);
 806}
 807
 808/* Other peripherals */
 809
 810static void spitz_out_switch(void *opaque, int line, int level)
 811{
 812    switch (line) {
 813    case 0:
 814        zaurus_printf("Charging %s.\n", level ? "off" : "on");
 815        break;
 816    case 1:
 817        zaurus_printf("Discharging %s.\n", level ? "on" : "off");
 818        break;
 819    case 2:
 820        zaurus_printf("Green LED %s.\n", level ? "on" : "off");
 821        break;
 822    case 3:
 823        zaurus_printf("Orange LED %s.\n", level ? "on" : "off");
 824        break;
 825    case 4:
 826        spitz_bl_bit5(opaque, line, level);
 827        break;
 828    case 5:
 829        spitz_bl_power(opaque, line, level);
 830        break;
 831    case 6:
 832        spitz_adc_temp_on(opaque, line, level);
 833        break;
 834    }
 835}
 836
 837#define SPITZ_SCP_LED_GREEN             1
 838#define SPITZ_SCP_JK_B                  2
 839#define SPITZ_SCP_CHRG_ON               3
 840#define SPITZ_SCP_MUTE_L                4
 841#define SPITZ_SCP_MUTE_R                5
 842#define SPITZ_SCP_CF_POWER              6
 843#define SPITZ_SCP_LED_ORANGE            7
 844#define SPITZ_SCP_JK_A                  8
 845#define SPITZ_SCP_ADC_TEMP_ON           9
 846#define SPITZ_SCP2_IR_ON                1
 847#define SPITZ_SCP2_AKIN_PULLUP          2
 848#define SPITZ_SCP2_BACKLIGHT_CONT       7
 849#define SPITZ_SCP2_BACKLIGHT_ON         8
 850#define SPITZ_SCP2_MIC_BIAS             9
 851
 852static void spitz_scoop_gpio_setup(PXA2xxState *cpu,
 853                ScoopInfo *scp0, ScoopInfo *scp1)
 854{
 855    qemu_irq *outsignals = qemu_allocate_irqs(spitz_out_switch, cpu, 8);
 856
 857    scoop_gpio_out_set(scp0, SPITZ_SCP_CHRG_ON, outsignals[0]);
 858    scoop_gpio_out_set(scp0, SPITZ_SCP_JK_B, outsignals[1]);
 859    scoop_gpio_out_set(scp0, SPITZ_SCP_LED_GREEN, outsignals[2]);
 860    scoop_gpio_out_set(scp0, SPITZ_SCP_LED_ORANGE, outsignals[3]);
 861
 862    if (scp1) {
 863        scoop_gpio_out_set(scp1, SPITZ_SCP2_BACKLIGHT_CONT, outsignals[4]);
 864        scoop_gpio_out_set(scp1, SPITZ_SCP2_BACKLIGHT_ON, outsignals[5]);
 865    }
 866
 867    scoop_gpio_out_set(scp0, SPITZ_SCP_ADC_TEMP_ON, outsignals[6]);
 868}
 869
 870#define SPITZ_GPIO_HSYNC                22
 871#define SPITZ_GPIO_SD_DETECT            9
 872#define SPITZ_GPIO_SD_WP                81
 873#define SPITZ_GPIO_ON_RESET             89
 874#define SPITZ_GPIO_BAT_COVER            90
 875#define SPITZ_GPIO_CF1_IRQ              105
 876#define SPITZ_GPIO_CF1_CD               94
 877#define SPITZ_GPIO_CF2_IRQ              106
 878#define SPITZ_GPIO_CF2_CD               93
 879
 880static int spitz_hsync;
 881
 882static void spitz_lcd_hsync_handler(void *opaque, int line, int level)
 883{
 884    PXA2xxState *cpu = (PXA2xxState *) opaque;
 885    qemu_set_irq(pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_HSYNC], spitz_hsync);
 886    spitz_hsync ^= 1;
 887}
 888
 889static void spitz_gpio_setup(PXA2xxState *cpu, int slots)
 890{
 891    qemu_irq lcd_hsync;
 892    /*
 893     * Bad hack: We toggle the LCD hsync GPIO on every GPIO status
 894     * read to satisfy broken guests that poll-wait for hsync.
 895     * Simulating a real hsync event would be less practical and
 896     * wouldn't guarantee that a guest ever exits the loop.
 897     */
 898    spitz_hsync = 0;
 899    lcd_hsync = qemu_allocate_irqs(spitz_lcd_hsync_handler, cpu, 1)[0];
 900    pxa2xx_gpio_read_notifier(cpu->gpio, lcd_hsync);
 901    pxa2xx_lcd_vsync_notifier(cpu->lcd, lcd_hsync);
 902
 903    /* MMC/SD host */
 904    pxa2xx_mmci_handlers(cpu->mmc,
 905                    pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_SD_WP],
 906                    pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_SD_DETECT]);
 907
 908    /* Battery lock always closed */
 909    qemu_irq_raise(pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_BAT_COVER]);
 910
 911    /* Handle reset */
 912    pxa2xx_gpio_out_set(cpu->gpio, SPITZ_GPIO_ON_RESET, cpu->reset);
 913
 914    /* PCMCIA signals: card's IRQ and Card-Detect */
 915    if (slots >= 1)
 916        pxa2xx_pcmcia_set_irq_cb(cpu->pcmcia[0],
 917                        pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_CF1_IRQ],
 918                        pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_CF1_CD]);
 919    if (slots >= 2)
 920        pxa2xx_pcmcia_set_irq_cb(cpu->pcmcia[1],
 921                        pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_CF2_IRQ],
 922                        pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_CF2_CD]);
 923
 924    /* Initialise the screen rotation related signals */
 925    spitz_gpio_invert[3] = 0;   /* Always open */
 926    if (graphic_rotate) {       /* Tablet mode */
 927        spitz_gpio_invert[4] = 0;
 928    } else {                    /* Portrait mode */
 929        spitz_gpio_invert[4] = 1;
 930    }
 931    qemu_set_irq(pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_SWA],
 932                    spitz_gpio_invert[3]);
 933    qemu_set_irq(pxa2xx_gpio_in_get(cpu->gpio)[SPITZ_GPIO_SWB],
 934                    spitz_gpio_invert[4]);
 935}
 936
 937/* Board init.  */
 938enum spitz_model_e { spitz, akita, borzoi, terrier };
 939
 940#define SPITZ_RAM       0x04000000
 941#define SPITZ_ROM       0x00800000
 942
 943static struct arm_boot_info spitz_binfo = {
 944    .loader_start = PXA2XX_SDRAM_BASE,
 945    .ram_size = 0x04000000,
 946};
 947
 948static void spitz_common_init(ram_addr_t ram_size,
 949                const char *kernel_filename,
 950                const char *kernel_cmdline, const char *initrd_filename,
 951                const char *cpu_model, enum spitz_model_e model, int arm_id)
 952{
 953    PXA2xxState *cpu;
 954    ScoopInfo *scp0, *scp1 = NULL;
 955
 956    if (!cpu_model)
 957        cpu_model = (model == terrier) ? "pxa270-c5" : "pxa270-c0";
 958
 959    /* Setup CPU & memory */
 960    cpu = pxa270_init(spitz_binfo.ram_size, cpu_model);
 961
 962    sl_flash_register(cpu, (model == spitz) ? FLASH_128M : FLASH_1024M);
 963
 964    cpu_register_physical_memory(0, SPITZ_ROM,
 965                    qemu_ram_alloc(NULL, "spitz.rom", SPITZ_ROM) | IO_MEM_ROM);
 966
 967    /* Setup peripherals */
 968    spitz_keyboard_register(cpu);
 969
 970    spitz_ssp_attach(cpu);
 971
 972    scp0 = scoop_init(cpu, 0, 0x10800000);
 973    if (model != akita) {
 974            scp1 = scoop_init(cpu, 1, 0x08800040);
 975    }
 976
 977    spitz_scoop_gpio_setup(cpu, scp0, scp1);
 978
 979    spitz_gpio_setup(cpu, (model == akita) ? 1 : 2);
 980
 981    spitz_i2c_setup(cpu);
 982
 983    if (model == akita)
 984        spitz_akita_i2c_setup(cpu);
 985
 986    if (model == terrier)
 987        /* A 6.0 GB microdrive is permanently sitting in CF slot 1.  */
 988        spitz_microdrive_attach(cpu, 1);
 989    else if (model != akita)
 990        /* A 4.0 GB microdrive is permanently sitting in CF slot 0.  */
 991        spitz_microdrive_attach(cpu, 0);
 992
 993    spitz_binfo.kernel_filename = kernel_filename;
 994    spitz_binfo.kernel_cmdline = kernel_cmdline;
 995    spitz_binfo.initrd_filename = initrd_filename;
 996    spitz_binfo.board_id = arm_id;
 997    arm_load_kernel(cpu->env, &spitz_binfo);
 998    sl_bootparam_write(SL_PXA_PARAM_BASE);
 999}
1000
1001static void spitz_init(ram_addr_t ram_size,
1002                const char *boot_device,
1003                const char *kernel_filename, const char *kernel_cmdline,
1004                const char *initrd_filename, const char *cpu_model)
1005{
1006    spitz_common_init(ram_size, kernel_filename,
1007                kernel_cmdline, initrd_filename, cpu_model, spitz, 0x2c9);
1008}
1009
1010static void borzoi_init(ram_addr_t ram_size,
1011                const char *boot_device,
1012                const char *kernel_filename, const char *kernel_cmdline,
1013                const char *initrd_filename, const char *cpu_model)
1014{
1015    spitz_common_init(ram_size, kernel_filename,
1016                kernel_cmdline, initrd_filename, cpu_model, borzoi, 0x33f);
1017}
1018
1019static void akita_init(ram_addr_t ram_size,
1020                const char *boot_device,
1021                const char *kernel_filename, const char *kernel_cmdline,
1022                const char *initrd_filename, const char *cpu_model)
1023{
1024    spitz_common_init(ram_size, kernel_filename,
1025                kernel_cmdline, initrd_filename, cpu_model, akita, 0x2e8);
1026}
1027
1028static void terrier_init(ram_addr_t ram_size,
1029                const char *boot_device,
1030                const char *kernel_filename, const char *kernel_cmdline,
1031                const char *initrd_filename, const char *cpu_model)
1032{
1033    spitz_common_init(ram_size, kernel_filename,
1034                kernel_cmdline, initrd_filename, cpu_model, terrier, 0x33f);
1035}
1036
1037static QEMUMachine akitapda_machine = {
1038    .name = "akita",
1039    .desc = "Akita PDA (PXA270)",
1040    .init = akita_init,
1041};
1042
1043static QEMUMachine spitzpda_machine = {
1044    .name = "spitz",
1045    .desc = "Spitz PDA (PXA270)",
1046    .init = spitz_init,
1047};
1048
1049static QEMUMachine borzoipda_machine = {
1050    .name = "borzoi",
1051    .desc = "Borzoi PDA (PXA270)",
1052    .init = borzoi_init,
1053};
1054
1055static QEMUMachine terrierpda_machine = {
1056    .name = "terrier",
1057    .desc = "Terrier PDA (PXA270)",
1058    .init = terrier_init,
1059};
1060
1061static void spitz_machine_init(void)
1062{
1063    qemu_register_machine(&akitapda_machine);
1064    qemu_register_machine(&spitzpda_machine);
1065    qemu_register_machine(&borzoipda_machine);
1066    qemu_register_machine(&terrierpda_machine);
1067}
1068
1069machine_init(spitz_machine_init);
1070
1071static SSISlaveInfo corgi_ssp_info = {
1072    .qdev.name = "corgi-ssp",
1073    .qdev.size = sizeof(CorgiSSPState),
1074    .init = corgi_ssp_init,
1075    .transfer = corgi_ssp_transfer
1076};
1077
1078static SSISlaveInfo spitz_lcdtg_info = {
1079    .qdev.name = "spitz-lcdtg",
1080    .qdev.size = sizeof(SpitzLCDTG),
1081    .init = spitz_lcdtg_init,
1082    .transfer = spitz_lcdtg_transfer
1083};
1084
1085static void spitz_register_devices(void)
1086{
1087    ssi_register_slave(&corgi_ssp_info);
1088    ssi_register_slave(&spitz_lcdtg_info);
1089}
1090
1091device_init(spitz_register_devices)
1092