blob: 675f32c136b341dbbf9f67adaf80973937b70571 [file] [log] [blame]
Boris Brezillon7b8b2202020-03-13 19:42:48 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2005, Intec Automation Inc.
4 * Copyright (C) 2014, Freescale Semiconductor, Inc.
5 */
6
7#include <linux/mtd/spi-nor.h>
8
9#include "core.h"
10
Mantas Puckae8aec152020-04-15 16:48:30 +030011static int
12w25q256_post_bfpt_fixups(struct spi_nor *nor,
13 const struct sfdp_parameter_header *bfpt_header,
Tudor Ambarusa5802932021-03-06 11:50:00 +020014 const struct sfdp_bfpt *bfpt)
Mantas Puckae8aec152020-04-15 16:48:30 +030015{
16 /*
17 * W25Q256JV supports 4B opcodes but W25Q256FV does not.
18 * Unfortunately, Winbond has re-used the same JEDEC ID for both
19 * variants which prevents us from defining a new entry in the parts
20 * table.
21 * To differentiate between W25Q256JV and W25Q256FV check SFDP header
22 * version: only JV has JESD216A compliant structure (version 5).
23 */
24 if (bfpt_header->major == SFDP_JESD216_MAJOR &&
25 bfpt_header->minor == SFDP_JESD216A_MINOR)
26 nor->flags |= SNOR_F_4B_OPCODES;
27
28 return 0;
29}
30
Tudor Ambarus65b54ff2021-11-06 12:29:15 +020031static const struct spi_nor_fixups w25q256_fixups = {
Mantas Puckae8aec152020-04-15 16:48:30 +030032 .post_bfpt = w25q256_post_bfpt_fixups,
33};
34
Boris Brezillon7b8b2202020-03-13 19:42:48 +000035static const struct flash_info winbond_parts[] = {
36 /* Winbond -- w25x "blocks" are 64K, "sectors" are 4KiB */
Tudor Ambarusec1c0e92021-12-07 16:02:46 +020037 { "w25x05", INFO(0xef3010, 0, 64 * 1024, 1)
38 NO_SFDP_FLAGS(SECT_4K) },
39 { "w25x10", INFO(0xef3011, 0, 64 * 1024, 2)
40 NO_SFDP_FLAGS(SECT_4K) },
41 { "w25x20", INFO(0xef3012, 0, 64 * 1024, 4)
42 NO_SFDP_FLAGS(SECT_4K) },
43 { "w25x40", INFO(0xef3013, 0, 64 * 1024, 8)
44 NO_SFDP_FLAGS(SECT_4K) },
45 { "w25x80", INFO(0xef3014, 0, 64 * 1024, 16)
46 NO_SFDP_FLAGS(SECT_4K) },
47 { "w25x16", INFO(0xef3015, 0, 64 * 1024, 32)
48 NO_SFDP_FLAGS(SECT_4K) },
49 { "w25q16dw", INFO(0xef6015, 0, 64 * 1024, 32)
50 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
51 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
52 SPI_NOR_QUAD_READ) },
53 { "w25x32", INFO(0xef3016, 0, 64 * 1024, 64)
54 NO_SFDP_FLAGS(SECT_4K) },
55 { "w25q16jv-im/jm", INFO(0xef7015, 0, 64 * 1024, 32)
56 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
57 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
58 SPI_NOR_QUAD_READ) },
59 { "w25q20cl", INFO(0xef4012, 0, 64 * 1024, 4)
60 NO_SFDP_FLAGS(SECT_4K) },
61 { "w25q20bw", INFO(0xef5012, 0, 64 * 1024, 4)
62 NO_SFDP_FLAGS(SECT_4K) },
63 { "w25q20ew", INFO(0xef6012, 0, 64 * 1024, 4)
64 NO_SFDP_FLAGS(SECT_4K) },
65 { "w25q32", INFO(0xef4016, 0, 64 * 1024, 64)
66 NO_SFDP_FLAGS(SECT_4K) },
67 { "w25q32dw", INFO(0xef6016, 0, 64 * 1024, 64)
68 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
69 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ)
70 OTP_INFO(256, 3, 0x1000, 0x1000) },
71 { "w25q32jv", INFO(0xef7016, 0, 64 * 1024, 64)
72 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
73 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
74 SPI_NOR_QUAD_READ) },
75 { "w25q32jwm", INFO(0xef8016, 0, 64 * 1024, 64)
76 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
77 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ)
78 OTP_INFO(256, 3, 0x1000, 0x1000) },
79 { "w25q64jwm", INFO(0xef8017, 0, 64 * 1024, 128)
80 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
81 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
82 SPI_NOR_QUAD_READ) },
83 { "w25q128jwm", INFO(0xef8018, 0, 64 * 1024, 256)
84 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
85 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
86 SPI_NOR_QUAD_READ) },
87 { "w25q256jwm", INFO(0xef8019, 0, 64 * 1024, 512)
88 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
89 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
90 SPI_NOR_QUAD_READ) },
91 { "w25x64", INFO(0xef3017, 0, 64 * 1024, 128)
92 NO_SFDP_FLAGS(SECT_4K) },
93 { "w25q64", INFO(0xef4017, 0, 64 * 1024, 128)
94 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
95 SPI_NOR_QUAD_READ) },
96 { "w25q64dw", INFO(0xef6017, 0, 64 * 1024, 128)
97 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
98 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
99 SPI_NOR_QUAD_READ) },
100 { "w25q64jvm", INFO(0xef7017, 0, 64 * 1024, 128)
101 NO_SFDP_FLAGS(SECT_4K) },
102 { "w25q128fw", INFO(0xef6018, 0, 64 * 1024, 256)
103 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
104 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
105 SPI_NOR_QUAD_READ) },
106 { "w25q128jv", INFO(0xef7018, 0, 64 * 1024, 256)
107 FLAGS(SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB)
108 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
109 SPI_NOR_QUAD_READ) },
110 { "w25q80", INFO(0xef5014, 0, 64 * 1024, 16)
111 NO_SFDP_FLAGS(SECT_4K) },
112 { "w25q80bl", INFO(0xef4014, 0, 64 * 1024, 16)
113 NO_SFDP_FLAGS(SECT_4K) },
114 { "w25q128", INFO(0xef4018, 0, 64 * 1024, 256)
115 NO_SFDP_FLAGS(SECT_4K) },
116 { "w25q256", INFO(0xef4019, 0, 64 * 1024, 512)
117 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ)
118 .fixups = &w25q256_fixups },
119 { "w25q256jvm", INFO(0xef7019, 0, 64 * 1024, 512)
Tudor Ambarus1c513c92021-12-07 16:02:51 +0200120 PARSE_SFDP },
Tudor Ambarusec1c0e92021-12-07 16:02:46 +0200121 { "w25q256jw", INFO(0xef6019, 0, 64 * 1024, 512)
122 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
123 SPI_NOR_QUAD_READ) },
124 { "w25m512jv", INFO(0xef7119, 0, 64 * 1024, 1024)
125 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_QUAD_READ |
126 SPI_NOR_DUAL_READ) },
127 { "w25q512jvq", INFO(0xef4020, 0, 64 * 1024, 1024)
128 NO_SFDP_FLAGS(SECT_4K | SPI_NOR_DUAL_READ |
129 SPI_NOR_QUAD_READ) },
Boris Brezillon7b8b2202020-03-13 19:42:48 +0000130};
131
132/**
133 * winbond_set_4byte_addr_mode() - Set 4-byte address mode for Winbond flashes.
134 * @nor: pointer to 'struct spi_nor'.
135 * @enable: true to enter the 4-byte address mode, false to exit the 4-byte
136 * address mode.
137 *
138 * Return: 0 on success, -errno otherwise.
139 */
140static int winbond_set_4byte_addr_mode(struct spi_nor *nor, bool enable)
141{
142 int ret;
143
144 ret = spi_nor_set_4byte_addr_mode(nor, enable);
145 if (ret || enable)
146 return ret;
147
148 /*
149 * On Winbond W25Q256FV, leaving 4byte mode causes the Extended Address
150 * Register to be set to 1, so all 3-byte-address reads come from the
151 * second 16M. We must clear the register to enable normal behavior.
152 */
153 ret = spi_nor_write_enable(nor);
154 if (ret)
155 return ret;
156
157 ret = spi_nor_write_ear(nor, 0);
158 if (ret)
159 return ret;
160
161 return spi_nor_write_disable(nor);
162}
163
Michael Walleb206b822021-03-22 00:51:40 +0100164static const struct spi_nor_otp_ops winbond_otp_ops = {
165 .read = spi_nor_otp_read_secr,
166 .write = spi_nor_otp_write_secr,
Michael Wallec6ec3e12021-06-07 13:27:44 +0200167 .erase = spi_nor_otp_erase_secr,
Michael Walleb206b822021-03-22 00:51:40 +0100168 .lock = spi_nor_otp_lock_sr2,
169 .is_locked = spi_nor_otp_is_locked_sr2,
170};
171
Boris Brezillon7b8b2202020-03-13 19:42:48 +0000172static void winbond_default_init(struct spi_nor *nor)
173{
Tudor Ambarus829ec642020-03-13 19:42:53 +0000174 nor->params->set_4byte_addr_mode = winbond_set_4byte_addr_mode;
Tudor Ambarus00947a92021-10-29 20:26:16 +0300175}
176
177static void winbond_late_init(struct spi_nor *nor)
178{
Michael Walleb206b822021-03-22 00:51:40 +0100179 if (nor->params->otp.org->n_regions)
180 nor->params->otp.ops = &winbond_otp_ops;
Boris Brezillon7b8b2202020-03-13 19:42:48 +0000181}
182
183static const struct spi_nor_fixups winbond_fixups = {
184 .default_init = winbond_default_init,
Tudor Ambarus00947a92021-10-29 20:26:16 +0300185 .late_init = winbond_late_init,
Boris Brezillon7b8b2202020-03-13 19:42:48 +0000186};
187
188const struct spi_nor_manufacturer spi_nor_winbond = {
189 .name = "winbond",
190 .parts = winbond_parts,
191 .nparts = ARRAY_SIZE(winbond_parts),
192 .fixups = &winbond_fixups,
193};