2 * linux/drivers/mtd/onenand/onenand_base.c
4 * Copyright (C) 2005-2007 Samsung Electronics
5 * Kyungmin Park <kyungmin.park@samsung.com>
8 * Adrian Hunter <ext-adrian.hunter@nokia.com>:
9 * auto-placement support, read-while load support, various fixes
10 * Copyright (C) Nokia Corporation, 2007
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/sched.h>
21 #include <linux/interrupt.h>
22 #include <linux/jiffies.h>
23 #include <linux/mtd/mtd.h>
24 #include <linux/mtd/onenand.h>
25 #include <linux/mtd/partitions.h>
30 * onenand_oob_64 - oob info for large (2KB) page
32 static struct nand_ecclayout onenand_oob_64
= {
41 {2, 3}, {14, 2}, {18, 3}, {30, 2},
42 {34, 3}, {46, 2}, {50, 3}, {62, 2}
47 * onenand_oob_32 - oob info for middle (1KB) page
49 static struct nand_ecclayout onenand_oob_32
= {
55 .oobfree
= { {2, 3}, {14, 2}, {18, 3}, {30, 2} }
58 static const unsigned char ffchars
[] = {
59 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
60 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 16 */
61 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
62 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 32 */
63 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
64 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 48 */
65 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
66 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 64 */
70 * onenand_readw - [OneNAND Interface] Read OneNAND register
71 * @param addr address to read
73 * Read OneNAND register
75 static unsigned short onenand_readw(void __iomem
*addr
)
81 * onenand_writew - [OneNAND Interface] Write OneNAND register with value
82 * @param value value to write
83 * @param addr address to write
85 * Write OneNAND register with value
87 static void onenand_writew(unsigned short value
, void __iomem
*addr
)
93 * onenand_block_address - [DEFAULT] Get block address
94 * @param this onenand chip data structure
95 * @param block the block
96 * @return translated block address if DDP, otherwise same
98 * Setup Start Address 1 Register (F100h)
100 static int onenand_block_address(struct onenand_chip
*this, int block
)
102 /* Device Flash Core select, NAND Flash Block Address */
103 if (block
& this->density_mask
)
104 return ONENAND_DDP_CHIP1
| (block
^ this->density_mask
);
110 * onenand_bufferram_address - [DEFAULT] Get bufferram address
111 * @param this onenand chip data structure
112 * @param block the block
113 * @return set DBS value if DDP, otherwise 0
115 * Setup Start Address 2 Register (F101h) for DDP
117 static int onenand_bufferram_address(struct onenand_chip
*this, int block
)
119 /* Device BufferRAM Select */
120 if (block
& this->density_mask
)
121 return ONENAND_DDP_CHIP1
;
123 return ONENAND_DDP_CHIP0
;
127 * onenand_page_address - [DEFAULT] Get page address
128 * @param page the page address
129 * @param sector the sector address
130 * @return combined page and sector address
132 * Setup Start Address 8 Register (F107h)
134 static int onenand_page_address(int page
, int sector
)
136 /* Flash Page Address, Flash Sector Address */
139 fpa
= page
& ONENAND_FPA_MASK
;
140 fsa
= sector
& ONENAND_FSA_MASK
;
142 return ((fpa
<< ONENAND_FPA_SHIFT
) | fsa
);
146 * onenand_buffer_address - [DEFAULT] Get buffer address
147 * @param dataram1 DataRAM index
148 * @param sectors the sector address
149 * @param count the number of sectors
150 * @return the start buffer value
152 * Setup Start Buffer Register (F200h)
154 static int onenand_buffer_address(int dataram1
, int sectors
, int count
)
158 /* BufferRAM Sector Address */
159 bsa
= sectors
& ONENAND_BSA_MASK
;
162 bsa
|= ONENAND_BSA_DATARAM1
; /* DataRAM1 */
164 bsa
|= ONENAND_BSA_DATARAM0
; /* DataRAM0 */
166 /* BufferRAM Sector Count */
167 bsc
= count
& ONENAND_BSC_MASK
;
169 return ((bsa
<< ONENAND_BSA_SHIFT
) | bsc
);
173 * onenand_command - [DEFAULT] Send command to OneNAND device
174 * @param mtd MTD device structure
175 * @param cmd the command to be sent
176 * @param addr offset to read from or write to
177 * @param len number of bytes to read or write
179 * Send command to OneNAND device. This function is used for middle/large page
180 * devices (1KB/2KB Bytes per page)
182 static int onenand_command(struct mtd_info
*mtd
, int cmd
, loff_t addr
, size_t len
)
184 struct onenand_chip
*this = mtd
->priv
;
185 int value
, readcmd
= 0, block_cmd
= 0;
188 /* Address translation */
190 case ONENAND_CMD_UNLOCK
:
191 case ONENAND_CMD_LOCK
:
192 case ONENAND_CMD_LOCK_TIGHT
:
193 case ONENAND_CMD_UNLOCK_ALL
:
198 case ONENAND_CMD_ERASE
:
199 case ONENAND_CMD_BUFFERRAM
:
200 case ONENAND_CMD_OTP_ACCESS
:
202 block
= (int) (addr
>> this->erase_shift
);
207 block
= (int) (addr
>> this->erase_shift
);
208 page
= (int) (addr
>> this->page_shift
);
209 page
&= this->page_mask
;
213 /* NOTE: The setting order of the registers is very important! */
214 if (cmd
== ONENAND_CMD_BUFFERRAM
) {
215 /* Select DataRAM for DDP */
216 value
= onenand_bufferram_address(this, block
);
217 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS2
);
219 /* Switch to the next data buffer */
220 ONENAND_SET_NEXT_BUFFERRAM(this);
226 /* Write 'DFS, FBA' of Flash */
227 value
= onenand_block_address(this, block
);
228 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS1
);
231 /* Select DataRAM for DDP */
232 value
= onenand_bufferram_address(this, block
);
233 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS2
);
238 /* Now we use page size operation */
239 int sectors
= 4, count
= 4;
243 case ONENAND_CMD_READ
:
244 case ONENAND_CMD_READOOB
:
245 dataram
= ONENAND_SET_NEXT_BUFFERRAM(this);
250 dataram
= ONENAND_CURRENT_BUFFERRAM(this);
254 /* Write 'FPA, FSA' of Flash */
255 value
= onenand_page_address(page
, sectors
);
256 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS8
);
258 /* Write 'BSA, BSC' of DataRAM */
259 value
= onenand_buffer_address(dataram
, sectors
, count
);
260 this->write_word(value
, this->base
+ ONENAND_REG_START_BUFFER
);
263 /* Select DataRAM for DDP */
264 value
= onenand_bufferram_address(this, block
);
265 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS2
);
269 /* Interrupt clear */
270 this->write_word(ONENAND_INT_CLEAR
, this->base
+ ONENAND_REG_INTERRUPT
);
273 this->write_word(cmd
, this->base
+ ONENAND_REG_COMMAND
);
279 * onenand_wait - [DEFAULT] wait until the command is done
280 * @param mtd MTD device structure
281 * @param state state to select the max. timeout value
283 * Wait for command done. This applies to all OneNAND command
284 * Read can take up to 30us, erase up to 2ms and program up to 350us
285 * according to general OneNAND specs
287 static int onenand_wait(struct mtd_info
*mtd
, int state
)
289 struct onenand_chip
* this = mtd
->priv
;
290 unsigned long timeout
;
291 unsigned int flags
= ONENAND_INT_MASTER
;
292 unsigned int interrupt
= 0;
295 /* The 20 msec is enough */
296 timeout
= jiffies
+ msecs_to_jiffies(20);
297 while (time_before(jiffies
, timeout
)) {
298 interrupt
= this->read_word(this->base
+ ONENAND_REG_INTERRUPT
);
300 if (interrupt
& flags
)
303 if (state
!= FL_READING
)
306 /* To get correct interrupt status in timeout case */
307 interrupt
= this->read_word(this->base
+ ONENAND_REG_INTERRUPT
);
309 ctrl
= this->read_word(this->base
+ ONENAND_REG_CTRL_STATUS
);
311 if (ctrl
& ONENAND_CTRL_ERROR
) {
312 printk(KERN_ERR
"onenand_wait: controller error = 0x%04x\n", ctrl
);
313 if (ctrl
& ONENAND_CTRL_LOCK
)
314 printk(KERN_ERR
"onenand_wait: it's locked error.\n");
318 if (interrupt
& ONENAND_INT_READ
) {
319 int ecc
= this->read_word(this->base
+ ONENAND_REG_ECC_STATUS
);
321 printk(KERN_ERR
"onenand_wait: ECC error = 0x%04x\n", ecc
);
322 if (ecc
& ONENAND_ECC_2BIT_ALL
) {
323 mtd
->ecc_stats
.failed
++;
325 } else if (ecc
& ONENAND_ECC_1BIT_ALL
)
326 mtd
->ecc_stats
.corrected
++;
328 } else if (state
== FL_READING
) {
329 printk(KERN_ERR
"onenand_wait: read timeout! ctrl=0x%04x intr=0x%04x\n", ctrl
, interrupt
);
337 * onenand_interrupt - [DEFAULT] onenand interrupt handler
338 * @param irq onenand interrupt number
339 * @param dev_id interrupt data
343 static irqreturn_t
onenand_interrupt(int irq
, void *data
)
345 struct onenand_chip
*this = (struct onenand_chip
*) data
;
347 /* To handle shared interrupt */
348 if (!this->complete
.done
)
349 complete(&this->complete
);
355 * onenand_interrupt_wait - [DEFAULT] wait until the command is done
356 * @param mtd MTD device structure
357 * @param state state to select the max. timeout value
359 * Wait for command done.
361 static int onenand_interrupt_wait(struct mtd_info
*mtd
, int state
)
363 struct onenand_chip
*this = mtd
->priv
;
365 wait_for_completion(&this->complete
);
367 return onenand_wait(mtd
, state
);
371 * onenand_try_interrupt_wait - [DEFAULT] try interrupt wait
372 * @param mtd MTD device structure
373 * @param state state to select the max. timeout value
375 * Try interrupt based wait (It is used one-time)
377 static int onenand_try_interrupt_wait(struct mtd_info
*mtd
, int state
)
379 struct onenand_chip
*this = mtd
->priv
;
380 unsigned long remain
, timeout
;
382 /* We use interrupt wait first */
383 this->wait
= onenand_interrupt_wait
;
385 timeout
= msecs_to_jiffies(100);
386 remain
= wait_for_completion_timeout(&this->complete
, timeout
);
388 printk(KERN_INFO
"OneNAND: There's no interrupt. "
389 "We use the normal wait\n");
391 /* Release the irq */
392 free_irq(this->irq
, this);
394 this->wait
= onenand_wait
;
397 return onenand_wait(mtd
, state
);
401 * onenand_setup_wait - [OneNAND Interface] setup onenand wait method
402 * @param mtd MTD device structure
404 * There's two method to wait onenand work
405 * 1. polling - read interrupt status register
406 * 2. interrupt - use the kernel interrupt method
408 static void onenand_setup_wait(struct mtd_info
*mtd
)
410 struct onenand_chip
*this = mtd
->priv
;
413 init_completion(&this->complete
);
415 if (this->irq
<= 0) {
416 this->wait
= onenand_wait
;
420 if (request_irq(this->irq
, &onenand_interrupt
,
421 IRQF_SHARED
, "onenand", this)) {
422 /* If we can't get irq, use the normal wait */
423 this->wait
= onenand_wait
;
427 /* Enable interrupt */
428 syscfg
= this->read_word(this->base
+ ONENAND_REG_SYS_CFG1
);
429 syscfg
|= ONENAND_SYS_CFG1_IOBE
;
430 this->write_word(syscfg
, this->base
+ ONENAND_REG_SYS_CFG1
);
432 this->wait
= onenand_try_interrupt_wait
;
436 * onenand_bufferram_offset - [DEFAULT] BufferRAM offset
437 * @param mtd MTD data structure
438 * @param area BufferRAM area
439 * @return offset given area
441 * Return BufferRAM offset given area
443 static inline int onenand_bufferram_offset(struct mtd_info
*mtd
, int area
)
445 struct onenand_chip
*this = mtd
->priv
;
447 if (ONENAND_CURRENT_BUFFERRAM(this)) {
448 if (area
== ONENAND_DATARAM
)
449 return mtd
->writesize
;
450 if (area
== ONENAND_SPARERAM
)
458 * onenand_read_bufferram - [OneNAND Interface] Read the bufferram area
459 * @param mtd MTD data structure
460 * @param area BufferRAM area
461 * @param buffer the databuffer to put/get data
462 * @param offset offset to read from or write to
463 * @param count number of bytes to read/write
465 * Read the BufferRAM area
467 static int onenand_read_bufferram(struct mtd_info
*mtd
, int area
,
468 unsigned char *buffer
, int offset
, size_t count
)
470 struct onenand_chip
*this = mtd
->priv
;
471 void __iomem
*bufferram
;
473 bufferram
= this->base
+ area
;
475 bufferram
+= onenand_bufferram_offset(mtd
, area
);
477 if (ONENAND_CHECK_BYTE_ACCESS(count
)) {
480 /* Align with word(16-bit) size */
483 /* Read word and save byte */
484 word
= this->read_word(bufferram
+ offset
+ count
);
485 buffer
[count
] = (word
& 0xff);
488 memcpy(buffer
, bufferram
+ offset
, count
);
494 * onenand_sync_read_bufferram - [OneNAND Interface] Read the bufferram area with Sync. Burst mode
495 * @param mtd MTD data structure
496 * @param area BufferRAM area
497 * @param buffer the databuffer to put/get data
498 * @param offset offset to read from or write to
499 * @param count number of bytes to read/write
501 * Read the BufferRAM area with Sync. Burst Mode
503 static int onenand_sync_read_bufferram(struct mtd_info
*mtd
, int area
,
504 unsigned char *buffer
, int offset
, size_t count
)
506 struct onenand_chip
*this = mtd
->priv
;
507 void __iomem
*bufferram
;
509 bufferram
= this->base
+ area
;
511 bufferram
+= onenand_bufferram_offset(mtd
, area
);
513 this->mmcontrol(mtd
, ONENAND_SYS_CFG1_SYNC_READ
);
515 if (ONENAND_CHECK_BYTE_ACCESS(count
)) {
518 /* Align with word(16-bit) size */
521 /* Read word and save byte */
522 word
= this->read_word(bufferram
+ offset
+ count
);
523 buffer
[count
] = (word
& 0xff);
526 memcpy(buffer
, bufferram
+ offset
, count
);
528 this->mmcontrol(mtd
, 0);
534 * onenand_write_bufferram - [OneNAND Interface] Write the bufferram area
535 * @param mtd MTD data structure
536 * @param area BufferRAM area
537 * @param buffer the databuffer to put/get data
538 * @param offset offset to read from or write to
539 * @param count number of bytes to read/write
541 * Write the BufferRAM area
543 static int onenand_write_bufferram(struct mtd_info
*mtd
, int area
,
544 const unsigned char *buffer
, int offset
, size_t count
)
546 struct onenand_chip
*this = mtd
->priv
;
547 void __iomem
*bufferram
;
549 bufferram
= this->base
+ area
;
551 bufferram
+= onenand_bufferram_offset(mtd
, area
);
553 if (ONENAND_CHECK_BYTE_ACCESS(count
)) {
557 /* Align with word(16-bit) size */
560 /* Calculate byte access offset */
561 byte_offset
= offset
+ count
;
563 /* Read word and save byte */
564 word
= this->read_word(bufferram
+ byte_offset
);
565 word
= (word
& ~0xff) | buffer
[count
];
566 this->write_word(word
, bufferram
+ byte_offset
);
569 memcpy(bufferram
+ offset
, buffer
, count
);
575 * onenand_check_bufferram - [GENERIC] Check BufferRAM information
576 * @param mtd MTD data structure
577 * @param addr address to check
578 * @return 1 if there are valid data, otherwise 0
580 * Check bufferram if there is data we required
582 static int onenand_check_bufferram(struct mtd_info
*mtd
, loff_t addr
)
584 struct onenand_chip
*this = mtd
->priv
;
585 int blockpage
, found
= 0;
588 blockpage
= (int) (addr
>> this->page_shift
);
590 /* Is there valid data? */
591 i
= ONENAND_CURRENT_BUFFERRAM(this);
592 if (this->bufferram
[i
].blockpage
== blockpage
)
595 /* Check another BufferRAM */
596 i
= ONENAND_NEXT_BUFFERRAM(this);
597 if (this->bufferram
[i
].blockpage
== blockpage
) {
598 ONENAND_SET_NEXT_BUFFERRAM(this);
603 if (found
&& ONENAND_IS_DDP(this)) {
604 /* Select DataRAM for DDP */
605 int block
= (int) (addr
>> this->erase_shift
);
606 int value
= onenand_bufferram_address(this, block
);
607 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS2
);
614 * onenand_update_bufferram - [GENERIC] Update BufferRAM information
615 * @param mtd MTD data structure
616 * @param addr address to update
617 * @param valid valid flag
619 * Update BufferRAM information
621 static void onenand_update_bufferram(struct mtd_info
*mtd
, loff_t addr
,
624 struct onenand_chip
*this = mtd
->priv
;
628 blockpage
= (int) (addr
>> this->page_shift
);
630 /* Invalidate another BufferRAM */
631 i
= ONENAND_NEXT_BUFFERRAM(this);
632 if (this->bufferram
[i
].blockpage
== blockpage
)
633 this->bufferram
[i
].blockpage
= -1;
635 /* Update BufferRAM */
636 i
= ONENAND_CURRENT_BUFFERRAM(this);
638 this->bufferram
[i
].blockpage
= blockpage
;
640 this->bufferram
[i
].blockpage
= -1;
644 * onenand_invalidate_bufferram - [GENERIC] Invalidate BufferRAM information
645 * @param mtd MTD data structure
646 * @param addr start address to invalidate
647 * @param len length to invalidate
649 * Invalidate BufferRAM information
651 static void onenand_invalidate_bufferram(struct mtd_info
*mtd
, loff_t addr
,
654 struct onenand_chip
*this = mtd
->priv
;
656 loff_t end_addr
= addr
+ len
;
658 /* Invalidate BufferRAM */
659 for (i
= 0; i
< MAX_BUFFERRAM
; i
++) {
660 loff_t buf_addr
= this->bufferram
[i
].blockpage
<< this->page_shift
;
661 if (buf_addr
>= addr
&& buf_addr
< end_addr
)
662 this->bufferram
[i
].blockpage
= -1;
667 * onenand_get_device - [GENERIC] Get chip for selected access
668 * @param mtd MTD device structure
669 * @param new_state the state which is requested
671 * Get the device and lock it for exclusive access
673 static int onenand_get_device(struct mtd_info
*mtd
, int new_state
)
675 struct onenand_chip
*this = mtd
->priv
;
676 DECLARE_WAITQUEUE(wait
, current
);
679 * Grab the lock and see if the device is available
682 spin_lock(&this->chip_lock
);
683 if (this->state
== FL_READY
) {
684 this->state
= new_state
;
685 spin_unlock(&this->chip_lock
);
688 if (new_state
== FL_PM_SUSPENDED
) {
689 spin_unlock(&this->chip_lock
);
690 return (this->state
== FL_PM_SUSPENDED
) ? 0 : -EAGAIN
;
692 set_current_state(TASK_UNINTERRUPTIBLE
);
693 add_wait_queue(&this->wq
, &wait
);
694 spin_unlock(&this->chip_lock
);
696 remove_wait_queue(&this->wq
, &wait
);
703 * onenand_release_device - [GENERIC] release chip
704 * @param mtd MTD device structure
706 * Deselect, release chip lock and wake up anyone waiting on the device
708 static void onenand_release_device(struct mtd_info
*mtd
)
710 struct onenand_chip
*this = mtd
->priv
;
712 /* Release the chip */
713 spin_lock(&this->chip_lock
);
714 this->state
= FL_READY
;
716 spin_unlock(&this->chip_lock
);
720 * onenand_read - [MTD Interface] Read data from flash
721 * @param mtd MTD device structure
722 * @param from offset to read from
723 * @param len number of bytes to read
724 * @param retlen pointer to variable to store the number of read bytes
725 * @param buf the databuffer to put data
729 static int onenand_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
730 size_t *retlen
, u_char
*buf
)
732 struct onenand_chip
*this = mtd
->priv
;
733 struct mtd_ecc_stats stats
;
734 int read
= 0, column
;
736 int ret
= 0, boundary
= 0;
738 DEBUG(MTD_DEBUG_LEVEL3
, "onenand_read: from = 0x%08x, len = %i\n", (unsigned int) from
, (int) len
);
740 /* Do not allow reads past end of device */
741 if ((from
+ len
) > mtd
->size
) {
742 printk(KERN_ERR
"onenand_read: Attempt read beyond end of device\n");
747 /* Grab the lock and see if the device is available */
748 onenand_get_device(mtd
, FL_READING
);
750 stats
= mtd
->ecc_stats
;
752 /* Read-while-load method */
754 /* Do first load to bufferRAM */
756 if (!onenand_check_bufferram(mtd
, from
)) {
757 this->command(mtd
, ONENAND_CMD_READ
, from
, mtd
->writesize
);
758 ret
= this->wait(mtd
, FL_READING
);
759 onenand_update_bufferram(mtd
, from
, !ret
);
763 thislen
= min_t(int, mtd
->writesize
, len
- read
);
764 column
= from
& (mtd
->writesize
- 1);
765 if (column
+ thislen
> mtd
->writesize
)
766 thislen
= mtd
->writesize
- column
;
769 /* If there is more to load then start next load */
771 if (read
+ thislen
< len
) {
772 this->command(mtd
, ONENAND_CMD_READ
, from
, mtd
->writesize
);
774 * Chip boundary handling in DDP
775 * Now we issued chip 1 read and pointed chip 1
776 * bufferam so we have to point chip 0 bufferam.
778 if (ONENAND_IS_DDP(this) &&
779 unlikely(from
== (this->chipsize
>> 1))) {
780 this->write_word(ONENAND_DDP_CHIP0
, this->base
+ ONENAND_REG_START_ADDRESS2
);
784 ONENAND_SET_PREV_BUFFERRAM(this);
786 /* While load is going, read from last bufferRAM */
787 this->read_bufferram(mtd
, ONENAND_DATARAM
, buf
, column
, thislen
);
788 /* See if we are done */
792 /* Set up for next read from bufferRAM */
793 if (unlikely(boundary
))
794 this->write_word(ONENAND_DDP_CHIP1
, this->base
+ ONENAND_REG_START_ADDRESS2
);
795 ONENAND_SET_NEXT_BUFFERRAM(this);
797 thislen
= min_t(int, mtd
->writesize
, len
- read
);
800 /* Now wait for load */
801 ret
= this->wait(mtd
, FL_READING
);
802 onenand_update_bufferram(mtd
, from
, !ret
);
805 /* Deselect and wake up anyone waiting on the device */
806 onenand_release_device(mtd
);
809 * Return success, if no ECC failures, else -EBADMSG
810 * fs driver will take care of that, because
811 * retlen == desired len and result == -EBADMSG
815 if (mtd
->ecc_stats
.failed
- stats
.failed
)
821 return mtd
->ecc_stats
.corrected
- stats
.corrected
? -EUCLEAN
: 0;
825 * onenand_transfer_auto_oob - [Internal] oob auto-placement transfer
826 * @param mtd MTD device structure
827 * @param buf destination address
828 * @param column oob offset to read from
829 * @param thislen oob length to read
831 static int onenand_transfer_auto_oob(struct mtd_info
*mtd
, uint8_t *buf
, int column
,
834 struct onenand_chip
*this = mtd
->priv
;
835 struct nand_oobfree
*free
;
836 int readcol
= column
;
837 int readend
= column
+ thislen
;
840 uint8_t *oob_buf
= this->oob_buf
;
842 free
= this->ecclayout
->oobfree
;
843 for (i
= 0; i
< MTD_MAX_OOBFREE_ENTRIES
&& free
->length
; i
++, free
++) {
844 if (readcol
>= lastgap
)
845 readcol
+= free
->offset
- lastgap
;
846 if (readend
>= lastgap
)
847 readend
+= free
->offset
- lastgap
;
848 lastgap
= free
->offset
+ free
->length
;
850 this->read_bufferram(mtd
, ONENAND_SPARERAM
, oob_buf
, 0, mtd
->oobsize
);
851 free
= this->ecclayout
->oobfree
;
852 for (i
= 0; i
< MTD_MAX_OOBFREE_ENTRIES
&& free
->length
; i
++, free
++) {
853 int free_end
= free
->offset
+ free
->length
;
854 if (free
->offset
< readend
&& free_end
> readcol
) {
855 int st
= max_t(int,free
->offset
,readcol
);
856 int ed
= min_t(int,free_end
,readend
);
858 memcpy(buf
, oob_buf
+ st
, n
);
860 } else if (column
== 0)
867 * onenand_do_read_oob - [MTD Interface] OneNAND read out-of-band
868 * @param mtd MTD device structure
869 * @param from offset to read from
870 * @param len number of bytes to read
871 * @param retlen pointer to variable to store the number of read bytes
872 * @param buf the databuffer to put data
873 * @param mode operation mode
875 * OneNAND read out-of-band data from the spare area
877 static int onenand_do_read_oob(struct mtd_info
*mtd
, loff_t from
, size_t len
,
878 size_t *retlen
, u_char
*buf
, mtd_oob_mode_t mode
)
880 struct onenand_chip
*this = mtd
->priv
;
881 int read
= 0, thislen
, column
, oobsize
;
884 DEBUG(MTD_DEBUG_LEVEL3
, "onenand_read_oob: from = 0x%08x, len = %i\n", (unsigned int) from
, (int) len
);
886 /* Initialize return length value */
889 if (mode
== MTD_OOB_AUTO
)
890 oobsize
= this->ecclayout
->oobavail
;
892 oobsize
= mtd
->oobsize
;
894 column
= from
& (mtd
->oobsize
- 1);
896 if (unlikely(column
>= oobsize
)) {
897 printk(KERN_ERR
"onenand_read_oob: Attempted to start read outside oob\n");
901 /* Do not allow reads past end of device */
902 if (unlikely(from
>= mtd
->size
||
903 column
+ len
> ((mtd
->size
>> this->page_shift
) -
904 (from
>> this->page_shift
)) * oobsize
)) {
905 printk(KERN_ERR
"onenand_read_oob: Attempted to read beyond end of device\n");
909 /* Grab the lock and see if the device is available */
910 onenand_get_device(mtd
, FL_READING
);
915 thislen
= oobsize
- column
;
916 thislen
= min_t(int, thislen
, len
);
918 this->command(mtd
, ONENAND_CMD_READOOB
, from
, mtd
->oobsize
);
920 onenand_update_bufferram(mtd
, from
, 0);
922 ret
= this->wait(mtd
, FL_READING
);
923 /* First copy data and check return value for ECC handling */
925 if (mode
== MTD_OOB_AUTO
)
926 onenand_transfer_auto_oob(mtd
, buf
, column
, thislen
);
928 this->read_bufferram(mtd
, ONENAND_SPARERAM
, buf
, column
, thislen
);
931 printk(KERN_ERR
"onenand_read_oob: read failed = 0x%x\n", ret
);
945 from
+= mtd
->writesize
;
950 /* Deselect and wake up anyone waiting on the device */
951 onenand_release_device(mtd
);
958 * onenand_read_oob - [MTD Interface] NAND write data and/or out-of-band
959 * @param mtd: MTD device structure
960 * @param from: offset to read from
961 * @param ops: oob operation description structure
963 static int onenand_read_oob(struct mtd_info
*mtd
, loff_t from
,
964 struct mtd_oob_ops
*ops
)
971 /* Not implemented yet */
975 return onenand_do_read_oob(mtd
, from
+ ops
->ooboffs
, ops
->ooblen
,
976 &ops
->oobretlen
, ops
->oobbuf
, ops
->mode
);
980 * onenand_bbt_wait - [DEFAULT] wait until the command is done
981 * @param mtd MTD device structure
982 * @param state state to select the max. timeout value
984 * Wait for command done.
986 static int onenand_bbt_wait(struct mtd_info
*mtd
, int state
)
988 struct onenand_chip
*this = mtd
->priv
;
989 unsigned long timeout
;
990 unsigned int interrupt
;
993 /* The 20 msec is enough */
994 timeout
= jiffies
+ msecs_to_jiffies(20);
995 while (time_before(jiffies
, timeout
)) {
996 interrupt
= this->read_word(this->base
+ ONENAND_REG_INTERRUPT
);
997 if (interrupt
& ONENAND_INT_MASTER
)
1000 /* To get correct interrupt status in timeout case */
1001 interrupt
= this->read_word(this->base
+ ONENAND_REG_INTERRUPT
);
1002 ctrl
= this->read_word(this->base
+ ONENAND_REG_CTRL_STATUS
);
1004 if (ctrl
& ONENAND_CTRL_ERROR
) {
1005 printk(KERN_DEBUG
"onenand_bbt_wait: controller error = 0x%04x\n", ctrl
);
1006 /* Initial bad block case */
1007 if (ctrl
& ONENAND_CTRL_LOAD
)
1008 return ONENAND_BBT_READ_ERROR
;
1009 return ONENAND_BBT_READ_FATAL_ERROR
;
1012 if (interrupt
& ONENAND_INT_READ
) {
1013 int ecc
= this->read_word(this->base
+ ONENAND_REG_ECC_STATUS
);
1014 if (ecc
& ONENAND_ECC_2BIT_ALL
)
1015 return ONENAND_BBT_READ_ERROR
;
1017 printk(KERN_ERR
"onenand_bbt_wait: read timeout!"
1018 "ctrl=0x%04x intr=0x%04x\n", ctrl
, interrupt
);
1019 return ONENAND_BBT_READ_FATAL_ERROR
;
1026 * onenand_bbt_read_oob - [MTD Interface] OneNAND read out-of-band for bbt scan
1027 * @param mtd MTD device structure
1028 * @param from offset to read from
1029 * @param ops oob operation description structure
1031 * OneNAND read out-of-band data from the spare area for bbt scan
1033 int onenand_bbt_read_oob(struct mtd_info
*mtd
, loff_t from
,
1034 struct mtd_oob_ops
*ops
)
1036 struct onenand_chip
*this = mtd
->priv
;
1037 int read
= 0, thislen
, column
;
1039 size_t len
= ops
->ooblen
;
1040 u_char
*buf
= ops
->oobbuf
;
1042 DEBUG(MTD_DEBUG_LEVEL3
, "onenand_bbt_read_oob: from = 0x%08x, len = %zi\n", (unsigned int) from
, len
);
1044 /* Initialize return value */
1047 /* Do not allow reads past end of device */
1048 if (unlikely((from
+ len
) > mtd
->size
)) {
1049 printk(KERN_ERR
"onenand_bbt_read_oob: Attempt read beyond end of device\n");
1050 return ONENAND_BBT_READ_FATAL_ERROR
;
1053 /* Grab the lock and see if the device is available */
1054 onenand_get_device(mtd
, FL_READING
);
1056 column
= from
& (mtd
->oobsize
- 1);
1058 while (read
< len
) {
1061 thislen
= mtd
->oobsize
- column
;
1062 thislen
= min_t(int, thislen
, len
);
1064 this->command(mtd
, ONENAND_CMD_READOOB
, from
, mtd
->oobsize
);
1066 onenand_update_bufferram(mtd
, from
, 0);
1068 ret
= onenand_bbt_wait(mtd
, FL_READING
);
1072 this->read_bufferram(mtd
, ONENAND_SPARERAM
, buf
, column
, thislen
);
1081 /* Update Page size */
1082 from
+= mtd
->writesize
;
1087 /* Deselect and wake up anyone waiting on the device */
1088 onenand_release_device(mtd
);
1090 ops
->oobretlen
= read
;
1094 #ifdef CONFIG_MTD_ONENAND_VERIFY_WRITE
1096 * onenand_verify_oob - [GENERIC] verify the oob contents after a write
1097 * @param mtd MTD device structure
1098 * @param buf the databuffer to verify
1099 * @param to offset to read from
1102 static int onenand_verify_oob(struct mtd_info
*mtd
, const u_char
*buf
, loff_t to
)
1104 struct onenand_chip
*this = mtd
->priv
;
1108 this->command(mtd
, ONENAND_CMD_READOOB
, to
, mtd
->oobsize
);
1109 onenand_update_bufferram(mtd
, to
, 0);
1110 status
= this->wait(mtd
, FL_READING
);
1114 this->read_bufferram(mtd
, ONENAND_SPARERAM
, oobbuf
, 0, mtd
->oobsize
);
1115 for (i
= 0; i
< mtd
->oobsize
; i
++)
1116 if (buf
[i
] != 0xFF && buf
[i
] != oobbuf
[i
])
1123 * onenand_verify - [GENERIC] verify the chip contents after a write
1124 * @param mtd MTD device structure
1125 * @param buf the databuffer to verify
1126 * @param addr offset to read from
1127 * @param len number of bytes to read and compare
1130 static int onenand_verify(struct mtd_info
*mtd
, const u_char
*buf
, loff_t addr
, size_t len
)
1132 struct onenand_chip
*this = mtd
->priv
;
1133 void __iomem
*dataram
;
1135 int thislen
, column
;
1138 thislen
= min_t(int, mtd
->writesize
, len
);
1139 column
= addr
& (mtd
->writesize
- 1);
1140 if (column
+ thislen
> mtd
->writesize
)
1141 thislen
= mtd
->writesize
- column
;
1143 this->command(mtd
, ONENAND_CMD_READ
, addr
, mtd
->writesize
);
1145 onenand_update_bufferram(mtd
, addr
, 0);
1147 ret
= this->wait(mtd
, FL_READING
);
1151 onenand_update_bufferram(mtd
, addr
, 1);
1153 dataram
= this->base
+ ONENAND_DATARAM
;
1154 dataram
+= onenand_bufferram_offset(mtd
, ONENAND_DATARAM
);
1156 if (memcmp(buf
, dataram
+ column
, thislen
))
1167 #define onenand_verify(...) (0)
1168 #define onenand_verify_oob(...) (0)
1171 #define NOTALIGNED(x) ((x & (this->subpagesize - 1)) != 0)
1174 * onenand_write - [MTD Interface] write buffer to FLASH
1175 * @param mtd MTD device structure
1176 * @param to offset to write to
1177 * @param len number of bytes to write
1178 * @param retlen pointer to variable to store the number of written bytes
1179 * @param buf the data to write
1183 static int onenand_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
1184 size_t *retlen
, const u_char
*buf
)
1186 struct onenand_chip
*this = mtd
->priv
;
1189 int column
, subpage
;
1191 DEBUG(MTD_DEBUG_LEVEL3
, "onenand_write: to = 0x%08x, len = %i\n", (unsigned int) to
, (int) len
);
1193 /* Initialize retlen, in case of early exit */
1196 /* Do not allow writes past end of device */
1197 if (unlikely((to
+ len
) > mtd
->size
)) {
1198 printk(KERN_ERR
"onenand_write: Attempt write to past end of device\n");
1202 /* Reject writes, which are not page aligned */
1203 if (unlikely(NOTALIGNED(to
)) || unlikely(NOTALIGNED(len
))) {
1204 printk(KERN_ERR
"onenand_write: Attempt to write not page aligned data\n");
1208 column
= to
& (mtd
->writesize
- 1);
1210 /* Grab the lock and see if the device is available */
1211 onenand_get_device(mtd
, FL_WRITING
);
1213 /* Loop until all data write */
1214 while (written
< len
) {
1215 int thislen
= min_t(int, mtd
->writesize
- column
, len
- written
);
1216 u_char
*wbuf
= (u_char
*) buf
;
1220 this->command(mtd
, ONENAND_CMD_BUFFERRAM
, to
, thislen
);
1222 /* Partial page write */
1223 subpage
= thislen
< mtd
->writesize
;
1225 memset(this->page_buf
, 0xff, mtd
->writesize
);
1226 memcpy(this->page_buf
+ column
, buf
, thislen
);
1227 wbuf
= this->page_buf
;
1230 this->write_bufferram(mtd
, ONENAND_DATARAM
, wbuf
, 0, mtd
->writesize
);
1231 this->write_bufferram(mtd
, ONENAND_SPARERAM
, ffchars
, 0, mtd
->oobsize
);
1233 this->command(mtd
, ONENAND_CMD_PROG
, to
, mtd
->writesize
);
1235 ret
= this->wait(mtd
, FL_WRITING
);
1237 /* In partial page write we don't update bufferram */
1238 onenand_update_bufferram(mtd
, to
, !ret
&& !subpage
);
1241 printk(KERN_ERR
"onenand_write: write filaed %d\n", ret
);
1245 /* Only check verify write turn on */
1246 ret
= onenand_verify(mtd
, (u_char
*) wbuf
, to
, thislen
);
1248 printk(KERN_ERR
"onenand_write: verify failed %d\n", ret
);
1262 /* Deselect and wake up anyone waiting on the device */
1263 onenand_release_device(mtd
);
1271 * onenand_fill_auto_oob - [Internal] oob auto-placement transfer
1272 * @param mtd MTD device structure
1273 * @param oob_buf oob buffer
1274 * @param buf source address
1275 * @param column oob offset to write to
1276 * @param thislen oob length to write
1278 static int onenand_fill_auto_oob(struct mtd_info
*mtd
, u_char
*oob_buf
,
1279 const u_char
*buf
, int column
, int thislen
)
1281 struct onenand_chip
*this = mtd
->priv
;
1282 struct nand_oobfree
*free
;
1283 int writecol
= column
;
1284 int writeend
= column
+ thislen
;
1288 free
= this->ecclayout
->oobfree
;
1289 for (i
= 0; i
< MTD_MAX_OOBFREE_ENTRIES
&& free
->length
; i
++, free
++) {
1290 if (writecol
>= lastgap
)
1291 writecol
+= free
->offset
- lastgap
;
1292 if (writeend
>= lastgap
)
1293 writeend
+= free
->offset
- lastgap
;
1294 lastgap
= free
->offset
+ free
->length
;
1296 free
= this->ecclayout
->oobfree
;
1297 for (i
= 0; i
< MTD_MAX_OOBFREE_ENTRIES
&& free
->length
; i
++, free
++) {
1298 int free_end
= free
->offset
+ free
->length
;
1299 if (free
->offset
< writeend
&& free_end
> writecol
) {
1300 int st
= max_t(int,free
->offset
,writecol
);
1301 int ed
= min_t(int,free_end
,writeend
);
1303 memcpy(oob_buf
+ st
, buf
, n
);
1305 } else if (column
== 0)
1312 * onenand_do_write_oob - [Internal] OneNAND write out-of-band
1313 * @param mtd MTD device structure
1314 * @param to offset to write to
1315 * @param len number of bytes to write
1316 * @param retlen pointer to variable to store the number of written bytes
1317 * @param buf the data to write
1318 * @param mode operation mode
1320 * OneNAND write out-of-band
1322 static int onenand_do_write_oob(struct mtd_info
*mtd
, loff_t to
, size_t len
,
1323 size_t *retlen
, const u_char
*buf
, mtd_oob_mode_t mode
)
1325 struct onenand_chip
*this = mtd
->priv
;
1326 int column
, ret
= 0, oobsize
;
1330 DEBUG(MTD_DEBUG_LEVEL3
, "onenand_write_oob: to = 0x%08x, len = %i\n", (unsigned int) to
, (int) len
);
1332 /* Initialize retlen, in case of early exit */
1335 if (mode
== MTD_OOB_AUTO
)
1336 oobsize
= this->ecclayout
->oobavail
;
1338 oobsize
= mtd
->oobsize
;
1340 column
= to
& (mtd
->oobsize
- 1);
1342 if (unlikely(column
>= oobsize
)) {
1343 printk(KERN_ERR
"onenand_write_oob: Attempted to start write outside oob\n");
1347 /* For compatibility with NAND: Do not allow write past end of page */
1348 if (unlikely(column
+ len
> oobsize
)) {
1349 printk(KERN_ERR
"onenand_write_oob: "
1350 "Attempt to write past end of page\n");
1354 /* Do not allow reads past end of device */
1355 if (unlikely(to
>= mtd
->size
||
1356 column
+ len
> ((mtd
->size
>> this->page_shift
) -
1357 (to
>> this->page_shift
)) * oobsize
)) {
1358 printk(KERN_ERR
"onenand_write_oob: Attempted to write past end of device\n");
1362 /* Grab the lock and see if the device is available */
1363 onenand_get_device(mtd
, FL_WRITING
);
1365 oobbuf
= this->oob_buf
;
1367 /* Loop until all data write */
1368 while (written
< len
) {
1369 int thislen
= min_t(int, oobsize
, len
- written
);
1373 this->command(mtd
, ONENAND_CMD_BUFFERRAM
, to
, mtd
->oobsize
);
1375 /* We send data to spare ram with oobsize
1376 * to prevent byte access */
1377 memset(oobbuf
, 0xff, mtd
->oobsize
);
1378 if (mode
== MTD_OOB_AUTO
)
1379 onenand_fill_auto_oob(mtd
, oobbuf
, buf
, column
, thislen
);
1381 memcpy(oobbuf
+ column
, buf
, thislen
);
1382 this->write_bufferram(mtd
, ONENAND_SPARERAM
, oobbuf
, 0, mtd
->oobsize
);
1384 this->command(mtd
, ONENAND_CMD_PROGOOB
, to
, mtd
->oobsize
);
1386 onenand_update_bufferram(mtd
, to
, 0);
1388 ret
= this->wait(mtd
, FL_WRITING
);
1390 printk(KERN_ERR
"onenand_write_oob: write failed %d\n", ret
);
1394 ret
= onenand_verify_oob(mtd
, oobbuf
, to
);
1396 printk(KERN_ERR
"onenand_write_oob: verify failed %d\n", ret
);
1404 to
+= mtd
->writesize
;
1409 /* Deselect and wake up anyone waiting on the device */
1410 onenand_release_device(mtd
);
1418 * onenand_write_oob - [MTD Interface] NAND write data and/or out-of-band
1419 * @param mtd: MTD device structure
1420 * @param to: offset to write
1421 * @param ops: oob operation description structure
1423 static int onenand_write_oob(struct mtd_info
*mtd
, loff_t to
,
1424 struct mtd_oob_ops
*ops
)
1426 switch (ops
->mode
) {
1431 /* Not implemented yet */
1435 return onenand_do_write_oob(mtd
, to
+ ops
->ooboffs
, ops
->ooblen
,
1436 &ops
->oobretlen
, ops
->oobbuf
, ops
->mode
);
1440 * onenand_block_checkbad - [GENERIC] Check if a block is marked bad
1441 * @param mtd MTD device structure
1442 * @param ofs offset from device start
1443 * @param getchip 0, if the chip is already selected
1444 * @param allowbbt 1, if its allowed to access the bbt area
1446 * Check, if the block is bad. Either by reading the bad block table or
1447 * calling of the scan function.
1449 static int onenand_block_checkbad(struct mtd_info
*mtd
, loff_t ofs
, int getchip
, int allowbbt
)
1451 struct onenand_chip
*this = mtd
->priv
;
1452 struct bbm_info
*bbm
= this->bbm
;
1454 /* Return info from the table */
1455 return bbm
->isbad_bbt(mtd
, ofs
, allowbbt
);
1459 * onenand_erase - [MTD Interface] erase block(s)
1460 * @param mtd MTD device structure
1461 * @param instr erase instruction
1463 * Erase one ore more blocks
1465 static int onenand_erase(struct mtd_info
*mtd
, struct erase_info
*instr
)
1467 struct onenand_chip
*this = mtd
->priv
;
1468 unsigned int block_size
;
1473 DEBUG(MTD_DEBUG_LEVEL3
, "onenand_erase: start = 0x%08x, len = %i\n", (unsigned int) instr
->addr
, (unsigned int) instr
->len
);
1475 block_size
= (1 << this->erase_shift
);
1477 /* Start address must align on block boundary */
1478 if (unlikely(instr
->addr
& (block_size
- 1))) {
1479 printk(KERN_ERR
"onenand_erase: Unaligned address\n");
1483 /* Length must align on block boundary */
1484 if (unlikely(instr
->len
& (block_size
- 1))) {
1485 printk(KERN_ERR
"onenand_erase: Length not block aligned\n");
1489 /* Do not allow erase past end of device */
1490 if (unlikely((instr
->len
+ instr
->addr
) > mtd
->size
)) {
1491 printk(KERN_ERR
"onenand_erase: Erase past end of device\n");
1495 instr
->fail_addr
= 0xffffffff;
1497 /* Grab the lock and see if the device is available */
1498 onenand_get_device(mtd
, FL_ERASING
);
1500 /* Loop throught the pages */
1504 instr
->state
= MTD_ERASING
;
1509 /* Check if we have a bad block, we do not erase bad blocks */
1510 if (onenand_block_checkbad(mtd
, addr
, 0, 0)) {
1511 printk (KERN_WARNING
"onenand_erase: attempt to erase a bad block at addr 0x%08x\n", (unsigned int) addr
);
1512 instr
->state
= MTD_ERASE_FAILED
;
1516 this->command(mtd
, ONENAND_CMD_ERASE
, addr
, block_size
);
1518 onenand_invalidate_bufferram(mtd
, addr
, block_size
);
1520 ret
= this->wait(mtd
, FL_ERASING
);
1521 /* Check, if it is write protected */
1523 printk(KERN_ERR
"onenand_erase: Failed erase, block %d\n", (unsigned) (addr
>> this->erase_shift
));
1524 instr
->state
= MTD_ERASE_FAILED
;
1525 instr
->fail_addr
= addr
;
1533 instr
->state
= MTD_ERASE_DONE
;
1537 ret
= instr
->state
== MTD_ERASE_DONE
? 0 : -EIO
;
1538 /* Do call back function */
1540 mtd_erase_callback(instr
);
1542 /* Deselect and wake up anyone waiting on the device */
1543 onenand_release_device(mtd
);
1549 * onenand_sync - [MTD Interface] sync
1550 * @param mtd MTD device structure
1552 * Sync is actually a wait for chip ready function
1554 static void onenand_sync(struct mtd_info
*mtd
)
1556 DEBUG(MTD_DEBUG_LEVEL3
, "onenand_sync: called\n");
1558 /* Grab the lock and see if the device is available */
1559 onenand_get_device(mtd
, FL_SYNCING
);
1561 /* Release it and go back */
1562 onenand_release_device(mtd
);
1566 * onenand_block_isbad - [MTD Interface] Check whether the block at the given offset is bad
1567 * @param mtd MTD device structure
1568 * @param ofs offset relative to mtd start
1570 * Check whether the block is bad
1572 static int onenand_block_isbad(struct mtd_info
*mtd
, loff_t ofs
)
1574 /* Check for invalid offset */
1575 if (ofs
> mtd
->size
)
1578 return onenand_block_checkbad(mtd
, ofs
, 1, 0);
1582 * onenand_default_block_markbad - [DEFAULT] mark a block bad
1583 * @param mtd MTD device structure
1584 * @param ofs offset from device start
1586 * This is the default implementation, which can be overridden by
1587 * a hardware specific driver.
1589 static int onenand_default_block_markbad(struct mtd_info
*mtd
, loff_t ofs
)
1591 struct onenand_chip
*this = mtd
->priv
;
1592 struct bbm_info
*bbm
= this->bbm
;
1593 u_char buf
[2] = {0, 0};
1597 /* Get block number */
1598 block
= ((int) ofs
) >> bbm
->bbt_erase_shift
;
1600 bbm
->bbt
[block
>> 2] |= 0x01 << ((block
& 0x03) << 1);
1602 /* We write two bytes, so we dont have to mess with 16 bit access */
1603 ofs
+= mtd
->oobsize
+ (bbm
->badblockpos
& ~0x01);
1604 return onenand_do_write_oob(mtd
, ofs
, 2, &retlen
, buf
, MTD_OOB_PLACE
);
1608 * onenand_block_markbad - [MTD Interface] Mark the block at the given offset as bad
1609 * @param mtd MTD device structure
1610 * @param ofs offset relative to mtd start
1612 * Mark the block as bad
1614 static int onenand_block_markbad(struct mtd_info
*mtd
, loff_t ofs
)
1616 struct onenand_chip
*this = mtd
->priv
;
1619 ret
= onenand_block_isbad(mtd
, ofs
);
1621 /* If it was bad already, return success and do nothing */
1627 return this->block_markbad(mtd
, ofs
);
1631 * onenand_do_lock_cmd - [OneNAND Interface] Lock or unlock block(s)
1632 * @param mtd MTD device structure
1633 * @param ofs offset relative to mtd start
1634 * @param len number of bytes to lock or unlock
1635 * @param cmd lock or unlock command
1637 * Lock or unlock one or more blocks
1639 static int onenand_do_lock_cmd(struct mtd_info
*mtd
, loff_t ofs
, size_t len
, int cmd
)
1641 struct onenand_chip
*this = mtd
->priv
;
1642 int start
, end
, block
, value
, status
;
1645 start
= ofs
>> this->erase_shift
;
1646 end
= len
>> this->erase_shift
;
1648 if (cmd
== ONENAND_CMD_LOCK
)
1649 wp_status_mask
= ONENAND_WP_LS
;
1651 wp_status_mask
= ONENAND_WP_US
;
1653 /* Continuous lock scheme */
1654 if (this->options
& ONENAND_HAS_CONT_LOCK
) {
1655 /* Set start block address */
1656 this->write_word(start
, this->base
+ ONENAND_REG_START_BLOCK_ADDRESS
);
1657 /* Set end block address */
1658 this->write_word(start
+ end
- 1, this->base
+ ONENAND_REG_END_BLOCK_ADDRESS
);
1659 /* Write lock command */
1660 this->command(mtd
, cmd
, 0, 0);
1662 /* There's no return value */
1663 this->wait(mtd
, FL_LOCKING
);
1666 while (this->read_word(this->base
+ ONENAND_REG_CTRL_STATUS
)
1667 & ONENAND_CTRL_ONGO
)
1670 /* Check lock status */
1671 status
= this->read_word(this->base
+ ONENAND_REG_WP_STATUS
);
1672 if (!(status
& wp_status_mask
))
1673 printk(KERN_ERR
"wp status = 0x%x\n", status
);
1678 /* Block lock scheme */
1679 for (block
= start
; block
< start
+ end
; block
++) {
1680 /* Set block address */
1681 value
= onenand_block_address(this, block
);
1682 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS1
);
1683 /* Select DataRAM for DDP */
1684 value
= onenand_bufferram_address(this, block
);
1685 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS2
);
1686 /* Set start block address */
1687 this->write_word(block
, this->base
+ ONENAND_REG_START_BLOCK_ADDRESS
);
1688 /* Write lock command */
1689 this->command(mtd
, cmd
, 0, 0);
1691 /* There's no return value */
1692 this->wait(mtd
, FL_LOCKING
);
1695 while (this->read_word(this->base
+ ONENAND_REG_CTRL_STATUS
)
1696 & ONENAND_CTRL_ONGO
)
1699 /* Check lock status */
1700 status
= this->read_word(this->base
+ ONENAND_REG_WP_STATUS
);
1701 if (!(status
& wp_status_mask
))
1702 printk(KERN_ERR
"block = %d, wp status = 0x%x\n", block
, status
);
1709 * onenand_lock - [MTD Interface] Lock block(s)
1710 * @param mtd MTD device structure
1711 * @param ofs offset relative to mtd start
1712 * @param len number of bytes to unlock
1714 * Lock one or more blocks
1716 static int onenand_lock(struct mtd_info
*mtd
, loff_t ofs
, size_t len
)
1718 return onenand_do_lock_cmd(mtd
, ofs
, len
, ONENAND_CMD_LOCK
);
1722 * onenand_unlock - [MTD Interface] Unlock block(s)
1723 * @param mtd MTD device structure
1724 * @param ofs offset relative to mtd start
1725 * @param len number of bytes to unlock
1727 * Unlock one or more blocks
1729 static int onenand_unlock(struct mtd_info
*mtd
, loff_t ofs
, size_t len
)
1731 return onenand_do_lock_cmd(mtd
, ofs
, len
, ONENAND_CMD_UNLOCK
);
1735 * onenand_check_lock_status - [OneNAND Interface] Check lock status
1736 * @param this onenand chip data structure
1740 static void onenand_check_lock_status(struct onenand_chip
*this)
1742 unsigned int value
, block
, status
;
1745 end
= this->chipsize
>> this->erase_shift
;
1746 for (block
= 0; block
< end
; block
++) {
1747 /* Set block address */
1748 value
= onenand_block_address(this, block
);
1749 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS1
);
1750 /* Select DataRAM for DDP */
1751 value
= onenand_bufferram_address(this, block
);
1752 this->write_word(value
, this->base
+ ONENAND_REG_START_ADDRESS2
);
1753 /* Set start block address */
1754 this->write_word(block
, this->base
+ ONENAND_REG_START_BLOCK_ADDRESS
);
1756 /* Check lock status */
1757 status
= this->read_word(this->base
+ ONENAND_REG_WP_STATUS
);
1758 if (!(status
& ONENAND_WP_US
))
1759 printk(KERN_ERR
"block = %d, wp status = 0x%x\n", block
, status
);
1764 * onenand_unlock_all - [OneNAND Interface] unlock all blocks
1765 * @param mtd MTD device structure
1769 static int onenand_unlock_all(struct mtd_info
*mtd
)
1771 struct onenand_chip
*this = mtd
->priv
;
1773 if (this->options
& ONENAND_HAS_UNLOCK_ALL
) {
1774 /* Set start block address */
1775 this->write_word(0, this->base
+ ONENAND_REG_START_BLOCK_ADDRESS
);
1776 /* Write unlock command */
1777 this->command(mtd
, ONENAND_CMD_UNLOCK_ALL
, 0, 0);
1779 /* There's no return value */
1780 this->wait(mtd
, FL_LOCKING
);
1783 while (this->read_word(this->base
+ ONENAND_REG_CTRL_STATUS
)
1784 & ONENAND_CTRL_ONGO
)
1787 /* Workaround for all block unlock in DDP */
1788 if (ONENAND_IS_DDP(this)) {
1789 /* 1st block on another chip */
1790 loff_t ofs
= this->chipsize
>> 1;
1791 size_t len
= mtd
->erasesize
;
1793 onenand_unlock(mtd
, ofs
, len
);
1796 onenand_check_lock_status(this);
1801 onenand_unlock(mtd
, 0x0, this->chipsize
);
1806 #ifdef CONFIG_MTD_ONENAND_OTP
1808 /* Interal OTP operation */
1809 typedef int (*otp_op_t
)(struct mtd_info
*mtd
, loff_t form
, size_t len
,
1810 size_t *retlen
, u_char
*buf
);
1813 * do_otp_read - [DEFAULT] Read OTP block area
1814 * @param mtd MTD device structure
1815 * @param from The offset to read
1816 * @param len number of bytes to read
1817 * @param retlen pointer to variable to store the number of readbytes
1818 * @param buf the databuffer to put/get data
1820 * Read OTP block area.
1822 static int do_otp_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
1823 size_t *retlen
, u_char
*buf
)
1825 struct onenand_chip
*this = mtd
->priv
;
1828 /* Enter OTP access mode */
1829 this->command(mtd
, ONENAND_CMD_OTP_ACCESS
, 0, 0);
1830 this->wait(mtd
, FL_OTPING
);
1832 ret
= mtd
->read(mtd
, from
, len
, retlen
, buf
);
1834 /* Exit OTP access mode */
1835 this->command(mtd
, ONENAND_CMD_RESET
, 0, 0);
1836 this->wait(mtd
, FL_RESETING
);
1842 * do_otp_write - [DEFAULT] Write OTP block area
1843 * @param mtd MTD device structure
1844 * @param from The offset to write
1845 * @param len number of bytes to write
1846 * @param retlen pointer to variable to store the number of write bytes
1847 * @param buf the databuffer to put/get data
1849 * Write OTP block area.
1851 static int do_otp_write(struct mtd_info
*mtd
, loff_t from
, size_t len
,
1852 size_t *retlen
, u_char
*buf
)
1854 struct onenand_chip
*this = mtd
->priv
;
1855 unsigned char *pbuf
= buf
;
1858 /* Force buffer page aligned */
1859 if (len
< mtd
->writesize
) {
1860 memcpy(this->page_buf
, buf
, len
);
1861 memset(this->page_buf
+ len
, 0xff, mtd
->writesize
- len
);
1862 pbuf
= this->page_buf
;
1863 len
= mtd
->writesize
;
1866 /* Enter OTP access mode */
1867 this->command(mtd
, ONENAND_CMD_OTP_ACCESS
, 0, 0);
1868 this->wait(mtd
, FL_OTPING
);
1870 ret
= mtd
->write(mtd
, from
, len
, retlen
, pbuf
);
1872 /* Exit OTP access mode */
1873 this->command(mtd
, ONENAND_CMD_RESET
, 0, 0);
1874 this->wait(mtd
, FL_RESETING
);
1880 * do_otp_lock - [DEFAULT] Lock OTP block area
1881 * @param mtd MTD device structure
1882 * @param from The offset to lock
1883 * @param len number of bytes to lock
1884 * @param retlen pointer to variable to store the number of lock bytes
1885 * @param buf the databuffer to put/get data
1887 * Lock OTP block area.
1889 static int do_otp_lock(struct mtd_info
*mtd
, loff_t from
, size_t len
,
1890 size_t *retlen
, u_char
*buf
)
1892 struct onenand_chip
*this = mtd
->priv
;
1895 /* Enter OTP access mode */
1896 this->command(mtd
, ONENAND_CMD_OTP_ACCESS
, 0, 0);
1897 this->wait(mtd
, FL_OTPING
);
1899 ret
= onenand_do_write_oob(mtd
, from
, len
, retlen
, buf
, MTD_OOB_PLACE
);
1901 /* Exit OTP access mode */
1902 this->command(mtd
, ONENAND_CMD_RESET
, 0, 0);
1903 this->wait(mtd
, FL_RESETING
);
1909 * onenand_otp_walk - [DEFAULT] Handle OTP operation
1910 * @param mtd MTD device structure
1911 * @param from The offset to read/write
1912 * @param len number of bytes to read/write
1913 * @param retlen pointer to variable to store the number of read bytes
1914 * @param buf the databuffer to put/get data
1915 * @param action do given action
1916 * @param mode specify user and factory
1918 * Handle OTP operation.
1920 static int onenand_otp_walk(struct mtd_info
*mtd
, loff_t from
, size_t len
,
1921 size_t *retlen
, u_char
*buf
,
1922 otp_op_t action
, int mode
)
1924 struct onenand_chip
*this = mtd
->priv
;
1931 density
= this->device_id
>> ONENAND_DEVICE_DENSITY_SHIFT
;
1932 if (density
< ONENAND_DEVICE_DENSITY_512Mb
)
1937 if (mode
== MTD_OTP_FACTORY
) {
1938 from
+= mtd
->writesize
* otp_pages
;
1939 otp_pages
= 64 - otp_pages
;
1942 /* Check User/Factory boundary */
1943 if (((mtd
->writesize
* otp_pages
) - (from
+ len
)) < 0)
1946 while (len
> 0 && otp_pages
> 0) {
1947 if (!action
) { /* OTP Info functions */
1948 struct otp_info
*otpinfo
;
1950 len
-= sizeof(struct otp_info
);
1954 otpinfo
= (struct otp_info
*) buf
;
1955 otpinfo
->start
= from
;
1956 otpinfo
->length
= mtd
->writesize
;
1957 otpinfo
->locked
= 0;
1959 from
+= mtd
->writesize
;
1960 buf
+= sizeof(struct otp_info
);
1961 *retlen
+= sizeof(struct otp_info
);
1966 ret
= action(mtd
, from
, len
, &tmp_retlen
, buf
);
1982 * onenand_get_fact_prot_info - [MTD Interface] Read factory OTP info
1983 * @param mtd MTD device structure
1984 * @param buf the databuffer to put/get data
1985 * @param len number of bytes to read
1987 * Read factory OTP info.
1989 static int onenand_get_fact_prot_info(struct mtd_info
*mtd
,
1990 struct otp_info
*buf
, size_t len
)
1995 ret
= onenand_otp_walk(mtd
, 0, len
, &retlen
, (u_char
*) buf
, NULL
, MTD_OTP_FACTORY
);
1997 return ret
? : retlen
;
2001 * onenand_read_fact_prot_reg - [MTD Interface] Read factory OTP area
2002 * @param mtd MTD device structure
2003 * @param from The offset to read
2004 * @param len number of bytes to read
2005 * @param retlen pointer to variable to store the number of read bytes
2006 * @param buf the databuffer to put/get data
2008 * Read factory OTP area.
2010 static int onenand_read_fact_prot_reg(struct mtd_info
*mtd
, loff_t from
,
2011 size_t len
, size_t *retlen
, u_char
*buf
)
2013 return onenand_otp_walk(mtd
, from
, len
, retlen
, buf
, do_otp_read
, MTD_OTP_FACTORY
);
2017 * onenand_get_user_prot_info - [MTD Interface] Read user OTP info
2018 * @param mtd MTD device structure
2019 * @param buf the databuffer to put/get data
2020 * @param len number of bytes to read
2022 * Read user OTP info.
2024 static int onenand_get_user_prot_info(struct mtd_info
*mtd
,
2025 struct otp_info
*buf
, size_t len
)
2030 ret
= onenand_otp_walk(mtd
, 0, len
, &retlen
, (u_char
*) buf
, NULL
, MTD_OTP_USER
);
2032 return ret
? : retlen
;
2036 * onenand_read_user_prot_reg - [MTD Interface] Read user OTP area
2037 * @param mtd MTD device structure
2038 * @param from The offset to read
2039 * @param len number of bytes to read
2040 * @param retlen pointer to variable to store the number of read bytes
2041 * @param buf the databuffer to put/get data
2043 * Read user OTP area.
2045 static int onenand_read_user_prot_reg(struct mtd_info
*mtd
, loff_t from
,
2046 size_t len
, size_t *retlen
, u_char
*buf
)
2048 return onenand_otp_walk(mtd
, from
, len
, retlen
, buf
, do_otp_read
, MTD_OTP_USER
);
2052 * onenand_write_user_prot_reg - [MTD Interface] Write user OTP area
2053 * @param mtd MTD device structure
2054 * @param from The offset to write
2055 * @param len number of bytes to write
2056 * @param retlen pointer to variable to store the number of write bytes
2057 * @param buf the databuffer to put/get data
2059 * Write user OTP area.
2061 static int onenand_write_user_prot_reg(struct mtd_info
*mtd
, loff_t from
,
2062 size_t len
, size_t *retlen
, u_char
*buf
)
2064 return onenand_otp_walk(mtd
, from
, len
, retlen
, buf
, do_otp_write
, MTD_OTP_USER
);
2068 * onenand_lock_user_prot_reg - [MTD Interface] Lock user OTP area
2069 * @param mtd MTD device structure
2070 * @param from The offset to lock
2071 * @param len number of bytes to unlock
2073 * Write lock mark on spare area in page 0 in OTP block
2075 static int onenand_lock_user_prot_reg(struct mtd_info
*mtd
, loff_t from
,
2078 unsigned char oob_buf
[64];
2082 memset(oob_buf
, 0xff, mtd
->oobsize
);
2084 * Note: OTP lock operation
2085 * OTP block : 0xXXFC
2086 * 1st block : 0xXXF3 (If chip support)
2087 * Both : 0xXXF0 (If chip support)
2089 oob_buf
[ONENAND_OTP_LOCK_OFFSET
] = 0xFC;
2092 * Write lock mark to 8th word of sector0 of page0 of the spare0.
2093 * We write 16 bytes spare area instead of 2 bytes.
2098 ret
= onenand_otp_walk(mtd
, from
, len
, &retlen
, oob_buf
, do_otp_lock
, MTD_OTP_USER
);
2100 return ret
? : retlen
;
2102 #endif /* CONFIG_MTD_ONENAND_OTP */
2105 * onenand_check_features - Check and set OneNAND features
2106 * @param mtd MTD data structure
2108 * Check and set OneNAND features
2111 static void onenand_check_features(struct mtd_info
*mtd
)
2113 struct onenand_chip
*this = mtd
->priv
;
2114 unsigned int density
, process
;
2116 /* Lock scheme depends on density and process */
2117 density
= this->device_id
>> ONENAND_DEVICE_DENSITY_SHIFT
;
2118 process
= this->version_id
>> ONENAND_VERSION_PROCESS_SHIFT
;
2121 if (density
>= ONENAND_DEVICE_DENSITY_1Gb
) {
2122 /* A-Die has all block unlock */
2124 printk(KERN_DEBUG
"Chip support all block unlock\n");
2125 this->options
|= ONENAND_HAS_UNLOCK_ALL
;
2128 /* Some OneNAND has continues lock scheme */
2130 printk(KERN_DEBUG
"Lock scheme is Continues Lock\n");
2131 this->options
|= ONENAND_HAS_CONT_LOCK
;
2137 * onenand_print_device_info - Print device & version ID
2138 * @param device device ID
2139 * @param version version ID
2141 * Print device & version ID
2143 static void onenand_print_device_info(int device
, int version
)
2145 int vcc
, demuxed
, ddp
, density
;
2147 vcc
= device
& ONENAND_DEVICE_VCC_MASK
;
2148 demuxed
= device
& ONENAND_DEVICE_IS_DEMUX
;
2149 ddp
= device
& ONENAND_DEVICE_IS_DDP
;
2150 density
= device
>> ONENAND_DEVICE_DENSITY_SHIFT
;
2151 printk(KERN_INFO
"%sOneNAND%s %dMB %sV 16-bit (0x%02x)\n",
2152 demuxed
? "" : "Muxed ",
2155 vcc
? "2.65/3.3" : "1.8",
2157 printk(KERN_DEBUG
"OneNAND version = 0x%04x\n", version
);
2160 static const struct onenand_manufacturers onenand_manuf_ids
[] = {
2161 {ONENAND_MFR_SAMSUNG
, "Samsung"},
2165 * onenand_check_maf - Check manufacturer ID
2166 * @param manuf manufacturer ID
2168 * Check manufacturer ID
2170 static int onenand_check_maf(int manuf
)
2172 int size
= ARRAY_SIZE(onenand_manuf_ids
);
2176 for (i
= 0; i
< size
; i
++)
2177 if (manuf
== onenand_manuf_ids
[i
].id
)
2181 name
= onenand_manuf_ids
[i
].name
;
2185 printk(KERN_DEBUG
"OneNAND Manufacturer: %s (0x%0x)\n", name
, manuf
);
2191 * onenand_probe - [OneNAND Interface] Probe the OneNAND device
2192 * @param mtd MTD device structure
2194 * OneNAND detection method:
2195 * Compare the values from command with ones from register
2197 static int onenand_probe(struct mtd_info
*mtd
)
2199 struct onenand_chip
*this = mtd
->priv
;
2200 int bram_maf_id
, bram_dev_id
, maf_id
, dev_id
, ver_id
;
2204 /* Save system configuration 1 */
2205 syscfg
= this->read_word(this->base
+ ONENAND_REG_SYS_CFG1
);
2206 /* Clear Sync. Burst Read mode to read BootRAM */
2207 this->write_word((syscfg
& ~ONENAND_SYS_CFG1_SYNC_READ
), this->base
+ ONENAND_REG_SYS_CFG1
);
2209 /* Send the command for reading device ID from BootRAM */
2210 this->write_word(ONENAND_CMD_READID
, this->base
+ ONENAND_BOOTRAM
);
2212 /* Read manufacturer and device IDs from BootRAM */
2213 bram_maf_id
= this->read_word(this->base
+ ONENAND_BOOTRAM
+ 0x0);
2214 bram_dev_id
= this->read_word(this->base
+ ONENAND_BOOTRAM
+ 0x2);
2216 /* Reset OneNAND to read default register values */
2217 this->write_word(ONENAND_CMD_RESET
, this->base
+ ONENAND_BOOTRAM
);
2219 this->wait(mtd
, FL_RESETING
);
2221 /* Restore system configuration 1 */
2222 this->write_word(syscfg
, this->base
+ ONENAND_REG_SYS_CFG1
);
2224 /* Check manufacturer ID */
2225 if (onenand_check_maf(bram_maf_id
))
2228 /* Read manufacturer and device IDs from Register */
2229 maf_id
= this->read_word(this->base
+ ONENAND_REG_MANUFACTURER_ID
);
2230 dev_id
= this->read_word(this->base
+ ONENAND_REG_DEVICE_ID
);
2231 ver_id
= this->read_word(this->base
+ ONENAND_REG_VERSION_ID
);
2233 /* Check OneNAND device */
2234 if (maf_id
!= bram_maf_id
|| dev_id
!= bram_dev_id
)
2237 /* Flash device information */
2238 onenand_print_device_info(dev_id
, ver_id
);
2239 this->device_id
= dev_id
;
2240 this->version_id
= ver_id
;
2242 density
= dev_id
>> ONENAND_DEVICE_DENSITY_SHIFT
;
2243 this->chipsize
= (16 << density
) << 20;
2244 /* Set density mask. it is used for DDP */
2245 if (ONENAND_IS_DDP(this))
2246 this->density_mask
= (1 << (density
+ 6));
2248 this->density_mask
= 0;
2250 /* OneNAND page size & block size */
2251 /* The data buffer size is equal to page size */
2252 mtd
->writesize
= this->read_word(this->base
+ ONENAND_REG_DATA_BUFFER_SIZE
);
2253 mtd
->oobsize
= mtd
->writesize
>> 5;
2254 /* Pages per a block are always 64 in OneNAND */
2255 mtd
->erasesize
= mtd
->writesize
<< 6;
2257 this->erase_shift
= ffs(mtd
->erasesize
) - 1;
2258 this->page_shift
= ffs(mtd
->writesize
) - 1;
2259 this->page_mask
= (1 << (this->erase_shift
- this->page_shift
)) - 1;
2261 /* REVIST: Multichip handling */
2263 mtd
->size
= this->chipsize
;
2265 /* Check OneNAND features */
2266 onenand_check_features(mtd
);
2272 * onenand_suspend - [MTD Interface] Suspend the OneNAND flash
2273 * @param mtd MTD device structure
2275 static int onenand_suspend(struct mtd_info
*mtd
)
2277 return onenand_get_device(mtd
, FL_PM_SUSPENDED
);
2281 * onenand_resume - [MTD Interface] Resume the OneNAND flash
2282 * @param mtd MTD device structure
2284 static void onenand_resume(struct mtd_info
*mtd
)
2286 struct onenand_chip
*this = mtd
->priv
;
2288 if (this->state
== FL_PM_SUSPENDED
)
2289 onenand_release_device(mtd
);
2291 printk(KERN_ERR
"resume() called for the chip which is not"
2292 "in suspended state\n");
2296 * onenand_scan - [OneNAND Interface] Scan for the OneNAND device
2297 * @param mtd MTD device structure
2298 * @param maxchips Number of chips to scan for
2300 * This fills out all the not initialized function pointers
2301 * with the defaults.
2302 * The flash ID is read and the mtd/chip structures are
2303 * filled with the appropriate values.
2305 int onenand_scan(struct mtd_info
*mtd
, int maxchips
)
2308 struct onenand_chip
*this = mtd
->priv
;
2310 if (!this->read_word
)
2311 this->read_word
= onenand_readw
;
2312 if (!this->write_word
)
2313 this->write_word
= onenand_writew
;
2316 this->command
= onenand_command
;
2318 onenand_setup_wait(mtd
);
2320 if (!this->read_bufferram
)
2321 this->read_bufferram
= onenand_read_bufferram
;
2322 if (!this->write_bufferram
)
2323 this->write_bufferram
= onenand_write_bufferram
;
2325 if (!this->block_markbad
)
2326 this->block_markbad
= onenand_default_block_markbad
;
2327 if (!this->scan_bbt
)
2328 this->scan_bbt
= onenand_default_bbt
;
2330 if (onenand_probe(mtd
))
2333 /* Set Sync. Burst Read after probing */
2334 if (this->mmcontrol
) {
2335 printk(KERN_INFO
"OneNAND Sync. Burst Read support\n");
2336 this->read_bufferram
= onenand_sync_read_bufferram
;
2339 /* Allocate buffers, if necessary */
2340 if (!this->page_buf
) {
2341 this->page_buf
= kzalloc(mtd
->writesize
, GFP_KERNEL
);
2342 if (!this->page_buf
) {
2343 printk(KERN_ERR
"onenand_scan(): Can't allocate page_buf\n");
2346 this->options
|= ONENAND_PAGEBUF_ALLOC
;
2348 if (!this->oob_buf
) {
2349 this->oob_buf
= kzalloc(mtd
->oobsize
, GFP_KERNEL
);
2350 if (!this->oob_buf
) {
2351 printk(KERN_ERR
"onenand_scan(): Can't allocate oob_buf\n");
2352 if (this->options
& ONENAND_PAGEBUF_ALLOC
) {
2353 this->options
&= ~ONENAND_PAGEBUF_ALLOC
;
2354 kfree(this->page_buf
);
2358 this->options
|= ONENAND_OOBBUF_ALLOC
;
2361 this->state
= FL_READY
;
2362 init_waitqueue_head(&this->wq
);
2363 spin_lock_init(&this->chip_lock
);
2366 * Allow subpage writes up to oobsize.
2368 switch (mtd
->oobsize
) {
2370 this->ecclayout
= &onenand_oob_64
;
2371 mtd
->subpage_sft
= 2;
2375 this->ecclayout
= &onenand_oob_32
;
2376 mtd
->subpage_sft
= 1;
2380 printk(KERN_WARNING
"No OOB scheme defined for oobsize %d\n",
2382 mtd
->subpage_sft
= 0;
2383 /* To prevent kernel oops */
2384 this->ecclayout
= &onenand_oob_32
;
2388 this->subpagesize
= mtd
->writesize
>> mtd
->subpage_sft
;
2391 * The number of bytes available for a client to place data into
2392 * the out of band area
2394 this->ecclayout
->oobavail
= 0;
2395 for (i
= 0; i
< MTD_MAX_OOBFREE_ENTRIES
&&
2396 this->ecclayout
->oobfree
[i
].length
; i
++)
2397 this->ecclayout
->oobavail
+=
2398 this->ecclayout
->oobfree
[i
].length
;
2399 mtd
->oobavail
= this->ecclayout
->oobavail
;
2401 mtd
->ecclayout
= this->ecclayout
;
2403 /* Fill in remaining MTD driver data */
2404 mtd
->type
= MTD_NANDFLASH
;
2405 mtd
->flags
= MTD_CAP_NANDFLASH
;
2406 mtd
->erase
= onenand_erase
;
2408 mtd
->unpoint
= NULL
;
2409 mtd
->read
= onenand_read
;
2410 mtd
->write
= onenand_write
;
2411 mtd
->read_oob
= onenand_read_oob
;
2412 mtd
->write_oob
= onenand_write_oob
;
2413 #ifdef CONFIG_MTD_ONENAND_OTP
2414 mtd
->get_fact_prot_info
= onenand_get_fact_prot_info
;
2415 mtd
->read_fact_prot_reg
= onenand_read_fact_prot_reg
;
2416 mtd
->get_user_prot_info
= onenand_get_user_prot_info
;
2417 mtd
->read_user_prot_reg
= onenand_read_user_prot_reg
;
2418 mtd
->write_user_prot_reg
= onenand_write_user_prot_reg
;
2419 mtd
->lock_user_prot_reg
= onenand_lock_user_prot_reg
;
2421 mtd
->sync
= onenand_sync
;
2422 mtd
->lock
= onenand_lock
;
2423 mtd
->unlock
= onenand_unlock
;
2424 mtd
->suspend
= onenand_suspend
;
2425 mtd
->resume
= onenand_resume
;
2426 mtd
->block_isbad
= onenand_block_isbad
;
2427 mtd
->block_markbad
= onenand_block_markbad
;
2428 mtd
->owner
= THIS_MODULE
;
2430 /* Unlock whole block */
2431 onenand_unlock_all(mtd
);
2433 return this->scan_bbt(mtd
);
2437 * onenand_release - [OneNAND Interface] Free resources held by the OneNAND device
2438 * @param mtd MTD device structure
2440 void onenand_release(struct mtd_info
*mtd
)
2442 struct onenand_chip
*this = mtd
->priv
;
2444 #ifdef CONFIG_MTD_PARTITIONS
2445 /* Deregister partitions */
2446 del_mtd_partitions (mtd
);
2448 /* Deregister the device */
2449 del_mtd_device (mtd
);
2451 /* Free bad block table memory, if allocated */
2453 struct bbm_info
*bbm
= this->bbm
;
2457 /* Buffers allocated by onenand_scan */
2458 if (this->options
& ONENAND_PAGEBUF_ALLOC
)
2459 kfree(this->page_buf
);
2460 if (this->options
& ONENAND_OOBBUF_ALLOC
)
2461 kfree(this->oob_buf
);
2464 EXPORT_SYMBOL_GPL(onenand_scan
);
2465 EXPORT_SYMBOL_GPL(onenand_release
);
2467 MODULE_LICENSE("GPL");
2468 MODULE_AUTHOR("Kyungmin Park <kyungmin.park@samsung.com>");
2469 MODULE_DESCRIPTION("Generic OneNAND flash driver code");