Skip to content

Commit 86b6b55

Browse files
ambarusPratyush Yadav
authored andcommitted
mtd: spi-nor: core: Introduce method for RDID op
RDID is used in the core to auto detect the flash, but also by some manufacturer drivers that contain flashes that support Octal DTR mode, so that they can read the flash ID after the switch to Octal DTR was made to test if the switch was successful. Introduce a core method for RDID op to avoid code duplication. Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com> Signed-off-by: Pratyush Yadav <p.yadav@ti.com> Reviewed-by: Michael Walle <michael@walle.cc> Link: https://lore.kernel.org/r/20220420103427.47867-5-tudor.ambarus@microchip.com
1 parent bffabd1 commit 86b6b55

2 files changed

Lines changed: 44 additions & 15 deletions

File tree

drivers/mtd/spi-nor/core.c

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,37 @@ int spi_nor_write_disable(struct spi_nor *nor)
369369
return ret;
370370
}
371371

372+
/**
373+
* spi_nor_read_id() - Read the JEDEC ID.
374+
* @nor: pointer to 'struct spi_nor'.
375+
* @naddr: number of address bytes to send. Can be zero if the operation
376+
* does not need to send an address.
377+
* @ndummy: number of dummy bytes to send after an opcode or address. Can
378+
* be zero if the operation does not require dummy bytes.
379+
* @id: pointer to a DMA-able buffer where the value of the JEDEC ID
380+
* will be written.
381+
* @proto: the SPI protocol for register operation.
382+
*
383+
* Return: 0 on success, -errno otherwise.
384+
*/
385+
int spi_nor_read_id(struct spi_nor *nor, u8 naddr, u8 ndummy, u8 *id,
386+
enum spi_nor_protocol proto)
387+
{
388+
int ret;
389+
390+
if (nor->spimem) {
391+
struct spi_mem_op op =
392+
SPI_NOR_READID_OP(naddr, ndummy, id, SPI_NOR_MAX_ID_LEN);
393+
394+
spi_nor_spimem_setup_op(nor, &op, proto);
395+
ret = spi_mem_exec_op(nor->spimem, &op);
396+
} else {
397+
ret = nor->controller_ops->read_reg(nor, SPINOR_OP_RDID, id,
398+
SPI_NOR_MAX_ID_LEN);
399+
}
400+
return ret;
401+
}
402+
372403
/**
373404
* spi_nor_read_sr() - Read the Status Register.
374405
* @nor: pointer to 'struct spi_nor'.
@@ -1658,24 +1689,13 @@ static const struct flash_info *spi_nor_match_id(struct spi_nor *nor,
16581689
return NULL;
16591690
}
16601691

1661-
static const struct flash_info *spi_nor_read_id(struct spi_nor *nor)
1692+
static const struct flash_info *spi_nor_detect(struct spi_nor *nor)
16621693
{
16631694
const struct flash_info *info;
16641695
u8 *id = nor->bouncebuf;
16651696
int ret;
16661697

1667-
if (nor->spimem) {
1668-
struct spi_mem_op op =
1669-
SPI_MEM_OP(SPI_MEM_OP_CMD(SPINOR_OP_RDID, 1),
1670-
SPI_MEM_OP_NO_ADDR,
1671-
SPI_MEM_OP_NO_DUMMY,
1672-
SPI_MEM_OP_DATA_IN(SPI_NOR_MAX_ID_LEN, id, 1));
1673-
1674-
ret = spi_mem_exec_op(nor->spimem, &op);
1675-
} else {
1676-
ret = nor->controller_ops->read_reg(nor, SPINOR_OP_RDID, id,
1677-
SPI_NOR_MAX_ID_LEN);
1678-
}
1698+
ret = spi_nor_read_id(nor, 0, 0, id, nor->reg_proto);
16791699
if (ret) {
16801700
dev_dbg(nor->dev, "error %d reading JEDEC ID\n", ret);
16811701
return ERR_PTR(ret);
@@ -2909,7 +2929,7 @@ static const struct flash_info *spi_nor_get_flash_info(struct spi_nor *nor,
29092929
info = spi_nor_match_name(nor, name);
29102930
/* Try to auto-detect if chip name wasn't specified or not found */
29112931
if (!info)
2912-
return spi_nor_read_id(nor);
2932+
return spi_nor_detect(nor);
29132933

29142934
/*
29152935
* If caller has specified name of flash model that can normally be
@@ -2918,7 +2938,7 @@ static const struct flash_info *spi_nor_get_flash_info(struct spi_nor *nor,
29182938
if (name && info->id_len) {
29192939
const struct flash_info *jinfo;
29202940

2921-
jinfo = spi_nor_read_id(nor);
2941+
jinfo = spi_nor_detect(nor);
29222942
if (IS_ERR(jinfo)) {
29232943
return jinfo;
29242944
} else if (jinfo != info) {

drivers/mtd/spi-nor/core.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@
1111

1212
#define SPI_NOR_MAX_ID_LEN 6
1313

14+
/* Standard SPI NOR flash operations. */
15+
#define SPI_NOR_READID_OP(naddr, ndummy, buf, len) \
16+
SPI_MEM_OP(SPI_MEM_OP_CMD(SPINOR_OP_RDID, 0), \
17+
SPI_MEM_OP_ADDR(naddr, 0, 0), \
18+
SPI_MEM_OP_DUMMY(ndummy, 0), \
19+
SPI_MEM_OP_DATA_IN(len, buf, 0))
20+
1421
enum spi_nor_option_flags {
1522
SNOR_F_HAS_SR_TB = BIT(0),
1623
SNOR_F_NO_OP_CHIP_ERASE = BIT(1),
@@ -534,6 +541,8 @@ void spi_nor_unlock_and_unprep(struct spi_nor *nor);
534541
int spi_nor_sr1_bit6_quad_enable(struct spi_nor *nor);
535542
int spi_nor_sr2_bit1_quad_enable(struct spi_nor *nor);
536543
int spi_nor_sr2_bit7_quad_enable(struct spi_nor *nor);
544+
int spi_nor_read_id(struct spi_nor *nor, u8 naddr, u8 ndummy, u8 *id,
545+
enum spi_nor_protocol reg_proto);
537546
int spi_nor_read_sr(struct spi_nor *nor, u8 *sr);
538547
int spi_nor_sr_ready(struct spi_nor *nor);
539548
int spi_nor_read_cr(struct spi_nor *nor, u8 *cr);

0 commit comments

Comments
 (0)