Commit c8f22b02 authored by Boris Brezillon's avatar Boris Brezillon

Merge tag 'spi-nor/for-4.16' of git://git.infradead.org/linux-mtd into mtd/next

Pull spi-nor changes from Cyrille Pitchen:

"
  This pull-request contains the following notable changes:

  Core changes:
  * Add support to new ISSI and Cypress/Spansion memory parts.
  * Fix support of Micron memories by checking error bits in the FSR.
  * Fix update of block-protection bits by reading back the SR.
  * Restore the internal state of the SPI flash memory when removing the
    device.

  Driver changes:
  * Maintenance for Freescale, Intel and Metiatek drivers.
  * Add support of the direct access mode for the Cadence QSPI controller.
"
parents 0aede42e 23bae78e
...@@ -12,7 +12,7 @@ Required properties: ...@@ -12,7 +12,7 @@ Required properties:
- reg-names: Should contain the reg names "QuadSPI" and "QuadSPI-memory" - reg-names: Should contain the reg names "QuadSPI" and "QuadSPI-memory"
- interrupts : Should contain the interrupt for the device - interrupts : Should contain the interrupt for the device
- clocks : The clocks needed by the QuadSPI controller - clocks : The clocks needed by the QuadSPI controller
- clock-names : the name of the clocks - clock-names : Should contain the name of the clocks: "qspi_en" and "qspi".
Optional properties: Optional properties:
- fsl,qspi-has-second-chip: The controller has two buses, bus A and bus B. - fsl,qspi-has-second-chip: The controller has two buses, bus A and bus B.
......
...@@ -60,3 +60,6 @@ The main API is spi_nor_scan(). Before you call the hook, a driver should ...@@ -60,3 +60,6 @@ The main API is spi_nor_scan(). Before you call the hook, a driver should
initialize the necessary fields for spi_nor{}. Please see initialize the necessary fields for spi_nor{}. Please see
drivers/mtd/spi-nor/spi-nor.c for detail. Please also refer to fsl-quadspi.c drivers/mtd/spi-nor/spi-nor.c for detail. Please also refer to fsl-quadspi.c
when you want to write a new driver for a SPI NOR controller. when you want to write a new driver for a SPI NOR controller.
Another API is spi_nor_restore(), this is used to restore the status of SPI
flash chip such as addressing mode. Call it whenever detach the driver from
device or reboot the system.
...@@ -307,10 +307,18 @@ static int m25p_remove(struct spi_device *spi) ...@@ -307,10 +307,18 @@ static int m25p_remove(struct spi_device *spi)
{ {
struct m25p *flash = spi_get_drvdata(spi); struct m25p *flash = spi_get_drvdata(spi);
spi_nor_restore(&flash->spi_nor);
/* Clean up MTD stuff. */ /* Clean up MTD stuff. */
return mtd_device_unregister(&flash->spi_nor.mtd); return mtd_device_unregister(&flash->spi_nor.mtd);
} }
static void m25p_shutdown(struct spi_device *spi)
{
struct m25p *flash = spi_get_drvdata(spi);
spi_nor_restore(&flash->spi_nor);
}
/* /*
* Do NOT add to this array without reading the following: * Do NOT add to this array without reading the following:
* *
...@@ -386,6 +394,7 @@ static struct spi_driver m25p80_driver = { ...@@ -386,6 +394,7 @@ static struct spi_driver m25p80_driver = {
.id_table = m25p_ids, .id_table = m25p_ids,
.probe = m25p_probe, .probe = m25p_probe,
.remove = m25p_remove, .remove = m25p_remove,
.shutdown = m25p_shutdown,
/* REVISIT: many of these chips have deep power-down modes, which /* REVISIT: many of these chips have deep power-down modes, which
* should clearly be entered on suspend() to minimize power use. * should clearly be entered on suspend() to minimize power use.
......
...@@ -58,6 +58,7 @@ struct cqspi_flash_pdata { ...@@ -58,6 +58,7 @@ struct cqspi_flash_pdata {
u8 data_width; u8 data_width;
u8 cs; u8 cs;
bool registered; bool registered;
bool use_direct_mode;
}; };
struct cqspi_st { struct cqspi_st {
...@@ -68,6 +69,7 @@ struct cqspi_st { ...@@ -68,6 +69,7 @@ struct cqspi_st {
void __iomem *iobase; void __iomem *iobase;
void __iomem *ahb_base; void __iomem *ahb_base;
resource_size_t ahb_size;
struct completion transfer_complete; struct completion transfer_complete;
struct mutex bus_mutex; struct mutex bus_mutex;
...@@ -103,6 +105,7 @@ struct cqspi_st { ...@@ -103,6 +105,7 @@ struct cqspi_st {
/* Register map */ /* Register map */
#define CQSPI_REG_CONFIG 0x00 #define CQSPI_REG_CONFIG 0x00
#define CQSPI_REG_CONFIG_ENABLE_MASK BIT(0) #define CQSPI_REG_CONFIG_ENABLE_MASK BIT(0)
#define CQSPI_REG_CONFIG_ENB_DIR_ACC_CTRL BIT(7)
#define CQSPI_REG_CONFIG_DECODE_MASK BIT(9) #define CQSPI_REG_CONFIG_DECODE_MASK BIT(9)
#define CQSPI_REG_CONFIG_CHIPSELECT_LSB 10 #define CQSPI_REG_CONFIG_CHIPSELECT_LSB 10
#define CQSPI_REG_CONFIG_DMA_MASK BIT(15) #define CQSPI_REG_CONFIG_DMA_MASK BIT(15)
...@@ -450,8 +453,7 @@ static int cqspi_command_write_addr(struct spi_nor *nor, ...@@ -450,8 +453,7 @@ static int cqspi_command_write_addr(struct spi_nor *nor,
return cqspi_exec_flash_cmd(cqspi, reg); return cqspi_exec_flash_cmd(cqspi, reg);
} }
static int cqspi_indirect_read_setup(struct spi_nor *nor, static int cqspi_read_setup(struct spi_nor *nor)
const unsigned int from_addr)
{ {
struct cqspi_flash_pdata *f_pdata = nor->priv; struct cqspi_flash_pdata *f_pdata = nor->priv;
struct cqspi_st *cqspi = f_pdata->cqspi; struct cqspi_st *cqspi = f_pdata->cqspi;
...@@ -459,8 +461,6 @@ static int cqspi_indirect_read_setup(struct spi_nor *nor, ...@@ -459,8 +461,6 @@ static int cqspi_indirect_read_setup(struct spi_nor *nor,
unsigned int dummy_clk = 0; unsigned int dummy_clk = 0;
unsigned int reg; unsigned int reg;
writel(from_addr, reg_base + CQSPI_REG_INDIRECTRDSTARTADDR);
reg = nor->read_opcode << CQSPI_REG_RD_INSTR_OPCODE_LSB; reg = nor->read_opcode << CQSPI_REG_RD_INSTR_OPCODE_LSB;
reg |= cqspi_calc_rdreg(nor, nor->read_opcode); reg |= cqspi_calc_rdreg(nor, nor->read_opcode);
...@@ -493,8 +493,8 @@ static int cqspi_indirect_read_setup(struct spi_nor *nor, ...@@ -493,8 +493,8 @@ static int cqspi_indirect_read_setup(struct spi_nor *nor,
return 0; return 0;
} }
static int cqspi_indirect_read_execute(struct spi_nor *nor, static int cqspi_indirect_read_execute(struct spi_nor *nor, u8 *rxbuf,
u8 *rxbuf, const unsigned n_rx) loff_t from_addr, const size_t n_rx)
{ {
struct cqspi_flash_pdata *f_pdata = nor->priv; struct cqspi_flash_pdata *f_pdata = nor->priv;
struct cqspi_st *cqspi = f_pdata->cqspi; struct cqspi_st *cqspi = f_pdata->cqspi;
...@@ -504,6 +504,7 @@ static int cqspi_indirect_read_execute(struct spi_nor *nor, ...@@ -504,6 +504,7 @@ static int cqspi_indirect_read_execute(struct spi_nor *nor,
unsigned int bytes_to_read = 0; unsigned int bytes_to_read = 0;
int ret = 0; int ret = 0;
writel(from_addr, reg_base + CQSPI_REG_INDIRECTRDSTARTADDR);
writel(remaining, reg_base + CQSPI_REG_INDIRECTRDBYTES); writel(remaining, reg_base + CQSPI_REG_INDIRECTRDBYTES);
/* Clear all interrupts. */ /* Clear all interrupts. */
...@@ -570,8 +571,7 @@ static int cqspi_indirect_read_execute(struct spi_nor *nor, ...@@ -570,8 +571,7 @@ static int cqspi_indirect_read_execute(struct spi_nor *nor,
return ret; return ret;
} }
static int cqspi_indirect_write_setup(struct spi_nor *nor, static int cqspi_write_setup(struct spi_nor *nor)
const unsigned int to_addr)
{ {
unsigned int reg; unsigned int reg;
struct cqspi_flash_pdata *f_pdata = nor->priv; struct cqspi_flash_pdata *f_pdata = nor->priv;
...@@ -584,8 +584,6 @@ static int cqspi_indirect_write_setup(struct spi_nor *nor, ...@@ -584,8 +584,6 @@ static int cqspi_indirect_write_setup(struct spi_nor *nor,
reg = cqspi_calc_rdreg(nor, nor->program_opcode); reg = cqspi_calc_rdreg(nor, nor->program_opcode);
writel(reg, reg_base + CQSPI_REG_RD_INSTR); writel(reg, reg_base + CQSPI_REG_RD_INSTR);
writel(to_addr, reg_base + CQSPI_REG_INDIRECTWRSTARTADDR);
reg = readl(reg_base + CQSPI_REG_SIZE); reg = readl(reg_base + CQSPI_REG_SIZE);
reg &= ~CQSPI_REG_SIZE_ADDRESS_MASK; reg &= ~CQSPI_REG_SIZE_ADDRESS_MASK;
reg |= (nor->addr_width - 1); reg |= (nor->addr_width - 1);
...@@ -593,8 +591,8 @@ static int cqspi_indirect_write_setup(struct spi_nor *nor, ...@@ -593,8 +591,8 @@ static int cqspi_indirect_write_setup(struct spi_nor *nor,
return 0; return 0;
} }
static int cqspi_indirect_write_execute(struct spi_nor *nor, static int cqspi_indirect_write_execute(struct spi_nor *nor, loff_t to_addr,
const u8 *txbuf, const unsigned n_tx) const u8 *txbuf, const size_t n_tx)
{ {
const unsigned int page_size = nor->page_size; const unsigned int page_size = nor->page_size;
struct cqspi_flash_pdata *f_pdata = nor->priv; struct cqspi_flash_pdata *f_pdata = nor->priv;
...@@ -604,6 +602,7 @@ static int cqspi_indirect_write_execute(struct spi_nor *nor, ...@@ -604,6 +602,7 @@ static int cqspi_indirect_write_execute(struct spi_nor *nor,
unsigned int write_bytes; unsigned int write_bytes;
int ret; int ret;
writel(to_addr, reg_base + CQSPI_REG_INDIRECTWRSTARTADDR);
writel(remaining, reg_base + CQSPI_REG_INDIRECTWRBYTES); writel(remaining, reg_base + CQSPI_REG_INDIRECTWRBYTES);
/* Clear all interrupts. */ /* Clear all interrupts. */
...@@ -894,17 +893,22 @@ static int cqspi_set_protocol(struct spi_nor *nor, const int read) ...@@ -894,17 +893,22 @@ static int cqspi_set_protocol(struct spi_nor *nor, const int read)
static ssize_t cqspi_write(struct spi_nor *nor, loff_t to, static ssize_t cqspi_write(struct spi_nor *nor, loff_t to,
size_t len, const u_char *buf) size_t len, const u_char *buf)
{ {
struct cqspi_flash_pdata *f_pdata = nor->priv;
struct cqspi_st *cqspi = f_pdata->cqspi;
int ret; int ret;
ret = cqspi_set_protocol(nor, 0); ret = cqspi_set_protocol(nor, 0);
if (ret) if (ret)
return ret; return ret;
ret = cqspi_indirect_write_setup(nor, to); ret = cqspi_write_setup(nor);
if (ret) if (ret)
return ret; return ret;
ret = cqspi_indirect_write_execute(nor, buf, len); if (f_pdata->use_direct_mode)
memcpy_toio(cqspi->ahb_base + to, buf, len);
else
ret = cqspi_indirect_write_execute(nor, to, buf, len);
if (ret) if (ret)
return ret; return ret;
...@@ -914,17 +918,22 @@ static ssize_t cqspi_write(struct spi_nor *nor, loff_t to, ...@@ -914,17 +918,22 @@ static ssize_t cqspi_write(struct spi_nor *nor, loff_t to,
static ssize_t cqspi_read(struct spi_nor *nor, loff_t from, static ssize_t cqspi_read(struct spi_nor *nor, loff_t from,
size_t len, u_char *buf) size_t len, u_char *buf)
{ {
struct cqspi_flash_pdata *f_pdata = nor->priv;
struct cqspi_st *cqspi = f_pdata->cqspi;
int ret; int ret;
ret = cqspi_set_protocol(nor, 1); ret = cqspi_set_protocol(nor, 1);
if (ret) if (ret)
return ret; return ret;
ret = cqspi_indirect_read_setup(nor, from); ret = cqspi_read_setup(nor);
if (ret) if (ret)
return ret; return ret;
ret = cqspi_indirect_read_execute(nor, buf, len); if (f_pdata->use_direct_mode)
memcpy_fromio(buf, cqspi->ahb_base + from, len);
else
ret = cqspi_indirect_read_execute(nor, buf, from, len);
if (ret) if (ret)
return ret; return ret;
...@@ -1059,6 +1068,8 @@ static int cqspi_of_get_pdata(struct platform_device *pdev) ...@@ -1059,6 +1068,8 @@ static int cqspi_of_get_pdata(struct platform_device *pdev)
static void cqspi_controller_init(struct cqspi_st *cqspi) static void cqspi_controller_init(struct cqspi_st *cqspi)
{ {
u32 reg;
cqspi_controller_enable(cqspi, 0); cqspi_controller_enable(cqspi, 0);
/* Configure the remap address register, no remap */ /* Configure the remap address register, no remap */
...@@ -1081,6 +1092,11 @@ static void cqspi_controller_init(struct cqspi_st *cqspi) ...@@ -1081,6 +1092,11 @@ static void cqspi_controller_init(struct cqspi_st *cqspi)
writel(cqspi->fifo_depth * cqspi->fifo_width / 8, writel(cqspi->fifo_depth * cqspi->fifo_width / 8,
cqspi->iobase + CQSPI_REG_INDIRECTWRWATERMARK); cqspi->iobase + CQSPI_REG_INDIRECTWRWATERMARK);
/* Enable Direct Access Controller */
reg = readl(cqspi->iobase + CQSPI_REG_CONFIG);
reg |= CQSPI_REG_CONFIG_ENB_DIR_ACC_CTRL;
writel(reg, cqspi->iobase + CQSPI_REG_CONFIG);
cqspi_controller_enable(cqspi, 1); cqspi_controller_enable(cqspi, 1);
} }
...@@ -1156,6 +1172,12 @@ static int cqspi_setup_flash(struct cqspi_st *cqspi, struct device_node *np) ...@@ -1156,6 +1172,12 @@ static int cqspi_setup_flash(struct cqspi_st *cqspi, struct device_node *np)
goto err; goto err;
f_pdata->registered = true; f_pdata->registered = true;
if (mtd->size <= cqspi->ahb_size) {
f_pdata->use_direct_mode = true;
dev_dbg(nor->dev, "using direct mode for %s\n",
mtd->name);
}
} }
return 0; return 0;
...@@ -1215,6 +1237,7 @@ static int cqspi_probe(struct platform_device *pdev) ...@@ -1215,6 +1237,7 @@ static int cqspi_probe(struct platform_device *pdev)
dev_err(dev, "Cannot remap AHB address.\n"); dev_err(dev, "Cannot remap AHB address.\n");
return PTR_ERR(cqspi->ahb_base); return PTR_ERR(cqspi->ahb_base);
} }
cqspi->ahb_size = resource_size(res_ahb);
init_completion(&cqspi->transfer_complete); init_completion(&cqspi->transfer_complete);
......
...@@ -801,10 +801,10 @@ static int fsl_qspi_nor_setup_last(struct fsl_qspi *q) ...@@ -801,10 +801,10 @@ static int fsl_qspi_nor_setup_last(struct fsl_qspi *q)
} }
static const struct of_device_id fsl_qspi_dt_ids[] = { static const struct of_device_id fsl_qspi_dt_ids[] = {
{ .compatible = "fsl,vf610-qspi", .data = (void *)&vybrid_data, }, { .compatible = "fsl,vf610-qspi", .data = &vybrid_data, },
{ .compatible = "fsl,imx6sx-qspi", .data = (void *)&imx6sx_data, }, { .compatible = "fsl,imx6sx-qspi", .data = &imx6sx_data, },
{ .compatible = "fsl,imx7d-qspi", .data = (void *)&imx7d_data, }, { .compatible = "fsl,imx7d-qspi", .data = &imx7d_data, },
{ .compatible = "fsl,imx6ul-qspi", .data = (void *)&imx6ul_data, }, { .compatible = "fsl,imx6ul-qspi", .data = &imx6ul_data, },
{ .compatible = "fsl,ls1021a-qspi", .data = (void *)&ls1021a_data, }, { .compatible = "fsl,ls1021a-qspi", .data = (void *)&ls1021a_data, },
{ /* sentinel */ } { /* sentinel */ }
}; };
......
...@@ -138,7 +138,6 @@ ...@@ -138,7 +138,6 @@
* @erase_64k: 64k erase supported * @erase_64k: 64k erase supported
* @opcodes: Opcodes which are supported. This are programmed by BIOS * @opcodes: Opcodes which are supported. This are programmed by BIOS
* before it locks down the controller. * before it locks down the controller.
* @preopcodes: Preopcodes which are supported.
*/ */
struct intel_spi { struct intel_spi {
struct device *dev; struct device *dev;
...@@ -155,7 +154,6 @@ struct intel_spi { ...@@ -155,7 +154,6 @@ struct intel_spi {
bool swseq_erase; bool swseq_erase;
bool erase_64k; bool erase_64k;
u8 opcodes[8]; u8 opcodes[8];
u8 preopcodes[2];
}; };
static bool writeable; static bool writeable;
...@@ -400,10 +398,6 @@ static int intel_spi_init(struct intel_spi *ispi) ...@@ -400,10 +398,6 @@ static int intel_spi_init(struct intel_spi *ispi)
ispi->opcodes[i] = opmenu0 >> i * 8; ispi->opcodes[i] = opmenu0 >> i * 8;
ispi->opcodes[i + 4] = opmenu1 >> i * 8; ispi->opcodes[i + 4] = opmenu1 >> i * 8;
} }
val = readl(ispi->sregs + PREOP_OPTYPE);
ispi->preopcodes[0] = val;
ispi->preopcodes[1] = val >> 8;
} }
} }
......
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
#define MTK_NOR_PRG_REG(n) (MTK_NOR_PRGDATA0_REG + 4 * (n)) #define MTK_NOR_PRG_REG(n) (MTK_NOR_PRGDATA0_REG + 4 * (n))
#define MTK_NOR_SHREG(n) (MTK_NOR_SHREG0_REG + 4 * (n)) #define MTK_NOR_SHREG(n) (MTK_NOR_SHREG0_REG + 4 * (n))
struct mt8173_nor { struct mtk_nor {
struct spi_nor nor; struct spi_nor nor;
struct device *dev; struct device *dev;
void __iomem *base; /* nor flash base address */ void __iomem *base; /* nor flash base address */
...@@ -118,48 +118,48 @@ struct mt8173_nor { ...@@ -118,48 +118,48 @@ struct mt8173_nor {
struct clk *nor_clk; struct clk *nor_clk;
}; };
static void mt8173_nor_set_read_mode(struct mt8173_nor *mt8173_nor) static void mtk_nor_set_read_mode(struct mtk_nor *mtk_nor)
{ {
struct spi_nor *nor = &mt8173_nor->nor; struct spi_nor *nor = &mtk_nor->nor;
switch (nor->read_proto) { switch (nor->read_proto) {
case SNOR_PROTO_1_1_1: case SNOR_PROTO_1_1_1:
writeb(nor->read_opcode, mt8173_nor->base + writeb(nor->read_opcode, mtk_nor->base +
MTK_NOR_PRGDATA3_REG); MTK_NOR_PRGDATA3_REG);
writeb(MTK_NOR_FAST_READ, mt8173_nor->base + writeb(MTK_NOR_FAST_READ, mtk_nor->base +
MTK_NOR_CFG1_REG); MTK_NOR_CFG1_REG);
break; break;
case SNOR_PROTO_1_1_2: case SNOR_PROTO_1_1_2:
writeb(nor->read_opcode, mt8173_nor->base + writeb(nor->read_opcode, mtk_nor->base +
MTK_NOR_PRGDATA3_REG); MTK_NOR_PRGDATA3_REG);
writeb(MTK_NOR_DUAL_READ_EN, mt8173_nor->base + writeb(MTK_NOR_DUAL_READ_EN, mtk_nor->base +
MTK_NOR_DUAL_REG); MTK_NOR_DUAL_REG);
break; break;
case SNOR_PROTO_1_1_4: case SNOR_PROTO_1_1_4:
writeb(nor->read_opcode, mt8173_nor->base + writeb(nor->read_opcode, mtk_nor->base +
MTK_NOR_PRGDATA4_REG); MTK_NOR_PRGDATA4_REG);
writeb(MTK_NOR_QUAD_READ_EN, mt8173_nor->base + writeb(MTK_NOR_QUAD_READ_EN, mtk_nor->base +
MTK_NOR_DUAL_REG); MTK_NOR_DUAL_REG);
break; break;
default: default:
writeb(MTK_NOR_DUAL_DISABLE, mt8173_nor->base + writeb(MTK_NOR_DUAL_DISABLE, mtk_nor->base +
MTK_NOR_DUAL_REG); MTK_NOR_DUAL_REG);
break; break;
} }
} }
static int mt8173_nor_execute_cmd(struct mt8173_nor *mt8173_nor, u8 cmdval) static int mtk_nor_execute_cmd(struct mtk_nor *mtk_nor, u8 cmdval)
{ {
int reg; int reg;
u8 val = cmdval & 0x1f; u8 val = cmdval & 0x1f;
writeb(cmdval, mt8173_nor->base + MTK_NOR_CMD_REG); writeb(cmdval, mtk_nor->base + MTK_NOR_CMD_REG);
return readl_poll_timeout(mt8173_nor->base + MTK_NOR_CMD_REG, reg, return readl_poll_timeout(mtk_nor->base + MTK_NOR_CMD_REG, reg,
!(reg & val), 100, 10000); !(reg & val), 100, 10000);
} }
static int mt8173_nor_do_tx_rx(struct mt8173_nor *mt8173_nor, u8 op, static int mtk_nor_do_tx_rx(struct mtk_nor *mtk_nor, u8 op,
u8 *tx, int txlen, u8 *rx, int rxlen) u8 *tx, int txlen, u8 *rx, int rxlen)
{ {
int len = 1 + txlen + rxlen; int len = 1 + txlen + rxlen;
int i, ret, idx; int i, ret, idx;
...@@ -167,26 +167,26 @@ static int mt8173_nor_do_tx_rx(struct mt8173_nor *mt8173_nor, u8 op, ...@@ -167,26 +167,26 @@ static int mt8173_nor_do_tx_rx(struct mt8173_nor *mt8173_nor, u8 op,
if (len > MTK_NOR_MAX_SHIFT) if (len > MTK_NOR_MAX_SHIFT)
return -EINVAL; return -EINVAL;
writeb(len * 8, mt8173_nor->base + MTK_NOR_CNT_REG); writeb(len * 8, mtk_nor->base + MTK_NOR_CNT_REG);
/* start at PRGDATA5, go down to PRGDATA0 */ /* start at PRGDATA5, go down to PRGDATA0 */
idx = MTK_NOR_MAX_RX_TX_SHIFT - 1; idx = MTK_NOR_MAX_RX_TX_SHIFT - 1;
/* opcode */ /* opcode */
writeb(op, mt8173_nor->base + MTK_NOR_PRG_REG(idx)); writeb(op, mtk_nor->base + MTK_NOR_PRG_REG(idx));
idx--; idx--;
/* program TX data */ /* program TX data */
for (i = 0; i < txlen; i++, idx--) for (i = 0; i < txlen; i++, idx--)
writeb(tx[i], mt8173_nor->base + MTK_NOR_PRG_REG(idx)); writeb(tx[i], mtk_nor->base + MTK_NOR_PRG_REG(idx));
/* clear out rest of TX registers */ /* clear out rest of TX registers */
while (idx >= 0) { while (idx >= 0) {
writeb(0, mt8173_nor->base + MTK_NOR_PRG_REG(idx)); writeb(0, mtk_nor->base + MTK_NOR_PRG_REG(idx));
idx--; idx--;
} }
ret = mt8173_nor_execute_cmd(mt8173_nor, MTK_NOR_PRG_CMD); ret = mtk_nor_execute_cmd(mtk_nor, MTK_NOR_PRG_CMD);
if (ret) if (ret)
return ret; return ret;
...@@ -195,20 +195,20 @@ static int mt8173_nor_do_tx_rx(struct mt8173_nor *mt8173_nor, u8 op, ...@@ -195,20 +195,20 @@ static int mt8173_nor_do_tx_rx(struct mt8173_nor *mt8173_nor, u8 op,
/* read out RX data */ /* read out RX data */
for (i = 0; i < rxlen; i++, idx--) for (i = 0; i < rxlen; i++, idx--)
rx[i] = readb(mt8173_nor->base + MTK_NOR_SHREG(idx)); rx[i] = readb(mtk_nor->base + MTK_NOR_SHREG(idx));
return 0; return 0;
} }
/* Do a WRSR (Write Status Register) command */ /* Do a WRSR (Write Status Register) command */
static int mt8173_nor_wr_sr(struct mt8173_nor *mt8173_nor, u8 sr) static int mtk_nor_wr_sr(struct mtk_nor *mtk_nor, u8 sr)
{ {
writeb(sr, mt8173_nor->base + MTK_NOR_PRGDATA5_REG); writeb(sr, mtk_nor->base + MTK_NOR_PRGDATA5_REG);
writeb(8, mt8173_nor->base + MTK_NOR_CNT_REG); writeb(8, mtk_nor->base + MTK_NOR_CNT_REG);
return mt8173_nor_execute_cmd(mt8173_nor, MTK_NOR_WRSR_CMD); return mtk_nor_execute_cmd(mtk_nor, MTK_NOR_WRSR_CMD);
} }
static int mt8173_nor_write_buffer_enable(struct mt8173_nor *mt8173_nor) static int mtk_nor_write_buffer_enable(struct mtk_nor *mtk_nor)
{ {
u8 reg; u8 reg;
...@@ -216,27 +216,27 @@ static int mt8173_nor_write_buffer_enable(struct mt8173_nor *mt8173_nor) ...@@ -216,27 +216,27 @@ static int mt8173_nor_write_buffer_enable(struct mt8173_nor *mt8173_nor)
* 0: pre-fetch buffer use for read * 0: pre-fetch buffer use for read
* 1: pre-fetch buffer use for page program * 1: pre-fetch buffer use for page program
*/ */
writel(MTK_NOR_WR_BUF_ENABLE, mt8173_nor->base + MTK_NOR_CFG2_REG); writel(MTK_NOR_WR_BUF_ENABLE, mtk_nor->base + MTK_NOR_CFG2_REG);
return readb_poll_timeout(mt8173_nor->base + MTK_NOR_CFG2_REG, reg, return readb_poll_timeout(mtk_nor->base + MTK_NOR_CFG2_REG, reg,
0x01 == (reg & 0x01), 100, 10000); 0x01 == (reg & 0x01), 100, 10000);
} }
static int mt8173_nor_write_buffer_disable(struct mt8173_nor *mt8173_nor) static int mtk_nor_write_buffer_disable(struct mtk_nor *mtk_nor)
{ {
u8 reg; u8 reg;
writel(MTK_NOR_WR_BUF_DISABLE, mt8173_nor->base + MTK_NOR_CFG2_REG); writel(MTK_NOR_WR_BUF_DISABLE, mtk_nor->base + MTK_NOR_CFG2_REG);
return readb_poll_timeout(mt8173_nor->base + MTK_NOR_CFG2_REG, reg, return readb_poll_timeout(mtk_nor->base + MTK_NOR_CFG2_REG, reg,
MTK_NOR_WR_BUF_DISABLE == (reg & 0x1), 100, MTK_NOR_WR_BUF_DISABLE == (reg & 0x1), 100,
10000); 10000);
} }
static void mt8173_nor_set_addr_width(struct mt8173_nor *mt8173_nor) static void mtk_nor_set_addr_width(struct mtk_nor *mtk_nor)
{ {
u8 val; u8 val;
struct spi_nor *nor = &mt8173_nor->nor; struct spi_nor *nor = &mtk_nor->nor;
val = readb(mt8173_nor->base + MTK_NOR_DUAL_REG); val = readb(mtk_nor->base + MTK_NOR_DUAL_REG);
switch (nor->addr_width) { switch (nor->addr_width) {
case 3: case 3:
...@@ -246,115 +246,115 @@ static void mt8173_nor_set_addr_width(struct mt8173_nor *mt8173_nor) ...@@ -246,115 +246,115 @@ static void mt8173_nor_set_addr_width(struct mt8173_nor *mt8173_nor)
val |= MTK_NOR_4B_ADDR_EN; val |= MTK_NOR_4B_ADDR_EN;
break; break;
default: default:
dev_warn(mt8173_nor->dev, "Unexpected address width %u.\n", dev_warn(mtk_nor->dev, "Unexpected address width %u.\n",
nor->addr_width); nor->addr_width);
break; break;
} }
writeb(val, mt8173_nor->base + MTK_NOR_DUAL_REG); writeb(val, mtk_nor->base + MTK_NOR_DUAL_REG);
} }
static void mt8173_nor_set_addr(struct mt8173_nor *mt8173_nor, u32 addr) static void mtk_nor_set_addr(struct mtk_nor *mtk_nor, u32 addr)
{ {
int i; int i;
mt8173_nor_set_addr_width(mt8173_nor); mtk_nor_set_addr_width(mtk_nor);
for (i = 0; i < 3; i++) { for (i = 0; i < 3; i++) {
writeb(addr & 0xff, mt8173_nor->base + MTK_NOR_RADR0_REG + i * 4); writeb(addr & 0xff, mtk_nor->base + MTK_NOR_RADR0_REG + i * 4);
addr >>= 8; addr >>= 8;
} }
/* Last register is non-contiguous */ /* Last register is non-contiguous */
writeb(addr & 0xff, mt8173_nor->base + MTK_NOR_RADR3_REG); writeb(addr & 0xff, mtk_nor->base + MTK_NOR_RADR3_REG);
} }
static ssize_t mt8173_nor_read(struct spi_nor *nor, loff_t from, size_t length, static ssize_t mtk_nor_read(struct spi_nor *nor, loff_t from, size_t length,
u_char *buffer) u_char *buffer)
{ {
int i, ret; int i, ret;
int addr = (int)from; int addr = (int)from;
u8 *buf = (u8 *)buffer; u8 *buf = (u8 *)buffer;
struct mt8173_nor *mt8173_nor = nor->priv; struct mtk_nor *mtk_nor = nor->priv;
/* set mode for fast read mode ,dual mode or quad mode */ /* set mode for fast read mode ,dual mode or quad mode */
mt8173_nor_set_read_mode(mt8173_nor); mtk_nor_set_read_mode(mtk_nor);
mt8173_nor_set_addr(mt8173_nor, addr); mtk_nor_set_addr(mtk_nor, addr);
for (i = 0; i < length; i++) { for (i = 0; i < length; i++) {
ret = mt8173_nor_execute_cmd(mt8173_nor, MTK_NOR_PIO_READ_CMD); ret = mtk_nor_execute_cmd(mtk_nor, MTK_NOR_PIO_READ_CMD);
if (ret < 0) if (ret < 0)
return ret; return ret;
buf[i] = readb(mt8173_nor->base + MTK_NOR_RDATA_REG); buf[i] = readb(mtk_nor->base + MTK_NOR_RDATA_REG);
} }
return length; return length;
} }
static int mt8173_nor_write_single_byte(struct mt8173_nor *mt8173_nor, static int mtk_nor_write_single_byte(struct mtk_nor *mtk_nor,
int addr, int length, u8 *data) int addr, int length, u8 *data)
{ {
int i, ret; int i, ret;
mt8173_nor_set_addr(mt8173_nor, addr); mtk_nor_set_addr(mtk_nor, addr);
for (i = 0; i < length; i++) { for (i = 0; i < length; i++) {
writeb(*data++, mt8173_nor->base + MTK_NOR_WDATA_REG); writeb(*data++, mtk_nor->base + MTK_NOR_WDATA_REG);
ret = mt8173_nor_execute_cmd(mt8173_nor, MTK_NOR_PIO_WR_CMD); ret = mtk_nor_execute_cmd(mtk_nor, MTK_NOR_PIO_WR_CMD);
if (ret < 0) if (ret < 0)
return ret; return ret;
} }
return 0; return 0;
} }
static int mt8173_nor_write_buffer(struct mt8173_nor *mt8173_nor, int addr, static int mtk_nor_write_buffer(struct mtk_nor *mtk_nor, int addr,
const u8 *buf) const u8 *buf)
{ {
int i, bufidx, data; int i, bufidx, data;
mt8173_nor_set_addr(mt8173_nor, addr); mtk_nor_set_addr(mtk_nor, addr);
bufidx = 0; bufidx = 0;
for (i = 0; i < SFLASH_WRBUF_SIZE; i += 4) { for (i = 0; i < SFLASH_WRBUF_SIZE; i += 4) {
data = buf[bufidx + 3]<<24 | buf[bufidx + 2]<<16 | data = buf[bufidx + 3]<<24 | buf[bufidx + 2]<<16 |
buf[bufidx + 1]<<8 | buf[bufidx]; buf[bufidx + 1]<<8 | buf[bufidx];
bufidx += 4; bufidx += 4;
writel(data, mt8173_nor->base + MTK_NOR_PP_DATA_REG); writel(data, mtk_nor->base + MTK_NOR_PP_DATA_REG);
} }
return mt8173_nor_execute_cmd(mt8173_nor, MTK_NOR_WR_CMD); return mtk_nor_execute_cmd(mtk_nor, MTK_NOR_WR_CMD);
} }
static ssize_t mt8173_nor_write(struct spi_nor *nor, loff_t to, size_t len, static ssize_t mtk_nor_write(struct spi_nor *nor, loff_t to, size_t len,
const u_char *buf) const u_char *buf)
{ {
int ret; int ret;
struct mt8173_nor *mt8173_nor = nor->priv; struct mtk_nor *mtk_nor = nor->priv;
size_t i; size_t i;
ret = mt8173_nor_write_buffer_enable(mt8173_nor); ret = mtk_nor_write_buffer_enable(mtk_nor);
if (ret < 0) { if (ret < 0) {
dev_warn(mt8173_nor->dev, "write buffer enable failed!\n"); dev_warn(mtk_nor->dev, "write buffer enable failed!\n");
return ret; return ret;
} }
for (i = 0; i + SFLASH_WRBUF_SIZE <= len; i += SFLASH_WRBUF_SIZE) { for (i = 0; i + SFLASH_WRBUF_SIZE <= len; i += SFLASH_WRBUF_SIZE) {
ret = mt8173_nor_write_buffer(mt8173_nor, to, buf); ret = mtk_nor_write_buffer(mtk_nor, to, buf);
if (ret < 0) { if (ret < 0) {
dev_err(mt8173_nor->dev, "write buffer failed!\n"); dev_err(mtk_nor->dev, "write buffer failed!\n");
return ret; return ret;
} }
to += SFLASH_WRBUF_SIZE; to += SFLASH_WRBUF_SIZE;
buf += SFLASH_WRBUF_SIZE; buf += SFLASH_WRBUF_SIZE;
} }
ret = mt8173_nor_write_buffer_disable(mt8173_nor); ret = mtk_nor_write_buffer_disable(mtk_nor);
if (ret < 0) { if (ret < 0) {
dev_warn(mt8173_nor->dev, "write buffer disable failed!\n"); dev_warn(mtk_nor->dev, "write buffer disable failed!\n");
return ret; return ret;
} }
if (i < len) { if (i < len) {
ret = mt8173_nor_write_single_byte(mt8173_nor, to, ret = mtk_nor_write_single_byte(mtk_nor, to,
(int)(len - i), (u8 *)buf); (int)(len - i), (u8 *)buf);
if (ret < 0) { if (ret < 0) {
dev_err(mt8173_nor->dev, "write single byte failed!\n"); dev_err(mtk_nor->dev, "write single byte failed!\n");
return ret; return ret;
} }
} }
...@@ -362,72 +362,72 @@ static ssize_t mt8173_nor_write(struct spi_nor *nor, loff_t to, size_t len, ...@@ -362,72 +362,72 @@ static ssize_t mt8173_nor_write(struct spi_nor *nor, loff_t to, size_t len,
return len; return len;
} }
static int mt8173_nor_read_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len) static int mtk_nor_read_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len)
{ {
int ret; int ret;
struct mt8173_nor *mt8173_nor = nor->priv; struct mtk_nor *mtk_nor = nor->priv;
switch (opcode) { switch (opcode) {
case SPINOR_OP_RDSR: case SPINOR_OP_RDSR:
ret = mt8173_nor_execute_cmd(mt8173_nor, MTK_NOR_RDSR_CMD); ret = mtk_nor_execute_cmd(mtk_nor, MTK_NOR_RDSR_CMD);
if (ret < 0) if (ret < 0)
return ret; return ret;
if (len == 1) if (len == 1)
*buf = readb(mt8173_nor->base + MTK_NOR_RDSR_REG); *buf = readb(mtk_nor->base + MTK_NOR_RDSR_REG);
else else
dev_err(mt8173_nor->dev, "len should be 1 for read status!\n"); dev_err(mtk_nor->dev, "len should be 1 for read status!\n");
break; break;
default: default:
ret = mt8173_nor_do_tx_rx(mt8173_nor, opcode, NULL, 0, buf, len); ret = mtk_nor_do_tx_rx(mtk_nor, opcode, NULL, 0, buf, len);
break; break;
} }
return ret; return ret;
} }
static int mt8173_nor_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, static int mtk_nor_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf,
int len) int len)
{ {
int ret; int ret;
struct mt8173_nor *mt8173_nor = nor->priv; struct mtk_nor *mtk_nor = nor->priv;
switch (opcode) { switch (opcode) {
case SPINOR_OP_WRSR: case SPINOR_OP_WRSR:
/* We only handle 1 byte */ /* We only handle 1 byte */
ret = mt8173_nor_wr_sr(mt8173_nor, *buf); ret = mtk_nor_wr_sr(mtk_nor, *buf);
break; break;
default: default:
ret = mt8173_nor_do_tx_rx(mt8173_nor, opcode, buf, len, NULL, 0); ret = mtk_nor_do_tx_rx(mtk_nor, opcode, buf, len, NULL, 0);
if (ret) if (ret)
dev_warn(mt8173_nor->dev, "write reg failure!\n"); dev_warn(mtk_nor->dev, "write reg failure!\n");
break; break;
} }
return ret; return ret;
} }
static void mt8173_nor_disable_clk(struct mt8173_nor *mt8173_nor) static void mtk_nor_disable_clk(struct mtk_nor *mtk_nor)
{ {
clk_disable_unprepare(mt8173_nor->spi_clk); clk_disable_unprepare(mtk_nor->spi_clk);
clk_disable_unprepare(mt8173_nor->nor_clk); clk_disable_unprepare(mtk_nor->nor_clk);
} }
static int mt8173_nor_enable_clk(struct mt8173_nor *mt8173_nor) static int mtk_nor_enable_clk(struct mtk_nor *mtk_nor)
{ {
int ret; int ret;
ret = clk_prepare_enable(mt8173_nor->spi_clk); ret = clk_prepare_enable(mtk_nor->spi_clk);
if (ret) if (ret)
return ret; return ret;
ret = clk_prepare_enable(mt8173_nor->nor_clk); ret = clk_prepare_enable(mtk_nor->nor_clk);
if (ret) { if (ret) {
clk_disable_unprepare(mt8173_nor->spi_clk); clk_disable_unprepare(mtk_nor->spi_clk);
return ret; return ret;
} }
return 0; return 0;
} }
static int mtk_nor_init(struct mt8173_nor *mt8173_nor, static int mtk_nor_init(struct mtk_nor *mtk_nor,
struct device_node *flash_node) struct device_node *flash_node)
{ {
const struct spi_nor_hwcaps hwcaps = { const struct spi_nor_hwcaps hwcaps = {
...@@ -439,18 +439,18 @@ static int mtk_nor_init(struct mt8173_nor *mt8173_nor, ...@@ -439,18 +439,18 @@ static int mtk_nor_init(struct mt8173_nor *mt8173_nor,
struct spi_nor *nor; struct spi_nor *nor;
/* initialize controller to accept commands */ /* initialize controller to accept commands */
writel(MTK_NOR_ENABLE_SF_CMD, mt8173_nor->base + MTK_NOR_WRPROT_REG); writel(MTK_NOR_ENABLE_SF_CMD, mtk_nor->base + MTK_NOR_WRPROT_REG);
nor = &mt8173_nor->nor; nor = &mtk_nor->nor;
nor->dev = mt8173_nor->dev; nor->dev = mtk_nor->dev;
nor->priv = mt8173_nor; nor->priv = mtk_nor;
spi_nor_set_flash_node(nor, flash_node); spi_nor_set_flash_node(nor, flash_node);
/* fill the hooks to spi nor */ /* fill the hooks to spi nor */
nor->read = mt8173_nor_read; nor->read = mtk_nor_read;
nor->read_reg = mt8173_nor_read_reg; nor->read_reg = mtk_nor_read_reg;
nor->write = mt8173_nor_write; nor->write = mtk_nor_write;
nor->write_reg = mt8173_nor_write_reg; nor->write_reg = mtk_nor_write_reg;
nor->mtd.name = "mtk_nor"; nor->mtd.name = "mtk_nor";
/* initialized with NULL */ /* initialized with NULL */
ret = spi_nor_scan(nor, NULL, &hwcaps); ret = spi_nor_scan(nor, NULL, &hwcaps);
...@@ -465,34 +465,34 @@ static int mtk_nor_drv_probe(struct platform_device *pdev) ...@@ -465,34 +465,34 @@ static int mtk_nor_drv_probe(struct platform_device *pdev)
struct device_node *flash_np; struct device_node *flash_np;
struct resource *res; struct resource *res;
int ret; int ret;
struct mt8173_nor *mt8173_nor; struct mtk_nor *mtk_nor;
if (!pdev->dev.of_node) { if (!pdev->dev.of_node) {
dev_err(&pdev->dev, "No DT found\n"); dev_err(&pdev->dev, "No DT found\n");
return -EINVAL; return -EINVAL;
} }
mt8173_nor = devm_kzalloc(&pdev->dev, sizeof(*mt8173_nor), GFP_KERNEL); mtk_nor = devm_kzalloc(&pdev->dev, sizeof(*mtk_nor), GFP_KERNEL);
if (!mt8173_nor) if (!mtk_nor)
return -ENOMEM; return -ENOMEM;
platform_set_drvdata(pdev, mt8173_nor); platform_set_drvdata(pdev, mtk_nor);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
mt8173_nor->base = devm_ioremap_resource(&pdev->dev, res); mtk_nor->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(mt8173_nor->base)) if (IS_ERR(mtk_nor->base))
return PTR_ERR(mt8173_nor->base); return PTR_ERR(mtk_nor->base);
mt8173_nor->spi_clk = devm_clk_get(&pdev->dev, "spi"); mtk_nor->spi_clk = devm_clk_get(&pdev->dev, "spi");
if (IS_ERR(mt8173_nor->spi_clk)) if (IS_ERR(mtk_nor->spi_clk))
return PTR_ERR(mt8173_nor->spi_clk); return PTR_ERR(mtk_nor->spi_clk);
mt8173_nor->nor_clk = devm_clk_get(&pdev->dev, "sf"); mtk_nor->nor_clk = devm_clk_get(&pdev->dev, "sf");
if (IS_ERR(mt8173_nor->nor_clk)) if (IS_ERR(mtk_nor->nor_clk))
return PTR_ERR(mt8173_nor->nor_clk); return PTR_ERR(mtk_nor->nor_clk);
mt8173_nor->dev = &pdev->dev; mtk_nor->dev = &pdev->dev;
ret = mt8173_nor_enable_clk(mt8173_nor); ret = mtk_nor_enable_clk(mtk_nor);
if (ret) if (ret)
return ret; return ret;
...@@ -503,20 +503,20 @@ static int mtk_nor_drv_probe(struct platform_device *pdev) ...@@ -503,20 +503,20 @@ static int mtk_nor_drv_probe(struct platform_device *pdev)
ret = -ENODEV; ret = -ENODEV;
goto nor_free; goto nor_free;
} }
ret = mtk_nor_init(mt8173_nor, flash_np); ret = mtk_nor_init(mtk_nor, flash_np);
nor_free: nor_free:
if (ret) if (ret)
mt8173_nor_disable_clk(mt8173_nor); mtk_nor_disable_clk(mtk_nor);
return ret; return ret;
} }
static int mtk_nor_drv_remove(struct platform_device *pdev) static int mtk_nor_drv_remove(struct platform_device *pdev)
{ {
struct mt8173_nor *mt8173_nor = platform_get_drvdata(pdev); struct mtk_nor *mtk_nor = platform_get_drvdata(pdev);
mt8173_nor_disable_clk(mt8173_nor); mtk_nor_disable_clk(mtk_nor);
return 0; return 0;
} }
...@@ -524,18 +524,18 @@ static int mtk_nor_drv_remove(struct platform_device *pdev) ...@@ -524,18 +524,18 @@ static int mtk_nor_drv_remove(struct platform_device *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int mtk_nor_suspend(struct device *dev) static int mtk_nor_suspend(struct device *dev)
{ {
struct mt8173_nor *mt8173_nor = dev_get_drvdata(dev); struct mtk_nor *mtk_nor = dev_get_drvdata(dev);
mt8173_nor_disable_clk(mt8173_nor); mtk_nor_disable_clk(mtk_nor);
return 0; return 0;
} }
static int mtk_nor_resume(struct device *dev) static int mtk_nor_resume(struct device *dev)
{ {
struct mt8173_nor *mt8173_nor = dev_get_drvdata(dev); struct mtk_nor *mtk_nor = dev_get_drvdata(dev);
return mt8173_nor_enable_clk(mt8173_nor); return mtk_nor_enable_clk(mtk_nor);
} }
static const struct dev_pm_ops mtk_nor_dev_pm_ops = { static const struct dev_pm_ops mtk_nor_dev_pm_ops = {
......
...@@ -330,8 +330,22 @@ static inline int spi_nor_fsr_ready(struct spi_nor *nor) ...@@ -330,8 +330,22 @@ static inline int spi_nor_fsr_ready(struct spi_nor *nor)
int fsr = read_fsr(nor); int fsr = read_fsr(nor);
if (fsr < 0) if (fsr < 0)
return fsr; return fsr;
else
return fsr & FSR_READY; if (fsr & (FSR_E_ERR | FSR_P_ERR)) {
if (fsr & FSR_E_ERR)
dev_err(nor->dev, "Erase operation failed.\n");
else
dev_err(nor->dev, "Program operation failed.\n");
if (fsr & FSR_PT_ERR)
dev_err(nor->dev,
"Attempted to modify a protected sector.\n");
nor->write_reg(nor, SPINOR_OP_CLFSR, NULL, 0);
return -EIO;
}
return fsr & FSR_READY;
} }
static int spi_nor_ready(struct spi_nor *nor) static int spi_nor_ready(struct spi_nor *nor)
...@@ -552,6 +566,27 @@ static int spi_nor_erase(struct mtd_info *mtd, struct erase_info *instr) ...@@ -552,6 +566,27 @@ static int spi_nor_erase(struct mtd_info *mtd, struct erase_info *instr)
return ret; return ret;
} }
/* Write status register and ensure bits in mask match written values */
static int write_sr_and_check(struct spi_nor *nor, u8 status_new, u8 mask)
{
int ret;
write_enable(nor);
ret = write_sr(nor, status_new);
if (ret)
return ret;
ret = spi_nor_wait_till_ready(nor);
if (ret)
return ret;
ret = read_sr(nor);
if (ret < 0)
return ret;
return ((ret & mask) != (status_new & mask)) ? -EIO : 0;
}
static void stm_get_locked_range(struct spi_nor *nor, u8 sr, loff_t *ofs, static void stm_get_locked_range(struct spi_nor *nor, u8 sr, loff_t *ofs,
uint64_t *len) uint64_t *len)
{ {
...@@ -650,7 +685,6 @@ static int stm_lock(struct spi_nor *nor, loff_t ofs, uint64_t len) ...@@ -650,7 +685,6 @@ static int stm_lock(struct spi_nor *nor, loff_t ofs, uint64_t len)
loff_t lock_len; loff_t lock_len;
bool can_be_top = true, can_be_bottom = nor->flags & SNOR_F_HAS_SR_TB; bool can_be_top = true, can_be_bottom = nor->flags & SNOR_F_HAS_SR_TB;
bool use_top; bool use_top;
int ret;
status_old = read_sr(nor); status_old = read_sr(nor);
if (status_old < 0) if (status_old < 0)
...@@ -714,11 +748,7 @@ static int stm_lock(struct spi_nor *nor, loff_t ofs, uint64_t len) ...@@ -714,11 +748,7 @@ static int stm_lock(struct spi_nor *nor, loff_t ofs, uint64_t len)
if ((status_new & mask) < (status_old & mask)) if ((status_new & mask) < (status_old & mask))
return -EINVAL; return -EINVAL;
write_enable(nor); return write_sr_and_check(nor, status_new, mask);
ret = write_sr(nor, status_new);
if (ret)
return ret;
return spi_nor_wait_till_ready(nor);
} }
/* /*
...@@ -735,7 +765,6 @@ static int stm_unlock(struct spi_nor *nor, loff_t ofs, uint64_t len) ...@@ -735,7 +765,6 @@ static int stm_unlock(struct spi_nor *nor, loff_t ofs, uint64_t len)
loff_t lock_len; loff_t lock_len;
bool can_be_top = true, can_be_bottom = nor->flags & SNOR_F_HAS_SR_TB; bool can_be_top = true, can_be_bottom = nor->flags & SNOR_F_HAS_SR_TB;
bool use_top; bool use_top;
int ret;
status_old = read_sr(nor); status_old = read_sr(nor);
if (status_old < 0) if (status_old < 0)
...@@ -802,11 +831,7 @@ static int stm_unlock(struct spi_nor *nor, loff_t ofs, uint64_t len) ...@@ -802,11 +831,7 @@ static int stm_unlock(struct spi_nor *nor, loff_t ofs, uint64_t len)
if ((status_new & mask) > (status_old & mask)) if ((status_new & mask) > (status_old & mask))
return -EINVAL; return -EINVAL;
write_enable(nor); return write_sr_and_check(nor, status_new, mask);
ret = write_sr(nor, status_new);
if (ret)
return ret;
return spi_nor_wait_till_ready(nor);
} }
/* /*
...@@ -1020,7 +1045,13 @@ static const struct flash_info spi_nor_ids[] = { ...@@ -1020,7 +1045,13 @@ static const struct flash_info spi_nor_ids[] = {
{ "640s33b", INFO(0x898913, 0, 64 * 1024, 128, 0) }, { "640s33b", INFO(0x898913, 0, 64 * 1024, 128, 0) },
/* ISSI */ /* ISSI */
{ "is25cd512", INFO(0x7f9d20, 0, 32 * 1024, 2, SECT_4K) }, { "is25cd512", INFO(0x7f9d20, 0, 32 * 1024, 2, SECT_4K) },
{ "is25lq040b", INFO(0x9d4013, 0, 64 * 1024, 8,
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
{ "is25lp080d", INFO(0x9d6014, 0, 64 * 1024, 16,
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
{ "is25lp128", INFO(0x9d6018, 0, 64 * 1024, 256,
SECT_4K | SPI_NOR_DUAL_READ) },
/* Macronix */ /* Macronix */
{ "mx25l512e", INFO(0xc22010, 0, 64 * 1024, 1, SECT_4K) }, { "mx25l512e", INFO(0xc22010, 0, 64 * 1024, 1, SECT_4K) },
...@@ -1065,7 +1096,7 @@ static const struct flash_info spi_nor_ids[] = { ...@@ -1065,7 +1096,7 @@ static const struct flash_info spi_nor_ids[] = {
{ "pm25lv010", INFO(0, 0, 32 * 1024, 4, SECT_4K_PMC) }, { "pm25lv010", INFO(0, 0, 32 * 1024, 4, SECT_4K_PMC) },
{ "pm25lq032", INFO(0x7f9d46, 0, 64 * 1024, 64, SECT_4K) }, { "pm25lq032", INFO(0x7f9d46, 0, 64 * 1024, 64, SECT_4K) },
/* Spansion -- single (large) sector size only, at least /* Spansion/Cypress -- single (large) sector size only, at least
* for the chips listed here (without boot sectors). * for the chips listed here (without boot sectors).
*/ */
{ "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, { "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
...@@ -1094,6 +1125,8 @@ static const struct flash_info spi_nor_ids[] = { ...@@ -1094,6 +1125,8 @@ static const struct flash_info spi_nor_ids[] = {
{ "s25fl204k", INFO(0x014013, 0, 64 * 1024, 8, SECT_4K | SPI_NOR_DUAL_READ) }, { "s25fl204k", INFO(0x014013, 0, 64 * 1024, 8, SECT_4K | SPI_NOR_DUAL_READ) },
{ "s25fl208k", INFO(0x014014, 0, 64 * 1024, 16, SECT_4K | SPI_NOR_DUAL_READ) }, { "s25fl208k", INFO(0x014014, 0, 64 * 1024, 16, SECT_4K | SPI_NOR_DUAL_READ) },
{ "s25fl064l", INFO(0x016017, 0, 64 * 1024, 128, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) }, { "s25fl064l", INFO(0x016017, 0, 64 * 1024, 128, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
{ "s25fl128l", INFO(0x016018, 0, 64 * 1024, 256, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
{ "s25fl256l", INFO(0x016019, 0, 64 * 1024, 512, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | SPI_NOR_4B_OPCODES) },
/* SST -- large erase sizes are "overlays", "sectors" are 4K */ /* SST -- large erase sizes are "overlays", "sectors" are 4K */
{ "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K | SST_WRITE) }, { "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K | SST_WRITE) },
...@@ -2713,6 +2746,16 @@ static void spi_nor_resume(struct mtd_info *mtd) ...@@ -2713,6 +2746,16 @@ static void spi_nor_resume(struct mtd_info *mtd)
dev_err(dev, "resume() failed\n"); dev_err(dev, "resume() failed\n");
} }
void spi_nor_restore(struct spi_nor *nor)
{
/* restore the addressing mode */
if ((nor->addr_width == 4) &&
(JEDEC_MFR(nor->info) != SNOR_MFR_SPANSION) &&
!(nor->info->flags & SPI_NOR_4B_OPCODES))
set_4byte(nor, nor->info, 0);
}
EXPORT_SYMBOL_GPL(spi_nor_restore);
int spi_nor_scan(struct spi_nor *nor, const char *name, int spi_nor_scan(struct spi_nor *nor, const char *name,
const struct spi_nor_hwcaps *hwcaps) const struct spi_nor_hwcaps *hwcaps)
{ {
......
...@@ -61,6 +61,7 @@ ...@@ -61,6 +61,7 @@
#define SPINOR_OP_RDSFDP 0x5a /* Read SFDP */ #define SPINOR_OP_RDSFDP 0x5a /* Read SFDP */
#define SPINOR_OP_RDCR 0x35 /* Read configuration register */ #define SPINOR_OP_RDCR 0x35 /* Read configuration register */
#define SPINOR_OP_RDFSR 0x70 /* Read flag status register */ #define SPINOR_OP_RDFSR 0x70 /* Read flag status register */
#define SPINOR_OP_CLFSR 0x50 /* Clear flag status register */
/* 4-byte address opcodes - used on Spansion and some Macronix flashes. */ /* 4-byte address opcodes - used on Spansion and some Macronix flashes. */
#define SPINOR_OP_READ_4B 0x13 /* Read data bytes (low frequency) */ #define SPINOR_OP_READ_4B 0x13 /* Read data bytes (low frequency) */
...@@ -130,7 +131,10 @@ ...@@ -130,7 +131,10 @@
#define EVCR_QUAD_EN_MICRON BIT(7) /* Micron Quad I/O */ #define EVCR_QUAD_EN_MICRON BIT(7) /* Micron Quad I/O */
/* Flag Status Register bits */ /* Flag Status Register bits */
#define FSR_READY BIT(7) #define FSR_READY BIT(7) /* Device status, 0 = Busy, 1 = Ready */
#define FSR_E_ERR BIT(5) /* Erase operation status */
#define FSR_P_ERR BIT(4) /* Program operation status */
#define FSR_PT_ERR BIT(1) /* Protection error bit */
/* Configuration Register bits. */ /* Configuration Register bits. */
#define CR_QUAD_EN_SPAN BIT(1) /* Spansion Quad I/O */ #define CR_QUAD_EN_SPAN BIT(1) /* Spansion Quad I/O */
...@@ -399,4 +403,10 @@ struct spi_nor_hwcaps { ...@@ -399,4 +403,10 @@ struct spi_nor_hwcaps {
int spi_nor_scan(struct spi_nor *nor, const char *name, int spi_nor_scan(struct spi_nor *nor, const char *name,
const struct spi_nor_hwcaps *hwcaps); const struct spi_nor_hwcaps *hwcaps);
/**
* spi_nor_restore_addr_mode() - restore the status of SPI NOR
* @nor: the spi_nor structure
*/
void spi_nor_restore(struct spi_nor *nor);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment