pflash_cfi02.c 19.3 KB
Newer Older
1 2
/*
 *  CFI parallel flash with AMD command set emulation
3
 *
4 5 6 7 8 9 10 11 12 13 14 15 16
 *  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
17
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
 */

/*
 * 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
 * - chip erase
 * - unlock bypass command
 * - CFI queries
 *
 * It does not support flash interleaving.
 * It does not implement boot blocs with reduced size
 * 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
 */

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

//#define PFLASH_DEBUG
#ifdef PFLASH_DEBUG
45
#define DPRINTF(fmt, ...)                          \
46
do {                                               \
47
    printf("PFLASH: " fmt , ## __VA_ARGS__);       \
48 49
} while (0)
#else
50
#define DPRINTF(fmt, ...) do { } while (0)
51 52
#endif

A
Anthony Liguori 已提交
53
struct pflash_t {
54
    BlockDriverState *bs;
A
Anthony Liguori 已提交
55
    target_phys_addr_t base;
56
    uint32_t sector_len;
57 58
    uint32_t chip_len;
    int mappings;
59 60 61 62 63 64 65
    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];
66
    uint16_t unlock_addr[2];
67 68 69
    uint8_t cfi_len;
    uint8_t cfi_table[0x52];
    QEMUTimer *timer;
A
Anthony Liguori 已提交
70
    ram_addr_t off;
71
    int fl_mem;
72
    int rom_mode;
73 74 75
    void *storage;
};

A
Anthony Liguori 已提交
76
static void pflash_register_memory(pflash_t *pfl, int rom_mode)
77 78 79 80 81 82
{
    unsigned long phys_offset = pfl->fl_mem;
    int i;

    if (rom_mode)
        phys_offset |= pfl->off | IO_MEM_ROMD;
83
    pfl->rom_mode = rom_mode;
84 85 86 87 88 89

    for (i = 0; i < pfl->mappings; i++)
        cpu_register_physical_memory(pfl->base + i * pfl->chip_len,
                                     pfl->chip_len, phys_offset);
}

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

    DPRINTF("%s: command %02x done\n", __func__, pfl->cmd);
    /* Reset flash */
    pfl->status ^= 0x80;
    if (pfl->bypass) {
        pfl->wcycle = 2;
    } else {
100
        pflash_register_memory(pfl, 1);
101 102 103 104 105
        pfl->wcycle = 0;
    }
    pfl->cmd = 0;
}

