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.
15 * Contributions after 2012-01-13 are licensed under the terms of the
16 * GNU GPL, version 2 or (at your option) any later version.
21 #include "qemu/osdep.h"
23 #include "hw/block/flash.h"
24 #include "sysemu/block-backend.h"
26 #include "qapi/error.h"
27 #include "qemu/error-report.h"
29 # define NAND_CMD_READ0 0x00
30 # define NAND_CMD_READ1 0x01
31 # define NAND_CMD_READ2 0x50
32 # define NAND_CMD_LPREAD2 0x30
33 # define NAND_CMD_NOSERIALREAD2 0x35
34 # define NAND_CMD_RANDOMREAD1 0x05
35 # define NAND_CMD_RANDOMREAD2 0xe0
36 # define NAND_CMD_READID 0x90
37 # define NAND_CMD_RESET 0xff
38 # define NAND_CMD_PAGEPROGRAM1 0x80
39 # define NAND_CMD_PAGEPROGRAM2 0x10
40 # define NAND_CMD_CACHEPROGRAM2 0x15
41 # define NAND_CMD_BLOCKERASE1 0x60
42 # define NAND_CMD_BLOCKERASE2 0xd0
43 # define NAND_CMD_READSTATUS 0x70
44 # define NAND_CMD_COPYBACKPRG1 0x85
46 # define NAND_IOSTATUS_ERROR (1 << 0)
47 # define NAND_IOSTATUS_PLANE0 (1 << 1)
48 # define NAND_IOSTATUS_PLANE1 (1 << 2)
49 # define NAND_IOSTATUS_PLANE2 (1 << 3)
50 # define NAND_IOSTATUS_PLANE3 (1 << 4)
51 # define NAND_IOSTATUS_READY (1 << 6)
52 # define NAND_IOSTATUS_UNPROTCT (1 << 7)
54 # define MAX_PAGE 0x800
57 typedef struct NANDFlashState NANDFlashState
;
58 struct NANDFlashState
{
59 DeviceState parent_obj
;
61 uint8_t manf_id
, chip_id
;
62 uint8_t buswidth
; /* in BYTES */
64 int page_shift
, oob_shift
, erase_shift
, addr_shift
;
69 uint8_t cle
, ale
, ce
, wp
, gnd
;
71 uint8_t io
[MAX_PAGE
+ MAX_OOB
+ 0x400];
81 void (*blk_write
)(NANDFlashState
*s
);
82 void (*blk_erase
)(NANDFlashState
*s
);
83 void (*blk_load
)(NANDFlashState
*s
, uint64_t addr
, int offset
);
85 uint32_t ioaddr_vmstate
;
88 #define TYPE_NAND "nand"
91 OBJECT_CHECK(NANDFlashState, (obj), TYPE_NAND)
93 static void mem_and(uint8_t *dest
, const uint8_t *src
, size_t n
)
95 /* Like memcpy() but we logical-AND the data into the destination */
97 for (i
= 0; i
< n
; i
++) {
102 # define NAND_NO_AUTOINCR 0x00000001
103 # define NAND_BUSWIDTH_16 0x00000002
104 # define NAND_NO_PADDING 0x00000004
105 # define NAND_CACHEPRG 0x00000008
106 # define NAND_COPYBACK 0x00000010
107 # define NAND_IS_AND 0x00000020
108 # define NAND_4PAGE_ARRAY 0x00000040
109 # define NAND_NO_READRDY 0x00000100
110 # define NAND_SAMSUNG_LP (NAND_NO_PADDING | NAND_COPYBACK)
114 # define PAGE(addr) ((addr) >> ADDR_SHIFT)
115 # define PAGE_START(page) (PAGE(page) * (PAGE_SIZE + OOB_SIZE))
116 # define PAGE_MASK ((1 << ADDR_SHIFT) - 1)
117 # define OOB_SHIFT (PAGE_SHIFT - 5)
118 # define OOB_SIZE (1 << OOB_SHIFT)
119 # define SECTOR(addr) ((addr) >> (9 + ADDR_SHIFT - PAGE_SHIFT))
120 # define SECTOR_OFFSET(addr) ((addr) & ((511 >> PAGE_SHIFT) << 8))
122 # define PAGE_SIZE 256
123 # define PAGE_SHIFT 8
124 # define PAGE_SECTORS 1
125 # define ADDR_SHIFT 8
127 # define PAGE_SIZE 512
128 # define PAGE_SHIFT 9
129 # define PAGE_SECTORS 1
130 # define ADDR_SHIFT 8
132 # define PAGE_SIZE 2048
133 # define PAGE_SHIFT 11
134 # define PAGE_SECTORS 4
135 # define ADDR_SHIFT 16
138 /* Information based on Linux drivers/mtd/nand/nand_ids.c */
139 static const struct {
145 } nand_flash_ids
[0x100] = {
146 [0 ... 0xff] = { 0 },
148 [0x6e] = { 1, 8, 8, 4, 0 },
149 [0x64] = { 2, 8, 8, 4, 0 },
150 [0x6b] = { 4, 8, 9, 4, 0 },
151 [0xe8] = { 1, 8, 8, 4, 0 },
152 [0xec] = { 1, 8, 8, 4, 0 },
153 [0xea] = { 2, 8, 8, 4, 0 },
154 [0xd5] = { 4, 8, 9, 4, 0 },
155 [0xe3] = { 4, 8, 9, 4, 0 },
156 [0xe5] = { 4, 8, 9, 4, 0 },
157 [0xd6] = { 8, 8, 9, 4, 0 },
159 [0x39] = { 8, 8, 9, 4, 0 },
160 [0xe6] = { 8, 8, 9, 4, 0 },
161 [0x49] = { 8, 16, 9, 4, NAND_BUSWIDTH_16
},
162 [0x59] = { 8, 16, 9, 4, NAND_BUSWIDTH_16
},
164 [0x33] = { 16, 8, 9, 5, 0 },
165 [0x73] = { 16, 8, 9, 5, 0 },
166 [0x43] = { 16, 16, 9, 5, NAND_BUSWIDTH_16
},
167 [0x53] = { 16, 16, 9, 5, NAND_BUSWIDTH_16
},
169 [0x35] = { 32, 8, 9, 5, 0 },
170 [0x75] = { 32, 8, 9, 5, 0 },
171 [0x45] = { 32, 16, 9, 5, NAND_BUSWIDTH_16
},
172 [0x55] = { 32, 16, 9, 5, NAND_BUSWIDTH_16
},
174 [0x36] = { 64, 8, 9, 5, 0 },
175 [0x76] = { 64, 8, 9, 5, 0 },
176 [0x46] = { 64, 16, 9, 5, NAND_BUSWIDTH_16
},
177 [0x56] = { 64, 16, 9, 5, NAND_BUSWIDTH_16
},
179 [0x78] = { 128, 8, 9, 5, 0 },
180 [0x39] = { 128, 8, 9, 5, 0 },
181 [0x79] = { 128, 8, 9, 5, 0 },
182 [0x72] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
183 [0x49] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
184 [0x74] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
185 [0x59] = { 128, 16, 9, 5, NAND_BUSWIDTH_16
},
187 [0x71] = { 256, 8, 9, 5, 0 },
190 * These are the new chips with large page size. The pagesize and the
191 * erasesize is determined from the extended id bytes
193 # define LP_OPTIONS (NAND_SAMSUNG_LP | NAND_NO_READRDY | NAND_NO_AUTOINCR)
194 # define LP_OPTIONS16 (LP_OPTIONS | NAND_BUSWIDTH_16)
197 [0xa2] = { 64, 8, 0, 0, LP_OPTIONS
},
198 [0xf2] = { 64, 8, 0, 0, LP_OPTIONS
},
199 [0xb2] = { 64, 16, 0, 0, LP_OPTIONS16
},
200 [0xc2] = { 64, 16, 0, 0, LP_OPTIONS16
},
203 [0xa1] = { 128, 8, 0, 0, LP_OPTIONS
},
204 [0xf1] = { 128, 8, 0, 0, LP_OPTIONS
},
205 [0xb1] = { 128, 16, 0, 0, LP_OPTIONS16
},
206 [0xc1] = { 128, 16, 0, 0, LP_OPTIONS16
},
209 [0xaa] = { 256, 8, 0, 0, LP_OPTIONS
},
210 [0xda] = { 256, 8, 0, 0, LP_OPTIONS
},
211 [0xba] = { 256, 16, 0, 0, LP_OPTIONS16
},
212 [0xca] = { 256, 16, 0, 0, LP_OPTIONS16
},
215 [0xac] = { 512, 8, 0, 0, LP_OPTIONS
},
216 [0xdc] = { 512, 8, 0, 0, LP_OPTIONS
},
217 [0xbc] = { 512, 16, 0, 0, LP_OPTIONS16
},
218 [0xcc] = { 512, 16, 0, 0, LP_OPTIONS16
},
221 [0xa3] = { 1024, 8, 0, 0, LP_OPTIONS
},
222 [0xd3] = { 1024, 8, 0, 0, LP_OPTIONS
},
223 [0xb3] = { 1024, 16, 0, 0, LP_OPTIONS16
},
224 [0xc3] = { 1024, 16, 0, 0, LP_OPTIONS16
},
227 [0xa5] = { 2048, 8, 0, 0, LP_OPTIONS
},
228 [0xd5] = { 2048, 8, 0, 0, LP_OPTIONS
},
229 [0xb5] = { 2048, 16, 0, 0, LP_OPTIONS16
},
230 [0xc5] = { 2048, 16, 0, 0, LP_OPTIONS16
},
233 static void nand_reset(DeviceState
*dev
)
235 NANDFlashState
*s
= NAND(dev
);
236 s
->cmd
= NAND_CMD_READ0
;
241 s
->status
&= NAND_IOSTATUS_UNPROTCT
;
242 s
->status
|= NAND_IOSTATUS_READY
;
245 static inline void nand_pushio_byte(NANDFlashState
*s
, uint8_t value
)
247 s
->ioaddr
[s
->iolen
++] = value
;
248 for (value
= s
->buswidth
; --value
;) {
249 s
->ioaddr
[s
->iolen
++] = 0;
253 static void nand_command(NANDFlashState
*s
)
261 case NAND_CMD_READID
:
264 nand_pushio_byte(s
, s
->manf_id
);
265 nand_pushio_byte(s
, s
->chip_id
);
266 nand_pushio_byte(s
, 'Q'); /* Don't-care byte (often 0xa5) */
267 if (nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) {
268 /* Page Size, Block Size, Spare Size; bit 6 indicates
269 * 8 vs 16 bit width NAND.
271 nand_pushio_byte(s
, (s
->buswidth
== 2) ? 0x55 : 0x15);
273 nand_pushio_byte(s
, 0xc0); /* Multi-plane */
277 case NAND_CMD_RANDOMREAD2
:
278 case NAND_CMD_NOSERIALREAD2
:
279 if (!(nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
))
281 offset
= s
->addr
& ((1 << s
->addr_shift
) - 1);
282 s
->blk_load(s
, s
->addr
, offset
);
284 s
->iolen
= (1 << s
->page_shift
) - offset
;
286 s
->iolen
= (1 << s
->page_shift
) + (1 << s
->oob_shift
) - offset
;
290 nand_reset(DEVICE(s
));
293 case NAND_CMD_PAGEPROGRAM1
:
298 case NAND_CMD_PAGEPROGRAM2
:
304 case NAND_CMD_BLOCKERASE1
:
307 case NAND_CMD_BLOCKERASE2
:
308 s
->addr
&= (1ull << s
->addrlen
* 8) - 1;
309 s
->addr
<<= nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
?
317 case NAND_CMD_READSTATUS
:
320 nand_pushio_byte(s
, s
->status
);
324 printf("%s: Unknown NAND command 0x%02x\n", __FUNCTION__
, s
->cmd
);
328 static void nand_pre_save(void *opaque
)
330 NANDFlashState
*s
= NAND(opaque
);
332 s
->ioaddr_vmstate
= s
->ioaddr
- s
->io
;
335 static int nand_post_load(void *opaque
, int version_id
)
337 NANDFlashState
*s
= NAND(opaque
);
339 if (s
->ioaddr_vmstate
> sizeof(s
->io
)) {
342 s
->ioaddr
= s
->io
+ s
->ioaddr_vmstate
;
347 static const VMStateDescription vmstate_nand
= {
350 .minimum_version_id
= 1,
351 .pre_save
= nand_pre_save
,
352 .post_load
= nand_post_load
,
353 .fields
= (VMStateField
[]) {
354 VMSTATE_UINT8(cle
, NANDFlashState
),
355 VMSTATE_UINT8(ale
, NANDFlashState
),
356 VMSTATE_UINT8(ce
, NANDFlashState
),
357 VMSTATE_UINT8(wp
, NANDFlashState
),
358 VMSTATE_UINT8(gnd
, NANDFlashState
),
359 VMSTATE_BUFFER(io
, NANDFlashState
),
360 VMSTATE_UINT32(ioaddr_vmstate
, NANDFlashState
),
361 VMSTATE_INT32(iolen
, NANDFlashState
),
362 VMSTATE_UINT32(cmd
, NANDFlashState
),
363 VMSTATE_UINT64(addr
, NANDFlashState
),
364 VMSTATE_INT32(addrlen
, NANDFlashState
),
365 VMSTATE_INT32(status
, NANDFlashState
),
366 VMSTATE_INT32(offset
, NANDFlashState
),
367 /* XXX: do we want to save s->storage too? */
368 VMSTATE_END_OF_LIST()
372 static void nand_realize(DeviceState
*dev
, Error
**errp
)
375 NANDFlashState
*s
= NAND(dev
);
377 s
->buswidth
= nand_flash_ids
[s
->chip_id
].width
>> 3;
378 s
->size
= nand_flash_ids
[s
->chip_id
].size
<< 20;
379 if (nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) {
383 s
->page_shift
= nand_flash_ids
[s
->chip_id
].page_shift
;
384 s
->erase_shift
= nand_flash_ids
[s
->chip_id
].erase_shift
;
387 switch (1 << s
->page_shift
) {
398 error_setg(errp
, "Unsupported NAND block size %#x",
403 pagesize
= 1 << s
->oob_shift
;
406 if (blk_is_read_only(s
->blk
)) {
407 error_setg(errp
, "Can't use a read-only drive");
410 if (blk_getlength(s
->blk
) >=
411 (s
->pages
<< s
->page_shift
) + (s
->pages
<< s
->oob_shift
)) {
416 pagesize
+= 1 << s
->page_shift
;
419 s
->storage
= (uint8_t *) memset(g_malloc(s
->pages
* pagesize
),
420 0xff, s
->pages
* pagesize
);
422 /* Give s->ioaddr a sane value in case we save state before it is used. */
426 static Property nand_properties
[] = {
427 DEFINE_PROP_UINT8("manufacturer_id", NANDFlashState
, manf_id
, 0),
428 DEFINE_PROP_UINT8("chip_id", NANDFlashState
, chip_id
, 0),
429 DEFINE_PROP_DRIVE("drive", NANDFlashState
, blk
),
430 DEFINE_PROP_END_OF_LIST(),
433 static void nand_class_init(ObjectClass
*klass
, void *data
)
435 DeviceClass
*dc
= DEVICE_CLASS(klass
);
437 dc
->realize
= nand_realize
;
438 dc
->reset
= nand_reset
;
439 dc
->vmsd
= &vmstate_nand
;
440 dc
->props
= nand_properties
;
443 static const TypeInfo nand_info
= {
445 .parent
= TYPE_DEVICE
,
446 .instance_size
= sizeof(NANDFlashState
),
447 .class_init
= nand_class_init
,
450 static void nand_register_types(void)
452 type_register_static(&nand_info
);
456 * Chip inputs are CLE, ALE, CE, WP, GND and eight I/O pins. Chip
457 * outputs are R/B and eight I/O pins.
459 * CE, WP and R/B are active low.
461 void nand_setpins(DeviceState
*dev
, uint8_t cle
, uint8_t ale
,
462 uint8_t ce
, uint8_t wp
, uint8_t gnd
)
464 NANDFlashState
*s
= NAND(dev
);
472 s
->status
|= NAND_IOSTATUS_UNPROTCT
;
474 s
->status
&= ~NAND_IOSTATUS_UNPROTCT
;
478 void nand_getpins(DeviceState
*dev
, int *rb
)
483 void nand_setio(DeviceState
*dev
, uint32_t value
)
486 NANDFlashState
*s
= NAND(dev
);
488 if (!s
->ce
&& s
->cle
) {
489 if (nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) {
490 if (s
->cmd
== NAND_CMD_READ0
&& value
== NAND_CMD_LPREAD2
)
492 if (value
== NAND_CMD_RANDOMREAD1
) {
493 s
->addr
&= ~((1 << s
->addr_shift
) - 1);
498 if (value
== NAND_CMD_READ0
) {
500 } else if (value
== NAND_CMD_READ1
) {
502 value
= NAND_CMD_READ0
;
503 } else if (value
== NAND_CMD_READ2
) {
504 s
->offset
= 1 << s
->page_shift
;
505 value
= NAND_CMD_READ0
;
510 if (s
->cmd
== NAND_CMD_READSTATUS
||
511 s
->cmd
== NAND_CMD_PAGEPROGRAM2
||
512 s
->cmd
== NAND_CMD_BLOCKERASE1
||
513 s
->cmd
== NAND_CMD_BLOCKERASE2
||
514 s
->cmd
== NAND_CMD_NOSERIALREAD2
||
515 s
->cmd
== NAND_CMD_RANDOMREAD2
||
516 s
->cmd
== NAND_CMD_RESET
) {
520 if (s
->cmd
!= NAND_CMD_RANDOMREAD2
) {
526 unsigned int shift
= s
->addrlen
* 8;
527 uint64_t mask
= ~(0xffull
<< shift
);
528 uint64_t v
= (uint64_t)value
<< shift
;
530 s
->addr
= (s
->addr
& mask
) | v
;
533 switch (s
->addrlen
) {
535 if (s
->cmd
== NAND_CMD_READID
) {
539 case 2: /* fix cache address as a byte address */
540 s
->addr
<<= (s
->buswidth
- 1);
543 if (!(nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) &&
544 (s
->cmd
== NAND_CMD_READ0
||
545 s
->cmd
== NAND_CMD_PAGEPROGRAM1
)) {
550 if ((nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) &&
551 nand_flash_ids
[s
->chip_id
].size
< 256 && /* 1Gb or less */
552 (s
->cmd
== NAND_CMD_READ0
||
553 s
->cmd
== NAND_CMD_PAGEPROGRAM1
)) {
558 if ((nand_flash_ids
[s
->chip_id
].options
& NAND_SAMSUNG_LP
) &&
559 nand_flash_ids
[s
->chip_id
].size
>= 256 && /* 2Gb or more */
560 (s
->cmd
== NAND_CMD_READ0
||
561 s
->cmd
== NAND_CMD_PAGEPROGRAM1
)) {
570 if (!s
->cle
&& !s
->ale
&& s
->cmd
== NAND_CMD_PAGEPROGRAM1
) {
571 if (s
->iolen
< (1 << s
->page_shift
) + (1 << s
->oob_shift
)) {
572 for (i
= s
->buswidth
; i
--; value
>>= 8) {
573 s
->io
[s
->iolen
++] = (uint8_t) (value
& 0xff);
576 } else if (!s
->cle
&& !s
->ale
&& s
->cmd
== NAND_CMD_COPYBACKPRG1
) {
577 if ((s
->addr
& ((1 << s
->addr_shift
) - 1)) <
578 (1 << s
->page_shift
) + (1 << s
->oob_shift
)) {
579 for (i
= s
->buswidth
; i
--; s
->addr
++, value
>>= 8) {
580 s
->io
[s
->iolen
+ (s
->addr
& ((1 << s
->addr_shift
) - 1))] =
581 (uint8_t) (value
& 0xff);
587 uint32_t nand_getio(DeviceState
*dev
)
591 NANDFlashState
*s
= NAND(dev
);
593 /* Allow sequential reading */
594 if (!s
->iolen
&& s
->cmd
== NAND_CMD_READ0
) {
595 offset
= (int) (s
->addr
& ((1 << s
->addr_shift
) - 1)) + s
->offset
;
598 s
->blk_load(s
, s
->addr
, offset
);
600 s
->iolen
= (1 << s
->page_shift
) - offset
;
602 s
->iolen
= (1 << s
->page_shift
) + (1 << s
->oob_shift
) - offset
;
605 if (s
->ce
|| s
->iolen
<= 0) {
609 for (offset
= s
->buswidth
; offset
--;) {
610 x
|= s
->ioaddr
[offset
] << (offset
<< 3);
612 /* after receiving READ STATUS command all subsequent reads will
613 * return the status register value until another command is issued
615 if (s
->cmd
!= NAND_CMD_READSTATUS
) {
616 s
->addr
+= s
->buswidth
;
617 s
->ioaddr
+= s
->buswidth
;
618 s
->iolen
-= s
->buswidth
;
623 uint32_t nand_getbuswidth(DeviceState
*dev
)
625 NANDFlashState
*s
= (NANDFlashState
*) dev
;
626 return s
->buswidth
<< 3;
629 DeviceState
*nand_init(BlockBackend
*blk
, int manf_id
, int chip_id
)
633 if (nand_flash_ids
[chip_id
].size
== 0) {
634 hw_error("%s: Unsupported NAND chip ID.\n", __FUNCTION__
);
636 dev
= DEVICE(object_new(TYPE_NAND
));
637 qdev_prop_set_uint8(dev
, "manufacturer_id", manf_id
);
638 qdev_prop_set_uint8(dev
, "chip_id", chip_id
);
640 qdev_prop_set_drive(dev
, "drive", blk
, &error_fatal
);
643 qdev_init_nofail(dev
);
647 type_init(nand_register_types
)
651 /* Program a single page */
652 static void glue(nand_blk_write_
, PAGE_SIZE
)(NANDFlashState
*s
)
654 uint64_t off
, page
, sector
, soff
;
655 uint8_t iobuf
[(PAGE_SECTORS
+ 2) * 0x200];
656 if (PAGE(s
->addr
) >= s
->pages
)
660 mem_and(s
->storage
+ PAGE_START(s
->addr
) + (s
->addr
& PAGE_MASK
) +
661 s
->offset
, s
->io
, s
->iolen
);
662 } else if (s
->mem_oob
) {
663 sector
= SECTOR(s
->addr
);
664 off
= (s
->addr
& PAGE_MASK
) + s
->offset
;
665 soff
= SECTOR_OFFSET(s
->addr
);
666 if (blk_pread(s
->blk
, sector
<< BDRV_SECTOR_BITS
, iobuf
,
667 PAGE_SECTORS
<< BDRV_SECTOR_BITS
) < 0) {
668 printf("%s: read error in sector %" PRIu64
"\n", __func__
, sector
);
672 mem_and(iobuf
+ (soff
| off
), s
->io
, MIN(s
->iolen
, PAGE_SIZE
- off
));
673 if (off
+ s
->iolen
> PAGE_SIZE
) {
674 page
= PAGE(s
->addr
);
675 mem_and(s
->storage
+ (page
<< OOB_SHIFT
), s
->io
+ PAGE_SIZE
- off
,
676 MIN(OOB_SIZE
, off
+ s
->iolen
- PAGE_SIZE
));
679 if (blk_pwrite(s
->blk
, sector
<< BDRV_SECTOR_BITS
, iobuf
,
680 PAGE_SECTORS
<< BDRV_SECTOR_BITS
, 0) < 0) {
681 printf("%s: write error in sector %" PRIu64
"\n", __func__
, sector
);
684 off
= PAGE_START(s
->addr
) + (s
->addr
& PAGE_MASK
) + s
->offset
;
687 if (blk_pread(s
->blk
, sector
<< BDRV_SECTOR_BITS
, iobuf
,
688 (PAGE_SECTORS
+ 2) << BDRV_SECTOR_BITS
) < 0) {
689 printf("%s: read error in sector %" PRIu64
"\n", __func__
, sector
);
693 mem_and(iobuf
+ soff
, s
->io
, s
->iolen
);
695 if (blk_pwrite(s
->blk
, sector
<< BDRV_SECTOR_BITS
, iobuf
,
696 (PAGE_SECTORS
+ 2) << BDRV_SECTOR_BITS
, 0) < 0) {
697 printf("%s: write error in sector %" PRIu64
"\n", __func__
, sector
);
703 /* Erase a single block */
704 static void glue(nand_blk_erase_
, PAGE_SIZE
)(NANDFlashState
*s
)
706 uint64_t i
, page
, addr
;
707 uint8_t iobuf
[0x200] = { [0 ... 0x1ff] = 0xff, };
708 addr
= s
->addr
& ~((1 << (ADDR_SHIFT
+ s
->erase_shift
)) - 1);
710 if (PAGE(addr
) >= s
->pages
) {
715 memset(s
->storage
+ PAGE_START(addr
),
716 0xff, (PAGE_SIZE
+ OOB_SIZE
) << s
->erase_shift
);
717 } else if (s
->mem_oob
) {
718 memset(s
->storage
+ (PAGE(addr
) << OOB_SHIFT
),
719 0xff, OOB_SIZE
<< s
->erase_shift
);
721 page
= SECTOR(addr
+ (1 << (ADDR_SHIFT
+ s
->erase_shift
)));
722 for (; i
< page
; i
++)
723 if (blk_pwrite(s
->blk
, i
<< BDRV_SECTOR_BITS
, iobuf
,
724 BDRV_SECTOR_SIZE
, 0) < 0) {
725 printf("%s: write error in sector %" PRIu64
"\n", __func__
, i
);
728 addr
= PAGE_START(addr
);
730 if (blk_pread(s
->blk
, page
<< BDRV_SECTOR_BITS
, iobuf
,
731 BDRV_SECTOR_SIZE
) < 0) {
732 printf("%s: read error in sector %" PRIu64
"\n", __func__
, page
);
734 memset(iobuf
+ (addr
& 0x1ff), 0xff, (~addr
& 0x1ff) + 1);
735 if (blk_pwrite(s
->blk
, page
<< BDRV_SECTOR_BITS
, iobuf
,
736 BDRV_SECTOR_SIZE
, 0) < 0) {
737 printf("%s: write error in sector %" PRIu64
"\n", __func__
, page
);
740 memset(iobuf
, 0xff, 0x200);
741 i
= (addr
& ~0x1ff) + 0x200;
742 for (addr
+= ((PAGE_SIZE
+ OOB_SIZE
) << s
->erase_shift
) - 0x200;
743 i
< addr
; i
+= 0x200) {
744 if (blk_pwrite(s
->blk
, i
, iobuf
, BDRV_SECTOR_SIZE
, 0) < 0) {
745 printf("%s: write error in sector %" PRIu64
"\n",
751 if (blk_pread(s
->blk
, page
<< BDRV_SECTOR_BITS
, iobuf
,
752 BDRV_SECTOR_SIZE
) < 0) {
753 printf("%s: read error in sector %" PRIu64
"\n", __func__
, page
);
755 memset(iobuf
, 0xff, ((addr
- 1) & 0x1ff) + 1);
756 if (blk_pwrite(s
->blk
, page
<< BDRV_SECTOR_BITS
, iobuf
,
757 BDRV_SECTOR_SIZE
, 0) < 0) {
758 printf("%s: write error in sector %" PRIu64
"\n", __func__
, page
);
763 static void glue(nand_blk_load_
, PAGE_SIZE
)(NANDFlashState
*s
,
764 uint64_t addr
, int offset
)
766 if (PAGE(addr
) >= s
->pages
) {
772 if (blk_pread(s
->blk
, SECTOR(addr
) << BDRV_SECTOR_BITS
, s
->io
,
773 PAGE_SECTORS
<< BDRV_SECTOR_BITS
) < 0) {
774 printf("%s: read error in sector %" PRIu64
"\n",
775 __func__
, SECTOR(addr
));
777 memcpy(s
->io
+ SECTOR_OFFSET(s
->addr
) + PAGE_SIZE
,
778 s
->storage
+ (PAGE(s
->addr
) << OOB_SHIFT
),
780 s
->ioaddr
= s
->io
+ SECTOR_OFFSET(s
->addr
) + offset
;
782 if (blk_pread(s
->blk
, PAGE_START(addr
), s
->io
,
783 (PAGE_SECTORS
+ 2) << BDRV_SECTOR_BITS
) < 0) {
784 printf("%s: read error in sector %" PRIu64
"\n",
785 __func__
, PAGE_START(addr
) >> 9);
787 s
->ioaddr
= s
->io
+ (PAGE_START(addr
) & 0x1ff) + offset
;
790 memcpy(s
->io
, s
->storage
+ PAGE_START(s
->addr
) +
791 offset
, PAGE_SIZE
+ OOB_SIZE
- offset
);
796 static void glue(nand_init_
, PAGE_SIZE
)(NANDFlashState
*s
)
798 s
->oob_shift
= PAGE_SHIFT
- 5;
799 s
->pages
= s
->size
>> PAGE_SHIFT
;
800 s
->addr_shift
= ADDR_SHIFT
;
802 s
->blk_erase
= glue(nand_blk_erase_
, PAGE_SIZE
);
803 s
->blk_write
= glue(nand_blk_write_
, PAGE_SIZE
);
804 s
->blk_load
= glue(nand_blk_load_
, PAGE_SIZE
);