pflash_cfi01.c 21.8 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 ...
 */

39 40
#include "hw/hw.h"
#include "hw/flash.h"
41
#include "block/block.h"
42
#include "qemu/timer.h"
43
#include "exec/address-spaces.h"
44
#include "qemu/host-utils.h"
45
#include "hw/sysbus.h"
46

47
#define PFLASH_BUG(fmt, ...) \
48
do { \
49
    fprintf(stderr, "PFLASH: Possible BUG - " fmt, ## __VA_ARGS__); \
50 51 52 53 54
    exit(1); \
} while(0)

/* #define PFLASH_DEBUG */
#ifdef PFLASH_DEBUG
55 56 57
#define DPRINTF(fmt, ...)                                   \
do {                                                        \
    fprintf(stderr, "PFLASH: " fmt , ## __VA_ARGS__);       \
58 59
} while (0)
#else
60
#define DPRINTF(fmt, ...) do { } while (0)
61 62
#endif

A
Anthony Liguori 已提交
63
struct pflash_t {
P
Peter Crosthwaite 已提交
64
    SysBusDevice busdev;
65
    BlockDriverState *bs;
P
Peter Crosthwaite 已提交
66 67 68 69
    uint32_t nb_blocs;
    uint64_t sector_len;
    uint8_t width;
    uint8_t be;
70 71 72 73
    int wcycle; /* if 0, the flash is read normally */
    int ro;
    uint8_t cmd;
    uint8_t status;
P
Peter Crosthwaite 已提交
74 75 76 77
    uint16_t ident0;
    uint16_t ident1;
    uint16_t ident2;
    uint16_t ident3;
78 79
    uint8_t cfi_len;
    uint8_t cfi_table[0x52];
A
Avi Kivity 已提交
80
    hwaddr counter;
E
Edgar E. Iglesias 已提交
81
    unsigned int writeblock_size;
82
    QEMUTimer *timer;
83
    MemoryRegion mem;
P
Peter Crosthwaite 已提交
84
    char *name;
85 86 87 88 89
    void *storage;
};

static void pflash_timer (void *opaque)
{
A
Anthony Liguori 已提交
90
    pflash_t *pfl = opaque;
91 92 93 94

    DPRINTF("%s: command %02x done\n", __func__, pfl->cmd);
    /* Reset flash */
    pfl->status ^= 0x80;
95 96
    memory_region_rom_device_set_readable(&pfl->mem, true);
    pfl->wcycle = 0;
97 98 99
    pfl->cmd = 0;
}

A
Avi Kivity 已提交
100
static uint32_t pflash_read (pflash_t *pfl, hwaddr offset,
B
Blue Swirl 已提交
101
                             int width, int be)
102
{
A
Avi Kivity 已提交
103
    hwaddr boff;
104 105 106 107 108 109 110 111 112 113 114
    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;

115 116
#if 0
    DPRINTF("%s: reading offset " TARGET_FMT_plx " under cmd %02x width %d\n",
117
            __func__, offset, pfl->cmd, width);
118
#endif
119
    switch (pfl->cmd) {
120 121 122 123 124 125
    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;
        /* fall through to read code */
126 127 128 129 130 131
    case 0x00:
        /* Flash area read */
        p = pfl->storage;
        switch (width) {
        case 1:
            ret = p[offset];
132
            DPRINTF("%s: data offset " TARGET_FMT_plx " %02x\n",
T
ths 已提交
133
                    __func__, offset, ret);
134 135
            break;
        case 2:
B
Blue Swirl 已提交
136 137 138 139 140 141 142
            if (be) {
                ret = p[offset] << 8;
                ret |= p[offset + 1];
            } else {
                ret = p[offset];
                ret |= p[offset + 1] << 8;
            }
143
            DPRINTF("%s: data offset " TARGET_FMT_plx " %04x\n",
T
ths 已提交
144
                    __func__, offset, ret);
145 146
            break;
        case 4:
B
Blue Swirl 已提交
147 148 149 150 151 152 153 154 155 156 157
            if (be) {
                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 + 2] << 16;
                ret |= p[offset + 3] << 24;
            }
158
            DPRINTF("%s: data offset " TARGET_FMT_plx " %08x\n",
T
ths 已提交
159
                    __func__, offset, ret);
160 161 162 163 164 165
            break;
        default:
            DPRINTF("BUG in %s\n", __func__);
        }

        break;
166
    case 0x10: /* Single byte program */
167
    case 0x20: /* Block erase */
168 169
    case 0x28: /* Block erase */
    case 0x40: /* single byte program */
170 171 172 173 174 175 176 177
    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;
178 179 180
    case 0x90:
        switch (boff) {
        case 0:
P
Peter Crosthwaite 已提交
181
            ret = pfl->ident0 << 8 | pfl->ident1;
182 183 184
            DPRINTF("%s: Manufacturer Code %04x\n", __func__, ret);
            break;
        case 1:
P
Peter Crosthwaite 已提交
185
            ret = pfl->ident2 << 8 | pfl->ident3;
186 187 188
            DPRINTF("%s: Device ID Code %04x\n", __func__, ret);
            break;
        default:
189 190
            DPRINTF("%s: Read Device Information boff=%x\n", __func__,
                    (unsigned)boff);
191 192 193 194
            ret = 0;
            break;
        }
        break;
195 196 197 198 199 200 201 202 203 204 205
    case 0x98: /* Query mode */
        if (boff > pfl->cfi_len)
            ret = 0;
        else
            ret = pfl->cfi_table[boff];
        break;
    }
    return ret;
}

/* update flash content on disk */
A
Anthony Liguori 已提交
206
static void pflash_update(pflash_t *pfl, int offset,
207 208 209 210 211 212 213 214 215 216 217 218 219
                          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
Avi Kivity 已提交
220
static inline void pflash_data_write(pflash_t *pfl, hwaddr offset,
B
Blue Swirl 已提交
221
                                     uint32_t value, int width, int be)
222 223 224
{
    uint8_t *p = pfl->storage;

225 226
    DPRINTF("%s: block write offset " TARGET_FMT_plx
            " value %x counter " TARGET_FMT_plx "\n",
227 228 229 230 231 232
            __func__, offset, value, pfl->counter);
    switch (width) {
    case 1:
        p[offset] = value;
        break;
    case 2:
B
Blue Swirl 已提交
233 234 235 236 237 238 239
        if (be) {
            p[offset] = value >> 8;
            p[offset + 1] = value;
        } else {
            p[offset] = value;
            p[offset + 1] = value >> 8;
        }
240 241
        break;
    case 4:
B
Blue Swirl 已提交
242 243 244 245 246 247 248 249 250 251 252
        if (be) {
            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;
        }
253 254 255 256 257
        break;
    }

}

A
Avi Kivity 已提交
258
static void pflash_write(pflash_t *pfl, hwaddr offset,
B
Blue Swirl 已提交
259
                         uint32_t value, int width, int be)
260 261 262 263 264 265
{
    uint8_t *p;
    uint8_t cmd;

    cmd = value;

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

269 270
    if (!pfl->wcycle) {
        /* Set the device in I/O access mode */
271
        memory_region_rom_device_set_readable(&pfl->mem, false);
272
    }
273 274 275 276 277 278 279

    switch (pfl->wcycle) {
    case 0:
        /* read mode */
        switch (cmd) {
        case 0x00: /* ??? */
            goto reset_flash;
280 281
        case 0x10: /* Single Byte Program */
        case 0x40: /* Single Byte Program */
282
            DPRINTF("%s: Single Byte Program\n", __func__);
283
            break;
284 285 286 287
        case 0x20: /* Block erase */
            p = pfl->storage;
            offset &= ~(pfl->sector_len - 1);

P
Peter Crosthwaite 已提交
288 289
            DPRINTF("%s: block erase at " TARGET_FMT_plx " bytes %x\n",
                    __func__, offset, (unsigned)pfl->sector_len);
290

291 292 293 294 295 296
            if (!pfl->ro) {
                memset(p + offset, 0xff, pfl->sector_len);
                pflash_update(pfl, offset, pfl->sector_len);
            } else {
                pfl->status |= 0x20; /* Block erase error */
            }
297 298 299 300 301 302 303 304 305 306 307 308 309
            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;
310 311 312 313
        case 0x90: /* Read Device ID */
            DPRINTF("%s: Read Device information\n", __func__);
            pfl->cmd = cmd;
            return;
314 315 316 317 318 319 320
        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;
321 322 323
        case 0xf0: /* Probe for AMD flash */
            DPRINTF("%s: Probe for AMD flash\n", __func__);
            goto reset_flash;
324 325 326 327 328 329 330 331
        case 0xff: /* Read array mode */
            DPRINTF("%s: Read array mode\n", __func__);
            goto reset_flash;
        default:
            goto error_flash;
        }
        pfl->wcycle++;
        pfl->cmd = cmd;
332
        break;
333 334
    case 1:
        switch (pfl->cmd) {
335 336 337
        case 0x10: /* Single Byte Program */
        case 0x40: /* Single Byte Program */
            DPRINTF("%s: Single Byte Program\n", __func__);
338 339 340 341 342 343
            if (!pfl->ro) {
                pflash_data_write(pfl, offset, value, width, be);
                pflash_update(pfl, offset, width);
            } else {
                pfl->status |= 0x10; /* Programming error */
            }
344 345 346
            pfl->status |= 0x80; /* Ready! */
            pfl->wcycle = 0;
        break;
347 348 349
        case 0x20: /* Block erase */
        case 0x28:
            if (cmd == 0xd0) { /* confirm */
350
                pfl->wcycle = 0;
351
                pfl->status |= 0x80;
A
aurel32 已提交
352
            } else if (cmd == 0xff) { /* read array mode */
353 354 355 356 357 358
                goto reset_flash;
            } else
                goto error_flash;

            break;
        case 0xe8:
359 360
            DPRINTF("%s: block write of %x bytes\n", __func__, value);
            pfl->counter = value;
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
            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;
        }
387
        break;
388 389 390
    case 2:
        switch (pfl->cmd) {
        case 0xe8: /* Block write */
391 392 393 394 395
            if (!pfl->ro) {
                pflash_data_write(pfl, offset, value, width, be);
            } else {
                pfl->status |= 0x10; /* Programming error */
            }
396 397 398 399

            pfl->status |= 0x80;

            if (!pfl->counter) {
A
Avi Kivity 已提交
400
                hwaddr mask = pfl->writeblock_size - 1;
E
Edgar E. Iglesias 已提交
401 402
                mask = ~mask;

403 404
                DPRINTF("%s: block write finished\n", __func__);
                pfl->wcycle++;
405 406 407 408 409 410
                if (!pfl->ro) {
                    /* Flush the entire write buffer onto backing storage.  */
                    pflash_update(pfl, offset & mask, pfl->writeblock_size);
                } else {
                    pfl->status |= 0x10; /* Programming error */
                }
411 412 413 414
            }

            pfl->counter--;
            break;
B
balrog 已提交
415 416
        default:
            goto error_flash;
417
        }
418
        break;
419 420 421 422 423 424 425 426 427
    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 已提交
428
                goto reset_flash;
429
            }
B
balrog 已提交
430 431 432
            break;
        default:
            goto error_flash;
433
        }
434
        break;
435 436 437 438 439 440 441 442
    default:
        /* Should never happen */
        DPRINTF("%s: invalid write state\n",  __func__);
        goto reset_flash;
    }
    return;

 error_flash:
443 444 445
    qemu_log_mask(LOG_UNIMP, "%s: Unimplemented flash cmd sequence "
                  "(offset " TARGET_FMT_plx ", wcycle 0x%x cmd 0x%x value 0x%x)"
                  "\n", __func__, offset, pfl->wcycle, pfl->cmd, value);
446 447

 reset_flash:
448
    memory_region_rom_device_set_readable(&pfl->mem, true);
449 450 451 452 453 454

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


A
Avi Kivity 已提交
455
static uint32_t pflash_readb_be(void *opaque, hwaddr addr)
B
Blue Swirl 已提交
456 457 458 459
{
    return pflash_read(opaque, addr, 1, 1);
}

A
Avi Kivity 已提交
460
static uint32_t pflash_readb_le(void *opaque, hwaddr addr)
B
Blue Swirl 已提交
461 462 463 464
{
    return pflash_read(opaque, addr, 1, 0);
}

A
Avi Kivity 已提交
465
static uint32_t pflash_readw_be(void *opaque, hwaddr addr)
B
Blue Swirl 已提交
466 467 468 469 470 471
{
    pflash_t *pfl = opaque;

    return pflash_read(pfl, addr, 2, 1);
}

A
Avi Kivity 已提交
472
static uint32_t pflash_readw_le(void *opaque, hwaddr addr)
473
{
B
Blue Swirl 已提交
474 475 476
    pflash_t *pfl = opaque;

    return pflash_read(pfl, addr, 2, 0);
477 478
}

A
Avi Kivity 已提交
479
static uint32_t pflash_readl_be(void *opaque, hwaddr addr)
480
{
A
Anthony Liguori 已提交
481
    pflash_t *pfl = opaque;
482

B
Blue Swirl 已提交
483
    return pflash_read(pfl, addr, 4, 1);
484 485
}

A
Avi Kivity 已提交
486
static uint32_t pflash_readl_le(void *opaque, hwaddr addr)
487
{
A
Anthony Liguori 已提交
488
    pflash_t *pfl = opaque;
489

B
Blue Swirl 已提交
490
    return pflash_read(pfl, addr, 4, 0);
491 492
}

A
Avi Kivity 已提交
493
static void pflash_writeb_be(void *opaque, hwaddr addr,
B
Blue Swirl 已提交
494
                             uint32_t value)
495
{
B
Blue Swirl 已提交
496
    pflash_write(opaque, addr, value, 1, 1);
497 498
}

A
Avi Kivity 已提交
499
static void pflash_writeb_le(void *opaque, hwaddr addr,
B
Blue Swirl 已提交
500 501 502 503 504
                             uint32_t value)
{
    pflash_write(opaque, addr, value, 1, 0);
}

A
Avi Kivity 已提交
505
static void pflash_writew_be(void *opaque, hwaddr addr,
B
Blue Swirl 已提交
506
                             uint32_t value)
507
{
A
Anthony Liguori 已提交
508
    pflash_t *pfl = opaque;
509

B
Blue Swirl 已提交
510
    pflash_write(pfl, addr, value, 2, 1);
511 512
}

A
Avi Kivity 已提交
513
static void pflash_writew_le(void *opaque, hwaddr addr,
B
Blue Swirl 已提交
514
                             uint32_t value)
515
{
A
Anthony Liguori 已提交
516
    pflash_t *pfl = opaque;
517

B
Blue Swirl 已提交
518
    pflash_write(pfl, addr, value, 2, 0);
519 520
}

A
Avi Kivity 已提交
521
static void pflash_writel_be(void *opaque, hwaddr addr,
B
Blue Swirl 已提交
522 523 524 525 526 527 528
                             uint32_t value)
{
    pflash_t *pfl = opaque;

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

A
Avi Kivity 已提交
529
static void pflash_writel_le(void *opaque, hwaddr addr,
B
Blue Swirl 已提交
530 531 532 533 534 535 536
                             uint32_t value)
{
    pflash_t *pfl = opaque;

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

537 538 539 540 541 542
static const MemoryRegionOps pflash_cfi01_ops_be = {
    .old_mmio = {
        .read = { pflash_readb_be, pflash_readw_be, pflash_readl_be, },
        .write = { pflash_writeb_be, pflash_writew_be, pflash_writel_be, },
    },
    .endianness = DEVICE_NATIVE_ENDIAN,
543 544
};

545 546 547 548 549 550
static const MemoryRegionOps pflash_cfi01_ops_le = {
    .old_mmio = {
        .read = { pflash_readb_le, pflash_readw_le, pflash_readl_le, },
        .write = { pflash_writeb_le, pflash_writew_le, pflash_writel_le, },
    },
    .endianness = DEVICE_NATIVE_ENDIAN,
551 552
};

P
Peter Crosthwaite 已提交
553
static int pflash_cfi01_init(SysBusDevice *dev)
554
{
P
Peter Crosthwaite 已提交
555 556
    pflash_t *pfl = FROM_SYSBUS(typeof(*pfl), dev);
    uint64_t total_len;
557
    int ret;
558

P
Peter Crosthwaite 已提交
559
    total_len = pfl->sector_len * pfl->nb_blocs;
560 561

    /* XXX: to be fixed */
T
ths 已提交
562
#if 0
563 564 565
    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 已提交
566
#endif
567

568
    memory_region_init_rom_device(
P
Peter Crosthwaite 已提交
569 570 571
        &pfl->mem, pfl->be ? &pflash_cfi01_ops_be : &pflash_cfi01_ops_le, pfl,
        pfl->name, total_len);
    vmstate_register_ram(&pfl->mem, DEVICE(pfl));
572
    pfl->storage = memory_region_get_ram_ptr(&pfl->mem);
P
Peter Crosthwaite 已提交
573
    sysbus_init_mmio(dev, &pfl->mem);
574 575 576

    if (pfl->bs) {
        /* read the initial flash content */
577
        ret = bdrv_read(pfl->bs, 0, pfl->storage, total_len >> 9);
P
Peter Crosthwaite 已提交
578

579
        if (ret < 0) {
P
Peter Crosthwaite 已提交
580
            vmstate_unregister_ram(&pfl->mem, DEVICE(pfl));
581
            memory_region_destroy(&pfl->mem);
P
Peter Crosthwaite 已提交
582
            return 1;
583
        }
584
    }
585 586 587 588 589 590 591

    if (pfl->bs) {
        pfl->ro = bdrv_is_read_only(pfl->bs);
    } else {
        pfl->ro = 0;
    }

592
    pfl->timer = qemu_new_timer_ns(vm_clock, pflash_timer, pfl);
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 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->wcycle = 0;
    pfl->cmd = 0;
    pfl->status = 0;
    /* 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 */
P
Peter Crosthwaite 已提交
644
    if (pfl->width == 1) {
645 646 647 648
        pfl->cfi_table[0x2A] = 0x08;
    } else {
        pfl->cfi_table[0x2A] = 0x0B;
    }
E
Edgar E. Iglesias 已提交
649 650
    pfl->writeblock_size = 1 << pfl->cfi_table[0x2A];

651 652 653 654
    pfl->cfi_table[0x2B] = 0x00;
    /* Number of erase block regions (uniform) */
    pfl->cfi_table[0x2C] = 0x01;
    /* Erase block region 1 */
P
Peter Crosthwaite 已提交
655 656 657 658
    pfl->cfi_table[0x2D] = pfl->nb_blocs - 1;
    pfl->cfi_table[0x2E] = (pfl->nb_blocs - 1) >> 8;
    pfl->cfi_table[0x2F] = pfl->sector_len >> 8;
    pfl->cfi_table[0x30] = pfl->sector_len >> 16;
659 660 661 662 663 664 665

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

    pfl->cfi_table[0x34] = '1';
666
    pfl->cfi_table[0x35] = '0';
667 668 669 670 671 672 673 674 675 676 677

    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;

678 679
    pfl->cfi_table[0x3f] = 0x01; /* Number of protection fields */

P
Peter Crosthwaite 已提交
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
    return 0;
}

static Property pflash_cfi01_properties[] = {
    DEFINE_PROP_DRIVE("drive", struct pflash_t, bs),
    DEFINE_PROP_UINT32("num-blocks", struct pflash_t, nb_blocs, 0),
    DEFINE_PROP_UINT64("sector-length", struct pflash_t, sector_len, 0),
    DEFINE_PROP_UINT8("width", struct pflash_t, width, 0),
    DEFINE_PROP_UINT8("big-endian", struct pflash_t, be, 0),
    DEFINE_PROP_UINT16("id0", struct pflash_t, ident0, 0),
    DEFINE_PROP_UINT16("id1", struct pflash_t, ident1, 0),
    DEFINE_PROP_UINT16("id2", struct pflash_t, ident2, 0),
    DEFINE_PROP_UINT16("id3", struct pflash_t, ident3, 0),
    DEFINE_PROP_STRING("name", struct pflash_t, name),
    DEFINE_PROP_END_OF_LIST(),
};

static void pflash_cfi01_class_init(ObjectClass *klass, void *data)
{
    DeviceClass *dc = DEVICE_CLASS(klass);
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = pflash_cfi01_init;
    dc->props = pflash_cfi01_properties;
}


static const TypeInfo pflash_cfi01_info = {
    .name           = "cfi.pflash01",
    .parent         = TYPE_SYS_BUS_DEVICE,
    .instance_size  = sizeof(struct pflash_t),
    .class_init     = pflash_cfi01_class_init,
};

static void pflash_cfi01_register_types(void)
{
    type_register_static(&pflash_cfi01_info);
}

type_init(pflash_cfi01_register_types)

pflash_t *pflash_cfi01_register(hwaddr base,
                                DeviceState *qdev, const char *name,
                                hwaddr size,
                                BlockDriverState *bs,
                                uint32_t sector_len, int nb_blocs, int width,
                                uint16_t id0, uint16_t id1,
                                uint16_t id2, uint16_t id3, int be)
{
    DeviceState *dev = qdev_create(NULL, "cfi.pflash01");
730
    SysBusDevice *busdev = SYS_BUS_DEVICE(dev);
P
Peter Crosthwaite 已提交
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
    pflash_t *pfl = (pflash_t *)object_dynamic_cast(OBJECT(dev),
                                                    "cfi.pflash01");

    if (bs && qdev_prop_set_drive(dev, "drive", bs)) {
        abort();
    }
    qdev_prop_set_uint32(dev, "num-blocks", nb_blocs);
    qdev_prop_set_uint64(dev, "sector-length", sector_len);
    qdev_prop_set_uint8(dev, "width", width);
    qdev_prop_set_uint8(dev, "big-endian", !!be);
    qdev_prop_set_uint16(dev, "id0", id0);
    qdev_prop_set_uint16(dev, "id1", id1);
    qdev_prop_set_uint16(dev, "id2", id2);
    qdev_prop_set_uint16(dev, "id3", id3);
    qdev_prop_set_string(dev, "name", name);
    qdev_init_nofail(dev);

    sysbus_mmio_map(busdev, 0, base);
749 750
    return pfl;
}
751 752 753 754 755

MemoryRegion *pflash_cfi01_get_memory(pflash_t *fl)
{
    return &fl->mem;
}