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"
41 #include "hw/block/flash.h"
42 #include "sysemu/block-backend.h"
43 #include "qapi/error.h"
44 #include "qemu/timer.h"
45 #include "qemu/bitops.h"
46 #include "exec/address-spaces.h"
47 #include "qemu/host-utils.h"
49 #include "hw/sysbus.h"
50 #include "sysemu/sysemu.h"
52 #define PFLASH_BUG(fmt, ...) \
54 fprintf(stderr, "PFLASH: Possible BUG - " fmt, ## __VA_ARGS__); \
58 /* #define PFLASH_DEBUG */
60 #define DPRINTF(fmt, ...) \
62 fprintf(stderr, "PFLASH: " fmt , ## __VA_ARGS__); \
65 #define DPRINTF(fmt, ...) do { } while (0)
68 #define CFI_PFLASH01(obj) OBJECT_CHECK(pflash_t, (obj), TYPE_CFI_PFLASH01)
71 #define PFLASH_SECURE 1
75 SysBusDevice parent_obj
;
82 uint8_t device_width
; /* If 0, device width not specified. */
83 uint8_t max_device_width
; /* max device width in bytes */
85 uint8_t wcycle
; /* if 0, the flash is read normally */
94 uint8_t cfi_table
[0x52];
96 unsigned int writeblock_size
;
101 VMChangeStateEntry
*vmstate
;
102 bool old_multiple_chip_handling
;
105 static int pflash_post_load(void *opaque
, int version_id
);
107 static const VMStateDescription vmstate_pflash
= {
108 .name
= "pflash_cfi01",
110 .minimum_version_id
= 1,
111 .post_load
= pflash_post_load
,
112 .fields
= (VMStateField
[]) {
113 VMSTATE_UINT8(wcycle
, pflash_t
),
114 VMSTATE_UINT8(cmd
, pflash_t
),
115 VMSTATE_UINT8(status
, pflash_t
),
116 VMSTATE_UINT64(counter
, pflash_t
),
117 VMSTATE_END_OF_LIST()
121 static void pflash_timer (void *opaque
)
123 pflash_t
*pfl
= opaque
;
125 DPRINTF("%s: command %02x done\n", __func__
, pfl
->cmd
);
128 memory_region_rom_device_set_romd(&pfl
->mem
, true);
133 /* Perform a CFI query based on the bank width of the flash.
134 * If this code is called we know we have a device_width set for
137 static uint32_t pflash_cfi_query(pflash_t
*pfl
, hwaddr offset
)
143 /* Adjust incoming offset to match expected device-width
144 * addressing. CFI query addresses are always specified in terms of
145 * the maximum supported width of the device. This means that x8
146 * devices and x8/x16 devices in x8 mode behave differently. For
147 * devices that are not used at their max width, we will be
148 * provided with addresses that use higher address bits than
149 * expected (based on the max width), so we will shift them lower
150 * so that they will match the addresses used when
151 * device_width==max_device_width.
153 boff
= offset
>> (ctz32(pfl
->bank_width
) +
154 ctz32(pfl
->max_device_width
) - ctz32(pfl
->device_width
));
156 if (boff
> pfl
->cfi_len
) {
159 /* Now we will construct the CFI response generated by a single
160 * device, then replicate that for all devices that make up the
161 * bus. For wide parts used in x8 mode, CFI query responses
162 * are different than native byte-wide parts.
164 resp
= pfl
->cfi_table
[boff
];
165 if (pfl
->device_width
!= pfl
->max_device_width
) {
166 /* The only case currently supported is x8 mode for a
169 if (pfl
->device_width
!= 1 || pfl
->bank_width
> 4) {
170 DPRINTF("%s: Unsupported device configuration: "
171 "device_width=%d, max_device_width=%d\n",
172 __func__
, pfl
->device_width
,
173 pfl
->max_device_width
);
176 /* CFI query data is repeated, rather than zero padded for
177 * wide devices used in x8 mode.
179 for (i
= 1; i
< pfl
->max_device_width
; i
++) {
180 resp
= deposit32(resp
, 8 * i
, 8, pfl
->cfi_table
[boff
]);
183 /* Replicate responses for each device in bank. */
184 if (pfl
->device_width
< pfl
->bank_width
) {
185 for (i
= pfl
->device_width
;
186 i
< pfl
->bank_width
; i
+= pfl
->device_width
) {
187 resp
= deposit32(resp
, 8 * i
, 8 * pfl
->device_width
, resp
);
196 /* Perform a device id query based on the bank width of the flash. */
197 static uint32_t pflash_devid_query(pflash_t
*pfl
, hwaddr offset
)
203 /* Adjust incoming offset to match expected device-width
204 * addressing. Device ID read addresses are always specified in
205 * terms of the maximum supported width of the device. This means
206 * that x8 devices and x8/x16 devices in x8 mode behave
207 * differently. For devices that are not used at their max width,
208 * we will be provided with addresses that use higher address bits
209 * than expected (based on the max width), so we will shift them
210 * lower so that they will match the addresses used when
211 * device_width==max_device_width.
213 boff
= offset
>> (ctz32(pfl
->bank_width
) +
214 ctz32(pfl
->max_device_width
) - ctz32(pfl
->device_width
));
216 /* Mask off upper bits which may be used in to query block
217 * or sector lock status at other addresses.
218 * Offsets 2/3 are block lock status, is not emulated.
220 switch (boff
& 0xFF) {
223 DPRINTF("%s: Manufacturer Code %04x\n", __func__
, resp
);
227 DPRINTF("%s: Device ID Code %04x\n", __func__
, resp
);
230 DPRINTF("%s: Read Device Information offset=%x\n", __func__
,
235 /* Replicate responses for each device in bank. */
236 if (pfl
->device_width
< pfl
->bank_width
) {
237 for (i
= pfl
->device_width
;
238 i
< pfl
->bank_width
; i
+= pfl
->device_width
) {
239 resp
= deposit32(resp
, 8 * i
, 8 * pfl
->device_width
, resp
);
246 static uint32_t pflash_data_read(pflash_t
*pfl
, hwaddr offset
,
256 DPRINTF("%s: data offset " TARGET_FMT_plx
" %02x\n",
257 __func__
, offset
, ret
);
261 ret
= p
[offset
] << 8;
262 ret
|= p
[offset
+ 1];
265 ret
|= p
[offset
+ 1] << 8;
267 DPRINTF("%s: data offset " TARGET_FMT_plx
" %04x\n",
268 __func__
, offset
, ret
);
272 ret
= p
[offset
] << 24;
273 ret
|= p
[offset
+ 1] << 16;
274 ret
|= p
[offset
+ 2] << 8;
275 ret
|= p
[offset
+ 3];
278 ret
|= p
[offset
+ 1] << 8;
279 ret
|= p
[offset
+ 2] << 16;
280 ret
|= p
[offset
+ 3] << 24;
282 DPRINTF("%s: data offset " TARGET_FMT_plx
" %08x\n",
283 __func__
, offset
, ret
);
286 DPRINTF("BUG in %s\n", __func__
);
292 static uint32_t pflash_read (pflash_t
*pfl
, hwaddr offset
,
301 DPRINTF("%s: reading offset " TARGET_FMT_plx
" under cmd %02x width %d\n",
302 __func__
, offset
, pfl
->cmd
, width
);
306 /* This should never happen : reset state & treat it as a read */
307 DPRINTF("%s: unknown command state: %x\n", __func__
, pfl
->cmd
);
310 /* fall through to read code */
312 /* Flash area read */
313 ret
= pflash_data_read(pfl
, offset
, width
, be
);
315 case 0x10: /* Single byte program */
316 case 0x20: /* Block erase */
317 case 0x28: /* Block erase */
318 case 0x40: /* single byte program */
319 case 0x50: /* Clear status register */
320 case 0x60: /* Block /un)lock */
321 case 0x70: /* Status Register */
322 case 0xe8: /* Write block */
323 /* Status register read. Return status from each device in
327 if (pfl
->device_width
&& width
> pfl
->device_width
) {
328 int shift
= pfl
->device_width
* 8;
329 while (shift
+ pfl
->device_width
* 8 <= width
* 8) {
330 ret
|= pfl
->status
<< shift
;
331 shift
+= pfl
->device_width
* 8;
333 } else if (!pfl
->device_width
&& width
> 2) {
334 /* Handle 32 bit flash cases where device width is not
335 * set. (Existing behavior before device width added.)
337 ret
|= pfl
->status
<< 16;
339 DPRINTF("%s: status %x\n", __func__
, ret
);
342 if (!pfl
->device_width
) {
343 /* Preserve old behavior if device width not specified */
344 boff
= offset
& 0xFF;
345 if (pfl
->bank_width
== 2) {
347 } else if (pfl
->bank_width
== 4) {
353 ret
= pfl
->ident0
<< 8 | pfl
->ident1
;
354 DPRINTF("%s: Manufacturer Code %04x\n", __func__
, ret
);
357 ret
= pfl
->ident2
<< 8 | pfl
->ident3
;
358 DPRINTF("%s: Device ID Code %04x\n", __func__
, ret
);
361 DPRINTF("%s: Read Device Information boff=%x\n", __func__
,
367 /* If we have a read larger than the bank_width, combine multiple
368 * manufacturer/device ID queries into a single response.
371 for (i
= 0; i
< width
; i
+= pfl
->bank_width
) {
372 ret
= deposit32(ret
, i
* 8, pfl
->bank_width
* 8,
373 pflash_devid_query(pfl
,
374 offset
+ i
* pfl
->bank_width
));
378 case 0x98: /* Query mode */
379 if (!pfl
->device_width
) {
380 /* Preserve old behavior if device width not specified */
381 boff
= offset
& 0xFF;
382 if (pfl
->bank_width
== 2) {
384 } else if (pfl
->bank_width
== 4) {
388 if (boff
> pfl
->cfi_len
) {
391 ret
= pfl
->cfi_table
[boff
];
394 /* If we have a read larger than the bank_width, combine multiple
395 * CFI queries into a single response.
398 for (i
= 0; i
< width
; i
+= pfl
->bank_width
) {
399 ret
= deposit32(ret
, i
* 8, pfl
->bank_width
* 8,
400 pflash_cfi_query(pfl
,
401 offset
+ i
* pfl
->bank_width
));
410 /* update flash content on disk */
411 static void pflash_update(pflash_t
*pfl
, int offset
,
416 offset_end
= offset
+ size
;
417 /* widen to sector boundaries */
418 offset
= QEMU_ALIGN_DOWN(offset
, BDRV_SECTOR_SIZE
);
419 offset_end
= QEMU_ALIGN_UP(offset_end
, BDRV_SECTOR_SIZE
);
420 blk_pwrite(pfl
->blk
, offset
, pfl
->storage
+ offset
,
421 offset_end
- offset
, 0);
425 static inline void pflash_data_write(pflash_t
*pfl
, hwaddr offset
,
426 uint32_t value
, int width
, int be
)
428 uint8_t *p
= pfl
->storage
;
430 DPRINTF("%s: block write offset " TARGET_FMT_plx
431 " value %x counter %016" PRIx64
"\n",
432 __func__
, offset
, value
, pfl
->counter
);
439 p
[offset
] = value
>> 8;
440 p
[offset
+ 1] = value
;
443 p
[offset
+ 1] = value
>> 8;
448 p
[offset
] = value
>> 24;
449 p
[offset
+ 1] = value
>> 16;
450 p
[offset
+ 2] = value
>> 8;
451 p
[offset
+ 3] = value
;
454 p
[offset
+ 1] = value
>> 8;
455 p
[offset
+ 2] = value
>> 16;
456 p
[offset
+ 3] = value
>> 24;
463 static void pflash_write(pflash_t
*pfl
, hwaddr offset
,
464 uint32_t value
, int width
, int be
)
471 DPRINTF("%s: writing offset " TARGET_FMT_plx
" value %08x width %d wcycle 0x%x\n",
472 __func__
, offset
, value
, width
, pfl
->wcycle
);
475 /* Set the device in I/O access mode */
476 memory_region_rom_device_set_romd(&pfl
->mem
, false);
479 switch (pfl
->wcycle
) {
485 case 0x10: /* Single Byte Program */
486 case 0x40: /* Single Byte Program */
487 DPRINTF("%s: Single Byte Program\n", __func__
);
489 case 0x20: /* Block erase */
491 offset
&= ~(pfl
->sector_len
- 1);
493 DPRINTF("%s: block erase at " TARGET_FMT_plx
" bytes %x\n",
494 __func__
, offset
, (unsigned)pfl
->sector_len
);
497 memset(p
+ offset
, 0xff, pfl
->sector_len
);
498 pflash_update(pfl
, offset
, pfl
->sector_len
);
500 pfl
->status
|= 0x20; /* Block erase error */
502 pfl
->status
|= 0x80; /* Ready! */
504 case 0x50: /* Clear status bits */
505 DPRINTF("%s: Clear status bits\n", __func__
);
508 case 0x60: /* Block (un)lock */
509 DPRINTF("%s: Block unlock\n", __func__
);
511 case 0x70: /* Status Register */
512 DPRINTF("%s: Read status register\n", __func__
);
515 case 0x90: /* Read Device ID */
516 DPRINTF("%s: Read Device information\n", __func__
);
519 case 0x98: /* CFI query */
520 DPRINTF("%s: CFI query\n", __func__
);
522 case 0xe8: /* Write to buffer */
523 DPRINTF("%s: Write to buffer\n", __func__
);
524 pfl
->status
|= 0x80; /* Ready! */
526 case 0xf0: /* Probe for AMD flash */
527 DPRINTF("%s: Probe for AMD flash\n", __func__
);
529 case 0xff: /* Read array mode */
530 DPRINTF("%s: Read array mode\n", __func__
);
540 case 0x10: /* Single Byte Program */
541 case 0x40: /* Single Byte Program */
542 DPRINTF("%s: Single Byte Program\n", __func__
);
544 pflash_data_write(pfl
, offset
, value
, width
, be
);
545 pflash_update(pfl
, offset
, width
);
547 pfl
->status
|= 0x10; /* Programming error */
549 pfl
->status
|= 0x80; /* Ready! */
552 case 0x20: /* Block erase */
554 if (cmd
== 0xd0) { /* confirm */
557 } else if (cmd
== 0xff) { /* read array mode */
564 /* Mask writeblock size based on device width, or bank width if
565 * device width not specified.
567 if (pfl
->device_width
) {
568 value
= extract32(value
, 0, pfl
->device_width
* 8);
570 value
= extract32(value
, 0, pfl
->bank_width
* 8);
572 DPRINTF("%s: block write of %x bytes\n", __func__
, value
);
573 pfl
->counter
= value
;
580 } else if (cmd
== 0x01) {
583 } else if (cmd
== 0xff) {
586 DPRINTF("%s: Unknown (un)locking command\n", __func__
);
594 DPRINTF("%s: leaving query mode\n", __func__
);
603 case 0xe8: /* Block write */
605 pflash_data_write(pfl
, offset
, value
, width
, be
);
607 pfl
->status
|= 0x10; /* Programming error */
613 hwaddr mask
= pfl
->writeblock_size
- 1;
616 DPRINTF("%s: block write finished\n", __func__
);
619 /* Flush the entire write buffer onto backing storage. */
620 pflash_update(pfl
, offset
& mask
, pfl
->writeblock_size
);
622 pfl
->status
|= 0x10; /* Programming error */
632 case 3: /* Confirm mode */
634 case 0xe8: /* Block write */
639 DPRINTF("%s: unknown command for \"write block\"\n", __func__
);
640 PFLASH_BUG("Write block confirm");
649 /* Should never happen */
650 DPRINTF("%s: invalid write state\n", __func__
);
656 qemu_log_mask(LOG_UNIMP
, "%s: Unimplemented flash cmd sequence "
657 "(offset " TARGET_FMT_plx
", wcycle 0x%x cmd 0x%x value 0x%x)"
658 "\n", __func__
, offset
, pfl
->wcycle
, pfl
->cmd
, value
);
661 memory_region_rom_device_set_romd(&pfl
->mem
, true);
668 static MemTxResult
pflash_mem_read_with_attrs(void *opaque
, hwaddr addr
, uint64_t *value
,
669 unsigned len
, MemTxAttrs attrs
)
671 pflash_t
*pfl
= opaque
;
672 bool be
= !!(pfl
->features
& (1 << PFLASH_BE
));
674 if ((pfl
->features
& (1 << PFLASH_SECURE
)) && !attrs
.secure
) {
675 *value
= pflash_data_read(opaque
, addr
, len
, be
);
677 *value
= pflash_read(opaque
, addr
, len
, be
);
682 static MemTxResult
pflash_mem_write_with_attrs(void *opaque
, hwaddr addr
, uint64_t value
,
683 unsigned len
, MemTxAttrs attrs
)
685 pflash_t
*pfl
= opaque
;
686 bool be
= !!(pfl
->features
& (1 << PFLASH_BE
));
688 if ((pfl
->features
& (1 << PFLASH_SECURE
)) && !attrs
.secure
) {
691 pflash_write(opaque
, addr
, value
, len
, be
);
696 static const MemoryRegionOps pflash_cfi01_ops
= {
697 .read_with_attrs
= pflash_mem_read_with_attrs
,
698 .write_with_attrs
= pflash_mem_write_with_attrs
,
699 .endianness
= DEVICE_NATIVE_ENDIAN
,
702 static void pflash_cfi01_realize(DeviceState
*dev
, Error
**errp
)
704 pflash_t
*pfl
= CFI_PFLASH01(dev
);
707 uint64_t blocks_per_device
, sector_len_per_device
, device_len
;
709 Error
*local_err
= NULL
;
711 if (pfl
->sector_len
== 0) {
712 error_setg(errp
, "attribute \"sector-length\" not specified or zero.");
715 if (pfl
->nb_blocs
== 0) {
716 error_setg(errp
, "attribute \"num-blocks\" not specified or zero.");
719 if (pfl
->name
== NULL
) {
720 error_setg(errp
, "attribute \"name\" not specified.");
724 total_len
= pfl
->sector_len
* pfl
->nb_blocs
;
726 /* These are only used to expose the parameters of each device
727 * in the cfi_table[].
729 num_devices
= pfl
->device_width
? (pfl
->bank_width
/ pfl
->device_width
) : 1;
730 if (pfl
->old_multiple_chip_handling
) {
731 blocks_per_device
= pfl
->nb_blocs
/ num_devices
;
732 sector_len_per_device
= pfl
->sector_len
;
734 blocks_per_device
= pfl
->nb_blocs
;
735 sector_len_per_device
= pfl
->sector_len
/ num_devices
;
737 device_len
= sector_len_per_device
* blocks_per_device
;
739 /* XXX: to be fixed */
741 if (total_len
!= (8 * 1024 * 1024) && total_len
!= (16 * 1024 * 1024) &&
742 total_len
!= (32 * 1024 * 1024) && total_len
!= (64 * 1024 * 1024))
746 memory_region_init_rom_device(
747 &pfl
->mem
, OBJECT(dev
),
750 pfl
->name
, total_len
, &local_err
);
752 error_propagate(errp
, local_err
);
756 vmstate_register_ram(&pfl
->mem
, DEVICE(pfl
));
757 pfl
->storage
= memory_region_get_ram_ptr(&pfl
->mem
);
758 sysbus_init_mmio(SYS_BUS_DEVICE(dev
), &pfl
->mem
);
762 pfl
->ro
= blk_is_read_only(pfl
->blk
);
763 perm
= BLK_PERM_CONSISTENT_READ
| (pfl
->ro
? 0 : BLK_PERM_WRITE
);
764 ret
= blk_set_perm(pfl
->blk
, perm
, BLK_PERM_ALL
, errp
);
773 /* read the initial flash content */
774 ret
= blk_pread(pfl
->blk
, 0, pfl
->storage
, total_len
);
777 vmstate_unregister_ram(&pfl
->mem
, DEVICE(pfl
));
778 error_setg(errp
, "failed to read the initial flash content");
783 /* Default to devices being used at their maximum device width. This was
784 * assumed before the device_width support was added.
786 if (!pfl
->max_device_width
) {
787 pfl
->max_device_width
= pfl
->device_width
;
790 pfl
->timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
, pflash_timer
, pfl
);
794 /* Hardcoded CFI table */
796 /* Standard "QRY" string */
797 pfl
->cfi_table
[0x10] = 'Q';
798 pfl
->cfi_table
[0x11] = 'R';
799 pfl
->cfi_table
[0x12] = 'Y';
800 /* Command set (Intel) */
801 pfl
->cfi_table
[0x13] = 0x01;
802 pfl
->cfi_table
[0x14] = 0x00;
803 /* Primary extended table address (none) */
804 pfl
->cfi_table
[0x15] = 0x31;
805 pfl
->cfi_table
[0x16] = 0x00;
806 /* Alternate command set (none) */
807 pfl
->cfi_table
[0x17] = 0x00;
808 pfl
->cfi_table
[0x18] = 0x00;
809 /* Alternate extended table (none) */
810 pfl
->cfi_table
[0x19] = 0x00;
811 pfl
->cfi_table
[0x1A] = 0x00;
813 pfl
->cfi_table
[0x1B] = 0x45;
815 pfl
->cfi_table
[0x1C] = 0x55;
816 /* Vpp min (no Vpp pin) */
817 pfl
->cfi_table
[0x1D] = 0x00;
818 /* Vpp max (no Vpp pin) */
819 pfl
->cfi_table
[0x1E] = 0x00;
821 pfl
->cfi_table
[0x1F] = 0x07;
822 /* Timeout for min size buffer write */
823 pfl
->cfi_table
[0x20] = 0x07;
824 /* Typical timeout for block erase */
825 pfl
->cfi_table
[0x21] = 0x0a;
826 /* Typical timeout for full chip erase (4096 ms) */
827 pfl
->cfi_table
[0x22] = 0x00;
829 pfl
->cfi_table
[0x23] = 0x04;
830 /* Max timeout for buffer write */
831 pfl
->cfi_table
[0x24] = 0x04;
832 /* Max timeout for block erase */
833 pfl
->cfi_table
[0x25] = 0x04;
834 /* Max timeout for chip erase */
835 pfl
->cfi_table
[0x26] = 0x00;
837 pfl
->cfi_table
[0x27] = ctz32(device_len
); /* + 1; */
838 /* Flash device interface (8 & 16 bits) */
839 pfl
->cfi_table
[0x28] = 0x02;
840 pfl
->cfi_table
[0x29] = 0x00;
841 /* Max number of bytes in multi-bytes write */
842 if (pfl
->bank_width
== 1) {
843 pfl
->cfi_table
[0x2A] = 0x08;
845 pfl
->cfi_table
[0x2A] = 0x0B;
847 pfl
->writeblock_size
= 1 << pfl
->cfi_table
[0x2A];
848 if (!pfl
->old_multiple_chip_handling
&& num_devices
> 1) {
849 pfl
->writeblock_size
*= num_devices
;
852 pfl
->cfi_table
[0x2B] = 0x00;
853 /* Number of erase block regions (uniform) */
854 pfl
->cfi_table
[0x2C] = 0x01;
855 /* Erase block region 1 */
856 pfl
->cfi_table
[0x2D] = blocks_per_device
- 1;
857 pfl
->cfi_table
[0x2E] = (blocks_per_device
- 1) >> 8;
858 pfl
->cfi_table
[0x2F] = sector_len_per_device
>> 8;
859 pfl
->cfi_table
[0x30] = sector_len_per_device
>> 16;
862 pfl
->cfi_table
[0x31] = 'P';
863 pfl
->cfi_table
[0x32] = 'R';
864 pfl
->cfi_table
[0x33] = 'I';
866 pfl
->cfi_table
[0x34] = '1';
867 pfl
->cfi_table
[0x35] = '0';
869 pfl
->cfi_table
[0x36] = 0x00;
870 pfl
->cfi_table
[0x37] = 0x00;
871 pfl
->cfi_table
[0x38] = 0x00;
872 pfl
->cfi_table
[0x39] = 0x00;
874 pfl
->cfi_table
[0x3a] = 0x00;
876 pfl
->cfi_table
[0x3b] = 0x00;
877 pfl
->cfi_table
[0x3c] = 0x00;
879 pfl
->cfi_table
[0x3f] = 0x01; /* Number of protection fields */
882 static Property pflash_cfi01_properties
[] = {
883 DEFINE_PROP_DRIVE("drive", struct pflash_t
, blk
),
884 /* num-blocks is the number of blocks actually visible to the guest,
885 * ie the total size of the device divided by the sector length.
886 * If we're emulating flash devices wired in parallel the actual
887 * number of blocks per indvidual device will differ.
889 DEFINE_PROP_UINT32("num-blocks", struct pflash_t
, nb_blocs
, 0),
890 DEFINE_PROP_UINT64("sector-length", struct pflash_t
, sector_len
, 0),
891 /* width here is the overall width of this QEMU device in bytes.
892 * The QEMU device may be emulating a number of flash devices
893 * wired up in parallel; the width of each individual flash
894 * device should be specified via device-width. If the individual
895 * devices have a maximum width which is greater than the width
896 * they are being used for, this maximum width should be set via
897 * max-device-width (which otherwise defaults to device-width).
898 * So for instance a 32-bit wide QEMU flash device made from four
899 * 16-bit flash devices used in 8-bit wide mode would be configured
900 * with width = 4, device-width = 1, max-device-width = 2.
902 * If device-width is not specified we default to backwards
903 * compatible behaviour which is a bad emulation of two
904 * 16 bit devices making up a 32 bit wide QEMU device. This
905 * is deprecated for new uses of this device.
907 DEFINE_PROP_UINT8("width", struct pflash_t
, bank_width
, 0),
908 DEFINE_PROP_UINT8("device-width", struct pflash_t
, device_width
, 0),
909 DEFINE_PROP_UINT8("max-device-width", struct pflash_t
, max_device_width
, 0),
910 DEFINE_PROP_BIT("big-endian", struct pflash_t
, features
, PFLASH_BE
, 0),
911 DEFINE_PROP_BIT("secure", struct pflash_t
, features
, PFLASH_SECURE
, 0),
912 DEFINE_PROP_UINT16("id0", struct pflash_t
, ident0
, 0),
913 DEFINE_PROP_UINT16("id1", struct pflash_t
, ident1
, 0),
914 DEFINE_PROP_UINT16("id2", struct pflash_t
, ident2
, 0),
915 DEFINE_PROP_UINT16("id3", struct pflash_t
, ident3
, 0),
916 DEFINE_PROP_STRING("name", struct pflash_t
, name
),
917 DEFINE_PROP_BOOL("old-multiple-chip-handling", struct pflash_t
,
918 old_multiple_chip_handling
, false),
919 DEFINE_PROP_END_OF_LIST(),
922 static void pflash_cfi01_class_init(ObjectClass
*klass
, void *data
)
924 DeviceClass
*dc
= DEVICE_CLASS(klass
);
926 dc
->realize
= pflash_cfi01_realize
;
927 dc
->props
= pflash_cfi01_properties
;
928 dc
->vmsd
= &vmstate_pflash
;
929 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
933 static const TypeInfo pflash_cfi01_info
= {
934 .name
= TYPE_CFI_PFLASH01
,
935 .parent
= TYPE_SYS_BUS_DEVICE
,
936 .instance_size
= sizeof(struct pflash_t
),
937 .class_init
= pflash_cfi01_class_init
,
940 static void pflash_cfi01_register_types(void)
942 type_register_static(&pflash_cfi01_info
);
945 type_init(pflash_cfi01_register_types
)
947 pflash_t
*pflash_cfi01_register(hwaddr base
,
948 DeviceState
*qdev
, const char *name
,
951 uint32_t sector_len
, int nb_blocs
,
952 int bank_width
, uint16_t id0
, uint16_t id1
,
953 uint16_t id2
, uint16_t id3
, int be
)
955 DeviceState
*dev
= qdev_create(NULL
, TYPE_CFI_PFLASH01
);
958 qdev_prop_set_drive(dev
, "drive", blk
, &error_abort
);
960 qdev_prop_set_uint32(dev
, "num-blocks", nb_blocs
);
961 qdev_prop_set_uint64(dev
, "sector-length", sector_len
);
962 qdev_prop_set_uint8(dev
, "width", bank_width
);
963 qdev_prop_set_bit(dev
, "big-endian", !!be
);
964 qdev_prop_set_uint16(dev
, "id0", id0
);
965 qdev_prop_set_uint16(dev
, "id1", id1
);
966 qdev_prop_set_uint16(dev
, "id2", id2
);
967 qdev_prop_set_uint16(dev
, "id3", id3
);
968 qdev_prop_set_string(dev
, "name", name
);
969 qdev_init_nofail(dev
);
971 sysbus_mmio_map(SYS_BUS_DEVICE(dev
), 0, base
);
972 return CFI_PFLASH01(dev
);
975 MemoryRegion
*pflash_cfi01_get_memory(pflash_t
*fl
)
980 static void postload_update_cb(void *opaque
, int running
, RunState state
)
982 pflash_t
*pfl
= opaque
;
984 /* This is called after bdrv_invalidate_cache_all. */
985 qemu_del_vm_change_state_handler(pfl
->vmstate
);
988 DPRINTF("%s: updating bdrv for %s\n", __func__
, pfl
->name
);
989 pflash_update(pfl
, 0, pfl
->sector_len
* pfl
->nb_blocs
);
992 static int pflash_post_load(void *opaque
, int version_id
)
994 pflash_t
*pfl
= opaque
;
997 pfl
->vmstate
= qemu_add_vm_change_state_handler(postload_update_cb
,