Skip to content

Commit ccac858

Browse files
AlvinZhou97ambarus
authored andcommitted
mtd: spi-nor: add Octal DTR support for Macronix flash
Create Macronix specify method for enable Octal DTR mode and set 20 dummy cycles to allow running at the maximum supported frequency for Macronix Octal flash. Use number of dummy cycles which is parse by SFDP then convert it to bit pattern and set in CR2 register. Set CR2 register for enable octal DTR mode. Use Read ID to confirm that enabling/disabling octal DTR mode was successful. Macronix ID format is A-A-B-B-C-C in octal DTR mode. To ensure the successful enablement of octal DTR mode, confirm that the 6-byte data is entirely correct. Co-developed-by: Tudor Ambarus <tudor.ambarus@linaro.org> Signed-off-by: Tudor Ambarus <tudor.ambarus@linaro.org> Signed-off-by: JaimeLiao <jaimeliao@mxic.com.tw> Signed-off-by: AlvinZhou <alvinzhou@mxic.com.tw> Link: https://lore.kernel.org/r/20240926141956.2386374-2-alvinzhou.tw@gmail.com
1 parent 50cb86f commit ccac858

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

drivers/mtd/spi-nor/macronix.c

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@
88

99
#include "core.h"
1010

11+
#define MXIC_NOR_OP_RD_CR2 0x71 /* Read configuration register 2 opcode */
12+
#define MXIC_NOR_OP_WR_CR2 0x72 /* Write configuration register 2 opcode */
13+
#define MXIC_NOR_ADDR_CR2_MODE 0x00000000 /* CR2 address for setting spi/sopi/dopi mode */
14+
#define MXIC_NOR_ADDR_CR2_DC 0x00000300 /* CR2 address for setting dummy cycles */
15+
#define MXIC_NOR_REG_DOPI_EN 0x2 /* Enable Octal DTR */
16+
#define MXIC_NOR_REG_SPI_EN 0x0 /* Enable SPI */
17+
18+
/* Convert dummy cycles to bit pattern */
19+
#define MXIC_NOR_REG_DC(p) \
20+
((20 - (p)) >> 1)
21+
22+
#define MXIC_NOR_WR_CR2(addr, ndata, buf) \
23+
SPI_MEM_OP(SPI_MEM_OP_CMD(MXIC_NOR_OP_WR_CR2, 0), \
24+
SPI_MEM_OP_ADDR(4, addr, 0), \
25+
SPI_MEM_OP_NO_DUMMY, \
26+
SPI_MEM_OP_DATA_OUT(ndata, buf, 0))
27+
1128
static int
1229
mx25l25635_post_bfpt_fixups(struct spi_nor *nor,
1330
const struct sfdp_parameter_header *bfpt_header,
@@ -185,6 +202,78 @@ static const struct flash_info macronix_nor_parts[] = {
185202
}
186203
};
187204

205+
static int macronix_nor_octal_dtr_en(struct spi_nor *nor)
206+
{
207+
struct spi_mem_op op;
208+
u8 *buf = nor->bouncebuf, i;
209+
int ret;
210+
211+
/* Use dummy cycles which is parse by SFDP and convert to bit pattern. */
212+
buf[0] = MXIC_NOR_REG_DC(nor->params->reads[SNOR_CMD_READ_8_8_8_DTR].num_wait_states);
213+
op = (struct spi_mem_op)MXIC_NOR_WR_CR2(MXIC_NOR_ADDR_CR2_DC, 1, buf);
214+
ret = spi_nor_write_any_volatile_reg(nor, &op, nor->reg_proto);
215+
if (ret)
216+
return ret;
217+
218+
/* Set the octal and DTR enable bits. */
219+
buf[0] = MXIC_NOR_REG_DOPI_EN;
220+
op = (struct spi_mem_op)MXIC_NOR_WR_CR2(MXIC_NOR_ADDR_CR2_MODE, 1, buf);
221+
ret = spi_nor_write_any_volatile_reg(nor, &op, nor->reg_proto);
222+
if (ret)
223+
return ret;
224+
225+
/* Read flash ID to make sure the switch was successful. */
226+
ret = spi_nor_read_id(nor, 4, 4, buf, SNOR_PROTO_8_8_8_DTR);
227+
if (ret) {
228+
dev_dbg(nor->dev, "error %d reading JEDEC ID after enabling 8D-8D-8D mode\n", ret);
229+
return ret;
230+
}
231+
232+
/* Macronix SPI-NOR flash 8D-8D-8D read ID would get 6 bytes data A-A-B-B-C-C */
233+
for (i = 0; i < nor->info->id->len; i++)
234+
if (buf[i * 2] != buf[(i * 2) + 1] || buf[i * 2] != nor->info->id->bytes[i])
235+
return -EINVAL;
236+
237+
return 0;
238+
}
239+
240+
static int macronix_nor_octal_dtr_dis(struct spi_nor *nor)
241+
{
242+
struct spi_mem_op op;
243+
u8 *buf = nor->bouncebuf;
244+
int ret;
245+
246+
/*
247+
* The register is 1-byte wide, but 1-byte transactions are not
248+
* allowed in 8D-8D-8D mode. Since there is no register at the
249+
* next location, just initialize the value to 0 and let the
250+
* transaction go on.
251+
*/
252+
buf[0] = MXIC_NOR_REG_SPI_EN;
253+
buf[1] = 0x0;
254+
op = (struct spi_mem_op)MXIC_NOR_WR_CR2(MXIC_NOR_ADDR_CR2_MODE, 2, buf);
255+
ret = spi_nor_write_any_volatile_reg(nor, &op, SNOR_PROTO_8_8_8_DTR);
256+
if (ret)
257+
return ret;
258+
259+
/* Read flash ID to make sure the switch was successful. */
260+
ret = spi_nor_read_id(nor, 0, 0, buf, SNOR_PROTO_1_1_1);
261+
if (ret) {
262+
dev_dbg(nor->dev, "error %d reading JEDEC ID after disabling 8D-8D-8D mode\n", ret);
263+
return ret;
264+
}
265+
266+
if (memcmp(buf, nor->info->id->bytes, nor->info->id->len))
267+
return -EINVAL;
268+
269+
return 0;
270+
}
271+
272+
static int macronix_nor_set_octal_dtr(struct spi_nor *nor, bool enable)
273+
{
274+
return enable ? macronix_nor_octal_dtr_en(nor) : macronix_nor_octal_dtr_dis(nor);
275+
}
276+
188277
static void macronix_nor_default_init(struct spi_nor *nor)
189278
{
190279
nor->params->quad_enable = spi_nor_sr1_bit6_quad_enable;
@@ -194,6 +283,7 @@ static int macronix_nor_late_init(struct spi_nor *nor)
194283
{
195284
if (!nor->params->set_4byte_addr_mode)
196285
nor->params->set_4byte_addr_mode = spi_nor_set_4byte_addr_mode_en4b_ex4b;
286+
nor->params->set_octal_dtr = macronix_nor_set_octal_dtr;
197287

198288
return 0;
199289
}

0 commit comments

Comments
 (0)