sf: Add quad read/write commands support

This patch add quad commands support like
- QUAD_PAGE_PROGRAM => for write program
- QUAD_OUTPUT_FAST ->> for read program

Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
This commit is contained in:
Jagannadha Sutradharudu Teki 2014-01-11 15:13:11 +05:30
parent 4e09cc1e2c
commit 3163aaa63f
5 changed files with 113 additions and 89 deletions

View file

@ -28,6 +28,7 @@
#define CMD_PAGE_PROGRAM 0x02 #define CMD_PAGE_PROGRAM 0x02
#define CMD_WRITE_DISABLE 0x04 #define CMD_WRITE_DISABLE 0x04
#define CMD_READ_STATUS 0x05 #define CMD_READ_STATUS 0x05
#define CMD_QUAD_PAGE_PROGRAM 0x32
#define CMD_READ_STATUS1 0x35 #define CMD_READ_STATUS1 0x35
#define CMD_WRITE_ENABLE 0x06 #define CMD_WRITE_ENABLE 0x06
#define CMD_READ_CONFIG 0x35 #define CMD_READ_CONFIG 0x35
@ -38,6 +39,7 @@
#define CMD_READ_ARRAY_FAST 0x0b #define CMD_READ_ARRAY_FAST 0x0b
#define CMD_READ_DUAL_OUTPUT_FAST 0x3b #define CMD_READ_DUAL_OUTPUT_FAST 0x3b
#define CMD_READ_DUAL_IO_FAST 0xbb #define CMD_READ_DUAL_IO_FAST 0xbb
#define CMD_READ_QUAD_OUTPUT_FAST 0x6b
#define CMD_READ_ID 0x9f #define CMD_READ_ID 0x9f
/* Bank addr access commands */ /* Bank addr access commands */

View file

