tosa.c 6.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* vim:set shiftwidth=4 ts=4 et: */
/*
 * PXA255 Sharp Zaurus SL-6000 PDA platform
 *
 * Copyright (c) 2008 Dmitry Baryshkov
 *
 * Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org>
 * This code is licensed under the GNU GPL v2.
 */

#include "hw.h"
#include "pxa.h"
#include "arm-misc.h"
#include "sysemu.h"
15
#include "devices.h"
16 17 18 19
#include "sharpsl.h"
#include "pcmcia.h"
#include "block.h"
#include "boards.h"
20
#include "i2c.h"
21 22 23 24 25 26 27 28

#define TOSA_RAM    0x04000000
#define TOSA_ROM	0x00800000

#define TOSA_GPIO_nSD_DETECT	(9)
#define TOSA_GPIO_ON_RESET		(19)
#define TOSA_GPIO_CF_IRQ		(21)	/* CF slot0 Ready */
#define TOSA_GPIO_CF_CD			(13)
29
#define TOSA_GPIO_TC6393XB_INT  (15)
30 31
#define TOSA_GPIO_JC_CF_IRQ		(36)	/* CF slot1 Ready */

B
balrog 已提交
32
#define TOSA_SCOOP_GPIO_BASE	1
33 34 35 36
#define TOSA_GPIO_IR_POWERDWN	(TOSA_SCOOP_GPIO_BASE + 2)
#define TOSA_GPIO_SD_WP			(TOSA_SCOOP_GPIO_BASE + 3)
#define TOSA_GPIO_PWR_ON		(TOSA_SCOOP_GPIO_BASE + 4)

B
balrog 已提交
37 38 39 40
#define TOSA_SCOOP_JC_GPIO_BASE		1
#define TOSA_GPIO_BT_LED		(TOSA_SCOOP_JC_GPIO_BASE + 0)
#define TOSA_GPIO_NOTE_LED		(TOSA_SCOOP_JC_GPIO_BASE + 1)
#define TOSA_GPIO_CHRG_ERR_LED		(TOSA_SCOOP_JC_GPIO_BASE + 2)
41
#define TOSA_GPIO_TC6393XB_L3V_ON	(TOSA_SCOOP_JC_GPIO_BASE + 5)
B
balrog 已提交
42 43
#define TOSA_GPIO_WLAN_LED		(TOSA_SCOOP_JC_GPIO_BASE + 7)

44 45 46 47
#define	DAC_BASE	0x4e
#define DAC_CH1		0
#define DAC_CH2		1

P
Paul Brook 已提交
48
static void tosa_microdrive_attach(PXA2xxState *cpu)
49
{
P
Paul Brook 已提交
50
    PCMCIACardState *md;
51 52 53 54 55 56 57 58 59 60 61 62 63
    int index;
    BlockDriverState *bs;

    index = drive_get_index(IF_IDE, 0, 0);
    if (index == -1)
        return;
    bs = drives_table[index].bdrv;
    if (bdrv_is_inserted(bs) && !bdrv_is_removable(bs)) {
        md = dscm1xxxx_init(bs);
        pxa2xx_pcmcia_attach(cpu->pcmcia[0], md);
    }
}

B
balrog 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
static void tosa_out_switch(void *opaque, int line, int level)
{
    switch (line) {
        case 0:
            fprintf(stderr, "blue LED %s.\n", level ? "on" : "off");
            break;
        case 1:
            fprintf(stderr, "green LED %s.\n", level ? "on" : "off");
            break;
        case 2:
            fprintf(stderr, "amber LED %s.\n", level ? "on" : "off");
            break;
        case 3:
            fprintf(stderr, "wlan LED %s.\n", level ? "on" : "off");
            break;
        default:
            fprintf(stderr, "Uhandled out event: %d = %d\n", line, level);
            break;
    }
}


P
Paul Brook 已提交
86 87 88 89
static void tosa_gpio_setup(PXA2xxState *cpu,
                ScoopInfo *scp0,
                ScoopInfo *scp1,
                TC6393xbState *tmio)
90
{
B
balrog 已提交
91
    qemu_irq *outsignals = qemu_allocate_irqs(tosa_out_switch, cpu, 4);
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    /* MMC/SD host */
    pxa2xx_mmci_handlers(cpu->mmc,
                    scoop_gpio_in_get(scp0)[TOSA_GPIO_SD_WP],
                    qemu_irq_invert(pxa2xx_gpio_in_get(cpu->gpio)[TOSA_GPIO_nSD_DETECT]));

    /* Handle reset */
    pxa2xx_gpio_out_set(cpu->gpio, TOSA_GPIO_ON_RESET, cpu->reset);

    /* PCMCIA signals: card's IRQ and Card-Detect */
    pxa2xx_pcmcia_set_irq_cb(cpu->pcmcia[0],
                        pxa2xx_gpio_in_get(cpu->gpio)[TOSA_GPIO_CF_IRQ],
                        pxa2xx_gpio_in_get(cpu->gpio)[TOSA_GPIO_CF_CD]);

    pxa2xx_pcmcia_set_irq_cb(cpu->pcmcia[1],
                        pxa2xx_gpio_in_get(cpu->gpio)[TOSA_GPIO_JC_CF_IRQ],
                        NULL);

B
balrog 已提交
109 110 111 112
    scoop_gpio_out_set(scp1, TOSA_GPIO_BT_LED, outsignals[0]);
    scoop_gpio_out_set(scp1, TOSA_GPIO_NOTE_LED, outsignals[1]);
    scoop_gpio_out_set(scp1, TOSA_GPIO_CHRG_ERR_LED, outsignals[2]);
    scoop_gpio_out_set(scp1, TOSA_GPIO_WLAN_LED, outsignals[3]);
113 114

    scoop_gpio_out_set(scp1, TOSA_GPIO_TC6393XB_L3V_ON, tc6393xb_l3v_get(tmio));
115 116
}

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
static uint32_t tosa_ssp_read(void *opaque)
{
    return 0;
}

