ssd0323.c 9.6 KB
Newer Older
P
pbrook 已提交
1 2 3 4 5 6
/*
 * SSD0323 OLED controller with OSRAM Pictiva 128x64 display.
 *
 * Copyright (c) 2006-2007 CodeSourcery.
 * Written by Paul Brook
 *
M
Matthew Fernandez 已提交
7
 * This code is licensed under the GPL.
P
pbrook 已提交
8 9 10 11 12
 */

/* The controller can support a variety of different displays, but we only
   implement one.  Most of the commends relating to brightness and geometry
   setup are ignored. */
P
Paul Brook 已提交
13
#include "ssi.h"
P
pbrook 已提交
14
#include "console.h"
P
pbrook 已提交
15 16 17 18

//#define DEBUG_SSD0323 1

#ifdef DEBUG_SSD0323
19 20 21
#define DPRINTF(fmt, ...) \
do { printf("ssd0323: " fmt , ## __VA_ARGS__); } while (0)
#define BADF(fmt, ...) \
22 23 24
do { \
    fprintf(stderr, "ssd0323: error: " fmt , ## __VA_ARGS__); abort(); \
} while (0)
P
pbrook 已提交
25
#else
26 27 28
#define DPRINTF(fmt, ...) do {} while(0)
#define BADF(fmt, ...) \
do { fprintf(stderr, "ssd0323: error: " fmt , ## __VA_ARGS__);} while (0)
P
pbrook 已提交
29 30 31 32 33
#endif

/* Scaling factor for pixels.  */
#define MAGNIFY 4

P
pbrook 已提交
34 35 36 37 38 39
#define REMAP_SWAP_COLUMN 0x01
#define REMAP_SWAP_NYBBLE 0x02
#define REMAP_VERTICAL    0x04
#define REMAP_SWAP_COM    0x10
#define REMAP_SPLIT_COM   0x40

P
pbrook 已提交
40 41 42 43 44 45 46
enum ssd0323_mode
{
    SSD0323_CMD,
    SSD0323_DATA
};

typedef struct {
P
Paul Brook 已提交
47
    SSISlave ssidev;
P
pbrook 已提交
48 49 50 51 52 53 54 55 56 57 58 59
    DisplayState *ds;

    int cmd_len;
    int cmd;
    int cmd_data[8];
    int row;
    int row_start;
    int row_end;
    int col;
    int col_start;
    int col_end;
    int redraw;
P
pbrook 已提交
60
    int remap;
P
pbrook 已提交
61 62 63 64
    enum ssd0323_mode mode;
    uint8_t framebuffer[128 * 80 / 2];
} ssd0323_state;

P
Paul Brook 已提交
65
static uint32_t ssd0323_transfer(SSISlave *dev, uint32_t data)
P
pbrook 已提交
66
{
P
Paul Brook 已提交
67 68
    ssd0323_state *s = FROM_SSI_SLAVE(ssd0323_state, dev);

P
pbrook 已提交
69 70 71 72
    switch (s->mode) {
    case SSD0323_DATA:
        DPRINTF("data 0x%02x\n", data);
        s->framebuffer[s->col + s->row * 64] = data;
P
pbrook 已提交
73
        if (s->remap & REMAP_VERTICAL) {
P
pbrook 已提交
74
            s->row++;
P
pbrook 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
            if (s->row > s->row_end) {
                s->row = s->row_start;
                s->col++;
            }
            if (s->col > s->col_end) {
                s->col = s->col_start;
            }
        } else {
            s->col++;
            if (s->col > s->col_end) {
                s->row++;
                s->col = s->col_start;
            }
            if (s->row > s->row_end) {
                s->row = s->row_start;
            }
P
pbrook 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
        }
        s->redraw = 1;
        break;
    case SSD0323_CMD:
        DPRINTF("cmd 0x%02x\n", data);
        if (s->cmd_len == 0) {
            s->cmd = data;
        } else {
            s->cmd_data[s->cmd_len - 1] = data;
        }
        s->cmd_len++;
        switch (s->cmd) {
#define DATA(x) if (s->cmd_len <= (x)) return 0
        case 0x15: /* Set column.  */
            DATA(2);
P
pbrook 已提交
106
            s->col = s->col_start = s->cmd_data[0] % 64;
P
pbrook 已提交
107 108 109 110
            s->col_end = s->cmd_data[1] % 64;
            break;
        case 0x75: /* Set row.  */
            DATA(2);
P
pbrook 已提交
111
            s->row = s->row_start = s->cmd_data[0] % 80;
P
pbrook 已提交
112 113 114 115 116 117 118 119 120 121 122
            s->row_end = s->cmd_data[1] % 80;
            break;
        case 0x81: /* Set contrast */
            DATA(1);
            break;
        case 0x84: case 0x85: case 0x86: /* Max current.  */
            DATA(0);
            break;
        case 0xa0: /* Set remapping.  */
            /* FIXME: Implement this.  */
            DATA(1);
P
pbrook 已提交
123
            s->remap = s->cmd_data[0];
P
pbrook 已提交
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
            break;
        case 0xa1: /* Set display start line.  */
        case 0xa2: /* Set display offset.  */
            /* FIXME: Implement these.  */
            DATA(1);
            break;
        case 0xa4: /* Normal mode.  */
        case 0xa5: /* All on.  */
        case 0xa6: /* All off.  */
        case 0xa7: /* Inverse.  */
            /* FIXME: Implement these.  */
            DATA(0);
            break;
        case 0xa8: /* Set multiplex ratio.  */
        case 0xad: /* Set DC-DC converter.  */
            DATA(1);
            /* Ignored.  Don't care.  */
            break;
        case 0xae: /* Display off.  */
        case 0xaf: /* Display on.  */
            DATA(0);
            /* TODO: Implement power control.  */
            break;
        case 0xb1: /* Set phase length.  */
        case 0xb2: /* Set row period.  */
        case 0xb3: /* Set clock rate.  */
        case 0xbc: /* Set precharge.  */
        case 0xbe: /* Set VCOMH.  */
        case 0xbf: /* Set segment low.  */
            DATA(1);
            /* Ignored.  Don't care.  */
            break;
        case 0xb8: /* Set grey scale table.  */
            /* FIXME: Implement this.  */
            DATA(8);
            break;
        case 0xe3: /* NOP.  */
            DATA(0);
            break;
P
pbrook 已提交
163 164 165
        case 0xff: /* Nasty hack because we don't handle chip selects
                      properly.  */
            break;
P
pbrook 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
        default:
            BADF("Unknown command: 0x%x\n", data);
        }
        s->cmd_len = 0;
        return 0;
    }
    return 0;
}

static void ssd0323_update_display(void *opaque)
{
    ssd0323_state *s = (ssd0323_state *)opaque;
    uint8_t *dest;
    uint8_t *src;
    int x;
    int y;
    int i;
    int line;
    char *colors[16];
    char colortab[MAGNIFY * 64];
    char *p;
    int dest_width;

P
pbrook 已提交
189 190 191
    if (!s->redraw)
        return;

192
    switch (ds_get_bits_per_pixel(s->ds)) {
P
pbrook 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
    case 0:
        return;
    case 15:
        dest_width = 2;
        break;
    case 16:
        dest_width = 2;
        break;
    case 24:
        dest_width = 3;
        break;
    case 32:
        dest_width = 4;
        break;
    default:
        BADF("Bad color depth\n");
        return;
    }
    p = colortab;
    for (i = 0; i < 16; i++) {
        int n;
        colors[i] = p;
215
        switch (ds_get_bits_per_pixel(s->ds)) {
P
pbrook 已提交
216
        case 15:
P
pbrook 已提交
217 218 219
            n = i * 2 + (i >> 3);
            p[0] = n | (n << 5);
            p[1] = (n << 2) | (n >> 3);
P
pbrook 已提交
220 221
            break;
        case 16:
P
pbrook 已提交
222 223 224
            n = i * 2 + (i >> 3);
            p[0] = n | (n << 6) | ((n << 1) & 0x20);
            p[1] = (n << 3) | (n >> 2);
P
pbrook 已提交
225 226 227
            break;
        case 24:
        case 32:
P
pbrook 已提交
228 229
            n = (i << 4) | i;
            p[0] = p[1] = p[2] = n;
P
pbrook 已提交
230 231 232 233 234
            break;
        default:
            BADF("Bad color depth\n");
            return;
        }
P
pbrook 已提交
235 236 237
        p += dest_width;
    }
    /* TODO: Implement row/column remapping.  */
238
    dest = ds_get_data(s->ds);
P
pbrook 已提交
239 240 241 242 243 244 245 246 247
    for (y = 0; y < 64; y++) {
        line = y;
        src = s->framebuffer + 64 * line;
        for (x = 0; x < 64; x++) {
            int val;
            val = *src >> 4;
            for (i = 0; i < MAGNIFY; i++) {
                memcpy(dest, colors[val], dest_width);
                dest += dest_width;
P
pbrook 已提交
248
            }
P
pbrook 已提交
249 250 251 252
            val = *src & 0xf;
            for (i = 0; i < MAGNIFY; i++) {
                memcpy(dest, colors[val], dest_width);
                dest += dest_width;
P
pbrook 已提交
253
            }
P
pbrook 已提交
254 255 256 257 258 259
            src++;
        }
        for (i = 1; i < MAGNIFY; i++) {
            memcpy(dest, dest - dest_width * MAGNIFY * 128,
                   dest_width * 128 * MAGNIFY);
            dest += dest_width * 128 * MAGNIFY;
P
pbrook 已提交
260 261
        }
    }
P
pbrook 已提交
262
    s->redraw = 0;
P
pbrook 已提交
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
    dpy_update(s->ds, 0, 0, 128 * MAGNIFY, 64 * MAGNIFY);
}

static void ssd0323_invalidate_display(void * opaque)
{
    ssd0323_state *s = (ssd0323_state *)opaque;
    s->redraw = 1;
}

/* Command/data input.  */
static void ssd0323_cd(void *opaque, int n, int level)
{
    ssd0323_state *s = (ssd0323_state *)opaque;
    DPRINTF("%s mode\n", level ? "Data" : "Command");
    s->mode = level ? SSD0323_DATA : SSD0323_CMD;
}

P
pbrook 已提交
280 281
static void ssd0323_save(QEMUFile *f, void *opaque)
{
282
    SSISlave *ss = SSI_SLAVE(opaque);
P
pbrook 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
    ssd0323_state *s = (ssd0323_state *)opaque;
    int i;

    qemu_put_be32(f, s->cmd_len);
    qemu_put_be32(f, s->cmd);
    for (i = 0; i < 8; i++)
        qemu_put_be32(f, s->cmd_data[i]);
    qemu_put_be32(f, s->row);
    qemu_put_be32(f, s->row_start);
    qemu_put_be32(f, s->row_end);
    qemu_put_be32(f, s->col);
    qemu_put_be32(f, s->col_start);
    qemu_put_be32(f, s->col_end);
    qemu_put_be32(f, s->redraw);
    qemu_put_be32(f, s->remap);
    qemu_put_be32(f, s->mode);
    qemu_put_buffer(f, s->framebuffer, sizeof(s->framebuffer));
300 301

    qemu_put_be32(f, ss->cs);
P
pbrook 已提交
302 303 304 305
}

static int ssd0323_load(QEMUFile *f, void *opaque, int version_id)
{
306
    SSISlave *ss = SSI_SLAVE(opaque);
P
pbrook 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
    ssd0323_state *s = (ssd0323_state *)opaque;
    int i;

    if (version_id != 1)
        return -EINVAL;

    s->cmd_len = qemu_get_be32(f);
    s->cmd = qemu_get_be32(f);
    for (i = 0; i < 8; i++)
        s->cmd_data[i] = qemu_get_be32(f);
    s->row = qemu_get_be32(f);
    s->row_start = qemu_get_be32(f);
    s->row_end = qemu_get_be32(f);
    s->col = qemu_get_be32(f);
    s->col_start = qemu_get_be32(f);
    s->col_end = qemu_get_be32(f);
    s->redraw = qemu_get_be32(f);
    s->remap = qemu_get_be32(f);
    s->mode = qemu_get_be32(f);
    qemu_get_buffer(f, s->framebuffer, sizeof(s->framebuffer));

328 329
    ss->cs = qemu_get_be32(f);

P
pbrook 已提交
330 331 332
    return 0;
}

333
static int ssd0323_init(SSISlave *dev)
P
pbrook 已提交
334
{
P
Paul Brook 已提交
335
    ssd0323_state *s = FROM_SSI_SLAVE(ssd0323_state, dev);
P
pbrook 已提交
336 337 338

    s->col_end = 63;
    s->row_end = 79;
339 340 341 342
    s->ds = graphic_console_init(ssd0323_update_display,
                                 ssd0323_invalidate_display,
                                 NULL, NULL, s);
    qemu_console_resize(s->ds, 128 * MAGNIFY, 64 * MAGNIFY);
P
pbrook 已提交
343

P
Paul Brook 已提交
344
    qdev_init_gpio_in(&dev->qdev, ssd0323_cd, 1);
P
pbrook 已提交
345

A
Alex Williamson 已提交
346 347
    register_savevm(&dev->qdev, "ssd0323_oled", -1, 1,
                    ssd0323_save, ssd0323_load, s);
348
    return 0;
P
Paul Brook 已提交
349
}
P
pbrook 已提交
350

351 352 353 354 355 356 357 358
static void ssd0323_class_init(ObjectClass *klass, void *data)
{
    SSISlaveClass *k = SSI_SLAVE_CLASS(klass);

    k->init = ssd0323_init;
    k->transfer = ssd0323_transfer;
}

359 360 361 362 363
static TypeInfo ssd0323_info = {
    .name          = "ssd0323",
    .parent        = TYPE_SSI_SLAVE,
    .instance_size = sizeof(ssd0323_state),
    .class_init    = ssd0323_class_init,
P
Paul Brook 已提交
364 365
};

A
Andreas Färber 已提交
366
static void ssd03232_register_types(void)
P
Paul Brook 已提交
367
{
368
    type_register_static(&ssd0323_info);
P
pbrook 已提交
369
}
P
Paul Brook 已提交
370

A
Andreas Färber 已提交
371
type_init(ssd03232_register_types)