Skip to content

Commit

Permalink
mtd: add Samsung SoC OneNAND driver
Browse files Browse the repository at this point in the history
This patch adds a driver for OneNAND controller on Samsung SoCs.
Following SoCs are supported: S3C6400, S3C6410, S5PC100 and S5PC110.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
Kyungmin Park authored and David Woodhouse committed May 14, 2010
1 parent c37cb56 commit 46f3e88
Show file tree
Hide file tree
Showing 3 changed files with 1,079 additions and 0 deletions.
7 changes: 7 additions & 0 deletions drivers/mtd/onenand/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ config MTD_ONENAND_OMAP2
Support for a OneNAND flash device connected to an OMAP2/OMAP3 CPU
via the GPMC memory controller.

config MTD_ONENAND_SAMSUNG
tristate "OneNAND on Samsung SOC controller support"
depends on MTD_ONENAND && (ARCH_S3C64XX || ARCH_S5PC100 || ARCH_S5PV210)
help
Support for a OneNAND flash device connected to an Samsung SOC
S3C64XX/S5PC1XX controller.

config MTD_ONENAND_OTP
bool "OneNAND OTP Support"
select HAVE_MTD_OTP
Expand Down
1 change: 1 addition & 0 deletions drivers/mtd/onenand/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ obj-$(CONFIG_MTD_ONENAND) += onenand.o
# Board specific.
obj-$(CONFIG_MTD_ONENAND_GENERIC) += generic.o
obj-$(CONFIG_MTD_ONENAND_OMAP2) += omap2.o
obj-$(CONFIG_MTD_ONENAND_SAMSUNG) += samsung.o

# Simulator
obj-$(CONFIG_MTD_ONENAND_SIM) += onenand_sim.o
Expand Down
Loading

0 comments on commit 46f3e88

Please sign in to comment.