static void tosa_ssp_write(void *opaque, uint32_t value)
{
    fprintf(stderr, "TG: %d %02x\n", value >> 5, value & 0x1f);
}

struct tosa_dac_i2c {
    i2c_slave i2c;
    int len;
    char buf[3];
};

static int tosa_dac_send(i2c_slave *i2c, uint8_t data)
{
    struct tosa_dac_i2c *s = (struct tosa_dac_i2c *)i2c;
    s->buf[s->len] = data;
    if (s->len ++ > 2) {
#ifdef VERBOSE
        fprintf(stderr, "%s: message too long (%i bytes)\n", __FUNCTION__, s->len);
#endif
        return 1;
    }

    if (s->len == 2) {
        fprintf(stderr, "dac: channel %d value 0x%02x\n",
                s->buf[0], s->buf[1]);
    }

    return 0;
}

static void tosa_dac_event(i2c_slave *i2c, enum i2c_event event)
{
    struct tosa_dac_i2c *s = (struct tosa_dac_i2c *)i2c;
    s->len = 0;
    switch (event) {
    case I2C_START_SEND:
        break;
    case I2C_START_RECV:
        printf("%s: recv not supported!!!\n", __FUNCTION__);
        break;
    case I2C_FINISH:
#ifdef VERBOSE
        if (s->len < 2)
            printf("%s: message too short (%i bytes)\n", __FUNCTION__, s->len);
        if (s->len > 2)
            printf("%s: message too long\n", __FUNCTION__);
#endif
        break;
    default:
        break;
    }
}

A
aurel32 已提交
175
static int tosa_dac_recv(i2c_slave *s)
176 177 178 179 180
{
    printf("%s: recv not supported!!!\n", __FUNCTION__);
    return -1;
}

P
Paul Brook 已提交
181
static void tosa_tg_init(PXA2xxState *cpu)
182 183 184 185 186 187 188 189 190 191 192 193
{
    struct i2c_bus *bus = pxa2xx_i2c_bus(cpu->i2c[0]);
    struct i2c_slave *dac = i2c_slave_init(bus, 0, sizeof(struct tosa_dac_i2c));
    dac->send = tosa_dac_send;
    dac->event = tosa_dac_event;
    dac->recv = tosa_dac_recv;
    i2c_set_slave_address(dac, DAC_BASE);
    pxa2xx_ssp_attach(cpu->ssp[1], tosa_ssp_read,
                    tosa_ssp_write, cpu);
}


194 195 196 197 198 199
static struct arm_boot_info tosa_binfo = {
    .loader_start = PXA2XX_SDRAM_BASE,
    .ram_size = 0x04000000,
};

static void tosa_init(ram_addr_t ram_size, int vga_ram_size,
200
                const char *boot_device,
201 202 203
                const char *kernel_filename, const char *kernel_cmdline,
                const char *initrd_filename, const char *cpu_model)
{
P
Paul Brook 已提交
204 205 206
    PXA2xxState *cpu;
    TC6393xbState *tmio;
    ScoopInfo *scp0, *scp1;
207 208 209 210

    if (!cpu_model)
        cpu_model = "pxa255";

211
    cpu = pxa255_init(tosa_binfo.ram_size);
212 213 214 215

    cpu_register_physical_memory(0, TOSA_ROM,
                    qemu_ram_alloc(TOSA_ROM) | IO_MEM_ROM);

216
    tmio = tc6393xb_init(0x10000000,
217
            pxa2xx_gpio_in_get(cpu->gpio)[TOSA_GPIO_TC6393XB_INT]);
218 219 220 221

    scp0 = scoop_init(cpu, 0, 0x08800000);
    scp1 = scoop_init(cpu, 1, 0x14800040);

222
    tosa_gpio_setup(cpu, scp0, scp1, tmio);
223 224 225

    tosa_microdrive_attach(cpu);

226 227
    tosa_tg_init(cpu);

228 229 230 231 232 233 234 235
    /* Setup initial (reset) machine state */
    cpu->env->regs[15] = tosa_binfo.loader_start;

    tosa_binfo.kernel_filename = kernel_filename;
    tosa_binfo.kernel_cmdline = kernel_cmdline;
    tosa_binfo.initrd_filename = initrd_filename;
    tosa_binfo.board_id = 0x208;
    arm_load_kernel(cpu->env, &tosa_binfo);
P
pbrook 已提交
236
    sl_bootparam_write(SL_PXA_PARAM_BASE);
237 238 239
}

QEMUMachine tosapda_machine = {
240 241 242
    .name = "tosa",
    .desc = "Tosa PDA (PXA255)",
    .init = tosa_init,
243
};