Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6
[linux-2.6/linux-2.6-openrd.git] / drivers / mtd / onenand / onenand_sim.c
blobf6e3c8aebd3a107b43c711a05fdebcdc283e05f8
1 /*
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>
26 #include <linux/io.h>
28 #ifndef CONFIG_ONENAND_SIM_MANUFACTURER
29 #define CONFIG_ONENAND_SIM_MANUFACTURER 0xec
30 #endif
32 #ifndef CONFIG_ONENAND_SIM_DEVICE_ID
33 #define CONFIG_ONENAND_SIM_DEVICE_ID 0x04
34 #endif
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
40 #endif
42 #ifndef CONFIG_ONENAND_SIM_TECHNOLOGY_ID
43 #define CONFIG_ONENAND_SIM_TECHNOLOGY_ID CONFIG_FLEXONENAND
44 #endif
46 /* Initial boundary values for Flex-OneNAND Simulator */
47 #ifndef CONFIG_FLEXONENAND_SIM_DIE0_BOUNDARY
48 #define CONFIG_FLEXONENAND_SIM_DIE0_BOUNDARY 0x01
49 #endif
51 #ifndef CONFIG_FLEXONENAND_SIM_DIE1_BOUNDARY
52 #define CONFIG_FLEXONENAND_SIM_DIE1_BOUNDARY 0x01
53 #endif
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 {
65 void __iomem *base;
66 void __iomem *data;
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"
91 #else
92 #define PARTITION_NAME "OneNAND simulator partition"
93 #endif
95 static struct mtd_partition os_partitions[] = {
97 .name = PARTITION_NAME,
98 .offset = 0,
99 .size = MTDPART_SIZ_FULL,
104 * OneNAND simulator mtd
106 struct onenand_info {
107 struct mtd_info mtd;
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...) \
116 do { \
117 printk(KERN_DEBUG "%s[%d]: " format "\n", __func__, \
118 __LINE__, ##args); \
119 } while (0)
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;
132 int status;
134 status = ONENAND_GET_WP_STATUS(this);
135 block_lock_scheme = !(this->options & ONENAND_HAS_CONT_LOCK);
137 switch (cmd) {
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);
142 else
143 ONENAND_SET_WP_STATUS(status | ONENAND_WP_US, this);
144 break;
146 case ONENAND_CMD_LOCK:
147 if (block_lock_scheme)
148 ONENAND_SET_WP_STATUS(ONENAND_WP_LS, this);
149 else
150 ONENAND_SET_WP_STATUS(status | ONENAND_WP_LS, this);
151 break;
153 case ONENAND_CMD_LOCK_TIGHT:
154 if (block_lock_scheme)
155 ONENAND_SET_WP_STATUS(ONENAND_WP_LTS, this);
156 else
157 ONENAND_SET_WP_STATUS(status | ONENAND_WP_LTS, this);
158 break;
160 default:
161 break;
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)
174 switch (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);
179 break;
181 default:
182 /* REVIST: Handle other commands */
183 break;
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;
198 switch (cmd) {
199 case ONENAND_CMD_READ:
200 case ONENAND_CMD_READOOB:
201 interrupt |= ONENAND_INT_READ;
202 break;
204 case ONENAND_CMD_PROG:
205 case ONENAND_CMD_PROGOOB:
206 interrupt |= ONENAND_INT_WRITE;
207 break;
209 case ONENAND_CMD_ERASE:
210 interrupt |= ONENAND_INT_ERASE;
211 break;
213 case ONENAND_CMD_RESET:
214 interrupt |= ONENAND_INT_RESET;
215 break;
217 default:
218 break;
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;
238 int i;
240 count >>= 2;
241 for (i = 0; i < count; i++)
242 if ((*s++ ^ *d++) != 0)
243 return 1;
245 return 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;
265 void __iomem *src;
266 void __iomem *dest;
267 unsigned int i;
268 static int pi_operation;
269 int erasesize, rgn;
271 if (dataram) {
272 main_offset = mtd->writesize;
273 spare_offset = mtd->oobsize;
274 } else {
275 main_offset = 0;
276 spare_offset = 0;
279 if (pi_operation) {
280 die = readw(this->base + ONENAND_REG_START_ADDRESS2);
281 die >>= ONENAND_DDP_SHIFT;
284 switch (cmd) {
285 case FLEXONENAND_CMD_PI_ACCESS:
286 pi_operation = 1;
287 break;
289 case ONENAND_CMD_RESET:
290 pi_operation = 0;
291 break;
293 case ONENAND_CMD_READ:
294 src = ONENAND_CORE(flash) + offset;
295 dest = ONENAND_MAIN_AREA(this, main_offset);
296 if (pi_operation) {
297 writew(boundary[die], this->base + ONENAND_DATARAM);
298 break;
300 memcpy(dest, src, mtd->writesize);
301 /* Fall through */
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);
307 break;
309 case ONENAND_CMD_PROG:
310 src = ONENAND_MAIN_AREA(this, main_offset);
311 dest = ONENAND_CORE(flash) + offset;
312 if (pi_operation) {
313 boundary[die] = readw(this->base + ONENAND_DATARAM);
314 break;
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))
320 continue;
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);
326 /* Fall through */
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))
332 break;
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",
338 offset);
339 memcpy(dest, src, mtd->oobsize);
340 break;
342 case ONENAND_CMD_ERASE:
343 if (pi_operation)
344 break;
346 if (FLEXONENAND(this)) {
347 rgn = flexonenand_region(mtd, offset);
348 erasesize = mtd->eraseregions[rgn].erasesize;
349 } else
350 erasesize = mtd->erasesize;
352 memset(ONENAND_CORE(flash) + offset, 0xff, erasesize);
353 memset(ONENAND_CORE_SPARE(flash, this, offset), 0xff,
354 (erasesize >> 5));
355 break;
357 default:
358 break;
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;
373 int dataram = 0;
375 switch (cmd) {
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);
381 break;
383 case ONENAND_CMD_BUFFERRAM:
384 /* Do nothing */
385 return;
387 default:
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)
395 break;
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;
403 break;
406 if (block != -1)
407 offset = onenand_addr(this, block);
409 if (page != -1)
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);
431 return;
433 /* Command handling */
434 if (addr == this->base + ONENAND_REG_COMMAND)
435 onenand_command_handle(this, value);
437 writew(value, addr);
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)
448 int density, size;
449 int buffer_size;
451 flash->base = kzalloc(131072, GFP_KERNEL);
452 if (!flash->base) {
453 printk(KERN_ERR "Unable to allocate base address.\n");
454 return -ENOMEM;
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");
464 kfree(flash->base);
465 return -ENOMEM;
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 */
478 else
479 buffer_size = 0x0800; /* 2KiB page */
480 writew(buffer_size, flash->base + ONENAND_REG_DATA_BUFFER_SIZE);
482 return 0;
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));
494 kfree(flash->base);
497 static int __init onenand_sim_init(void)
499 /* Allocate all 0xff chars pointer */
500 ffchars = kmalloc(MAX_ONENAND_PAGESIZE, GFP_KERNEL);
501 if (!ffchars) {
502 printk(KERN_ERR "Unable to allocate ff chars.\n");
503 return -ENOMEM;
505 memset(ffchars, 0xff, MAX_ONENAND_PAGESIZE);
507 /* Allocate OneNAND simulator mtd pointer */
508 info = kzalloc(sizeof(struct onenand_info), GFP_KERNEL);
509 if (!info) {
510 printk(KERN_ERR "Unable to allocate core structures.\n");
511 kfree(ffchars);
512 return -ENOMEM;
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");
520 kfree(ffchars);
521 kfree(info);
522 return -ENOMEM;
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);
536 kfree(ffchars);
537 kfree(info);
538 return -ENXIO;
541 add_mtd_partitions(&info->mtd, info->parts, ARRAY_SIZE(os_partitions));
543 return 0;
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);
552 flash_exit(flash);
553 kfree(ffchars);
554 kfree(info);
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");