Skip to content

Commit e8aec15

Browse files
mantas-pambarus
authored andcommitted
mtd: spi-nor: winbond: Fix 4-byte opcode support for w25q256
There are 2 different chips (w25q256fv and w25q256jv) that share the same JEDEC ID. Only w25q256jv fully supports 4-byte opcodes. Use SFDP header version to differentiate between them. Fixes: 10050a0 ("mtd: spi-nor: Add 4B_OPCODES flag to w25q256") Signed-off-by: Mantas Pucka <[email protected]> Signed-off-by: Tudor Ambarus <[email protected]>
1 parent 0fa712c commit e8aec15

File tree

3 files changed

+33
-6
lines changed

3 files changed

+33
-6
lines changed

drivers/mtd/spi-nor/sfdp.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@
2121
#define SFDP_4BAIT_ID 0xff84 /* 4-byte Address Instruction Table */
2222

2323
#define SFDP_SIGNATURE 0x50444653U
24-
#define SFDP_JESD216_MAJOR 1
25-
#define SFDP_JESD216_MINOR 0
26-
#define SFDP_JESD216A_MINOR 5
27-
#define SFDP_JESD216B_MINOR 6
2824

2925
struct sfdp_header {
3026
u32 signature; /* Ox50444653U <=> "SFDP" */

drivers/mtd/spi-nor/sfdp.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
#ifndef __LINUX_MTD_SFDP_H
88
#define __LINUX_MTD_SFDP_H
99

10+
/* SFDP revisions */
11+
#define SFDP_JESD216_MAJOR 1
12+
#define SFDP_JESD216_MINOR 0
13+
#define SFDP_JESD216A_MINOR 5
14+
#define SFDP_JESD216B_MINOR 6
15+
1016
/* Basic Flash Parameter Table */
1117

1218
/*

drivers/mtd/spi-nor/winbond.c

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,31 @@
88

99
#include "core.h"
1010

11+
static int
12+
w25q256_post_bfpt_fixups(struct spi_nor *nor,
13+
const struct sfdp_parameter_header *bfpt_header,
14+
const struct sfdp_bfpt *bfpt,
15+
struct spi_nor_flash_parameter *params)
16+
{
17+
/*
18+
* W25Q256JV supports 4B opcodes but W25Q256FV does not.
19+
* Unfortunately, Winbond has re-used the same JEDEC ID for both
20+
* variants which prevents us from defining a new entry in the parts
21+
* table.
22+
* To differentiate between W25Q256JV and W25Q256FV check SFDP header
23+
* version: only JV has JESD216A compliant structure (version 5).
24+
*/
25+
if (bfpt_header->major == SFDP_JESD216_MAJOR &&
26+
bfpt_header->minor == SFDP_JESD216A_MINOR)
27+
nor->flags |= SNOR_F_4B_OPCODES;
28+
29+
return 0;
30+
}
31+
32+
static struct spi_nor_fixups w25q256_fixups = {
33+
.post_bfpt = w25q256_post_bfpt_fixups,
34+
};
35+
1136
static const struct flash_info winbond_parts[] = {
1237
/* Winbond -- w25x "blocks" are 64K, "sectors" are 4KiB */
1338
{ "w25x05", INFO(0xef3010, 0, 64 * 1024, 1, SECT_4K) },
@@ -53,8 +78,8 @@ static const struct flash_info winbond_parts[] = {
5378
{ "w25q80bl", INFO(0xef4014, 0, 64 * 1024, 16, SECT_4K) },
5479
{ "w25q128", INFO(0xef4018, 0, 64 * 1024, 256, SECT_4K) },
5580
{ "w25q256", INFO(0xef4019, 0, 64 * 1024, 512,
56-
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |
57-
SPI_NOR_4B_OPCODES) },
81+
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ)
82+
.fixups = &w25q256_fixups },
5883
{ "w25q256jvm", INFO(0xef7019, 0, 64 * 1024, 512,
5984
SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) },
6085
{ "w25q256jw", INFO(0xef6019, 0, 64 * 1024, 512,

0 commit comments

Comments
 (0)