pflash_cfi01.c 17.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *  CFI parallel flash with Intel command set emulation
 *
 *  Copyright (c) 2006 Thorsten Zitterell
 *  Copyright (c) 2005 Jocelyn Mayer
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 */

/*
 * For now, this code can emulate flashes of 1, 2 or 4 bytes width.
 * Supported commands/modes are:
 * - flash read
 * - flash write
 * - flash ID read
 * - sector erase
 * - CFI queries
 *
 * It does not support timings
 * It does not support flash interleaving
 * It does not implement software data protection as found in many real chips
 * It does not implement erase suspend/resume commands
 * It does not implement multiple sectors erase
 *
 * It does not implement much more ...
 */

P
pbrook 已提交
39 40 41 42
#include "hw.h"
#include "flash.h"
#include "block.h"
#include "qemu-timer.h"
43

44
#define PFLASH_BUG(fmt, ...) \
45
do { \
46
    printf("PFLASH: Possible BUG - " fmt, ## __VA_ARGS__); \
47 48 49 50 51
    exit(1); \
} while(0)

/* #define PFLASH_DEBUG */
#ifdef PFLASH_DEBUG
52
#define DPRINTF(fmt, ...)                          \
53
do {                                               \
54
    printf("PFLASH: " fmt , ## __VA_ARGS__);       \
55 56
} while (0)
#else
57
#define DPRINTF(fmt, ...) do { } while (0)
58 59
#endif

A
Anthony Liguori 已提交
60
struct pflash_t {
61
    BlockDriverState *bs;
A
Anthony Liguori 已提交
62 63 64
    target_phys_addr_t base;
    target_phys_addr_t sector_len;
    target_phys_addr_t total_len;
65 66 67 68 69 70 71 72 73
    int width;
    int wcycle; /* if 0, the flash is read normally */
    int bypass;
    int ro;
    uint8_t cmd;
    uint8_t status;
    uint16_t ident[4];
    uint8_t cfi_len;
    uint8_t cfi_table[0x52];
A
Anthony Liguori 已提交
74
    target_phys_addr_t counter;
E
Edgar E. Iglesias 已提交
75
    unsigned int writeblock_size;
76
    QEMUTimer *timer;
A
Anthony Liguori 已提交
77
    ram_addr_t off;
78 79 80 81 82 83
    int fl_mem;
    void *storage;
};

static void pflash_timer (void *opaque)
{
A
Anthony Liguori 已提交
84
    pflash_t *pfl = opaque;
85 86 87 88 89 90 91 92 93 94 95 96 97 98

    DPRINTF("%s: command %02x done\n", __func__, pfl->cmd);
    /* Reset flash */
    pfl->status ^= 0x80;
    if (pfl->bypass) {
        pfl->wcycle = 2;
    } else {
        cpu_register_physical_memory(pfl->base, pfl->total_len,
                        pfl->off | IO_MEM_ROMD | pfl->fl_mem);
        pfl->wcycle = 0;
    }
    pfl->cmd = 0;
}

A
Anthony Liguori 已提交
99
static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset,
100
                             int width)
101
{
A
Anthony Liguori 已提交
102
    target_phys_addr_t boff;
103 104 105 106 107 108 109 110 111 112 113
    uint32_t ret;
    uint8_t *p;

    ret = -1;
    boff = offset & 0xFF; /* why this here ?? */

    if (pfl->width == 2)
        boff = boff >> 1;
    else if (pfl->width == 4)
        boff = boff >> 2;

114 115
#if 0
    DPRINTF("%s: reading offset " TARGET_FMT_plx " under cmd %02x width %d\n",
116
            __func__, offset, pfl->cmd, width);
117
#endif
118 119 120 121 122 123 124
    switch (pfl->cmd) {
    case 0x00:
        /* Flash area read */
        p = pfl->storage;
        switch (width) {
        case 1:
            ret = p[offset];
125
            DPRINTF("%s: data offset " TARGET_FMT_plx " %02x\n",
T
ths 已提交
126
                    __func__, offset, ret);
127 128 129 130 131 132 133 134 135
            break;
        case 2:
#if defined(TARGET_WORDS_BIGENDIAN)
            ret = p[offset] << 8;
            ret |= p[offset + 1];
#else
            ret = p[offset];
            ret |= p[offset + 1] << 8;
#endif
136
            DPRINTF("%s: data offset " TARGET_FMT_plx " %04x\n",
T
ths 已提交
137
                    __func__, offset, ret);
138 139 140 141 142 143 144 145 146 147 148 149 150 151
            break;
        case 4:
#if defined(TARGET_WORDS_BIGENDIAN)
            ret = p[offset] << 24;
            ret |= p[offset + 1] << 16;
            ret |= p[offset + 2] << 8;
            ret |= p[offset + 3];
#else
            ret = p[offset];
            ret |= p[offset + 1] << 8;
            ret |= p[offset + 1] << 8;
            ret |= p[offset + 2] << 16;
            ret |= p[offset + 3] << 24;
#endif
152
            DPRINTF("%s: data offset " TARGET_FMT_plx " %08x\n",
T
ths 已提交
153
                    __func__, offset, ret);
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
            break;
        default:
            DPRINTF("BUG in %s\n", __func__);
        }

        break;
    case 0x20: /* Block erase */
    case 0x50: /* Clear status register */
    case 0x60: /* Block /un)lock */
    case 0x70: /* Status Register */
    case 0xe8: /* Write block */
        /* Status register read */
        ret = pfl->status;
        DPRINTF("%s: status %x\n", __func__, ret);
        break;
    case 0x98: /* Query mode */
        if (boff > pfl->cfi_len)
            ret = 0;
        else
            ret = pfl->cfi_table[boff];
        break;
    default:
        /* This should never happen : reset state & treat it as a read */
        DPRINTF("%s: unknown command state: %x\n", __func__, pfl->cmd);
        pfl->wcycle = 0;
        pfl->cmd = 0;
    }
    return ret;
}

/* update flash content on disk */
A
Anthony Liguori 已提交
185
static void pflash_update(pflash_t *pfl, int offset,
186 187 188 189 190 191 192 193 194 195 196 197 198
                          int size)
{
    int offset_end;
    if (pfl->bs) {
        offset_end = offset + size;
        /* round to sectors */
        offset = offset >> 9;
        offset_end = (offset_end + 511) >> 9;
        bdrv_write(pfl->bs, offset, pfl->storage + (offset << 9),
                   offset_end - offset);
    }
}

A
Anthony Liguori 已提交
199
static inline void pflash_data_write(pflash_t *pfl, target_phys_addr_t offset,
200 201 202 203
                          uint32_t value, int width)
{
    uint8_t *p = pfl->storage;

204 205
    DPRINTF("%s: block write offset " TARGET_FMT_plx
            " value %x counter " TARGET_FMT_plx "\n",
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
            __func__, offset, value, pfl->counter);
    switch (width) {
    case 1:
        p[offset] = value;
        break;
    case 2:
#if defined(TARGET_WORDS_BIGENDIAN)
        p[offset] = value >> 8;
        p[offset + 1] = value;
#else
        p[offset] = value;
        p[offset + 1] = value >> 8;
#endif
        break;
    case 4:
#if defined(TARGET_WORDS_BIGENDIAN)
        p[offset] = value >> 24;
        p[offset + 1] = value >> 16;
        p[offset + 2] = value >> 8;
        p[offset + 3] = value;
#else
        p[offset] = value;
        p[offset + 1] = value >> 8;
        p[offset + 2] = value >> 16;
        p[offset + 3] = value >> 24;
#endif
        break;
    }

}

A
Anthony Liguori 已提交
237
static void pflash_write(pflash_t *pfl, target_phys_addr_t offset,
238
                         uint32_t value, int width)
239 240 241 242 243 244
{
    uint8_t *p;
    uint8_t cmd;

    cmd = value;

245
    DPRINTF("%s: writing offset " TARGET_FMT_plx " value %08x width %d wcycle 0x%x\n",
T
ths 已提交
246
            __func__, offset, value, width, pfl->wcycle);
247

248 249 250 251
    if (!pfl->wcycle) {
        /* Set the device in I/O access mode */
        cpu_register_physical_memory(pfl->base, pfl->total_len, pfl->fl_mem);
    }
252 253 254 255 256 257 258

    switch (pfl->wcycle) {
    case 0:
        /* read mode */
        switch (cmd) {
        case 0x00: /* ??? */
            goto reset_flash;
259 260
        case 0x10: /* Single Byte Program */
        case 0x40: /* Single Byte Program */
261
            DPRINTF("%s: Single Byte Program\n", __func__);
262
            break;
263 264 265 266
        case 0x20: /* Block erase */
            p = pfl->storage;
            offset &= ~(pfl->sector_len - 1);

267 268
            DPRINTF("%s: block erase at " TARGET_FMT_plx " bytes "
                    TARGET_FMT_plx "\n",
T
ths 已提交
269
                    __func__, offset, pfl->sector_len);
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303

            memset(p + offset, 0xff, pfl->sector_len);
            pflash_update(pfl, offset, pfl->sector_len);
            pfl->status |= 0x80; /* Ready! */
            break;
        case 0x50: /* Clear status bits */
            DPRINTF("%s: Clear status bits\n", __func__);
            pfl->status = 0x0;
            goto reset_flash;
        case 0x60: /* Block (un)lock */
            DPRINTF("%s: Block unlock\n", __func__);
            break;
        case 0x70: /* Status Register */
            DPRINTF("%s: Read status register\n", __func__);
            pfl->cmd = cmd;
            return;
        case 0x98: /* CFI query */
            DPRINTF("%s: CFI query\n", __func__);
            break;
        case 0xe8: /* Write to buffer */
            DPRINTF("%s: Write to buffer\n", __func__);
            pfl->status |= 0x80; /* Ready! */
            break;
        case 0xff: /* Read array mode */
            DPRINTF("%s: Read array mode\n", __func__);
            goto reset_flash;
        default:
            goto error_flash;
        }
        pfl->wcycle++;
        pfl->cmd = cmd;
        return;
    case 1:
        switch (pfl->cmd) {
304 305 306 307
        case 0x10: /* Single Byte Program */
        case 0x40: /* Single Byte Program */
            DPRINTF("%s: Single Byte Program\n", __func__);
            pflash_data_write(pfl, offset, value, width);
E
Edgar E. Iglesias 已提交
308
            pflash_update(pfl, offset, width);
309 310 311
            pfl->status |= 0x80; /* Ready! */
            pfl->wcycle = 0;
        break;
312 313 314
        case 0x20: /* Block erase */
        case 0x28:
            if (cmd == 0xd0) { /* confirm */
315
                pfl->wcycle = 0;
316
                pfl->status |= 0x80;
A
aurel32 已提交
317
            } else if (cmd == 0xff) { /* read array mode */
318 319 320 321 322 323
                goto reset_flash;
            } else
                goto error_flash;

            break;
        case 0xe8:
324 325
            DPRINTF("%s: block write of %x bytes\n", __func__, value);
            pfl->counter = value;
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
            pfl->wcycle++;
            break;
        case 0x60:
            if (cmd == 0xd0) {
                pfl->wcycle = 0;
                pfl->status |= 0x80;
            } else if (cmd == 0x01) {
                pfl->wcycle = 0;
                pfl->status |= 0x80;
            } else if (cmd == 0xff) {
                goto reset_flash;
            } else {
                DPRINTF("%s: Unknown (un)locking command\n", __func__);
                goto reset_flash;
            }
            break;
        case 0x98:
            if (cmd == 0xff) {
                goto reset_flash;
            } else {
                DPRINTF("%s: leaving query mode\n", __func__);
            }
            break;
        default:
            goto error_flash;
        }
        return;
    case 2:
        switch (pfl->cmd) {
        case 0xe8: /* Block write */
356
            pflash_data_write(pfl, offset, value, width);
357 358 359 360

            pfl->status |= 0x80;

            if (!pfl->counter) {
E
Edgar E. Iglesias 已提交
361 362 363
                target_phys_addr_t mask = pfl->writeblock_size - 1;
                mask = ~mask;

364 365
                DPRINTF("%s: block write finished\n", __func__);
                pfl->wcycle++;
E
Edgar E. Iglesias 已提交
366 367
                /* Flush the entire write buffer onto backing storage.  */
                pflash_update(pfl, offset & mask, pfl->writeblock_size);
368 369 370 371
            }

            pfl->counter--;
            break;
B
balrog 已提交
372 373
        default:
            goto error_flash;
374 375 376 377 378 379 380 381 382 383 384
        }
        return;
    case 3: /* Confirm mode */
        switch (pfl->cmd) {
        case 0xe8: /* Block write */
            if (cmd == 0xd0) {
                pfl->wcycle = 0;
                pfl->status |= 0x80;
            } else {
                DPRINTF("%s: unknown command for \"write block\"\n", __func__);
                PFLASH_BUG("Write block confirm");
B
balrog 已提交
385
                goto reset_flash;
386
            }
B
balrog 已提交
387 388 389
            break;
        default:
            goto error_flash;
390 391 392 393 394 395 396 397 398 399 400
        }
        return;
    default:
        /* Should never happen */
        DPRINTF("%s: invalid write state\n",  __func__);
        goto reset_flash;
    }
    return;

 error_flash:
    printf("%s: Unimplemented flash cmd sequence "
401
           "(offset " TARGET_FMT_plx ", wcycle 0x%x cmd 0x%x value 0x%x)\n",
T
ths 已提交
402
           __func__, offset, pfl->wcycle, pfl->cmd, value);
403 404 405 406 407 408 409 410 411 412 413 414

 reset_flash:
    cpu_register_physical_memory(pfl->base, pfl->total_len,
                    pfl->off | IO_MEM_ROMD | pfl->fl_mem);

    pfl->bypass = 0;
    pfl->wcycle = 0;
    pfl->cmd = 0;
    return;
}


A
Anthony Liguori 已提交
415
static uint32_t pflash_readb (void *opaque, target_phys_addr_t addr)
416 417 418 419
{
    return pflash_read(opaque, addr, 1);
}

A
Anthony Liguori 已提交
420
static uint32_t pflash_readw (void *opaque, target_phys_addr_t addr)
421
{
A
Anthony Liguori 已提交
422
    pflash_t *pfl = opaque;
423 424 425 426

    return pflash_read(pfl, addr, 2);
}

A
Anthony Liguori 已提交
427
static uint32_t pflash_readl (void *opaque, target_phys_addr_t addr)
428
{
A
Anthony Liguori 已提交
429
    pflash_t *pfl = opaque;
430 431 432 433

    return pflash_read(pfl, addr, 4);
}

A
Anthony Liguori 已提交
434
static void pflash_writeb (void *opaque, target_phys_addr_t addr,
435 436 437 438 439
                           uint32_t value)
{
    pflash_write(opaque, addr, value, 1);
}

A
Anthony Liguori 已提交
440
static void pflash_writew (void *opaque, target_phys_addr_t addr,
441 442
                           uint32_t value)
{
A
Anthony Liguori 已提交
443
    pflash_t *pfl = opaque;
444 445 446 447

    pflash_write(pfl, addr, value, 2);
}

A
Anthony Liguori 已提交
448
static void pflash_writel (void *opaque, target_phys_addr_t addr,
449 450
                           uint32_t value)
{
A
Anthony Liguori 已提交
451
    pflash_t *pfl = opaque;
452 453 454 455

    pflash_write(pfl, addr, value, 4);
}

456
static CPUWriteMemoryFunc * const pflash_write_ops[] = {
457 458 459 460 461
    &pflash_writeb,
    &pflash_writew,
    &pflash_writel,
};

462
static CPUReadMemoryFunc * const pflash_read_ops[] = {
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
    &pflash_readb,
    &pflash_readw,
    &pflash_readl,
};

/* Count trailing zeroes of a 32 bits quantity */
static int ctz32 (uint32_t n)
{
    int ret;

    ret = 0;
    if (!(n & 0xFFFF)) {
        ret += 16;
        n = n >> 16;
    }
    if (!(n & 0xFF)) {
        ret += 8;
        n = n >> 8;
    }
    if (!(n & 0xF)) {
        ret += 4;
        n = n >> 4;
    }
    if (!(n & 0x3)) {
        ret += 2;
        n = n >> 2;
    }
    if (!(n & 0x1)) {
        ret++;
        n = n >> 1;
    }
#if 0 /* This is not necessary as n is never 0 */
    if (!n)
        ret++;
#endif

    return ret;
}

A
Anthony Liguori 已提交
502
pflash_t *pflash_cfi01_register(target_phys_addr_t base, ram_addr_t off,
T
ths 已提交
503
                                BlockDriverState *bs, uint32_t sector_len,
B
balrog 已提交
504 505 506
                                int nb_blocs, int width,
                                uint16_t id0, uint16_t id1,
                                uint16_t id2, uint16_t id3)
507
{
A
Anthony Liguori 已提交
508 509
    pflash_t *pfl;
    target_phys_addr_t total_len;
510
    int ret;
511 512 513 514

    total_len = sector_len * nb_blocs;

    /* XXX: to be fixed */
T
ths 已提交
515
#if 0
516 517 518
    if (total_len != (8 * 1024 * 1024) && total_len != (16 * 1024 * 1024) &&
        total_len != (32 * 1024 * 1024) && total_len != (64 * 1024 * 1024))
        return NULL;
T
ths 已提交
519
#endif
520

A
Anthony Liguori 已提交
521
    pfl = qemu_mallocz(sizeof(pflash_t));
522

P
pbrook 已提交
523 524
    /* FIXME: Allocate ram ourselves.  */
    pfl->storage = qemu_get_ram_ptr(off);
525
    pfl->fl_mem = cpu_register_io_memory(
526 527 528 529 530 531 532 533
                    pflash_read_ops, pflash_write_ops, pfl);
    pfl->off = off;
    cpu_register_physical_memory(base, total_len,
                    off | pfl->fl_mem | IO_MEM_ROMD);

    pfl->bs = bs;
    if (pfl->bs) {
        /* read the initial flash content */
534 535 536 537 538 539
        ret = bdrv_read(pfl->bs, 0, pfl->storage, total_len >> 9);
        if (ret < 0) {
            cpu_unregister_io_memory(pfl->fl_mem);
            qemu_free(pfl);
            return NULL;
        }
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
    }
#if 0 /* XXX: there should be a bit to set up read-only,
       *      the same way the hardware does (with WP pin).
       */
    pfl->ro = 1;
#else
    pfl->ro = 0;
#endif
    pfl->timer = qemu_new_timer(vm_clock, pflash_timer, pfl);
    pfl->base = base;
    pfl->sector_len = sector_len;
    pfl->total_len = total_len;
    pfl->width = width;
    pfl->wcycle = 0;
    pfl->cmd = 0;
    pfl->status = 0;
    pfl->ident[0] = id0;
    pfl->ident[1] = id1;
    pfl->ident[2] = id2;
    pfl->ident[3] = id3;
    /* Hardcoded CFI table */
    pfl->cfi_len = 0x52;
    /* Standard "QRY" string */
    pfl->cfi_table[0x10] = 'Q';
    pfl->cfi_table[0x11] = 'R';
    pfl->cfi_table[0x12] = 'Y';
    /* Command set (Intel) */
    pfl->cfi_table[0x13] = 0x01;
    pfl->cfi_table[0x14] = 0x00;
    /* Primary extended table address (none) */
    pfl->cfi_table[0x15] = 0x31;
    pfl->cfi_table[0x16] = 0x00;
    /* Alternate command set (none) */
    pfl->cfi_table[0x17] = 0x00;
    pfl->cfi_table[0x18] = 0x00;
    /* Alternate extended table (none) */
    pfl->cfi_table[0x19] = 0x00;
    pfl->cfi_table[0x1A] = 0x00;
    /* Vcc min */
    pfl->cfi_table[0x1B] = 0x45;
    /* Vcc max */
    pfl->cfi_table[0x1C] = 0x55;
    /* Vpp min (no Vpp pin) */
    pfl->cfi_table[0x1D] = 0x00;
    /* Vpp max (no Vpp pin) */
    pfl->cfi_table[0x1E] = 0x00;
    /* Reserved */
    pfl->cfi_table[0x1F] = 0x07;
    /* Timeout for min size buffer write */
    pfl->cfi_table[0x20] = 0x07;
    /* Typical timeout for block erase */
    pfl->cfi_table[0x21] = 0x0a;
    /* Typical timeout for full chip erase (4096 ms) */
    pfl->cfi_table[0x22] = 0x00;
    /* Reserved */
    pfl->cfi_table[0x23] = 0x04;
    /* Max timeout for buffer write */
    pfl->cfi_table[0x24] = 0x04;
    /* Max timeout for block erase */
    pfl->cfi_table[0x25] = 0x04;
    /* Max timeout for chip erase */
    pfl->cfi_table[0x26] = 0x00;
    /* Device size */
    pfl->cfi_table[0x27] = ctz32(total_len); // + 1;
    /* Flash device interface (8 & 16 bits) */
    pfl->cfi_table[0x28] = 0x02;
    pfl->cfi_table[0x29] = 0x00;
    /* Max number of bytes in multi-bytes write */
608 609 610 611 612
    if (width == 1) {
        pfl->cfi_table[0x2A] = 0x08;
    } else {
        pfl->cfi_table[0x2A] = 0x0B;
    }
E
Edgar E. Iglesias 已提交
613 614
    pfl->writeblock_size = 1 << pfl->cfi_table[0x2A];

615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
    pfl->cfi_table[0x2B] = 0x00;
    /* Number of erase block regions (uniform) */
    pfl->cfi_table[0x2C] = 0x01;
    /* Erase block region 1 */
    pfl->cfi_table[0x2D] = nb_blocs - 1;
    pfl->cfi_table[0x2E] = (nb_blocs - 1) >> 8;
    pfl->cfi_table[0x2F] = sector_len >> 8;
    pfl->cfi_table[0x30] = sector_len >> 16;

    /* Extended */
    pfl->cfi_table[0x31] = 'P';
    pfl->cfi_table[0x32] = 'R';
    pfl->cfi_table[0x33] = 'I';

    pfl->cfi_table[0x34] = '1';
    pfl->cfi_table[0x35] = '1';

    pfl->cfi_table[0x36] = 0x00;
    pfl->cfi_table[0x37] = 0x00;
    pfl->cfi_table[0x38] = 0x00;
    pfl->cfi_table[0x39] = 0x00;

    pfl->cfi_table[0x3a] = 0x00;

    pfl->cfi_table[0x3b] = 0x00;
    pfl->cfi_table[0x3c] = 0x00;

    return pfl;
}