106
static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset, int width)
107
{
108
    target_phys_addr_t boff;
109 110 111
    uint32_t ret;
    uint8_t *p;

112
    DPRINTF("%s: offset " TARGET_FMT_plx "\n", __func__, offset);
113
    ret = -1;
114 115 116 117
    if (pfl->rom_mode) {
        /* Lazy reset of to ROMD mode */
        if (pfl->wcycle == 0)
            pflash_register_memory(pfl, 1);
P
pbrook 已提交
118
    }
119
    offset &= pfl->chip_len - 1;
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 175 176 177 178 179 180 181 182 183 184 185 186
    boff = offset & 0xFF;
    if (pfl->width == 2)
        boff = boff >> 1;
    else if (pfl->width == 4)
        boff = boff >> 2;
    switch (pfl->cmd) {
    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;
    case 0x80:
        /* We accept reads during second unlock sequence... */
    case 0x00:
    flash_read:
        /* Flash area read */
        p = pfl->storage;
        switch (width) {
        case 1:
            ret = p[offset];
//            DPRINTF("%s: data offset %08x %02x\n", __func__, offset, ret);
            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
//            DPRINTF("%s: data offset %08x %04x\n", __func__, offset, ret);
            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 + 2] << 16;
            ret |= p[offset + 3] << 24;
#endif
//            DPRINTF("%s: data offset %08x %08x\n", __func__, offset, ret);
            break;
        }
        break;
    case 0x90:
        /* flash ID read */
        switch (boff) {
        case 0x00:
        case 0x01:
            ret = pfl->ident[boff & 0x01];
            break;
        case 0x02:
            ret = 0x00; /* Pretend all sectors are unprotected */
            break;
        case 0x0E:
        case 0x0F:
            if (pfl->ident[2 + (boff & 0x01)] == (uint8_t)-1)
                goto flash_read;
            ret = pfl->ident[2 + (boff & 0x01)];
            break;
        default:
            goto flash_read;
        }
187
        DPRINTF("%s: ID " TARGET_FMT_pld " %x\n", __func__, boff, ret);
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
        break;
    case 0xA0:
    case 0x10:
    case 0x30:
        /* Status register read */
        ret = pfl->status;
        DPRINTF("%s: status %x\n", __func__, ret);
        /* Toggle bit 6 */
        pfl->status ^= 0x40;
        break;
    case 0x98:
        /* CFI 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 已提交
211
static void pflash_update(pflash_t *pfl, int offset,
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;
220
        bdrv_write(pfl->bs, offset, pfl->storage + (offset << 9),
221 222 223 224
                   offset_end - offset);
    }
}

225 226
static void pflash_write (pflash_t *pfl, target_phys_addr_t offset,
                          uint32_t value, int width)
227
{
228
    target_phys_addr_t boff;
229 230 231
    uint8_t *p;
    uint8_t cmd;

J
j_mayer 已提交
232 233 234 235 236 237 238 239
    cmd = value;
    if (pfl->cmd != 0xA0 && cmd == 0xF0) {
#if 0
        DPRINTF("%s: flash reset asked (%02x %02x)\n",
                __func__, pfl->cmd, cmd);
#endif
        goto reset_flash;
    }
240
    DPRINTF("%s: offset " TARGET_FMT_plx " %08x %d %d\n", __func__,
J
j_mayer 已提交
241
            offset, value, width, pfl->wcycle);
242
    offset &= pfl->chip_len - 1;
243

244
    DPRINTF("%s: offset " TARGET_FMT_plx " %08x %d\n", __func__,
245
            offset, value, width);
246 247 248 249 250 251 252
    boff = offset & (pfl->sector_len - 1);
    if (pfl->width == 2)
        boff = boff >> 1;
    else if (pfl->width == 4)
        boff = boff >> 2;
    switch (pfl->wcycle) {
    case 0:
253 254 255
        /* Set the device in I/O access mode if required */
        if (pfl->rom_mode)
            pflash_register_memory(pfl, 0);
256 257 258 259 260 261 262 263 264
        /* We're in read mode */
    check_unlock0:
        if (boff == 0x55 && cmd == 0x98) {
        enter_CFI_mode:
            /* Enter CFI query mode */
            pfl->wcycle = 7;
            pfl->cmd = 0x98;
            return;
        }
265
        if (boff != pfl->unlock_addr[0] || cmd != 0xAA) {
266
            DPRINTF("%s: unlock0 failed " TARGET_FMT_plx " %02x %04x\n",
267
                    __func__, boff, cmd, pfl->unlock_addr[0]);
268 269 270 271 272 273 274
            goto reset_flash;
        }
        DPRINTF("%s: unlock sequence started\n", __func__);
        break;
    case 1:
        /* We started an unlock sequence */
    check_unlock1:
275
        if (boff != pfl->unlock_addr[1] || cmd != 0x55) {
276
            DPRINTF("%s: unlock1 failed " TARGET_FMT_plx " %02x\n", __func__,
277
                    boff, cmd);
278 279 280 281 282 283
            goto reset_flash;
        }
        DPRINTF("%s: unlock sequence done\n", __func__);
        break;
    case 2:
        /* We finished an unlock sequence */
284
        if (!pfl->bypass && boff != pfl->unlock_addr[0]) {
285
            DPRINTF("%s: command failed " TARGET_FMT_plx " %02x\n", __func__,
286
                    boff, cmd);
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
            goto reset_flash;
        }
        switch (cmd) {
        case 0x20:
            pfl->bypass = 1;
            goto do_bypass;
        case 0x80:
        case 0x90:
        case 0xA0:
            pfl->cmd = cmd;
            DPRINTF("%s: starting command %02x\n", __func__, cmd);
            break;
        default:
            DPRINTF("%s: unknown command %02x\n", __func__, cmd);
            goto reset_flash;
        }
        break;
    case 3:
        switch (pfl->cmd) {
        case 0x80:
            /* We need another unlock sequence */
            goto check_unlock0;
        case 0xA0:
310
            DPRINTF("%s: write data offset " TARGET_FMT_plx " %08x %d\n",
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
                    __func__, offset, value, width);
            p = pfl->storage;
            switch (width) {
            case 1:
                p[offset] &= value;
                pflash_update(pfl, offset, 1);
                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
                pflash_update(pfl, offset, 2);
                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
                pflash_update(pfl, offset, 4);
                break;
            }
            pfl->status = 0x00 | ~(value & 0x80);
            /* Let's pretend write is immediate */
            if (pfl->bypass)
                goto do_bypass;
            goto reset_flash;
        case 0x90:
            if (pfl->bypass && cmd == 0x00) {
                /* Unlock bypass reset */
                goto reset_flash;
            }
            /* We can enter CFI query mode from autoselect mode */
            if (boff == 0x55 && cmd == 0x98)
                goto enter_CFI_mode;
            /* No break here */
        default:
            DPRINTF("%s: invalid write for command %02x\n",
                    __func__, pfl->cmd);
            goto reset_flash;
        }
    case 4:
        switch (pfl->cmd) {
        case 0xA0:
            /* Ignore writes while flash data write is occuring */
            /* As we suppose write is immediate, this should never happen */
            return;
        case 0x80:
            goto check_unlock1;
        default:
            /* Should never happen */
            DPRINTF("%s: invalid command state %02x (wc 4)\n",
                    __func__, pfl->cmd);
            goto reset_flash;
        }
        break;
    case 5:
        switch (cmd) {
        case 0x10:
380
            if (boff != pfl->unlock_addr[0]) {
381
                DPRINTF("%s: chip erase: invalid address " TARGET_FMT_plx "\n",
382 383 384 385 386
                        __func__, offset);
                goto reset_flash;
            }
            /* Chip erase */
            DPRINTF("%s: start chip erase\n", __func__);
387
            memset(pfl->storage, 0xFF, pfl->chip_len);
388
            pfl->status = 0x00;
389
            pflash_update(pfl, 0, pfl->chip_len);
390
            /* Let's wait 5 seconds before chip erase is done */
391
            qemu_mod_timer(pfl->timer,
392
                           qemu_get_clock(vm_clock) + (get_ticks_per_sec() * 5));
393 394 395 396 397
            break;
        case 0x30:
            /* Sector erase */
            p = pfl->storage;
            offset &= ~(pfl->sector_len - 1);
398
            DPRINTF("%s: start sector erase at " TARGET_FMT_plx "\n", __func__,
399
                    offset);
400 401 402 403
            memset(p + offset, 0xFF, pfl->sector_len);
            pflash_update(pfl, offset, pfl->sector_len);
            pfl->status = 0x00;
            /* Let's wait 1/2 second before sector erase is done */
404
            qemu_mod_timer(pfl->timer,
405
                           qemu_get_clock(vm_clock) + (get_ticks_per_sec() / 2));
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
            break;
        default:
            DPRINTF("%s: invalid command %02x (wc 5)\n", __func__, cmd);
            goto reset_flash;
        }
        pfl->cmd = cmd;
        break;
    case 6:
        switch (pfl->cmd) {
        case 0x10:
            /* Ignore writes during chip erase */
            return;
        case 0x30:
            /* Ignore writes during sector erase */
            return;
        default:
            /* Should never happen */
            DPRINTF("%s: invalid command state %02x (wc 6)\n",
                    __func__, pfl->cmd);
            goto reset_flash;
        }
        break;
    case 7: /* Special value for CFI queries */
        DPRINTF("%s: invalid write in CFI query mode\n", __func__);
        goto reset_flash;
    default:
        /* Should never happen */
        DPRINTF("%s: invalid write state (wc 7)\n",  __func__);
        goto reset_flash;
    }
    pfl->wcycle++;

    return;

    /* Reset flash */
 reset_flash:
    pfl->bypass = 0;
    pfl->wcycle = 0;
    pfl->cmd = 0;
    return;

 do_bypass:
    pfl->wcycle = 2;
    pfl->cmd = 0;
    return;
}


