2 * Flash NAND memory emulation. Based on "16M x 8 Bit NAND Flash
3 * Memory" datasheet for the KM29U128AT / K9F2808U0A chips from
6 * Copyright (c) 2006 Openedhand Ltd.
7 * Written by Andrzej Zaborowski <balrog@zabor.org>
9 * Support for additional features based on "MT29F2G16ABCWP 2Gx16"
10 * datasheet from Micron Technology and "NAND02G-B2C" datasheet
11 * from ST Microelectronics.
13 * This code is licensed under the GNU GPL v2.
20 # include "blockdev.h"
22 #include "qemu-error.h"
24 # define NAND_CMD_READ0 0x00
25 # define NAND_CMD_READ1 0x01
26 # define NAND_CMD_READ2 0x50
27 # define NAND_CMD_LPREAD2 0x30
28 # define NAND_CMD_NOSERIALREAD2 0x35
29 # define NAND_CMD_RANDOMREAD1 0x05
30 # define NAND_CMD_RANDOMREAD2 0xe0
31 # define NAND_CMD_READID 0x90
32 # define NAND_CMD_RESET 0xff
33 # define NAND_CMD_PAGEPROGRAM1 0x80
34 # define NAND_CMD_PAGEPROGRAM2 0x10
35 # define NAND_CMD_CACHEPROGRAM2 0x15
36 # define NAND_CMD_BLOCKERASE1 0x60
37 # define NAND_CMD_BLOCKERASE2 0xd0
38 # define NAND_CMD_READSTATUS 0x70
39 # define NAND_CMD_COPYBACKPRG1 0x85
41 # define NAND_IOSTATUS_ERROR (1 << 0)
42 # define NAND_IOSTATUS_PLANE0 (1 << 1)
43 # define NAND_IOSTATUS_PLANE1 (1 << 2)
44 # define NAND_IOSTATUS_PLANE2 (1 << 3)
45 # define NAND_IOSTATUS_PLANE3 (1 << 4)
46 # define NAND_IOSTATUS_BUSY (1 << 6)
47 # define NAND_IOSTATUS_UNPROTCT (1 << 7)
49 # define MAX_PAGE 0x800
52 typedef struct NANDFlashState NANDFlashState
;
53 struct NANDFlashState
{
55 uint8_t manf_id
, chip_id
;
56 uint8_t buswidth
; /* in BYTES */
58 int page_shift
, oob_shift
, erase_shift
, addr_shift
;
60 BlockDriverState
*bdrv
;
63 uint8_t cle
, ale
, ce
, wp
, gnd
;
65 uint8_t io
[MAX_PAGE
+ MAX_OOB
+ 0x400];
75 void (*blk_write
)(NANDFlashState
*s
);
76 void (*blk_erase
)(NANDFlashState
*s
);
77 void (*blk_load
)(NANDFlashState
*s
, uint64_t addr
, int offset
);
79 uint32_t ioaddr_vmstate
;
82 static void mem_and(uint8_t *dest
, const uint8_t *src
, size_t n
)
84 /* Like memcpy() but we logical-AND the data into the destination */
86 for (i
= 0; i
< n
; i
++) {
91 # define NAND_NO_AUTOINCR 0x00000001
92 # define NAND_BUSWIDTH_16 0x00000002
93 # define NAND_NO_PADDING 0x00000004
94 # define NAND_CACHEPRG 0x00000008
95 # define NAND_COPYBACK 0x00000010
96 # define NAND_IS_AND 0x00000020
97 # define NAND_4PAGE_ARRAY 0x00000040
98 # define NAND_NO_READRDY 0x00000100
99 # define NAND_SAMSUNG_LP (NAND_NO_PADDING | NAND_COPYBACK)
103 # define PAGE(addr) ((addr) >> ADDR_SHIFT)
104 # define PAGE_START(page) (PAGE(page) * (PAGE_SIZE + OOB_SIZE))
105 # define PAGE_MASK ((1 << ADDR_SHIFT) - 1)
106 # define OOB_SHIFT (PAGE_SHIFT - 5)
107 # define OOB_SIZE (1 << OOB_SHIFT)
108 # define SECTOR(addr) ((addr) >> (9 + ADDR_SHIFT - PAGE_SHIFT))
109 # define SECTOR_OFFSET(addr) ((addr) & ((511 >> PAGE_SHIFT) << 8))
111 # define PAGE_SIZE 256
112 # define PAGE_SHIFT 8
113 # define PAGE_SECTORS 1
114 # define ADDR_SHIFT 8
116 # define PAGE_SIZE 512
117 # define PAGE_SHIFT 9
118 # define PAGE_SECTORS 1
119 # define ADDR_SHIFT 8
121 # define PAGE_SIZE 2048
122 # define PAGE_SHIFT 11
123 # define PAGE_SECTORS 4
124 # define ADDR_SHIFT 16
127 /* Information based on Linux drivers/mtd/nand/nand_ids.c */
128 static const struct {
134 } nand_flash_ids
[0x100] = {
135 [0 ... 0xff] = { 0 },
137 [0x6e] = { 1, 8, 8, 4, 0 },
138 [0x64] = { 2, 8, 8, 4, 0 },
139 [0x6b] = { 4, 8, 9, 4, 0 },
140 [0xe8] = { 1, 8, 8, 4, 0 },
141 [0xec] = { 1, 8, 8, 4, 0 },
142 [0xea] = { 2, 8, 8, 4, 0 },
143 [0xd5] = { 4, 8, 9, 4, 0 },
144 [0xe3] = { 4, 8, 9, 4, 0 },
145 [0xe5] = { 4, 8, 9, 4, 0 },
146 [0xd6] = { 8, 8, 9, 4, 0 },
148 [0x39] = { 8, 8, 9, 4, 0 },
149 [0xe6] = { 8, 8, 9, 4, 0 },
150 [0x49] = { 8, 16, 9, 4, NAND_BUSWIDTH_16
},
151 [0x59] = { 8, 16, 9, 4, NAND_BUSWIDTH_16
},
153 [0x33] = { 16, 8, 9, 5, 0 },
154 [0x73] = { 16, 8, 9, 5, 0 },
155 [0x43] = { 16, 16, 9, 5, NAND_BUSWIDTH_16
},
156 [0x53] = { 16, 16, 9, 5, NAND_BUSWIDTH_16
},
158 [0x35] = { 32, 8, 9, 5, 0 },
159 [0x75] = { 32, 8, 9, 5, 0 },
160 [0x45] = { 32, 16, 9, 5, NAND_BUSWIDTH_16
},
161 [0x55] = { 32, 16, 9, 5, NAND_BUSWIDTH_16
},
163 [0x36] = { 64, 8, 9, 5, 0 },
164 [0x76] = { 64, 8, 9, 5, 0 },
165 [0x46] = { 64, 16, 9, 5, NAND_BUSWIDTH_16
},
166 [0x56] = { 64, 16, 9, 5, NAND_BUSWIDTH_16
},
168 [0x78] = { 128, 8, 9, 5, 0 },
169 [0x39] = { 128, 8, 9, 5, 0 },
170 [0x79] = { 128, 8, 9, 5, 0 },
171 [0x72] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
172 [0x49] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
173 [0x74] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
174 [0x59] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
176 [0x71] = { 256, 8, 9, 5, 0 },
179 * These are the new chips with large page size. The pagesize and the
180 * erasesize is determined from the extended id bytes
182 # define LP_OPTIONS (NAND_SAMSUNG_LP | NAND_NO_READRDY | NAND_NO_AUTOINCR)
183 # define LP_OPTIONS16 (LP_OPTIONS | NAND_BUSWIDTH_16)
186 [0xa2] = { 64, 8, 0, 0, LP_OPTIONS
},
187 [0xf2] = { 64, 8, 0, 0, LP_OPTIONS
},
188 [0xb2] = { 64, 16, 0, 0, LP_OPTIONS16
},
189 [0xc2] = { 64, 16, 0, 0, LP_OPTIONS16
},
192 [0xa1] = { 128, 8, 0, 0, LP_OPTIONS
},
193 [0xf1] = { 128, 8, 0, 0, LP_OPTIONS
},
194 [0xb1] = { 128, 16, 0, 0, LP_OPTIONS16
},
195 [0xc1] = { 128, 16, 0, 0, LP_OPTIONS16
},
198 [0xaa] = { 256, 8, 0, 0, LP_OPTIONS
},
199 [0xda] = { 256, 8, 0, 0, LP_OPTIONS
},
200 [0xba] = { 256, 16, 0, 0, LP_OPTIONS16
},
201 [0xca] = { 256, 16, 0, 0, LP_OPTIONS16
},
204 [0xac] = { 512, 8, 0, 0, LP_OPTIONS
},
205 [0xdc] = { 512, 8, 0, 0, LP_OPTIONS
},
206 [0xbc] = { 512, 16, 0, 0, LP_OPTIONS16
},
207 [0xcc] = { 512, 16, 0, 0, LP_OPTIONS16
},
210 [0xa3] = { 1024, 8, 0, 0, LP_OPTIONS
},
211 [0xd3] = { 1024, 8, 0, 0, LP_OPTIONS
},
212 [0xb3] = { 1024, 16, 0, 0, LP_OPTIONS16
},
213 [0xc3] = { 1024, 16, 0, 0, LP_OPTIONS16
},
216 [0xa5] = { 2048, 8, 0, 0, LP_OPTIONS
},
217 [0xd5] = { 2048, 8, 0, 0, LP_OPTIONS
},
218 [0xb5] = { 2048, 16, 0, 0, LP_OPTIONS16
},
219 [0xc5] = { 2048, 16, 0, 0, LP_OPTIONS16
},
222 static void nand_reset(DeviceState
*dev
)
224 NANDFlashState
*s
= FROM_SYSBUS(NANDFlashState
, sysbus_from_qdev(dev
));
225 s
->cmd
= NAND_CMD_READ0
;
230 s
->status
&= NAND_IOSTATUS_UNPROTCT
;
233 static inline void nand_pushio_byte(NANDFlashState
*s
, uint8_t value
)
235 s
->ioaddr
[s
->iolen
++] = value
;
236 for (value
= s
->buswidth
; --value
;) {
237 s
->ioaddr
[s
->iolen
++] = 0;
241 static void nand_command(NANDFlashState
*s
)
249 case NAND_CMD_READID
:
252 nand_pushio_byte(s
, s
->manf_id
);
253 nand_pushio_byte(s
, s
->chip_id
);
254 nand_pushio_byte(s
, 'Q'); /* Don't-care byte (often 0xa5) */
255 if (nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) {
256 /* Page Size, Block Size, Spare Size; bit 6 indicates
257 * 8 vs 16 bit width NAND.
259 nand_pushio_byte(s
, (s
->buswidth
== 2) ? 0x55 : 0x15);
261 nand_pushio_byte(s
, 0xc0); /* Multi-plane */
265 case NAND_CMD_RANDOMREAD2
:
266 case NAND_CMD_NOSERIALREAD2
:
267 if (!(nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
))
269 offset
= s
->addr
& ((1 << s
->addr_shift
) - 1);
270 s
->blk_load(s
, s
->addr
, offset
);
272 s
->iolen
= (1 << s
->page_shift
) - offset
;
274 s
->iolen
= (1 << s
->page_shift
) + (1 << s
->oob_shift
) - offset
;
278 nand_reset(&s
->busdev
.qdev
);
281 case NAND_CMD_PAGEPROGRAM1
:
286 case NAND_CMD_PAGEPROGRAM2
:
292 case NAND_CMD_BLOCKERASE1
:
295 case NAND_CMD_BLOCKERASE2
:
296 if (nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
)
306 case NAND_CMD_READSTATUS
:
309 nand_pushio_byte(s
, s
->status
);
313 printf("%s: Unknown NAND command 0x%02x\n", __FUNCTION__
, s
->cmd
);
317 static void nand_pre_save(void *opaque
)
319 NANDFlashState
*s
= opaque
;
321 s
->ioaddr_vmstate
= s
->ioaddr
- s
->io
;
324 static int nand_post_load(void *opaque
, int version_id
)
326 NANDFlashState
*s
= opaque
;
328 if (s
->ioaddr_vmstate
> sizeof(s
->io
)) {
331 s
->ioaddr
= s
->io
+ s
->ioaddr_vmstate
;
336 static const VMStateDescription vmstate_nand
= {
339 .minimum_version_id
= 1,
340 .minimum_version_id_old
= 1,
341 .pre_save
= nand_pre_save
,
342 .post_load
= nand_post_load
,
343 .fields
= (VMStateField
[]) {
344 VMSTATE_UINT8(cle
, NANDFlashState
),
345 VMSTATE_UINT8(ale
, NANDFlashState
),
346 VMSTATE_UINT8(ce
, NANDFlashState
),
347 VMSTATE_UINT8(wp
, NANDFlashState
),
348 VMSTATE_UINT8(gnd
, NANDFlashState
),
349 VMSTATE_BUFFER(io
, NANDFlashState
),
350 VMSTATE_UINT32(ioaddr_vmstate
, NANDFlashState
),
351 VMSTATE_INT32(iolen
, NANDFlashState
),
352 VMSTATE_UINT32(cmd
, NANDFlashState
),
353 VMSTATE_UINT64(addr
, NANDFlashState
),
354 VMSTATE_INT32(addrlen
, NANDFlashState
),
355 VMSTATE_INT32(status
, NANDFlashState
),
356 VMSTATE_INT32(offset
, NANDFlashState
),
357 /* XXX: do we want to save s->storage too? */
358 VMSTATE_END_OF_LIST()
362 static int nand_device_init(SysBusDevice
*dev
)
365 NANDFlashState
*s
= FROM_SYSBUS(NANDFlashState
, dev
);
367 s
->buswidth
= nand_flash_ids
[s
->chip_id
].width
>> 3;
368 s
->size
= nand_flash_ids
[s
->chip_id
].size
<< 20;
369 if (nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) {
373 s
->page_shift
= nand_flash_ids
[s
->chip_id
].page_shift
;
374 s
->erase_shift
= nand_flash_ids
[s
->chip_id
].erase_shift
;
377 switch (1 << s
->page_shift
) {
388 error_report("Unsupported NAND block size");
392 pagesize
= 1 << s
->oob_shift
;
395 if (bdrv_is_read_only(s
->bdrv
)) {
396 error_report("Can't use a read-only drive");
399 if (bdrv_getlength(s
->bdrv
) >=
400 (s
->pages
<< s
->page_shift
) + (s
->pages
<< s
->oob_shift
)) {
405 pagesize
+= 1 << s
->page_shift
;
408 s
->storage
= (uint8_t *) memset(g_malloc(s
->pages
* pagesize
),
409 0xff, s
->pages
* pagesize
);
411 /* Give s->ioaddr a sane value in case we save state before it is used. */
417 static SysBusDeviceInfo nand_info
= {
418 .init
= nand_device_init
,
420 .qdev
.size
= sizeof(NANDFlashState
),
421 .qdev
.reset
= nand_reset
,
422 .qdev
.vmsd
= &vmstate_nand
,
423 .qdev
.props
= (Property
[]) {
424 DEFINE_PROP_UINT8("manufacturer_id", NANDFlashState
, manf_id
, 0),
425 DEFINE_PROP_UINT8("chip_id", NANDFlashState
, chip_id
, 0),
426 DEFINE_PROP_DRIVE("drive", NANDFlashState
, bdrv
),
427 DEFINE_PROP_END_OF_LIST()
431 static void nand_create_device(void)
433 sysbus_register_withprop(&nand_info
);
437 * Chip inputs are CLE, ALE, CE, WP, GND and eight I/O pins. Chip
438 * outputs are R/B and eight I/O pins.
440 * CE, WP and R/B are active low.
442 void nand_setpins(DeviceState
*dev
, uint8_t cle
, uint8_t ale
,
443 uint8_t ce
, uint8_t wp
, uint8_t gnd
)
445 NANDFlashState
*s
= (NANDFlashState
*) dev
;
452 s
->status
|= NAND_IOSTATUS_UNPROTCT
;
454 s
->status
&= ~NAND_IOSTATUS_UNPROTCT
;
457 void nand_getpins(DeviceState
*dev
, int *rb
)
462 void nand_setio(DeviceState
*dev
, uint32_t value
)
465 NANDFlashState
*s
= (NANDFlashState
*) dev
;
466 if (!s
->ce
&& s
->cle
) {
467 if (nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) {
468 if (s
->cmd
== NAND_CMD_READ0
&& value
== NAND_CMD_LPREAD2
)
470 if (value
== NAND_CMD_RANDOMREAD1
) {
471 s
->addr
&= ~((1 << s
->addr_shift
) - 1);
476 if (value
== NAND_CMD_READ0
)
478 else if (value
== NAND_CMD_READ1
) {
480 value
= NAND_CMD_READ0
;
482 else if (value
== NAND_CMD_READ2
) {
483 s
->offset
= 1 << s
->page_shift
;
484 value
= NAND_CMD_READ0
;
489 if (s
->cmd
== NAND_CMD_READSTATUS
||
490 s
->cmd
== NAND_CMD_PAGEPROGRAM2
||
491 s
->cmd
== NAND_CMD_BLOCKERASE1
||
492 s
->cmd
== NAND_CMD_BLOCKERASE2
||
493 s
->cmd
== NAND_CMD_NOSERIALREAD2
||
494 s
->cmd
== NAND_CMD_RANDOMREAD2
||
495 s
->cmd
== NAND_CMD_RESET
)
498 if (s
->cmd
!= NAND_CMD_RANDOMREAD2
) {
504 unsigned int shift
= s
->addrlen
* 8;
505 unsigned int mask
= ~(0xff << shift
);
506 unsigned int v
= value
<< shift
;
508 s
->addr
= (s
->addr
& mask
) | v
;
511 switch (s
->addrlen
) {
513 if (s
->cmd
== NAND_CMD_READID
) {
517 case 2: /* fix cache address as a byte address */
518 s
->addr
<<= (s
->buswidth
- 1);
521 if (!(nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) &&
522 (s
->cmd
== NAND_CMD_READ0
||
523 s
->cmd
== NAND_CMD_PAGEPROGRAM1
)) {
528 if ((nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) &&
529 nand_flash_ids
[s
->chip_id
].size
< 256 && /* 1Gb or less */
530 (s
->cmd
== NAND_CMD_READ0
||
531 s
->cmd
== NAND_CMD_PAGEPROGRAM1
)) {
536 if ((nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) &&
537 nand_flash_ids
[s
->chip_id
].size
>= 256 && /* 2Gb or more */
538 (s
->cmd
== NAND_CMD_READ0
||
539 s
->cmd
== NAND_CMD_PAGEPROGRAM1
)) {
548 if (!s
->cle
&& !s
->ale
&& s
->cmd
== NAND_CMD_PAGEPROGRAM1
) {
549 if (s
->iolen
< (1 << s
->page_shift
) + (1 << s
->oob_shift
)) {
550 for (i
= s
->buswidth
; i
--; value
>>= 8) {
551 s
->io
[s
->iolen
++] = (uint8_t) (value
& 0xff);
554 } else if (!s
->cle
&& !s
->ale
&& s
->cmd
== NAND_CMD_COPYBACKPRG1
) {
555 if ((s
->addr
& ((1 << s
->addr_shift
) - 1)) <
556 (1 << s
->page_shift
) + (1 << s
->oob_shift
)) {
557 for (i
= s
->buswidth
; i
--; s
->addr
++, value
>>= 8) {
558 s
->io
[s
->iolen
+ (s
->addr
& ((1 << s
->addr_shift
) - 1))] =
559 (uint8_t) (value
& 0xff);
565 uint32_t nand_getio(DeviceState
*dev
)
569 NANDFlashState
*s
= (NANDFlashState
*) dev
;
571 /* Allow sequential reading */
572 if (!s
->iolen
&& s
->cmd
== NAND_CMD_READ0
) {
573 offset
= (int) (s
->addr
& ((1 << s
->addr_shift
) - 1)) + s
->offset
;
576 s
->blk_load(s
, s
->addr
, offset
);
578 s
->iolen
= (1 << s
->page_shift
) - offset
;
580 s
->iolen
= (1 << s
->page_shift
) + (1 << s
->oob_shift
) - offset
;
583 if (s
->ce
|| s
->iolen
<= 0)
586 for (offset
= s
->buswidth
; offset
--;) {
587 x
|= s
->ioaddr
[offset
] << (offset
<< 3);
589 /* after receiving READ STATUS command all subsequent reads will
590 * return the status register value until another command is issued
592 if (s
->cmd
!= NAND_CMD_READSTATUS
) {
593 s
->addr
+= s
->buswidth
;
594 s
->ioaddr
+= s
->buswidth
;
595 s
->iolen
-= s
->buswidth
;
600 uint32_t nand_getbuswidth(DeviceState
*dev
)
602 NANDFlashState
*s
= (NANDFlashState
*) dev
;
603 return s
->buswidth
<< 3;
606 DeviceState
*nand_init(BlockDriverState
*bdrv
, int manf_id
, int chip_id
)
610 if (nand_flash_ids
[chip_id
].size
== 0) {
611 hw_error("%s: Unsupported NAND chip ID.\n", __FUNCTION__
);
613 dev
= qdev_create(NULL
, "nand");
614 qdev_prop_set_uint8(dev
, "manufacturer_id", manf_id
);
615 qdev_prop_set_uint8(dev
, "chip_id", chip_id
);
617 qdev_prop_set_drive_nofail(dev
, "drive", bdrv
);
620 qdev_init_nofail(dev
);
624 device_init(nand_create_device
)
628 /* Program a single page */
629 static void glue(nand_blk_write_
, PAGE_SIZE
)(NANDFlashState
*s
)
631 uint64_t off
, page
, sector
, soff
;
632 uint8_t iobuf
[(PAGE_SECTORS
+ 2) * 0x200];
633 if (PAGE(s
->addr
) >= s
->pages
)
637 mem_and(s
->storage
+ PAGE_START(s
->addr
) + (s
->addr
& PAGE_MASK
) +
638 s
->offset
, s
->io
, s
->iolen
);
639 } else if (s
->mem_oob
) {
640 sector
= SECTOR(s
->addr
);
641 off
= (s
->addr
& PAGE_MASK
) + s
->offset
;
642 soff
= SECTOR_OFFSET(s
->addr
);
643 if (bdrv_read(s
->bdrv
, sector
, iobuf
, PAGE_SECTORS
) == -1) {
644 printf("%s: read error in sector %" PRIu64
"\n", __func__
, sector
);
648 mem_and(iobuf
+ (soff
| off
), s
->io
, MIN(s
->iolen
, PAGE_SIZE
- off
));
649 if (off
+ s
->iolen
> PAGE_SIZE
) {
650 page
= PAGE(s
->addr
);
651 mem_and(s
->storage
+ (page
<< OOB_SHIFT
), s
->io
+ PAGE_SIZE
- off
,
652 MIN(OOB_SIZE
, off
+ s
->iolen
- PAGE_SIZE
));
655 if (bdrv_write(s
->bdrv
, sector
, iobuf
, PAGE_SECTORS
) == -1)
656 printf("%s: write error in sector %" PRIu64
"\n", __func__
, sector
);
658 off
= PAGE_START(s
->addr
) + (s
->addr
& PAGE_MASK
) + s
->offset
;
661 if (bdrv_read(s
->bdrv
, sector
, iobuf
, PAGE_SECTORS
+ 2) == -1) {
662 printf("%s: read error in sector %" PRIu64
"\n", __func__
, sector
);
666 mem_and(iobuf
+ soff
, s
->io
, s
->iolen
);
668 if (bdrv_write(s
->bdrv
, sector
, iobuf
, PAGE_SECTORS
+ 2) == -1)
669 printf("%s: write error in sector %" PRIu64
"\n", __func__
, sector
);
674 /* Erase a single block */
675 static void glue(nand_blk_erase_
, PAGE_SIZE
)(NANDFlashState
*s
)
677 uint64_t i
, page
, addr
;
678 uint8_t iobuf
[0x200] = { [0 ... 0x1ff] = 0xff, };
679 addr
= s
->addr
& ~((1 << (ADDR_SHIFT
+ s
->erase_shift
)) - 1);
681 if (PAGE(addr
) >= s
->pages
)
685 memset(s
->storage
+ PAGE_START(addr
),
686 0xff, (PAGE_SIZE
+ OOB_SIZE
) << s
->erase_shift
);
687 } else if (s
->mem_oob
) {
688 memset(s
->storage
+ (PAGE(addr
) << OOB_SHIFT
),
689 0xff, OOB_SIZE
<< s
->erase_shift
);
691 page
= SECTOR(addr
+ (ADDR_SHIFT
+ s
->erase_shift
));
692 for (; i
< page
; i
++)
693 if (bdrv_write(s
->bdrv
, i
, iobuf
, 1) == -1)
694 printf("%s: write error in sector %" PRIu64
"\n", __func__
, i
);
696 addr
= PAGE_START(addr
);
698 if (bdrv_read(s
->bdrv
, page
, iobuf
, 1) == -1)
699 printf("%s: read error in sector %" PRIu64
"\n", __func__
, page
);
700 memset(iobuf
+ (addr
& 0x1ff), 0xff, (~addr
& 0x1ff) + 1);
701 if (bdrv_write(s
->bdrv
, page
, iobuf
, 1) == -1)
702 printf("%s: write error in sector %" PRIu64
"\n", __func__
, page
);
704 memset(iobuf
, 0xff, 0x200);
705 i
= (addr
& ~0x1ff) + 0x200;
706 for (addr
+= ((PAGE_SIZE
+ OOB_SIZE
) << s
->erase_shift
) - 0x200;
707 i
< addr
; i
+= 0x200)
708 if (bdrv_write(s
->bdrv
, i
>> 9, iobuf
, 1) == -1)
709 printf("%s: write error in sector %" PRIu64
"\n",
713 if (bdrv_read(s
->bdrv
, page
, iobuf
, 1) == -1)
714 printf("%s: read error in sector %" PRIu64
"\n", __func__
, page
);
715 memset(iobuf
, 0xff, ((addr
- 1) & 0x1ff) + 1);
716 if (bdrv_write(s
->bdrv
, page
, iobuf
, 1) == -1)
717 printf("%s: write error in sector %" PRIu64
"\n", __func__
, page
);
721 static void glue(nand_blk_load_
, PAGE_SIZE
)(NANDFlashState
*s
,
722 uint64_t addr
, int offset
)
724 if (PAGE(addr
) >= s
->pages
)
729 if (bdrv_read(s
->bdrv
, SECTOR(addr
), s
->io
, PAGE_SECTORS
) == -1)
730 printf("%s: read error in sector %" PRIu64
"\n",
731 __func__
, SECTOR(addr
));
732 memcpy(s
->io
+ SECTOR_OFFSET(s
->addr
) + PAGE_SIZE
,
733 s
->storage
+ (PAGE(s
->addr
) << OOB_SHIFT
),
735 s
->ioaddr
= s
->io
+ SECTOR_OFFSET(s
->addr
) + offset
;
737 if (bdrv_read(s
->bdrv
, PAGE_START(addr
) >> 9,
738 s
->io
, (PAGE_SECTORS
+ 2)) == -1)
739 printf("%s: read error in sector %" PRIu64
"\n",
740 __func__
, PAGE_START(addr
) >> 9);
741 s
->ioaddr
= s
->io
+ (PAGE_START(addr
) & 0x1ff) + offset
;
744 memcpy(s
->io
, s
->storage
+ PAGE_START(s
->addr
) +
745 offset
, PAGE_SIZE
+ OOB_SIZE
- offset
);
750 static void glue(nand_init_
, PAGE_SIZE
)(NANDFlashState
*s
)
752 s
->oob_shift
= PAGE_SHIFT
- 5;
753 s
->pages
= s
->size
>> PAGE_SHIFT
;
754 s
->addr_shift
= ADDR_SHIFT
;
756 s
->blk_erase
= glue(nand_blk_erase_
, PAGE_SIZE
);
757 s
->blk_write
= glue(nand_blk_write_
, PAGE_SIZE
);
758 s
->blk_load
= glue(nand_blk_load_
, PAGE_SIZE
);