2 * CFI parallel flash with Intel command set emulation
4 * Copyright (c) 2006 Thorsten Zitterell
5 * Copyright (c) 2005 Jocelyn Mayer
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.
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.
17 * 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/>.
22 * For now, this code can emulate flashes of 1, 2 or 4 bytes width.
23 * Supported commands/modes are:
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
36 * It does not implement much more ...
39 #include "qemu/osdep.h"
40 #include "hw/block/block.h"
41 #include "hw/block/flash.h"
42 #include "hw/qdev-properties.h"
43 #include "sysemu/block-backend.h"
44 #include "qapi/error.h"
45 #include "qemu/timer.h"
46 #include "qemu/bitops.h"
47 #include "qemu/error-report.h"
48 #include "qemu/host-utils.h"
50 #include "qemu/module.h"
51 #include "qemu/option.h"
52 #include "hw/sysbus.h"
53 #include "migration/vmstate.h"
54 #include "sysemu/blockdev.h"
55 #include "sysemu/runstate.h"
58 /* #define PFLASH_DEBUG */
60 #define DPRINTF(fmt, ...) \
62 fprintf(stderr, "PFLASH: " fmt , ## __VA_ARGS__); \
65 #define DPRINTF(fmt, ...) do { } while (0)
69 #define PFLASH_SECURE 1
73 SysBusDevice parent_obj
;
80 uint8_t device_width
; /* If 0, device width not specified. */
81 uint8_t max_device_width
; /* max device width in bytes */
83 uint8_t wcycle
; /* if 0, the flash is read normally */
91 uint8_t cfi_table
[0x52];
93 unsigned int writeblock_size
;
98 VMChangeStateEntry
*vmstate
;
99 bool old_multiple_chip_handling
;
102 static int pflash_post_load(void *opaque
, int version_id
);
104 static const VMStateDescription vmstate_pflash
= {
105 .name
= "pflash_cfi01",
107 .minimum_version_id
= 1,
108 .post_load
= pflash_post_load
,
109 .fields
= (VMStateField
[]) {
110 VMSTATE_UINT8(wcycle
, PFlashCFI01
),
111 VMSTATE_UINT8(cmd
, PFlashCFI01
),
112 VMSTATE_UINT8(status
, PFlashCFI01
),
113 VMSTATE_UINT64(counter
, PFlashCFI01
),
114 VMSTATE_END_OF_LIST()
118 static void pflash_timer (void *opaque
)
120 PFlashCFI01
*pfl
= opaque
;
122 trace_pflash_timer_expired(pfl
->cmd
);
125 memory_region_rom_device_set_romd(&pfl
->mem
, true);
130 /* Perform a CFI query based on the bank width of the flash.
131 * If this code is called we know we have a device_width set for
134 static uint32_t pflash_cfi_query(PFlashCFI01
*pfl
, hwaddr offset
)
140 /* Adjust incoming offset to match expected device-width
141 * addressing. CFI query addresses are always specified in terms of
142 * the maximum supported width of the device. This means that x8
143 * devices and x8/x16 devices in x8 mode behave differently. For
144 * devices that are not used at their max width, we will be
145 * provided with addresses that use higher address bits than
146 * expected (based on the max width), so we will shift them lower
147 * so that they will match the addresses used when
148 * device_width==max_device_width.
150 boff
= offset
>> (ctz32(pfl
->bank_width
) +
151 ctz32(pfl
->max_device_width
) - ctz32(pfl
->device_width
));
153 if (boff
>= sizeof(pfl
->cfi_table
)) {
156 /* Now we will construct the CFI response generated by a single
157 * device, then replicate that for all devices that make up the
158 * bus. For wide parts used in x8 mode, CFI query responses
159 * are different than native byte-wide parts.
161 resp
= pfl
->cfi_table
[boff
];
162 if (pfl
->device_width
!= pfl
->max_device_width
) {
163 /* The only case currently supported is x8 mode for a
166 if (pfl
->device_width
!= 1 || pfl
->bank_width
> 4) {
167 DPRINTF("%s: Unsupported device configuration: "
168 "device_width=%d, max_device_width=%d\n",
169 __func__
, pfl
->device_width
,
170 pfl
->max_device_width
);
173 /* CFI query data is repeated, rather than zero padded for
174 * wide devices used in x8 mode.
176 for (i
= 1; i
< pfl
->max_device_width
; i
++) {
177 resp
= deposit32(resp
, 8 * i
, 8, pfl
->cfi_table
[boff
]);
180 /* Replicate responses for each device in bank. */
181 if (pfl
->device_width
< pfl
->bank_width
) {
182 for (i
= pfl
->device_width
;
183 i
< pfl
->bank_width
; i
+= pfl
->device_width
) {
184 resp
= deposit32(resp
, 8 * i
, 8 * pfl
->device_width
, resp
);
193 /* Perform a device id query based on the bank width of the flash. */
194 static uint32_t pflash_devid_query(PFlashCFI01
*pfl
, hwaddr offset
)
200 /* Adjust incoming offset to match expected device-width
201 * addressing. Device ID read addresses are always specified in
202 * terms of the maximum supported width of the device. This means
203 * that x8 devices and x8/x16 devices in x8 mode behave
204 * differently. For devices that are not used at their max width,
205 * we will be provided with addresses that use higher address bits
206 * than expected (based on the max width), so we will shift them
207 * lower so that they will match the addresses used when
208 * device_width==max_device_width.
210 boff
= offset
>> (ctz32(pfl
->bank_width
) +
211 ctz32(pfl
->max_device_width
) - ctz32(pfl
->device_width
));
213 /* Mask off upper bits which may be used in to query block
214 * or sector lock status at other addresses.
215 * Offsets 2/3 are block lock status, is not emulated.
217 switch (boff
& 0xFF) {
220 trace_pflash_manufacturer_id(resp
);
224 trace_pflash_device_id(resp
);
227 trace_pflash_device_info(offset
);
231 /* Replicate responses for each device in bank. */
232 if (pfl
->device_width
< pfl
->bank_width
) {
233 for (i
= pfl
->device_width
;
234 i
< pfl
->bank_width
; i
+= pfl
->device_width
) {
235 resp
= deposit32(resp
, 8 * i
, 8 * pfl
->device_width
, resp
);
242 static uint32_t pflash_data_read(PFlashCFI01
*pfl
, hwaddr offset
,
255 ret
= p
[offset
] << 8;
256 ret
|= p
[offset
+ 1];
259 ret
|= p
[offset
+ 1] << 8;
264 ret
= p
[offset
] << 24;
265 ret
|= p
[offset
+ 1] << 16;
266 ret
|= p
[offset
+ 2] << 8;
267 ret
|= p
[offset
+ 3];
270 ret
|= p
[offset
+ 1] << 8;
271 ret
|= p
[offset
+ 2] << 16;
272 ret
|= p
[offset
+ 3] << 24;
276 DPRINTF("BUG in %s\n", __func__
);
279 trace_pflash_data_read(offset
, width
, ret
);
283 static uint32_t pflash_read(PFlashCFI01
*pfl
, hwaddr offset
,
292 /* This should never happen : reset state & treat it as a read */
293 DPRINTF("%s: unknown command state: %x\n", __func__
, pfl
->cmd
);
296 /* fall through to read code */
298 /* Flash area read */
299 ret
= pflash_data_read(pfl
, offset
, width
, be
);
301 case 0x10: /* Single byte program */
302 case 0x20: /* Block erase */
303 case 0x28: /* Block erase */
304 case 0x40: /* single byte program */
305 case 0x50: /* Clear status register */
306 case 0x60: /* Block /un)lock */
307 case 0x70: /* Status Register */
308 case 0xe8: /* Write block */
309 /* Status register read. Return status from each device in
313 if (pfl
->device_width
&& width
> pfl
->device_width
) {
314 int shift
= pfl
->device_width
* 8;
315 while (shift
+ pfl
->device_width
* 8 <= width
* 8) {
316 ret
|= pfl
->status
<< shift
;
317 shift
+= pfl
->device_width
* 8;
319 } else if (!pfl
->device_width
&& width
> 2) {
320 /* Handle 32 bit flash cases where device width is not
321 * set. (Existing behavior before device width added.)
323 ret
|= pfl
->status
<< 16;
325 DPRINTF("%s: status %x\n", __func__
, ret
);
328 if (!pfl
->device_width
) {
329 /* Preserve old behavior if device width not specified */
330 boff
= offset
& 0xFF;
331 if (pfl
->bank_width
== 2) {
333 } else if (pfl
->bank_width
== 4) {
339 ret
= pfl
->ident0
<< 8 | pfl
->ident1
;
340 trace_pflash_manufacturer_id(ret
);
343 ret
= pfl
->ident2
<< 8 | pfl
->ident3
;
344 trace_pflash_device_id(ret
);
347 trace_pflash_device_info(boff
);
352 /* If we have a read larger than the bank_width, combine multiple
353 * manufacturer/device ID queries into a single response.
356 for (i
= 0; i
< width
; i
+= pfl
->bank_width
) {
357 ret
= deposit32(ret
, i
* 8, pfl
->bank_width
* 8,
358 pflash_devid_query(pfl
,
359 offset
+ i
* pfl
->bank_width
));
363 case 0x98: /* Query mode */
364 if (!pfl
->device_width
) {
365 /* Preserve old behavior if device width not specified */
366 boff
= offset
& 0xFF;
367 if (pfl
->bank_width
== 2) {
369 } else if (pfl
->bank_width
== 4) {
373 if (boff
< sizeof(pfl
->cfi_table
)) {
374 ret
= pfl
->cfi_table
[boff
];
379 /* If we have a read larger than the bank_width, combine multiple
380 * CFI queries into a single response.
383 for (i
= 0; i
< width
; i
+= pfl
->bank_width
) {
384 ret
= deposit32(ret
, i
* 8, pfl
->bank_width
* 8,
385 pflash_cfi_query(pfl
,
386 offset
+ i
* pfl
->bank_width
));
392 trace_pflash_io_read(offset
, width
, ret
, pfl
->cmd
, pfl
->wcycle
);
397 /* update flash content on disk */
398 static void pflash_update(PFlashCFI01
*pfl
, int offset
,
403 offset_end
= offset
+ size
;
404 /* widen to sector boundaries */
405 offset
= QEMU_ALIGN_DOWN(offset
, BDRV_SECTOR_SIZE
);
406 offset_end
= QEMU_ALIGN_UP(offset_end
, BDRV_SECTOR_SIZE
);
407 blk_pwrite(pfl
->blk
, offset
, pfl
->storage
+ offset
,
408 offset_end
- offset
, 0);
412 static inline void pflash_data_write(PFlashCFI01
*pfl
, hwaddr offset
,
413 uint32_t value
, int width
, int be
)
415 uint8_t *p
= pfl
->storage
;
417 trace_pflash_data_write(offset
, width
, value
, pfl
->counter
);
424 p
[offset
] = value
>> 8;
425 p
[offset
+ 1] = value
;
428 p
[offset
+ 1] = value
>> 8;
433 p
[offset
] = value
>> 24;
434 p
[offset
+ 1] = value
>> 16;
435 p
[offset
+ 2] = value
>> 8;
436 p
[offset
+ 3] = value
;
439 p
[offset
+ 1] = value
>> 8;
440 p
[offset
+ 2] = value
>> 16;
441 p
[offset
+ 3] = value
>> 24;
448 static void pflash_write(PFlashCFI01
*pfl
, hwaddr offset
,
449 uint32_t value
, int width
, int be
)
456 trace_pflash_io_write(offset
, width
, value
, pfl
->wcycle
);
458 /* Set the device in I/O access mode */
459 memory_region_rom_device_set_romd(&pfl
->mem
, false);
462 switch (pfl
->wcycle
) {
468 case 0x10: /* Single Byte Program */
469 case 0x40: /* Single Byte Program */
470 DPRINTF("%s: Single Byte Program\n", __func__
);
472 case 0x20: /* Block erase */
474 offset
&= ~(pfl
->sector_len
- 1);
476 DPRINTF("%s: block erase at " TARGET_FMT_plx
" bytes %x\n",
477 __func__
, offset
, (unsigned)pfl
->sector_len
);
480 memset(p
+ offset
, 0xff, pfl
->sector_len
);
481 pflash_update(pfl
, offset
, pfl
->sector_len
);
483 pfl
->status
|= 0x20; /* Block erase error */
485 pfl
->status
|= 0x80; /* Ready! */
487 case 0x50: /* Clear status bits */
488 DPRINTF("%s: Clear status bits\n", __func__
);
491 case 0x60: /* Block (un)lock */
492 DPRINTF("%s: Block unlock\n", __func__
);
494 case 0x70: /* Status Register */
495 DPRINTF("%s: Read status register\n", __func__
);
498 case 0x90: /* Read Device ID */
499 DPRINTF("%s: Read Device information\n", __func__
);
502 case 0x98: /* CFI query */
503 DPRINTF("%s: CFI query\n", __func__
);
505 case 0xe8: /* Write to buffer */
506 DPRINTF("%s: Write to buffer\n", __func__
);
507 /* FIXME should save @offset, @width for case 1+ */
508 qemu_log_mask(LOG_UNIMP
,
509 "%s: Write to buffer emulation is flawed\n",
511 pfl
->status
|= 0x80; /* Ready! */
513 case 0xf0: /* Probe for AMD flash */
514 DPRINTF("%s: Probe for AMD flash\n", __func__
);
516 case 0xff: /* Read array mode */
517 DPRINTF("%s: Read array mode\n", __func__
);
527 case 0x10: /* Single Byte Program */
528 case 0x40: /* Single Byte Program */
529 DPRINTF("%s: Single Byte Program\n", __func__
);
531 pflash_data_write(pfl
, offset
, value
, width
, be
);
532 pflash_update(pfl
, offset
, width
);
534 pfl
->status
|= 0x10; /* Programming error */
536 pfl
->status
|= 0x80; /* Ready! */
539 case 0x20: /* Block erase */
541 if (cmd
== 0xd0) { /* confirm */
544 } else if (cmd
== 0xff) { /* read array mode */
551 /* Mask writeblock size based on device width, or bank width if
552 * device width not specified.
554 /* FIXME check @offset, @width */
555 if (pfl
->device_width
) {
556 value
= extract32(value
, 0, pfl
->device_width
* 8);
558 value
= extract32(value
, 0, pfl
->bank_width
* 8);
560 DPRINTF("%s: block write of %x bytes\n", __func__
, value
);
561 pfl
->counter
= value
;
568 } else if (cmd
== 0x01) {
571 } else if (cmd
== 0xff) {
574 DPRINTF("%s: Unknown (un)locking command\n", __func__
);
582 DPRINTF("%s: leaving query mode\n", __func__
);
591 case 0xe8: /* Block write */
592 /* FIXME check @offset, @width */
595 * FIXME writing straight to memory is *wrong*. We
596 * should write to a buffer, and flush it to memory
597 * only on confirm command (see below).
599 pflash_data_write(pfl
, offset
, value
, width
, be
);
601 pfl
->status
|= 0x10; /* Programming error */
607 hwaddr mask
= pfl
->writeblock_size
- 1;
610 DPRINTF("%s: block write finished\n", __func__
);
613 /* Flush the entire write buffer onto backing storage. */
614 /* FIXME premature! */
615 pflash_update(pfl
, offset
& mask
, pfl
->writeblock_size
);
617 pfl
->status
|= 0x10; /* Programming error */
627 case 3: /* Confirm mode */
629 case 0xe8: /* Block write */
631 /* FIXME this is where we should write out the buffer */
635 qemu_log_mask(LOG_UNIMP
,
636 "%s: Aborting write to buffer not implemented,"
637 " the data is already written to storage!\n"
638 "Flash device reset into READ mode.\n",
648 /* Should never happen */
649 DPRINTF("%s: invalid write state\n", __func__
);
655 qemu_log_mask(LOG_UNIMP
, "%s: Unimplemented flash cmd sequence "
656 "(offset " TARGET_FMT_plx
", wcycle 0x%x cmd 0x%x value 0x%x)"
657 "\n", __func__
, offset
, pfl
->wcycle
, pfl
->cmd
, value
);
660 trace_pflash_reset();
661 memory_region_rom_device_set_romd(&pfl
->mem
, true);
667 static MemTxResult
pflash_mem_read_with_attrs(void *opaque
, hwaddr addr
, uint64_t *value
,
668 unsigned len
, MemTxAttrs attrs
)
670 PFlashCFI01
*pfl
= opaque
;
671 bool be
= !!(pfl
->features
& (1 << PFLASH_BE
));
673 if ((pfl
->features
& (1 << PFLASH_SECURE
)) && !attrs
.secure
) {
674 *value
= pflash_data_read(opaque
, addr
, len
, be
);
676 *value
= pflash_read(opaque
, addr
, len
, be
);
681 static MemTxResult
pflash_mem_write_with_attrs(void *opaque
, hwaddr addr
, uint64_t value
,
682 unsigned len
, MemTxAttrs attrs
)
684 PFlashCFI01
*pfl
= opaque
;
685 bool be
= !!(pfl
->features
& (1 << PFLASH_BE
));
687 if ((pfl
->features
& (1 << PFLASH_SECURE
)) && !attrs
.secure
) {
690 pflash_write(opaque
, addr
, value
, len
, be
);
695 static const MemoryRegionOps pflash_cfi01_ops
= {
696 .read_with_attrs
= pflash_mem_read_with_attrs
,
697 .write_with_attrs
= pflash_mem_write_with_attrs
,
698 .endianness
= DEVICE_NATIVE_ENDIAN
,
701 static void pflash_cfi01_realize(DeviceState
*dev
, Error
**errp
)
703 PFlashCFI01
*pfl
= PFLASH_CFI01(dev
);
706 uint64_t blocks_per_device
, sector_len_per_device
, device_len
;
708 Error
*local_err
= NULL
;
710 if (pfl
->sector_len
== 0) {
711 error_setg(errp
, "attribute \"sector-length\" not specified or zero.");
714 if (pfl
->nb_blocs
== 0) {
715 error_setg(errp
, "attribute \"num-blocks\" not specified or zero.");
718 if (pfl
->name
== NULL
) {
719 error_setg(errp
, "attribute \"name\" not specified.");
723 total_len
= pfl
->sector_len
* pfl
->nb_blocs
;
725 /* These are only used to expose the parameters of each device
726 * in the cfi_table[].
728 num_devices
= pfl
->device_width
? (pfl
->bank_width
/ pfl
->device_width
) : 1;
729 if (pfl
->old_multiple_chip_handling
) {
730 blocks_per_device
= pfl
->nb_blocs
/ num_devices
;
731 sector_len_per_device
= pfl
->sector_len
;
733 blocks_per_device
= pfl
->nb_blocs
;
734 sector_len_per_device
= pfl
->sector_len
/ num_devices
;
736 device_len
= sector_len_per_device
* blocks_per_device
;
738 memory_region_init_rom_device(
739 &pfl
->mem
, OBJECT(dev
),
742 pfl
->name
, total_len
, &local_err
);
744 error_propagate(errp
, local_err
);
748 pfl
->storage
= memory_region_get_ram_ptr(&pfl
->mem
);
749 sysbus_init_mmio(SYS_BUS_DEVICE(dev
), &pfl
->mem
);
753 pfl
->ro
= blk_is_read_only(pfl
->blk
);
754 perm
= BLK_PERM_CONSISTENT_READ
| (pfl
->ro
? 0 : BLK_PERM_WRITE
);
755 ret
= blk_set_perm(pfl
->blk
, perm
, BLK_PERM_ALL
, errp
);
764 if (!blk_check_size_and_read_all(pfl
->blk
, pfl
->storage
, total_len
,
766 vmstate_unregister_ram(&pfl
->mem
, DEVICE(pfl
));
771 /* Default to devices being used at their maximum device width. This was
772 * assumed before the device_width support was added.
774 if (!pfl
->max_device_width
) {
775 pfl
->max_device_width
= pfl
->device_width
;
778 pfl
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, pflash_timer
, pfl
);
781 pfl
->status
= 0x80; /* WSM ready */
782 /* Hardcoded CFI table */
783 /* Standard "QRY" string */
784 pfl
->cfi_table
[0x10] = 'Q';
785 pfl
->cfi_table
[0x11] = 'R';
786 pfl
->cfi_table
[0x12] = 'Y';
787 /* Command set (Intel) */
788 pfl
->cfi_table
[0x13] = 0x01;
789 pfl
->cfi_table
[0x14] = 0x00;
790 /* Primary extended table address (none) */
791 pfl
->cfi_table
[0x15] = 0x31;
792 pfl
->cfi_table
[0x16] = 0x00;
793 /* Alternate command set (none) */
794 pfl
->cfi_table
[0x17] = 0x00;
795 pfl
->cfi_table
[0x18] = 0x00;
796 /* Alternate extended table (none) */
797 pfl
->cfi_table
[0x19] = 0x00;
798 pfl
->cfi_table
[0x1A] = 0x00;
800 pfl
->cfi_table
[0x1B] = 0x45;
802 pfl
->cfi_table
[0x1C] = 0x55;
803 /* Vpp min (no Vpp pin) */
804 pfl
->cfi_table
[0x1D] = 0x00;
805 /* Vpp max (no Vpp pin) */
806 pfl
->cfi_table
[0x1E] = 0x00;
808 pfl
->cfi_table
[0x1F] = 0x07;
809 /* Timeout for min size buffer write */
810 pfl
->cfi_table
[0x20] = 0x07;
811 /* Typical timeout for block erase */
812 pfl
->cfi_table
[0x21] = 0x0a;
813 /* Typical timeout for full chip erase (4096 ms) */
814 pfl
->cfi_table
[0x22] = 0x00;
816 pfl
->cfi_table
[0x23] = 0x04;
817 /* Max timeout for buffer write */
818 pfl
->cfi_table
[0x24] = 0x04;
819 /* Max timeout for block erase */
820 pfl
->cfi_table
[0x25] = 0x04;
821 /* Max timeout for chip erase */
822 pfl
->cfi_table
[0x26] = 0x00;
824 pfl
->cfi_table
[0x27] = ctz32(device_len
); /* + 1; */
825 /* Flash device interface (8 & 16 bits) */
826 pfl
->cfi_table
[0x28] = 0x02;
827 pfl
->cfi_table
[0x29] = 0x00;
828 /* Max number of bytes in multi-bytes write */
829 if (pfl
->bank_width
== 1) {
830 pfl
->cfi_table
[0x2A] = 0x08;
832 pfl
->cfi_table
[0x2A] = 0x0B;
834 pfl
->writeblock_size
= 1 << pfl
->cfi_table
[0x2A];
835 if (!pfl
->old_multiple_chip_handling
&& num_devices
> 1) {
836 pfl
->writeblock_size
*= num_devices
;
839 pfl
->cfi_table
[0x2B] = 0x00;
840 /* Number of erase block regions (uniform) */
841 pfl
->cfi_table
[0x2C] = 0x01;
842 /* Erase block region 1 */
843 pfl
->cfi_table
[0x2D] = blocks_per_device
- 1;
844 pfl
->cfi_table
[0x2E] = (blocks_per_device
- 1) >> 8;
845 pfl
->cfi_table
[0x2F] = sector_len_per_device
>> 8;
846 pfl
->cfi_table
[0x30] = sector_len_per_device
>> 16;
849 pfl
->cfi_table
[0x31] = 'P';
850 pfl
->cfi_table
[0x32] = 'R';
851 pfl
->cfi_table
[0x33] = 'I';
853 pfl
->cfi_table
[0x34] = '1';
854 pfl
->cfi_table
[0x35] = '0';
856 pfl
->cfi_table
[0x36] = 0x00;
857 pfl
->cfi_table
[0x37] = 0x00;
858 pfl
->cfi_table
[0x38] = 0x00;
859 pfl
->cfi_table
[0x39] = 0x00;
861 pfl
->cfi_table
[0x3a] = 0x00;
863 pfl
->cfi_table
[0x3b] = 0x00;
864 pfl
->cfi_table
[0x3c] = 0x00;
866 pfl
->cfi_table
[0x3f] = 0x01; /* Number of protection fields */
869 static void pflash_cfi01_system_reset(DeviceState
*dev
)
871 PFlashCFI01
*pfl
= PFLASH_CFI01(dev
);
874 * The command 0x00 is not assigned by the CFI open standard,
875 * but QEMU historically uses it for the READ_ARRAY command (0xff).
879 memory_region_rom_device_set_romd(&pfl
->mem
, true);
881 * The WSM ready timer occurs at most 150ns after system reset.
882 * This model deliberately ignores this delay.
887 static Property pflash_cfi01_properties
[] = {
888 DEFINE_PROP_DRIVE("drive", PFlashCFI01
, blk
),
889 /* num-blocks is the number of blocks actually visible to the guest,
890 * ie the total size of the device divided by the sector length.
891 * If we're emulating flash devices wired in parallel the actual
892 * number of blocks per indvidual device will differ.
894 DEFINE_PROP_UINT32("num-blocks", PFlashCFI01
, nb_blocs
, 0),
895 DEFINE_PROP_UINT64("sector-length", PFlashCFI01
, sector_len
, 0),
896 /* width here is the overall width of this QEMU device in bytes.
897 * The QEMU device may be emulating a number of flash devices
898 * wired up in parallel; the width of each individual flash
899 * device should be specified via device-width. If the individual
900 * devices have a maximum width which is greater than the width
901 * they are being used for, this maximum width should be set via
902 * max-device-width (which otherwise defaults to device-width).
903 * So for instance a 32-bit wide QEMU flash device made from four
904 * 16-bit flash devices used in 8-bit wide mode would be configured
905 * with width = 4, device-width = 1, max-device-width = 2.
907 * If device-width is not specified we default to backwards
908 * compatible behaviour which is a bad emulation of two
909 * 16 bit devices making up a 32 bit wide QEMU device. This
910 * is deprecated for new uses of this device.
912 DEFINE_PROP_UINT8("width", PFlashCFI01
, bank_width
, 0),
913 DEFINE_PROP_UINT8("device-width", PFlashCFI01
, device_width
, 0),
914 DEFINE_PROP_UINT8("max-device-width", PFlashCFI01
, max_device_width
, 0),
915 DEFINE_PROP_BIT("big-endian", PFlashCFI01
, features
, PFLASH_BE
, 0),
916 DEFINE_PROP_BIT("secure", PFlashCFI01
, features
, PFLASH_SECURE
, 0),
917 DEFINE_PROP_UINT16("id0", PFlashCFI01
, ident0
, 0),
918 DEFINE_PROP_UINT16("id1", PFlashCFI01
, ident1
, 0),
919 DEFINE_PROP_UINT16("id2", PFlashCFI01
, ident2
, 0),
920 DEFINE_PROP_UINT16("id3", PFlashCFI01
, ident3
, 0),
921 DEFINE_PROP_STRING("name", PFlashCFI01
, name
),
922 DEFINE_PROP_BOOL("old-multiple-chip-handling", PFlashCFI01
,
923 old_multiple_chip_handling
, false),
924 DEFINE_PROP_END_OF_LIST(),
927 static void pflash_cfi01_class_init(ObjectClass
*klass
, void *data
)
929 DeviceClass
*dc
= DEVICE_CLASS(klass
);
931 dc
->reset
= pflash_cfi01_system_reset
;
932 dc
->realize
= pflash_cfi01_realize
;
933 device_class_set_props(dc
, pflash_cfi01_properties
);
934 dc
->vmsd
= &vmstate_pflash
;
935 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
939 static const TypeInfo pflash_cfi01_info
= {
940 .name
= TYPE_PFLASH_CFI01
,
941 .parent
= TYPE_SYS_BUS_DEVICE
,
942 .instance_size
= sizeof(PFlashCFI01
),
943 .class_init
= pflash_cfi01_class_init
,
946 static void pflash_cfi01_register_types(void)
948 type_register_static(&pflash_cfi01_info
);
951 type_init(pflash_cfi01_register_types
)
953 PFlashCFI01
*pflash_cfi01_register(hwaddr base
,
959 uint16_t id0
, uint16_t id1
,
960 uint16_t id2
, uint16_t id3
,
963 DeviceState
*dev
= qdev_create(NULL
, TYPE_PFLASH_CFI01
);
966 qdev_prop_set_drive(dev
, "drive", blk
, &error_abort
);
968 assert(size
% sector_len
== 0);
969 qdev_prop_set_uint32(dev
, "num-blocks", size
/ sector_len
);
970 qdev_prop_set_uint64(dev
, "sector-length", sector_len
);
971 qdev_prop_set_uint8(dev
, "width", bank_width
);
972 qdev_prop_set_bit(dev
, "big-endian", !!be
);
973 qdev_prop_set_uint16(dev
, "id0", id0
);
974 qdev_prop_set_uint16(dev
, "id1", id1
);
975 qdev_prop_set_uint16(dev
, "id2", id2
);
976 qdev_prop_set_uint16(dev
, "id3", id3
);
977 qdev_prop_set_string(dev
, "name", name
);
978 qdev_init_nofail(dev
);
980 sysbus_mmio_map(SYS_BUS_DEVICE(dev
), 0, base
);
981 return PFLASH_CFI01(dev
);
984 BlockBackend
*pflash_cfi01_get_blk(PFlashCFI01
*fl
)
989 MemoryRegion
*pflash_cfi01_get_memory(PFlashCFI01
*fl
)
995 * Handle -drive if=pflash for machines that use properties.
996 * If @dinfo is null, do nothing.
997 * Else if @fl's property "drive" is already set, fatal error.
998 * Else set it to the BlockBackend with @dinfo.
1000 void pflash_cfi01_legacy_drive(PFlashCFI01
*fl
, DriveInfo
*dinfo
)
1008 loc_push_none(&loc
);
1009 qemu_opts_loc_restore(dinfo
->opts
);
1011 error_report("clashes with -machine");
1014 qdev_prop_set_drive(DEVICE(fl
), "drive",
1015 blk_by_legacy_dinfo(dinfo
), &error_fatal
);
1019 static void postload_update_cb(void *opaque
, int running
, RunState state
)
1021 PFlashCFI01
*pfl
= opaque
;
1023 /* This is called after bdrv_invalidate_cache_all. */
1024 qemu_del_vm_change_state_handler(pfl
->vmstate
);
1025 pfl
->vmstate
= NULL
;
1027 DPRINTF("%s: updating bdrv for %s\n", __func__
, pfl
->name
);
1028 pflash_update(pfl
, 0, pfl
->sector_len
* pfl
->nb_blocs
);
1031 static int pflash_post_load(void *opaque
, int version_id
)
1033 PFlashCFI01
*pfl
= opaque
;
1036 pfl
->vmstate
= qemu_add_vm_change_state_handler(postload_update_cb
,