A
Anthony Liguori 已提交
454
static uint32_t pflash_readb (void *opaque, target_phys_addr_t addr)
455 456 457 458
{
    return pflash_read(opaque, addr, 1);
}

A
Anthony Liguori 已提交
459
static uint32_t pflash_readw (void *opaque, target_phys_addr_t addr)
460
{
A
Anthony Liguori 已提交
461
    pflash_t *pfl = opaque;
462 463 464 465

    return pflash_read(pfl, addr, 2);
}

A
Anthony Liguori 已提交
466
static uint32_t pflash_readl (void *opaque, target_phys_addr_t addr)
467
{
A
Anthony Liguori 已提交
468
    pflash_t *pfl = opaque;
469 470 471 472

    return pflash_read(pfl, addr, 4);
}

A
Anthony Liguori 已提交
473
static void pflash_writeb (void *opaque, target_phys_addr_t addr,
474 475 476 477 478
                           uint32_t value)
{
    pflash_write(opaque, addr, value, 1);
}

A
Anthony Liguori 已提交
479
static void pflash_writew (void *opaque, target_phys_addr_t addr,
480 481
                           uint32_t value)
{
A
Anthony Liguori 已提交
482
    pflash_t *pfl = opaque;
483 484 485 486

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

A
Anthony Liguori 已提交
487
static void pflash_writel (void *opaque, target_phys_addr_t addr,
488 489
                           uint32_t value)
{
A
Anthony Liguori 已提交
490
    pflash_t *pfl = opaque;
491 492 493 494

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

495
static CPUWriteMemoryFunc * const pflash_write_ops[] = {
496 497 498 499 500
    &pflash_writeb,
    &pflash_writew,
    &pflash_writel,
};

501
static CPUReadMemoryFunc * const pflash_read_ops[] = {
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
    &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 已提交
541
pflash_t *pflash_cfi02_register(target_phys_addr_t base, ram_addr_t off,
542
                                BlockDriverState *bs, uint32_t sector_len,
543
                                int nb_blocs, int nb_mappings, int width,
B
balrog 已提交
544
                                uint16_t id0, uint16_t id1,
545 546
                                uint16_t id2, uint16_t id3,
                                uint16_t unlock_addr0, uint16_t unlock_addr1)
547
{
A
Anthony Liguori 已提交
548
    pflash_t *pfl;
549
    int32_t chip_len;
550
    int ret;
551

552
    chip_len = sector_len * nb_blocs;
553
    /* XXX: to be fixed */
J
j_mayer 已提交
554
#if 0
555 556 557
    if (total_len != (8 * 1024 * 1024) && total_len != (16 * 1024 * 1024) &&
        total_len != (32 * 1024 * 1024) && total_len != (64 * 1024 * 1024))
        return NULL;
J
j_mayer 已提交
558
#endif
A
Anthony Liguori 已提交
559
    pfl = qemu_mallocz(sizeof(pflash_t));
P
pbrook 已提交
560 561
    /* FIXME: Allocate ram ourselves.  */
    pfl->storage = qemu_get_ram_ptr(off);
562
    pfl->fl_mem = cpu_register_io_memory(pflash_read_ops, pflash_write_ops,
J
j_mayer 已提交
563
                                         pfl);
564
    pfl->off = off;
565 566 567 568
    pfl->base = base;
    pfl->chip_len = chip_len;
    pfl->mappings = nb_mappings;
    pflash_register_memory(pfl, 1);
569 570 571
    pfl->bs = bs;
    if (pfl->bs) {
        /* read the initial flash content */
572 573 574 575 576 577
        ret = bdrv_read(pfl->bs, 0, pfl->storage, chip_len >> 9);
        if (ret < 0) {
            cpu_unregister_io_memory(pfl->fl_mem);
            qemu_free(pfl);
            return NULL;
        }
578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595
    }
#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->sector_len = sector_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;
596 597
    pfl->unlock_addr[0] = unlock_addr0;
    pfl->unlock_addr[1] = unlock_addr1;
598 599 600 601 602 603 604 605 606
    /* Hardcoded CFI table (mostly from SG29 Spansion flash) */
    pfl->cfi_len = 0x52;
    /* Standard "QRY" string */
    pfl->cfi_table[0x10] = 'Q';
    pfl->cfi_table[0x11] = 'R';
    pfl->cfi_table[0x12] = 'Y';
    /* Command set (AMD/Fujitsu) */
    pfl->cfi_table[0x13] = 0x02;
    pfl->cfi_table[0x14] = 0x00;
E
edgar_igl 已提交
607 608
    /* Primary extended table address */
    pfl->cfi_table[0x15] = 0x31;
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
    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] = 0x27;
    /* Vcc max */
    pfl->cfi_table[0x1C] = 0x36;
    /* 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;
E
edgar_igl 已提交
626 627
    /* Timeout for min size buffer write (NA) */
    pfl->cfi_table[0x20] = 0x00;
628 629 630 631 632 633
    /* Typical timeout for block erase (512 ms) */
    pfl->cfi_table[0x21] = 0x09;
    /* Typical timeout for full chip erase (4096 ms) */
    pfl->cfi_table[0x22] = 0x0C;
    /* Reserved */
    pfl->cfi_table[0x23] = 0x01;
E
edgar_igl 已提交
634 635
    /* Max timeout for buffer write (NA) */
    pfl->cfi_table[0x24] = 0x00;
636 637 638 639 640
    /* Max timeout for block erase */
    pfl->cfi_table[0x25] = 0x0A;
    /* Max timeout for chip erase */
    pfl->cfi_table[0x26] = 0x0D;
    /* Device size */
E
edgar_igl 已提交
641
    pfl->cfi_table[0x27] = ctz32(chip_len);
642 643 644 645
    /* Flash device interface (8 & 16 bits) */
    pfl->cfi_table[0x28] = 0x02;
    pfl->cfi_table[0x29] = 0x00;
    /* Max number of bytes in multi-bytes write */
J
j_mayer 已提交
646 647 648
    /* XXX: disable buffered write as it's not supported */
    //    pfl->cfi_table[0x2A] = 0x05;
    pfl->cfi_table[0x2A] = 0x00;
649 650 651 652 653 654 655 656 657
    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;

E
edgar_igl 已提交
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
    /* 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] = '0';

    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;

676 677
    return pfl;
}