]> Git Repo - qemu.git/blame - hw/block/pflash_cfi01.c
Add device-width property to pflash_cfi01
[qemu.git] / hw / block / pflash_cfi01.c
CommitLineData
05ee37eb
AZ
1/*
2 * CFI parallel flash with Intel command set emulation
3 *
4 * Copyright (c) 2006 Thorsten Zitterell
5 * Copyright (c) 2005 Jocelyn Mayer
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
8167ee88 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
05ee37eb
AZ
19 */
20
21/*
22 * For now, this code can emulate flashes of 1, 2 or 4 bytes width.
23 * Supported commands/modes are:
24 * - flash read
25 * - flash write
26 * - flash ID read
27 * - sector erase
28 * - CFI queries
29 *
30 * It does not support timings
31 * It does not support flash interleaving
32 * It does not implement software data protection as found in many real chips
33 * It does not implement erase suspend/resume commands
34 * It does not implement multiple sectors erase
35 *
36 * It does not implement much more ...
37 */
38
83c9f4ca 39#include "hw/hw.h"
0d09e41a 40#include "hw/block/flash.h"
737e150e 41#include "block/block.h"
1de7afc9 42#include "qemu/timer.h"
1997b485 43#include "qemu/bitops.h"
022c62cb 44#include "exec/address-spaces.h"
1de7afc9 45#include "qemu/host-utils.h"
83c9f4ca 46#include "hw/sysbus.h"
05ee37eb 47
001faf32 48#define PFLASH_BUG(fmt, ...) \
05ee37eb 49do { \
ec9ea489 50 fprintf(stderr, "PFLASH: Possible BUG - " fmt, ## __VA_ARGS__); \
05ee37eb
AZ
51 exit(1); \
52} while(0)
53
54/* #define PFLASH_DEBUG */
55#ifdef PFLASH_DEBUG
ec9ea489
PC
56#define DPRINTF(fmt, ...) \
57do { \
58 fprintf(stderr, "PFLASH: " fmt , ## __VA_ARGS__); \
05ee37eb
AZ
59} while (0)
60#else
001faf32 61#define DPRINTF(fmt, ...) do { } while (0)
05ee37eb
AZ
62#endif
63
f1b44f0e
HT
64#define TYPE_CFI_PFLASH01 "cfi.pflash01"
65#define CFI_PFLASH01(obj) OBJECT_CHECK(pflash_t, (obj), TYPE_CFI_PFLASH01)
66
c227f099 67struct pflash_t {
f1b44f0e
HT
68 /*< private >*/
69 SysBusDevice parent_obj;
70 /*< public >*/
71
05ee37eb 72 BlockDriverState *bs;
368a354f
PC
73 uint32_t nb_blocs;
74 uint64_t sector_len;
4b6fedca 75 uint8_t bank_width;
1997b485 76 uint8_t device_width; /* If 0, device width not specified. */
368a354f 77 uint8_t be;
d8d24fb7 78 uint8_t wcycle; /* if 0, the flash is read normally */
05ee37eb
AZ
79 int ro;
80 uint8_t cmd;
81 uint8_t status;
368a354f
PC
82 uint16_t ident0;
83 uint16_t ident1;
84 uint16_t ident2;
85 uint16_t ident3;
05ee37eb
AZ
86 uint8_t cfi_len;
87 uint8_t cfi_table[0x52];
d8d24fb7 88 uint64_t counter;
b4bf0a9a 89 unsigned int writeblock_size;
05ee37eb 90 QEMUTimer *timer;
cfe5f011 91 MemoryRegion mem;
368a354f 92 char *name;
05ee37eb
AZ
93 void *storage;
94};
95
d8d24fb7
PM
96static const VMStateDescription vmstate_pflash = {
97 .name = "pflash_cfi01",
98 .version_id = 1,
99 .minimum_version_id = 1,
100 .fields = (VMStateField[]) {
101 VMSTATE_UINT8(wcycle, pflash_t),
102 VMSTATE_UINT8(cmd, pflash_t),
103 VMSTATE_UINT8(status, pflash_t),
104 VMSTATE_UINT64(counter, pflash_t),
105 VMSTATE_END_OF_LIST()
106 }
107};
108
05ee37eb
AZ
109static void pflash_timer (void *opaque)
110{
c227f099 111 pflash_t *pfl = opaque;
05ee37eb
AZ
112
113 DPRINTF("%s: command %02x done\n", __func__, pfl->cmd);
114 /* Reset flash */
115 pfl->status ^= 0x80;
5f9a5ea1 116 memory_region_rom_device_set_romd(&pfl->mem, true);
5d79b80b 117 pfl->wcycle = 0;
05ee37eb
AZ
118 pfl->cmd = 0;
119}
120
a8170e5e 121static uint32_t pflash_read (pflash_t *pfl, hwaddr offset,
3d08ff69 122 int width, int be)
05ee37eb 123{
a8170e5e 124 hwaddr boff;
05ee37eb
AZ
125 uint32_t ret;
126 uint8_t *p;
127
128 ret = -1;
05ee37eb
AZ
129 boff = offset & 0xFF; /* why this here ?? */
130
4b6fedca 131 if (pfl->bank_width == 2) {
05ee37eb 132 boff = boff >> 1;
4b6fedca 133 } else if (pfl->bank_width == 4) {
05ee37eb 134 boff = boff >> 2;
4b6fedca 135 }
05ee37eb 136
fad8c772
EI
137#if 0
138 DPRINTF("%s: reading offset " TARGET_FMT_plx " under cmd %02x width %d\n",
06adb549 139 __func__, offset, pfl->cmd, width);
fad8c772 140#endif
05ee37eb 141 switch (pfl->cmd) {
1be97bf2
PM
142 default:
143 /* This should never happen : reset state & treat it as a read */
144 DPRINTF("%s: unknown command state: %x\n", __func__, pfl->cmd);
145 pfl->wcycle = 0;
146 pfl->cmd = 0;
147 /* fall through to read code */
05ee37eb
AZ
148 case 0x00:
149 /* Flash area read */
150 p = pfl->storage;
151 switch (width) {
152 case 1:
153 ret = p[offset];
fad8c772 154 DPRINTF("%s: data offset " TARGET_FMT_plx " %02x\n",
c8b153d7 155 __func__, offset, ret);
05ee37eb
AZ
156 break;
157 case 2:
3d08ff69
BS
158 if (be) {
159 ret = p[offset] << 8;
160 ret |= p[offset + 1];
161 } else {
162 ret = p[offset];
163 ret |= p[offset + 1] << 8;
164 }
fad8c772 165 DPRINTF("%s: data offset " TARGET_FMT_plx " %04x\n",
c8b153d7 166 __func__, offset, ret);
05ee37eb
AZ
167 break;
168 case 4:
3d08ff69
BS
169 if (be) {
170 ret = p[offset] << 24;
171 ret |= p[offset + 1] << 16;
172 ret |= p[offset + 2] << 8;
173 ret |= p[offset + 3];
174 } else {
175 ret = p[offset];
176 ret |= p[offset + 1] << 8;
3d08ff69
BS
177 ret |= p[offset + 2] << 16;
178 ret |= p[offset + 3] << 24;
179 }
fad8c772 180 DPRINTF("%s: data offset " TARGET_FMT_plx " %08x\n",
c8b153d7 181 __func__, offset, ret);
05ee37eb
AZ
182 break;
183 default:
184 DPRINTF("BUG in %s\n", __func__);
185 }
186
187 break;
6e392787 188 case 0x10: /* Single byte program */
05ee37eb 189 case 0x20: /* Block erase */
6e392787
PM
190 case 0x28: /* Block erase */
191 case 0x40: /* single byte program */
05ee37eb
AZ
192 case 0x50: /* Clear status register */
193 case 0x60: /* Block /un)lock */
194 case 0x70: /* Status Register */
195 case 0xe8: /* Write block */
196 /* Status register read */
197 ret = pfl->status;
ea0a4f34
PB
198 if (width > 2) {
199 ret |= pfl->status << 16;
200 }
05ee37eb
AZ
201 DPRINTF("%s: status %x\n", __func__, ret);
202 break;
0b2ec6fc
MW
203 case 0x90:
204 switch (boff) {
205 case 0:
368a354f 206 ret = pfl->ident0 << 8 | pfl->ident1;
0b2ec6fc
MW
207 DPRINTF("%s: Manufacturer Code %04x\n", __func__, ret);
208 break;
209 case 1:
368a354f 210 ret = pfl->ident2 << 8 | pfl->ident3;
0b2ec6fc
MW
211 DPRINTF("%s: Device ID Code %04x\n", __func__, ret);
212 break;
213 default:
fc5b64d0
PC
214 DPRINTF("%s: Read Device Information boff=%x\n", __func__,
215 (unsigned)boff);
0b2ec6fc
MW
216 ret = 0;
217 break;
218 }
219 break;
05ee37eb
AZ
220 case 0x98: /* Query mode */
221 if (boff > pfl->cfi_len)
222 ret = 0;
223 else
224 ret = pfl->cfi_table[boff];
225 break;
05ee37eb
AZ
226 }
227 return ret;
228}
229
230/* update flash content on disk */
c227f099 231static void pflash_update(pflash_t *pfl, int offset,
05ee37eb
AZ
232 int size)
233{
234 int offset_end;
235 if (pfl->bs) {
236 offset_end = offset + size;
237 /* round to sectors */
238 offset = offset >> 9;
239 offset_end = (offset_end + 511) >> 9;
240 bdrv_write(pfl->bs, offset, pfl->storage + (offset << 9),
241 offset_end - offset);
242 }
243}
244
a8170e5e 245static inline void pflash_data_write(pflash_t *pfl, hwaddr offset,
3d08ff69 246 uint32_t value, int width, int be)
d361be25
AZ
247{
248 uint8_t *p = pfl->storage;
249
fad8c772 250 DPRINTF("%s: block write offset " TARGET_FMT_plx
d8d24fb7 251 " value %x counter %016" PRIx64 "\n",
d361be25
AZ
252 __func__, offset, value, pfl->counter);
253 switch (width) {
254 case 1:
255 p[offset] = value;
d361be25
AZ
256 break;
257 case 2:
3d08ff69
BS
258 if (be) {
259 p[offset] = value >> 8;
260 p[offset + 1] = value;
261 } else {
262 p[offset] = value;
263 p[offset + 1] = value >> 8;
264 }
d361be25
AZ
265 break;
266 case 4:
3d08ff69
BS
267 if (be) {
268 p[offset] = value >> 24;
269 p[offset + 1] = value >> 16;
270 p[offset + 2] = value >> 8;
271 p[offset + 3] = value;
272 } else {
273 p[offset] = value;
274 p[offset + 1] = value >> 8;
275 p[offset + 2] = value >> 16;
276 p[offset + 3] = value >> 24;
277 }
d361be25
AZ
278 break;
279 }
280
281}
282
a8170e5e 283static void pflash_write(pflash_t *pfl, hwaddr offset,
3d08ff69 284 uint32_t value, int width, int be)
05ee37eb 285{
05ee37eb
AZ
286 uint8_t *p;
287 uint8_t cmd;
288
05ee37eb 289 cmd = value;
05ee37eb 290
fad8c772 291 DPRINTF("%s: writing offset " TARGET_FMT_plx " value %08x width %d wcycle 0x%x\n",
c8b153d7 292 __func__, offset, value, width, pfl->wcycle);
05ee37eb 293
e9cbbcac
EI
294 if (!pfl->wcycle) {
295 /* Set the device in I/O access mode */
5f9a5ea1 296 memory_region_rom_device_set_romd(&pfl->mem, false);
e9cbbcac 297 }
05ee37eb
AZ
298
299 switch (pfl->wcycle) {
300 case 0:
301 /* read mode */
302 switch (cmd) {
303 case 0x00: /* ??? */
304 goto reset_flash;
d361be25
AZ
305 case 0x10: /* Single Byte Program */
306 case 0x40: /* Single Byte Program */
fad8c772 307 DPRINTF("%s: Single Byte Program\n", __func__);
d361be25 308 break;
05ee37eb
AZ
309 case 0x20: /* Block erase */
310 p = pfl->storage;
311 offset &= ~(pfl->sector_len - 1);
312
368a354f
PC
313 DPRINTF("%s: block erase at " TARGET_FMT_plx " bytes %x\n",
314 __func__, offset, (unsigned)pfl->sector_len);
05ee37eb 315
de8efe8f
JJ
316 if (!pfl->ro) {
317 memset(p + offset, 0xff, pfl->sector_len);
318 pflash_update(pfl, offset, pfl->sector_len);
319 } else {
320 pfl->status |= 0x20; /* Block erase error */
321 }
05ee37eb
AZ
322 pfl->status |= 0x80; /* Ready! */
323 break;
324 case 0x50: /* Clear status bits */
325 DPRINTF("%s: Clear status bits\n", __func__);
326 pfl->status = 0x0;
327 goto reset_flash;
328 case 0x60: /* Block (un)lock */
329 DPRINTF("%s: Block unlock\n", __func__);
330 break;
331 case 0x70: /* Status Register */
332 DPRINTF("%s: Read status register\n", __func__);
333 pfl->cmd = cmd;
334 return;
0b2ec6fc
MW
335 case 0x90: /* Read Device ID */
336 DPRINTF("%s: Read Device information\n", __func__);
337 pfl->cmd = cmd;
338 return;
05ee37eb
AZ
339 case 0x98: /* CFI query */
340 DPRINTF("%s: CFI query\n", __func__);
341 break;
342 case 0xe8: /* Write to buffer */
343 DPRINTF("%s: Write to buffer\n", __func__);
344 pfl->status |= 0x80; /* Ready! */
345 break;
5928023c
SW
346 case 0xf0: /* Probe for AMD flash */
347 DPRINTF("%s: Probe for AMD flash\n", __func__);
348 goto reset_flash;
05ee37eb
AZ
349 case 0xff: /* Read array mode */
350 DPRINTF("%s: Read array mode\n", __func__);
351 goto reset_flash;
352 default:
353 goto error_flash;
354 }
355 pfl->wcycle++;
356 pfl->cmd = cmd;
12dabc79 357 break;
05ee37eb
AZ
358 case 1:
359 switch (pfl->cmd) {
d361be25
AZ
360 case 0x10: /* Single Byte Program */
361 case 0x40: /* Single Byte Program */
362 DPRINTF("%s: Single Byte Program\n", __func__);
de8efe8f
JJ
363 if (!pfl->ro) {
364 pflash_data_write(pfl, offset, value, width, be);
365 pflash_update(pfl, offset, width);
366 } else {
367 pfl->status |= 0x10; /* Programming error */
368 }
d361be25
AZ
369 pfl->status |= 0x80; /* Ready! */
370 pfl->wcycle = 0;
371 break;
05ee37eb
AZ
372 case 0x20: /* Block erase */
373 case 0x28:
374 if (cmd == 0xd0) { /* confirm */
3656744c 375 pfl->wcycle = 0;
05ee37eb 376 pfl->status |= 0x80;
9248f413 377 } else if (cmd == 0xff) { /* read array mode */
05ee37eb
AZ
378 goto reset_flash;
379 } else
380 goto error_flash;
381
382 break;
383 case 0xe8:
1997b485
RF
384 /* Mask writeblock size based on device width, or bank width if
385 * device width not specified.
386 */
387 if (pfl->device_width) {
388 value = extract32(value, 0, pfl->device_width * 8);
389 } else {
390 value = extract32(value, 0, pfl->bank_width * 8);
391 }
71fb2348
AZ
392 DPRINTF("%s: block write of %x bytes\n", __func__, value);
393 pfl->counter = value;
05ee37eb
AZ
394 pfl->wcycle++;
395 break;
396 case 0x60:
397 if (cmd == 0xd0) {
398 pfl->wcycle = 0;
399 pfl->status |= 0x80;
400 } else if (cmd == 0x01) {
401 pfl->wcycle = 0;
402 pfl->status |= 0x80;
403 } else if (cmd == 0xff) {
404 goto reset_flash;
405 } else {
406 DPRINTF("%s: Unknown (un)locking command\n", __func__);
407 goto reset_flash;
408 }
409 break;
410 case 0x98:
411 if (cmd == 0xff) {
412 goto reset_flash;
413 } else {
414 DPRINTF("%s: leaving query mode\n", __func__);
415 }
416 break;
417 default:
418 goto error_flash;
419 }
12dabc79 420 break;
05ee37eb
AZ
421 case 2:
422 switch (pfl->cmd) {
423 case 0xe8: /* Block write */
de8efe8f
JJ
424 if (!pfl->ro) {
425 pflash_data_write(pfl, offset, value, width, be);
426 } else {
427 pfl->status |= 0x10; /* Programming error */
428 }
05ee37eb
AZ
429
430 pfl->status |= 0x80;
431
432 if (!pfl->counter) {
a8170e5e 433 hwaddr mask = pfl->writeblock_size - 1;
b4bf0a9a
EI
434 mask = ~mask;
435
05ee37eb
AZ
436 DPRINTF("%s: block write finished\n", __func__);
437 pfl->wcycle++;
de8efe8f
JJ
438 if (!pfl->ro) {
439 /* Flush the entire write buffer onto backing storage. */
440 pflash_update(pfl, offset & mask, pfl->writeblock_size);
441 } else {
442 pfl->status |= 0x10; /* Programming error */
443 }
05ee37eb
AZ
444 }
445
446 pfl->counter--;
447 break;
7317b8ca
AZ
448 default:
449 goto error_flash;
05ee37eb 450 }
12dabc79 451 break;
05ee37eb
AZ
452 case 3: /* Confirm mode */
453 switch (pfl->cmd) {
454 case 0xe8: /* Block write */
455 if (cmd == 0xd0) {
456 pfl->wcycle = 0;
457 pfl->status |= 0x80;
05ee37eb
AZ
458 } else {
459 DPRINTF("%s: unknown command for \"write block\"\n", __func__);
460 PFLASH_BUG("Write block confirm");
7317b8ca 461 goto reset_flash;
05ee37eb 462 }
7317b8ca
AZ
463 break;
464 default:
465 goto error_flash;
05ee37eb 466 }
12dabc79 467 break;
05ee37eb
AZ
468 default:
469 /* Should never happen */
470 DPRINTF("%s: invalid write state\n", __func__);
471 goto reset_flash;
472 }
473 return;
474
475 error_flash:
d96fc51c
PC
476 qemu_log_mask(LOG_UNIMP, "%s: Unimplemented flash cmd sequence "
477 "(offset " TARGET_FMT_plx ", wcycle 0x%x cmd 0x%x value 0x%x)"
478 "\n", __func__, offset, pfl->wcycle, pfl->cmd, value);
05ee37eb
AZ
479
480 reset_flash:
5f9a5ea1 481 memory_region_rom_device_set_romd(&pfl->mem, true);
05ee37eb 482
05ee37eb
AZ
483 pfl->wcycle = 0;
484 pfl->cmd = 0;
05ee37eb
AZ
485}
486
487
a8170e5e 488static uint32_t pflash_readb_be(void *opaque, hwaddr addr)
3d08ff69
BS
489{
490 return pflash_read(opaque, addr, 1, 1);
491}
492
a8170e5e 493static uint32_t pflash_readb_le(void *opaque, hwaddr addr)
3d08ff69
BS
494{
495 return pflash_read(opaque, addr, 1, 0);
496}
497
a8170e5e 498static uint32_t pflash_readw_be(void *opaque, hwaddr addr)
3d08ff69
BS
499{
500 pflash_t *pfl = opaque;
501
502 return pflash_read(pfl, addr, 2, 1);
503}
504
a8170e5e 505static uint32_t pflash_readw_le(void *opaque, hwaddr addr)
05ee37eb 506{
3d08ff69
BS
507 pflash_t *pfl = opaque;
508
509 return pflash_read(pfl, addr, 2, 0);
05ee37eb
AZ
510}
511
a8170e5e 512static uint32_t pflash_readl_be(void *opaque, hwaddr addr)
05ee37eb 513{
c227f099 514 pflash_t *pfl = opaque;
05ee37eb 515
3d08ff69 516 return pflash_read(pfl, addr, 4, 1);
05ee37eb
AZ
517}
518
a8170e5e 519static uint32_t pflash_readl_le(void *opaque, hwaddr addr)
05ee37eb 520{
c227f099 521 pflash_t *pfl = opaque;
05ee37eb 522
3d08ff69 523 return pflash_read(pfl, addr, 4, 0);
05ee37eb
AZ
524}
525
a8170e5e 526static void pflash_writeb_be(void *opaque, hwaddr addr,
3d08ff69 527 uint32_t value)
05ee37eb 528{
3d08ff69 529 pflash_write(opaque, addr, value, 1, 1);
05ee37eb
AZ
530}
531
a8170e5e 532static void pflash_writeb_le(void *opaque, hwaddr addr,
3d08ff69
BS
533 uint32_t value)
534{
535 pflash_write(opaque, addr, value, 1, 0);
536}
537
a8170e5e 538static void pflash_writew_be(void *opaque, hwaddr addr,
3d08ff69 539 uint32_t value)
05ee37eb 540{
c227f099 541 pflash_t *pfl = opaque;
05ee37eb 542
3d08ff69 543 pflash_write(pfl, addr, value, 2, 1);
05ee37eb
AZ
544}
545
a8170e5e 546static void pflash_writew_le(void *opaque, hwaddr addr,
3d08ff69 547 uint32_t value)
05ee37eb 548{
c227f099 549 pflash_t *pfl = opaque;
05ee37eb 550
3d08ff69 551 pflash_write(pfl, addr, value, 2, 0);
05ee37eb
AZ
552}
553
a8170e5e 554static void pflash_writel_be(void *opaque, hwaddr addr,
3d08ff69
BS
555 uint32_t value)
556{
557 pflash_t *pfl = opaque;
558
559 pflash_write(pfl, addr, value, 4, 1);
560}
561
a8170e5e 562static void pflash_writel_le(void *opaque, hwaddr addr,
3d08ff69
BS
563 uint32_t value)
564{
565 pflash_t *pfl = opaque;
566
567 pflash_write(pfl, addr, value, 4, 0);
568}
569
cfe5f011
AK
570static const MemoryRegionOps pflash_cfi01_ops_be = {
571 .old_mmio = {
572 .read = { pflash_readb_be, pflash_readw_be, pflash_readl_be, },
573 .write = { pflash_writeb_be, pflash_writew_be, pflash_writel_be, },
574 },
575 .endianness = DEVICE_NATIVE_ENDIAN,
05ee37eb
AZ
576};
577
cfe5f011
AK
578static const MemoryRegionOps pflash_cfi01_ops_le = {
579 .old_mmio = {
580 .read = { pflash_readb_le, pflash_readw_le, pflash_readl_le, },
581 .write = { pflash_writeb_le, pflash_writew_le, pflash_writel_le, },
582 },
583 .endianness = DEVICE_NATIVE_ENDIAN,
05ee37eb
AZ
584};
585
e40b5f3e 586static void pflash_cfi01_realize(DeviceState *dev, Error **errp)
05ee37eb 587{
f1b44f0e 588 pflash_t *pfl = CFI_PFLASH01(dev);
368a354f 589 uint64_t total_len;
d0e7605e 590 int ret;
05ee37eb 591
368a354f 592 total_len = pfl->sector_len * pfl->nb_blocs;
05ee37eb
AZ
593
594 /* XXX: to be fixed */
c8b153d7 595#if 0
05ee37eb
AZ
596 if (total_len != (8 * 1024 * 1024) && total_len != (16 * 1024 * 1024) &&
597 total_len != (32 * 1024 * 1024) && total_len != (64 * 1024 * 1024))
598 return NULL;
c8b153d7 599#endif
05ee37eb 600
cfe5f011 601 memory_region_init_rom_device(
2d256e6f 602 &pfl->mem, OBJECT(dev),
2c9b15ca 603 pfl->be ? &pflash_cfi01_ops_be : &pflash_cfi01_ops_le, pfl,
368a354f
PC
604 pfl->name, total_len);
605 vmstate_register_ram(&pfl->mem, DEVICE(pfl));
cfe5f011 606 pfl->storage = memory_region_get_ram_ptr(&pfl->mem);
e40b5f3e 607 sysbus_init_mmio(SYS_BUS_DEVICE(dev), &pfl->mem);
05ee37eb 608
05ee37eb
AZ
609 if (pfl->bs) {
610 /* read the initial flash content */
d0e7605e 611 ret = bdrv_read(pfl->bs, 0, pfl->storage, total_len >> 9);
368a354f 612
d0e7605e 613 if (ret < 0) {
368a354f 614 vmstate_unregister_ram(&pfl->mem, DEVICE(pfl));
cfe5f011 615 memory_region_destroy(&pfl->mem);
e40b5f3e
HT
616 error_setg(errp, "failed to read the initial flash content");
617 return;
d0e7605e 618 }
05ee37eb 619 }
de8efe8f
JJ
620
621 if (pfl->bs) {
622 pfl->ro = bdrv_is_read_only(pfl->bs);
623 } else {
624 pfl->ro = 0;
625 }
626
bc72ad67 627 pfl->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, pflash_timer, pfl);
05ee37eb
AZ
628 pfl->wcycle = 0;
629 pfl->cmd = 0;
630 pfl->status = 0;
05ee37eb
AZ
631 /* Hardcoded CFI table */
632 pfl->cfi_len = 0x52;
633 /* Standard "QRY" string */
634 pfl->cfi_table[0x10] = 'Q';
635 pfl->cfi_table[0x11] = 'R';
636 pfl->cfi_table[0x12] = 'Y';
637 /* Command set (Intel) */
638 pfl->cfi_table[0x13] = 0x01;
639 pfl->cfi_table[0x14] = 0x00;
640 /* Primary extended table address (none) */
641 pfl->cfi_table[0x15] = 0x31;
642 pfl->cfi_table[0x16] = 0x00;
643 /* Alternate command set (none) */
644 pfl->cfi_table[0x17] = 0x00;
645 pfl->cfi_table[0x18] = 0x00;
646 /* Alternate extended table (none) */
647 pfl->cfi_table[0x19] = 0x00;
648 pfl->cfi_table[0x1A] = 0x00;
649 /* Vcc min */
650 pfl->cfi_table[0x1B] = 0x45;
651 /* Vcc max */
652 pfl->cfi_table[0x1C] = 0x55;
653 /* Vpp min (no Vpp pin) */
654 pfl->cfi_table[0x1D] = 0x00;
655 /* Vpp max (no Vpp pin) */
656 pfl->cfi_table[0x1E] = 0x00;
657 /* Reserved */
658 pfl->cfi_table[0x1F] = 0x07;
659 /* Timeout for min size buffer write */
660 pfl->cfi_table[0x20] = 0x07;
661 /* Typical timeout for block erase */
662 pfl->cfi_table[0x21] = 0x0a;
663 /* Typical timeout for full chip erase (4096 ms) */
664 pfl->cfi_table[0x22] = 0x00;
665 /* Reserved */
666 pfl->cfi_table[0x23] = 0x04;
667 /* Max timeout for buffer write */
668 pfl->cfi_table[0x24] = 0x04;
669 /* Max timeout for block erase */
670 pfl->cfi_table[0x25] = 0x04;
671 /* Max timeout for chip erase */
672 pfl->cfi_table[0x26] = 0x00;
673 /* Device size */
674 pfl->cfi_table[0x27] = ctz32(total_len); // + 1;
675 /* Flash device interface (8 & 16 bits) */
676 pfl->cfi_table[0x28] = 0x02;
677 pfl->cfi_table[0x29] = 0x00;
678 /* Max number of bytes in multi-bytes write */
4b6fedca 679 if (pfl->bank_width == 1) {
4737fa26
EI
680 pfl->cfi_table[0x2A] = 0x08;
681 } else {
682 pfl->cfi_table[0x2A] = 0x0B;
683 }
b4bf0a9a
EI
684 pfl->writeblock_size = 1 << pfl->cfi_table[0x2A];
685
05ee37eb
AZ
686 pfl->cfi_table[0x2B] = 0x00;
687 /* Number of erase block regions (uniform) */
688 pfl->cfi_table[0x2C] = 0x01;
689 /* Erase block region 1 */
368a354f
PC
690 pfl->cfi_table[0x2D] = pfl->nb_blocs - 1;
691 pfl->cfi_table[0x2E] = (pfl->nb_blocs - 1) >> 8;
692 pfl->cfi_table[0x2F] = pfl->sector_len >> 8;
693 pfl->cfi_table[0x30] = pfl->sector_len >> 16;
05ee37eb
AZ
694
695 /* Extended */
696 pfl->cfi_table[0x31] = 'P';
697 pfl->cfi_table[0x32] = 'R';
698 pfl->cfi_table[0x33] = 'I';
699
700 pfl->cfi_table[0x34] = '1';
262e1eaa 701 pfl->cfi_table[0x35] = '0';
05ee37eb
AZ
702
703 pfl->cfi_table[0x36] = 0x00;
704 pfl->cfi_table[0x37] = 0x00;
705 pfl->cfi_table[0x38] = 0x00;
706 pfl->cfi_table[0x39] = 0x00;
707
708 pfl->cfi_table[0x3a] = 0x00;
709
710 pfl->cfi_table[0x3b] = 0x00;
711 pfl->cfi_table[0x3c] = 0x00;
712
262e1eaa 713 pfl->cfi_table[0x3f] = 0x01; /* Number of protection fields */
368a354f
PC
714}
715
716static Property pflash_cfi01_properties[] = {
717 DEFINE_PROP_DRIVE("drive", struct pflash_t, bs),
718 DEFINE_PROP_UINT32("num-blocks", struct pflash_t, nb_blocs, 0),
719 DEFINE_PROP_UINT64("sector-length", struct pflash_t, sector_len, 0),
4b6fedca 720 DEFINE_PROP_UINT8("width", struct pflash_t, bank_width, 0),
1997b485 721 DEFINE_PROP_UINT8("device-width", struct pflash_t, device_width, 0),
368a354f
PC
722 DEFINE_PROP_UINT8("big-endian", struct pflash_t, be, 0),
723 DEFINE_PROP_UINT16("id0", struct pflash_t, ident0, 0),
724 DEFINE_PROP_UINT16("id1", struct pflash_t, ident1, 0),
725 DEFINE_PROP_UINT16("id2", struct pflash_t, ident2, 0),
726 DEFINE_PROP_UINT16("id3", struct pflash_t, ident3, 0),
727 DEFINE_PROP_STRING("name", struct pflash_t, name),
728 DEFINE_PROP_END_OF_LIST(),
729};
730
731static void pflash_cfi01_class_init(ObjectClass *klass, void *data)
732{
733 DeviceClass *dc = DEVICE_CLASS(klass);
368a354f 734
e40b5f3e 735 dc->realize = pflash_cfi01_realize;
368a354f 736 dc->props = pflash_cfi01_properties;
d8d24fb7 737 dc->vmsd = &vmstate_pflash;
125ee0ed 738 set_bit(DEVICE_CATEGORY_STORAGE, dc->categories);
368a354f
PC
739}
740
741
742static const TypeInfo pflash_cfi01_info = {
f1b44f0e 743 .name = TYPE_CFI_PFLASH01,
368a354f
PC
744 .parent = TYPE_SYS_BUS_DEVICE,
745 .instance_size = sizeof(struct pflash_t),
746 .class_init = pflash_cfi01_class_init,
747};
748
749static void pflash_cfi01_register_types(void)
750{
751 type_register_static(&pflash_cfi01_info);
752}
753
754type_init(pflash_cfi01_register_types)
755
756pflash_t *pflash_cfi01_register(hwaddr base,
757 DeviceState *qdev, const char *name,
758 hwaddr size,
759 BlockDriverState *bs,
4b6fedca
RF
760 uint32_t sector_len, int nb_blocs,
761 int bank_width, uint16_t id0, uint16_t id1,
368a354f
PC
762 uint16_t id2, uint16_t id3, int be)
763{
f1b44f0e 764 DeviceState *dev = qdev_create(NULL, TYPE_CFI_PFLASH01);
368a354f
PC
765
766 if (bs && qdev_prop_set_drive(dev, "drive", bs)) {
767 abort();
768 }
769 qdev_prop_set_uint32(dev, "num-blocks", nb_blocs);
770 qdev_prop_set_uint64(dev, "sector-length", sector_len);
4b6fedca 771 qdev_prop_set_uint8(dev, "width", bank_width);
368a354f
PC
772 qdev_prop_set_uint8(dev, "big-endian", !!be);
773 qdev_prop_set_uint16(dev, "id0", id0);
774 qdev_prop_set_uint16(dev, "id1", id1);
775 qdev_prop_set_uint16(dev, "id2", id2);
776 qdev_prop_set_uint16(dev, "id3", id3);
777 qdev_prop_set_string(dev, "name", name);
778 qdev_init_nofail(dev);
779
f1b44f0e
HT
780 sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, base);
781 return CFI_PFLASH01(dev);
05ee37eb 782}
cfe5f011
AK
783
784MemoryRegion *pflash_cfi01_get_memory(pflash_t *fl)
785{
786 return &fl->mem;
787}
This page took 0.870853 seconds and 4 git commands to generate.