2 * linux/drivers/mtd/onenand/onenand_sim.c
4 * The OneNAND simulator
6 * Copyright © 2005-2007 Samsung Electronics
7 * Kyungmin Park <kyungmin.park@samsung.com>
9 * Vishak G <vishak.g at samsung.com>, Rohit Hagargundgi <h.rohit at samsung.com>
10 * Flex-OneNAND simulator support
11 * Copyright (C) Samsung Electronics, 2008
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/vmalloc.h>
22 #include <linux/mtd/mtd.h>
23 #include <linux/mtd/partitions.h>
24 #include <linux/mtd/onenand.h>
28 #ifndef CONFIG_ONENAND_SIM_MANUFACTURER
29 #define CONFIG_ONENAND_SIM_MANUFACTURER 0xec
32 #ifndef CONFIG_ONENAND_SIM_DEVICE_ID
33 #define CONFIG_ONENAND_SIM_DEVICE_ID 0x04
36 #define CONFIG_FLEXONENAND ((CONFIG_ONENAND_SIM_DEVICE_ID >> 9) & 1)
38 #ifndef CONFIG_ONENAND_SIM_VERSION_ID
39 #define CONFIG_ONENAND_SIM_VERSION_ID 0x1e
42 #ifndef CONFIG_ONENAND_SIM_TECHNOLOGY_ID
43 #define CONFIG_ONENAND_SIM_TECHNOLOGY_ID CONFIG_FLEXONENAND
46 /* Initial boundary values for Flex-OneNAND Simulator */
47 #ifndef CONFIG_FLEXONENAND_SIM_DIE0_BOUNDARY
48 #define CONFIG_FLEXONENAND_SIM_DIE0_BOUNDARY 0x01
51 #ifndef CONFIG_FLEXONENAND_SIM_DIE1_BOUNDARY
52 #define CONFIG_FLEXONENAND_SIM_DIE1_BOUNDARY 0x01
55 static int manuf_id
= CONFIG_ONENAND_SIM_MANUFACTURER
;
56 static int device_id
= CONFIG_ONENAND_SIM_DEVICE_ID
;
57 static int version_id
= CONFIG_ONENAND_SIM_VERSION_ID
;
58 static int technology_id
= CONFIG_ONENAND_SIM_TECHNOLOGY_ID
;
59 static int boundary
[] = {
60 CONFIG_FLEXONENAND_SIM_DIE0_BOUNDARY
,
61 CONFIG_FLEXONENAND_SIM_DIE1_BOUNDARY
,
64 struct onenand_flash
{
69 #define ONENAND_CORE(flash) (flash->data)
70 #define ONENAND_CORE_SPARE(flash, this, offset) \
71 ((flash->data) + (this->chipsize) + (offset >> 5))
73 #define ONENAND_MAIN_AREA(this, offset) \
74 (this->base + ONENAND_DATARAM + offset)
76 #define ONENAND_SPARE_AREA(this, offset) \
77 (this->base + ONENAND_SPARERAM + offset)
79 #define ONENAND_GET_WP_STATUS(this) \
80 (readw(this->base + ONENAND_REG_WP_STATUS))
82 #define ONENAND_SET_WP_STATUS(v, this) \
83 (writew(v, this->base + ONENAND_REG_WP_STATUS))
85 /* It has all 0xff chars */
86 #define MAX_ONENAND_PAGESIZE (4096 + 128)
87 static unsigned char *ffchars
;
89 #if CONFIG_FLEXONENAND
90 #define PARTITION_NAME "Flex-OneNAND simulator partition"
92 #define PARTITION_NAME "OneNAND simulator partition"
95 static struct mtd_partition os_partitions
[] = {
97 .name
= PARTITION_NAME
,
99 .size
= MTDPART_SIZ_FULL
,
104 * OneNAND simulator mtd
106 struct onenand_info
{
108 struct mtd_partition
*parts
;
109 struct onenand_chip onenand
;
110 struct onenand_flash flash
;
113 static struct onenand_info
*info
;
115 #define DPRINTK(format, args...) \
117 printk(KERN_DEBUG "%s[%d]: " format "\n", __func__, \
122 * onenand_lock_handle - Handle Lock scheme
123 * @this: OneNAND device structure
124 * @cmd: The command to be sent
126 * Send lock command to OneNAND device.
127 * The lock scheme depends on chip type.
129 static void onenand_lock_handle(struct onenand_chip
*this, int cmd
)
131 int block_lock_scheme
;
134 status
= ONENAND_GET_WP_STATUS(this);
135 block_lock_scheme
= !(this->options
& ONENAND_HAS_CONT_LOCK
);
138 case ONENAND_CMD_UNLOCK
:
139 case ONENAND_CMD_UNLOCK_ALL
:
140 if (block_lock_scheme
)
141 ONENAND_SET_WP_STATUS(ONENAND_WP_US
, this);
143 ONENAND_SET_WP_STATUS(status
| ONENAND_WP_US
, this);
146 case ONENAND_CMD_LOCK
:
147 if (block_lock_scheme
)
148 ONENAND_SET_WP_STATUS(ONENAND_WP_LS
, this);
150 ONENAND_SET_WP_STATUS(status
| ONENAND_WP_LS
, this);
153 case ONENAND_CMD_LOCK_TIGHT
:
154 if (block_lock_scheme
)
155 ONENAND_SET_WP_STATUS(ONENAND_WP_LTS
, this);
157 ONENAND_SET_WP_STATUS(status
| ONENAND_WP_LTS
, this);
166 * onenand_bootram_handle - Handle BootRAM area
167 * @this: OneNAND device structure
168 * @cmd: The command to be sent
170 * Emulate BootRAM area. It is possible to do basic operation using BootRAM.
172 static void onenand_bootram_handle(struct onenand_chip
*this, int cmd
)
175 case ONENAND_CMD_READID
:
176 writew(manuf_id
, this->base
);
177 writew(device_id
, this->base
+ 2);
178 writew(version_id
, this->base
+ 4);
182 /* REVIST: Handle other commands */
188 * onenand_update_interrupt - Set interrupt register
189 * @this: OneNAND device structure
190 * @cmd: The command to be sent
192 * Update interrupt register. The status depends on command.
194 static void onenand_update_interrupt(struct onenand_chip
*this, int cmd
)
196 int interrupt
= ONENAND_INT_MASTER
;
199 case ONENAND_CMD_READ
:
200 case ONENAND_CMD_READOOB
:
201 interrupt
|= ONENAND_INT_READ
;
204 case ONENAND_CMD_PROG
:
205 case ONENAND_CMD_PROGOOB
:
206 interrupt
|= ONENAND_INT_WRITE
;
209 case ONENAND_CMD_ERASE
:
210 interrupt
|= ONENAND_INT_ERASE
;
213 case ONENAND_CMD_RESET
:
214 interrupt
|= ONENAND_INT_RESET
;
221 writew(interrupt
, this->base
+ ONENAND_REG_INTERRUPT
);
225 * onenand_check_overwrite - Check if over-write happened
226 * @dest: The destination pointer
227 * @src: The source pointer
228 * @count: The length to be check
230 * Returns: 0 on same, otherwise 1
232 * Compare the source with destination
234 static int onenand_check_overwrite(void *dest
, void *src
, size_t count
)
236 unsigned int *s
= (unsigned int *) src
;
237 unsigned int *d
= (unsigned int *) dest
;
241 for (i
= 0; i
< count
; i
++)
242 if ((*s
++ ^ *d
++) != 0)
249 * onenand_data_handle - Handle OneNAND Core and DataRAM
250 * @this: OneNAND device structure
251 * @cmd: The command to be sent
252 * @dataram: Which dataram used
253 * @offset: The offset to OneNAND Core
255 * Copy data from OneNAND Core to DataRAM (read)
256 * Copy data from DataRAM to OneNAND Core (write)
257 * Erase the OneNAND Core (erase)
259 static void onenand_data_handle(struct onenand_chip
*this, int cmd
,
260 int dataram
, unsigned int offset
)
262 struct mtd_info
*mtd
= &info
->mtd
;
263 struct onenand_flash
*flash
= this->priv
;
264 int main_offset
, spare_offset
, die
= 0;
268 static int pi_operation
;
272 main_offset
= mtd
->writesize
;
273 spare_offset
= mtd
->oobsize
;
280 die
= readw(this->base
+ ONENAND_REG_START_ADDRESS2
);
281 die
>>= ONENAND_DDP_SHIFT
;
285 case FLEXONENAND_CMD_PI_ACCESS
:
289 case ONENAND_CMD_RESET
:
293 case ONENAND_CMD_READ
:
294 src
= ONENAND_CORE(flash
) + offset
;
295 dest
= ONENAND_MAIN_AREA(this, main_offset
);
297 writew(boundary
[die
], this->base
+ ONENAND_DATARAM
);
300 memcpy(dest
, src
, mtd
->writesize
);
303 case ONENAND_CMD_READOOB
:
304 src
= ONENAND_CORE_SPARE(flash
, this, offset
);
305 dest
= ONENAND_SPARE_AREA(this, spare_offset
);
306 memcpy(dest
, src
, mtd
->oobsize
);
309 case ONENAND_CMD_PROG
:
310 src
= ONENAND_MAIN_AREA(this, main_offset
);
311 dest
= ONENAND_CORE(flash
) + offset
;
313 boundary
[die
] = readw(this->base
+ ONENAND_DATARAM
);
316 /* To handle partial write */
317 for (i
= 0; i
< (1 << mtd
->subpage_sft
); i
++) {
318 int off
= i
* this->subpagesize
;
319 if (!memcmp(src
+ off
, ffchars
, this->subpagesize
))
321 if (memcmp(dest
+ off
, ffchars
, this->subpagesize
) &&
322 onenand_check_overwrite(dest
+ off
, src
+ off
, this->subpagesize
))
323 printk(KERN_ERR
"over-write happend at 0x%08x\n", offset
);
324 memcpy(dest
+ off
, src
+ off
, this->subpagesize
);
328 case ONENAND_CMD_PROGOOB
:
329 src
= ONENAND_SPARE_AREA(this, spare_offset
);
330 /* Check all data is 0xff chars */
331 if (!memcmp(src
, ffchars
, mtd
->oobsize
))
334 dest
= ONENAND_CORE_SPARE(flash
, this, offset
);
335 if (memcmp(dest
, ffchars
, mtd
->oobsize
) &&
336 onenand_check_overwrite(dest
, src
, mtd
->oobsize
))
337 printk(KERN_ERR
"OOB: over-write happend at 0x%08x\n",
339 memcpy(dest
, src
, mtd
->oobsize
);
342 case ONENAND_CMD_ERASE
:
346 if (FLEXONENAND(this)) {
347 rgn
= flexonenand_region(mtd
, offset
);
348 erasesize
= mtd
->eraseregions
[rgn
].erasesize
;
350 erasesize
= mtd
->erasesize
;
352 memset(ONENAND_CORE(flash
) + offset
, 0xff, erasesize
);
353 memset(ONENAND_CORE_SPARE(flash
, this, offset
), 0xff,
363 * onenand_command_handle - Handle command
364 * @this: OneNAND device structure
365 * @cmd: The command to be sent
367 * Emulate OneNAND command.
369 static void onenand_command_handle(struct onenand_chip
*this, int cmd
)
371 unsigned long offset
= 0;
372 int block
= -1, page
= -1, bufferram
= -1;
376 case ONENAND_CMD_UNLOCK
:
377 case ONENAND_CMD_LOCK
:
378 case ONENAND_CMD_LOCK_TIGHT
:
379 case ONENAND_CMD_UNLOCK_ALL
:
380 onenand_lock_handle(this, cmd
);
383 case ONENAND_CMD_BUFFERRAM
:
388 block
= (int) readw(this->base
+ ONENAND_REG_START_ADDRESS1
);
389 if (block
& (1 << ONENAND_DDP_SHIFT
)) {
390 block
&= ~(1 << ONENAND_DDP_SHIFT
);
391 /* The half of chip block */
392 block
+= this->chipsize
>> (this->erase_shift
+ 1);
394 if (cmd
== ONENAND_CMD_ERASE
)
397 page
= (int) readw(this->base
+ ONENAND_REG_START_ADDRESS8
);
398 page
= (page
>> ONENAND_FPA_SHIFT
);
399 bufferram
= (int) readw(this->base
+ ONENAND_REG_START_BUFFER
);
400 bufferram
>>= ONENAND_BSA_SHIFT
;
401 bufferram
&= ONENAND_BSA_DATARAM1
;
402 dataram
= (bufferram
== ONENAND_BSA_DATARAM1
) ? 1 : 0;
407 offset
= onenand_addr(this, block
);
410 offset
+= page
<< this->page_shift
;
412 onenand_data_handle(this, cmd
, dataram
, offset
);
414 onenand_update_interrupt(this, cmd
);
418 * onenand_writew - [OneNAND Interface] Emulate write operation
419 * @value: value to write
420 * @addr: address to write
422 * Write OneNAND register with value
424 static void onenand_writew(unsigned short value
, void __iomem
* addr
)
426 struct onenand_chip
*this = info
->mtd
.priv
;
428 /* BootRAM handling */
429 if (addr
< this->base
+ ONENAND_DATARAM
) {
430 onenand_bootram_handle(this, value
);
433 /* Command handling */
434 if (addr
== this->base
+ ONENAND_REG_COMMAND
)
435 onenand_command_handle(this, value
);
441 * flash_init - Initialize OneNAND simulator
442 * @flash: OneNAND simulator data strucutres
444 * Initialize OneNAND simulator.
446 static int __init
flash_init(struct onenand_flash
*flash
)
451 flash
->base
= kzalloc(131072, GFP_KERNEL
);
453 printk(KERN_ERR
"Unable to allocate base address.\n");
457 density
= device_id
>> ONENAND_DEVICE_DENSITY_SHIFT
;
458 density
&= ONENAND_DEVICE_DENSITY_MASK
;
459 size
= ((16 << 20) << density
);
461 ONENAND_CORE(flash
) = vmalloc(size
+ (size
>> 5));
462 if (!ONENAND_CORE(flash
)) {
463 printk(KERN_ERR
"Unable to allocate nand core address.\n");
468 memset(ONENAND_CORE(flash
), 0xff, size
+ (size
>> 5));
470 /* Setup registers */
471 writew(manuf_id
, flash
->base
+ ONENAND_REG_MANUFACTURER_ID
);
472 writew(device_id
, flash
->base
+ ONENAND_REG_DEVICE_ID
);
473 writew(version_id
, flash
->base
+ ONENAND_REG_VERSION_ID
);
474 writew(technology_id
, flash
->base
+ ONENAND_REG_TECHNOLOGY
);
476 if (density
< 2 && (!CONFIG_FLEXONENAND
))
477 buffer_size
= 0x0400; /* 1KiB page */
479 buffer_size
= 0x0800; /* 2KiB page */
480 writew(buffer_size
, flash
->base
+ ONENAND_REG_DATA_BUFFER_SIZE
);
486 * flash_exit - Clean up OneNAND simulator
487 * @flash: OneNAND simulator data structures
489 * Clean up OneNAND simulator.
491 static void flash_exit(struct onenand_flash
*flash
)
493 vfree(ONENAND_CORE(flash
));
497 static int __init
onenand_sim_init(void)
499 /* Allocate all 0xff chars pointer */
500 ffchars
= kmalloc(MAX_ONENAND_PAGESIZE
, GFP_KERNEL
);
502 printk(KERN_ERR
"Unable to allocate ff chars.\n");
505 memset(ffchars
, 0xff, MAX_ONENAND_PAGESIZE
);
507 /* Allocate OneNAND simulator mtd pointer */
508 info
= kzalloc(sizeof(struct onenand_info
), GFP_KERNEL
);
510 printk(KERN_ERR
"Unable to allocate core structures.\n");
515 /* Override write_word function */
516 info
->onenand
.write_word
= onenand_writew
;
518 if (flash_init(&info
->flash
)) {
519 printk(KERN_ERR
"Unable to allocate flash.\n");
525 info
->parts
= os_partitions
;
527 info
->onenand
.base
= info
->flash
.base
;
528 info
->onenand
.priv
= &info
->flash
;
530 info
->mtd
.name
= "OneNAND simulator";
531 info
->mtd
.priv
= &info
->onenand
;
532 info
->mtd
.owner
= THIS_MODULE
;
534 if (onenand_scan(&info
->mtd
, 1)) {
535 flash_exit(&info
->flash
);
541 add_mtd_partitions(&info
->mtd
, info
->parts
, ARRAY_SIZE(os_partitions
));
546 static void __exit
onenand_sim_exit(void)
548 struct onenand_chip
*this = info
->mtd
.priv
;
549 struct onenand_flash
*flash
= this->priv
;
551 onenand_release(&info
->mtd
);
557 module_init(onenand_sim_init
);
558 module_exit(onenand_sim_exit
);
560 MODULE_AUTHOR("Kyungmin Park <kyungmin.park@samsung.com>");
561 MODULE_DESCRIPTION("The OneNAND flash simulator");
562 MODULE_LICENSE("GPL");