2 * OneNAND flash memories emulation.
4 * Copyright (C) 2008 Nokia Corporation
5 * Written by Andrzej Zaborowski <andrew@openedhand.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 or
10 * (at your option) version 3 of the License.
12 * This program 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
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "qapi/error.h"
23 #include "qemu-common.h"
25 #include "hw/block/flash.h"
27 #include "sysemu/block-backend.h"
28 #include "exec/memory.h"
29 #include "hw/sysbus.h"
30 #include "qemu/error-report.h"
32 /* 11 for 2kB-page OneNAND ("2nd generation") and 10 for 1kB-page chips */
36 #define BLOCK_SHIFT (PAGE_SHIFT + 6)
38 #define TYPE_ONE_NAND "onenand"
39 #define ONE_NAND(obj) OBJECT_CHECK(OneNANDState, (obj), TYPE_ONE_NAND)
41 typedef struct OneNANDState
{
42 SysBusDevice parent_obj
;
54 BlockBackend
*blk_cur
;
59 MemoryRegion mapped_ram
;
60 uint8_t current_direction
;
64 MemoryRegion container
;
90 ONEN_BUF_DEST_BLOCK
= 2,
91 ONEN_BUF_DEST_PAGE
= 3,
96 ONEN_ERR_CMD
= 1 << 10,
97 ONEN_ERR_ERASE
= 1 << 11,
98 ONEN_ERR_PROG
= 1 << 12,
99 ONEN_ERR_LOAD
= 1 << 13,
103 ONEN_INT_RESET
= 1 << 4,
104 ONEN_INT_ERASE
= 1 << 5,
105 ONEN_INT_PROG
= 1 << 6,
106 ONEN_INT_LOAD
= 1 << 7,
111 ONEN_LOCK_LOCKTIGHTEN
= 1 << 0,
112 ONEN_LOCK_LOCKED
= 1 << 1,
113 ONEN_LOCK_UNLOCKED
= 1 << 2,
116 static void onenand_mem_setup(OneNANDState
*s
)
118 /* XXX: We should use IO_MEM_ROMD but we broke it earlier...
119 * Both 0x0000 ... 0x01ff and 0x8000 ... 0x800f can be used to
120 * write boot commands. Also take note of the BWPS bit. */
121 memory_region_init(&s
->container
, OBJECT(s
), "onenand",
122 0x10000 << s
->shift
);
123 memory_region_add_subregion(&s
->container
, 0, &s
->iomem
);
124 memory_region_init_alias(&s
->mapped_ram
, OBJECT(s
), "onenand-mapped-ram",
125 &s
->ram
, 0x0200 << s
->shift
,
127 memory_region_add_subregion_overlap(&s
->container
,
133 static void onenand_intr_update(OneNANDState
*s
)
135 qemu_set_irq(s
->intr
, ((s
->intstatus
>> 15) ^ (~s
->config
[0] >> 6)) & 1);
138 static int onenand_pre_save(void *opaque
)
140 OneNANDState
*s
= opaque
;
141 if (s
->current
== s
->otp
) {
142 s
->current_direction
= 1;
143 } else if (s
->current
== s
->image
) {
144 s
->current_direction
= 2;
146 s
->current_direction
= 0;
152 static int onenand_post_load(void *opaque
, int version_id
)
154 OneNANDState
*s
= opaque
;
155 switch (s
->current_direction
) {
162 s
->current
= s
->image
;
167 onenand_intr_update(s
);
171 static const VMStateDescription vmstate_onenand
= {
174 .minimum_version_id
= 1,
175 .pre_save
= onenand_pre_save
,
176 .post_load
= onenand_post_load
,
177 .fields
= (VMStateField
[]) {
178 VMSTATE_UINT8(current_direction
, OneNANDState
),
179 VMSTATE_INT32(cycle
, OneNANDState
),
180 VMSTATE_INT32(otpmode
, OneNANDState
),
181 VMSTATE_UINT16_ARRAY(addr
, OneNANDState
, 8),
182 VMSTATE_UINT16_ARRAY(unladdr
, OneNANDState
, 8),
183 VMSTATE_INT32(bufaddr
, OneNANDState
),
184 VMSTATE_INT32(count
, OneNANDState
),
185 VMSTATE_UINT16(command
, OneNANDState
),
186 VMSTATE_UINT16_ARRAY(config
, OneNANDState
, 2),
187 VMSTATE_UINT16(status
, OneNANDState
),
188 VMSTATE_UINT16(intstatus
, OneNANDState
),
189 VMSTATE_UINT16(wpstatus
, OneNANDState
),
190 VMSTATE_INT32(secs_cur
, OneNANDState
),
191 VMSTATE_PARTIAL_VBUFFER(blockwp
, OneNANDState
, blocks
),
192 VMSTATE_UINT8(ecc
.cp
, OneNANDState
),
193 VMSTATE_UINT16_ARRAY(ecc
.lp
, OneNANDState
, 2),
194 VMSTATE_UINT16(ecc
.count
, OneNANDState
),
195 VMSTATE_BUFFER_POINTER_UNSAFE(otp
, OneNANDState
, 0,
196 ((64 + 2) << PAGE_SHIFT
)),
197 VMSTATE_END_OF_LIST()
201 /* Hot reset (Reset OneNAND command) or warm reset (RP pin low) */
202 static void onenand_reset(OneNANDState
*s
, int cold
)
204 memset(&s
->addr
, 0, sizeof(s
->addr
));
208 s
->config
[0] = 0x40c0;
209 s
->config
[1] = 0x0000;
210 onenand_intr_update(s
);
211 qemu_irq_raise(s
->rdy
);
213 s
->intstatus
= cold
? 0x8080 : 0x8010;
216 s
->wpstatus
= 0x0002;
220 s
->current
= s
->image
;
221 s
->secs_cur
= s
->secs
;
224 /* Lock the whole flash */
225 memset(s
->blockwp
, ONEN_LOCK_LOCKED
, s
->blocks
);
227 if (s
->blk_cur
&& blk_pread(s
->blk_cur
, 0, s
->boot
[0],
228 8 << BDRV_SECTOR_BITS
) < 0) {
229 hw_error("%s: Loading the BootRAM failed.\n", __func__
);
234 static void onenand_system_reset(DeviceState
*dev
)
236 OneNANDState
*s
= ONE_NAND(dev
);
241 static inline int onenand_load_main(OneNANDState
*s
, int sec
, int secn
,
244 assert(UINT32_MAX
>> BDRV_SECTOR_BITS
> sec
);
245 assert(UINT32_MAX
>> BDRV_SECTOR_BITS
> secn
);
247 return blk_pread(s
->blk_cur
, sec
<< BDRV_SECTOR_BITS
, dest
,
248 secn
<< BDRV_SECTOR_BITS
) < 0;
249 } else if (sec
+ secn
> s
->secs_cur
) {
253 memcpy(dest
, s
->current
+ (sec
<< 9), secn
<< 9);
258 static inline int onenand_prog_main(OneNANDState
*s
, int sec
, int secn
,
264 uint32_t size
= secn
<< BDRV_SECTOR_BITS
;
265 uint32_t offset
= sec
<< BDRV_SECTOR_BITS
;
266 assert(UINT32_MAX
>> BDRV_SECTOR_BITS
> sec
);
267 assert(UINT32_MAX
>> BDRV_SECTOR_BITS
> secn
);
268 const uint8_t *sp
= (const uint8_t *)src
;
272 if (!dp
|| blk_pread(s
->blk_cur
, offset
, dp
, size
) < 0) {
276 if (sec
+ secn
> s
->secs_cur
) {
279 dp
= (uint8_t *)s
->current
+ offset
;
284 for (i
= 0; i
< size
; i
++) {
288 result
= blk_pwrite(s
->blk_cur
, offset
, dp
, size
, 0) < 0;
291 if (dp
&& s
->blk_cur
) {
299 static inline int onenand_load_spare(OneNANDState
*s
, int sec
, int secn
,
305 uint32_t offset
= (s
->secs_cur
+ (sec
>> 5)) << BDRV_SECTOR_BITS
;
306 if (blk_pread(s
->blk_cur
, offset
, buf
, BDRV_SECTOR_SIZE
) < 0) {
309 memcpy(dest
, buf
+ ((sec
& 31) << 4), secn
<< 4);
310 } else if (sec
+ secn
> s
->secs_cur
) {
313 memcpy(dest
, s
->current
+ (s
->secs_cur
<< 9) + (sec
<< 4), secn
<< 4);
319 static inline int onenand_prog_spare(OneNANDState
*s
, int sec
, int secn
,
324 const uint8_t *sp
= (const uint8_t *)src
;
325 uint8_t *dp
= 0, *dpp
= 0;
326 uint32_t offset
= (s
->secs_cur
+ (sec
>> 5)) << BDRV_SECTOR_BITS
;
327 assert(UINT32_MAX
>> BDRV_SECTOR_BITS
> s
->secs_cur
+ (sec
>> 5));
331 || blk_pread(s
->blk_cur
, offset
, dp
, BDRV_SECTOR_SIZE
) < 0) {
334 dpp
= dp
+ ((sec
& 31) << 4);
337 if (sec
+ secn
> s
->secs_cur
) {
340 dpp
= s
->current
+ (s
->secs_cur
<< 9) + (sec
<< 4);
345 for (i
= 0; i
< (secn
<< 4); i
++) {
349 result
= blk_pwrite(s
->blk_cur
, offset
, dp
,
350 BDRV_SECTOR_SIZE
, 0) < 0;
358 static inline int onenand_erase(OneNANDState
*s
, int sec
, int num
)
360 uint8_t *blankbuf
, *tmpbuf
;
362 blankbuf
= g_malloc(512);
363 tmpbuf
= g_malloc(512);
364 memset(blankbuf
, 0xff, 512);
365 for (; num
> 0; num
--, sec
++) {
367 int erasesec
= s
->secs_cur
+ (sec
>> 5);
368 if (blk_pwrite(s
->blk_cur
, sec
<< BDRV_SECTOR_BITS
, blankbuf
,
369 BDRV_SECTOR_SIZE
, 0) < 0) {
372 if (blk_pread(s
->blk_cur
, erasesec
<< BDRV_SECTOR_BITS
, tmpbuf
,
373 BDRV_SECTOR_SIZE
) < 0) {
376 memcpy(tmpbuf
+ ((sec
& 31) << 4), blankbuf
, 1 << 4);
377 if (blk_pwrite(s
->blk_cur
, erasesec
<< BDRV_SECTOR_BITS
, tmpbuf
,
378 BDRV_SECTOR_SIZE
, 0) < 0) {
382 if (sec
+ 1 > s
->secs_cur
) {
385 memcpy(s
->current
+ (sec
<< 9), blankbuf
, 512);
386 memcpy(s
->current
+ (s
->secs_cur
<< 9) + (sec
<< 4),
401 static void onenand_command(OneNANDState
*s
)
406 #define SETADDR(block, page) \
407 sec = (s->addr[page] & 3) + \
408 ((((s->addr[page] >> 2) & 0x3f) + \
409 (((s->addr[block] & 0xfff) | \
410 (s->addr[block] >> 15 ? \
411 s->density_mask : 0)) << 6)) << (PAGE_SHIFT - 9));
413 buf = (s->bufaddr & 8) ? \
414 s->data[(s->bufaddr >> 2) & 1][0] : s->boot[0]; \
415 buf += (s->bufaddr & 3) << 9;
417 buf = (s->bufaddr & 8) ? \
418 s->data[(s->bufaddr >> 2) & 1][1] : s->boot[1]; \
419 buf += (s->bufaddr & 3) << 4;
421 switch (s
->command
) {
422 case 0x00: /* Load single/multiple sector data unit into buffer */
423 SETADDR(ONEN_BUF_BLOCK
, ONEN_BUF_PAGE
)
426 if (onenand_load_main(s
, sec
, s
->count
, buf
))
427 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_LOAD
;
431 if (onenand_load_spare(s
, sec
, s
->count
, buf
))
432 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_LOAD
;
435 /* TODO: if (s->bufaddr & 3) + s->count was > 4 (2k-pages)
436 * or if (s->bufaddr & 1) + s->count was > 2 (1k-pages)
437 * then we need two split the read/write into two chunks.
439 s
->intstatus
|= ONEN_INT
| ONEN_INT_LOAD
;
441 case 0x13: /* Load single/multiple spare sector into buffer */
442 SETADDR(ONEN_BUF_BLOCK
, ONEN_BUF_PAGE
)
445 if (onenand_load_spare(s
, sec
, s
->count
, buf
))
446 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_LOAD
;
448 /* TODO: if (s->bufaddr & 3) + s->count was > 4 (2k-pages)
449 * or if (s->bufaddr & 1) + s->count was > 2 (1k-pages)
450 * then we need two split the read/write into two chunks.
452 s
->intstatus
|= ONEN_INT
| ONEN_INT_LOAD
;
454 case 0x80: /* Program single/multiple sector data unit from buffer */
455 SETADDR(ONEN_BUF_BLOCK
, ONEN_BUF_PAGE
)
458 if (onenand_prog_main(s
, sec
, s
->count
, buf
))
459 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_PROG
;
463 if (onenand_prog_spare(s
, sec
, s
->count
, buf
))
464 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_PROG
;
467 /* TODO: if (s->bufaddr & 3) + s->count was > 4 (2k-pages)
468 * or if (s->bufaddr & 1) + s->count was > 2 (1k-pages)
469 * then we need two split the read/write into two chunks.
471 s
->intstatus
|= ONEN_INT
| ONEN_INT_PROG
;
473 case 0x1a: /* Program single/multiple spare area sector from buffer */
474 SETADDR(ONEN_BUF_BLOCK
, ONEN_BUF_PAGE
)
477 if (onenand_prog_spare(s
, sec
, s
->count
, buf
))
478 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_PROG
;
480 /* TODO: if (s->bufaddr & 3) + s->count was > 4 (2k-pages)
481 * or if (s->bufaddr & 1) + s->count was > 2 (1k-pages)
482 * then we need two split the read/write into two chunks.
484 s
->intstatus
|= ONEN_INT
| ONEN_INT_PROG
;
486 case 0x1b: /* Copy-back program */
489 SETADDR(ONEN_BUF_BLOCK
, ONEN_BUF_PAGE
)
490 if (onenand_load_main(s
, sec
, s
->count
, buf
))
491 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_PROG
;
493 SETADDR(ONEN_BUF_DEST_BLOCK
, ONEN_BUF_DEST_PAGE
)
494 if (onenand_prog_main(s
, sec
, s
->count
, buf
))
495 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_PROG
;
497 /* TODO: spare areas */
499 s
->intstatus
|= ONEN_INT
| ONEN_INT_PROG
;
502 case 0x23: /* Unlock NAND array block(s) */
503 s
->intstatus
|= ONEN_INT
;
505 /* XXX the previous (?) area should be locked automatically */
506 for (b
= s
->unladdr
[0]; b
<= s
->unladdr
[1]; b
++) {
507 if (b
>= s
->blocks
) {
508 s
->status
|= ONEN_ERR_CMD
;
511 if (s
->blockwp
[b
] == ONEN_LOCK_LOCKTIGHTEN
)
514 s
->wpstatus
= s
->blockwp
[b
] = ONEN_LOCK_UNLOCKED
;
517 case 0x27: /* Unlock All NAND array blocks */
518 s
->intstatus
|= ONEN_INT
;
520 for (b
= 0; b
< s
->blocks
; b
++) {
521 if (s
->blockwp
[b
] == ONEN_LOCK_LOCKTIGHTEN
)
524 s
->wpstatus
= s
->blockwp
[b
] = ONEN_LOCK_UNLOCKED
;
528 case 0x2a: /* Lock NAND array block(s) */
529 s
->intstatus
|= ONEN_INT
;
531 for (b
= s
->unladdr
[0]; b
<= s
->unladdr
[1]; b
++) {
532 if (b
>= s
->blocks
) {
533 s
->status
|= ONEN_ERR_CMD
;
536 if (s
->blockwp
[b
] == ONEN_LOCK_LOCKTIGHTEN
)
539 s
->wpstatus
= s
->blockwp
[b
] = ONEN_LOCK_LOCKED
;
542 case 0x2c: /* Lock-tight NAND array block(s) */
543 s
->intstatus
|= ONEN_INT
;
545 for (b
= s
->unladdr
[0]; b
<= s
->unladdr
[1]; b
++) {
546 if (b
>= s
->blocks
) {
547 s
->status
|= ONEN_ERR_CMD
;
550 if (s
->blockwp
[b
] == ONEN_LOCK_UNLOCKED
)
553 s
->wpstatus
= s
->blockwp
[b
] = ONEN_LOCK_LOCKTIGHTEN
;
557 case 0x71: /* Erase-Verify-Read */
558 s
->intstatus
|= ONEN_INT
;
560 case 0x95: /* Multi-block erase */
561 qemu_irq_pulse(s
->intr
);
563 case 0x94: /* Block erase */
564 sec
= ((s
->addr
[ONEN_BUF_BLOCK
] & 0xfff) |
565 (s
->addr
[ONEN_BUF_BLOCK
] >> 15 ? s
->density_mask
: 0))
566 << (BLOCK_SHIFT
- 9);
567 if (onenand_erase(s
, sec
, 1 << (BLOCK_SHIFT
- 9)))
568 s
->status
|= ONEN_ERR_CMD
| ONEN_ERR_ERASE
;
570 s
->intstatus
|= ONEN_INT
| ONEN_INT_ERASE
;
572 case 0xb0: /* Erase suspend */
574 case 0x30: /* Erase resume */
575 s
->intstatus
|= ONEN_INT
| ONEN_INT_ERASE
;
578 case 0xf0: /* Reset NAND Flash core */
581 case 0xf3: /* Reset OneNAND */
585 case 0x65: /* OTP Access */
586 s
->intstatus
|= ONEN_INT
;
589 s
->secs_cur
= 1 << (BLOCK_SHIFT
- 9);
590 s
->addr
[ONEN_BUF_BLOCK
] = 0;
595 s
->status
|= ONEN_ERR_CMD
;
596 s
->intstatus
|= ONEN_INT
;
597 fprintf(stderr
, "%s: unknown OneNAND command %x\n",
598 __func__
, s
->command
);
601 onenand_intr_update(s
);
604 static uint64_t onenand_read(void *opaque
, hwaddr addr
,
607 OneNANDState
*s
= (OneNANDState
*) opaque
;
608 int offset
= addr
>> s
->shift
;
611 case 0x0000 ... 0xc000:
612 return lduw_le_p(s
->boot
[0] + addr
);
614 case 0xf000: /* Manufacturer ID */
616 case 0xf001: /* Device ID */
618 case 0xf002: /* Version ID */
620 /* TODO: get the following values from a real chip! */
621 case 0xf003: /* Data Buffer size */
622 return 1 << PAGE_SHIFT
;
623 case 0xf004: /* Boot Buffer size */
625 case 0xf005: /* Amount of buffers */
627 case 0xf006: /* Technology */
630 case 0xf100 ... 0xf107: /* Start addresses */
631 return s
->addr
[offset
- 0xf100];
633 case 0xf200: /* Start buffer */
634 return (s
->bufaddr
<< 8) | ((s
->count
- 1) & (1 << (PAGE_SHIFT
- 10)));
636 case 0xf220: /* Command */
638 case 0xf221: /* System Configuration 1 */
639 return s
->config
[0] & 0xffe0;
640 case 0xf222: /* System Configuration 2 */
643 case 0xf240: /* Controller Status */
645 case 0xf241: /* Interrupt */
647 case 0xf24c: /* Unlock Start Block Address */
648 return s
->unladdr
[0];
649 case 0xf24d: /* Unlock End Block Address */
650 return s
->unladdr
[1];
651 case 0xf24e: /* Write Protection Status */
654 case 0xff00: /* ECC Status */
656 case 0xff01: /* ECC Result of main area data */
657 case 0xff02: /* ECC Result of spare area data */
658 case 0xff03: /* ECC Result of main area data */
659 case 0xff04: /* ECC Result of spare area data */
660 hw_error("%s: implement ECC\n", __func__
);
664 fprintf(stderr
, "%s: unknown OneNAND register %x\n",
669 static void onenand_write(void *opaque
, hwaddr addr
,
670 uint64_t value
, unsigned size
)
672 OneNANDState
*s
= (OneNANDState
*) opaque
;
673 int offset
= addr
>> s
->shift
;
677 case 0x0000 ... 0x01ff:
678 case 0x8000 ... 0x800f:
682 if (value
== 0x0000) {
683 SETADDR(ONEN_BUF_BLOCK
, ONEN_BUF_PAGE
)
684 onenand_load_main(s
, sec
,
685 1 << (PAGE_SHIFT
- 9), s
->data
[0][0]);
686 s
->addr
[ONEN_BUF_PAGE
] += 4;
687 s
->addr
[ONEN_BUF_PAGE
] &= 0xff;
693 case 0x00f0: /* Reset OneNAND */
697 case 0x00e0: /* Load Data into Buffer */
701 case 0x0090: /* Read Identification Data */
702 memset(s
->boot
[0], 0, 3 << s
->shift
);
703 s
->boot
[0][0 << s
->shift
] = s
->id
.man
& 0xff;
704 s
->boot
[0][1 << s
->shift
] = s
->id
.dev
& 0xff;
705 s
->boot
[0][2 << s
->shift
] = s
->wpstatus
& 0xff;
709 fprintf(stderr
, "%s: unknown OneNAND boot command %"PRIx64
"\n",
714 case 0xf100 ... 0xf107: /* Start addresses */
715 s
->addr
[offset
- 0xf100] = value
;
718 case 0xf200: /* Start buffer */
719 s
->bufaddr
= (value
>> 8) & 0xf;
720 if (PAGE_SHIFT
== 11)
721 s
->count
= (value
& 3) ?: 4;
722 else if (PAGE_SHIFT
== 10)
723 s
->count
= (value
& 1) ?: 2;
726 case 0xf220: /* Command */
727 if (s
->intstatus
& (1 << 15))
732 case 0xf221: /* System Configuration 1 */
733 s
->config
[0] = value
;
734 onenand_intr_update(s
);
735 qemu_set_irq(s
->rdy
, (s
->config
[0] >> 7) & 1);
737 case 0xf222: /* System Configuration 2 */
738 s
->config
[1] = value
;
741 case 0xf241: /* Interrupt */
742 s
->intstatus
&= value
;
743 if ((1 << 15) & ~s
->intstatus
)
744 s
->status
&= ~(ONEN_ERR_CMD
| ONEN_ERR_ERASE
|
745 ONEN_ERR_PROG
| ONEN_ERR_LOAD
);
746 onenand_intr_update(s
);
748 case 0xf24c: /* Unlock Start Block Address */
749 s
->unladdr
[0] = value
& (s
->blocks
- 1);
750 /* For some reason we have to set the end address to by default
751 * be same as start because the software forgets to write anything
753 s
->unladdr
[1] = value
& (s
->blocks
- 1);
755 case 0xf24d: /* Unlock End Block Address */
756 s
->unladdr
[1] = value
& (s
->blocks
- 1);
760 fprintf(stderr
, "%s: unknown OneNAND register %x\n",
765 static const MemoryRegionOps onenand_ops
= {
766 .read
= onenand_read
,
767 .write
= onenand_write
,
768 .endianness
= DEVICE_NATIVE_ENDIAN
,
771 static int onenand_initfn(SysBusDevice
*sbd
)
773 DeviceState
*dev
= DEVICE(sbd
);
774 OneNANDState
*s
= ONE_NAND(dev
);
775 uint32_t size
= 1 << (24 + ((s
->id
.dev
>> 4) & 7));
777 Error
*local_err
= NULL
;
779 s
->base
= (hwaddr
)-1;
781 s
->blocks
= size
>> BLOCK_SHIFT
;
783 s
->blockwp
= g_malloc(s
->blocks
);
784 s
->density_mask
= (s
->id
.dev
& 0x08)
785 ? (1 << (6 + ((s
->id
.dev
>> 4) & 7))) : 0;
786 memory_region_init_io(&s
->iomem
, OBJECT(s
), &onenand_ops
, s
, "onenand",
787 0x10000 << s
->shift
);
789 s
->image
= memset(g_malloc(size
+ (size
>> 5)),
790 0xff, size
+ (size
>> 5));
792 if (blk_is_read_only(s
->blk
)) {
793 error_report("Can't use a read-only drive");
796 blk_set_perm(s
->blk
, BLK_PERM_CONSISTENT_READ
| BLK_PERM_WRITE
,
797 BLK_PERM_ALL
, &local_err
);
799 error_report_err(local_err
);
804 s
->otp
= memset(g_malloc((64 + 2) << PAGE_SHIFT
),
805 0xff, (64 + 2) << PAGE_SHIFT
);
806 memory_region_init_ram_nomigrate(&s
->ram
, OBJECT(s
), "onenand.ram",
807 0xc000 << s
->shift
, &error_fatal
);
808 vmstate_register_ram_global(&s
->ram
);
809 ram
= memory_region_get_ram_ptr(&s
->ram
);
810 s
->boot
[0] = ram
+ (0x0000 << s
->shift
);
811 s
->boot
[1] = ram
+ (0x8000 << s
->shift
);
812 s
->data
[0][0] = ram
+ ((0x0200 + (0 << (PAGE_SHIFT
- 1))) << s
->shift
);
813 s
->data
[0][1] = ram
+ ((0x8010 + (0 << (PAGE_SHIFT
- 6))) << s
->shift
);
814 s
->data
[1][0] = ram
+ ((0x0200 + (1 << (PAGE_SHIFT
- 1))) << s
->shift
);
815 s
->data
[1][1] = ram
+ ((0x8010 + (1 << (PAGE_SHIFT
- 6))) << s
->shift
);
816 onenand_mem_setup(s
);
817 sysbus_init_irq(sbd
, &s
->intr
);
818 sysbus_init_mmio(sbd
, &s
->container
);
819 vmstate_register(dev
,
820 ((s
->shift
& 0x7f) << 24)
821 | ((s
->id
.man
& 0xff) << 16)
822 | ((s
->id
.dev
& 0xff) << 8)
823 | (s
->id
.ver
& 0xff),
824 &vmstate_onenand
, s
);
828 static Property onenand_properties
[] = {
829 DEFINE_PROP_UINT16("manufacturer_id", OneNANDState
, id
.man
, 0),
830 DEFINE_PROP_UINT16("device_id", OneNANDState
, id
.dev
, 0),
831 DEFINE_PROP_UINT16("version_id", OneNANDState
, id
.ver
, 0),
832 DEFINE_PROP_INT32("shift", OneNANDState
, shift
, 0),
833 DEFINE_PROP_DRIVE("drive", OneNANDState
, blk
),
834 DEFINE_PROP_END_OF_LIST(),
837 static void onenand_class_init(ObjectClass
*klass
, void *data
)
839 DeviceClass
*dc
= DEVICE_CLASS(klass
);
840 SysBusDeviceClass
*k
= SYS_BUS_DEVICE_CLASS(klass
);
842 k
->init
= onenand_initfn
;
843 dc
->reset
= onenand_system_reset
;
844 dc
->props
= onenand_properties
;
847 static const TypeInfo onenand_info
= {
848 .name
= TYPE_ONE_NAND
,
849 .parent
= TYPE_SYS_BUS_DEVICE
,
850 .instance_size
= sizeof(OneNANDState
),
851 .class_init
= onenand_class_init
,
854 static void onenand_register_types(void)
856 type_register_static(&onenand_info
);
859 void *onenand_raw_otp(DeviceState
*onenand_device
)
861 OneNANDState
*s
= ONE_NAND(onenand_device
);
866 type_init(onenand_register_types
)