mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
ce45bf6b07
This is an initial driver for the new QPIC based NAND controller(NANDc) that is introduced in MDM9x25. This driver has been leveraged from the current driver msm_nand.c and is modified for the new hardware changes in QPIC NANDc. Addition of SPS/BAM support is one of the major hardware changes in new controller. It also supports only BCH ECC and based on the device capabilities either 4 bit or 8 bit BCH ECC will be used. This driver is based on the device tree architecture. Change-Id: Ie9f782a796bd7c1506997e8eaa1e797310dc26a0 Signed-off-by: Sahitya Tummala <stummala@codeaurora.org>
25 lines
828 B
Makefile
25 lines
828 B
Makefile
#
|
|
# linux/drivers/mtd/devices/Makefile
|
|
#
|
|
|
|
obj-$(CONFIG_MTD_DOC2000) += doc2000.o
|
|
obj-$(CONFIG_MTD_DOC2001) += doc2001.o
|
|
obj-$(CONFIG_MTD_DOC2001PLUS) += doc2001plus.o
|
|
obj-$(CONFIG_MTD_DOCG3) += docg3.o
|
|
obj-$(CONFIG_MTD_DOCPROBE) += docprobe.o
|
|
obj-$(CONFIG_MTD_DOCECC) += docecc.o
|
|
obj-$(CONFIG_MTD_SLRAM) += slram.o
|
|
obj-$(CONFIG_MTD_PHRAM) += phram.o
|
|
obj-$(CONFIG_MTD_PMC551) += pmc551.o
|
|
obj-$(CONFIG_MTD_MS02NV) += ms02-nv.o
|
|
obj-$(CONFIG_MTD_MSM_NAND) += msm_nand.o
|
|
obj-$(CONFIG_MTD_MSM_QPIC_NAND) += msm_qpic_nand.o
|
|
obj-$(CONFIG_MTD_MTDRAM) += mtdram.o
|
|
obj-$(CONFIG_MTD_LART) += lart.o
|
|
obj-$(CONFIG_MTD_BLOCK2MTD) += block2mtd.o
|
|
obj-$(CONFIG_MTD_DATAFLASH) += mtd_dataflash.o
|
|
obj-$(CONFIG_MTD_M25P80) += m25p80.o
|
|
obj-$(CONFIG_MTD_SPEAR_SMI) += spear_smi.o
|
|
obj-$(CONFIG_MTD_SST25L) += sst25l.o
|
|
|
|
CFLAGS_docg3.o += -I$(src)
|