2019-05-19 15:07:45 +03:00
# SPDX-License-Identifier: GPL-2.0-only
2007-04-20 01:21:41 +04:00
menuconfig MTD_ONENAND
2005-07-11 14:41:53 +04:00
tristate "OneNAND Device Support"
2012-02-07 04:22:50 +04:00
depends on HAS_IOMEM
2005-07-11 14:41:53 +04:00
help
This enables support for accessing all type of OneNAND flash
2017-11-28 01:52:56 +03:00
devices.
2005-07-11 14:41:53 +04:00
2007-04-20 01:21:41 +04:00
if MTD_ONENAND
2005-07-11 14:41:53 +04:00
config MTD_ONENAND_VERIFY_WRITE
bool "Verify OneNAND page writes"
help
This adds an extra check when data is written to the flash. The
OneNAND flash device internally checks only bits transitioning
from 1 to 0. There is a rare possibility that even though the
device thinks the write was successful, a bit could have been
2006-10-04 00:31:37 +04:00
flipped accidentally due to device wear or something else.
2005-07-11 14:41:53 +04:00
2005-09-09 10:39:50 +04:00
config MTD_ONENAND_GENERIC
2005-11-07 03:14:05 +03:00
tristate "OneNAND Flash device via platform device driver"
2005-09-09 10:39:50 +04:00
help
2005-11-07 03:14:05 +03:00
Support for OneNAND flash via platform device driver.
2005-09-09 10:39:50 +04:00
2008-08-06 11:08:46 +04:00
config MTD_ONENAND_OMAP2
tristate "OneNAND on OMAP2/OMAP3 support"
2019-12-29 21:36:12 +03:00
depends on ARCH_OMAP2 || ARCH_OMAP3 || (COMPILE_TEST && ARM)
2023-04-07 20:04:53 +03:00
depends on OF
2022-11-07 12:15:20 +03:00
depends on OMAP_GPMC
2008-08-06 11:08:46 +04:00
help
2018-01-12 16:17:25 +03:00
Support for a OneNAND flash device connected to an OMAP2/OMAP3 SoC
2008-08-06 11:08:46 +04:00
via the GPMC memory controller.
2018-01-12 16:17:25 +03:00
Enable dmaengine and gpiolib for better performance.
2008-08-06 11:08:46 +04:00
2010-04-28 19:46:49 +04:00
config MTD_ONENAND_SAMSUNG
2019-11-20 16:40:50 +03:00
tristate "OneNAND on Samsung SOC controller support"
2021-09-24 16:32:23 +03:00
depends on ARCH_S3C64XX || ARCH_S5PV210 || COMPILE_TEST
2019-11-20 16:40:50 +03:00
help
2021-09-24 16:32:23 +03:00
Support for a OneNAND flash device connected to Samsung S3C64XX
(using command mapping method) and S5PC110/S5PC210 (using generic
OneNAND method) SoCs.
Choose Y here only if you build for such Samsung SoC.
2010-04-28 19:46:49 +04:00
2006-05-12 18:03:07 +04:00
config MTD_ONENAND_OTP
bool "OneNAND OTP Support"
help
One Block of the NAND Flash Array memory is reserved as
a One-Time Programmable Block memory area.
Also, 1st Block of NAND Flash Array can be used as OTP.
The OTP block can be read, programmed and locked using the same
operations as any other NAND Flash Array memory block.
OTP block cannot be erased.
OTP block is fully-guaranteed to be a valid block.
[MTD] [OneNAND] 2X program support
The 2X Program is an extension of Program Operation.
Since the device is equipped with two DataRAMs, and two-plane NAND Flash
memory array, these two component enables simultaneous program of 4KiB.
Plane1 has only even blocks such as block0, block2, block4 while Plane2
has only odd blocks such as block1, block3, block5.
So MTD regards it as 4KiB page size and 256KiB block size
Now the following chips support it. (KFXXX16Q2M)
Demux: KFG2G16Q2M, KFH4G16Q2M, KFW8G16Q2M,
Mux: KFM2G16Q2M, KFN4G16Q2M,
And more recent chips
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
2007-06-30 08:57:49 +04:00
config MTD_ONENAND_2X_PROGRAM
bool "OneNAND 2X program support"
help
The 2X Program is an extension of Program Operation.
Since the device is equipped with two DataRAMs, and two-plane NAND
Flash memory array, these two component enables simultaneous program
of 4KiB. Plane1 has only even blocks such as block0, block2, block4
while Plane2 has only odd blocks such as block1, block3, block5.
So MTD regards it as 4KiB page size and 256KiB block size
Now the following chips support it. (KFXXX16Q2M)
Demux: KFG2G16Q2M, KFH4G16Q2M, KFW8G16Q2M,
Mux: KFM2G16Q2M, KFN4G16Q2M,
And more recent chips
2007-04-20 01:21:41 +04:00
endif # MTD_ONENAND