]>
Commit | Line | Data |
---|---|---|
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 | ||
80c71a24 | 39 | #include "qemu/osdep.h" |
83c9f4ca | 40 | #include "hw/hw.h" |
0d09e41a | 41 | #include "hw/block/flash.h" |
4be74634 | 42 | #include "sysemu/block-backend.h" |
da34e65c | 43 | #include "qapi/error.h" |
1de7afc9 | 44 | #include "qemu/timer.h" |
1997b485 | 45 | #include "qemu/bitops.h" |
022c62cb | 46 | #include "exec/address-spaces.h" |
1de7afc9 | 47 | #include "qemu/host-utils.h" |
03dd024f | 48 | #include "qemu/log.h" |
83c9f4ca | 49 | #include "hw/sysbus.h" |
90c647db | 50 | #include "sysemu/sysemu.h" |
05ee37eb | 51 | |
001faf32 | 52 | #define PFLASH_BUG(fmt, ...) \ |
05ee37eb | 53 | do { \ |
ec9ea489 | 54 | fprintf(stderr, "PFLASH: Possible BUG - " fmt, ## __VA_ARGS__); \ |
05ee37eb AZ |
55 | exit(1); \ |
56 | } while(0) | |
57 | ||
58 | /* #define PFLASH_DEBUG */ | |
59 | #ifdef PFLASH_DEBUG | |
ec9ea489 PC |
60 | #define DPRINTF(fmt, ...) \ |
61 | do { \ | |
62 | fprintf(stderr, "PFLASH: " fmt , ## __VA_ARGS__); \ | |
05ee37eb AZ |
63 | } while (0) |
64 | #else | |
001faf32 | 65 | #define DPRINTF(fmt, ...) do { } while (0) |
05ee37eb AZ |
66 | #endif |
67 | ||
f1b44f0e HT |
68 | #define CFI_PFLASH01(obj) OBJECT_CHECK(pflash_t, (obj), TYPE_CFI_PFLASH01) |
69 | ||
e9809422 | 70 | #define PFLASH_BE 0 |
f71e42a5 | 71 | #define PFLASH_SECURE 1 |
e9809422 | 72 | |
c227f099 | 73 | struct pflash_t { |
f1b44f0e HT |
74 | /*< private >*/ |
75 | SysBusDevice parent_obj; | |
76 | /*< public >*/ | |
77 | ||
4be74634 | 78 | BlockBackend *blk; |
368a354f PC |
79 | uint32_t nb_blocs; |
80 | uint64_t sector_len; | |
4b6fedca | 81 | uint8_t bank_width; |
1997b485 | 82 | uint8_t device_width; /* If 0, device width not specified. */ |
fa21a7b1 | 83 | uint8_t max_device_width; /* max device width in bytes */ |
e9809422 | 84 | uint32_t features; |
d8d24fb7 | 85 | uint8_t wcycle; /* if 0, the flash is read normally */ |
05ee37eb AZ |
86 | int ro; |
87 | uint8_t cmd; | |
88 | uint8_t status; | |
368a354f PC |
89 | uint16_t ident0; |
90 | uint16_t ident1; | |
91 | uint16_t ident2; | |
92 | uint16_t ident3; | |
05ee37eb AZ |
93 | uint8_t cfi_len; |
94 | uint8_t cfi_table[0x52]; | |
d8d24fb7 | 95 | uint64_t counter; |
b4bf0a9a | 96 | unsigned int writeblock_size; |
05ee37eb | 97 | QEMUTimer *timer; |
cfe5f011 | 98 | MemoryRegion mem; |
368a354f | 99 | char *name; |
05ee37eb | 100 | void *storage; |
90c647db | 101 | VMChangeStateEntry *vmstate; |
feb0b1aa | 102 | bool old_multiple_chip_handling; |
05ee37eb AZ |
103 | }; |
104 | ||
4c0cfc72 LE |
105 | static int pflash_post_load(void *opaque, int version_id); |
106 | ||
d8d24fb7 PM |
107 | static const VMStateDescription vmstate_pflash = { |
108 | .name = "pflash_cfi01", | |
109 | .version_id = 1, | |
110 | .minimum_version_id = 1, | |
4c0cfc72 | 111 | .post_load = pflash_post_load, |
d8d24fb7 PM |
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() | |
118 | } | |
119 | }; | |
120 | ||
05ee37eb AZ |
121 | static void pflash_timer (void *opaque) |
122 | { | |
c227f099 | 123 | pflash_t *pfl = opaque; |
05ee37eb AZ |
124 | |
125 | DPRINTF("%s: command %02x done\n", __func__, pfl->cmd); | |
126 | /* Reset flash */ | |
127 | pfl->status ^= 0x80; | |
5f9a5ea1 | 128 | memory_region_rom_device_set_romd(&pfl->mem, true); |
5d79b80b | 129 | pfl->wcycle = 0; |
05ee37eb AZ |
130 | pfl->cmd = 0; |
131 | } | |
132 | ||
4433e660 RF |
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 | |
135 | * this flash. | |
136 | */ | |
137 | static uint32_t pflash_cfi_query(pflash_t *pfl, hwaddr offset) | |
138 | { | |
139 | int i; | |
140 | uint32_t resp = 0; | |
141 | hwaddr boff; | |
142 | ||
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. | |
152 | */ | |
153 | boff = offset >> (ctz32(pfl->bank_width) + | |
154 | ctz32(pfl->max_device_width) - ctz32(pfl->device_width)); | |
155 | ||
156 | if (boff > pfl->cfi_len) { | |
157 | return 0; | |
158 | } | |
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. | |
163 | */ | |
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 | |
167 | * wider part. | |
168 | */ | |
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); | |
174 | return 0; | |
175 | } | |
176 | /* CFI query data is repeated, rather than zero padded for | |
177 | * wide devices used in x8 mode. | |
178 | */ | |
179 | for (i = 1; i < pfl->max_device_width; i++) { | |
180 | resp = deposit32(resp, 8 * i, 8, pfl->cfi_table[boff]); | |
181 | } | |
182 | } | |
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); | |
188 | } | |
189 | } | |
190 | ||
191 | return resp; | |
192 | } | |
193 | ||
0163a2dc RF |
194 | |
195 | ||
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) | |
198 | { | |
199 | int i; | |
200 | uint32_t resp; | |
201 | hwaddr boff; | |
202 | ||
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. | |
212 | */ | |
213 | boff = offset >> (ctz32(pfl->bank_width) + | |
214 | ctz32(pfl->max_device_width) - ctz32(pfl->device_width)); | |
215 | ||
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. | |
219 | */ | |
220 | switch (boff & 0xFF) { | |
221 | case 0: | |
222 | resp = pfl->ident0; | |
afeb25f9 | 223 | DPRINTF("%s: Manufacturer Code %04x\n", __func__, resp); |
0163a2dc RF |
224 | break; |
225 | case 1: | |
226 | resp = pfl->ident1; | |
afeb25f9 | 227 | DPRINTF("%s: Device ID Code %04x\n", __func__, resp); |
0163a2dc RF |
228 | break; |
229 | default: | |
230 | DPRINTF("%s: Read Device Information offset=%x\n", __func__, | |
231 | (unsigned)offset); | |
232 | return 0; | |
233 | break; | |
234 | } | |
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); | |
240 | } | |
241 | } | |
242 | ||
243 | return resp; | |
244 | } | |
245 | ||
f71e42a5 PB |
246 | static uint32_t pflash_data_read(pflash_t *pfl, hwaddr offset, |
247 | int width, int be) | |
248 | { | |
249 | uint8_t *p; | |
250 | uint32_t ret; | |
251 | ||
252 | p = pfl->storage; | |
253 | switch (width) { | |
254 | case 1: | |
255 | ret = p[offset]; | |
256 | DPRINTF("%s: data offset " TARGET_FMT_plx " %02x\n", | |
257 | __func__, offset, ret); | |
258 | break; | |
259 | case 2: | |
260 | if (be) { | |
261 | ret = p[offset] << 8; | |
262 | ret |= p[offset + 1]; | |
263 | } else { | |
264 | ret = p[offset]; | |
265 | ret |= p[offset + 1] << 8; | |
266 | } | |
267 | DPRINTF("%s: data offset " TARGET_FMT_plx " %04x\n", | |
268 | __func__, offset, ret); | |
269 | break; | |
270 | case 4: | |
271 | if (be) { | |
272 | ret = p[offset] << 24; | |
273 | ret |= p[offset + 1] << 16; | |
274 | ret |= p[offset + 2] << 8; | |
275 | ret |= p[offset + 3]; | |
276 | } else { | |
277 | ret = p[offset]; | |
278 | ret |= p[offset + 1] << 8; | |
279 | ret |= p[offset + 2] << 16; | |
280 | ret |= p[offset + 3] << 24; | |
281 | } | |
282 | DPRINTF("%s: data offset " TARGET_FMT_plx " %08x\n", | |
283 | __func__, offset, ret); | |
284 | break; | |
285 | default: | |
286 | DPRINTF("BUG in %s\n", __func__); | |
287 | abort(); | |
288 | } | |
289 | return ret; | |
290 | } | |
291 | ||
a8170e5e | 292 | static uint32_t pflash_read (pflash_t *pfl, hwaddr offset, |
3d08ff69 | 293 | int width, int be) |
05ee37eb | 294 | { |
a8170e5e | 295 | hwaddr boff; |
05ee37eb | 296 | uint32_t ret; |
05ee37eb AZ |
297 | |
298 | ret = -1; | |
05ee37eb | 299 | |
fad8c772 EI |
300 | #if 0 |
301 | DPRINTF("%s: reading offset " TARGET_FMT_plx " under cmd %02x width %d\n", | |
06adb549 | 302 | __func__, offset, pfl->cmd, width); |
fad8c772 | 303 | #endif |
05ee37eb | 304 | switch (pfl->cmd) { |
1be97bf2 PM |
305 | default: |
306 | /* This should never happen : reset state & treat it as a read */ | |
307 | DPRINTF("%s: unknown command state: %x\n", __func__, pfl->cmd); | |
308 | pfl->wcycle = 0; | |
309 | pfl->cmd = 0; | |
310 | /* fall through to read code */ | |
05ee37eb AZ |
311 | case 0x00: |
312 | /* Flash area read */ | |
f71e42a5 | 313 | ret = pflash_data_read(pfl, offset, width, be); |
05ee37eb | 314 | break; |
6e392787 | 315 | case 0x10: /* Single byte program */ |
05ee37eb | 316 | case 0x20: /* Block erase */ |
6e392787 PM |
317 | case 0x28: /* Block erase */ |
318 | case 0x40: /* single byte program */ | |
05ee37eb AZ |
319 | case 0x50: /* Clear status register */ |
320 | case 0x60: /* Block /un)lock */ | |
321 | case 0x70: /* Status Register */ | |
322 | case 0xe8: /* Write block */ | |
2003889f RF |
323 | /* Status register read. Return status from each device in |
324 | * bank. | |
325 | */ | |
05ee37eb | 326 | ret = pfl->status; |
2003889f RF |
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; | |
332 | } | |
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.) | |
336 | */ | |
ea0a4f34 PB |
337 | ret |= pfl->status << 16; |
338 | } | |
05ee37eb AZ |
339 | DPRINTF("%s: status %x\n", __func__, ret); |
340 | break; | |
0b2ec6fc | 341 | case 0x90: |
0163a2dc RF |
342 | if (!pfl->device_width) { |
343 | /* Preserve old behavior if device width not specified */ | |
344 | boff = offset & 0xFF; | |
345 | if (pfl->bank_width == 2) { | |
346 | boff = boff >> 1; | |
347 | } else if (pfl->bank_width == 4) { | |
348 | boff = boff >> 2; | |
349 | } | |
4433e660 | 350 | |
0163a2dc RF |
351 | switch (boff) { |
352 | case 0: | |
353 | ret = pfl->ident0 << 8 | pfl->ident1; | |
354 | DPRINTF("%s: Manufacturer Code %04x\n", __func__, ret); | |
355 | break; | |
356 | case 1: | |
357 | ret = pfl->ident2 << 8 | pfl->ident3; | |
358 | DPRINTF("%s: Device ID Code %04x\n", __func__, ret); | |
359 | break; | |
360 | default: | |
361 | DPRINTF("%s: Read Device Information boff=%x\n", __func__, | |
362 | (unsigned)boff); | |
363 | ret = 0; | |
364 | break; | |
365 | } | |
366 | } else { | |
367 | /* If we have a read larger than the bank_width, combine multiple | |
368 | * manufacturer/device ID queries into a single response. | |
369 | */ | |
370 | int i; | |
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)); | |
375 | } | |
0b2ec6fc MW |
376 | } |
377 | break; | |
05ee37eb | 378 | case 0x98: /* Query mode */ |
4433e660 RF |
379 | if (!pfl->device_width) { |
380 | /* Preserve old behavior if device width not specified */ | |
381 | boff = offset & 0xFF; | |
382 | if (pfl->bank_width == 2) { | |
383 | boff = boff >> 1; | |
384 | } else if (pfl->bank_width == 4) { | |
385 | boff = boff >> 2; | |
386 | } | |
387 | ||
388 | if (boff > pfl->cfi_len) { | |
389 | ret = 0; | |
390 | } else { | |
391 | ret = pfl->cfi_table[boff]; | |
392 | } | |
393 | } else { | |
394 | /* If we have a read larger than the bank_width, combine multiple | |
395 | * CFI queries into a single response. | |
396 | */ | |
397 | int i; | |
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)); | |
402 | } | |
403 | } | |
404 | ||
05ee37eb | 405 | break; |
05ee37eb AZ |
406 | } |
407 | return ret; | |
408 | } | |
409 | ||
410 | /* update flash content on disk */ | |
c227f099 | 411 | static void pflash_update(pflash_t *pfl, int offset, |
05ee37eb AZ |
412 | int size) |
413 | { | |
414 | int offset_end; | |
4be74634 | 415 | if (pfl->blk) { |
05ee37eb | 416 | offset_end = offset + size; |
098e732d EB |
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); | |
05ee37eb AZ |
422 | } |
423 | } | |
424 | ||
a8170e5e | 425 | static inline void pflash_data_write(pflash_t *pfl, hwaddr offset, |
3d08ff69 | 426 | uint32_t value, int width, int be) |
d361be25 AZ |
427 | { |
428 | uint8_t *p = pfl->storage; | |
429 | ||
fad8c772 | 430 | DPRINTF("%s: block write offset " TARGET_FMT_plx |
d8d24fb7 | 431 | " value %x counter %016" PRIx64 "\n", |
d361be25 AZ |
432 | __func__, offset, value, pfl->counter); |
433 | switch (width) { | |
434 | case 1: | |
435 | p[offset] = value; | |
d361be25 AZ |
436 | break; |
437 | case 2: | |
3d08ff69 BS |
438 | if (be) { |
439 | p[offset] = value >> 8; | |
440 | p[offset + 1] = value; | |
441 | } else { | |
442 | p[offset] = value; | |
443 | p[offset + 1] = value >> 8; | |
444 | } | |
d361be25 AZ |
445 | break; |
446 | case 4: | |
3d08ff69 BS |
447 | if (be) { |
448 | p[offset] = value >> 24; | |
449 | p[offset + 1] = value >> 16; | |
450 | p[offset + 2] = value >> 8; | |
451 | p[offset + 3] = value; | |
452 | } else { | |
453 | p[offset] = value; | |
454 | p[offset + 1] = value >> 8; | |
455 | p[offset + 2] = value >> 16; | |
456 | p[offset + 3] = value >> 24; | |
457 | } | |
d361be25 AZ |
458 | break; |
459 | } | |
460 | ||
461 | } | |
462 | ||
a8170e5e | 463 | static void pflash_write(pflash_t *pfl, hwaddr offset, |
3d08ff69 | 464 | uint32_t value, int width, int be) |
05ee37eb | 465 | { |
05ee37eb AZ |
466 | uint8_t *p; |
467 | uint8_t cmd; | |
468 | ||
05ee37eb | 469 | cmd = value; |
05ee37eb | 470 | |
fad8c772 | 471 | DPRINTF("%s: writing offset " TARGET_FMT_plx " value %08x width %d wcycle 0x%x\n", |
c8b153d7 | 472 | __func__, offset, value, width, pfl->wcycle); |
05ee37eb | 473 | |
e9cbbcac EI |
474 | if (!pfl->wcycle) { |
475 | /* Set the device in I/O access mode */ | |
5f9a5ea1 | 476 | memory_region_rom_device_set_romd(&pfl->mem, false); |
e9cbbcac | 477 | } |
05ee37eb AZ |
478 | |
479 | switch (pfl->wcycle) { | |
480 | case 0: | |
481 | /* read mode */ | |
482 | switch (cmd) { | |
483 | case 0x00: /* ??? */ | |
484 | goto reset_flash; | |
d361be25 AZ |
485 | case 0x10: /* Single Byte Program */ |
486 | case 0x40: /* Single Byte Program */ | |
fad8c772 | 487 | DPRINTF("%s: Single Byte Program\n", __func__); |
d361be25 | 488 | break; |
05ee37eb AZ |
489 | case 0x20: /* Block erase */ |
490 | p = pfl->storage; | |
491 | offset &= ~(pfl->sector_len - 1); | |
492 | ||
368a354f PC |
493 | DPRINTF("%s: block erase at " TARGET_FMT_plx " bytes %x\n", |
494 | __func__, offset, (unsigned)pfl->sector_len); | |
05ee37eb | 495 | |
de8efe8f JJ |
496 | if (!pfl->ro) { |
497 | memset(p + offset, 0xff, pfl->sector_len); | |
498 | pflash_update(pfl, offset, pfl->sector_len); | |
499 | } else { | |
500 | pfl->status |= 0x20; /* Block erase error */ | |
501 | } | |
05ee37eb AZ |
502 | pfl->status |= 0x80; /* Ready! */ |
503 | break; | |
504 | case 0x50: /* Clear status bits */ | |
505 | DPRINTF("%s: Clear status bits\n", __func__); | |
506 | pfl->status = 0x0; | |
507 | goto reset_flash; | |
508 | case 0x60: /* Block (un)lock */ | |
509 | DPRINTF("%s: Block unlock\n", __func__); | |
510 | break; | |
511 | case 0x70: /* Status Register */ | |
512 | DPRINTF("%s: Read status register\n", __func__); | |
513 | pfl->cmd = cmd; | |
514 | return; | |
0b2ec6fc MW |
515 | case 0x90: /* Read Device ID */ |
516 | DPRINTF("%s: Read Device information\n", __func__); | |
517 | pfl->cmd = cmd; | |
518 | return; | |
05ee37eb AZ |
519 | case 0x98: /* CFI query */ |
520 | DPRINTF("%s: CFI query\n", __func__); | |
521 | break; | |
522 | case 0xe8: /* Write to buffer */ | |
523 | DPRINTF("%s: Write to buffer\n", __func__); | |
524 | pfl->status |= 0x80; /* Ready! */ | |
525 | break; | |
5928023c SW |
526 | case 0xf0: /* Probe for AMD flash */ |
527 | DPRINTF("%s: Probe for AMD flash\n", __func__); | |
528 | goto reset_flash; | |
05ee37eb AZ |
529 | case 0xff: /* Read array mode */ |
530 | DPRINTF("%s: Read array mode\n", __func__); | |
531 | goto reset_flash; | |
532 | default: | |
533 | goto error_flash; | |
534 | } | |
535 | pfl->wcycle++; | |
536 | pfl->cmd = cmd; | |
12dabc79 | 537 | break; |
05ee37eb AZ |
538 | case 1: |
539 | switch (pfl->cmd) { | |
d361be25 AZ |
540 | case 0x10: /* Single Byte Program */ |
541 | case 0x40: /* Single Byte Program */ | |
542 | DPRINTF("%s: Single Byte Program\n", __func__); | |
de8efe8f JJ |
543 | if (!pfl->ro) { |
544 | pflash_data_write(pfl, offset, value, width, be); | |
545 | pflash_update(pfl, offset, width); | |
546 | } else { | |
547 | pfl->status |= 0x10; /* Programming error */ | |
548 | } | |
d361be25 AZ |
549 | pfl->status |= 0x80; /* Ready! */ |
550 | pfl->wcycle = 0; | |
551 | break; | |
05ee37eb AZ |
552 | case 0x20: /* Block erase */ |
553 | case 0x28: | |
554 | if (cmd == 0xd0) { /* confirm */ | |
3656744c | 555 | pfl->wcycle = 0; |
05ee37eb | 556 | pfl->status |= 0x80; |
9248f413 | 557 | } else if (cmd == 0xff) { /* read array mode */ |
05ee37eb AZ |
558 | goto reset_flash; |
559 | } else | |
560 | goto error_flash; | |
561 | ||
562 | break; | |
563 | case 0xe8: | |
1997b485 RF |
564 | /* Mask writeblock size based on device width, or bank width if |
565 | * device width not specified. | |
566 | */ | |
567 | if (pfl->device_width) { | |
568 | value = extract32(value, 0, pfl->device_width * 8); | |
569 | } else { | |
570 | value = extract32(value, 0, pfl->bank_width * 8); | |
571 | } | |
71fb2348 AZ |
572 | DPRINTF("%s: block write of %x bytes\n", __func__, value); |
573 | pfl->counter = value; | |
05ee37eb AZ |
574 | pfl->wcycle++; |
575 | break; | |
576 | case 0x60: | |
577 | if (cmd == 0xd0) { | |
578 | pfl->wcycle = 0; | |
579 | pfl->status |= 0x80; | |
580 | } else if (cmd == 0x01) { | |
581 | pfl->wcycle = 0; | |
582 | pfl->status |= 0x80; | |
583 | } else if (cmd == 0xff) { | |
584 | goto reset_flash; | |
585 | } else { | |
586 | DPRINTF("%s: Unknown (un)locking command\n", __func__); | |
587 | goto reset_flash; | |
588 | } | |
589 | break; | |
590 | case 0x98: | |
591 | if (cmd == 0xff) { | |
592 | goto reset_flash; | |
593 | } else { | |
594 | DPRINTF("%s: leaving query mode\n", __func__); | |
595 | } | |
596 | break; | |
597 | default: | |
598 | goto error_flash; | |
599 | } | |
12dabc79 | 600 | break; |
05ee37eb AZ |
601 | case 2: |
602 | switch (pfl->cmd) { | |
603 | case 0xe8: /* Block write */ | |
de8efe8f JJ |
604 | if (!pfl->ro) { |
605 | pflash_data_write(pfl, offset, value, width, be); | |
606 | } else { | |
607 | pfl->status |= 0x10; /* Programming error */ | |
608 | } | |
05ee37eb AZ |
609 | |
610 | pfl->status |= 0x80; | |
611 | ||
612 | if (!pfl->counter) { | |
a8170e5e | 613 | hwaddr mask = pfl->writeblock_size - 1; |
b4bf0a9a EI |
614 | mask = ~mask; |
615 | ||
05ee37eb AZ |
616 | DPRINTF("%s: block write finished\n", __func__); |
617 | pfl->wcycle++; | |
de8efe8f JJ |
618 | if (!pfl->ro) { |
619 | /* Flush the entire write buffer onto backing storage. */ | |
620 | pflash_update(pfl, offset & mask, pfl->writeblock_size); | |
621 | } else { | |
622 | pfl->status |= 0x10; /* Programming error */ | |
623 | } | |
05ee37eb AZ |
624 | } |
625 | ||
626 | pfl->counter--; | |
627 | break; | |
7317b8ca AZ |
628 | default: |
629 | goto error_flash; | |
05ee37eb | 630 | } |
12dabc79 | 631 | break; |
05ee37eb AZ |
632 | case 3: /* Confirm mode */ |
633 | switch (pfl->cmd) { | |
634 | case 0xe8: /* Block write */ | |
635 | if (cmd == 0xd0) { | |
636 | pfl->wcycle = 0; | |
637 | pfl->status |= 0x80; | |
05ee37eb AZ |
638 | } else { |
639 | DPRINTF("%s: unknown command for \"write block\"\n", __func__); | |
640 | PFLASH_BUG("Write block confirm"); | |
7317b8ca | 641 | goto reset_flash; |
05ee37eb | 642 | } |
7317b8ca AZ |
643 | break; |
644 | default: | |
645 | goto error_flash; | |
05ee37eb | 646 | } |
12dabc79 | 647 | break; |
05ee37eb AZ |
648 | default: |
649 | /* Should never happen */ | |
650 | DPRINTF("%s: invalid write state\n", __func__); | |
651 | goto reset_flash; | |
652 | } | |
653 | return; | |
654 | ||
655 | error_flash: | |
d96fc51c PC |
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); | |
05ee37eb AZ |
659 | |
660 | reset_flash: | |
5f9a5ea1 | 661 | memory_region_rom_device_set_romd(&pfl->mem, true); |
05ee37eb | 662 | |
05ee37eb AZ |
663 | pfl->wcycle = 0; |
664 | pfl->cmd = 0; | |
05ee37eb AZ |
665 | } |
666 | ||
667 | ||
f71e42a5 PB |
668 | static MemTxResult pflash_mem_read_with_attrs(void *opaque, hwaddr addr, uint64_t *value, |
669 | unsigned len, MemTxAttrs attrs) | |
3d08ff69 BS |
670 | { |
671 | pflash_t *pfl = opaque; | |
5aa113f0 | 672 | bool be = !!(pfl->features & (1 << PFLASH_BE)); |
3d08ff69 | 673 | |
f71e42a5 PB |
674 | if ((pfl->features & (1 << PFLASH_SECURE)) && !attrs.secure) { |
675 | *value = pflash_data_read(opaque, addr, len, be); | |
676 | } else { | |
677 | *value = pflash_read(opaque, addr, len, be); | |
678 | } | |
679 | return MEMTX_OK; | |
3d08ff69 BS |
680 | } |
681 | ||
f71e42a5 PB |
682 | static MemTxResult pflash_mem_write_with_attrs(void *opaque, hwaddr addr, uint64_t value, |
683 | unsigned len, MemTxAttrs attrs) | |
05ee37eb | 684 | { |
3d08ff69 | 685 | pflash_t *pfl = opaque; |
5aa113f0 | 686 | bool be = !!(pfl->features & (1 << PFLASH_BE)); |
3d08ff69 | 687 | |
f71e42a5 PB |
688 | if ((pfl->features & (1 << PFLASH_SECURE)) && !attrs.secure) { |
689 | return MEMTX_ERROR; | |
690 | } else { | |
691 | pflash_write(opaque, addr, value, len, be); | |
692 | return MEMTX_OK; | |
693 | } | |
05ee37eb AZ |
694 | } |
695 | ||
5aa113f0 | 696 | static const MemoryRegionOps pflash_cfi01_ops = { |
f71e42a5 PB |
697 | .read_with_attrs = pflash_mem_read_with_attrs, |
698 | .write_with_attrs = pflash_mem_write_with_attrs, | |
cfe5f011 | 699 | .endianness = DEVICE_NATIVE_ENDIAN, |
05ee37eb AZ |
700 | }; |
701 | ||
e40b5f3e | 702 | static void pflash_cfi01_realize(DeviceState *dev, Error **errp) |
05ee37eb | 703 | { |
f1b44f0e | 704 | pflash_t *pfl = CFI_PFLASH01(dev); |
368a354f | 705 | uint64_t total_len; |
d0e7605e | 706 | int ret; |
feb0b1aa | 707 | uint64_t blocks_per_device, sector_len_per_device, device_len; |
a0289b8a | 708 | int num_devices; |
33e0eb52 | 709 | Error *local_err = NULL; |
05ee37eb | 710 | |
8929fc3a ZY |
711 | if (pfl->sector_len == 0) { |
712 | error_setg(errp, "attribute \"sector-length\" not specified or zero."); | |
713 | return; | |
714 | } | |
715 | if (pfl->nb_blocs == 0) { | |
716 | error_setg(errp, "attribute \"num-blocks\" not specified or zero."); | |
717 | return; | |
718 | } | |
719 | if (pfl->name == NULL) { | |
720 | error_setg(errp, "attribute \"name\" not specified."); | |
721 | return; | |
722 | } | |
723 | ||
368a354f | 724 | total_len = pfl->sector_len * pfl->nb_blocs; |
05ee37eb | 725 | |
a0289b8a PM |
726 | /* These are only used to expose the parameters of each device |
727 | * in the cfi_table[]. | |
728 | */ | |
729 | num_devices = pfl->device_width ? (pfl->bank_width / pfl->device_width) : 1; | |
feb0b1aa PM |
730 | if (pfl->old_multiple_chip_handling) { |
731 | blocks_per_device = pfl->nb_blocs / num_devices; | |
732 | sector_len_per_device = pfl->sector_len; | |
733 | } else { | |
734 | blocks_per_device = pfl->nb_blocs; | |
735 | sector_len_per_device = pfl->sector_len / num_devices; | |
736 | } | |
737 | device_len = sector_len_per_device * blocks_per_device; | |
a0289b8a | 738 | |
05ee37eb | 739 | /* XXX: to be fixed */ |
c8b153d7 | 740 | #if 0 |
05ee37eb AZ |
741 | if (total_len != (8 * 1024 * 1024) && total_len != (16 * 1024 * 1024) && |
742 | total_len != (32 * 1024 * 1024) && total_len != (64 * 1024 * 1024)) | |
743 | return NULL; | |
c8b153d7 | 744 | #endif |
05ee37eb | 745 | |
cfe5f011 | 746 | memory_region_init_rom_device( |
2d256e6f | 747 | &pfl->mem, OBJECT(dev), |
5aa113f0 | 748 | &pflash_cfi01_ops, |
e9809422 | 749 | pfl, |
33e0eb52 HT |
750 | pfl->name, total_len, &local_err); |
751 | if (local_err) { | |
752 | error_propagate(errp, local_err); | |
753 | return; | |
754 | } | |
755 | ||
368a354f | 756 | vmstate_register_ram(&pfl->mem, DEVICE(pfl)); |
cfe5f011 | 757 | pfl->storage = memory_region_get_ram_ptr(&pfl->mem); |
e40b5f3e | 758 | sysbus_init_mmio(SYS_BUS_DEVICE(dev), &pfl->mem); |
05ee37eb | 759 | |
4be74634 | 760 | if (pfl->blk) { |
05ee37eb | 761 | /* read the initial flash content */ |
098e732d | 762 | ret = blk_pread(pfl->blk, 0, pfl->storage, total_len); |
368a354f | 763 | |
d0e7605e | 764 | if (ret < 0) { |
368a354f | 765 | vmstate_unregister_ram(&pfl->mem, DEVICE(pfl)); |
e40b5f3e HT |
766 | error_setg(errp, "failed to read the initial flash content"); |
767 | return; | |
d0e7605e | 768 | } |
05ee37eb | 769 | } |
de8efe8f | 770 | |
4be74634 MA |
771 | if (pfl->blk) { |
772 | pfl->ro = blk_is_read_only(pfl->blk); | |
de8efe8f JJ |
773 | } else { |
774 | pfl->ro = 0; | |
775 | } | |
776 | ||
fa21a7b1 RF |
777 | /* Default to devices being used at their maximum device width. This was |
778 | * assumed before the device_width support was added. | |
779 | */ | |
780 | if (!pfl->max_device_width) { | |
781 | pfl->max_device_width = pfl->device_width; | |
782 | } | |
783 | ||
bc72ad67 | 784 | pfl->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, pflash_timer, pfl); |
05ee37eb AZ |
785 | pfl->wcycle = 0; |
786 | pfl->cmd = 0; | |
787 | pfl->status = 0; | |
05ee37eb AZ |
788 | /* Hardcoded CFI table */ |
789 | pfl->cfi_len = 0x52; | |
790 | /* Standard "QRY" string */ | |
791 | pfl->cfi_table[0x10] = 'Q'; | |
792 | pfl->cfi_table[0x11] = 'R'; | |
793 | pfl->cfi_table[0x12] = 'Y'; | |
794 | /* Command set (Intel) */ | |
795 | pfl->cfi_table[0x13] = 0x01; | |
796 | pfl->cfi_table[0x14] = 0x00; | |
797 | /* Primary extended table address (none) */ | |
798 | pfl->cfi_table[0x15] = 0x31; | |
799 | pfl->cfi_table[0x16] = 0x00; | |
800 | /* Alternate command set (none) */ | |
801 | pfl->cfi_table[0x17] = 0x00; | |
802 | pfl->cfi_table[0x18] = 0x00; | |
803 | /* Alternate extended table (none) */ | |
804 | pfl->cfi_table[0x19] = 0x00; | |
805 | pfl->cfi_table[0x1A] = 0x00; | |
806 | /* Vcc min */ | |
807 | pfl->cfi_table[0x1B] = 0x45; | |
808 | /* Vcc max */ | |
809 | pfl->cfi_table[0x1C] = 0x55; | |
810 | /* Vpp min (no Vpp pin) */ | |
811 | pfl->cfi_table[0x1D] = 0x00; | |
812 | /* Vpp max (no Vpp pin) */ | |
813 | pfl->cfi_table[0x1E] = 0x00; | |
814 | /* Reserved */ | |
815 | pfl->cfi_table[0x1F] = 0x07; | |
816 | /* Timeout for min size buffer write */ | |
817 | pfl->cfi_table[0x20] = 0x07; | |
818 | /* Typical timeout for block erase */ | |
819 | pfl->cfi_table[0x21] = 0x0a; | |
820 | /* Typical timeout for full chip erase (4096 ms) */ | |
821 | pfl->cfi_table[0x22] = 0x00; | |
822 | /* Reserved */ | |
823 | pfl->cfi_table[0x23] = 0x04; | |
824 | /* Max timeout for buffer write */ | |
825 | pfl->cfi_table[0x24] = 0x04; | |
826 | /* Max timeout for block erase */ | |
827 | pfl->cfi_table[0x25] = 0x04; | |
828 | /* Max timeout for chip erase */ | |
829 | pfl->cfi_table[0x26] = 0x00; | |
830 | /* Device size */ | |
a0289b8a | 831 | pfl->cfi_table[0x27] = ctz32(device_len); /* + 1; */ |
05ee37eb AZ |
832 | /* Flash device interface (8 & 16 bits) */ |
833 | pfl->cfi_table[0x28] = 0x02; | |
834 | pfl->cfi_table[0x29] = 0x00; | |
835 | /* Max number of bytes in multi-bytes write */ | |
4b6fedca | 836 | if (pfl->bank_width == 1) { |
4737fa26 EI |
837 | pfl->cfi_table[0x2A] = 0x08; |
838 | } else { | |
839 | pfl->cfi_table[0x2A] = 0x0B; | |
840 | } | |
b4bf0a9a | 841 | pfl->writeblock_size = 1 << pfl->cfi_table[0x2A]; |
feb0b1aa PM |
842 | if (!pfl->old_multiple_chip_handling && num_devices > 1) { |
843 | pfl->writeblock_size *= num_devices; | |
844 | } | |
b4bf0a9a | 845 | |
05ee37eb AZ |
846 | pfl->cfi_table[0x2B] = 0x00; |
847 | /* Number of erase block regions (uniform) */ | |
848 | pfl->cfi_table[0x2C] = 0x01; | |
849 | /* Erase block region 1 */ | |
a0289b8a PM |
850 | pfl->cfi_table[0x2D] = blocks_per_device - 1; |
851 | pfl->cfi_table[0x2E] = (blocks_per_device - 1) >> 8; | |
feb0b1aa PM |
852 | pfl->cfi_table[0x2F] = sector_len_per_device >> 8; |
853 | pfl->cfi_table[0x30] = sector_len_per_device >> 16; | |
05ee37eb AZ |
854 | |
855 | /* Extended */ | |
856 | pfl->cfi_table[0x31] = 'P'; | |
857 | pfl->cfi_table[0x32] = 'R'; | |
858 | pfl->cfi_table[0x33] = 'I'; | |
859 | ||
860 | pfl->cfi_table[0x34] = '1'; | |
262e1eaa | 861 | pfl->cfi_table[0x35] = '0'; |
05ee37eb AZ |
862 | |
863 | pfl->cfi_table[0x36] = 0x00; | |
864 | pfl->cfi_table[0x37] = 0x00; | |
865 | pfl->cfi_table[0x38] = 0x00; | |
866 | pfl->cfi_table[0x39] = 0x00; | |
867 | ||
868 | pfl->cfi_table[0x3a] = 0x00; | |
869 | ||
870 | pfl->cfi_table[0x3b] = 0x00; | |
871 | pfl->cfi_table[0x3c] = 0x00; | |
872 | ||
262e1eaa | 873 | pfl->cfi_table[0x3f] = 0x01; /* Number of protection fields */ |
368a354f PC |
874 | } |
875 | ||
876 | static Property pflash_cfi01_properties[] = { | |
4be74634 | 877 | DEFINE_PROP_DRIVE("drive", struct pflash_t, blk), |
a0289b8a PM |
878 | /* num-blocks is the number of blocks actually visible to the guest, |
879 | * ie the total size of the device divided by the sector length. | |
880 | * If we're emulating flash devices wired in parallel the actual | |
881 | * number of blocks per indvidual device will differ. | |
882 | */ | |
368a354f PC |
883 | DEFINE_PROP_UINT32("num-blocks", struct pflash_t, nb_blocs, 0), |
884 | DEFINE_PROP_UINT64("sector-length", struct pflash_t, sector_len, 0), | |
fa21a7b1 RF |
885 | /* width here is the overall width of this QEMU device in bytes. |
886 | * The QEMU device may be emulating a number of flash devices | |
887 | * wired up in parallel; the width of each individual flash | |
888 | * device should be specified via device-width. If the individual | |
889 | * devices have a maximum width which is greater than the width | |
890 | * they are being used for, this maximum width should be set via | |
891 | * max-device-width (which otherwise defaults to device-width). | |
892 | * So for instance a 32-bit wide QEMU flash device made from four | |
893 | * 16-bit flash devices used in 8-bit wide mode would be configured | |
894 | * with width = 4, device-width = 1, max-device-width = 2. | |
895 | * | |
896 | * If device-width is not specified we default to backwards | |
897 | * compatible behaviour which is a bad emulation of two | |
898 | * 16 bit devices making up a 32 bit wide QEMU device. This | |
899 | * is deprecated for new uses of this device. | |
900 | */ | |
4b6fedca | 901 | DEFINE_PROP_UINT8("width", struct pflash_t, bank_width, 0), |
1997b485 | 902 | DEFINE_PROP_UINT8("device-width", struct pflash_t, device_width, 0), |
fa21a7b1 | 903 | DEFINE_PROP_UINT8("max-device-width", struct pflash_t, max_device_width, 0), |
e9809422 | 904 | DEFINE_PROP_BIT("big-endian", struct pflash_t, features, PFLASH_BE, 0), |
f71e42a5 | 905 | DEFINE_PROP_BIT("secure", struct pflash_t, features, PFLASH_SECURE, 0), |
368a354f PC |
906 | DEFINE_PROP_UINT16("id0", struct pflash_t, ident0, 0), |
907 | DEFINE_PROP_UINT16("id1", struct pflash_t, ident1, 0), | |
908 | DEFINE_PROP_UINT16("id2", struct pflash_t, ident2, 0), | |
909 | DEFINE_PROP_UINT16("id3", struct pflash_t, ident3, 0), | |
910 | DEFINE_PROP_STRING("name", struct pflash_t, name), | |
feb0b1aa PM |
911 | DEFINE_PROP_BOOL("old-multiple-chip-handling", struct pflash_t, |
912 | old_multiple_chip_handling, false), | |
368a354f PC |
913 | DEFINE_PROP_END_OF_LIST(), |
914 | }; | |
915 | ||
916 | static void pflash_cfi01_class_init(ObjectClass *klass, void *data) | |
917 | { | |
918 | DeviceClass *dc = DEVICE_CLASS(klass); | |
368a354f | 919 | |
e40b5f3e | 920 | dc->realize = pflash_cfi01_realize; |
368a354f | 921 | dc->props = pflash_cfi01_properties; |
d8d24fb7 | 922 | dc->vmsd = &vmstate_pflash; |
125ee0ed | 923 | set_bit(DEVICE_CATEGORY_STORAGE, dc->categories); |
368a354f PC |
924 | } |
925 | ||
926 | ||
927 | static const TypeInfo pflash_cfi01_info = { | |
f1b44f0e | 928 | .name = TYPE_CFI_PFLASH01, |
368a354f PC |
929 | .parent = TYPE_SYS_BUS_DEVICE, |
930 | .instance_size = sizeof(struct pflash_t), | |
931 | .class_init = pflash_cfi01_class_init, | |
932 | }; | |
933 | ||
934 | static void pflash_cfi01_register_types(void) | |
935 | { | |
936 | type_register_static(&pflash_cfi01_info); | |
937 | } | |
938 | ||
939 | type_init(pflash_cfi01_register_types) | |
940 | ||
941 | pflash_t *pflash_cfi01_register(hwaddr base, | |
942 | DeviceState *qdev, const char *name, | |
943 | hwaddr size, | |
4be74634 | 944 | BlockBackend *blk, |
4b6fedca RF |
945 | uint32_t sector_len, int nb_blocs, |
946 | int bank_width, uint16_t id0, uint16_t id1, | |
368a354f PC |
947 | uint16_t id2, uint16_t id3, int be) |
948 | { | |
f1b44f0e | 949 | DeviceState *dev = qdev_create(NULL, TYPE_CFI_PFLASH01); |
368a354f | 950 | |
9b3d111a MA |
951 | if (blk) { |
952 | qdev_prop_set_drive(dev, "drive", blk, &error_abort); | |
368a354f PC |
953 | } |
954 | qdev_prop_set_uint32(dev, "num-blocks", nb_blocs); | |
955 | qdev_prop_set_uint64(dev, "sector-length", sector_len); | |
4b6fedca | 956 | qdev_prop_set_uint8(dev, "width", bank_width); |
e9809422 | 957 | qdev_prop_set_bit(dev, "big-endian", !!be); |
368a354f PC |
958 | qdev_prop_set_uint16(dev, "id0", id0); |
959 | qdev_prop_set_uint16(dev, "id1", id1); | |
960 | qdev_prop_set_uint16(dev, "id2", id2); | |
961 | qdev_prop_set_uint16(dev, "id3", id3); | |
962 | qdev_prop_set_string(dev, "name", name); | |
963 | qdev_init_nofail(dev); | |
964 | ||
f1b44f0e HT |
965 | sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, base); |
966 | return CFI_PFLASH01(dev); | |
05ee37eb | 967 | } |
cfe5f011 AK |
968 | |
969 | MemoryRegion *pflash_cfi01_get_memory(pflash_t *fl) | |
970 | { | |
971 | return &fl->mem; | |
972 | } | |
4c0cfc72 | 973 | |
90c647db DDAG |
974 | static void postload_update_cb(void *opaque, int running, RunState state) |
975 | { | |
976 | pflash_t *pfl = opaque; | |
977 | ||
978 | /* This is called after bdrv_invalidate_cache_all. */ | |
979 | qemu_del_vm_change_state_handler(pfl->vmstate); | |
980 | pfl->vmstate = NULL; | |
981 | ||
982 | DPRINTF("%s: updating bdrv for %s\n", __func__, pfl->name); | |
983 | pflash_update(pfl, 0, pfl->sector_len * pfl->nb_blocs); | |
984 | } | |
985 | ||
4c0cfc72 LE |
986 | static int pflash_post_load(void *opaque, int version_id) |
987 | { | |
988 | pflash_t *pfl = opaque; | |
989 | ||
990 | if (!pfl->ro) { | |
90c647db DDAG |
991 | pfl->vmstate = qemu_add_vm_change_state_handler(postload_update_cb, |
992 | pfl); | |
4c0cfc72 LE |
993 | } |
994 | return 0; | |
995 | } |