Skip to content

Commit 79a064c

Browse files
author
Joel Slebodnick
committed
mtd: spi-nor: core: Introduce method for RDID op
JIRA: https://issues.redhat.com/browse/RHEL-40636 commit 86b6b55 Author: Tudor Ambarus <tudor.ambarus@microchip.com> Date: Wed Apr 20 13:34:20 2022 +0300 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 Signed-off-by: Joel Slebodnick <jslebodn@redhat.com>
1 parent 8e4bdda commit 79a064c

File tree

2 files changed

+44
-15
lines changed

2 files changed

+44
-15
lines changed

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'.
@@ -1868,24 +1899,13 @@ static const struct flash_info *spi_nor_match_id(struct spi_nor *nor,
18681899
return NULL;
18691900
}
18701901

1871-
static const struct flash_info *spi_nor_read_id(struct spi_nor *nor)
1902+
static const struct flash_info *spi_nor_detect(struct spi_nor *nor)
18721903
{
18731904
const struct flash_info *info;
18741905
u8 *id = nor->bouncebuf;
18751906
int ret;
18761907

1877-
if (nor->spimem) {
1878-
struct spi_mem_op op =
1879-
SPI_MEM_OP(SPI_MEM_OP_CMD(SPINOR_OP_RDID, 1),
1880-
SPI_MEM_OP_NO_ADDR,
1881-
SPI_MEM_OP_NO_DUMMY,
1882-
SPI_MEM_OP_DATA_IN(SPI_NOR_MAX_ID_LEN, id, 1));
1883-
1884-
ret = spi_mem_exec_op(nor->spimem, &op);
1885-
} else {
1886-
ret = nor->controller_ops->read_reg(nor, SPINOR_OP_RDID, id,
1887-
SPI_NOR_MAX_ID_LEN);
1888-
}
1908+
ret = spi_nor_read_id(nor, 0, 0, id, nor->reg_proto);
18891909
if (ret) {
18901910
dev_dbg(nor->dev, "error %d reading JEDEC ID\n", ret);
18911911
return ERR_PTR(ret);
@@ -3038,7 +3058,7 @@ static const struct flash_info *spi_nor_get_flash_info(struct spi_nor *nor,
30383058
info = spi_nor_match_name(nor, name);
30393059
/* Try to auto-detect if chip name wasn't specified or not found */
30403060
if (!info)
3041-
return spi_nor_read_id(nor);
3061+
return spi_nor_detect(nor);
30423062

30433063
/*
30443064
* If caller has specified name of flash model that can normally be
@@ -3047,7 +3067,7 @@ static const struct flash_info *spi_nor_get_flash_info(struct spi_nor *nor,
30473067
if (name && info->id_len) {
30483068
const struct flash_info *jinfo;
30493069

3050-
jinfo = spi_nor_read_id(nor);
3070+
jinfo = spi_nor_detect(nor);
30513071
if (IS_ERR(jinfo)) {
30523072
return jinfo;
30533073
} 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_USE_FSR = BIT(0),
1623
SNOR_F_HAS_SR_TB = BIT(1),
@@ -506,6 +513,8 @@ void spi_nor_unlock_and_unprep(struct spi_nor *nor);
506513
int spi_nor_sr1_bit6_quad_enable(struct spi_nor *nor);
507514
int spi_nor_sr2_bit1_quad_enable(struct spi_nor *nor);
508515
int spi_nor_sr2_bit7_quad_enable(struct spi_nor *nor);
516+
int spi_nor_read_id(struct spi_nor *nor, u8 naddr, u8 ndummy, u8 *id,
517+
enum spi_nor_protocol reg_proto);
509518
int spi_nor_read_sr(struct spi_nor *nor, u8 *sr);
510519
int spi_nor_read_cr(struct spi_nor *nor, u8 *cr);
511520
int spi_nor_write_sr(struct spi_nor *nor, const u8 *sr, size_t len);

0 commit comments

Comments
 (0)