Commit d974ce4f authored by Kamlakant Patel's avatar Kamlakant Patel Committed by Greg Kroah-Hartman
Browse files

Staging: MTD: Micron SPINAND Driver support



This patch adds support for Micron SPINAND via MTD.

Signed-off-by: default avatarMona Anonuevo <manonuevo@micron.com>
Signed-off-by: default avatarKamlakant Patel <kamlakant.patel@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 77e73e8c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -136,6 +136,8 @@ source "drivers/staging/goldfish/Kconfig"

source "drivers/staging/netlogic/Kconfig"

source "drivers/staging/mt29f_spinand/Kconfig"

source "drivers/staging/dwc2/Kconfig"

source "drivers/staging/lustre/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -66,3 +66,4 @@ obj-$(CONFIG_USB_BTMTK) += btmtk_usb/
obj-$(CONFIG_XILLYBUS)		+= xillybus/
obj-$(CONFIG_DGNC)			+= dgnc/
obj-$(CONFIG_DGAP)			+= dgap/
obj-$(CONFIG_MTD_SPINAND_MT29F)	+= mt29f_spinand/
+16 −0
Original line number Diff line number Diff line
config MTD_SPINAND_MT29F
	tristate "SPINAND Device Support for Micron"
	depends on MTD_NAND && SPI
	help
	  This enables support for accessing Micron SPI NAND flash
	  devices.
	  If you have Micron SPI NAND chip say yes.

	  If unsure, say no here.

config MTD_SPINAND_ONDIEECC
	bool "Use SPINAND internal ECC"
	depends on MTD_SPINAND_MT29F
	help
	  Internel ECC.
	  Enables Hardware ECC support for Micron SPI NAND.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_MTD_SPINAND_MT29F) += mt29f_spinand.o
+13 −0
Original line number Diff line number Diff line
TODO:
	- Tested on XLP platform, needs to be tested on other platforms.
	- Checkpatch.pl cleanups
	- Sparce fixes.
	- Clean up coding style to meet kernel standard.

Please send patches
To:
Kamlakant Patel <kamlakant.patel@broadcom.com>
Cc:
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Mona Anonuevo <manonuevo@micron.com>
linux-mtd@lists.infradead.org
Loading