]> git.proxmox.com Git - qemu.git/blame - hw/pflash_cfi02.c
Merge remote-tracking branch 'spice/spice.v39' into staging
[qemu.git] / hw / pflash_cfi02.c
CommitLineData
29133e9a
FB
1/*
2 * CFI parallel flash with AMD command set emulation
5fafdf24 3 *
29133e9a
FB
4 * Copyright (c) 2005 Jocelyn Mayer
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
29133e9a
FB
18 */
19
20/*
21 * For now, this code can emulate flashes of 1, 2 or 4 bytes width.
22 * Supported commands/modes are:
23 * - flash read
24 * - flash write
25 * - flash ID read
26 * - sector erase
27 * - chip erase
28 * - unlock bypass command
29 * - CFI queries
30 *
31 * It does not support flash interleaving.
32 * It does not implement boot blocs with reduced size
33 * It does not implement software data protection as found in many real chips
34 * It does not implement erase suspend/resume commands
35 * It does not implement multiple sectors erase
36 */
37
87ecb68b
PB
38#include "hw.h"
39#include "flash.h"
40#include "qemu-timer.h"
41#include "block.h"
29133e9a
FB
42
43//#define PFLASH_DEBUG
44#ifdef PFLASH_DEBUG
001faf32 45#define DPRINTF(fmt, ...) \
29133e9a 46do { \
001faf32 47 printf("PFLASH: " fmt , ## __VA_ARGS__); \
29133e9a
FB
48} while (0)
49#else
001faf32 50#define DPRINTF(fmt, ...) do { } while (0)
29133e9a
FB
51#endif
52
661bfc80
JK
53#define PFLASH_LAZY_ROMD_THRESHOLD 42
54
c227f099 55struct pflash_t {
29133e9a 56 BlockDriverState *bs;
c227f099 57 target_phys_addr_t base;
71db710f 58 uint32_t sector_len;
4fbd24ba
AZ
59 uint32_t chip_len;
60 int mappings;
29133e9a
FB
61 int width;
62 int wcycle; /* if 0, the flash is read normally */
63 int bypass;
64 int ro;
65 uint8_t cmd;
66 uint8_t status;
67 uint16_t ident[4];
6725070d 68 uint16_t unlock_addr[2];
29133e9a
FB
69 uint8_t cfi_len;
70 uint8_t cfi_table[0x52];
71 QEMUTimer *timer;
c227f099 72 ram_addr_t off;
29133e9a 73 int fl_mem;
9c9bb6c8 74 int rom_mode;
661bfc80 75 int read_counter; /* used for lazy switch-back to rom mode */
29133e9a
FB
76 void *storage;
77};
78
c227f099 79static void pflash_register_memory(pflash_t *pfl, int rom_mode)
4fbd24ba
AZ
80{
81 unsigned long phys_offset = pfl->fl_mem;
82 int i;
83
84 if (rom_mode)
85 phys_offset |= pfl->off | IO_MEM_ROMD;
9c9bb6c8 86 pfl->rom_mode = rom_mode;
4fbd24ba
AZ
87
88 for (i = 0; i < pfl->mappings; i++)
89 cpu_register_physical_memory(pfl->base + i * pfl->chip_len,
90 pfl->chip_len, phys_offset);
91}
92
29133e9a
FB
93static void pflash_timer (void *opaque)
94{
c227f099 95 pflash_t *pfl = opaque;
29133e9a
FB
96
97 DPRINTF("%s: command %02x done\n", __func__, pfl->cmd);
98 /* Reset flash */
99 pfl->status ^= 0x80;
100 if (pfl->bypass) {
101 pfl->wcycle = 2;
102 } else {
4fbd24ba 103 pflash_register_memory(pfl, 1);
29133e9a
FB
104 pfl->wcycle = 0;
105 }
106 pfl->cmd = 0;
107}
108
5f9fc5ad
BS
109static uint32_t pflash_read (pflash_t *pfl, target_phys_addr_t offset,
110 int width, int be)
29133e9a 111{
f8be67ee 112 target_phys_addr_t boff;
29133e9a
FB
113 uint32_t ret;
114 uint8_t *p;
115
f8be67ee 116 DPRINTF("%s: offset " TARGET_FMT_plx "\n", __func__, offset);
29133e9a 117 ret = -1;
661bfc80
JK
118 /* Lazy reset to ROMD mode after a certain amount of read accesses */
119 if (!pfl->rom_mode && pfl->wcycle == 0 &&
120 ++pfl->read_counter > PFLASH_LAZY_ROMD_THRESHOLD) {
121 pflash_register_memory(pfl, 1);
0f459d16 122 }
4fbd24ba 123 offset &= pfl->chip_len - 1;
29133e9a
FB
124 boff = offset & 0xFF;
125 if (pfl->width == 2)
126 boff = boff >> 1;
127 else if (pfl->width == 4)
128 boff = boff >> 2;
129 switch (pfl->cmd) {
130 default:
131 /* This should never happen : reset state & treat it as a read*/
132 DPRINTF("%s: unknown command state: %x\n", __func__, pfl->cmd);
133 pfl->wcycle = 0;
134 pfl->cmd = 0;
135 case 0x80:
136 /* We accept reads during second unlock sequence... */
137 case 0x00:
138 flash_read:
139 /* Flash area read */
140 p = pfl->storage;
141 switch (width) {
142 case 1:
143 ret = p[offset];
144// DPRINTF("%s: data offset %08x %02x\n", __func__, offset, ret);
145 break;
146 case 2:
5f9fc5ad
BS
147 if (be) {
148 ret = p[offset] << 8;
149 ret |= p[offset + 1];
150 } else {
151 ret = p[offset];
152 ret |= p[offset + 1] << 8;
153 }
29133e9a
FB
154// DPRINTF("%s: data offset %08x %04x\n", __func__, offset, ret);
155 break;
156 case 4:
5f9fc5ad
BS
157 if (be) {
158 ret = p[offset] << 24;
159 ret |= p[offset + 1] << 16;
160 ret |= p[offset + 2] << 8;
161 ret |= p[offset + 3];
162 } else {
163 ret = p[offset];
164 ret |= p[offset + 1] << 8;
165 ret |= p[offset + 2] << 16;
166 ret |= p[offset + 3] << 24;
167 }
29133e9a
FB
168// DPRINTF("%s: data offset %08x %08x\n", __func__, offset, ret);
169 break;
170 }
171 break;
172 case 0x90:
173 /* flash ID read */
174 switch (boff) {
175 case 0x00:
176 case 0x01:
177 ret = pfl->ident[boff & 0x01];
178 break;
179 case 0x02:
180 ret = 0x00; /* Pretend all sectors are unprotected */
181 break;
182 case 0x0E:
183 case 0x0F:
184 if (pfl->ident[2 + (boff & 0x01)] == (uint8_t)-1)
185 goto flash_read;
186 ret = pfl->ident[2 + (boff & 0x01)];
187 break;
188 default:
189 goto flash_read;
190 }
b9055c3c 191 DPRINTF("%s: ID " TARGET_FMT_plx " %x\n", __func__, boff, ret);
29133e9a
FB
192 break;
193 case 0xA0:
194 case 0x10:
195 case 0x30:
196 /* Status register read */
197 ret = pfl->status;
198 DPRINTF("%s: status %x\n", __func__, ret);
199 /* Toggle bit 6 */
200 pfl->status ^= 0x40;
201 break;
202 case 0x98:
203 /* CFI query mode */
204 if (boff > pfl->cfi_len)
205 ret = 0;
206 else
207 ret = pfl->cfi_table[boff];
208 break;
209 }
210
211 return ret;
212}
213
214/* update flash content on disk */
c227f099 215static void pflash_update(pflash_t *pfl, int offset,
29133e9a
FB
216 int size)
217{
218 int offset_end;
219 if (pfl->bs) {
220 offset_end = offset + size;
221 /* round to sectors */
222 offset = offset >> 9;
223 offset_end = (offset_end + 511) >> 9;
5fafdf24 224 bdrv_write(pfl->bs, offset, pfl->storage + (offset << 9),
29133e9a
FB
225 offset_end - offset);
226 }
227}
228
f8be67ee 229static void pflash_write (pflash_t *pfl, target_phys_addr_t offset,
5f9fc5ad 230 uint32_t value, int width, int be)
29133e9a 231{
f8be67ee 232 target_phys_addr_t boff;
29133e9a
FB
233 uint8_t *p;
234 uint8_t cmd;
235
95d1f3ed
JM
236 cmd = value;
237 if (pfl->cmd != 0xA0 && cmd == 0xF0) {
238#if 0
239 DPRINTF("%s: flash reset asked (%02x %02x)\n",
240 __func__, pfl->cmd, cmd);
241#endif
242 goto reset_flash;
243 }
f8be67ee 244 DPRINTF("%s: offset " TARGET_FMT_plx " %08x %d %d\n", __func__,
95d1f3ed 245 offset, value, width, pfl->wcycle);
4fbd24ba 246 offset &= pfl->chip_len - 1;
3b46e624 247
f8be67ee 248 DPRINTF("%s: offset " TARGET_FMT_plx " %08x %d\n", __func__,
e96efcfc 249 offset, value, width);
29133e9a
FB
250 boff = offset & (pfl->sector_len - 1);
251 if (pfl->width == 2)
252 boff = boff >> 1;
253 else if (pfl->width == 4)
254 boff = boff >> 2;
255 switch (pfl->wcycle) {
256 case 0:
9c9bb6c8
AZ
257 /* Set the device in I/O access mode if required */
258 if (pfl->rom_mode)
259 pflash_register_memory(pfl, 0);
661bfc80 260 pfl->read_counter = 0;
29133e9a
FB
261 /* We're in read mode */
262 check_unlock0:
263 if (boff == 0x55 && cmd == 0x98) {
264 enter_CFI_mode:
265 /* Enter CFI query mode */
266 pfl->wcycle = 7;
267 pfl->cmd = 0x98;
268 return;
269 }
6725070d 270 if (boff != pfl->unlock_addr[0] || cmd != 0xAA) {
f8be67ee 271 DPRINTF("%s: unlock0 failed " TARGET_FMT_plx " %02x %04x\n",
6725070d 272 __func__, boff, cmd, pfl->unlock_addr[0]);
29133e9a
FB
273 goto reset_flash;
274 }
275 DPRINTF("%s: unlock sequence started\n", __func__);
276 break;
277 case 1:
278 /* We started an unlock sequence */
279 check_unlock1:
6725070d 280 if (boff != pfl->unlock_addr[1] || cmd != 0x55) {
f8be67ee 281 DPRINTF("%s: unlock1 failed " TARGET_FMT_plx " %02x\n", __func__,
e96efcfc 282 boff, cmd);
29133e9a
FB
283 goto reset_flash;
284 }
285 DPRINTF("%s: unlock sequence done\n", __func__);
286 break;
287 case 2:
288 /* We finished an unlock sequence */
6725070d 289 if (!pfl->bypass && boff != pfl->unlock_addr[0]) {
f8be67ee 290 DPRINTF("%s: command failed " TARGET_FMT_plx " %02x\n", __func__,
e96efcfc 291 boff, cmd);
29133e9a
FB
292 goto reset_flash;
293 }
294 switch (cmd) {
295 case 0x20:
296 pfl->bypass = 1;
297 goto do_bypass;
298 case 0x80:
299 case 0x90:
300 case 0xA0:
301 pfl->cmd = cmd;
302 DPRINTF("%s: starting command %02x\n", __func__, cmd);
303 break;
304 default:
305 DPRINTF("%s: unknown command %02x\n", __func__, cmd);
306 goto reset_flash;
307 }
308 break;
309 case 3:
310 switch (pfl->cmd) {
311 case 0x80:
312 /* We need another unlock sequence */
313 goto check_unlock0;
314 case 0xA0:
f8be67ee 315 DPRINTF("%s: write data offset " TARGET_FMT_plx " %08x %d\n",
29133e9a
FB
316 __func__, offset, value, width);
317 p = pfl->storage;
318 switch (width) {
319 case 1:
320 p[offset] &= value;
321 pflash_update(pfl, offset, 1);
322 break;
323 case 2:
5f9fc5ad
BS
324 if (be) {
325 p[offset] &= value >> 8;
326 p[offset + 1] &= value;
327 } else {
328 p[offset] &= value;
329 p[offset + 1] &= value >> 8;
330 }
29133e9a
FB
331 pflash_update(pfl, offset, 2);
332 break;
333 case 4:
5f9fc5ad
BS
334 if (be) {
335 p[offset] &= value >> 24;
336 p[offset + 1] &= value >> 16;
337 p[offset + 2] &= value >> 8;
338 p[offset + 3] &= value;
339 } else {
340 p[offset] &= value;
341 p[offset + 1] &= value >> 8;
342 p[offset + 2] &= value >> 16;
343 p[offset + 3] &= value >> 24;
344 }
29133e9a
FB
345 pflash_update(pfl, offset, 4);
346 break;
347 }
348 pfl->status = 0x00 | ~(value & 0x80);
349 /* Let's pretend write is immediate */
350 if (pfl->bypass)
351 goto do_bypass;
352 goto reset_flash;
353 case 0x90:
354 if (pfl->bypass && cmd == 0x00) {
355 /* Unlock bypass reset */
356 goto reset_flash;
357 }
358 /* We can enter CFI query mode from autoselect mode */
359 if (boff == 0x55 && cmd == 0x98)
360 goto enter_CFI_mode;
361 /* No break here */
362 default:
363 DPRINTF("%s: invalid write for command %02x\n",
364 __func__, pfl->cmd);
365 goto reset_flash;
366 }
367 case 4:
368 switch (pfl->cmd) {
369 case 0xA0:
a1c7273b 370 /* Ignore writes while flash data write is occurring */
29133e9a
FB
371 /* As we suppose write is immediate, this should never happen */
372 return;
373 case 0x80:
374 goto check_unlock1;
375 default:
376 /* Should never happen */
377 DPRINTF("%s: invalid command state %02x (wc 4)\n",
378 __func__, pfl->cmd);
379 goto reset_flash;
380 }
381 break;
382 case 5:
383 switch (cmd) {
384 case 0x10:
6725070d 385 if (boff != pfl->unlock_addr[0]) {
f8be67ee 386 DPRINTF("%s: chip erase: invalid address " TARGET_FMT_plx "\n",
29133e9a
FB
387 __func__, offset);
388 goto reset_flash;
389 }
390 /* Chip erase */
391 DPRINTF("%s: start chip erase\n", __func__);
4fbd24ba 392 memset(pfl->storage, 0xFF, pfl->chip_len);
29133e9a 393 pfl->status = 0x00;
4fbd24ba 394 pflash_update(pfl, 0, pfl->chip_len);
29133e9a 395 /* Let's wait 5 seconds before chip erase is done */
5fafdf24 396 qemu_mod_timer(pfl->timer,
74475455 397 qemu_get_clock_ns(vm_clock) + (get_ticks_per_sec() * 5));
29133e9a
FB
398 break;
399 case 0x30:
400 /* Sector erase */
401 p = pfl->storage;
402 offset &= ~(pfl->sector_len - 1);
f8be67ee 403 DPRINTF("%s: start sector erase at " TARGET_FMT_plx "\n", __func__,
e96efcfc 404 offset);
29133e9a
FB
405 memset(p + offset, 0xFF, pfl->sector_len);
406 pflash_update(pfl, offset, pfl->sector_len);
407 pfl->status = 0x00;
408 /* Let's wait 1/2 second before sector erase is done */
5fafdf24 409 qemu_mod_timer(pfl->timer,
74475455 410 qemu_get_clock_ns(vm_clock) + (get_ticks_per_sec() / 2));
29133e9a
FB
411 break;
412 default:
413 DPRINTF("%s: invalid command %02x (wc 5)\n", __func__, cmd);
414 goto reset_flash;
415 }
416 pfl->cmd = cmd;
417 break;
418 case 6:
419 switch (pfl->cmd) {
420 case 0x10:
421 /* Ignore writes during chip erase */
422 return;
423 case 0x30:
424 /* Ignore writes during sector erase */
425 return;
426 default:
427 /* Should never happen */
428 DPRINTF("%s: invalid command state %02x (wc 6)\n",
429 __func__, pfl->cmd);
430 goto reset_flash;
431 }
432 break;
433 case 7: /* Special value for CFI queries */
434 DPRINTF("%s: invalid write in CFI query mode\n", __func__);
435 goto reset_flash;
436 default:
437 /* Should never happen */
438 DPRINTF("%s: invalid write state (wc 7)\n", __func__);
439 goto reset_flash;
440 }
441 pfl->wcycle++;
442
443 return;
444
445 /* Reset flash */
446 reset_flash:
29133e9a
FB
447 pfl->bypass = 0;
448 pfl->wcycle = 0;
449 pfl->cmd = 0;
450 return;
451
452 do_bypass:
453 pfl->wcycle = 2;
454 pfl->cmd = 0;
455 return;
456}
457
458
5f9fc5ad
BS
459static uint32_t pflash_readb_be(void *opaque, target_phys_addr_t addr)
460{
461 return pflash_read(opaque, addr, 1, 1);
462}
463
464static uint32_t pflash_readb_le(void *opaque, target_phys_addr_t addr)
465{
466 return pflash_read(opaque, addr, 1, 0);
467}
468
469static uint32_t pflash_readw_be(void *opaque, target_phys_addr_t addr)
470{
471 pflash_t *pfl = opaque;
472
473 return pflash_read(pfl, addr, 2, 1);
474}
475
476static uint32_t pflash_readw_le(void *opaque, target_phys_addr_t addr)
477{
478 pflash_t *pfl = opaque;
479
480 return pflash_read(pfl, addr, 2, 0);
481}
482
483static uint32_t pflash_readl_be(void *opaque, target_phys_addr_t addr)
29133e9a 484{
5f9fc5ad
BS
485 pflash_t *pfl = opaque;
486
487 return pflash_read(pfl, addr, 4, 1);
29133e9a
FB
488}
489
5f9fc5ad 490static uint32_t pflash_readl_le(void *opaque, target_phys_addr_t addr)
29133e9a 491{
c227f099 492 pflash_t *pfl = opaque;
29133e9a 493
5f9fc5ad
BS
494 return pflash_read(pfl, addr, 4, 0);
495}
496
497static void pflash_writeb_be(void *opaque, target_phys_addr_t addr,
498 uint32_t value)
499{
500 pflash_write(opaque, addr, value, 1, 1);
29133e9a
FB
501}
502
5f9fc5ad
BS
503static void pflash_writeb_le(void *opaque, target_phys_addr_t addr,
504 uint32_t value)
505{
506 pflash_write(opaque, addr, value, 1, 0);
507}
508
509static void pflash_writew_be(void *opaque, target_phys_addr_t addr,
510 uint32_t value)
29133e9a 511{
c227f099 512 pflash_t *pfl = opaque;
29133e9a 513
5f9fc5ad 514 pflash_write(pfl, addr, value, 2, 1);
29133e9a
FB
515}
516
5f9fc5ad
BS
517static void pflash_writew_le(void *opaque, target_phys_addr_t addr,
518 uint32_t value)
29133e9a 519{
5f9fc5ad
BS
520 pflash_t *pfl = opaque;
521
522 pflash_write(pfl, addr, value, 2, 0);
29133e9a
FB
523}
524
5f9fc5ad
BS
525static void pflash_writel_be(void *opaque, target_phys_addr_t addr,
526 uint32_t value)
29133e9a 527{
c227f099 528 pflash_t *pfl = opaque;
29133e9a 529
5f9fc5ad 530 pflash_write(pfl, addr, value, 4, 1);
29133e9a
FB
531}
532
5f9fc5ad
BS
533static void pflash_writel_le(void *opaque, target_phys_addr_t addr,
534 uint32_t value)
29133e9a 535{
c227f099 536 pflash_t *pfl = opaque;
29133e9a 537
5f9fc5ad 538 pflash_write(pfl, addr, value, 4, 0);
29133e9a
FB
539}
540
5f9fc5ad
BS
541static CPUWriteMemoryFunc * const pflash_write_ops_be[] = {
542 &pflash_writeb_be,
543 &pflash_writew_be,
544 &pflash_writel_be,
29133e9a
FB
545};
546
5f9fc5ad
BS
547static CPUReadMemoryFunc * const pflash_read_ops_be[] = {
548 &pflash_readb_be,
549 &pflash_readw_be,
550 &pflash_readl_be,
551};
552
553static CPUWriteMemoryFunc * const pflash_write_ops_le[] = {
554 &pflash_writeb_le,
555 &pflash_writew_le,
556 &pflash_writel_le,
557};
558
559static CPUReadMemoryFunc * const pflash_read_ops_le[] = {
560 &pflash_readb_le,
561 &pflash_readw_le,
562 &pflash_readl_le,
29133e9a
FB
563};
564
565/* Count trailing zeroes of a 32 bits quantity */
566static int ctz32 (uint32_t n)
567{
568 int ret;
569
570 ret = 0;
571 if (!(n & 0xFFFF)) {
572 ret += 16;
573 n = n >> 16;
574 }
575 if (!(n & 0xFF)) {
576 ret += 8;
577 n = n >> 8;
578 }
579 if (!(n & 0xF)) {
580 ret += 4;
581 n = n >> 4;
582 }
583 if (!(n & 0x3)) {
584 ret += 2;
585 n = n >> 2;
586 }
587 if (!(n & 0x1)) {
588 ret++;
22ed1d34 589#if 0 /* This is not necessary as n is never 0 */
29133e9a 590 n = n >> 1;
22ed1d34 591#endif
29133e9a
FB
592 }
593#if 0 /* This is not necessary as n is never 0 */
594 if (!n)
595 ret++;
596#endif
597
598 return ret;
599}
600
c227f099 601pflash_t *pflash_cfi02_register(target_phys_addr_t base, ram_addr_t off,
cf6d9118 602 BlockDriverState *bs, uint32_t sector_len,
4fbd24ba 603 int nb_blocs, int nb_mappings, int width,
88eeee0a 604 uint16_t id0, uint16_t id1,
6725070d 605 uint16_t id2, uint16_t id3,
5f9fc5ad
BS
606 uint16_t unlock_addr0, uint16_t unlock_addr1,
607 int be)
29133e9a 608{
c227f099 609 pflash_t *pfl;
4fbd24ba 610 int32_t chip_len;
d0e7605e 611 int ret;
29133e9a 612
4fbd24ba 613 chip_len = sector_len * nb_blocs;
29133e9a 614 /* XXX: to be fixed */
95d1f3ed 615#if 0
29133e9a
FB
616 if (total_len != (8 * 1024 * 1024) && total_len != (16 * 1024 * 1024) &&
617 total_len != (32 * 1024 * 1024) && total_len != (64 * 1024 * 1024))
618 return NULL;
95d1f3ed 619#endif
c227f099 620 pfl = qemu_mallocz(sizeof(pflash_t));
5c130f65
PB
621 /* FIXME: Allocate ram ourselves. */
622 pfl->storage = qemu_get_ram_ptr(off);
5f9fc5ad
BS
623 if (be) {
624 pfl->fl_mem = cpu_register_io_memory(pflash_read_ops_be,
625 pflash_write_ops_be,
2507c12a 626 pfl, DEVICE_NATIVE_ENDIAN);
5f9fc5ad
BS
627 } else {
628 pfl->fl_mem = cpu_register_io_memory(pflash_read_ops_le,
629 pflash_write_ops_le,
2507c12a 630 pfl, DEVICE_NATIVE_ENDIAN);
5f9fc5ad 631 }
29133e9a 632 pfl->off = off;
4fbd24ba
AZ
633 pfl->base = base;
634 pfl->chip_len = chip_len;
635 pfl->mappings = nb_mappings;
636 pflash_register_memory(pfl, 1);
29133e9a
FB
637 pfl->bs = bs;
638 if (pfl->bs) {
639 /* read the initial flash content */
d0e7605e
VK
640 ret = bdrv_read(pfl->bs, 0, pfl->storage, chip_len >> 9);
641 if (ret < 0) {
642 cpu_unregister_io_memory(pfl->fl_mem);
643 qemu_free(pfl);
644 return NULL;
645 }
29133e9a
FB
646 }
647#if 0 /* XXX: there should be a bit to set up read-only,
648 * the same way the hardware does (with WP pin).
649 */
650 pfl->ro = 1;
651#else
652 pfl->ro = 0;
653#endif
74475455 654 pfl->timer = qemu_new_timer_ns(vm_clock, pflash_timer, pfl);
29133e9a 655 pfl->sector_len = sector_len;
29133e9a
FB
656 pfl->width = width;
657 pfl->wcycle = 0;
658 pfl->cmd = 0;
659 pfl->status = 0;
660 pfl->ident[0] = id0;
661 pfl->ident[1] = id1;
662 pfl->ident[2] = id2;
663 pfl->ident[3] = id3;
6725070d
AZ
664 pfl->unlock_addr[0] = unlock_addr0;
665 pfl->unlock_addr[1] = unlock_addr1;
29133e9a
FB
666 /* Hardcoded CFI table (mostly from SG29 Spansion flash) */
667 pfl->cfi_len = 0x52;
668 /* Standard "QRY" string */
669 pfl->cfi_table[0x10] = 'Q';
670 pfl->cfi_table[0x11] = 'R';
671 pfl->cfi_table[0x12] = 'Y';
672 /* Command set (AMD/Fujitsu) */
673 pfl->cfi_table[0x13] = 0x02;
674 pfl->cfi_table[0x14] = 0x00;
78556820
EI
675 /* Primary extended table address */
676 pfl->cfi_table[0x15] = 0x31;
29133e9a
FB
677 pfl->cfi_table[0x16] = 0x00;
678 /* Alternate command set (none) */
679 pfl->cfi_table[0x17] = 0x00;
680 pfl->cfi_table[0x18] = 0x00;
681 /* Alternate extended table (none) */
682 pfl->cfi_table[0x19] = 0x00;
683 pfl->cfi_table[0x1A] = 0x00;
684 /* Vcc min */
685 pfl->cfi_table[0x1B] = 0x27;
686 /* Vcc max */
687 pfl->cfi_table[0x1C] = 0x36;
688 /* Vpp min (no Vpp pin) */
689 pfl->cfi_table[0x1D] = 0x00;
690 /* Vpp max (no Vpp pin) */
691 pfl->cfi_table[0x1E] = 0x00;
692 /* Reserved */
693 pfl->cfi_table[0x1F] = 0x07;
78556820
EI
694 /* Timeout for min size buffer write (NA) */
695 pfl->cfi_table[0x20] = 0x00;
29133e9a
FB
696 /* Typical timeout for block erase (512 ms) */
697 pfl->cfi_table[0x21] = 0x09;
698 /* Typical timeout for full chip erase (4096 ms) */
699 pfl->cfi_table[0x22] = 0x0C;
700 /* Reserved */
701 pfl->cfi_table[0x23] = 0x01;
78556820
EI
702 /* Max timeout for buffer write (NA) */
703 pfl->cfi_table[0x24] = 0x00;
29133e9a
FB
704 /* Max timeout for block erase */
705 pfl->cfi_table[0x25] = 0x0A;
706 /* Max timeout for chip erase */
707 pfl->cfi_table[0x26] = 0x0D;
708 /* Device size */
78556820 709 pfl->cfi_table[0x27] = ctz32(chip_len);
29133e9a
FB
710 /* Flash device interface (8 & 16 bits) */
711 pfl->cfi_table[0x28] = 0x02;
712 pfl->cfi_table[0x29] = 0x00;
713 /* Max number of bytes in multi-bytes write */
95d1f3ed
JM
714 /* XXX: disable buffered write as it's not supported */
715 // pfl->cfi_table[0x2A] = 0x05;
716 pfl->cfi_table[0x2A] = 0x00;
29133e9a
FB
717 pfl->cfi_table[0x2B] = 0x00;
718 /* Number of erase block regions (uniform) */
719 pfl->cfi_table[0x2C] = 0x01;
720 /* Erase block region 1 */
721 pfl->cfi_table[0x2D] = nb_blocs - 1;
722 pfl->cfi_table[0x2E] = (nb_blocs - 1) >> 8;
723 pfl->cfi_table[0x2F] = sector_len >> 8;
724 pfl->cfi_table[0x30] = sector_len >> 16;
725
78556820
EI
726 /* Extended */
727 pfl->cfi_table[0x31] = 'P';
728 pfl->cfi_table[0x32] = 'R';
729 pfl->cfi_table[0x33] = 'I';
730
731 pfl->cfi_table[0x34] = '1';
732 pfl->cfi_table[0x35] = '0';
733
734 pfl->cfi_table[0x36] = 0x00;
735 pfl->cfi_table[0x37] = 0x00;
736 pfl->cfi_table[0x38] = 0x00;
737 pfl->cfi_table[0x39] = 0x00;
738
739 pfl->cfi_table[0x3a] = 0x00;
740
741 pfl->cfi_table[0x3b] = 0x00;
742 pfl->cfi_table[0x3c] = 0x00;
743
29133e9a
FB
744 return pfl;
745}