summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/spi-nor/Makefile
diff options
context:
space:
mode:
authorHuang Shijie2014-02-24 11:37:42 +0100
committerBrian Norris2014-04-14 20:22:59 +0200
commite46ecda764dc37f9fc6279d95ea2c007daef1a71 (patch)
tree3d3730196ef3b6463a66b3b1616b3540aba5bdb6 /drivers/mtd/spi-nor/Makefile
parentDocumentation: add the binding file for Freescale QuadSPI driver (diff)
downloadkernel-qcow2-linux-e46ecda764dc37f9fc6279d95ea2c007daef1a71.tar.gz
kernel-qcow2-linux-e46ecda764dc37f9fc6279d95ea2c007daef1a71.tar.xz
kernel-qcow2-linux-e46ecda764dc37f9fc6279d95ea2c007daef1a71.zip
mtd: spi-nor: Add Freescale QuadSPI driver
(0) What is the QuadSPI controller? The QuadSPI(Quad Serial Peripheral Interface) acts as an interface to one single or two external serial flash devices, each with up to 4 bidirectional data lines. (1) The QuadSPI controller is driven by the LUT(Look-up Table) registers. The LUT registers are a look-up-table for sequences of instructions. A valid sequence consists of four LUT registers. (2) The definition of the LUT register shows below: --------------------------------------------------- | INSTR1 | PAD1 | OPRND1 | INSTR0 | PAD0 | OPRND0 | --------------------------------------------------- There are several types of INSTRx, such as: CMD : the SPI NOR command. ADDR : the address for the SPI NOR command. DUMMY : the dummy cycles needed by the SPI NOR command. .... There are several types of PADx, such as: PAD1 : use a singe I/O line. PAD2 : use two I/O lines. PAD4 : use quad I/O lines. .... (3) Test this driver with the JFFS2 and UBIFS: For jffs2: ------------- #flash_eraseall /dev/mtd0 #mount -t jffs2 /dev/mtdblock0 tmp #bonnie++ -d tmp -u 0 -s 10 -r 5 For ubifs: ------------- #flash_eraseall /dev/mtd0 #ubiattach /dev/ubi_ctrl -m 0 #ubimkvol /dev/ubi0 -N test -m #mount -t ubifs ubi0:test tmp #bonnie++ -d tmp -u 0 -s 10 -r 5 Signed-off-by: Huang Shijie <b32955@freescale.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/spi-nor/Makefile')
-rw-r--r--drivers/mtd/spi-nor/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/spi-nor/Makefile b/drivers/mtd/spi-nor/Makefile
index 7dfe1f9b6940..51f9d8b99ab7 100644
--- a/drivers/mtd/spi-nor/Makefile
+++ b/drivers/mtd/spi-nor/Makefile
@@ -1 +1,2 @@
obj-$(CONFIG_MTD_SPI_NOR_BASE) += spi-nor.o
+obj-$(CONFIG_SPI_FSL_QUADSPI) += fsl-quadspi.o