Kyungmin Park | cd5f634 | 2005-07-11 11:41:53 +0100 | [diff] [blame] | 1 | # |
| 2 | # linux/drivers/mtd/onenand/Kconfig |
| 3 | # |
| 4 | |
Kyungmin Park | 1501787 | 2005-09-03 07:37:19 +0100 | [diff] [blame] | 5 | menu "OneNAND Flash Device Drivers" |
| 6 | depends on MTD != n |
Kyungmin Park | cd5f634 | 2005-07-11 11:41:53 +0100 | [diff] [blame] | 7 | |
| 8 | config MTD_ONENAND |
| 9 | tristate "OneNAND Device Support" |
| 10 | depends on MTD |
| 11 | help |
| 12 | This enables support for accessing all type of OneNAND flash |
| 13 | devices. For further information see |
| 14 | <http://www.samsung.com/Products/Semiconductor/Flash/OneNAND_TM/index.htm>. |
| 15 | |
| 16 | config MTD_ONENAND_VERIFY_WRITE |
| 17 | bool "Verify OneNAND page writes" |
| 18 | depends on MTD_ONENAND |
| 19 | help |
| 20 | This adds an extra check when data is written to the flash. The |
| 21 | OneNAND flash device internally checks only bits transitioning |
| 22 | from 1 to 0. There is a rare possibility that even though the |
| 23 | device thinks the write was successful, a bit could have been |
Matt LaPlante | 0950960 | 2006-10-03 22:31:37 +0200 | [diff] [blame] | 24 | flipped accidentally due to device wear or something else. |
Kyungmin Park | cd5f634 | 2005-07-11 11:41:53 +0100 | [diff] [blame] | 25 | |
Kyungmin Park | 68ee4b1 | 2005-09-09 07:39:50 +0100 | [diff] [blame] | 26 | config MTD_ONENAND_GENERIC |
Thomas Gleixner | 46d0d0f | 2005-11-07 01:14:05 +0100 | [diff] [blame] | 27 | tristate "OneNAND Flash device via platform device driver" |
| 28 | depends on MTD_ONENAND && ARM |
Kyungmin Park | 68ee4b1 | 2005-09-09 07:39:50 +0100 | [diff] [blame] | 29 | help |
Thomas Gleixner | 46d0d0f | 2005-11-07 01:14:05 +0100 | [diff] [blame] | 30 | Support for OneNAND flash via platform device driver. |
Kyungmin Park | 68ee4b1 | 2005-09-09 07:39:50 +0100 | [diff] [blame] | 31 | |
Kyungmin Park | 493c646 | 2006-05-12 17:03:07 +0300 | [diff] [blame] | 32 | config MTD_ONENAND_OTP |
| 33 | bool "OneNAND OTP Support" |
| 34 | depends on MTD_ONENAND |
| 35 | help |
| 36 | One Block of the NAND Flash Array memory is reserved as |
| 37 | a One-Time Programmable Block memory area. |
| 38 | Also, 1st Block of NAND Flash Array can be used as OTP. |
| 39 | |
| 40 | The OTP block can be read, programmed and locked using the same |
| 41 | operations as any other NAND Flash Array memory block. |
| 42 | OTP block cannot be erased. |
| 43 | |
| 44 | OTP block is fully-guaranteed to be a valid block. |
| 45 | |
Kyungmin Park | cd5f634 | 2005-07-11 11:41:53 +0100 | [diff] [blame] | 46 | endmenu |