@ -210,7 +210,7 @@ int spi_flash_cmd_write_ops(struct spi_flash *flash, u32 offset,
page_size = flash->page_size; page_size = flash->page_size;
cmd[0] = CMD_PAGE_PROGRAM; cmd[0] = flash->write_cmd;
for (actual = 0; actual < len; actual += chunk_len) { for (actual = 0; actual < len; actual += chunk_len) {
#ifdef CONFIG_SPI_FLASH_BAR #ifdef CONFIG_SPI_FLASH_BAR
ret = spi_flash_bank(flash, offset); ret = spi_flash_bank(flash, offset);

View file

@ -83,8 +83,8 @@ static const struct spi_flash_params spi_flash_params_table[] = {
{"S25FL032P", 0x010215, 0x4d00, 64 * 1024, 64, 0, 0}, {"S25FL032P", 0x010215, 0x4d00, 64 * 1024, 64, 0, 0},
{"S25FL064P", 0x010216, 0x4d00, 64 * 1024, 128, 0, 0}, {"S25FL064P", 0x010216, 0x4d00, 64 * 1024, 128, 0, 0},
{"S25FL128S_64K", 0x012018, 0x4d01, 64 * 1024, 256, 0, 0}, {"S25FL128S_64K", 0x012018, 0x4d01, 64 * 1024, 256, 0, 0},
{"S25FL256S_256K", 0x010219, 0x4d00, 64 * 1024, 512, RD_EXTN, 0}, {"S25FL256S_256K", 0x010219, 0x4d00, 64 * 1024, 512, RD_FULL, WR_QPP},
{"S25FL256S_64K", 0x010219, 0x4d01, 64 * 1024, 512, RD_EXTN, 0}, {"S25FL256S_64K", 0x010219, 0x4d01, 64 * 1024, 512, RD_FULL, WR_QPP},
{"S25FL512S_256K", 0x010220, 0x4d00, 64 * 1024, 1024, 0, 0}, {"S25FL512S_256K", 0x010220, 0x4d00, 64 * 1024, 1024, 0, 0},
{"S25FL512S_64K", 0x010220, 0x4d01, 64 * 1024, 1024, 0, 0}, {"S25FL512S_64K", 0x010220, 0x4d01, 64 * 1024, 1024, 0, 0},
#endif #endif
@ -162,6 +162,7 @@ static u8 spi_read_cmds_array[] = {
CMD_READ_ARRAY_SLOW, CMD_READ_ARRAY_SLOW,
CMD_READ_DUAL_OUTPUT_FAST, CMD_READ_DUAL_OUTPUT_FAST,
CMD_READ_DUAL_IO_FAST, CMD_READ_DUAL_IO_FAST,
CMD_READ_QUAD_OUTPUT_FAST,
}; };
static struct spi_flash *spi_flash_validate_params(struct spi_slave *spi, static struct spi_flash *spi_flash_validate_params(struct spi_slave *spi,
@ -242,6 +243,13 @@ static struct spi_flash *spi_flash_validate_params(struct spi_slave *spi,
flash->read_cmd = CMD_READ_ARRAY_FAST; flash->read_cmd = CMD_READ_ARRAY_FAST;
} }
/* Not require to look for fastest only two write cmds yet */
if (params->flags & WR_QPP && flash->spi->op_mode_tx & SPI_OPM_TX_QPP)
flash->write_cmd = CMD_QUAD_PAGE_PROGRAM;
else
/* Go for default supported write cmd */
flash->write_cmd = CMD_PAGE_PROGRAM;
/* Poll cmd seclection */ /* Poll cmd seclection */
flash->poll_cmd = CMD_READ_STATUS; flash->poll_cmd = CMD_READ_STATUS;
#ifdef CONFIG_SPI_FLASH_STMICRO #ifdef CONFIG_SPI_FLASH_STMICRO

View file

@ -31,11 +31,16 @@
#define SPI_XFER_MMAP_END 0x10 /* Memory Mapped End */ #define SPI_XFER_MMAP_END 0x10 /* Memory Mapped End */
#define SPI_XFER_ONCE (SPI_XFER_BEGIN | SPI_XFER_END) #define SPI_XFER_ONCE (SPI_XFER_BEGIN | SPI_XFER_END)
/* SPI TX operation modes */
#define SPI_OPM_TX_QPP 1 << 0
/* SPI RX operation modes */ /* SPI RX operation modes */
#define SPI_OPM_RX_AS 1 << 0 #define SPI_OPM_RX_AS 1 << 0
#define SPI_OPM_RX_DOUT 1 << 1 #define SPI_OPM_RX_DOUT 1 << 1
#define SPI_OPM_RX_DIO 1 << 2 #define SPI_OPM_RX_DIO 1 << 2
#define SPI_OPM_RX_EXTN SPI_OPM_RX_AS | SPI_OPM_RX_DOUT | SPI_OPM_RX_DIO #define SPI_OPM_RX_QOF 1 << 3
#define SPI_OPM_RX_EXTN SPI_OPM_RX_AS | SPI_OPM_RX_DOUT | \
SPI_OPM_RX_DIO | SPI_OPM_RX_QOF
/* Header byte that marks the start of the message */ /* Header byte that marks the start of the message */
#define SPI_PREAMBLE_END_BYTE 0xec #define SPI_PREAMBLE_END_BYTE 0xec
@ -50,6 +55,7 @@
* @bus: ID of the bus that the slave is attached to. * @bus: ID of the bus that the slave is attached to.
* @cs: ID of the chip select connected to the slave. * @cs: ID of the chip select connected to the slave.
* @op_mode_rx: SPI RX operation mode. * @op_mode_rx: SPI RX operation mode.
* @op_mode_tx: SPI TX operation mode.
* @wordlen: Size of SPI word in number of bits * @wordlen: Size of SPI word in number of bits
* @max_write_size: If non-zero, the maximum number of bytes which can * @max_write_size: If non-zero, the maximum number of bytes which can
* be written at once, excluding command bytes. * be written at once, excluding command bytes.
@ -59,6 +65,7 @@ struct spi_slave {
unsigned int bus; unsigned int bus;
unsigned int cs; unsigned int cs;
u8 op_mode_rx; u8 op_mode_rx;
u8 op_mode_tx;
unsigned int wordlen; unsigned int wordlen;
unsigned int max_write_size; unsigned int max_write_size;
void *memory_map; void *memory_map;

View file

@ -19,13 +19,18 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/compiler.h> #include <linux/compiler.h>
/* Enum list - Extended read commands */ /* No enum list for write commands only QPP */
#define WR_QPP 1 << 4
/* Enum list - Full read commands */
enum spi_read_cmds { enum spi_read_cmds {
ARRAY_SLOW = 1 << 0, ARRAY_SLOW = 1 << 0,
DUAL_OUTPUT_FAST = 1 << 1, DUAL_OUTPUT_FAST = 1 << 1,
DUAL_IO_FAST = 1 << 2, DUAL_IO_FAST = 1 << 2,
QUAD_OUTPUT_FAST = 1 << 3,
}; };
#define RD_EXTN ARRAY_SLOW | DUAL_OUTPUT_FAST | DUAL_IO_FAST #define RD_EXTN ARRAY_SLOW | DUAL_OUTPUT_FAST | DUAL_IO_FAST
#define RD_FULL RD_EXTN | QUAD_OUTPUT_FAST
/** /**
* struct spi_flash - SPI flash structure * struct spi_flash - SPI flash structure
@ -41,7 +46,8 @@ enum spi_read_cmds {
* @bank_curr: Current flash bank * @bank_curr: Current flash bank
* @poll_cmd: Poll cmd - for flash erase/program * @poll_cmd: Poll cmd - for flash erase/program
* @erase_cmd: Erase cmd 4K, 32K, 64K * @erase_cmd: Erase cmd 4K, 32K, 64K
* @read_cmd: Read cmd - Array Fast and Extn read * @read_cmd: Read cmd - Array Fast, Extn read and quad read.
* @write_cmd: Write cmd - page and quad program.
* @memory_map: Address of read-only SPI flash access * @memory_map: Address of read-only SPI flash access
* @read: Flash read ops: Read len bytes at offset into buf * @read: Flash read ops: Read len bytes at offset into buf
* Supported cmds: Fast Array Read * Supported cmds: Fast Array Read
@ -67,6 +73,7 @@ struct spi_flash {
u8 poll_cmd; u8 poll_cmd;
u8 erase_cmd; u8 erase_cmd;
u8 read_cmd; u8 read_cmd;
u8 write_cmd;
void *memory_map; void *memory_map;
int (*read)(struct spi_flash *flash, u32 offset, size_t len, void *buf); int (*read)(struct spi_flash *flash, u32 offset, size_t len, void *buf);