diff options
author | Brian Norris <computersforpeace@gmail.com> | 2014-04-17 01:06:09 -0400 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2014-04-17 01:06:09 -0400 |
commit | d66d3519c6732db3b4dea2f0c31c514633e89001 (patch) | |
tree | 40842c5ba279e219be1116ba88fd83e0a2bd96d9 /drivers/mtd | |
parent | 6189cccbe8d16d0ef175bd0dca18e3824ca01174 (diff) | |
parent | dc002f99f3aa7c05981ecbbbc20efe5e8befe98a (diff) |
Merge branch 'spinor'
Addition of the spi-nor framework, plus updates to the ST SPI FSM
driver.
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/Kconfig | 2 | ||||
-rw-r--r-- | drivers/mtd/Makefile | 1 | ||||
-rw-r--r-- | drivers/mtd/devices/Kconfig | 4 | ||||
-rw-r--r-- | drivers/mtd/devices/m25p80.c | 1303 | ||||
-rw-r--r-- | drivers/mtd/devices/serial_flash_cmds.h | 44 | ||||
-rw-r--r-- | drivers/mtd/devices/st_spi_fsm.c | 338 | ||||
-rw-r--r-- | drivers/mtd/spi-nor/Kconfig | 17 | ||||
-rw-r--r-- | drivers/mtd/spi-nor/Makefile | 2 | ||||
-rw-r--r-- | drivers/mtd/spi-nor/fsl-quadspi.c | 1009 | ||||
-rw-r--r-- | drivers/mtd/spi-nor/spi-nor.c | 1107 |
10 files changed, 2412 insertions, 1415 deletions
diff --git a/drivers/mtd/Kconfig b/drivers/mtd/Kconfig index 5d49a2129618..94b821042d9d 100644 --- a/drivers/mtd/Kconfig +++ b/drivers/mtd/Kconfig | |||
@@ -321,6 +321,8 @@ source "drivers/mtd/onenand/Kconfig" | |||
321 | 321 | ||
322 | source "drivers/mtd/lpddr/Kconfig" | 322 | source "drivers/mtd/lpddr/Kconfig" |
323 | 323 | ||
324 | source "drivers/mtd/spi-nor/Kconfig" | ||
325 | |||
324 | source "drivers/mtd/ubi/Kconfig" | 326 | source "drivers/mtd/ubi/Kconfig" |
325 | 327 | ||
326 | endif # MTD | 328 | endif # MTD |
diff --git a/drivers/mtd/Makefile b/drivers/mtd/Makefile index 4cfb31e6c966..99bb9a1f6e16 100644 --- a/drivers/mtd/Makefile +++ b/drivers/mtd/Makefile | |||
@@ -32,4 +32,5 @@ inftl-objs := inftlcore.o inftlmount.o | |||
32 | 32 | ||
33 | obj-y += chips/ lpddr/ maps/ devices/ nand/ onenand/ tests/ | 33 | obj-y += chips/ lpddr/ maps/ devices/ nand/ onenand/ tests/ |
34 | 34 | ||
35 | obj-$(CONFIG_MTD_SPI_NOR) += spi-nor/ | ||
35 | obj-$(CONFIG_MTD_UBI) += ubi/ | 36 | obj-$(CONFIG_MTD_UBI) += ubi/ |
diff --git a/drivers/mtd/devices/Kconfig b/drivers/mtd/devices/Kconfig index 1210bc2923b7..c49d0b127fef 100644 --- a/drivers/mtd/devices/Kconfig +++ b/drivers/mtd/devices/Kconfig | |||
@@ -80,7 +80,7 @@ config MTD_DATAFLASH_OTP | |||
80 | 80 | ||
81 | config MTD_M25P80 | 81 | config MTD_M25P80 |
82 | tristate "Support most SPI Flash chips (AT26DF, M25P, W25X, ...)" | 82 | tristate "Support most SPI Flash chips (AT26DF, M25P, W25X, ...)" |
83 | depends on SPI_MASTER | 83 | depends on SPI_MASTER && MTD_SPI_NOR |
84 | help | 84 | help |
85 | This enables access to most modern SPI flash chips, used for | 85 | This enables access to most modern SPI flash chips, used for |
86 | program and data storage. Series supported include Atmel AT26DF, | 86 | program and data storage. Series supported include Atmel AT26DF, |
@@ -212,7 +212,7 @@ config MTD_DOCG3 | |||
212 | 212 | ||
213 | config MTD_ST_SPI_FSM | 213 | config MTD_ST_SPI_FSM |
214 | tristate "ST Microelectronics SPI FSM Serial Flash Controller" | 214 | tristate "ST Microelectronics SPI FSM Serial Flash Controller" |
215 | depends on ARM || SH | 215 | depends on ARCH_STI |
216 | help | 216 | help |
217 | This provides an MTD device driver for the ST Microelectronics | 217 | This provides an MTD device driver for the ST Microelectronics |
218 | SPI Fast Sequence Mode (FSM) Serial Flash Controller and support | 218 | SPI Fast Sequence Mode (FSM) Serial Flash Controller and support |
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index 524dab3ac938..1557d8f672c1 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c | |||
@@ -19,485 +19,98 @@ | |||
19 | #include <linux/errno.h> | 19 | #include <linux/errno.h> |
20 | #include <linux/module.h> | 20 | #include <linux/module.h> |
21 | #include <linux/device.h> | 21 | #include <linux/device.h> |
22 | #include <linux/interrupt.h> | ||
23 | #include <linux/mutex.h> | ||
24 | #include <linux/math64.h> | ||
25 | #include <linux/slab.h> | ||
26 | #include <linux/sched.h> | ||
27 | #include <linux/mod_devicetable.h> | ||
28 | 22 | ||
29 | #include <linux/mtd/cfi.h> | ||
30 | #include <linux/mtd/mtd.h> | 23 | #include <linux/mtd/mtd.h> |
31 | #include <linux/mtd/partitions.h> | 24 | #include <linux/mtd/partitions.h> |
32 | #include <linux/of_platform.h> | ||
33 | 25 | ||
34 | #include <linux/spi/spi.h> | 26 | #include <linux/spi/spi.h> |
35 | #include <linux/spi/flash.h> | 27 | #include <linux/spi/flash.h> |
28 | #include <linux/mtd/spi-nor.h> | ||
36 | 29 | ||
37 | /* Flash opcodes. */ | ||
38 | #define OPCODE_WREN 0x06 /* Write enable */ | ||
39 | #define OPCODE_RDSR 0x05 /* Read status register */ | ||
40 | #define OPCODE_WRSR 0x01 /* Write status register 1 byte */ | ||
41 | #define OPCODE_NORM_READ 0x03 /* Read data bytes (low frequency) */ | ||
42 | #define OPCODE_FAST_READ 0x0b /* Read data bytes (high frequency) */ | ||
43 | #define OPCODE_DUAL_READ 0x3b /* Read data bytes (Dual SPI) */ | ||
44 | #define OPCODE_QUAD_READ 0x6b /* Read data bytes (Quad SPI) */ | ||
45 | #define OPCODE_PP 0x02 /* Page program (up to 256 bytes) */ | ||
46 | #define OPCODE_BE_4K 0x20 /* Erase 4KiB block */ | ||
47 | #define OPCODE_BE_4K_PMC 0xd7 /* Erase 4KiB block on PMC chips */ | ||
48 | #define OPCODE_BE_32K 0x52 /* Erase 32KiB block */ | ||
49 | #define OPCODE_CHIP_ERASE 0xc7 /* Erase whole flash chip */ | ||
50 | #define OPCODE_SE 0xd8 /* Sector erase (usually 64KiB) */ | ||
51 | #define OPCODE_RDID 0x9f /* Read JEDEC ID */ | ||
52 | #define OPCODE_RDCR 0x35 /* Read configuration register */ | ||
53 | |||
54 | /* 4-byte address opcodes - used on Spansion and some Macronix flashes. */ | ||
55 | #define OPCODE_NORM_READ_4B 0x13 /* Read data bytes (low frequency) */ | ||
56 | #define OPCODE_FAST_READ_4B 0x0c /* Read data bytes (high frequency) */ | ||
57 | #define OPCODE_DUAL_READ_4B 0x3c /* Read data bytes (Dual SPI) */ | ||
58 | #define OPCODE_QUAD_READ_4B 0x6c /* Read data bytes (Quad SPI) */ | ||
59 | #define OPCODE_PP_4B 0x12 /* Page program (up to 256 bytes) */ | ||
60 | #define OPCODE_SE_4B 0xdc /* Sector erase (usually 64KiB) */ | ||
61 | |||
62 | /* Used for SST flashes only. */ | ||
63 | #define OPCODE_BP 0x02 /* Byte program */ | ||
64 | #define OPCODE_WRDI 0x04 /* Write disable */ | ||
65 | #define OPCODE_AAI_WP 0xad /* Auto address increment word program */ | ||
66 | |||
67 | /* Used for Macronix and Winbond flashes. */ | ||
68 | #define OPCODE_EN4B 0xb7 /* Enter 4-byte mode */ | ||
69 | #define OPCODE_EX4B 0xe9 /* Exit 4-byte mode */ | ||
70 | |||
71 | /* Used for Spansion flashes only. */ | ||
72 | #define OPCODE_BRWR 0x17 /* Bank register write */ | ||
73 | |||
74 | /* Status Register bits. */ | ||
75 | #define SR_WIP 1 /* Write in progress */ | ||
76 | #define SR_WEL 2 /* Write enable latch */ | ||
77 | /* meaning of other SR_* bits may differ between vendors */ | ||
78 | #define SR_BP0 4 /* Block protect 0 */ | ||
79 | #define SR_BP1 8 /* Block protect 1 */ | ||
80 | #define SR_BP2 0x10 /* Block protect 2 */ | ||
81 | #define SR_SRWD 0x80 /* SR write protect */ | ||
82 | |||
83 | #define SR_QUAD_EN_MX 0x40 /* Macronix Quad I/O */ | ||
84 | |||
85 | /* Configuration Register bits. */ | ||
86 | #define CR_QUAD_EN_SPAN 0x2 /* Spansion Quad I/O */ | ||
87 | |||
88 | /* Define max times to check status register before we give up. */ | ||
89 | #define MAX_READY_WAIT_JIFFIES (40 * HZ) /* M25P16 specs 40s max chip erase */ | ||
90 | #define MAX_CMD_SIZE 6 | 30 | #define MAX_CMD_SIZE 6 |
91 | |||
92 | #define JEDEC_MFR(_jedec_id) ((_jedec_id) >> 16) | ||
93 | |||
94 | /****************************************************************************/ | ||
95 | |||
96 | enum read_type { | ||
97 | M25P80_NORMAL = 0, | ||
98 | M25P80_FAST, | ||
99 | M25P80_DUAL, | ||
100 | M25P80_QUAD, | ||
101 | }; | ||
102 | |||
103 | struct m25p { | 31 | struct m25p { |
104 | struct spi_device *spi; | 32 | struct spi_device *spi; |
105 | struct mutex lock; | 33 | struct spi_nor spi_nor; |
106 | struct mtd_info mtd; | 34 | struct mtd_info mtd; |
107 | u16 page_size; | 35 | u8 command[MAX_CMD_SIZE]; |
108 | u16 addr_width; | ||
109 | u8 erase_opcode; | ||
110 | u8 read_opcode; | ||
111 | u8 program_opcode; | ||
112 | u8 *command; | ||
113 | enum read_type flash_read; | ||
114 | }; | 36 | }; |
115 | 37 | ||
116 | static inline struct m25p *mtd_to_m25p(struct mtd_info *mtd) | 38 | static int m25p80_read_reg(struct spi_nor *nor, u8 code, u8 *val, int len) |
117 | { | ||
118 | return container_of(mtd, struct m25p, mtd); | ||
119 | } | ||
120 | |||
121 | /****************************************************************************/ | ||
122 | |||
123 | /* | ||
124 | * Internal helper functions | ||
125 | */ | ||
126 | |||
127 | /* | ||
128 | * Read the status register, returning its value in the location | ||
129 | * Return the status register value. | ||
130 | * Returns negative if error occurred. | ||
131 | */ | ||
132 | static int read_sr(struct m25p *flash) | ||
133 | { | ||
134 | ssize_t retval; | ||
135 | u8 code = OPCODE_RDSR; | ||
136 | u8 val; | ||
137 | |||
138 | retval = spi_write_then_read(flash->spi, &code, 1, &val, 1); | ||
139 | |||
140 | if (retval < 0) { | ||
141 | dev_err(&flash->spi->dev, "error %d reading SR\n", | ||
142 | (int) retval); | ||
143 | return retval; | ||
144 | } | ||
145 | |||
146 | return val; | ||
147 | } | ||
148 | |||
149 | /* | ||
150 | * Read configuration register, returning its value in the | ||
151 | * location. Return the configuration register value. | ||
152 | * Returns negative if error occured. | ||
153 | */ | ||
154 | static int read_cr(struct m25p *flash) | ||
155 | { | ||
156 | u8 code = OPCODE_RDCR; | ||
157 | int ret; | ||
158 | u8 val; | ||
159 | |||
160 | ret = spi_write_then_read(flash->spi, &code, 1, &val, 1); | ||
161 | if (ret < 0) { | ||
162 | dev_err(&flash->spi->dev, "error %d reading CR\n", ret); | ||
163 | return ret; | ||
164 | } | ||
165 | |||
166 | return val; | ||
167 | } | ||
168 | |||
169 | /* | ||
170 | * Write status register 1 byte | ||
171 | * Returns negative if error occurred. | ||
172 | */ | ||
173 | static int write_sr(struct m25p *flash, u8 val) | ||
174 | { | ||
175 | flash->command[0] = OPCODE_WRSR; | ||
176 | flash->command[1] = val; | ||
177 | |||
178 | return spi_write(flash->spi, flash->command, 2); | ||
179 | } | ||
180 | |||
181 | /* | ||
182 | * Set write enable latch with Write Enable command. | ||
183 | * Returns negative if error occurred. | ||
184 | */ | ||
185 | static inline int write_enable(struct m25p *flash) | ||
186 | { | ||
187 | u8 code = OPCODE_WREN; | ||
188 | |||
189 | return spi_write_then_read(flash->spi, &code, 1, NULL, 0); | ||
190 | } | ||
191 | |||
192 | /* | ||
193 | * Send write disble instruction to the chip. | ||
194 | */ | ||
195 | static inline int write_disable(struct m25p *flash) | ||
196 | { | ||
197 | u8 code = OPCODE_WRDI; | ||
198 | |||
199 | return spi_write_then_read(flash->spi, &code, 1, NULL, 0); | ||
200 | } | ||
201 | |||
202 | /* | ||
203 | * Enable/disable 4-byte addressing mode. | ||
204 | */ | ||
205 | static inline int set_4byte(struct m25p *flash, u32 jedec_id, int enable) | ||
206 | { | ||
207 | int status; | ||
208 | bool need_wren = false; | ||
209 | |||
210 | switch (JEDEC_MFR(jedec_id)) { | ||
211 | case CFI_MFR_ST: /* Micron, actually */ | ||
212 | /* Some Micron need WREN command; all will accept it */ | ||
213 | need_wren = true; | ||
214 | case CFI_MFR_MACRONIX: | ||
215 | case 0xEF /* winbond */: | ||
216 | if (need_wren) | ||
217 | write_enable(flash); | ||
218 | |||
219 | flash->command[0] = enable ? OPCODE_EN4B : OPCODE_EX4B; | ||
220 | status = spi_write(flash->spi, flash->command, 1); | ||
221 | |||
222 | if (need_wren) | ||
223 | write_disable(flash); | ||
224 | |||
225 | return status; | ||
226 | default: | ||
227 | /* Spansion style */ | ||
228 | flash->command[0] = OPCODE_BRWR; | ||
229 | flash->command[1] = enable << 7; | ||
230 | return spi_write(flash->spi, flash->command, 2); | ||
231 | } | ||
232 | } | ||
233 | |||
234 | /* | ||
235 | * Service routine to read status register until ready, or timeout occurs. | ||
236 | * Returns non-zero if error. | ||
237 | */ | ||
238 | static int wait_till_ready(struct m25p *flash) | ||
239 | { | ||
240 | unsigned long deadline; | ||
241 | int sr; | ||
242 | |||
243 | deadline = jiffies + MAX_READY_WAIT_JIFFIES; | ||
244 | |||
245 | do { | ||
246 | if ((sr = read_sr(flash)) < 0) | ||
247 | break; | ||
248 | else if (!(sr & SR_WIP)) | ||
249 | return 0; | ||
250 | |||
251 | cond_resched(); | ||
252 | |||
253 | } while (!time_after_eq(jiffies, deadline)); | ||
254 | |||
255 | return 1; | ||
256 | } | ||
257 | |||
258 | /* | ||
259 | * Write status Register and configuration register with 2 bytes | ||
260 | * The first byte will be written to the status register, while the | ||
261 | * second byte will be written to the configuration register. | ||
262 | * Return negative if error occured. | ||
263 | */ | ||
264 | static int write_sr_cr(struct m25p *flash, u16 val) | ||
265 | { | ||
266 | flash->command[0] = OPCODE_WRSR; | ||
267 | flash->command[1] = val & 0xff; | ||
268 | flash->command[2] = (val >> 8); | ||
269 | |||
270 | return spi_write(flash->spi, flash->command, 3); | ||
271 | } | ||
272 | |||
273 | static int macronix_quad_enable(struct m25p *flash) | ||
274 | { | ||
275 | int ret, val; | ||
276 | u8 cmd[2]; | ||
277 | cmd[0] = OPCODE_WRSR; | ||
278 | |||
279 | val = read_sr(flash); | ||
280 | cmd[1] = val | SR_QUAD_EN_MX; | ||
281 | write_enable(flash); | ||
282 | |||
283 | spi_write(flash->spi, &cmd, 2); | ||
284 | |||
285 | if (wait_till_ready(flash)) | ||
286 | return 1; | ||
287 | |||
288 | ret = read_sr(flash); | ||
289 | if (!(ret > 0 && (ret & SR_QUAD_EN_MX))) { | ||
290 | dev_err(&flash->spi->dev, "Macronix Quad bit not set\n"); | ||
291 | return -EINVAL; | ||
292 | } | ||
293 | |||
294 | return 0; | ||
295 | } | ||
296 | |||
297 | static int spansion_quad_enable(struct m25p *flash) | ||
298 | { | 39 | { |
40 | struct m25p *flash = nor->priv; | ||
41 | struct spi_device *spi = flash->spi; | ||
299 | int ret; | 42 | int ret; |
300 | int quad_en = CR_QUAD_EN_SPAN << 8; | ||
301 | |||
302 | write_enable(flash); | ||
303 | 43 | ||
304 | ret = write_sr_cr(flash, quad_en); | 44 | ret = spi_write_then_read(spi, &code, 1, val, len); |
305 | if (ret < 0) { | 45 | if (ret < 0) |
306 | dev_err(&flash->spi->dev, | 46 | dev_err(&spi->dev, "error %d reading %x\n", ret, code); |
307 | "error while writing configuration register\n"); | ||
308 | return -EINVAL; | ||
309 | } | ||
310 | |||
311 | /* read back and check it */ | ||
312 | ret = read_cr(flash); | ||
313 | if (!(ret > 0 && (ret & CR_QUAD_EN_SPAN))) { | ||
314 | dev_err(&flash->spi->dev, "Spansion Quad bit not set\n"); | ||
315 | return -EINVAL; | ||
316 | } | ||
317 | |||
318 | return 0; | ||
319 | } | ||
320 | |||
321 | static int set_quad_mode(struct m25p *flash, u32 jedec_id) | ||
322 | { | ||
323 | int status; | ||
324 | |||
325 | switch (JEDEC_MFR(jedec_id)) { | ||
326 | case CFI_MFR_MACRONIX: | ||
327 | status = macronix_quad_enable(flash); | ||
328 | if (status) { | ||
329 | dev_err(&flash->spi->dev, | ||
330 | "Macronix quad-read not enabled\n"); | ||
331 | return -EINVAL; | ||
332 | } | ||
333 | return status; | ||
334 | default: | ||
335 | status = spansion_quad_enable(flash); | ||
336 | if (status) { | ||
337 | dev_err(&flash->spi->dev, | ||
338 | "Spansion quad-read not enabled\n"); | ||
339 | return -EINVAL; | ||
340 | } | ||
341 | return status; | ||
342 | } | ||
343 | } | ||
344 | |||
345 | /* | ||
346 | * Erase the whole flash memory | ||
347 | * | ||
348 | * Returns 0 if successful, non-zero otherwise. | ||
349 | */ | ||
350 | static int erase_chip(struct m25p *flash) | ||
351 | { | ||
352 | pr_debug("%s: %s %lldKiB\n", dev_name(&flash->spi->dev), __func__, | ||
353 | (long long)(flash->mtd.size >> 10)); | ||
354 | 47 | ||
355 | /* Wait until finished previous write command. */ | 48 | return ret; |
356 | if (wait_till_ready(flash)) | ||
357 | return 1; | ||
358 | |||
359 | /* Send write enable, then erase commands. */ | ||
360 | write_enable(flash); | ||
361 | |||
362 | /* Set up command buffer. */ | ||
363 | flash->command[0] = OPCODE_CHIP_ERASE; | ||
364 | |||
365 | spi_write(flash->spi, flash->command, 1); | ||
366 | |||
367 | return 0; | ||
368 | } | 49 | } |
369 | 50 | ||
370 | static void m25p_addr2cmd(struct m25p *flash, unsigned int addr, u8 *cmd) | 51 | static void m25p_addr2cmd(struct spi_nor *nor, unsigned int addr, u8 *cmd) |
371 | { | 52 | { |
372 | /* opcode is in cmd[0] */ | 53 | /* opcode is in cmd[0] */ |
373 | cmd[1] = addr >> (flash->addr_width * 8 - 8); | 54 | cmd[1] = addr >> (nor->addr_width * 8 - 8); |
374 | cmd[2] = addr >> (flash->addr_width * 8 - 16); | 55 | cmd[2] = addr >> (nor->addr_width * 8 - 16); |
375 | cmd[3] = addr >> (flash->addr_width * 8 - 24); | 56 | cmd[3] = addr >> (nor->addr_width * 8 - 24); |
376 | cmd[4] = addr >> (flash->addr_width * 8 - 32); | 57 | cmd[4] = addr >> (nor->addr_width * 8 - 32); |
377 | } | 58 | } |
378 | 59 | ||
379 | static int m25p_cmdsz(struct m25p *flash) | 60 | static int m25p_cmdsz(struct spi_nor *nor) |
380 | { | 61 | { |
381 | return 1 + flash->addr_width; | 62 | return 1 + nor->addr_width; |
382 | } | 63 | } |
383 | 64 | ||
384 | /* | 65 | static int m25p80_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len, |
385 | * Erase one sector of flash memory at offset ``offset'' which is any | 66 | int wr_en) |
386 | * address within the sector which should be erased. | ||
387 | * | ||
388 | * Returns 0 if successful, non-zero otherwise. | ||
389 | */ | ||
390 | static int erase_sector(struct m25p *flash, u32 offset) | ||
391 | { | 67 | { |
392 | pr_debug("%s: %s %dKiB at 0x%08x\n", dev_name(&flash->spi->dev), | 68 | struct m25p *flash = nor->priv; |
393 | __func__, flash->mtd.erasesize / 1024, offset); | 69 | struct spi_device *spi = flash->spi; |
394 | |||
395 | /* Wait until finished previous write command. */ | ||
396 | if (wait_till_ready(flash)) | ||
397 | return 1; | ||
398 | 70 | ||
399 | /* Send write enable, then erase commands. */ | 71 | flash->command[0] = opcode; |
400 | write_enable(flash); | 72 | if (buf) |
401 | 73 | memcpy(&flash->command[1], buf, len); | |
402 | /* Set up command buffer. */ | ||
403 | flash->command[0] = flash->erase_opcode; | ||
404 | m25p_addr2cmd(flash, offset, flash->command); | ||
405 | |||
406 | spi_write(flash->spi, flash->command, m25p_cmdsz(flash)); | ||
407 | 74 | ||
408 | return 0; | 75 | return spi_write(spi, flash->command, len + 1); |
409 | } | 76 | } |
410 | 77 | ||
411 | /****************************************************************************/ | 78 | static void m25p80_write(struct spi_nor *nor, loff_t to, size_t len, |
412 | 79 | size_t *retlen, const u_char *buf) | |
413 | /* | ||
414 | * MTD implementation | ||
415 | */ | ||
416 | |||
417 | /* | ||
418 | * Erase an address range on the flash chip. The address range may extend | ||
419 | * one or more erase sectors. Return an error is there is a problem erasing. | ||
420 | */ | ||
421 | static int m25p80_erase(struct mtd_info *mtd, struct erase_info *instr) | ||
422 | { | 80 | { |
423 | struct m25p *flash = mtd_to_m25p(mtd); | 81 | struct m25p *flash = nor->priv; |
424 | u32 addr,len; | 82 | struct spi_device *spi = flash->spi; |
425 | uint32_t rem; | 83 | struct spi_transfer t[2] = {}; |
426 | 84 | struct spi_message m; | |
427 | pr_debug("%s: %s at 0x%llx, len %lld\n", dev_name(&flash->spi->dev), | 85 | int cmd_sz = m25p_cmdsz(nor); |
428 | __func__, (long long)instr->addr, | ||
429 | (long long)instr->len); | ||
430 | |||
431 | div_u64_rem(instr->len, mtd->erasesize, &rem); | ||
432 | if (rem) | ||
433 | return -EINVAL; | ||
434 | |||
435 | addr = instr->addr; | ||
436 | len = instr->len; | ||
437 | |||
438 | mutex_lock(&flash->lock); | ||
439 | |||
440 | /* whole-chip erase? */ | ||
441 | if (len == flash->mtd.size) { | ||
442 | if (erase_chip(flash)) { | ||
443 | instr->state = MTD_ERASE_FAILED; | ||
444 | mutex_unlock(&flash->lock); | ||
445 | return -EIO; | ||
446 | } | ||
447 | 86 | ||
448 | /* REVISIT in some cases we could speed up erasing large regions | 87 | spi_message_init(&m); |
449 | * by using OPCODE_SE instead of OPCODE_BE_4K. We may have set up | ||
450 | * to use "small sector erase", but that's not always optimal. | ||
451 | */ | ||
452 | 88 | ||
453 | /* "sector"-at-a-time erase */ | 89 | if (nor->program_opcode == SPINOR_OP_AAI_WP && nor->sst_write_second) |
454 | } else { | 90 | cmd_sz = 1; |
455 | while (len) { | ||
456 | if (erase_sector(flash, addr)) { | ||
457 | instr->state = MTD_ERASE_FAILED; | ||
458 | mutex_unlock(&flash->lock); | ||
459 | return -EIO; | ||
460 | } | ||
461 | 91 | ||
462 | addr += mtd->erasesize; | 92 | flash->command[0] = nor->program_opcode; |
463 | len -= mtd->erasesize; | 93 | m25p_addr2cmd(nor, to, flash->command); |
464 | } | ||
465 | } | ||
466 | 94 | ||
467 | mutex_unlock(&flash->lock); | 95 | t[0].tx_buf = flash->command; |
96 | t[0].len = cmd_sz; | ||
97 | spi_message_add_tail(&t[0], &m); | ||
468 | 98 | ||
469 | instr->state = MTD_ERASE_DONE; | 99 | t[1].tx_buf = buf; |
470 | mtd_erase_callback(instr); | 100 | t[1].len = len; |
101 | spi_message_add_tail(&t[1], &m); | ||
471 | 102 | ||
472 | return 0; | 103 | spi_sync(spi, &m); |
473 | } | ||
474 | 104 | ||
475 | /* | 105 | *retlen += m.actual_length - cmd_sz; |
476 | * Dummy Cycle calculation for different type of read. | ||
477 | * It can be used to support more commands with | ||
478 | * different dummy cycle requirements. | ||
479 | */ | ||
480 | static inline int m25p80_dummy_cycles_read(struct m25p *flash) | ||
481 | { | ||
482 | switch (flash->flash_read) { | ||
483 | case M25P80_FAST: | ||
484 | case M25P80_DUAL: | ||
485 | case M25P80_QUAD: | ||
486 | return 1; | ||
487 | case M25P80_NORMAL: | ||
488 | return 0; | ||
489 | default: | ||
490 | dev_err(&flash->spi->dev, "No valid read type supported\n"); | ||
491 | return -1; | ||
492 | } | ||
493 | } | 106 | } |
494 | 107 | ||
495 | static inline unsigned int m25p80_rx_nbits(const struct m25p *flash) | 108 | static inline unsigned int m25p80_rx_nbits(struct spi_nor *nor) |
496 | { | 109 | { |
497 | switch (flash->flash_read) { | 110 | switch (nor->flash_read) { |
498 | case M25P80_DUAL: | 111 | case SPI_NOR_DUAL: |
499 | return 2; | 112 | return 2; |
500 | case M25P80_QUAD: | 113 | case SPI_NOR_QUAD: |
501 | return 4; | 114 | return 4; |
502 | default: | 115 | default: |
503 | return 0; | 116 | return 0; |
@@ -505,590 +118,72 @@ static inline unsigned int m25p80_rx_nbits(const struct m25p *flash) | |||
505 | } | 118 | } |
506 | 119 | ||
507 | /* | 120 | /* |
508 | * Read an address range from the flash chip. The address range | 121 | * Read an address range from the nor chip. The address range |
509 | * may be any size provided it is within the physical boundaries. | 122 | * may be any size provided it is within the physical boundaries. |
510 | */ | 123 | */ |
511 | static int m25p80_read(struct mtd_info *mtd, loff_t from, size_t len, | 124 | static int m25p80_read(struct spi_nor *nor, loff_t from, size_t len, |
512 | size_t *retlen, u_char *buf) | 125 | size_t *retlen, u_char *buf) |
513 | { | 126 | { |
514 | struct m25p *flash = mtd_to_m25p(mtd); | 127 | struct m25p *flash = nor->priv; |
128 | struct spi_device *spi = flash->spi; | ||
515 | struct spi_transfer t[2]; | 129 | struct spi_transfer t[2]; |
516 | struct spi_message m; | 130 | struct spi_message m; |
517 | uint8_t opcode; | 131 | int dummy = nor->read_dummy; |
518 | int dummy; | 132 | int ret; |
519 | 133 | ||
520 | pr_debug("%s: %s from 0x%08x, len %zd\n", dev_name(&flash->spi->dev), | 134 | /* Wait till previous write/erase is done. */ |
521 | __func__, (u32)from, len); | 135 | ret = nor->wait_till_ready(nor); |
136 | if (ret) | ||
137 | return ret; | ||
522 | 138 | ||
523 | spi_message_init(&m); | 139 | spi_message_init(&m); |
524 | memset(t, 0, (sizeof t)); | 140 | memset(t, 0, (sizeof t)); |
525 | 141 | ||
526 | dummy = m25p80_dummy_cycles_read(flash); | 142 | flash->command[0] = nor->read_opcode; |
527 | if (dummy < 0) { | 143 | m25p_addr2cmd(nor, from, flash->command); |
528 | dev_err(&flash->spi->dev, "No valid read command supported\n"); | ||
529 | return -EINVAL; | ||
530 | } | ||
531 | 144 | ||
532 | t[0].tx_buf = flash->command; | 145 | t[0].tx_buf = flash->command; |
533 | t[0].len = m25p_cmdsz(flash) + dummy; | 146 | t[0].len = m25p_cmdsz(nor) + dummy; |
534 | spi_message_add_tail(&t[0], &m); | 147 | spi_message_add_tail(&t[0], &m); |
535 | 148 | ||
536 | t[1].rx_buf = buf; | 149 | t[1].rx_buf = buf; |
537 | t[1].rx_nbits = m25p80_rx_nbits(flash); | 150 | t[1].rx_nbits = m25p80_rx_nbits(nor); |
538 | t[1].len = len; | 151 | t[1].len = len; |
539 | spi_message_add_tail(&t[1], &m); | 152 | spi_message_add_tail(&t[1], &m); |
540 | 153 | ||
541 | mutex_lock(&flash->lock); | 154 | spi_sync(spi, &m); |
542 | |||
543 | /* Wait till previous write/erase is done. */ | ||
544 | if (wait_till_ready(flash)) { | ||
545 | /* REVISIT status return?? */ | ||
546 | mutex_unlock(&flash->lock); | ||
547 | return 1; | ||
548 | } | ||
549 | |||
550 | /* Set up the write data buffer. */ | ||
551 | opcode = flash->read_opcode; | ||
552 | flash->command[0] = opcode; | ||
553 | m25p_addr2cmd(flash, from, flash->command); | ||
554 | |||
555 | spi_sync(flash->spi, &m); | ||
556 | |||
557 | *retlen = m.actual_length - m25p_cmdsz(flash) - dummy; | ||
558 | |||
559 | mutex_unlock(&flash->lock); | ||
560 | 155 | ||
156 | *retlen = m.actual_length - m25p_cmdsz(nor) - dummy; | ||
561 | return 0; | 157 | return 0; |
562 | } | 158 | } |
563 | 159 | ||
564 | /* | 160 | static int m25p80_erase(struct spi_nor *nor, loff_t offset) |
565 | * Write an address range to the flash chip. Data must be written in | ||
566 | * FLASH_PAGESIZE chunks. The address range may be any size provided | ||
567 | * it is within the physical boundaries. | ||
568 | */ | ||
569 | static int m25p80_write(struct mtd_info *mtd, loff_t to, size_t len, | ||
570 | size_t *retlen, const u_char *buf) | ||
571 | { | 161 | { |
572 | struct m25p *flash = mtd_to_m25p(mtd); | 162 | struct m25p *flash = nor->priv; |
573 | u32 page_offset, page_size; | 163 | int ret; |
574 | struct spi_transfer t[2]; | ||
575 | struct spi_message m; | ||
576 | |||
577 | pr_debug("%s: %s to 0x%08x, len %zd\n", dev_name(&flash->spi->dev), | ||
578 | __func__, (u32)to, len); | ||
579 | |||
580 | spi_message_init(&m); | ||
581 | memset(t, 0, (sizeof t)); | ||
582 | |||
583 | t[0].tx_buf = flash->command; | ||
584 | t[0].len = m25p_cmdsz(flash); | ||
585 | spi_message_add_tail(&t[0], &m); | ||
586 | |||
587 | t[1].tx_buf = buf; | ||
588 | spi_message_add_tail(&t[1], &m); | ||
589 | |||
590 | mutex_lock(&flash->lock); | ||
591 | |||
592 | /* Wait until finished previous write command. */ | ||
593 | if (wait_till_ready(flash)) { | ||
594 | mutex_unlock(&flash->lock); | ||
595 | return 1; | ||
596 | } | ||
597 | |||
598 | write_enable(flash); | ||
599 | |||
600 | /* Set up the opcode in the write buffer. */ | ||
601 | flash->command[0] = flash->program_opcode; | ||
602 | m25p_addr2cmd(flash, to, flash->command); | ||
603 | |||
604 | page_offset = to & (flash->page_size - 1); | ||
605 | |||
606 | /* do all the bytes fit onto one page? */ | ||
607 | if (page_offset + len <= flash->page_size) { | ||
608 | t[1].len = len; | ||
609 | |||
610 | spi_sync(flash->spi, &m); | ||
611 | |||
612 | *retlen = m.actual_length - m25p_cmdsz(flash); | ||
613 | } else { | ||
614 | u32 i; | ||
615 | |||
616 | /* the size of data remaining on the first page */ | ||
617 | page_size = flash->page_size - page_offset; | ||
618 | |||
619 | t[1].len = page_size; | ||
620 | spi_sync(flash->spi, &m); | ||
621 | |||
622 | *retlen = m.actual_length - m25p_cmdsz(flash); | ||
623 | |||
624 | /* write everything in flash->page_size chunks */ | ||
625 | for (i = page_size; i < len; i += page_size) { | ||
626 | page_size = len - i; | ||
627 | if (page_size > flash->page_size) | ||
628 | page_size = flash->page_size; | ||
629 | |||
630 | /* write the next page to flash */ | ||
631 | m25p_addr2cmd(flash, to + i, flash->command); | ||
632 | |||
633 | t[1].tx_buf = buf + i; | ||
634 | t[1].len = page_size; | ||
635 | |||
636 | wait_till_ready(flash); | ||
637 | |||
638 | write_enable(flash); | ||
639 | |||
640 | spi_sync(flash->spi, &m); | ||
641 | |||
642 | *retlen += m.actual_length - m25p_cmdsz(flash); | ||
643 | } | ||
644 | } | ||
645 | |||
646 | mutex_unlock(&flash->lock); | ||
647 | |||
648 | return 0; | ||
649 | } | ||
650 | |||
651 | static int sst_write(struct mtd_info *mtd, loff_t to, size_t len, | ||
652 | size_t *retlen, const u_char *buf) | ||
653 | { | ||
654 | struct m25p *flash = mtd_to_m25p(mtd); | ||
655 | struct spi_transfer t[2]; | ||
656 | struct spi_message m; | ||
657 | size_t actual; | ||
658 | int cmd_sz, ret; | ||
659 | |||
660 | pr_debug("%s: %s to 0x%08x, len %zd\n", dev_name(&flash->spi->dev), | ||
661 | __func__, (u32)to, len); | ||
662 | |||
663 | spi_message_init(&m); | ||
664 | memset(t, 0, (sizeof t)); | ||
665 | |||
666 | t[0].tx_buf = flash->command; | ||
667 | t[0].len = m25p_cmdsz(flash); | ||
668 | spi_message_add_tail(&t[0], &m); | ||
669 | |||
670 | t[1].tx_buf = buf; | ||
671 | spi_message_add_tail(&t[1], &m); | ||
672 | 164 | ||
673 | mutex_lock(&flash->lock); | 165 | dev_dbg(nor->dev, "%dKiB at 0x%08x\n", |
166 | flash->mtd.erasesize / 1024, (u32)offset); | ||
674 | 167 | ||
675 | /* Wait until finished previous write command. */ | 168 | /* Wait until finished previous write command. */ |
676 | ret = wait_till_ready(flash); | 169 | ret = nor->wait_till_ready(nor); |
677 | if (ret) | 170 | if (ret) |
678 | goto time_out; | 171 | return ret; |
679 | |||
680 | write_enable(flash); | ||
681 | |||
682 | actual = to % 2; | ||
683 | /* Start write from odd address. */ | ||
684 | if (actual) { | ||
685 | flash->command[0] = OPCODE_BP; | ||
686 | m25p_addr2cmd(flash, to, flash->command); | ||
687 | |||
688 | /* write one byte. */ | ||
689 | t[1].len = 1; | ||
690 | spi_sync(flash->spi, &m); | ||
691 | ret = wait_till_ready(flash); | ||
692 | if (ret) | ||
693 | goto time_out; | ||
694 | *retlen += m.actual_length - m25p_cmdsz(flash); | ||
695 | } | ||
696 | to += actual; | ||
697 | |||
698 | flash->command[0] = OPCODE_AAI_WP; | ||
699 | m25p_addr2cmd(flash, to, flash->command); | ||
700 | |||
701 | /* Write out most of the data here. */ | ||
702 | cmd_sz = m25p_cmdsz(flash); | ||
703 | for (; actual < len - 1; actual += 2) { | ||
704 | t[0].len = cmd_sz; | ||
705 | /* write two bytes. */ | ||
706 | t[1].len = 2; | ||
707 | t[1].tx_buf = buf + actual; | ||
708 | 172 | ||
709 | spi_sync(flash->spi, &m); | 173 | /* Send write enable, then erase commands. */ |
710 | ret = wait_till_ready(flash); | 174 | ret = nor->write_reg(nor, SPINOR_OP_WREN, NULL, 0, 0); |
711 | if (ret) | ||
712 | goto time_out; | ||
713 | *retlen += m.actual_length - cmd_sz; | ||
714 | cmd_sz = 1; | ||
715 | to += 2; | ||
716 | } | ||
717 | write_disable(flash); | ||
718 | ret = wait_till_ready(flash); | ||
719 | if (ret) | 175 | if (ret) |
720 | goto time_out; | 176 | return ret; |
721 | |||
722 | /* Write out trailing byte if it exists. */ | ||
723 | if (actual != len) { | ||
724 | write_enable(flash); | ||
725 | flash->command[0] = OPCODE_BP; | ||
726 | m25p_addr2cmd(flash, to, flash->command); | ||
727 | t[0].len = m25p_cmdsz(flash); | ||
728 | t[1].len = 1; | ||
729 | t[1].tx_buf = buf + actual; | ||
730 | |||
731 | spi_sync(flash->spi, &m); | ||
732 | ret = wait_till_ready(flash); | ||
733 | if (ret) | ||
734 | goto time_out; | ||
735 | *retlen += m.actual_length - m25p_cmdsz(flash); | ||
736 | write_disable(flash); | ||
737 | } | ||
738 | |||
739 | time_out: | ||
740 | mutex_unlock(&flash->lock); | ||
741 | return ret; | ||
742 | } | ||
743 | |||
744 | static int m25p80_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | ||
745 | { | ||
746 | struct m25p *flash = mtd_to_m25p(mtd); | ||
747 | uint32_t offset = ofs; | ||
748 | uint8_t status_old, status_new; | ||
749 | int res = 0; | ||
750 | |||
751 | mutex_lock(&flash->lock); | ||
752 | /* Wait until finished previous command */ | ||
753 | if (wait_till_ready(flash)) { | ||
754 | res = 1; | ||
755 | goto err; | ||
756 | } | ||
757 | |||
758 | status_old = read_sr(flash); | ||
759 | |||
760 | if (offset < flash->mtd.size-(flash->mtd.size/2)) | ||
761 | status_new = status_old | SR_BP2 | SR_BP1 | SR_BP0; | ||
762 | else if (offset < flash->mtd.size-(flash->mtd.size/4)) | ||
763 | status_new = (status_old & ~SR_BP0) | SR_BP2 | SR_BP1; | ||
764 | else if (offset < flash->mtd.size-(flash->mtd.size/8)) | ||
765 | status_new = (status_old & ~SR_BP1) | SR_BP2 | SR_BP0; | ||
766 | else if (offset < flash->mtd.size-(flash->mtd.size/16)) | ||
767 | status_new = (status_old & ~(SR_BP0|SR_BP1)) | SR_BP2; | ||
768 | else if (offset < flash->mtd.size-(flash->mtd.size/32)) | ||
769 | status_new = (status_old & ~SR_BP2) | SR_BP1 | SR_BP0; | ||
770 | else if (offset < flash->mtd.size-(flash->mtd.size/64)) | ||
771 | status_new = (status_old & ~(SR_BP2|SR_BP0)) | SR_BP1; | ||
772 | else | ||
773 | status_new = (status_old & ~(SR_BP2|SR_BP1)) | SR_BP0; | ||
774 | |||
775 | /* Only modify protection if it will not unlock other areas */ | ||
776 | if ((status_new&(SR_BP2|SR_BP1|SR_BP0)) > | ||
777 | (status_old&(SR_BP2|SR_BP1|SR_BP0))) { | ||
778 | write_enable(flash); | ||
779 | if (write_sr(flash, status_new) < 0) { | ||
780 | res = 1; | ||
781 | goto err; | ||
782 | } | ||
783 | } | ||
784 | |||
785 | err: mutex_unlock(&flash->lock); | ||
786 | return res; | ||
787 | } | ||
788 | |||
789 | static int m25p80_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | ||
790 | { | ||
791 | struct m25p *flash = mtd_to_m25p(mtd); | ||
792 | uint32_t offset = ofs; | ||
793 | uint8_t status_old, status_new; | ||
794 | int res = 0; | ||
795 | |||
796 | mutex_lock(&flash->lock); | ||
797 | /* Wait until finished previous command */ | ||
798 | if (wait_till_ready(flash)) { | ||
799 | res = 1; | ||
800 | goto err; | ||
801 | } | ||
802 | |||
803 | status_old = read_sr(flash); | ||
804 | |||
805 | if (offset+len > flash->mtd.size-(flash->mtd.size/64)) | ||
806 | status_new = status_old & ~(SR_BP2|SR_BP1|SR_BP0); | ||
807 | else if (offset+len > flash->mtd.size-(flash->mtd.size/32)) | ||
808 | status_new = (status_old & ~(SR_BP2|SR_BP1)) | SR_BP0; | ||
809 | else if (offset+len > flash->mtd.size-(flash->mtd.size/16)) | ||
810 | status_new = (status_old & ~(SR_BP2|SR_BP0)) | SR_BP1; | ||
811 | else if (offset+len > flash->mtd.size-(flash->mtd.size/8)) | ||
812 | status_new = (status_old & ~SR_BP2) | SR_BP1 | SR_BP0; | ||
813 | else if (offset+len > flash->mtd.size-(flash->mtd.size/4)) | ||
814 | status_new = (status_old & ~(SR_BP0|SR_BP1)) | SR_BP2; | ||
815 | else if (offset+len > flash->mtd.size-(flash->mtd.size/2)) | ||
816 | status_new = (status_old & ~SR_BP1) | SR_BP2 | SR_BP0; | ||
817 | else | ||
818 | status_new = (status_old & ~SR_BP0) | SR_BP2 | SR_BP1; | ||
819 | |||
820 | /* Only modify protection if it will not lock other areas */ | ||
821 | if ((status_new&(SR_BP2|SR_BP1|SR_BP0)) < | ||
822 | (status_old&(SR_BP2|SR_BP1|SR_BP0))) { | ||
823 | write_enable(flash); | ||
824 | if (write_sr(flash, status_new) < 0) { | ||
825 | res = 1; | ||
826 | goto err; | ||
827 | } | ||
828 | } | ||
829 | |||
830 | err: mutex_unlock(&flash->lock); | ||
831 | return res; | ||
832 | } | ||
833 | |||
834 | /****************************************************************************/ | ||
835 | |||
836 | /* | ||
837 | * SPI device driver setup and teardown | ||
838 | */ | ||
839 | |||
840 | struct flash_info { | ||
841 | /* JEDEC id zero means "no ID" (most older chips); otherwise it has | ||
842 | * a high byte of zero plus three data bytes: the manufacturer id, | ||
843 | * then a two byte device id. | ||
844 | */ | ||
845 | u32 jedec_id; | ||
846 | u16 ext_id; | ||
847 | |||
848 | /* The size listed here is what works with OPCODE_SE, which isn't | ||
849 | * necessarily called a "sector" by the vendor. | ||
850 | */ | ||
851 | unsigned sector_size; | ||
852 | u16 n_sectors; | ||
853 | |||
854 | u16 page_size; | ||
855 | u16 addr_width; | ||
856 | |||
857 | u16 flags; | ||
858 | #define SECT_4K 0x01 /* OPCODE_BE_4K works uniformly */ | ||
859 | #define M25P_NO_ERASE 0x02 /* No erase command needed */ | ||
860 | #define SST_WRITE 0x04 /* use SST byte programming */ | ||
861 | #define M25P_NO_FR 0x08 /* Can't do fastread */ | ||
862 | #define SECT_4K_PMC 0x10 /* OPCODE_BE_4K_PMC works uniformly */ | ||
863 | #define M25P80_DUAL_READ 0x20 /* Flash supports Dual Read */ | ||
864 | #define M25P80_QUAD_READ 0x40 /* Flash supports Quad Read */ | ||
865 | }; | ||
866 | |||
867 | #define INFO(_jedec_id, _ext_id, _sector_size, _n_sectors, _flags) \ | ||
868 | ((kernel_ulong_t)&(struct flash_info) { \ | ||
869 | .jedec_id = (_jedec_id), \ | ||
870 | .ext_id = (_ext_id), \ | ||
871 | .sector_size = (_sector_size), \ | ||
872 | .n_sectors = (_n_sectors), \ | ||
873 | .page_size = 256, \ | ||
874 | .flags = (_flags), \ | ||
875 | }) | ||
876 | |||
877 | #define CAT25_INFO(_sector_size, _n_sectors, _page_size, _addr_width, _flags) \ | ||
878 | ((kernel_ulong_t)&(struct flash_info) { \ | ||
879 | .sector_size = (_sector_size), \ | ||
880 | .n_sectors = (_n_sectors), \ | ||
881 | .page_size = (_page_size), \ | ||
882 | .addr_width = (_addr_width), \ | ||
883 | .flags = (_flags), \ | ||
884 | }) | ||
885 | |||
886 | /* NOTE: double check command sets and memory organization when you add | ||
887 | * more flash chips. This current list focusses on newer chips, which | ||
888 | * have been converging on command sets which including JEDEC ID. | ||
889 | */ | ||
890 | static const struct spi_device_id m25p_ids[] = { | ||
891 | /* Atmel -- some are (confusingly) marketed as "DataFlash" */ | ||
892 | { "at25fs010", INFO(0x1f6601, 0, 32 * 1024, 4, SECT_4K) }, | ||
893 | { "at25fs040", INFO(0x1f6604, 0, 64 * 1024, 8, SECT_4K) }, | ||
894 | |||
895 | { "at25df041a", INFO(0x1f4401, 0, 64 * 1024, 8, SECT_4K) }, | ||
896 | { "at25df321a", INFO(0x1f4701, 0, 64 * 1024, 64, SECT_4K) }, | ||
897 | { "at25df641", INFO(0x1f4800, 0, 64 * 1024, 128, SECT_4K) }, | ||
898 | |||
899 | { "at26f004", INFO(0x1f0400, 0, 64 * 1024, 8, SECT_4K) }, | ||
900 | { "at26df081a", INFO(0x1f4501, 0, 64 * 1024, 16, SECT_4K) }, | ||
901 | { "at26df161a", INFO(0x1f4601, 0, 64 * 1024, 32, SECT_4K) }, | ||
902 | { "at26df321", INFO(0x1f4700, 0, 64 * 1024, 64, SECT_4K) }, | ||
903 | |||
904 | { "at45db081d", INFO(0x1f2500, 0, 64 * 1024, 16, SECT_4K) }, | ||
905 | |||
906 | /* EON -- en25xxx */ | ||
907 | { "en25f32", INFO(0x1c3116, 0, 64 * 1024, 64, SECT_4K) }, | ||
908 | { "en25p32", INFO(0x1c2016, 0, 64 * 1024, 64, 0) }, | ||
909 | { "en25q32b", INFO(0x1c3016, 0, 64 * 1024, 64, 0) }, | ||
910 | { "en25p64", INFO(0x1c2017, 0, 64 * 1024, 128, 0) }, | ||
911 | { "en25q64", INFO(0x1c3017, 0, 64 * 1024, 128, SECT_4K) }, | ||
912 | { "en25qh256", INFO(0x1c7019, 0, 64 * 1024, 512, 0) }, | ||
913 | |||
914 | /* ESMT */ | ||
915 | { "f25l32pa", INFO(0x8c2016, 0, 64 * 1024, 64, SECT_4K) }, | ||
916 | |||
917 | /* Everspin */ | ||
918 | { "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2, M25P_NO_ERASE | M25P_NO_FR) }, | ||
919 | { "mr25h10", CAT25_INFO(128 * 1024, 1, 256, 3, M25P_NO_ERASE | M25P_NO_FR) }, | ||
920 | |||
921 | /* GigaDevice */ | ||
922 | { "gd25q32", INFO(0xc84016, 0, 64 * 1024, 64, SECT_4K) }, | ||
923 | { "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) }, | ||
924 | |||
925 | /* Intel/Numonyx -- xxxs33b */ | ||
926 | { "160s33b", INFO(0x898911, 0, 64 * 1024, 32, 0) }, | ||
927 | { "320s33b", INFO(0x898912, 0, 64 * 1024, 64, 0) }, | ||
928 | { "640s33b", INFO(0x898913, 0, 64 * 1024, 128, 0) }, | ||
929 | |||
930 | /* Macronix */ | ||
931 | { "mx25l2005a", INFO(0xc22012, 0, 64 * 1024, 4, SECT_4K) }, | ||
932 | { "mx25l4005a", INFO(0xc22013, 0, 64 * 1024, 8, SECT_4K) }, | ||
933 | { "mx25l8005", INFO(0xc22014, 0, 64 * 1024, 16, 0) }, | ||
934 | { "mx25l1606e", INFO(0xc22015, 0, 64 * 1024, 32, SECT_4K) }, | ||
935 | { "mx25l3205d", INFO(0xc22016, 0, 64 * 1024, 64, 0) }, | ||
936 | { "mx25l3255e", INFO(0xc29e16, 0, 64 * 1024, 64, SECT_4K) }, | ||
937 | { "mx25l6405d", INFO(0xc22017, 0, 64 * 1024, 128, 0) }, | ||
938 | { "mx25l12805d", INFO(0xc22018, 0, 64 * 1024, 256, 0) }, | ||
939 | { "mx25l12855e", INFO(0xc22618, 0, 64 * 1024, 256, 0) }, | ||
940 | { "mx25l25635e", INFO(0xc22019, 0, 64 * 1024, 512, 0) }, | ||
941 | { "mx25l25655e", INFO(0xc22619, 0, 64 * 1024, 512, 0) }, | ||
942 | { "mx66l51235l", INFO(0xc2201a, 0, 64 * 1024, 1024, M25P80_QUAD_READ) }, | ||
943 | { "mx66l1g55g", INFO(0xc2261b, 0, 64 * 1024, 2048, M25P80_QUAD_READ) }, | ||
944 | |||
945 | /* Micron */ | ||
946 | { "n25q064", INFO(0x20ba17, 0, 64 * 1024, 128, 0) }, | ||
947 | { "n25q128a11", INFO(0x20bb18, 0, 64 * 1024, 256, 0) }, | ||
948 | { "n25q128a13", INFO(0x20ba18, 0, 64 * 1024, 256, 0) }, | ||
949 | { "n25q256a", INFO(0x20ba19, 0, 64 * 1024, 512, SECT_4K) }, | ||
950 | { "n25q512a", INFO(0x20bb20, 0, 64 * 1024, 1024, SECT_4K) }, | ||
951 | |||
952 | /* PMC */ | ||
953 | { "pm25lv512", INFO(0, 0, 32 * 1024, 2, SECT_4K_PMC) }, | ||
954 | { "pm25lv010", INFO(0, 0, 32 * 1024, 4, SECT_4K_PMC) }, | ||
955 | { "pm25lq032", INFO(0x7f9d46, 0, 64 * 1024, 64, SECT_4K) }, | ||
956 | |||
957 | /* Spansion -- single (large) sector size only, at least | ||
958 | * for the chips listed here (without boot sectors). | ||
959 | */ | ||
960 | { "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, 0) }, | ||
961 | { "s25sl064p", INFO(0x010216, 0x4d00, 64 * 1024, 128, 0) }, | ||
962 | { "s25fl256s0", INFO(0x010219, 0x4d00, 256 * 1024, 128, 0) }, | ||
963 | { "s25fl256s1", INFO(0x010219, 0x4d01, 64 * 1024, 512, M25P80_DUAL_READ | M25P80_QUAD_READ) }, | ||
964 | { "s25fl512s", INFO(0x010220, 0x4d00, 256 * 1024, 256, M25P80_DUAL_READ | M25P80_QUAD_READ) }, | ||
965 | { "s70fl01gs", INFO(0x010221, 0x4d00, 256 * 1024, 256, 0) }, | ||
966 | { "s25sl12800", INFO(0x012018, 0x0300, 256 * 1024, 64, 0) }, | ||
967 | { "s25sl12801", INFO(0x012018, 0x0301, 64 * 1024, 256, 0) }, | ||
968 | { "s25fl129p0", INFO(0x012018, 0x4d00, 256 * 1024, 64, 0) }, | ||
969 | { "s25fl129p1", INFO(0x012018, 0x4d01, 64 * 1024, 256, 0) }, | ||
970 | { "s25sl004a", INFO(0x010212, 0, 64 * 1024, 8, 0) }, | ||
971 | { "s25sl008a", INFO(0x010213, 0, 64 * 1024, 16, 0) }, | ||
972 | { "s25sl016a", INFO(0x010214, 0, 64 * 1024, 32, 0) }, | ||
973 | { "s25sl032a", INFO(0x010215, 0, 64 * 1024, 64, 0) }, | ||
974 | { "s25sl064a", INFO(0x010216, 0, 64 * 1024, 128, 0) }, | ||
975 | { "s25fl008k", INFO(0xef4014, 0, 64 * 1024, 16, SECT_4K) }, | ||
976 | { "s25fl016k", INFO(0xef4015, 0, 64 * 1024, 32, SECT_4K) }, | ||
977 | { "s25fl064k", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) }, | ||
978 | |||
979 | /* SST -- large erase sizes are "overlays", "sectors" are 4K */ | ||
980 | { "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K | SST_WRITE) }, | ||
981 | { "sst25vf080b", INFO(0xbf258e, 0, 64 * 1024, 16, SECT_4K | SST_WRITE) }, | ||
982 | { "sst25vf016b", INFO(0xbf2541, 0, 64 * 1024, 32, SECT_4K | SST_WRITE) }, | ||
983 | { "sst25vf032b", INFO(0xbf254a, 0, 64 * 1024, 64, SECT_4K | SST_WRITE) }, | ||
984 | { "sst25vf064c", INFO(0xbf254b, 0, 64 * 1024, 128, SECT_4K) }, | ||
985 | { "sst25wf512", INFO(0xbf2501, 0, 64 * 1024, 1, SECT_4K | SST_WRITE) }, | ||
986 | { "sst25wf010", INFO(0xbf2502, 0, 64 * 1024, 2, SECT_4K | SST_WRITE) }, | ||
987 | { "sst25wf020", INFO(0xbf2503, 0, 64 * 1024, 4, SECT_4K | SST_WRITE) }, | ||
988 | { "sst25wf040", INFO(0xbf2504, 0, 64 * 1024, 8, SECT_4K | SST_WRITE) }, | ||
989 | |||
990 | /* ST Microelectronics -- newer production may have feature updates */ | ||
991 | { "m25p05", INFO(0x202010, 0, 32 * 1024, 2, 0) }, | ||
992 | { "m25p10", INFO(0x202011, 0, 32 * 1024, 4, 0) }, | ||
993 | { "m25p20", INFO(0x202012, 0, 64 * 1024, 4, 0) }, | ||
994 | { "m25p40", INFO(0x202013, 0, 64 * 1024, 8, 0) }, | ||
995 | { "m25p80", INFO(0x202014, 0, 64 * 1024, 16, 0) }, | ||
996 | { "m25p16", INFO(0x202015, 0, 64 * 1024, 32, 0) }, | ||
997 | { "m25p32", INFO(0x202016, 0, 64 * 1024, 64, 0) }, | ||
998 | { "m25p64", INFO(0x202017, 0, 64 * 1024, 128, 0) }, | ||
999 | { "m25p128", INFO(0x202018, 0, 256 * 1024, 64, 0) }, | ||
1000 | { "n25q032", INFO(0x20ba16, 0, 64 * 1024, 64, 0) }, | ||
1001 | |||
1002 | { "m25p05-nonjedec", INFO(0, 0, 32 * 1024, 2, 0) }, | ||
1003 | { "m25p10-nonjedec", INFO(0, 0, 32 * 1024, 4, 0) }, | ||
1004 | { "m25p20-nonjedec", INFO(0, 0, 64 * 1024, 4, 0) }, | ||
1005 | { "m25p40-nonjedec", INFO(0, 0, 64 * 1024, 8, 0) }, | ||
1006 | { "m25p80-nonjedec", INFO(0, 0, 64 * 1024, 16, 0) }, | ||
1007 | { "m25p16-nonjedec", INFO(0, 0, 64 * 1024, 32, 0) }, | ||
1008 | { "m25p32-nonjedec", INFO(0, 0, 64 * 1024, 64, 0) }, | ||
1009 | { "m25p64-nonjedec", INFO(0, 0, 64 * 1024, 128, 0) }, | ||
1010 | { "m25p128-nonjedec", INFO(0, 0, 256 * 1024, 64, 0) }, | ||
1011 | |||
1012 | { "m45pe10", INFO(0x204011, 0, 64 * 1024, 2, 0) }, | ||
1013 | { "m45pe80", INFO(0x204014, 0, 64 * 1024, 16, 0) }, | ||
1014 | { "m45pe16", INFO(0x204015, 0, 64 * 1024, 32, 0) }, | ||
1015 | |||
1016 | { "m25pe20", INFO(0x208012, 0, 64 * 1024, 4, 0) }, | ||
1017 | { "m25pe80", INFO(0x208014, 0, 64 * 1024, 16, 0) }, | ||
1018 | { "m25pe16", INFO(0x208015, 0, 64 * 1024, 32, SECT_4K) }, | ||
1019 | |||
1020 | { "m25px16", INFO(0x207115, 0, 64 * 1024, 32, SECT_4K) }, | ||
1021 | { "m25px32", INFO(0x207116, 0, 64 * 1024, 64, SECT_4K) }, | ||
1022 | { "m25px32-s0", INFO(0x207316, 0, 64 * 1024, 64, SECT_4K) }, | ||
1023 | { "m25px32-s1", INFO(0x206316, 0, 64 * 1024, 64, SECT_4K) }, | ||
1024 | { "m25px64", INFO(0x207117, 0, 64 * 1024, 128, 0) }, | ||
1025 | |||
1026 | /* Winbond -- w25x "blocks" are 64K, "sectors" are 4KiB */ | ||
1027 | { "w25x10", INFO(0xef3011, 0, 64 * 1024, 2, SECT_4K) }, | ||
1028 | { "w25x20", INFO(0xef3012, 0, 64 * 1024, 4, SECT_4K) }, | ||
1029 | { "w25x40", INFO(0xef3013, 0, 64 * 1024, 8, SECT_4K) }, | ||
1030 | { "w25x80", INFO(0xef3014, 0, 64 * 1024, 16, SECT_4K) }, | ||
1031 | { "w25x16", INFO(0xef3015, 0, 64 * 1024, 32, SECT_4K) }, | ||
1032 | { "w25x32", INFO(0xef3016, 0, 64 * 1024, 64, SECT_4K) }, | ||
1033 | { "w25q32", INFO(0xef4016, 0, 64 * 1024, 64, SECT_4K) }, | ||
1034 | { "w25q32dw", INFO(0xef6016, 0, 64 * 1024, 64, SECT_4K) }, | ||
1035 | { "w25x64", INFO(0xef3017, 0, 64 * 1024, 128, SECT_4K) }, | ||
1036 | { "w25q64", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) }, | ||
1037 | { "w25q128", INFO(0xef4018, 0, 64 * 1024, 256, SECT_4K) }, | ||
1038 | { "w25q80", INFO(0xef5014, 0, 64 * 1024, 16, SECT_4K) }, | ||
1039 | { "w25q80bl", INFO(0xef4014, 0, 64 * 1024, 16, SECT_4K) }, | ||
1040 | { "w25q128", INFO(0xef4018, 0, 64 * 1024, 256, SECT_4K) }, | ||
1041 | { "w25q256", INFO(0xef4019, 0, 64 * 1024, 512, SECT_4K) }, | ||
1042 | |||
1043 | /* Catalyst / On Semiconductor -- non-JEDEC */ | ||
1044 | { "cat25c11", CAT25_INFO( 16, 8, 16, 1, M25P_NO_ERASE | M25P_NO_FR) }, | ||
1045 | { "cat25c03", CAT25_INFO( 32, 8, 16, 2, M25P_NO_ERASE | M25P_NO_FR) }, | ||
1046 | { "cat25c09", CAT25_INFO( 128, 8, 32, 2, M25P_NO_ERASE | M25P_NO_FR) }, | ||
1047 | { "cat25c17", CAT25_INFO( 256, 8, 32, 2, M25P_NO_ERASE | M25P_NO_FR) }, | ||
1048 | { "cat25128", CAT25_INFO(2048, 8, 64, 2, M25P_NO_ERASE | M25P_NO_FR) }, | ||
1049 | { }, | ||
1050 | }; | ||
1051 | MODULE_DEVICE_TABLE(spi, m25p_ids); | ||
1052 | |||
1053 | static const struct spi_device_id *jedec_probe(struct spi_device *spi) | ||
1054 | { | ||
1055 | int tmp; | ||
1056 | u8 code = OPCODE_RDID; | ||
1057 | u8 id[5]; | ||
1058 | u32 jedec; | ||
1059 | u16 ext_jedec; | ||
1060 | struct flash_info *info; | ||
1061 | 177 | ||
1062 | /* JEDEC also defines an optional "extended device information" | 178 | /* Set up command buffer. */ |
1063 | * string for after vendor-specific data, after the three bytes | 179 | flash->command[0] = nor->erase_opcode; |
1064 | * we use here. Supporting some chips might require using it. | 180 | m25p_addr2cmd(nor, offset, flash->command); |
1065 | */ | ||
1066 | tmp = spi_write_then_read(spi, &code, 1, id, 5); | ||
1067 | if (tmp < 0) { | ||
1068 | pr_debug("%s: error %d reading JEDEC ID\n", | ||
1069 | dev_name(&spi->dev), tmp); | ||
1070 | return ERR_PTR(tmp); | ||
1071 | } | ||
1072 | jedec = id[0]; | ||
1073 | jedec = jedec << 8; | ||
1074 | jedec |= id[1]; | ||
1075 | jedec = jedec << 8; | ||
1076 | jedec |= id[2]; | ||
1077 | 181 | ||
1078 | ext_jedec = id[3] << 8 | id[4]; | 182 | spi_write(flash->spi, flash->command, m25p_cmdsz(nor)); |
1079 | 183 | ||
1080 | for (tmp = 0; tmp < ARRAY_SIZE(m25p_ids) - 1; tmp++) { | 184 | return 0; |
1081 | info = (void *)m25p_ids[tmp].driver_data; | ||
1082 | if (info->jedec_id == jedec) { | ||
1083 | if (info->ext_id == 0 || info->ext_id == ext_jedec) | ||
1084 | return &m25p_ids[tmp]; | ||
1085 | } | ||
1086 | } | ||
1087 | dev_err(&spi->dev, "unrecognized JEDEC id %06x\n", jedec); | ||
1088 | return ERR_PTR(-ENODEV); | ||
1089 | } | 185 | } |
1090 | 186 | ||
1091 | |||
1092 | /* | 187 | /* |
1093 | * board specific setup should have ensured the SPI clock used here | 188 | * board specific setup should have ensured the SPI clock used here |
1094 | * matches what the READ command supports, at least until this driver | 189 | * matches what the READ command supports, at least until this driver |
@@ -1096,231 +191,43 @@ static const struct spi_device_id *jedec_probe(struct spi_device *spi) | |||
1096 | */ | 191 | */ |
1097 | static int m25p_probe(struct spi_device *spi) | 192 | static int m25p_probe(struct spi_device *spi) |
1098 | { | 193 | { |
1099 | const struct spi_device_id *id = spi_get_device_id(spi); | ||
1100 | struct flash_platform_data *data; | ||
1101 | struct m25p *flash; | ||
1102 | struct flash_info *info; | ||
1103 | unsigned i; | ||
1104 | struct mtd_part_parser_data ppdata; | 194 | struct mtd_part_parser_data ppdata; |
1105 | struct device_node *np = spi->dev.of_node; | 195 | struct flash_platform_data *data; |
196 | struct m25p *flash; | ||
197 | struct spi_nor *nor; | ||
198 | enum read_mode mode = SPI_NOR_NORMAL; | ||
1106 | int ret; | 199 | int ret; |
1107 | 200 | ||
1108 | /* Platform data helps sort out which chip type we have, as | ||
1109 | * well as how this board partitions it. If we don't have | ||
1110 | * a chip ID, try the JEDEC id commands; they'll work for most | ||
1111 | * newer chips, even if we don't recognize the particular chip. | ||
1112 | */ | ||
1113 | data = dev_get_platdata(&spi->dev); | ||
1114 | if (data && data->type) { | ||
1115 | const struct spi_device_id *plat_id; | ||
1116 | |||
1117 | for (i = 0; i < ARRAY_SIZE(m25p_ids) - 1; i++) { | ||
1118 | plat_id = &m25p_ids[i]; | ||
1119 | if (strcmp(data->type, plat_id->name)) | ||
1120 | continue; | ||
1121 | break; | ||
1122 | } | ||
1123 | |||
1124 | if (i < ARRAY_SIZE(m25p_ids) - 1) | ||
1125 | id = plat_id; | ||
1126 | else | ||
1127 | dev_warn(&spi->dev, "unrecognized id %s\n", data->type); | ||
1128 | } | ||
1129 | |||
1130 | info = (void *)id->driver_data; | ||
1131 | |||
1132 | if (info->jedec_id) { | ||
1133 | const struct spi_device_id *jid; | ||
1134 | |||
1135 | jid = jedec_probe(spi); | ||
1136 | if (IS_ERR(jid)) { | ||
1137 | return PTR_ERR(jid); | ||
1138 | } else if (jid != id) { | ||
1139 | /* | ||
1140 | * JEDEC knows better, so overwrite platform ID. We | ||
1141 | * can't trust partitions any longer, but we'll let | ||
1142 | * mtd apply them anyway, since some partitions may be | ||
1143 | * marked read-only, and we don't want to lose that | ||
1144 | * information, even if it's not 100% accurate. | ||
1145 | */ | ||
1146 | dev_warn(&spi->dev, "found %s, expected %s\n", | ||
1147 | jid->name, id->name); | ||
1148 | id = jid; | ||
1149 | info = (void *)jid->driver_data; | ||
1150 | } | ||
1151 | } | ||
1152 | |||
1153 | flash = devm_kzalloc(&spi->dev, sizeof(*flash), GFP_KERNEL); | 201 | flash = devm_kzalloc(&spi->dev, sizeof(*flash), GFP_KERNEL); |
1154 | if (!flash) | 202 | if (!flash) |
1155 | return -ENOMEM; | 203 | return -ENOMEM; |
1156 | 204 | ||
1157 | flash->command = devm_kzalloc(&spi->dev, MAX_CMD_SIZE, GFP_KERNEL); | 205 | nor = &flash->spi_nor; |
1158 | if (!flash->command) | ||
1159 | return -ENOMEM; | ||
1160 | |||
1161 | flash->spi = spi; | ||
1162 | mutex_init(&flash->lock); | ||
1163 | spi_set_drvdata(spi, flash); | ||
1164 | |||
1165 | /* | ||
1166 | * Atmel, SST and Intel/Numonyx serial flash tend to power | ||
1167 | * up with the software protection bits set | ||
1168 | */ | ||
1169 | 206 | ||
1170 | if (JEDEC_MFR(info->jedec_id) == CFI_MFR_ATMEL || | 207 | /* install the hooks */ |
1171 | JEDEC_MFR(info->jedec_id) == CFI_MFR_INTEL || | 208 | nor->read = m25p80_read; |
1172 | JEDEC_MFR(info->jedec_id) == CFI_MFR_SST) { | 209 | nor->write = m25p80_write; |
1173 | write_enable(flash); | 210 | nor->erase = m25p80_erase; |
1174 | write_sr(flash, 0); | 211 | nor->write_reg = m25p80_write_reg; |
1175 | } | 212 | nor->read_reg = m25p80_read_reg; |
1176 | |||
1177 | if (data && data->name) | ||
1178 | flash->mtd.name = data->name; | ||
1179 | else | ||
1180 | flash->mtd.name = dev_name(&spi->dev); | ||
1181 | |||
1182 | flash->mtd.type = MTD_NORFLASH; | ||
1183 | flash->mtd.writesize = 1; | ||
1184 | flash->mtd.flags = MTD_CAP_NORFLASH; | ||
1185 | flash->mtd.size = info->sector_size * info->n_sectors; | ||
1186 | flash->mtd._erase = m25p80_erase; | ||
1187 | flash->mtd._read = m25p80_read; | ||
1188 | |||
1189 | /* flash protection support for STmicro chips */ | ||
1190 | if (JEDEC_MFR(info->jedec_id) == CFI_MFR_ST) { | ||
1191 | flash->mtd._lock = m25p80_lock; | ||
1192 | flash->mtd._unlock = m25p80_unlock; | ||
1193 | } | ||
1194 | 213 | ||
1195 | /* sst flash chips use AAI word program */ | 214 | nor->dev = &spi->dev; |
1196 | if (info->flags & SST_WRITE) | 215 | nor->mtd = &flash->mtd; |
1197 | flash->mtd._write = sst_write; | 216 | nor->priv = flash; |
1198 | else | ||
1199 | flash->mtd._write = m25p80_write; | ||
1200 | 217 | ||
1201 | /* prefer "small sector" erase if possible */ | 218 | spi_set_drvdata(spi, flash); |
1202 | if (info->flags & SECT_4K) { | 219 | flash->mtd.priv = nor; |
1203 | flash->erase_opcode = OPCODE_BE_4K; | 220 | flash->spi = spi; |
1204 | flash->mtd.erasesize = 4096; | ||
1205 | } else if (info->flags & SECT_4K_PMC) { | ||
1206 | flash->erase_opcode = OPCODE_BE_4K_PMC; | ||
1207 | flash->mtd.erasesize = 4096; | ||
1208 | } else { | ||
1209 | flash->erase_opcode = OPCODE_SE; | ||
1210 | flash->mtd.erasesize = info->sector_size; | ||
1211 | } | ||
1212 | 221 | ||
1213 | if (info->flags & M25P_NO_ERASE) | 222 | if (spi->mode & SPI_RX_QUAD) |
1214 | flash->mtd.flags |= MTD_NO_ERASE; | 223 | mode = SPI_NOR_QUAD; |
224 | ret = spi_nor_scan(nor, spi_get_device_id(spi), mode); | ||
225 | if (ret) | ||
226 | return ret; | ||
1215 | 227 | ||
228 | data = dev_get_platdata(&spi->dev); | ||
1216 | ppdata.of_node = spi->dev.of_node; | 229 | ppdata.of_node = spi->dev.of_node; |
1217 | flash->mtd.dev.parent = &spi->dev; | ||
1218 | flash->page_size = info->page_size; | ||
1219 | flash->mtd.writebufsize = flash->page_size; | ||
1220 | |||
1221 | if (np) { | ||
1222 | /* If we were instantiated by DT, use it */ | ||
1223 | if (of_property_read_bool(np, "m25p,fast-read")) | ||
1224 | flash->flash_read = M25P80_FAST; | ||
1225 | else | ||
1226 | flash->flash_read = M25P80_NORMAL; | ||
1227 | } else { | ||
1228 | /* If we weren't instantiated by DT, default to fast-read */ | ||
1229 | flash->flash_read = M25P80_FAST; | ||
1230 | } | ||
1231 | |||
1232 | /* Some devices cannot do fast-read, no matter what DT tells us */ | ||
1233 | if (info->flags & M25P_NO_FR) | ||
1234 | flash->flash_read = M25P80_NORMAL; | ||
1235 | |||
1236 | /* Quad/Dual-read mode takes precedence over fast/normal */ | ||
1237 | if (spi->mode & SPI_RX_QUAD && info->flags & M25P80_QUAD_READ) { | ||
1238 | ret = set_quad_mode(flash, info->jedec_id); | ||
1239 | if (ret) { | ||
1240 | dev_err(&flash->spi->dev, "quad mode not supported\n"); | ||
1241 | return ret; | ||
1242 | } | ||
1243 | flash->flash_read = M25P80_QUAD; | ||
1244 | } else if (spi->mode & SPI_RX_DUAL && info->flags & M25P80_DUAL_READ) { | ||
1245 | flash->flash_read = M25P80_DUAL; | ||
1246 | } | ||
1247 | 230 | ||
1248 | /* Default commands */ | ||
1249 | switch (flash->flash_read) { | ||
1250 | case M25P80_QUAD: | ||
1251 | flash->read_opcode = OPCODE_QUAD_READ; | ||
1252 | break; | ||
1253 | case M25P80_DUAL: | ||
1254 | flash->read_opcode = OPCODE_DUAL_READ; | ||
1255 | break; | ||
1256 | case M25P80_FAST: | ||
1257 | flash->read_opcode = OPCODE_FAST_READ; | ||
1258 | break; | ||
1259 | case M25P80_NORMAL: | ||
1260 | flash->read_opcode = OPCODE_NORM_READ; | ||
1261 | break; | ||
1262 | default: | ||
1263 | dev_err(&flash->spi->dev, "No Read opcode defined\n"); | ||
1264 | return -EINVAL; | ||
1265 | } | ||
1266 | |||
1267 | flash->program_opcode = OPCODE_PP; | ||
1268 | |||
1269 | if (info->addr_width) | ||
1270 | flash->addr_width = info->addr_width; | ||
1271 | else if (flash->mtd.size > 0x1000000) { | ||
1272 | /* enable 4-byte addressing if the device exceeds 16MiB */ | ||
1273 | flash->addr_width = 4; | ||
1274 | if (JEDEC_MFR(info->jedec_id) == CFI_MFR_AMD) { | ||
1275 | /* Dedicated 4-byte command set */ | ||
1276 | switch (flash->flash_read) { | ||
1277 | case M25P80_QUAD: | ||
1278 | flash->read_opcode = OPCODE_QUAD_READ_4B; | ||
1279 | break; | ||
1280 | case M25P80_DUAL: | ||
1281 | flash->read_opcode = OPCODE_DUAL_READ_4B; | ||
1282 | break; | ||
1283 | case M25P80_FAST: | ||
1284 | flash->read_opcode = OPCODE_FAST_READ_4B; | ||
1285 | break; | ||
1286 | case M25P80_NORMAL: | ||
1287 | flash->read_opcode = OPCODE_NORM_READ_4B; | ||
1288 | break; | ||
1289 | } | ||
1290 | flash->program_opcode = OPCODE_PP_4B; | ||
1291 | /* No small sector erase for 4-byte command set */ | ||
1292 | flash->erase_opcode = OPCODE_SE_4B; | ||
1293 | flash->mtd.erasesize = info->sector_size; | ||
1294 | } else | ||
1295 | set_4byte(flash, info->jedec_id, 1); | ||
1296 | } else { | ||
1297 | flash->addr_width = 3; | ||
1298 | } | ||
1299 | |||
1300 | dev_info(&spi->dev, "%s (%lld Kbytes)\n", id->name, | ||
1301 | (long long)flash->mtd.size >> 10); | ||
1302 | |||
1303 | pr_debug("mtd .name = %s, .size = 0x%llx (%lldMiB) " | ||
1304 | ".erasesize = 0x%.8x (%uKiB) .numeraseregions = %d\n", | ||
1305 | flash->mtd.name, | ||
1306 | (long long)flash->mtd.size, (long long)(flash->mtd.size >> 20), | ||
1307 | flash->mtd.erasesize, flash->mtd.erasesize / 1024, | ||
1308 | flash->mtd.numeraseregions); | ||
1309 | |||
1310 | if (flash->mtd.numeraseregions) | ||
1311 | for (i = 0; i < flash->mtd.numeraseregions; i++) | ||
1312 | pr_debug("mtd.eraseregions[%d] = { .offset = 0x%llx, " | ||
1313 | ".erasesize = 0x%.8x (%uKiB), " | ||
1314 | ".numblocks = %d }\n", | ||
1315 | i, (long long)flash->mtd.eraseregions[i].offset, | ||
1316 | flash->mtd.eraseregions[i].erasesize, | ||
1317 | flash->mtd.eraseregions[i].erasesize / 1024, | ||
1318 | flash->mtd.eraseregions[i].numblocks); | ||
1319 | |||
1320 | |||
1321 | /* partitions should match sector boundaries; and it may be good to | ||
1322 | * use readonly partitions for writeprotected sectors (BP2..BP0). | ||
1323 | */ | ||
1324 | return mtd_device_parse_register(&flash->mtd, NULL, &ppdata, | 231 | return mtd_device_parse_register(&flash->mtd, NULL, &ppdata, |
1325 | data ? data->parts : NULL, | 232 | data ? data->parts : NULL, |
1326 | data ? data->nr_parts : 0); | 233 | data ? data->nr_parts : 0); |
@@ -1341,7 +248,7 @@ static struct spi_driver m25p80_driver = { | |||
1341 | .name = "m25p80", | 248 | .name = "m25p80", |
1342 | .owner = THIS_MODULE, | 249 | .owner = THIS_MODULE, |
1343 | }, | 250 | }, |
1344 | .id_table = m25p_ids, | 251 | .id_table = spi_nor_ids, |
1345 | .probe = m25p_probe, | 252 | .probe = m25p_probe, |
1346 | .remove = m25p_remove, | 253 | .remove = m25p_remove, |
1347 | 254 | ||
diff --git a/drivers/mtd/devices/serial_flash_cmds.h b/drivers/mtd/devices/serial_flash_cmds.h index 4f0c2c7c898e..f59a125295d0 100644 --- a/drivers/mtd/devices/serial_flash_cmds.h +++ b/drivers/mtd/devices/serial_flash_cmds.h | |||
@@ -13,43 +13,23 @@ | |||
13 | #define _MTD_SERIAL_FLASH_CMDS_H | 13 | #define _MTD_SERIAL_FLASH_CMDS_H |
14 | 14 | ||
15 | /* Generic Flash Commands/OPCODEs */ | 15 | /* Generic Flash Commands/OPCODEs */ |
16 | #define FLASH_CMD_WREN 0x06 | 16 | #define SPINOR_OP_RDSR2 0x35 |
17 | #define FLASH_CMD_WRDI 0x04 | 17 | #define SPINOR_OP_WRVCR 0x81 |
18 | #define FLASH_CMD_RDID 0x9f | 18 | #define SPINOR_OP_RDVCR 0x85 |
19 | #define FLASH_CMD_RDSR 0x05 | ||
20 | #define FLASH_CMD_RDSR2 0x35 | ||
21 | #define FLASH_CMD_WRSR 0x01 | ||
22 | #define FLASH_CMD_SE_4K 0x20 | ||
23 | #define FLASH_CMD_SE_32K 0x52 | ||
24 | #define FLASH_CMD_SE 0xd8 | ||
25 | #define FLASH_CMD_CHIPERASE 0xc7 | ||
26 | #define FLASH_CMD_WRVCR 0x81 | ||
27 | #define FLASH_CMD_RDVCR 0x85 | ||
28 | 19 | ||
29 | /* JEDEC Standard - Serial Flash Discoverable Parmeters (SFDP) Commands */ | 20 | /* JEDEC Standard - Serial Flash Discoverable Parmeters (SFDP) Commands */ |
30 | #define FLASH_CMD_READ 0x03 /* READ */ | 21 | #define SPINOR_OP_READ_1_2_2 0xbb /* DUAL I/O READ */ |
31 | #define FLASH_CMD_READ_FAST 0x0b /* FAST READ */ | 22 | #define SPINOR_OP_READ_1_4_4 0xeb /* QUAD I/O READ */ |
32 | #define FLASH_CMD_READ_1_1_2 0x3b /* DUAL OUTPUT READ */ | ||
33 | #define FLASH_CMD_READ_1_2_2 0xbb /* DUAL I/O READ */ | ||
34 | #define FLASH_CMD_READ_1_1_4 0x6b /* QUAD OUTPUT READ */ | ||
35 | #define FLASH_CMD_READ_1_4_4 0xeb /* QUAD I/O READ */ | ||
36 | 23 | ||
37 | #define FLASH_CMD_WRITE 0x02 /* PAGE PROGRAM */ | 24 | #define SPINOR_OP_WRITE 0x02 /* PAGE PROGRAM */ |
38 | #define FLASH_CMD_WRITE_1_1_2 0xa2 /* DUAL INPUT PROGRAM */ | 25 | #define SPINOR_OP_WRITE_1_1_2 0xa2 /* DUAL INPUT PROGRAM */ |
39 | #define FLASH_CMD_WRITE_1_2_2 0xd2 /* DUAL INPUT EXT PROGRAM */ | 26 | #define SPINOR_OP_WRITE_1_2_2 0xd2 /* DUAL INPUT EXT PROGRAM */ |
40 | #define FLASH_CMD_WRITE_1_1_4 0x32 /* QUAD INPUT PROGRAM */ | 27 | #define SPINOR_OP_WRITE_1_1_4 0x32 /* QUAD INPUT PROGRAM */ |
41 | #define FLASH_CMD_WRITE_1_4_4 0x12 /* QUAD INPUT EXT PROGRAM */ | 28 | #define SPINOR_OP_WRITE_1_4_4 0x12 /* QUAD INPUT EXT PROGRAM */ |
42 | |||
43 | #define FLASH_CMD_EN4B_ADDR 0xb7 /* Enter 4-byte address mode */ | ||
44 | #define FLASH_CMD_EX4B_ADDR 0xe9 /* Exit 4-byte address mode */ | ||
45 | 29 | ||
46 | /* READ commands with 32-bit addressing */ | 30 | /* READ commands with 32-bit addressing */ |
47 | #define FLASH_CMD_READ4 0x13 | 31 | #define SPINOR_OP_READ4_1_2_2 0xbc |
48 | #define FLASH_CMD_READ4_FAST 0x0c | 32 | #define SPINOR_OP_READ4_1_4_4 0xec |
49 | #define FLASH_CMD_READ4_1_1_2 0x3c | ||
50 | #define FLASH_CMD_READ4_1_2_2 0xbc | ||
51 | #define FLASH_CMD_READ4_1_1_4 0x6c | ||
52 | #define FLASH_CMD_READ4_1_4_4 0xec | ||
53 | 33 | ||
54 | /* Configuration flags */ | 34 | /* Configuration flags */ |
55 | #define FLASH_FLAG_SINGLE 0x000000ff | 35 | #define FLASH_FLAG_SINGLE 0x000000ff |
diff --git a/drivers/mtd/devices/st_spi_fsm.c b/drivers/mtd/devices/st_spi_fsm.c index 1957d7c8e185..f97fe144077d 100644 --- a/drivers/mtd/devices/st_spi_fsm.c +++ b/drivers/mtd/devices/st_spi_fsm.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/mfd/syscon.h> | 19 | #include <linux/mfd/syscon.h> |
20 | #include <linux/mtd/mtd.h> | 20 | #include <linux/mtd/mtd.h> |
21 | #include <linux/mtd/partitions.h> | 21 | #include <linux/mtd/partitions.h> |
22 | #include <linux/mtd/spi-nor.h> | ||
22 | #include <linux/sched.h> | 23 | #include <linux/sched.h> |
23 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
24 | #include <linux/io.h> | 25 | #include <linux/io.h> |
@@ -201,44 +202,6 @@ | |||
201 | 202 | ||
202 | #define STFSM_MAX_WAIT_SEQ_MS 1000 /* FSM execution time */ | 203 | #define STFSM_MAX_WAIT_SEQ_MS 1000 /* FSM execution time */ |
203 | 204 | ||
204 | /* Flash Commands */ | ||
205 | #define FLASH_CMD_WREN 0x06 | ||
206 | #define FLASH_CMD_WRDI 0x04 | ||
207 | #define FLASH_CMD_RDID 0x9f | ||
208 | #define FLASH_CMD_RDSR 0x05 | ||
209 | #define FLASH_CMD_RDSR2 0x35 | ||
210 | #define FLASH_CMD_WRSR 0x01 | ||
211 | #define FLASH_CMD_SE_4K 0x20 | ||
212 | #define FLASH_CMD_SE_32K 0x52 | ||
213 | #define FLASH_CMD_SE 0xd8 | ||
214 | #define FLASH_CMD_CHIPERASE 0xc7 | ||
215 | #define FLASH_CMD_WRVCR 0x81 | ||
216 | #define FLASH_CMD_RDVCR 0x85 | ||
217 | |||
218 | #define FLASH_CMD_READ 0x03 /* READ */ | ||
219 | #define FLASH_CMD_READ_FAST 0x0b /* FAST READ */ | ||
220 | #define FLASH_CMD_READ_1_1_2 0x3b /* DUAL OUTPUT READ */ | ||
221 | #define FLASH_CMD_READ_1_2_2 0xbb /* DUAL I/O READ */ | ||
222 | #define FLASH_CMD_READ_1_1_4 0x6b /* QUAD OUTPUT READ */ | ||
223 | #define FLASH_CMD_READ_1_4_4 0xeb /* QUAD I/O READ */ | ||
224 | |||
225 | #define FLASH_CMD_WRITE 0x02 /* PAGE PROGRAM */ | ||
226 | #define FLASH_CMD_WRITE_1_1_2 0xa2 /* DUAL INPUT PROGRAM */ | ||
227 | #define FLASH_CMD_WRITE_1_2_2 0xd2 /* DUAL INPUT EXT PROGRAM */ | ||
228 | #define FLASH_CMD_WRITE_1_1_4 0x32 /* QUAD INPUT PROGRAM */ | ||
229 | #define FLASH_CMD_WRITE_1_4_4 0x12 /* QUAD INPUT EXT PROGRAM */ | ||
230 | |||
231 | #define FLASH_CMD_EN4B_ADDR 0xb7 /* Enter 4-byte address mode */ | ||
232 | #define FLASH_CMD_EX4B_ADDR 0xe9 /* Exit 4-byte address mode */ | ||
233 | |||
234 | /* READ commands with 32-bit addressing (N25Q256 and S25FLxxxS) */ | ||
235 | #define FLASH_CMD_READ4 0x13 | ||
236 | #define FLASH_CMD_READ4_FAST 0x0c | ||
237 | #define FLASH_CMD_READ4_1_1_2 0x3c | ||
238 | #define FLASH_CMD_READ4_1_2_2 0xbc | ||
239 | #define FLASH_CMD_READ4_1_1_4 0x6c | ||
240 | #define FLASH_CMD_READ4_1_4_4 0xec | ||
241 | |||
242 | /* S25FLxxxS commands */ | 205 | /* S25FLxxxS commands */ |
243 | #define S25FL_CMD_WRITE4_1_1_4 0x34 | 206 | #define S25FL_CMD_WRITE4_1_1_4 0x34 |
244 | #define S25FL_CMD_SE4 0xdc | 207 | #define S25FL_CMD_SE4 0xdc |
@@ -246,7 +209,7 @@ | |||
246 | #define S25FL_CMD_DYBWR 0xe1 | 209 | #define S25FL_CMD_DYBWR 0xe1 |
247 | #define S25FL_CMD_DYBRD 0xe0 | 210 | #define S25FL_CMD_DYBRD 0xe0 |
248 | #define S25FL_CMD_WRITE4 0x12 /* Note, opcode clashes with | 211 | #define S25FL_CMD_WRITE4 0x12 /* Note, opcode clashes with |
249 | * 'FLASH_CMD_WRITE_1_4_4' | 212 | * 'SPINOR_OP_WRITE_1_4_4' |
250 | * as found on N25Qxxx devices! */ | 213 | * as found on N25Qxxx devices! */ |
251 | 214 | ||
252 | /* Status register */ | 215 | /* Status register */ |
@@ -261,6 +224,12 @@ | |||
261 | #define S25FL_STATUS_E_ERR 0x20 | 224 | #define S25FL_STATUS_E_ERR 0x20 |
262 | #define S25FL_STATUS_P_ERR 0x40 | 225 | #define S25FL_STATUS_P_ERR 0x40 |
263 | 226 | ||
227 | #define N25Q_CMD_WRVCR 0x81 | ||
228 | #define N25Q_CMD_RDVCR 0x85 | ||
229 | #define N25Q_CMD_RDVECR 0x65 | ||
230 | #define N25Q_CMD_RDNVCR 0xb5 | ||
231 | #define N25Q_CMD_WRNVCR 0xb1 | ||
232 | |||
264 | #define FLASH_PAGESIZE 256 /* In Bytes */ | 233 | #define FLASH_PAGESIZE 256 /* In Bytes */ |
265 | #define FLASH_PAGESIZE_32 (FLASH_PAGESIZE / 4) /* In uint32_t */ | 234 | #define FLASH_PAGESIZE_32 (FLASH_PAGESIZE / 4) /* In uint32_t */ |
266 | #define FLASH_MAX_BUSY_WAIT (300 * HZ) /* Maximum 'CHIPERASE' time */ | 235 | #define FLASH_MAX_BUSY_WAIT (300 * HZ) /* Maximum 'CHIPERASE' time */ |
@@ -270,7 +239,6 @@ | |||
270 | */ | 239 | */ |
271 | #define CFG_READ_TOGGLE_32BIT_ADDR 0x00000001 | 240 | #define CFG_READ_TOGGLE_32BIT_ADDR 0x00000001 |
272 | #define CFG_WRITE_TOGGLE_32BIT_ADDR 0x00000002 | 241 | #define CFG_WRITE_TOGGLE_32BIT_ADDR 0x00000002 |
273 | #define CFG_WRITE_EX_32BIT_ADDR_DELAY 0x00000004 | ||
274 | #define CFG_ERASESEC_TOGGLE_32BIT_ADDR 0x00000008 | 242 | #define CFG_ERASESEC_TOGGLE_32BIT_ADDR 0x00000008 |
275 | #define CFG_S25FL_CHECK_ERROR_FLAGS 0x00000010 | 243 | #define CFG_S25FL_CHECK_ERROR_FLAGS 0x00000010 |
276 | 244 | ||
@@ -329,7 +297,7 @@ struct flash_info { | |||
329 | u32 jedec_id; | 297 | u32 jedec_id; |
330 | u16 ext_id; | 298 | u16 ext_id; |
331 | /* | 299 | /* |
332 | * The size listed here is what works with FLASH_CMD_SE, which isn't | 300 | * The size listed here is what works with SPINOR_OP_SE, which isn't |
333 | * necessarily called a "sector" by the vendor. | 301 | * necessarily called a "sector" by the vendor. |
334 | */ | 302 | */ |
335 | unsigned sector_size; | 303 | unsigned sector_size; |
@@ -369,17 +337,26 @@ static struct flash_info flash_types[] = { | |||
369 | { "m25px32", 0x207116, 0, 64 * 1024, 64, M25PX_FLAG, 75, NULL }, | 337 | { "m25px32", 0x207116, 0, 64 * 1024, 64, M25PX_FLAG, 75, NULL }, |
370 | { "m25px64", 0x207117, 0, 64 * 1024, 128, M25PX_FLAG, 75, NULL }, | 338 | { "m25px64", 0x207117, 0, 64 * 1024, 128, M25PX_FLAG, 75, NULL }, |
371 | 339 | ||
340 | /* Macronix MX25xxx | ||
341 | * - Support for 'FLASH_FLAG_WRITE_1_4_4' is omitted for devices | ||
342 | * where operating frequency must be reduced. | ||
343 | */ | ||
372 | #define MX25_FLAG (FLASH_FLAG_READ_WRITE | \ | 344 | #define MX25_FLAG (FLASH_FLAG_READ_WRITE | \ |
373 | FLASH_FLAG_READ_FAST | \ | 345 | FLASH_FLAG_READ_FAST | \ |
374 | FLASH_FLAG_READ_1_1_2 | \ | 346 | FLASH_FLAG_READ_1_1_2 | \ |
375 | FLASH_FLAG_READ_1_2_2 | \ | 347 | FLASH_FLAG_READ_1_2_2 | \ |
376 | FLASH_FLAG_READ_1_1_4 | \ | 348 | FLASH_FLAG_READ_1_1_4 | \ |
377 | FLASH_FLAG_READ_1_4_4 | \ | ||
378 | FLASH_FLAG_SE_4K | \ | 349 | FLASH_FLAG_SE_4K | \ |
379 | FLASH_FLAG_SE_32K) | 350 | FLASH_FLAG_SE_32K) |
351 | { "mx25l3255e", 0xc29e16, 0, 64 * 1024, 64, | ||
352 | (MX25_FLAG | FLASH_FLAG_WRITE_1_4_4), 86, | ||
353 | stfsm_mx25_config}, | ||
380 | { "mx25l25635e", 0xc22019, 0, 64*1024, 512, | 354 | { "mx25l25635e", 0xc22019, 0, 64*1024, 512, |
381 | (MX25_FLAG | FLASH_FLAG_32BIT_ADDR | FLASH_FLAG_RESET), 70, | 355 | (MX25_FLAG | FLASH_FLAG_32BIT_ADDR | FLASH_FLAG_RESET), 70, |
382 | stfsm_mx25_config }, | 356 | stfsm_mx25_config }, |
357 | { "mx25l25655e", 0xc22619, 0, 64*1024, 512, | ||
358 | (MX25_FLAG | FLASH_FLAG_32BIT_ADDR | FLASH_FLAG_RESET), 70, | ||
359 | stfsm_mx25_config}, | ||
383 | 360 | ||
384 | #define N25Q_FLAG (FLASH_FLAG_READ_WRITE | \ | 361 | #define N25Q_FLAG (FLASH_FLAG_READ_WRITE | \ |
385 | FLASH_FLAG_READ_FAST | \ | 362 | FLASH_FLAG_READ_FAST | \ |
@@ -407,6 +384,8 @@ static struct flash_info flash_types[] = { | |||
407 | FLASH_FLAG_READ_1_4_4 | \ | 384 | FLASH_FLAG_READ_1_4_4 | \ |
408 | FLASH_FLAG_WRITE_1_1_4 | \ | 385 | FLASH_FLAG_WRITE_1_1_4 | \ |
409 | FLASH_FLAG_READ_FAST) | 386 | FLASH_FLAG_READ_FAST) |
387 | { "s25fl032p", 0x010215, 0x4d00, 64 * 1024, 64, S25FLXXXP_FLAG, 80, | ||
388 | stfsm_s25fl_config}, | ||
410 | { "s25fl129p0", 0x012018, 0x4d00, 256 * 1024, 64, S25FLXXXP_FLAG, 80, | 389 | { "s25fl129p0", 0x012018, 0x4d00, 256 * 1024, 64, S25FLXXXP_FLAG, 80, |
411 | stfsm_s25fl_config }, | 390 | stfsm_s25fl_config }, |
412 | { "s25fl129p1", 0x012018, 0x4d01, 64 * 1024, 256, S25FLXXXP_FLAG, 80, | 391 | { "s25fl129p1", 0x012018, 0x4d01, 64 * 1024, 256, S25FLXXXP_FLAG, 80, |
@@ -473,22 +452,22 @@ static struct flash_info flash_types[] = { | |||
473 | 452 | ||
474 | /* Default READ configurations, in order of preference */ | 453 | /* Default READ configurations, in order of preference */ |
475 | static struct seq_rw_config default_read_configs[] = { | 454 | static struct seq_rw_config default_read_configs[] = { |
476 | {FLASH_FLAG_READ_1_4_4, FLASH_CMD_READ_1_4_4, 0, 4, 4, 0x00, 2, 4}, | 455 | {FLASH_FLAG_READ_1_4_4, SPINOR_OP_READ_1_4_4, 0, 4, 4, 0x00, 2, 4}, |
477 | {FLASH_FLAG_READ_1_1_4, FLASH_CMD_READ_1_1_4, 0, 1, 4, 0x00, 4, 0}, | 456 | {FLASH_FLAG_READ_1_1_4, SPINOR_OP_READ_1_1_4, 0, 1, 4, 0x00, 4, 0}, |
478 | {FLASH_FLAG_READ_1_2_2, FLASH_CMD_READ_1_2_2, 0, 2, 2, 0x00, 4, 0}, | 457 | {FLASH_FLAG_READ_1_2_2, SPINOR_OP_READ_1_2_2, 0, 2, 2, 0x00, 4, 0}, |
479 | {FLASH_FLAG_READ_1_1_2, FLASH_CMD_READ_1_1_2, 0, 1, 2, 0x00, 0, 8}, | 458 | {FLASH_FLAG_READ_1_1_2, SPINOR_OP_READ_1_1_2, 0, 1, 2, 0x00, 0, 8}, |
480 | {FLASH_FLAG_READ_FAST, FLASH_CMD_READ_FAST, 0, 1, 1, 0x00, 0, 8}, | 459 | {FLASH_FLAG_READ_FAST, SPINOR_OP_READ_FAST, 0, 1, 1, 0x00, 0, 8}, |
481 | {FLASH_FLAG_READ_WRITE, FLASH_CMD_READ, 0, 1, 1, 0x00, 0, 0}, | 460 | {FLASH_FLAG_READ_WRITE, SPINOR_OP_READ, 0, 1, 1, 0x00, 0, 0}, |
482 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, | 461 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, |
483 | }; | 462 | }; |
484 | 463 | ||
485 | /* Default WRITE configurations */ | 464 | /* Default WRITE configurations */ |
486 | static struct seq_rw_config default_write_configs[] = { | 465 | static struct seq_rw_config default_write_configs[] = { |
487 | {FLASH_FLAG_WRITE_1_4_4, FLASH_CMD_WRITE_1_4_4, 1, 4, 4, 0x00, 0, 0}, | 466 | {FLASH_FLAG_WRITE_1_4_4, SPINOR_OP_WRITE_1_4_4, 1, 4, 4, 0x00, 0, 0}, |
488 | {FLASH_FLAG_WRITE_1_1_4, FLASH_CMD_WRITE_1_1_4, 1, 1, 4, 0x00, 0, 0}, | 467 | {FLASH_FLAG_WRITE_1_1_4, SPINOR_OP_WRITE_1_1_4, 1, 1, 4, 0x00, 0, 0}, |
489 | {FLASH_FLAG_WRITE_1_2_2, FLASH_CMD_WRITE_1_2_2, 1, 2, 2, 0x00, 0, 0}, | 468 | {FLASH_FLAG_WRITE_1_2_2, SPINOR_OP_WRITE_1_2_2, 1, 2, 2, 0x00, 0, 0}, |
490 | {FLASH_FLAG_WRITE_1_1_2, FLASH_CMD_WRITE_1_1_2, 1, 1, 2, 0x00, 0, 0}, | 469 | {FLASH_FLAG_WRITE_1_1_2, SPINOR_OP_WRITE_1_1_2, 1, 1, 2, 0x00, 0, 0}, |
491 | {FLASH_FLAG_READ_WRITE, FLASH_CMD_WRITE, 1, 1, 1, 0x00, 0, 0}, | 470 | {FLASH_FLAG_READ_WRITE, SPINOR_OP_WRITE, 1, 1, 1, 0x00, 0, 0}, |
492 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, | 471 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, |
493 | }; | 472 | }; |
494 | 473 | ||
@@ -511,12 +490,12 @@ static struct seq_rw_config default_write_configs[] = { | |||
511 | * cycles. | 490 | * cycles. |
512 | */ | 491 | */ |
513 | static struct seq_rw_config n25q_read3_configs[] = { | 492 | static struct seq_rw_config n25q_read3_configs[] = { |
514 | {FLASH_FLAG_READ_1_4_4, FLASH_CMD_READ_1_4_4, 0, 4, 4, 0x00, 0, 8}, | 493 | {FLASH_FLAG_READ_1_4_4, SPINOR_OP_READ_1_4_4, 0, 4, 4, 0x00, 0, 8}, |
515 | {FLASH_FLAG_READ_1_1_4, FLASH_CMD_READ_1_1_4, 0, 1, 4, 0x00, 0, 8}, | 494 | {FLASH_FLAG_READ_1_1_4, SPINOR_OP_READ_1_1_4, 0, 1, 4, 0x00, 0, 8}, |
516 | {FLASH_FLAG_READ_1_2_2, FLASH_CMD_READ_1_2_2, 0, 2, 2, 0x00, 0, 8}, | 495 | {FLASH_FLAG_READ_1_2_2, SPINOR_OP_READ_1_2_2, 0, 2, 2, 0x00, 0, 8}, |
517 | {FLASH_FLAG_READ_1_1_2, FLASH_CMD_READ_1_1_2, 0, 1, 2, 0x00, 0, 8}, | 496 | {FLASH_FLAG_READ_1_1_2, SPINOR_OP_READ_1_1_2, 0, 1, 2, 0x00, 0, 8}, |
518 | {FLASH_FLAG_READ_FAST, FLASH_CMD_READ_FAST, 0, 1, 1, 0x00, 0, 8}, | 497 | {FLASH_FLAG_READ_FAST, SPINOR_OP_READ_FAST, 0, 1, 1, 0x00, 0, 8}, |
519 | {FLASH_FLAG_READ_WRITE, FLASH_CMD_READ, 0, 1, 1, 0x00, 0, 0}, | 498 | {FLASH_FLAG_READ_WRITE, SPINOR_OP_READ, 0, 1, 1, 0x00, 0, 0}, |
520 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, | 499 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, |
521 | }; | 500 | }; |
522 | 501 | ||
@@ -526,12 +505,12 @@ static struct seq_rw_config n25q_read3_configs[] = { | |||
526 | * - 'FAST' variants configured for 8 dummy cycles (see note above.) | 505 | * - 'FAST' variants configured for 8 dummy cycles (see note above.) |
527 | */ | 506 | */ |
528 | static struct seq_rw_config n25q_read4_configs[] = { | 507 | static struct seq_rw_config n25q_read4_configs[] = { |
529 | {FLASH_FLAG_READ_1_4_4, FLASH_CMD_READ4_1_4_4, 0, 4, 4, 0x00, 0, 8}, | 508 | {FLASH_FLAG_READ_1_4_4, SPINOR_OP_READ4_1_4_4, 0, 4, 4, 0x00, 0, 8}, |
530 | {FLASH_FLAG_READ_1_1_4, FLASH_CMD_READ4_1_1_4, 0, 1, 4, 0x00, 0, 8}, | 509 | {FLASH_FLAG_READ_1_1_4, SPINOR_OP_READ4_1_1_4, 0, 1, 4, 0x00, 0, 8}, |
531 | {FLASH_FLAG_READ_1_2_2, FLASH_CMD_READ4_1_2_2, 0, 2, 2, 0x00, 0, 8}, | 510 | {FLASH_FLAG_READ_1_2_2, SPINOR_OP_READ4_1_2_2, 0, 2, 2, 0x00, 0, 8}, |
532 | {FLASH_FLAG_READ_1_1_2, FLASH_CMD_READ4_1_1_2, 0, 1, 2, 0x00, 0, 8}, | 511 | {FLASH_FLAG_READ_1_1_2, SPINOR_OP_READ4_1_1_2, 0, 1, 2, 0x00, 0, 8}, |
533 | {FLASH_FLAG_READ_FAST, FLASH_CMD_READ4_FAST, 0, 1, 1, 0x00, 0, 8}, | 512 | {FLASH_FLAG_READ_FAST, SPINOR_OP_READ4_FAST, 0, 1, 1, 0x00, 0, 8}, |
534 | {FLASH_FLAG_READ_WRITE, FLASH_CMD_READ4, 0, 1, 1, 0x00, 0, 0}, | 513 | {FLASH_FLAG_READ_WRITE, SPINOR_OP_READ4, 0, 1, 1, 0x00, 0, 0}, |
535 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, | 514 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, |
536 | }; | 515 | }; |
537 | 516 | ||
@@ -544,7 +523,7 @@ static int stfsm_mx25_en_32bit_addr_seq(struct stfsm_seq *seq) | |||
544 | { | 523 | { |
545 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | | 524 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | |
546 | SEQ_OPC_CYCLES(8) | | 525 | SEQ_OPC_CYCLES(8) | |
547 | SEQ_OPC_OPCODE(FLASH_CMD_EN4B_ADDR) | | 526 | SEQ_OPC_OPCODE(SPINOR_OP_EN4B) | |
548 | SEQ_OPC_CSDEASSERT); | 527 | SEQ_OPC_CSDEASSERT); |
549 | 528 | ||
550 | seq->seq[0] = STFSM_INST_CMD1; | 529 | seq->seq[0] = STFSM_INST_CMD1; |
@@ -572,12 +551,12 @@ static int stfsm_mx25_en_32bit_addr_seq(struct stfsm_seq *seq) | |||
572 | * entering a state that is incompatible with the SPIBoot Controller. | 551 | * entering a state that is incompatible with the SPIBoot Controller. |
573 | */ | 552 | */ |
574 | static struct seq_rw_config stfsm_s25fl_read4_configs[] = { | 553 | static struct seq_rw_config stfsm_s25fl_read4_configs[] = { |
575 | {FLASH_FLAG_READ_1_4_4, FLASH_CMD_READ4_1_4_4, 0, 4, 4, 0x00, 2, 4}, | 554 | {FLASH_FLAG_READ_1_4_4, SPINOR_OP_READ4_1_4_4, 0, 4, 4, 0x00, 2, 4}, |
576 | {FLASH_FLAG_READ_1_1_4, FLASH_CMD_READ4_1_1_4, 0, 1, 4, 0x00, 0, 8}, | 555 | {FLASH_FLAG_READ_1_1_4, SPINOR_OP_READ4_1_1_4, 0, 1, 4, 0x00, 0, 8}, |
577 | {FLASH_FLAG_READ_1_2_2, FLASH_CMD_READ4_1_2_2, 0, 2, 2, 0x00, 4, 0}, | 556 | {FLASH_FLAG_READ_1_2_2, SPINOR_OP_READ4_1_2_2, 0, 2, 2, 0x00, 4, 0}, |
578 | {FLASH_FLAG_READ_1_1_2, FLASH_CMD_READ4_1_1_2, 0, 1, 2, 0x00, 0, 8}, | 557 | {FLASH_FLAG_READ_1_1_2, SPINOR_OP_READ4_1_1_2, 0, 1, 2, 0x00, 0, 8}, |
579 | {FLASH_FLAG_READ_FAST, FLASH_CMD_READ4_FAST, 0, 1, 1, 0x00, 0, 8}, | 558 | {FLASH_FLAG_READ_FAST, SPINOR_OP_READ4_FAST, 0, 1, 1, 0x00, 0, 8}, |
580 | {FLASH_FLAG_READ_WRITE, FLASH_CMD_READ4, 0, 1, 1, 0x00, 0, 0}, | 559 | {FLASH_FLAG_READ_WRITE, SPINOR_OP_READ4, 0, 1, 1, 0x00, 0, 0}, |
581 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, | 560 | {0x00, 0, 0, 0, 0, 0x00, 0, 0}, |
582 | }; | 561 | }; |
583 | 562 | ||
@@ -590,13 +569,13 @@ static struct seq_rw_config stfsm_s25fl_write4_configs[] = { | |||
590 | /* | 569 | /* |
591 | * [W25Qxxx] Configuration | 570 | * [W25Qxxx] Configuration |
592 | */ | 571 | */ |
593 | #define W25Q_STATUS_QE (0x1 << 9) | 572 | #define W25Q_STATUS_QE (0x1 << 1) |
594 | 573 | ||
595 | static struct stfsm_seq stfsm_seq_read_jedec = { | 574 | static struct stfsm_seq stfsm_seq_read_jedec = { |
596 | .data_size = TRANSFER_SIZE(8), | 575 | .data_size = TRANSFER_SIZE(8), |
597 | .seq_opc[0] = (SEQ_OPC_PADS_1 | | 576 | .seq_opc[0] = (SEQ_OPC_PADS_1 | |
598 | SEQ_OPC_CYCLES(8) | | 577 | SEQ_OPC_CYCLES(8) | |
599 | SEQ_OPC_OPCODE(FLASH_CMD_RDID)), | 578 | SEQ_OPC_OPCODE(SPINOR_OP_RDID)), |
600 | .seq = { | 579 | .seq = { |
601 | STFSM_INST_CMD1, | 580 | STFSM_INST_CMD1, |
602 | STFSM_INST_DATA_READ, | 581 | STFSM_INST_DATA_READ, |
@@ -612,7 +591,7 @@ static struct stfsm_seq stfsm_seq_read_status_fifo = { | |||
612 | .data_size = TRANSFER_SIZE(4), | 591 | .data_size = TRANSFER_SIZE(4), |
613 | .seq_opc[0] = (SEQ_OPC_PADS_1 | | 592 | .seq_opc[0] = (SEQ_OPC_PADS_1 | |
614 | SEQ_OPC_CYCLES(8) | | 593 | SEQ_OPC_CYCLES(8) | |
615 | SEQ_OPC_OPCODE(FLASH_CMD_RDSR)), | 594 | SEQ_OPC_OPCODE(SPINOR_OP_RDSR)), |
616 | .seq = { | 595 | .seq = { |
617 | STFSM_INST_CMD1, | 596 | STFSM_INST_CMD1, |
618 | STFSM_INST_DATA_READ, | 597 | STFSM_INST_DATA_READ, |
@@ -628,10 +607,10 @@ static struct stfsm_seq stfsm_seq_erase_sector = { | |||
628 | /* 'addr_cfg' configured during initialisation */ | 607 | /* 'addr_cfg' configured during initialisation */ |
629 | .seq_opc = { | 608 | .seq_opc = { |
630 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 609 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
631 | SEQ_OPC_OPCODE(FLASH_CMD_WREN) | SEQ_OPC_CSDEASSERT), | 610 | SEQ_OPC_OPCODE(SPINOR_OP_WREN) | SEQ_OPC_CSDEASSERT), |
632 | 611 | ||
633 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 612 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
634 | SEQ_OPC_OPCODE(FLASH_CMD_SE)), | 613 | SEQ_OPC_OPCODE(SPINOR_OP_SE)), |
635 | }, | 614 | }, |
636 | .seq = { | 615 | .seq = { |
637 | STFSM_INST_CMD1, | 616 | STFSM_INST_CMD1, |
@@ -649,10 +628,10 @@ static struct stfsm_seq stfsm_seq_erase_sector = { | |||
649 | static struct stfsm_seq stfsm_seq_erase_chip = { | 628 | static struct stfsm_seq stfsm_seq_erase_chip = { |
650 | .seq_opc = { | 629 | .seq_opc = { |
651 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 630 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
652 | SEQ_OPC_OPCODE(FLASH_CMD_WREN) | SEQ_OPC_CSDEASSERT), | 631 | SEQ_OPC_OPCODE(SPINOR_OP_WREN) | SEQ_OPC_CSDEASSERT), |
653 | 632 | ||
654 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 633 | (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
655 | SEQ_OPC_OPCODE(FLASH_CMD_CHIPERASE) | SEQ_OPC_CSDEASSERT), | 634 | SEQ_OPC_OPCODE(SPINOR_OP_CHIP_ERASE) | SEQ_OPC_CSDEASSERT), |
656 | }, | 635 | }, |
657 | .seq = { | 636 | .seq = { |
658 | STFSM_INST_CMD1, | 637 | STFSM_INST_CMD1, |
@@ -669,26 +648,9 @@ static struct stfsm_seq stfsm_seq_erase_chip = { | |||
669 | 648 | ||
670 | static struct stfsm_seq stfsm_seq_write_status = { | 649 | static struct stfsm_seq stfsm_seq_write_status = { |
671 | .seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 650 | .seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
672 | SEQ_OPC_OPCODE(FLASH_CMD_WREN) | SEQ_OPC_CSDEASSERT), | 651 | SEQ_OPC_OPCODE(SPINOR_OP_WREN) | SEQ_OPC_CSDEASSERT), |
673 | .seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | ||
674 | SEQ_OPC_OPCODE(FLASH_CMD_WRSR)), | ||
675 | .seq = { | ||
676 | STFSM_INST_CMD1, | ||
677 | STFSM_INST_CMD2, | ||
678 | STFSM_INST_STA_WR1, | ||
679 | STFSM_INST_STOP, | ||
680 | }, | ||
681 | .seq_cfg = (SEQ_CFG_PADS_1 | | ||
682 | SEQ_CFG_READNOTWRITE | | ||
683 | SEQ_CFG_CSDEASSERT | | ||
684 | SEQ_CFG_STARTSEQ), | ||
685 | }; | ||
686 | |||
687 | static struct stfsm_seq stfsm_seq_wrvcr = { | ||
688 | .seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | ||
689 | SEQ_OPC_OPCODE(FLASH_CMD_WREN) | SEQ_OPC_CSDEASSERT), | ||
690 | .seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 652 | .seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
691 | SEQ_OPC_OPCODE(FLASH_CMD_WRVCR)), | 653 | SEQ_OPC_OPCODE(SPINOR_OP_WRSR)), |
692 | .seq = { | 654 | .seq = { |
693 | STFSM_INST_CMD1, | 655 | STFSM_INST_CMD1, |
694 | STFSM_INST_CMD2, | 656 | STFSM_INST_CMD2, |
@@ -704,9 +666,9 @@ static struct stfsm_seq stfsm_seq_wrvcr = { | |||
704 | static int stfsm_n25q_en_32bit_addr_seq(struct stfsm_seq *seq) | 666 | static int stfsm_n25q_en_32bit_addr_seq(struct stfsm_seq *seq) |
705 | { | 667 | { |
706 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 668 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
707 | SEQ_OPC_OPCODE(FLASH_CMD_EN4B_ADDR)); | 669 | SEQ_OPC_OPCODE(SPINOR_OP_EN4B)); |
708 | seq->seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 670 | seq->seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
709 | SEQ_OPC_OPCODE(FLASH_CMD_WREN) | | 671 | SEQ_OPC_OPCODE(SPINOR_OP_WREN) | |
710 | SEQ_OPC_CSDEASSERT); | 672 | SEQ_OPC_CSDEASSERT); |
711 | 673 | ||
712 | seq->seq[0] = STFSM_INST_CMD2; | 674 | seq->seq[0] = STFSM_INST_CMD2; |
@@ -793,7 +755,7 @@ static void stfsm_read_fifo(struct stfsm *fsm, uint32_t *buf, uint32_t size) | |||
793 | 755 | ||
794 | dev_dbg(fsm->dev, "Reading %d bytes from FIFO\n", size); | 756 | dev_dbg(fsm->dev, "Reading %d bytes from FIFO\n", size); |
795 | 757 | ||
796 | BUG_ON((((uint32_t)buf) & 0x3) || (size & 0x3)); | 758 | BUG_ON((((uintptr_t)buf) & 0x3) || (size & 0x3)); |
797 | 759 | ||
798 | while (remaining) { | 760 | while (remaining) { |
799 | for (;;) { | 761 | for (;;) { |
@@ -817,7 +779,7 @@ static int stfsm_write_fifo(struct stfsm *fsm, const uint32_t *buf, | |||
817 | 779 | ||
818 | dev_dbg(fsm->dev, "writing %d bytes to FIFO\n", size); | 780 | dev_dbg(fsm->dev, "writing %d bytes to FIFO\n", size); |
819 | 781 | ||
820 | BUG_ON((((uint32_t)buf) & 0x3) || (size & 0x3)); | 782 | BUG_ON((((uintptr_t)buf) & 0x3) || (size & 0x3)); |
821 | 783 | ||
822 | writesl(fsm->base + SPI_FAST_SEQ_DATA_REG, buf, words); | 784 | writesl(fsm->base + SPI_FAST_SEQ_DATA_REG, buf, words); |
823 | 785 | ||
@@ -827,7 +789,7 @@ static int stfsm_write_fifo(struct stfsm *fsm, const uint32_t *buf, | |||
827 | static int stfsm_enter_32bit_addr(struct stfsm *fsm, int enter) | 789 | static int stfsm_enter_32bit_addr(struct stfsm *fsm, int enter) |
828 | { | 790 | { |
829 | struct stfsm_seq *seq = &fsm->stfsm_seq_en_32bit_addr; | 791 | struct stfsm_seq *seq = &fsm->stfsm_seq_en_32bit_addr; |
830 | uint32_t cmd = enter ? FLASH_CMD_EN4B_ADDR : FLASH_CMD_EX4B_ADDR; | 792 | uint32_t cmd = enter ? SPINOR_OP_EN4B : SPINOR_OP_EX4B; |
831 | 793 | ||
832 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | | 794 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | |
833 | SEQ_OPC_CYCLES(8) | | 795 | SEQ_OPC_CYCLES(8) | |
@@ -851,7 +813,7 @@ static uint8_t stfsm_wait_busy(struct stfsm *fsm) | |||
851 | /* Use RDRS1 */ | 813 | /* Use RDRS1 */ |
852 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | | 814 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | |
853 | SEQ_OPC_CYCLES(8) | | 815 | SEQ_OPC_CYCLES(8) | |
854 | SEQ_OPC_OPCODE(FLASH_CMD_RDSR)); | 816 | SEQ_OPC_OPCODE(SPINOR_OP_RDSR)); |
855 | 817 | ||
856 | /* Load read_status sequence */ | 818 | /* Load read_status sequence */ |
857 | stfsm_load_seq(fsm, seq); | 819 | stfsm_load_seq(fsm, seq); |
@@ -889,60 +851,57 @@ static uint8_t stfsm_wait_busy(struct stfsm *fsm) | |||
889 | } | 851 | } |
890 | 852 | ||
891 | static int stfsm_read_status(struct stfsm *fsm, uint8_t cmd, | 853 | static int stfsm_read_status(struct stfsm *fsm, uint8_t cmd, |
892 | uint8_t *status) | 854 | uint8_t *data, int bytes) |
893 | { | 855 | { |
894 | struct stfsm_seq *seq = &stfsm_seq_read_status_fifo; | 856 | struct stfsm_seq *seq = &stfsm_seq_read_status_fifo; |
895 | uint32_t tmp; | 857 | uint32_t tmp; |
858 | uint8_t *t = (uint8_t *)&tmp; | ||
859 | int i; | ||
896 | 860 | ||
897 | dev_dbg(fsm->dev, "reading STA[%s]\n", | 861 | dev_dbg(fsm->dev, "read 'status' register [0x%02x], %d byte(s)\n", |
898 | (cmd == FLASH_CMD_RDSR) ? "1" : "2"); | 862 | cmd, bytes); |
899 | 863 | ||
900 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | | 864 | BUG_ON(bytes != 1 && bytes != 2); |
901 | SEQ_OPC_CYCLES(8) | | 865 | |
866 | seq->seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | ||
902 | SEQ_OPC_OPCODE(cmd)), | 867 | SEQ_OPC_OPCODE(cmd)), |
903 | 868 | ||
904 | stfsm_load_seq(fsm, seq); | 869 | stfsm_load_seq(fsm, seq); |
905 | 870 | ||
906 | stfsm_read_fifo(fsm, &tmp, 4); | 871 | stfsm_read_fifo(fsm, &tmp, 4); |
907 | 872 | ||
908 | *status = (uint8_t)(tmp >> 24); | 873 | for (i = 0; i < bytes; i++) |
874 | data[i] = t[i]; | ||
909 | 875 | ||
910 | stfsm_wait_seq(fsm); | 876 | stfsm_wait_seq(fsm); |
911 | 877 | ||
912 | return 0; | 878 | return 0; |
913 | } | 879 | } |
914 | 880 | ||
915 | static int stfsm_write_status(struct stfsm *fsm, uint16_t status, | 881 | static int stfsm_write_status(struct stfsm *fsm, uint8_t cmd, |
916 | int sta_bytes) | 882 | uint16_t data, int bytes, int wait_busy) |
917 | { | 883 | { |
918 | struct stfsm_seq *seq = &stfsm_seq_write_status; | 884 | struct stfsm_seq *seq = &stfsm_seq_write_status; |
919 | 885 | ||
920 | dev_dbg(fsm->dev, "writing STA[%s] 0x%04x\n", | 886 | dev_dbg(fsm->dev, |
921 | (sta_bytes == 1) ? "1" : "1+2", status); | 887 | "write 'status' register [0x%02x], %d byte(s), 0x%04x\n" |
922 | 888 | " %s wait-busy\n", cmd, bytes, data, wait_busy ? "with" : "no"); | |
923 | seq->status = (uint32_t)status | STA_PADS_1 | STA_CSDEASSERT; | ||
924 | seq->seq[2] = (sta_bytes == 1) ? | ||
925 | STFSM_INST_STA_WR1 : STFSM_INST_STA_WR1_2; | ||
926 | |||
927 | stfsm_load_seq(fsm, seq); | ||
928 | |||
929 | stfsm_wait_seq(fsm); | ||
930 | 889 | ||
931 | return 0; | 890 | BUG_ON(bytes != 1 && bytes != 2); |
932 | }; | ||
933 | 891 | ||
934 | static int stfsm_wrvcr(struct stfsm *fsm, uint8_t data) | 892 | seq->seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
935 | { | 893 | SEQ_OPC_OPCODE(cmd)); |
936 | struct stfsm_seq *seq = &stfsm_seq_wrvcr; | ||
937 | |||
938 | dev_dbg(fsm->dev, "writing VCR 0x%02x\n", data); | ||
939 | 894 | ||
940 | seq->status = (STA_DATA_BYTE1(data) | STA_PADS_1 | STA_CSDEASSERT); | 895 | seq->status = (uint32_t)data | STA_PADS_1 | STA_CSDEASSERT; |
896 | seq->seq[2] = (bytes == 1) ? STFSM_INST_STA_WR1 : STFSM_INST_STA_WR1_2; | ||
941 | 897 | ||
942 | stfsm_load_seq(fsm, seq); | 898 | stfsm_load_seq(fsm, seq); |
943 | 899 | ||
944 | stfsm_wait_seq(fsm); | 900 | stfsm_wait_seq(fsm); |
945 | 901 | ||
902 | if (wait_busy) | ||
903 | stfsm_wait_busy(fsm); | ||
904 | |||
946 | return 0; | 905 | return 0; |
947 | } | 906 | } |
948 | 907 | ||
@@ -1027,7 +986,7 @@ static void stfsm_prepare_rw_seq(struct stfsm *fsm, | |||
1027 | if (cfg->write) | 986 | if (cfg->write) |
1028 | seq->seq_opc[i++] = (SEQ_OPC_PADS_1 | | 987 | seq->seq_opc[i++] = (SEQ_OPC_PADS_1 | |
1029 | SEQ_OPC_CYCLES(8) | | 988 | SEQ_OPC_CYCLES(8) | |
1030 | SEQ_OPC_OPCODE(FLASH_CMD_WREN) | | 989 | SEQ_OPC_OPCODE(SPINOR_OP_WREN) | |
1031 | SEQ_OPC_CSDEASSERT); | 990 | SEQ_OPC_CSDEASSERT); |
1032 | 991 | ||
1033 | /* Address configuration (24 or 32-bit addresses) */ | 992 | /* Address configuration (24 or 32-bit addresses) */ |
@@ -1149,31 +1108,36 @@ static int stfsm_mx25_config(struct stfsm *fsm) | |||
1149 | stfsm_mx25_en_32bit_addr_seq(&fsm->stfsm_seq_en_32bit_addr); | 1108 | stfsm_mx25_en_32bit_addr_seq(&fsm->stfsm_seq_en_32bit_addr); |
1150 | 1109 | ||
1151 | soc_reset = stfsm_can_handle_soc_reset(fsm); | 1110 | soc_reset = stfsm_can_handle_soc_reset(fsm); |
1152 | if (soc_reset || !fsm->booted_from_spi) { | 1111 | if (soc_reset || !fsm->booted_from_spi) |
1153 | /* If we can handle SoC resets, we enable 32-bit address | 1112 | /* If we can handle SoC resets, we enable 32-bit address |
1154 | * mode pervasively */ | 1113 | * mode pervasively */ |
1155 | stfsm_enter_32bit_addr(fsm, 1); | 1114 | stfsm_enter_32bit_addr(fsm, 1); |
1156 | 1115 | ||
1157 | } else { | 1116 | else |
1158 | /* Else, enable/disable 32-bit addressing before/after | 1117 | /* Else, enable/disable 32-bit addressing before/after |
1159 | * each operation */ | 1118 | * each operation */ |
1160 | fsm->configuration = (CFG_READ_TOGGLE_32BIT_ADDR | | 1119 | fsm->configuration = (CFG_READ_TOGGLE_32BIT_ADDR | |
1161 | CFG_WRITE_TOGGLE_32BIT_ADDR | | 1120 | CFG_WRITE_TOGGLE_32BIT_ADDR | |
1162 | CFG_ERASESEC_TOGGLE_32BIT_ADDR); | 1121 | CFG_ERASESEC_TOGGLE_32BIT_ADDR); |
1163 | /* It seems a small delay is required after exiting | ||
1164 | * 32-bit mode following a write operation. The issue | ||
1165 | * is under investigation. | ||
1166 | */ | ||
1167 | fsm->configuration |= CFG_WRITE_EX_32BIT_ADDR_DELAY; | ||
1168 | } | ||
1169 | } | 1122 | } |
1170 | 1123 | ||
1171 | /* For QUAD mode, set 'QE' STATUS bit */ | 1124 | /* Check status of 'QE' bit, update if required. */ |
1125 | stfsm_read_status(fsm, SPINOR_OP_RDSR, &sta, 1); | ||
1172 | data_pads = ((fsm->stfsm_seq_read.seq_cfg >> 16) & 0x3) + 1; | 1126 | data_pads = ((fsm->stfsm_seq_read.seq_cfg >> 16) & 0x3) + 1; |
1173 | if (data_pads == 4) { | 1127 | if (data_pads == 4) { |
1174 | stfsm_read_status(fsm, FLASH_CMD_RDSR, &sta); | 1128 | if (!(sta & MX25_STATUS_QE)) { |
1175 | sta |= MX25_STATUS_QE; | 1129 | /* Set 'QE' */ |
1176 | stfsm_write_status(fsm, sta, 1); | 1130 | sta |= MX25_STATUS_QE; |
1131 | |||
1132 | stfsm_write_status(fsm, SPINOR_OP_WRSR, sta, 1, 1); | ||
1133 | } | ||
1134 | } else { | ||
1135 | if (sta & MX25_STATUS_QE) { | ||
1136 | /* Clear 'QE' */ | ||
1137 | sta &= ~MX25_STATUS_QE; | ||
1138 | |||
1139 | stfsm_write_status(fsm, SPINOR_OP_WRSR, sta, 1, 1); | ||
1140 | } | ||
1177 | } | 1141 | } |
1178 | 1142 | ||
1179 | return 0; | 1143 | return 0; |
@@ -1239,7 +1203,7 @@ static int stfsm_n25q_config(struct stfsm *fsm) | |||
1239 | */ | 1203 | */ |
1240 | vcr = (N25Q_VCR_DUMMY_CYCLES(8) | N25Q_VCR_XIP_DISABLED | | 1204 | vcr = (N25Q_VCR_DUMMY_CYCLES(8) | N25Q_VCR_XIP_DISABLED | |
1241 | N25Q_VCR_WRAP_CONT); | 1205 | N25Q_VCR_WRAP_CONT); |
1242 | stfsm_wrvcr(fsm, vcr); | 1206 | stfsm_write_status(fsm, N25Q_CMD_WRVCR, vcr, 1, 0); |
1243 | 1207 | ||
1244 | return 0; | 1208 | return 0; |
1245 | } | 1209 | } |
@@ -1297,7 +1261,7 @@ static void stfsm_s25fl_write_dyb(struct stfsm *fsm, uint32_t offs, uint8_t dby) | |||
1297 | { | 1261 | { |
1298 | struct stfsm_seq seq = { | 1262 | struct stfsm_seq seq = { |
1299 | .seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 1263 | .seq_opc[0] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
1300 | SEQ_OPC_OPCODE(FLASH_CMD_WREN) | | 1264 | SEQ_OPC_OPCODE(SPINOR_OP_WREN) | |
1301 | SEQ_OPC_CSDEASSERT), | 1265 | SEQ_OPC_CSDEASSERT), |
1302 | .seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | | 1266 | .seq_opc[1] = (SEQ_OPC_PADS_1 | SEQ_OPC_CYCLES(8) | |
1303 | SEQ_OPC_OPCODE(S25FL_CMD_DYBWR)), | 1267 | SEQ_OPC_OPCODE(S25FL_CMD_DYBWR)), |
@@ -1337,7 +1301,7 @@ static int stfsm_s25fl_clear_status_reg(struct stfsm *fsm) | |||
1337 | SEQ_OPC_CSDEASSERT), | 1301 | SEQ_OPC_CSDEASSERT), |
1338 | .seq_opc[1] = (SEQ_OPC_PADS_1 | | 1302 | .seq_opc[1] = (SEQ_OPC_PADS_1 | |
1339 | SEQ_OPC_CYCLES(8) | | 1303 | SEQ_OPC_CYCLES(8) | |
1340 | SEQ_OPC_OPCODE(FLASH_CMD_WRDI) | | 1304 | SEQ_OPC_OPCODE(SPINOR_OP_WRDI) | |
1341 | SEQ_OPC_CSDEASSERT), | 1305 | SEQ_OPC_CSDEASSERT), |
1342 | .seq = { | 1306 | .seq = { |
1343 | STFSM_INST_CMD1, | 1307 | STFSM_INST_CMD1, |
@@ -1367,6 +1331,7 @@ static int stfsm_s25fl_config(struct stfsm *fsm) | |||
1367 | uint32_t offs; | 1331 | uint32_t offs; |
1368 | uint16_t sta_wr; | 1332 | uint16_t sta_wr; |
1369 | uint8_t sr1, cr1, dyb; | 1333 | uint8_t sr1, cr1, dyb; |
1334 | int update_sr = 0; | ||
1370 | int ret; | 1335 | int ret; |
1371 | 1336 | ||
1372 | if (flags & FLASH_FLAG_32BIT_ADDR) { | 1337 | if (flags & FLASH_FLAG_32BIT_ADDR) { |
@@ -1414,34 +1379,28 @@ static int stfsm_s25fl_config(struct stfsm *fsm) | |||
1414 | } | 1379 | } |
1415 | } | 1380 | } |
1416 | 1381 | ||
1417 | /* Check status of 'QE' bit */ | 1382 | /* Check status of 'QE' bit, update if required. */ |
1383 | stfsm_read_status(fsm, SPINOR_OP_RDSR2, &cr1, 1); | ||
1418 | data_pads = ((fsm->stfsm_seq_read.seq_cfg >> 16) & 0x3) + 1; | 1384 | data_pads = ((fsm->stfsm_seq_read.seq_cfg >> 16) & 0x3) + 1; |
1419 | stfsm_read_status(fsm, FLASH_CMD_RDSR2, &cr1); | ||
1420 | if (data_pads == 4) { | 1385 | if (data_pads == 4) { |
1421 | if (!(cr1 & STFSM_S25FL_CONFIG_QE)) { | 1386 | if (!(cr1 & STFSM_S25FL_CONFIG_QE)) { |
1422 | /* Set 'QE' */ | 1387 | /* Set 'QE' */ |
1423 | cr1 |= STFSM_S25FL_CONFIG_QE; | 1388 | cr1 |= STFSM_S25FL_CONFIG_QE; |
1424 | 1389 | ||
1425 | stfsm_read_status(fsm, FLASH_CMD_RDSR, &sr1); | 1390 | update_sr = 1; |
1426 | sta_wr = ((uint16_t)cr1 << 8) | sr1; | ||
1427 | |||
1428 | stfsm_write_status(fsm, sta_wr, 2); | ||
1429 | |||
1430 | stfsm_wait_busy(fsm); | ||
1431 | } | 1391 | } |
1432 | } else { | 1392 | } else { |
1433 | if ((cr1 & STFSM_S25FL_CONFIG_QE)) { | 1393 | if (cr1 & STFSM_S25FL_CONFIG_QE) { |
1434 | /* Clear 'QE' */ | 1394 | /* Clear 'QE' */ |
1435 | cr1 &= ~STFSM_S25FL_CONFIG_QE; | 1395 | cr1 &= ~STFSM_S25FL_CONFIG_QE; |
1436 | 1396 | ||
1437 | stfsm_read_status(fsm, FLASH_CMD_RDSR, &sr1); | 1397 | update_sr = 1; |
1438 | sta_wr = ((uint16_t)cr1 << 8) | sr1; | ||
1439 | |||
1440 | stfsm_write_status(fsm, sta_wr, 2); | ||
1441 | |||
1442 | stfsm_wait_busy(fsm); | ||
1443 | } | 1398 | } |
1444 | 1399 | } | |
1400 | if (update_sr) { | ||
1401 | stfsm_read_status(fsm, SPINOR_OP_RDSR, &sr1, 1); | ||
1402 | sta_wr = ((uint16_t)cr1 << 8) | sr1; | ||
1403 | stfsm_write_status(fsm, SPINOR_OP_WRSR, sta_wr, 2, 1); | ||
1445 | } | 1404 | } |
1446 | 1405 | ||
1447 | /* | 1406 | /* |
@@ -1456,27 +1415,36 @@ static int stfsm_s25fl_config(struct stfsm *fsm) | |||
1456 | static int stfsm_w25q_config(struct stfsm *fsm) | 1415 | static int stfsm_w25q_config(struct stfsm *fsm) |
1457 | { | 1416 | { |
1458 | uint32_t data_pads; | 1417 | uint32_t data_pads; |
1459 | uint16_t sta_wr; | 1418 | uint8_t sr1, sr2; |
1460 | uint8_t sta1, sta2; | 1419 | uint16_t sr_wr; |
1420 | int update_sr = 0; | ||
1461 | int ret; | 1421 | int ret; |
1462 | 1422 | ||
1463 | ret = stfsm_prepare_rwe_seqs_default(fsm); | 1423 | ret = stfsm_prepare_rwe_seqs_default(fsm); |
1464 | if (ret) | 1424 | if (ret) |
1465 | return ret; | 1425 | return ret; |
1466 | 1426 | ||
1467 | /* If using QUAD mode, set QE STATUS bit */ | 1427 | /* Check status of 'QE' bit, update if required. */ |
1428 | stfsm_read_status(fsm, SPINOR_OP_RDSR2, &sr2, 1); | ||
1468 | data_pads = ((fsm->stfsm_seq_read.seq_cfg >> 16) & 0x3) + 1; | 1429 | data_pads = ((fsm->stfsm_seq_read.seq_cfg >> 16) & 0x3) + 1; |
1469 | if (data_pads == 4) { | 1430 | if (data_pads == 4) { |
1470 | stfsm_read_status(fsm, FLASH_CMD_RDSR, &sta1); | 1431 | if (!(sr2 & W25Q_STATUS_QE)) { |
1471 | stfsm_read_status(fsm, FLASH_CMD_RDSR2, &sta2); | 1432 | /* Set 'QE' */ |
1472 | 1433 | sr2 |= W25Q_STATUS_QE; | |
1473 | sta_wr = ((uint16_t)sta2 << 8) | sta1; | 1434 | update_sr = 1; |
1474 | 1435 | } | |
1475 | sta_wr |= W25Q_STATUS_QE; | 1436 | } else { |
1476 | 1437 | if (sr2 & W25Q_STATUS_QE) { | |
1477 | stfsm_write_status(fsm, sta_wr, 2); | 1438 | /* Clear 'QE' */ |
1478 | 1439 | sr2 &= ~W25Q_STATUS_QE; | |
1479 | stfsm_wait_busy(fsm); | 1440 | update_sr = 1; |
1441 | } | ||
1442 | } | ||
1443 | if (update_sr) { | ||
1444 | /* Write status register */ | ||
1445 | stfsm_read_status(fsm, SPINOR_OP_RDSR, &sr1, 1); | ||
1446 | sr_wr = ((uint16_t)sr2 << 8) | sr1; | ||
1447 | stfsm_write_status(fsm, SPINOR_OP_WRSR, sr_wr, 2, 1); | ||
1480 | } | 1448 | } |
1481 | 1449 | ||
1482 | return 0; | 1450 | return 0; |
@@ -1506,7 +1474,7 @@ static int stfsm_read(struct stfsm *fsm, uint8_t *buf, uint32_t size, | |||
1506 | read_mask = (data_pads << 2) - 1; | 1474 | read_mask = (data_pads << 2) - 1; |
1507 | 1475 | ||
1508 | /* Handle non-aligned buf */ | 1476 | /* Handle non-aligned buf */ |
1509 | p = ((uint32_t)buf & 0x3) ? (uint8_t *)page_buf : buf; | 1477 | p = ((uintptr_t)buf & 0x3) ? (uint8_t *)page_buf : buf; |
1510 | 1478 | ||
1511 | /* Handle non-aligned size */ | 1479 | /* Handle non-aligned size */ |
1512 | size_ub = (size + read_mask) & ~read_mask; | 1480 | size_ub = (size + read_mask) & ~read_mask; |
@@ -1528,7 +1496,7 @@ static int stfsm_read(struct stfsm *fsm, uint8_t *buf, uint32_t size, | |||
1528 | } | 1496 | } |
1529 | 1497 | ||
1530 | /* Handle non-aligned buf */ | 1498 | /* Handle non-aligned buf */ |
1531 | if ((uint32_t)buf & 0x3) | 1499 | if ((uintptr_t)buf & 0x3) |
1532 | memcpy(buf, page_buf, size); | 1500 | memcpy(buf, page_buf, size); |
1533 | 1501 | ||
1534 | /* Wait for sequence to finish */ | 1502 | /* Wait for sequence to finish */ |
@@ -1570,7 +1538,7 @@ static int stfsm_write(struct stfsm *fsm, const uint8_t *buf, | |||
1570 | write_mask = (data_pads << 2) - 1; | 1538 | write_mask = (data_pads << 2) - 1; |
1571 | 1539 | ||
1572 | /* Handle non-aligned buf */ | 1540 | /* Handle non-aligned buf */ |
1573 | if ((uint32_t)buf & 0x3) { | 1541 | if ((uintptr_t)buf & 0x3) { |
1574 | memcpy(page_buf, buf, size); | 1542 | memcpy(page_buf, buf, size); |
1575 | p = (uint8_t *)page_buf; | 1543 | p = (uint8_t *)page_buf; |
1576 | } else { | 1544 | } else { |
@@ -1628,11 +1596,8 @@ static int stfsm_write(struct stfsm *fsm, const uint8_t *buf, | |||
1628 | stfsm_s25fl_clear_status_reg(fsm); | 1596 | stfsm_s25fl_clear_status_reg(fsm); |
1629 | 1597 | ||
1630 | /* Exit 32-bit address mode, if required */ | 1598 | /* Exit 32-bit address mode, if required */ |
1631 | if (fsm->configuration & CFG_WRITE_TOGGLE_32BIT_ADDR) { | 1599 | if (fsm->configuration & CFG_WRITE_TOGGLE_32BIT_ADDR) |
1632 | stfsm_enter_32bit_addr(fsm, 0); | 1600 | stfsm_enter_32bit_addr(fsm, 0); |
1633 | if (fsm->configuration & CFG_WRITE_EX_32BIT_ADDR_DELAY) | ||
1634 | udelay(1); | ||
1635 | } | ||
1636 | 1601 | ||
1637 | return 0; | 1602 | return 0; |
1638 | } | 1603 | } |
@@ -1736,7 +1701,7 @@ static int stfsm_mtd_write(struct mtd_info *mtd, loff_t to, size_t len, | |||
1736 | 1701 | ||
1737 | while (len) { | 1702 | while (len) { |
1738 | /* Write up to page boundary */ | 1703 | /* Write up to page boundary */ |
1739 | bytes = min(FLASH_PAGESIZE - page_offs, len); | 1704 | bytes = min_t(size_t, FLASH_PAGESIZE - page_offs, len); |
1740 | 1705 | ||
1741 | ret = stfsm_write(fsm, b, bytes, to); | 1706 | ret = stfsm_write(fsm, b, bytes, to); |
1742 | if (ret) | 1707 | if (ret) |
@@ -1935,6 +1900,13 @@ static int stfsm_init(struct stfsm *fsm) | |||
1935 | fsm->base + SPI_CONFIGDATA); | 1900 | fsm->base + SPI_CONFIGDATA); |
1936 | writel(STFSM_DEFAULT_WR_TIME, fsm->base + SPI_STATUS_WR_TIME_REG); | 1901 | writel(STFSM_DEFAULT_WR_TIME, fsm->base + SPI_STATUS_WR_TIME_REG); |
1937 | 1902 | ||
1903 | /* | ||
1904 | * Set the FSM 'WAIT' delay to the minimum workable value. Note, for | ||
1905 | * our purposes, the WAIT instruction is used purely to achieve | ||
1906 | * "sequence validity" rather than actually implement a delay. | ||
1907 | */ | ||
1908 | writel(0x00000001, fsm->base + SPI_PROGRAM_ERASE_TIME); | ||
1909 | |||
1938 | /* Clear FIFO, just in case */ | 1910 | /* Clear FIFO, just in case */ |
1939 | stfsm_clear_fifo(fsm); | 1911 | stfsm_clear_fifo(fsm); |
1940 | 1912 | ||
diff --git a/drivers/mtd/spi-nor/Kconfig b/drivers/mtd/spi-nor/Kconfig new file mode 100644 index 000000000000..f8acfa4310ef --- /dev/null +++ b/drivers/mtd/spi-nor/Kconfig | |||
@@ -0,0 +1,17 @@ | |||
1 | menuconfig MTD_SPI_NOR | ||
2 | tristate "SPI-NOR device support" | ||
3 | depends on MTD | ||
4 | help | ||
5 | This is the framework for the SPI NOR which can be used by the SPI | ||
6 | device drivers and the SPI-NOR device driver. | ||
7 | |||
8 | if MTD_SPI_NOR | ||
9 | |||
10 | config SPI_FSL_QUADSPI | ||
11 | tristate "Freescale Quad SPI controller" | ||
12 | depends on ARCH_MXC | ||
13 | help | ||
14 | This enables support for the Quad SPI controller in master mode. | ||
15 | We only connect the NOR to this controller now. | ||
16 | |||
17 | endif # MTD_SPI_NOR | ||
diff --git a/drivers/mtd/spi-nor/Makefile b/drivers/mtd/spi-nor/Makefile new file mode 100644 index 000000000000..6a7ce1462247 --- /dev/null +++ b/drivers/mtd/spi-nor/Makefile | |||
@@ -0,0 +1,2 @@ | |||
1 | obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o | ||
2 | obj-$(CONFIG_SPI_FSL_QUADSPI) += fsl-quadspi.o | ||
diff --git a/drivers/mtd/spi-nor/fsl-quadspi.c b/drivers/mtd/spi-nor/fsl-quadspi.c new file mode 100644 index 000000000000..8d659a2888d5 --- /dev/null +++ b/drivers/mtd/spi-nor/fsl-quadspi.c | |||
@@ -0,0 +1,1009 @@ | |||
1 | /* | ||
2 | * Freescale QuadSPI driver. | ||
3 | * | ||
4 | * Copyright (C) 2013 Freescale Semiconductor, Inc. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | */ | ||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/module.h> | ||
13 | #include <linux/interrupt.h> | ||
14 | #include <linux/errno.h> | ||
15 | #include <linux/platform_device.h> | ||
16 | #include <linux/sched.h> | ||
17 | #include <linux/delay.h> | ||
18 | #include <linux/io.h> | ||
19 | #include <linux/clk.h> | ||
20 | #include <linux/err.h> | ||
21 | #include <linux/of.h> | ||
22 | #include <linux/of_device.h> | ||
23 | #include <linux/timer.h> | ||
24 | #include <linux/jiffies.h> | ||
25 | #include <linux/completion.h> | ||
26 | #include <linux/mtd/mtd.h> | ||
27 | #include <linux/mtd/partitions.h> | ||
28 | #include <linux/mtd/spi-nor.h> | ||
29 | |||
30 | /* The registers */ | ||
31 | #define QUADSPI_MCR 0x00 | ||
32 | #define QUADSPI_MCR_RESERVED_SHIFT 16 | ||
33 | #define QUADSPI_MCR_RESERVED_MASK (0xF << QUADSPI_MCR_RESERVED_SHIFT) | ||
34 | #define QUADSPI_MCR_MDIS_SHIFT 14 | ||
35 | #define QUADSPI_MCR_MDIS_MASK (1 << QUADSPI_MCR_MDIS_SHIFT) | ||
36 | #define QUADSPI_MCR_CLR_TXF_SHIFT 11 | ||
37 | #define QUADSPI_MCR_CLR_TXF_MASK (1 << QUADSPI_MCR_CLR_TXF_SHIFT) | ||
38 | #define QUADSPI_MCR_CLR_RXF_SHIFT 10 | ||
39 | #define QUADSPI_MCR_CLR_RXF_MASK (1 << QUADSPI_MCR_CLR_RXF_SHIFT) | ||
40 | #define QUADSPI_MCR_DDR_EN_SHIFT 7 | ||
41 | #define QUADSPI_MCR_DDR_EN_MASK (1 << QUADSPI_MCR_DDR_EN_SHIFT) | ||
42 | #define QUADSPI_MCR_END_CFG_SHIFT 2 | ||
43 | #define QUADSPI_MCR_END_CFG_MASK (3 << QUADSPI_MCR_END_CFG_SHIFT) | ||
44 | #define QUADSPI_MCR_SWRSTHD_SHIFT 1 | ||
45 | #define QUADSPI_MCR_SWRSTHD_MASK (1 << QUADSPI_MCR_SWRSTHD_SHIFT) | ||
46 | #define QUADSPI_MCR_SWRSTSD_SHIFT 0 | ||
47 | #define QUADSPI_MCR_SWRSTSD_MASK (1 << QUADSPI_MCR_SWRSTSD_SHIFT) | ||
48 | |||
49 | #define QUADSPI_IPCR 0x08 | ||
50 | #define QUADSPI_IPCR_SEQID_SHIFT 24 | ||
51 | #define QUADSPI_IPCR_SEQID_MASK (0xF << QUADSPI_IPCR_SEQID_SHIFT) | ||
52 | |||
53 | #define QUADSPI_BUF0CR 0x10 | ||
54 | #define QUADSPI_BUF1CR 0x14 | ||
55 | #define QUADSPI_BUF2CR 0x18 | ||
56 | #define QUADSPI_BUFXCR_INVALID_MSTRID 0xe | ||
57 | |||
58 | #define QUADSPI_BUF3CR 0x1c | ||
59 | #define QUADSPI_BUF3CR_ALLMST_SHIFT 31 | ||
60 | #define QUADSPI_BUF3CR_ALLMST (1 << QUADSPI_BUF3CR_ALLMST_SHIFT) | ||
61 | |||
62 | #define QUADSPI_BFGENCR 0x20 | ||
63 | #define QUADSPI_BFGENCR_PAR_EN_SHIFT 16 | ||
64 | #define QUADSPI_BFGENCR_PAR_EN_MASK (1 << (QUADSPI_BFGENCR_PAR_EN_SHIFT)) | ||
65 | #define QUADSPI_BFGENCR_SEQID_SHIFT 12 | ||
66 | #define QUADSPI_BFGENCR_SEQID_MASK (0xF << QUADSPI_BFGENCR_SEQID_SHIFT) | ||
67 | |||
68 | #define QUADSPI_BUF0IND 0x30 | ||
69 | #define QUADSPI_BUF1IND 0x34 | ||
70 | #define QUADSPI_BUF2IND 0x38 | ||
71 | #define QUADSPI_SFAR 0x100 | ||
72 | |||
73 | #define QUADSPI_SMPR 0x108 | ||
74 | #define QUADSPI_SMPR_DDRSMP_SHIFT 16 | ||
75 | #define QUADSPI_SMPR_DDRSMP_MASK (7 << QUADSPI_SMPR_DDRSMP_SHIFT) | ||
76 | #define QUADSPI_SMPR_FSDLY_SHIFT 6 | ||
77 | #define QUADSPI_SMPR_FSDLY_MASK (1 << QUADSPI_SMPR_FSDLY_SHIFT) | ||
78 | #define QUADSPI_SMPR_FSPHS_SHIFT 5 | ||
79 | #define QUADSPI_SMPR_FSPHS_MASK (1 << QUADSPI_SMPR_FSPHS_SHIFT) | ||
80 | #define QUADSPI_SMPR_HSENA_SHIFT 0 | ||
81 | #define QUADSPI_SMPR_HSENA_MASK (1 << QUADSPI_SMPR_HSENA_SHIFT) | ||
82 | |||
83 | #define QUADSPI_RBSR 0x10c | ||
84 | #define QUADSPI_RBSR_RDBFL_SHIFT 8 | ||
85 | #define QUADSPI_RBSR_RDBFL_MASK (0x3F << QUADSPI_RBSR_RDBFL_SHIFT) | ||
86 | |||
87 | #define QUADSPI_RBCT 0x110 | ||
88 | #define QUADSPI_RBCT_WMRK_MASK 0x1F | ||
89 | #define QUADSPI_RBCT_RXBRD_SHIFT 8 | ||
90 | #define QUADSPI_RBCT_RXBRD_USEIPS (0x1 << QUADSPI_RBCT_RXBRD_SHIFT) | ||
91 | |||
92 | #define QUADSPI_TBSR 0x150 | ||
93 | #define QUADSPI_TBDR 0x154 | ||
94 | #define QUADSPI_SR 0x15c | ||
95 | #define QUADSPI_SR_IP_ACC_SHIFT 1 | ||
96 | #define QUADSPI_SR_IP_ACC_MASK (0x1 << QUADSPI_SR_IP_ACC_SHIFT) | ||
97 | #define QUADSPI_SR_AHB_ACC_SHIFT 2 | ||
98 | #define QUADSPI_SR_AHB_ACC_MASK (0x1 << QUADSPI_SR_AHB_ACC_SHIFT) | ||
99 | |||
100 | #define QUADSPI_FR 0x160 | ||
101 | #define QUADSPI_FR_TFF_MASK 0x1 | ||
102 | |||
103 | #define QUADSPI_SFA1AD 0x180 | ||
104 | #define QUADSPI_SFA2AD 0x184 | ||
105 | #define QUADSPI_SFB1AD 0x188 | ||
106 | #define QUADSPI_SFB2AD 0x18c | ||
107 | #define QUADSPI_RBDR 0x200 | ||
108 | |||
109 | #define QUADSPI_LUTKEY 0x300 | ||
110 | #define QUADSPI_LUTKEY_VALUE 0x5AF05AF0 | ||
111 | |||
112 | #define QUADSPI_LCKCR 0x304 | ||
113 | #define QUADSPI_LCKER_LOCK 0x1 | ||
114 | #define QUADSPI_LCKER_UNLOCK 0x2 | ||
115 | |||
116 | #define QUADSPI_RSER 0x164 | ||
117 | #define QUADSPI_RSER_TFIE (0x1 << 0) | ||
118 | |||
119 | #define QUADSPI_LUT_BASE 0x310 | ||
120 | |||
121 | /* | ||
122 | * The definition of the LUT register shows below: | ||
123 | * | ||
124 | * --------------------------------------------------- | ||
125 | * | INSTR1 | PAD1 | OPRND1 | INSTR0 | PAD0 | OPRND0 | | ||
126 | * --------------------------------------------------- | ||
127 | */ | ||
128 | #define OPRND0_SHIFT 0 | ||
129 | #define PAD0_SHIFT 8 | ||
130 | #define INSTR0_SHIFT 10 | ||
131 | #define OPRND1_SHIFT 16 | ||
132 | |||
133 | /* Instruction set for the LUT register. */ | ||
134 | #define LUT_STOP 0 | ||
135 | #define LUT_CMD 1 | ||
136 | #define LUT_ADDR 2 | ||
137 | #define LUT_DUMMY 3 | ||
138 | #define LUT_MODE 4 | ||
139 | #define LUT_MODE2 5 | ||
140 | #define LUT_MODE4 6 | ||
141 | #define LUT_READ 7 | ||
142 | #define LUT_WRITE 8 | ||
143 | #define LUT_JMP_ON_CS 9 | ||
144 | #define LUT_ADDR_DDR 10 | ||
145 | #define LUT_MODE_DDR 11 | ||
146 | #define LUT_MODE2_DDR 12 | ||
147 | #define LUT_MODE4_DDR 13 | ||
148 | #define LUT_READ_DDR 14 | ||
149 | #define LUT_WRITE_DDR 15 | ||
150 | #define LUT_DATA_LEARN 16 | ||
151 | |||
152 | /* | ||
153 | * The PAD definitions for LUT register. | ||
154 | * | ||
155 | * The pad stands for the lines number of IO[0:3]. | ||
156 | * For example, the Quad read need four IO lines, so you should | ||
157 | * set LUT_PAD4 which means we use four IO lines. | ||
158 | */ | ||
159 | #define LUT_PAD1 0 | ||
160 | #define LUT_PAD2 1 | ||
161 | #define LUT_PAD4 2 | ||
162 | |||
163 | /* Oprands for the LUT register. */ | ||
164 | #define ADDR24BIT 0x18 | ||
165 | #define ADDR32BIT 0x20 | ||
166 | |||
167 | /* Macros for constructing the LUT register. */ | ||
168 | #define LUT0(ins, pad, opr) \ | ||
169 | (((opr) << OPRND0_SHIFT) | ((LUT_##pad) << PAD0_SHIFT) | \ | ||
170 | ((LUT_##ins) << INSTR0_SHIFT)) | ||
171 | |||
172 | #define LUT1(ins, pad, opr) (LUT0(ins, pad, opr) << OPRND1_SHIFT) | ||
173 | |||
174 | /* other macros for LUT register. */ | ||
175 | #define QUADSPI_LUT(x) (QUADSPI_LUT_BASE + (x) * 4) | ||
176 | #define QUADSPI_LUT_NUM 64 | ||
177 | |||
178 | /* SEQID -- we can have 16 seqids at most. */ | ||
179 | #define SEQID_QUAD_READ 0 | ||
180 | #define SEQID_WREN 1 | ||
181 | #define SEQID_WRDI 2 | ||
182 | #define SEQID_RDSR 3 | ||
183 | #define SEQID_SE 4 | ||
184 | #define SEQID_CHIP_ERASE 5 | ||
185 | #define SEQID_PP 6 | ||
186 | #define SEQID_RDID 7 | ||
187 | #define SEQID_WRSR 8 | ||
188 | #define SEQID_RDCR 9 | ||
189 | #define SEQID_EN4B 10 | ||
190 | #define SEQID_BRWR 11 | ||
191 | |||
192 | enum fsl_qspi_devtype { | ||
193 | FSL_QUADSPI_VYBRID, | ||
194 | FSL_QUADSPI_IMX6SX, | ||
195 | }; | ||
196 | |||
197 | struct fsl_qspi_devtype_data { | ||
198 | enum fsl_qspi_devtype devtype; | ||
199 | int rxfifo; | ||
200 | int txfifo; | ||
201 | }; | ||
202 | |||
203 | static struct fsl_qspi_devtype_data vybrid_data = { | ||
204 | .devtype = FSL_QUADSPI_VYBRID, | ||
205 | .rxfifo = 128, | ||
206 | .txfifo = 64 | ||
207 | }; | ||
208 | |||
209 | static struct fsl_qspi_devtype_data imx6sx_data = { | ||
210 | .devtype = FSL_QUADSPI_IMX6SX, | ||
211 | .rxfifo = 128, | ||
212 | .txfifo = 512 | ||
213 | }; | ||
214 | |||
215 | #define FSL_QSPI_MAX_CHIP 4 | ||
216 | struct fsl_qspi { | ||
217 | struct mtd_info mtd[FSL_QSPI_MAX_CHIP]; | ||
218 | struct spi_nor nor[FSL_QSPI_MAX_CHIP]; | ||
219 | void __iomem *iobase; | ||
220 | void __iomem *ahb_base; /* Used when read from AHB bus */ | ||
221 | u32 memmap_phy; | ||
222 | struct clk *clk, *clk_en; | ||
223 | struct device *dev; | ||
224 | struct completion c; | ||
225 | struct fsl_qspi_devtype_data *devtype_data; | ||
226 | u32 nor_size; | ||
227 | u32 nor_num; | ||
228 | u32 clk_rate; | ||
229 | unsigned int chip_base_addr; /* We may support two chips. */ | ||
230 | }; | ||
231 | |||
232 | static inline int is_vybrid_qspi(struct fsl_qspi *q) | ||
233 | { | ||
234 | return q->devtype_data->devtype == FSL_QUADSPI_VYBRID; | ||
235 | } | ||
236 | |||
237 | static inline int is_imx6sx_qspi(struct fsl_qspi *q) | ||
238 | { | ||
239 | return q->devtype_data->devtype == FSL_QUADSPI_IMX6SX; | ||
240 | } | ||
241 | |||
242 | /* | ||
243 | * An IC bug makes us to re-arrange the 32-bit data. | ||
244 | * The following chips, such as IMX6SLX, have fixed this bug. | ||
245 | */ | ||
246 | static inline u32 fsl_qspi_endian_xchg(struct fsl_qspi *q, u32 a) | ||
247 | { | ||
248 | return is_vybrid_qspi(q) ? __swab32(a) : a; | ||
249 | } | ||
250 | |||
251 | static inline void fsl_qspi_unlock_lut(struct fsl_qspi *q) | ||
252 | { | ||
253 | writel(QUADSPI_LUTKEY_VALUE, q->iobase + QUADSPI_LUTKEY); | ||
254 | writel(QUADSPI_LCKER_UNLOCK, q->iobase + QUADSPI_LCKCR); | ||
255 | } | ||
256 | |||
257 | static inline void fsl_qspi_lock_lut(struct fsl_qspi *q) | ||
258 | { | ||
259 | writel(QUADSPI_LUTKEY_VALUE, q->iobase + QUADSPI_LUTKEY); | ||
260 | writel(QUADSPI_LCKER_LOCK, q->iobase + QUADSPI_LCKCR); | ||
261 | } | ||
262 | |||
263 | static irqreturn_t fsl_qspi_irq_handler(int irq, void *dev_id) | ||
264 | { | ||
265 | struct fsl_qspi *q = dev_id; | ||
266 | u32 reg; | ||
267 | |||
268 | /* clear interrupt */ | ||
269 | reg = readl(q->iobase + QUADSPI_FR); | ||
270 | writel(reg, q->iobase + QUADSPI_FR); | ||
271 | |||
272 | if (reg & QUADSPI_FR_TFF_MASK) | ||
273 | complete(&q->c); | ||
274 | |||
275 | dev_dbg(q->dev, "QUADSPI_FR : 0x%.8x:0x%.8x\n", q->chip_base_addr, reg); | ||
276 | return IRQ_HANDLED; | ||
277 | } | ||
278 | |||
279 | static void fsl_qspi_init_lut(struct fsl_qspi *q) | ||
280 | { | ||
281 | void __iomem *base = q->iobase; | ||
282 | int rxfifo = q->devtype_data->rxfifo; | ||
283 | u32 lut_base; | ||
284 | u8 cmd, addrlen, dummy; | ||
285 | int i; | ||
286 | |||
287 | fsl_qspi_unlock_lut(q); | ||
288 | |||
289 | /* Clear all the LUT table */ | ||
290 | for (i = 0; i < QUADSPI_LUT_NUM; i++) | ||
291 | writel(0, base + QUADSPI_LUT_BASE + i * 4); | ||
292 | |||
293 | /* Quad Read */ | ||
294 | lut_base = SEQID_QUAD_READ * 4; | ||
295 | |||
296 | if (q->nor_size <= SZ_16M) { | ||
297 | cmd = SPINOR_OP_READ_1_1_4; | ||
298 | addrlen = ADDR24BIT; | ||
299 | dummy = 8; | ||
300 | } else { | ||
301 | /* use the 4-byte address */ | ||
302 | cmd = SPINOR_OP_READ_1_1_4; | ||
303 | addrlen = ADDR32BIT; | ||
304 | dummy = 8; | ||
305 | } | ||
306 | |||
307 | writel(LUT0(CMD, PAD1, cmd) | LUT1(ADDR, PAD1, addrlen), | ||
308 | base + QUADSPI_LUT(lut_base)); | ||
309 | writel(LUT0(DUMMY, PAD1, dummy) | LUT1(READ, PAD4, rxfifo), | ||
310 | base + QUADSPI_LUT(lut_base + 1)); | ||
311 | |||
312 | /* Write enable */ | ||
313 | lut_base = SEQID_WREN * 4; | ||
314 | writel(LUT0(CMD, PAD1, SPINOR_OP_WREN), base + QUADSPI_LUT(lut_base)); | ||
315 | |||
316 | /* Page Program */ | ||
317 | lut_base = SEQID_PP * 4; | ||
318 | |||
319 | if (q->nor_size <= SZ_16M) { | ||
320 | cmd = SPINOR_OP_PP; | ||
321 | addrlen = ADDR24BIT; | ||
322 | } else { | ||
323 | /* use the 4-byte address */ | ||
324 | cmd = SPINOR_OP_PP; | ||
325 | addrlen = ADDR32BIT; | ||
326 | } | ||
327 | |||
328 | writel(LUT0(CMD, PAD1, cmd) | LUT1(ADDR, PAD1, addrlen), | ||
329 | base + QUADSPI_LUT(lut_base)); | ||
330 | writel(LUT0(WRITE, PAD1, 0), base + QUADSPI_LUT(lut_base + 1)); | ||
331 | |||
332 | /* Read Status */ | ||
333 | lut_base = SEQID_RDSR * 4; | ||
334 | writel(LUT0(CMD, PAD1, SPINOR_OP_RDSR) | LUT1(READ, PAD1, 0x1), | ||
335 | base + QUADSPI_LUT(lut_base)); | ||
336 | |||
337 | /* Erase a sector */ | ||
338 | lut_base = SEQID_SE * 4; | ||
339 | |||
340 | if (q->nor_size <= SZ_16M) { | ||
341 | cmd = SPINOR_OP_SE; | ||
342 | addrlen = ADDR24BIT; | ||
343 | } else { | ||
344 | /* use the 4-byte address */ | ||
345 | cmd = SPINOR_OP_SE; | ||
346 | addrlen = ADDR32BIT; | ||
347 | } | ||
348 | |||
349 | writel(LUT0(CMD, PAD1, cmd) | LUT1(ADDR, PAD1, addrlen), | ||
350 | base + QUADSPI_LUT(lut_base)); | ||
351 | |||
352 | /* Erase the whole chip */ | ||
353 | lut_base = SEQID_CHIP_ERASE * 4; | ||
354 | writel(LUT0(CMD, PAD1, SPINOR_OP_CHIP_ERASE), | ||
355 | base + QUADSPI_LUT(lut_base)); | ||
356 | |||
357 | /* READ ID */ | ||
358 | lut_base = SEQID_RDID * 4; | ||
359 | writel(LUT0(CMD, PAD1, SPINOR_OP_RDID) | LUT1(READ, PAD1, 0x8), | ||
360 | base + QUADSPI_LUT(lut_base)); | ||
361 | |||
362 | /* Write Register */ | ||
363 | lut_base = SEQID_WRSR * 4; | ||
364 | writel(LUT0(CMD, PAD1, SPINOR_OP_WRSR) | LUT1(WRITE, PAD1, 0x2), | ||
365 | base + QUADSPI_LUT(lut_base)); | ||
366 | |||
367 | /* Read Configuration Register */ | ||
368 | lut_base = SEQID_RDCR * 4; | ||
369 | writel(LUT0(CMD, PAD1, SPINOR_OP_RDCR) | LUT1(READ, PAD1, 0x1), | ||
370 | base + QUADSPI_LUT(lut_base)); | ||
371 | |||
372 | /* Write disable */ | ||
373 | lut_base = SEQID_WRDI * 4; | ||
374 | writel(LUT0(CMD, PAD1, SPINOR_OP_WRDI), base + QUADSPI_LUT(lut_base)); | ||
375 | |||
376 | /* Enter 4 Byte Mode (Micron) */ | ||
377 | lut_base = SEQID_EN4B * 4; | ||
378 | writel(LUT0(CMD, PAD1, SPINOR_OP_EN4B), base + QUADSPI_LUT(lut_base)); | ||
379 | |||
380 | /* Enter 4 Byte Mode (Spansion) */ | ||
381 | lut_base = SEQID_BRWR * 4; | ||
382 | writel(LUT0(CMD, PAD1, SPINOR_OP_BRWR), base + QUADSPI_LUT(lut_base)); | ||
383 | |||
384 | fsl_qspi_lock_lut(q); | ||
385 | } | ||
386 | |||
387 | /* Get the SEQID for the command */ | ||
388 | static int fsl_qspi_get_seqid(struct fsl_qspi *q, u8 cmd) | ||
389 | { | ||
390 | switch (cmd) { | ||
391 | case SPINOR_OP_READ_1_1_4: | ||
392 | return SEQID_QUAD_READ; | ||
393 | case SPINOR_OP_WREN: | ||
394 | return SEQID_WREN; | ||
395 | case SPINOR_OP_WRDI: | ||
396 | return SEQID_WRDI; | ||
397 | case SPINOR_OP_RDSR: | ||
398 | return SEQID_RDSR; | ||
399 | case SPINOR_OP_SE: | ||
400 | return SEQID_SE; | ||
401 | case SPINOR_OP_CHIP_ERASE: | ||
402 | return SEQID_CHIP_ERASE; | ||
403 | case SPINOR_OP_PP: | ||
404 | return SEQID_PP; | ||
405 | case SPINOR_OP_RDID: | ||
406 | return SEQID_RDID; | ||
407 | case SPINOR_OP_WRSR: | ||
408 | return SEQID_WRSR; | ||
409 | case SPINOR_OP_RDCR: | ||
410 | return SEQID_RDCR; | ||
411 | case SPINOR_OP_EN4B: | ||
412 | return SEQID_EN4B; | ||
413 | case SPINOR_OP_BRWR: | ||
414 | return SEQID_BRWR; | ||
415 | default: | ||
416 | dev_err(q->dev, "Unsupported cmd 0x%.2x\n", cmd); | ||
417 | break; | ||
418 | } | ||
419 | return -EINVAL; | ||
420 | } | ||
421 | |||
422 | static int | ||
423 | fsl_qspi_runcmd(struct fsl_qspi *q, u8 cmd, unsigned int addr, int len) | ||
424 | { | ||
425 | void __iomem *base = q->iobase; | ||
426 | int seqid; | ||
427 | u32 reg, reg2; | ||
428 | int err; | ||
429 | |||
430 | init_completion(&q->c); | ||
431 | dev_dbg(q->dev, "to 0x%.8x:0x%.8x, len:%d, cmd:%.2x\n", | ||
432 | q->chip_base_addr, addr, len, cmd); | ||
433 | |||
434 | /* save the reg */ | ||
435 | reg = readl(base + QUADSPI_MCR); | ||
436 | |||
437 | writel(q->memmap_phy + q->chip_base_addr + addr, base + QUADSPI_SFAR); | ||
438 | writel(QUADSPI_RBCT_WMRK_MASK | QUADSPI_RBCT_RXBRD_USEIPS, | ||
439 | base + QUADSPI_RBCT); | ||
440 | writel(reg | QUADSPI_MCR_CLR_RXF_MASK, base + QUADSPI_MCR); | ||
441 | |||
442 | do { | ||
443 | reg2 = readl(base + QUADSPI_SR); | ||
444 | if (reg2 & (QUADSPI_SR_IP_ACC_MASK | QUADSPI_SR_AHB_ACC_MASK)) { | ||
445 | udelay(1); | ||
446 | dev_dbg(q->dev, "The controller is busy, 0x%x\n", reg2); | ||
447 | continue; | ||
448 | } | ||
449 | break; | ||
450 | } while (1); | ||
451 | |||
452 | /* trigger the LUT now */ | ||
453 | seqid = fsl_qspi_get_seqid(q, cmd); | ||
454 | writel((seqid << QUADSPI_IPCR_SEQID_SHIFT) | len, base + QUADSPI_IPCR); | ||
455 | |||
456 | /* Wait for the interrupt. */ | ||
457 | err = wait_for_completion_timeout(&q->c, msecs_to_jiffies(1000)); | ||
458 | if (!err) { | ||
459 | dev_err(q->dev, | ||
460 | "cmd 0x%.2x timeout, addr@%.8x, FR:0x%.8x, SR:0x%.8x\n", | ||
461 | cmd, addr, readl(base + QUADSPI_FR), | ||
462 | readl(base + QUADSPI_SR)); | ||
463 | err = -ETIMEDOUT; | ||
464 | } else { | ||
465 | err = 0; | ||
466 | } | ||
467 | |||
468 | /* restore the MCR */ | ||
469 | writel(reg, base + QUADSPI_MCR); | ||
470 | |||
471 | return err; | ||
472 | } | ||
473 | |||
474 | /* Read out the data from the QUADSPI_RBDR buffer registers. */ | ||
475 | static void fsl_qspi_read_data(struct fsl_qspi *q, int len, u8 *rxbuf) | ||
476 | { | ||
477 | u32 tmp; | ||
478 | int i = 0; | ||
479 | |||
480 | while (len > 0) { | ||
481 | tmp = readl(q->iobase + QUADSPI_RBDR + i * 4); | ||
482 | tmp = fsl_qspi_endian_xchg(q, tmp); | ||
483 | dev_dbg(q->dev, "chip addr:0x%.8x, rcv:0x%.8x\n", | ||
484 | q->chip_base_addr, tmp); | ||
485 | |||
486 | if (len >= 4) { | ||
487 | *((u32 *)rxbuf) = tmp; | ||
488 | rxbuf += 4; | ||
489 | } else { | ||
490 | memcpy(rxbuf, &tmp, len); | ||
491 | break; | ||
492 | } | ||
493 | |||
494 | len -= 4; | ||
495 | i++; | ||
496 | } | ||
497 | } | ||
498 | |||
499 | /* | ||
500 | * If we have changed the content of the flash by writing or erasing, | ||
501 | * we need to invalidate the AHB buffer. If we do not do so, we may read out | ||
502 | * the wrong data. The spec tells us reset the AHB domain and Serial Flash | ||
503 | * domain at the same time. | ||
504 | */ | ||
505 | static inline void fsl_qspi_invalid(struct fsl_qspi *q) | ||
506 | { | ||
507 | u32 reg; | ||
508 | |||
509 | reg = readl(q->iobase + QUADSPI_MCR); | ||
510 | reg |= QUADSPI_MCR_SWRSTHD_MASK | QUADSPI_MCR_SWRSTSD_MASK; | ||
511 | writel(reg, q->iobase + QUADSPI_MCR); | ||
512 | |||
513 | /* | ||
514 | * The minimum delay : 1 AHB + 2 SFCK clocks. | ||
515 | * Delay 1 us is enough. | ||
516 | */ | ||
517 | udelay(1); | ||
518 | |||
519 | reg &= ~(QUADSPI_MCR_SWRSTHD_MASK | QUADSPI_MCR_SWRSTSD_MASK); | ||
520 | writel(reg, q->iobase + QUADSPI_MCR); | ||
521 | } | ||
522 | |||
523 | static int fsl_qspi_nor_write(struct fsl_qspi *q, struct spi_nor *nor, | ||
524 | u8 opcode, unsigned int to, u32 *txbuf, | ||
525 | unsigned count, size_t *retlen) | ||
526 | { | ||
527 | int ret, i, j; | ||
528 | u32 tmp; | ||
529 | |||
530 | dev_dbg(q->dev, "to 0x%.8x:0x%.8x, len : %d\n", | ||
531 | q->chip_base_addr, to, count); | ||
532 | |||
533 | /* clear the TX FIFO. */ | ||
534 | tmp = readl(q->iobase + QUADSPI_MCR); | ||
535 | writel(tmp | QUADSPI_MCR_CLR_RXF_MASK, q->iobase + QUADSPI_MCR); | ||
536 | |||
537 | /* fill the TX data to the FIFO */ | ||
538 | for (j = 0, i = ((count + 3) / 4); j < i; j++) { | ||
539 | tmp = fsl_qspi_endian_xchg(q, *txbuf); | ||
540 | writel(tmp, q->iobase + QUADSPI_TBDR); | ||
541 | txbuf++; | ||
542 | } | ||
543 | |||
544 | /* Trigger it */ | ||
545 | ret = fsl_qspi_runcmd(q, opcode, to, count); | ||
546 | |||
547 | if (ret == 0 && retlen) | ||
548 | *retlen += count; | ||
549 | |||
550 | return ret; | ||
551 | } | ||
552 | |||
553 | static void fsl_qspi_set_map_addr(struct fsl_qspi *q) | ||
554 | { | ||
555 | int nor_size = q->nor_size; | ||
556 | void __iomem *base = q->iobase; | ||
557 | |||
558 | writel(nor_size + q->memmap_phy, base + QUADSPI_SFA1AD); | ||
559 | writel(nor_size * 2 + q->memmap_phy, base + QUADSPI_SFA2AD); | ||
560 | writel(nor_size * 3 + q->memmap_phy, base + QUADSPI_SFB1AD); | ||
561 | writel(nor_size * 4 + q->memmap_phy, base + QUADSPI_SFB2AD); | ||
562 | } | ||
563 | |||
564 | /* | ||
565 | * There are two different ways to read out the data from the flash: | ||
566 | * the "IP Command Read" and the "AHB Command Read". | ||
567 | * | ||
568 | * The IC guy suggests we use the "AHB Command Read" which is faster | ||
569 | * then the "IP Command Read". (What's more is that there is a bug in | ||
570 | * the "IP Command Read" in the Vybrid.) | ||
571 | * | ||
572 | * After we set up the registers for the "AHB Command Read", we can use | ||
573 | * the memcpy to read the data directly. A "missed" access to the buffer | ||
574 | * causes the controller to clear the buffer, and use the sequence pointed | ||
575 | * by the QUADSPI_BFGENCR[SEQID] to initiate a read from the flash. | ||
576 | */ | ||
577 | static void fsl_qspi_init_abh_read(struct fsl_qspi *q) | ||
578 | { | ||
579 | void __iomem *base = q->iobase; | ||
580 | int seqid; | ||
581 | |||
582 | /* AHB configuration for access buffer 0/1/2 .*/ | ||
583 | writel(QUADSPI_BUFXCR_INVALID_MSTRID, base + QUADSPI_BUF0CR); | ||
584 | writel(QUADSPI_BUFXCR_INVALID_MSTRID, base + QUADSPI_BUF1CR); | ||
585 | writel(QUADSPI_BUFXCR_INVALID_MSTRID, base + QUADSPI_BUF2CR); | ||
586 | writel(QUADSPI_BUF3CR_ALLMST, base + QUADSPI_BUF3CR); | ||
587 | |||
588 | /* We only use the buffer3 */ | ||
589 | writel(0, base + QUADSPI_BUF0IND); | ||
590 | writel(0, base + QUADSPI_BUF1IND); | ||
591 | writel(0, base + QUADSPI_BUF2IND); | ||
592 | |||
593 | /* Set the default lut sequence for AHB Read. */ | ||
594 | seqid = fsl_qspi_get_seqid(q, q->nor[0].read_opcode); | ||
595 | writel(seqid << QUADSPI_BFGENCR_SEQID_SHIFT, | ||
596 | q->iobase + QUADSPI_BFGENCR); | ||
597 | } | ||
598 | |||
599 | /* We use this function to do some basic init for spi_nor_scan(). */ | ||
600 | static int fsl_qspi_nor_setup(struct fsl_qspi *q) | ||
601 | { | ||
602 | void __iomem *base = q->iobase; | ||
603 | u32 reg; | ||
604 | int ret; | ||
605 | |||
606 | /* the default frequency, we will change it in the future.*/ | ||
607 | ret = clk_set_rate(q->clk, 66000000); | ||
608 | if (ret) | ||
609 | return ret; | ||
610 | |||
611 | /* Init the LUT table. */ | ||
612 | fsl_qspi_init_lut(q); | ||
613 | |||
614 | /* Disable the module */ | ||
615 | writel(QUADSPI_MCR_MDIS_MASK | QUADSPI_MCR_RESERVED_MASK, | ||
616 | base + QUADSPI_MCR); | ||
617 | |||
618 | reg = readl(base + QUADSPI_SMPR); | ||
619 | writel(reg & ~(QUADSPI_SMPR_FSDLY_MASK | ||
620 | | QUADSPI_SMPR_FSPHS_MASK | ||
621 | | QUADSPI_SMPR_HSENA_MASK | ||
622 | | QUADSPI_SMPR_DDRSMP_MASK), base + QUADSPI_SMPR); | ||
623 | |||
624 | /* Enable the module */ | ||
625 | writel(QUADSPI_MCR_RESERVED_MASK | QUADSPI_MCR_END_CFG_MASK, | ||
626 | base + QUADSPI_MCR); | ||
627 | |||
628 | /* enable the interrupt */ | ||
629 | writel(QUADSPI_RSER_TFIE, q->iobase + QUADSPI_RSER); | ||
630 | |||
631 | return 0; | ||
632 | } | ||
633 | |||
634 | static int fsl_qspi_nor_setup_last(struct fsl_qspi *q) | ||
635 | { | ||
636 | unsigned long rate = q->clk_rate; | ||
637 | int ret; | ||
638 | |||
639 | if (is_imx6sx_qspi(q)) | ||
640 | rate *= 4; | ||
641 | |||
642 | ret = clk_set_rate(q->clk, rate); | ||
643 | if (ret) | ||
644 | return ret; | ||
645 | |||
646 | /* Init the LUT table again. */ | ||
647 | fsl_qspi_init_lut(q); | ||
648 | |||
649 | /* Init for AHB read */ | ||
650 | fsl_qspi_init_abh_read(q); | ||
651 | |||
652 | return 0; | ||
653 | } | ||
654 | |||
655 | static struct of_device_id fsl_qspi_dt_ids[] = { | ||
656 | { .compatible = "fsl,vf610-qspi", .data = (void *)&vybrid_data, }, | ||
657 | { .compatible = "fsl,imx6sx-qspi", .data = (void *)&imx6sx_data, }, | ||
658 | { /* sentinel */ } | ||
659 | }; | ||
660 | MODULE_DEVICE_TABLE(of, fsl_qspi_dt_ids); | ||
661 | |||
662 | static void fsl_qspi_set_base_addr(struct fsl_qspi *q, struct spi_nor *nor) | ||
663 | { | ||
664 | q->chip_base_addr = q->nor_size * (nor - q->nor); | ||
665 | } | ||
666 | |||
667 | static int fsl_qspi_read_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len) | ||
668 | { | ||
669 | int ret; | ||
670 | struct fsl_qspi *q = nor->priv; | ||
671 | |||
672 | ret = fsl_qspi_runcmd(q, opcode, 0, len); | ||
673 | if (ret) | ||
674 | return ret; | ||
675 | |||
676 | fsl_qspi_read_data(q, len, buf); | ||
677 | return 0; | ||
678 | } | ||
679 | |||
680 | static int fsl_qspi_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len, | ||
681 | int write_enable) | ||
682 | { | ||
683 | struct fsl_qspi *q = nor->priv; | ||
684 | int ret; | ||
685 | |||
686 | if (!buf) { | ||
687 | ret = fsl_qspi_runcmd(q, opcode, 0, 1); | ||
688 | if (ret) | ||
689 | return ret; | ||
690 | |||
691 | if (opcode == SPINOR_OP_CHIP_ERASE) | ||
692 | fsl_qspi_invalid(q); | ||
693 | |||
694 | } else if (len > 0) { | ||
695 | ret = fsl_qspi_nor_write(q, nor, opcode, 0, | ||
696 | (u32 *)buf, len, NULL); | ||
697 | } else { | ||
698 | dev_err(q->dev, "invalid cmd %d\n", opcode); | ||
699 | ret = -EINVAL; | ||
700 | } | ||
701 | |||
702 | return ret; | ||
703 | } | ||
704 | |||
705 | static void fsl_qspi_write(struct spi_nor *nor, loff_t to, | ||
706 | size_t len, size_t *retlen, const u_char *buf) | ||
707 | { | ||
708 | struct fsl_qspi *q = nor->priv; | ||
709 | |||
710 | fsl_qspi_nor_write(q, nor, nor->program_opcode, to, | ||
711 | (u32 *)buf, len, retlen); | ||
712 | |||
713 | /* invalid the data in the AHB buffer. */ | ||
714 | fsl_qspi_invalid(q); | ||
715 | } | ||
716 | |||
717 | static int fsl_qspi_read(struct spi_nor *nor, loff_t from, | ||
718 | size_t len, size_t *retlen, u_char *buf) | ||
719 | { | ||
720 | struct fsl_qspi *q = nor->priv; | ||
721 | u8 cmd = nor->read_opcode; | ||
722 | int ret; | ||
723 | |||
724 | dev_dbg(q->dev, "cmd [%x],read from (0x%p, 0x%.8x, 0x%.8x),len:%d\n", | ||
725 | cmd, q->ahb_base, q->chip_base_addr, (unsigned int)from, len); | ||
726 | |||
727 | /* Wait until the previous command is finished. */ | ||
728 | ret = nor->wait_till_ready(nor); | ||
729 | if (ret) | ||
730 | return ret; | ||
731 | |||
732 | /* Read out the data directly from the AHB buffer.*/ | ||
733 | memcpy(buf, q->ahb_base + q->chip_base_addr + from, len); | ||
734 | |||
735 | *retlen += len; | ||
736 | return 0; | ||
737 | } | ||
738 | |||
739 | static int fsl_qspi_erase(struct spi_nor *nor, loff_t offs) | ||
740 | { | ||
741 | struct fsl_qspi *q = nor->priv; | ||
742 | int ret; | ||
743 | |||
744 | dev_dbg(nor->dev, "%dKiB at 0x%08x:0x%08x\n", | ||
745 | nor->mtd->erasesize / 1024, q->chip_base_addr, (u32)offs); | ||
746 | |||
747 | /* Wait until finished previous write command. */ | ||
748 | ret = nor->wait_till_ready(nor); | ||
749 | if (ret) | ||
750 | return ret; | ||
751 | |||
752 | /* Send write enable, then erase commands. */ | ||
753 | ret = nor->write_reg(nor, SPINOR_OP_WREN, NULL, 0, 0); | ||
754 | if (ret) | ||
755 | return ret; | ||
756 | |||
757 | ret = fsl_qspi_runcmd(q, nor->erase_opcode, offs, 0); | ||
758 | if (ret) | ||
759 | return ret; | ||
760 | |||
761 | fsl_qspi_invalid(q); | ||
762 | return 0; | ||
763 | } | ||
764 | |||
765 | static int fsl_qspi_prep(struct spi_nor *nor, enum spi_nor_ops ops) | ||
766 | { | ||
767 | struct fsl_qspi *q = nor->priv; | ||
768 | int ret; | ||
769 | |||
770 | ret = clk_enable(q->clk_en); | ||
771 | if (ret) | ||
772 | return ret; | ||
773 | |||
774 | ret = clk_enable(q->clk); | ||
775 | if (ret) { | ||
776 | clk_disable(q->clk_en); | ||
777 | return ret; | ||
778 | } | ||
779 | |||
780 | fsl_qspi_set_base_addr(q, nor); | ||
781 | return 0; | ||
782 | } | ||
783 | |||
784 | static void fsl_qspi_unprep(struct spi_nor *nor, enum spi_nor_ops ops) | ||
785 | { | ||
786 | struct fsl_qspi *q = nor->priv; | ||
787 | |||
788 | clk_disable(q->clk); | ||
789 | clk_disable(q->clk_en); | ||
790 | } | ||
791 | |||
792 | static int fsl_qspi_probe(struct platform_device *pdev) | ||
793 | { | ||
794 | struct device_node *np = pdev->dev.of_node; | ||
795 | struct mtd_part_parser_data ppdata; | ||
796 | struct device *dev = &pdev->dev; | ||
797 | struct fsl_qspi *q; | ||
798 | struct resource *res; | ||
799 | struct spi_nor *nor; | ||
800 | struct mtd_info *mtd; | ||
801 | int ret, i = 0; | ||
802 | bool has_second_chip = false; | ||
803 | const struct of_device_id *of_id = | ||
804 | of_match_device(fsl_qspi_dt_ids, &pdev->dev); | ||
805 | |||
806 | q = devm_kzalloc(dev, sizeof(*q), GFP_KERNEL); | ||
807 | if (!q) | ||
808 | return -ENOMEM; | ||
809 | |||
810 | q->nor_num = of_get_child_count(dev->of_node); | ||
811 | if (!q->nor_num || q->nor_num > FSL_QSPI_MAX_CHIP) | ||
812 | return -ENODEV; | ||
813 | |||
814 | /* find the resources */ | ||
815 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "QuadSPI"); | ||
816 | q->iobase = devm_ioremap_resource(dev, res); | ||
817 | if (IS_ERR(q->iobase)) { | ||
818 | ret = PTR_ERR(q->iobase); | ||
819 | goto map_failed; | ||
820 | } | ||
821 | |||
822 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, | ||
823 | "QuadSPI-memory"); | ||
824 | q->ahb_base = devm_ioremap_resource(dev, res); | ||
825 | if (IS_ERR(q->ahb_base)) { | ||
826 | ret = PTR_ERR(q->ahb_base); | ||
827 | goto map_failed; | ||
828 | } | ||
829 | q->memmap_phy = res->start; | ||
830 | |||
831 | /* find the clocks */ | ||
832 | q->clk_en = devm_clk_get(dev, "qspi_en"); | ||
833 | if (IS_ERR(q->clk_en)) { | ||
834 | ret = PTR_ERR(q->clk_en); | ||
835 | goto map_failed; | ||
836 | } | ||
837 | |||
838 | q->clk = devm_clk_get(dev, "qspi"); | ||
839 | if (IS_ERR(q->clk)) { | ||
840 | ret = PTR_ERR(q->clk); | ||
841 | goto map_failed; | ||
842 | } | ||
843 | |||
844 | ret = clk_prepare_enable(q->clk_en); | ||
845 | if (ret) { | ||
846 | dev_err(dev, "can not enable the qspi_en clock\n"); | ||
847 | goto map_failed; | ||
848 | } | ||
849 | |||
850 | ret = clk_prepare_enable(q->clk); | ||
851 | if (ret) { | ||
852 | clk_disable_unprepare(q->clk_en); | ||
853 | dev_err(dev, "can not enable the qspi clock\n"); | ||
854 | goto map_failed; | ||
855 | } | ||
856 | |||
857 | /* find the irq */ | ||
858 | ret = platform_get_irq(pdev, 0); | ||
859 | if (ret < 0) { | ||
860 | dev_err(dev, "failed to get the irq\n"); | ||
861 | goto irq_failed; | ||
862 | } | ||
863 | |||
864 | ret = devm_request_irq(dev, ret, | ||
865 | fsl_qspi_irq_handler, 0, pdev->name, q); | ||
866 | if (ret) { | ||
867 | dev_err(dev, "failed to request irq.\n"); | ||
868 | goto irq_failed; | ||
869 | } | ||
870 | |||
871 | q->dev = dev; | ||
872 | q->devtype_data = (struct fsl_qspi_devtype_data *)of_id->data; | ||
873 | platform_set_drvdata(pdev, q); | ||
874 | |||
875 | ret = fsl_qspi_nor_setup(q); | ||
876 | if (ret) | ||
877 | goto irq_failed; | ||
878 | |||
879 | if (of_get_property(np, "fsl,qspi-has-second-chip", NULL)) | ||
880 | has_second_chip = true; | ||
881 | |||
882 | /* iterate the subnodes. */ | ||
883 | for_each_available_child_of_node(dev->of_node, np) { | ||
884 | const struct spi_device_id *id; | ||
885 | char modalias[40]; | ||
886 | |||
887 | /* skip the holes */ | ||
888 | if (!has_second_chip) | ||
889 | i *= 2; | ||
890 | |||
891 | nor = &q->nor[i]; | ||
892 | mtd = &q->mtd[i]; | ||
893 | |||
894 | nor->mtd = mtd; | ||
895 | nor->dev = dev; | ||
896 | nor->priv = q; | ||
897 | mtd->priv = nor; | ||
898 | |||
899 | /* fill the hooks */ | ||
900 | nor->read_reg = fsl_qspi_read_reg; | ||
901 | nor->write_reg = fsl_qspi_write_reg; | ||
902 | nor->read = fsl_qspi_read; | ||
903 | nor->write = fsl_qspi_write; | ||
904 | nor->erase = fsl_qspi_erase; | ||
905 | |||
906 | nor->prepare = fsl_qspi_prep; | ||
907 | nor->unprepare = fsl_qspi_unprep; | ||
908 | |||
909 | if (of_modalias_node(np, modalias, sizeof(modalias)) < 0) | ||
910 | goto map_failed; | ||
911 | |||
912 | id = spi_nor_match_id(modalias); | ||
913 | if (!id) | ||
914 | goto map_failed; | ||
915 | |||
916 | ret = of_property_read_u32(np, "spi-max-frequency", | ||
917 | &q->clk_rate); | ||
918 | if (ret < 0) | ||
919 | goto map_failed; | ||
920 | |||
921 | /* set the chip address for READID */ | ||
922 | fsl_qspi_set_base_addr(q, nor); | ||
923 | |||
924 | ret = spi_nor_scan(nor, id, SPI_NOR_QUAD); | ||
925 | if (ret) | ||
926 | goto map_failed; | ||
927 | |||
928 | ppdata.of_node = np; | ||
929 | ret = mtd_device_parse_register(mtd, NULL, &ppdata, NULL, 0); | ||
930 | if (ret) | ||
931 | goto map_failed; | ||
932 | |||
933 | /* Set the correct NOR size now. */ | ||
934 | if (q->nor_size == 0) { | ||
935 | q->nor_size = mtd->size; | ||
936 | |||
937 | /* Map the SPI NOR to accessiable address */ | ||
938 | fsl_qspi_set_map_addr(q); | ||
939 | } | ||
940 | |||
941 | /* | ||
942 | * The TX FIFO is 64 bytes in the Vybrid, but the Page Program | ||
943 | * may writes 265 bytes per time. The write is working in the | ||
944 | * unit of the TX FIFO, not in the unit of the SPI NOR's page | ||
945 | * size. | ||
946 | * | ||
947 | * So shrink the spi_nor->page_size if it is larger then the | ||
948 | * TX FIFO. | ||
949 | */ | ||
950 | if (nor->page_size > q->devtype_data->txfifo) | ||
951 | nor->page_size = q->devtype_data->txfifo; | ||
952 | |||
953 | i++; | ||
954 | } | ||
955 | |||
956 | /* finish the rest init. */ | ||
957 | ret = fsl_qspi_nor_setup_last(q); | ||
958 | if (ret) | ||
959 | goto last_init_failed; | ||
960 | |||
961 | clk_disable(q->clk); | ||
962 | clk_disable(q->clk_en); | ||
963 | dev_info(dev, "QuadSPI SPI NOR flash driver\n"); | ||
964 | return 0; | ||
965 | |||
966 | last_init_failed: | ||
967 | for (i = 0; i < q->nor_num; i++) | ||
968 | mtd_device_unregister(&q->mtd[i]); | ||
969 | |||
970 | irq_failed: | ||
971 | clk_disable_unprepare(q->clk); | ||
972 | clk_disable_unprepare(q->clk_en); | ||
973 | map_failed: | ||
974 | dev_err(dev, "Freescale QuadSPI probe failed\n"); | ||
975 | return ret; | ||
976 | } | ||
977 | |||
978 | static int fsl_qspi_remove(struct platform_device *pdev) | ||
979 | { | ||
980 | struct fsl_qspi *q = platform_get_drvdata(pdev); | ||
981 | int i; | ||
982 | |||
983 | for (i = 0; i < q->nor_num; i++) | ||
984 | mtd_device_unregister(&q->mtd[i]); | ||
985 | |||
986 | /* disable the hardware */ | ||
987 | writel(QUADSPI_MCR_MDIS_MASK, q->iobase + QUADSPI_MCR); | ||
988 | writel(0x0, q->iobase + QUADSPI_RSER); | ||
989 | |||
990 | clk_unprepare(q->clk); | ||
991 | clk_unprepare(q->clk_en); | ||
992 | return 0; | ||
993 | } | ||
994 | |||
995 | static struct platform_driver fsl_qspi_driver = { | ||
996 | .driver = { | ||
997 | .name = "fsl-quadspi", | ||
998 | .bus = &platform_bus_type, | ||
999 | .owner = THIS_MODULE, | ||
1000 | .of_match_table = fsl_qspi_dt_ids, | ||
1001 | }, | ||
1002 | .probe = fsl_qspi_probe, | ||
1003 | .remove = fsl_qspi_remove, | ||
1004 | }; | ||
1005 | module_platform_driver(fsl_qspi_driver); | ||
1006 | |||
1007 | MODULE_DESCRIPTION("Freescale QuadSPI Controller Driver"); | ||
1008 | MODULE_AUTHOR("Freescale Semiconductor Inc."); | ||
1009 | MODULE_LICENSE("GPL v2"); | ||
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c new file mode 100644 index 000000000000..d6f44d527701 --- /dev/null +++ b/drivers/mtd/spi-nor/spi-nor.c | |||
@@ -0,0 +1,1107 @@ | |||
1 | /* | ||
2 | * Based on m25p80.c, by Mike Lavender (mike@steroidmicros.com), with | ||
3 | * influence from lart.c (Abraham Van Der Merwe) and mtd_dataflash.c | ||
4 | * | ||
5 | * Copyright (C) 2005, Intec Automation Inc. | ||
6 | * Copyright (C) 2014, Freescale Semiconductor, Inc. | ||
7 | * | ||
8 | * This code is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | ||
12 | |||
13 | #include <linux/err.h> | ||
14 | #include <linux/errno.h> | ||
15 | #include <linux/module.h> | ||
16 | #include <linux/device.h> | ||
17 | #include <linux/mutex.h> | ||
18 | #include <linux/math64.h> | ||
19 | |||
20 | #include <linux/mtd/cfi.h> | ||
21 | #include <linux/mtd/mtd.h> | ||
22 | #include <linux/of_platform.h> | ||
23 | #include <linux/spi/flash.h> | ||
24 | #include <linux/mtd/spi-nor.h> | ||
25 | |||
26 | /* Define max times to check status register before we give up. */ | ||
27 | #define MAX_READY_WAIT_JIFFIES (40 * HZ) /* M25P16 specs 40s max chip erase */ | ||
28 | |||
29 | #define JEDEC_MFR(_jedec_id) ((_jedec_id) >> 16) | ||
30 | |||
31 | /* | ||
32 | * Read the status register, returning its value in the location | ||
33 | * Return the status register value. | ||
34 | * Returns negative if error occurred. | ||
35 | */ | ||
36 | static int read_sr(struct spi_nor *nor) | ||
37 | { | ||
38 | int ret; | ||
39 | u8 val; | ||
40 | |||
41 | ret = nor->read_reg(nor, SPINOR_OP_RDSR, &val, 1); | ||
42 | if (ret < 0) { | ||
43 | pr_err("error %d reading SR\n", (int) ret); | ||
44 | return ret; | ||
45 | } | ||
46 | |||
47 | return val; | ||
48 | } | ||
49 | |||
50 | /* | ||
51 | * Read configuration register, returning its value in the | ||
52 | * location. Return the configuration register value. | ||
53 | * Returns negative if error occured. | ||
54 | */ | ||
55 | static int read_cr(struct spi_nor *nor) | ||
56 | { | ||
57 | int ret; | ||
58 | u8 val; | ||
59 | |||
60 | ret = nor->read_reg(nor, SPINOR_OP_RDCR, &val, 1); | ||
61 | if (ret < 0) { | ||
62 | dev_err(nor->dev, "error %d reading CR\n", ret); | ||
63 | return ret; | ||
64 | } | ||
65 | |||
66 | return val; | ||
67 | } | ||
68 | |||
69 | /* | ||
70 | * Dummy Cycle calculation for different type of read. | ||
71 | * It can be used to support more commands with | ||
72 | * different dummy cycle requirements. | ||
73 | */ | ||
74 | static inline int spi_nor_read_dummy_cycles(struct spi_nor *nor) | ||
75 | { | ||
76 | switch (nor->flash_read) { | ||
77 | case SPI_NOR_FAST: | ||
78 | case SPI_NOR_DUAL: | ||
79 | case SPI_NOR_QUAD: | ||
80 | return 1; | ||
81 | case SPI_NOR_NORMAL: | ||
82 | return 0; | ||
83 | } | ||
84 | return 0; | ||
85 | } | ||
86 | |||
87 | /* | ||
88 | * Write status register 1 byte | ||
89 | * Returns negative if error occurred. | ||
90 | */ | ||
91 | static inline int write_sr(struct spi_nor *nor, u8 val) | ||
92 | { | ||
93 | nor->cmd_buf[0] = val; | ||
94 | return nor->write_reg(nor, SPINOR_OP_WRSR, nor->cmd_buf, 1, 0); | ||
95 | } | ||
96 | |||
97 | /* | ||
98 | * Set write enable latch with Write Enable command. | ||
99 | * Returns negative if error occurred. | ||
100 | */ | ||
101 | static inline int write_enable(struct spi_nor *nor) | ||
102 | { | ||
103 | return nor->write_reg(nor, SPINOR_OP_WREN, NULL, 0, 0); | ||
104 | } | ||
105 | |||
106 | /* | ||
107 | * Send write disble instruction to the chip. | ||
108 | */ | ||
109 | static inline int write_disable(struct spi_nor *nor) | ||
110 | { | ||
111 | return nor->write_reg(nor, SPINOR_OP_WRDI, NULL, 0, 0); | ||
112 | } | ||
113 | |||
114 | static inline struct spi_nor *mtd_to_spi_nor(struct mtd_info *mtd) | ||
115 | { | ||
116 | return mtd->priv; | ||
117 | } | ||
118 | |||
119 | /* Enable/disable 4-byte addressing mode. */ | ||
120 | static inline int set_4byte(struct spi_nor *nor, u32 jedec_id, int enable) | ||
121 | { | ||
122 | int status; | ||
123 | bool need_wren = false; | ||
124 | u8 cmd; | ||
125 | |||
126 | switch (JEDEC_MFR(jedec_id)) { | ||
127 | case CFI_MFR_ST: /* Micron, actually */ | ||
128 | /* Some Micron need WREN command; all will accept it */ | ||
129 | need_wren = true; | ||
130 | case CFI_MFR_MACRONIX: | ||
131 | case 0xEF /* winbond */: | ||
132 | if (need_wren) | ||
133 | write_enable(nor); | ||
134 | |||
135 | cmd = enable ? SPINOR_OP_EN4B : SPINOR_OP_EX4B; | ||
136 | status = nor->write_reg(nor, cmd, NULL, 0, 0); | ||
137 | if (need_wren) | ||
138 | write_disable(nor); | ||
139 | |||
140 | return status; | ||
141 | default: | ||
142 | /* Spansion style */ | ||
143 | nor->cmd_buf[0] = enable << 7; | ||
144 | return nor->write_reg(nor, SPINOR_OP_BRWR, nor->cmd_buf, 1, 0); | ||
145 | } | ||
146 | } | ||
147 | |||
148 | static int spi_nor_wait_till_ready(struct spi_nor *nor) | ||
149 | { | ||
150 | unsigned long deadline; | ||
151 | int sr; | ||
152 | |||
153 | deadline = jiffies + MAX_READY_WAIT_JIFFIES; | ||
154 | |||
155 | do { | ||
156 | cond_resched(); | ||
157 | |||
158 | sr = read_sr(nor); | ||
159 | if (sr < 0) | ||
160 | break; | ||
161 | else if (!(sr & SR_WIP)) | ||
162 | return 0; | ||
163 | } while (!time_after_eq(jiffies, deadline)); | ||
164 | |||
165 | return -ETIMEDOUT; | ||
166 | } | ||
167 | |||
168 | /* | ||
169 | * Service routine to read status register until ready, or timeout occurs. | ||
170 | * Returns non-zero if error. | ||
171 | */ | ||
172 | static int wait_till_ready(struct spi_nor *nor) | ||
173 | { | ||
174 | return nor->wait_till_ready(nor); | ||
175 | } | ||
176 | |||
177 | /* | ||
178 | * Erase the whole flash memory | ||
179 | * | ||
180 | * Returns 0 if successful, non-zero otherwise. | ||
181 | */ | ||
182 | static int erase_chip(struct spi_nor *nor) | ||
183 | { | ||
184 | int ret; | ||
185 | |||
186 | dev_dbg(nor->dev, " %lldKiB\n", (long long)(nor->mtd->size >> 10)); | ||
187 | |||
188 | /* Wait until finished previous write command. */ | ||
189 | ret = wait_till_ready(nor); | ||
190 | if (ret) | ||
191 | return ret; | ||
192 | |||
193 | /* Send write enable, then erase commands. */ | ||
194 | write_enable(nor); | ||
195 | |||
196 | return nor->write_reg(nor, SPINOR_OP_CHIP_ERASE, NULL, 0, 0); | ||
197 | } | ||
198 | |||
199 | static int spi_nor_lock_and_prep(struct spi_nor *nor, enum spi_nor_ops ops) | ||
200 | { | ||
201 | int ret = 0; | ||
202 | |||
203 | mutex_lock(&nor->lock); | ||
204 | |||
205 | if (nor->prepare) { | ||
206 | ret = nor->prepare(nor, ops); | ||
207 | if (ret) { | ||
208 | dev_err(nor->dev, "failed in the preparation.\n"); | ||
209 | mutex_unlock(&nor->lock); | ||
210 | return ret; | ||
211 | } | ||
212 | } | ||
213 | return ret; | ||
214 | } | ||
215 | |||
216 | static void spi_nor_unlock_and_unprep(struct spi_nor *nor, enum spi_nor_ops ops) | ||
217 | { | ||
218 | if (nor->unprepare) | ||
219 | nor->unprepare(nor, ops); | ||
220 | mutex_unlock(&nor->lock); | ||
221 | } | ||
222 | |||
223 | /* | ||
224 | * Erase an address range on the nor chip. The address range may extend | ||
225 | * one or more erase sectors. Return an error is there is a problem erasing. | ||
226 | */ | ||
227 | static int spi_nor_erase(struct mtd_info *mtd, struct erase_info *instr) | ||
228 | { | ||
229 | struct spi_nor *nor = mtd_to_spi_nor(mtd); | ||
230 | u32 addr, len; | ||
231 | uint32_t rem; | ||
232 | int ret; | ||
233 | |||
234 | dev_dbg(nor->dev, "at 0x%llx, len %lld\n", (long long)instr->addr, | ||
235 | (long long)instr->len); | ||
236 | |||
237 | div_u64_rem(instr->len, mtd->erasesize, &rem); | ||
238 | if (rem) | ||
239 | return -EINVAL; | ||
240 | |||
241 | addr = instr->addr; | ||
242 | len = instr->len; | ||
243 | |||
244 | ret = spi_nor_lock_and_prep(nor, SPI_NOR_OPS_ERASE); | ||
245 | if (ret) | ||
246 | return ret; | ||
247 | |||
248 | /* whole-chip erase? */ | ||
249 | if (len == mtd->size) { | ||
250 | if (erase_chip(nor)) { | ||
251 | ret = -EIO; | ||
252 | goto erase_err; | ||
253 | } | ||
254 | |||
255 | /* REVISIT in some cases we could speed up erasing large regions | ||
256 | * by using SPINOR_OP_SE instead of SPINOR_OP_BE_4K. We may have set up | ||
257 | * to use "small sector erase", but that's not always optimal. | ||
258 | */ | ||
259 | |||
260 | /* "sector"-at-a-time erase */ | ||
261 | } else { | ||
262 | while (len) { | ||
263 | if (nor->erase(nor, addr)) { | ||
264 | ret = -EIO; | ||
265 | goto erase_err; | ||
266 | } | ||
267 | |||
268 | addr += mtd->erasesize; | ||
269 | len -= mtd->erasesize; | ||
270 | } | ||
271 | } | ||
272 | |||
273 | spi_nor_unlock_and_unprep(nor, SPI_NOR_OPS_ERASE); | ||
274 | |||
275 | instr->state = MTD_ERASE_DONE; | ||
276 | mtd_erase_callback(instr); | ||
277 | |||
278 | return ret; | ||
279 | |||
280 | erase_err: | ||
281 | spi_nor_unlock_and_unprep(nor, SPI_NOR_OPS_ERASE); | ||
282 | instr->state = MTD_ERASE_FAILED; | ||
283 | return ret; | ||
284 | } | ||
285 | |||
286 | static int spi_nor_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | ||
287 | { | ||
288 | struct spi_nor *nor = mtd_to_spi_nor(mtd); | ||
289 | uint32_t offset = ofs; | ||
290 | uint8_t status_old, status_new; | ||
291 | int ret = 0; | ||
292 | |||
293 | ret = spi_nor_lock_and_prep(nor, SPI_NOR_OPS_LOCK); | ||
294 | if (ret) | ||
295 | return ret; | ||
296 | |||
297 | /* Wait until finished previous command */ | ||
298 | ret = wait_till_ready(nor); | ||
299 | if (ret) | ||
300 | goto err; | ||
301 | |||
302 | status_old = read_sr(nor); | ||
303 | |||
304 | if (offset < mtd->size - (mtd->size / 2)) | ||
305 | status_new = status_old | SR_BP2 | SR_BP1 | SR_BP0; | ||
306 | else if (offset < mtd->size - (mtd->size / 4)) | ||
307 | status_new = (status_old & ~SR_BP0) | SR_BP2 | SR_BP1; | ||
308 | else if (offset < mtd->size - (mtd->size / 8)) | ||
309 | status_new = (status_old & ~SR_BP1) | SR_BP2 | SR_BP0; | ||
310 | else if (offset < mtd->size - (mtd->size / 16)) | ||
311 | status_new = (status_old & ~(SR_BP0 | SR_BP1)) | SR_BP2; | ||
312 | else if (offset < mtd->size - (mtd->size / 32)) | ||
313 | status_new = (status_old & ~SR_BP2) | SR_BP1 | SR_BP0; | ||
314 | else if (offset < mtd->size - (mtd->size / 64)) | ||
315 | status_new = (status_old & ~(SR_BP2 | SR_BP0)) | SR_BP1; | ||
316 | else | ||
317 | status_new = (status_old & ~(SR_BP2 | SR_BP1)) | SR_BP0; | ||
318 | |||
319 | /* Only modify protection if it will not unlock other areas */ | ||
320 | if ((status_new & (SR_BP2 | SR_BP1 | SR_BP0)) > | ||
321 | (status_old & (SR_BP2 | SR_BP1 | SR_BP0))) { | ||
322 | write_enable(nor); | ||
323 | ret = write_sr(nor, status_new); | ||
324 | if (ret) | ||
325 | goto err; | ||
326 | } | ||
327 | |||
328 | err: | ||
329 | spi_nor_unlock_and_unprep(nor, SPI_NOR_OPS_LOCK); | ||
330 | return ret; | ||
331 | } | ||
332 | |||
333 | static int spi_nor_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) | ||
334 | { | ||
335 | struct spi_nor *nor = mtd_to_spi_nor(mtd); | ||
336 | uint32_t offset = ofs; | ||
337 | uint8_t status_old, status_new; | ||
338 | int ret = 0; | ||
339 | |||
340 | ret = spi_nor_lock_and_prep(nor, SPI_NOR_OPS_UNLOCK); | ||
341 | if (ret) | ||
342 | return ret; | ||
343 | |||
344 | /* Wait until finished previous command */ | ||
345 | ret = wait_till_ready(nor); | ||
346 | if (ret) | ||
347 | goto err; | ||
348 | |||
349 | status_old = read_sr(nor); | ||
350 | |||
351 | if (offset+len > mtd->size - (mtd->size / 64)) | ||
352 | status_new = status_old & ~(SR_BP2 | SR_BP1 | SR_BP0); | ||
353 | else if (offset+len > mtd->size - (mtd->size / 32)) | ||
354 | status_new = (status_old & ~(SR_BP2 | SR_BP1)) | SR_BP0; | ||
355 | else if (offset+len > mtd->size - (mtd->size / 16)) | ||
356 | status_new = (status_old & ~(SR_BP2 | SR_BP0)) | SR_BP1; | ||
357 | else if (offset+len > mtd->size - (mtd->size / 8)) | ||
358 | status_new = (status_old & ~SR_BP2) | SR_BP1 | SR_BP0; | ||
359 | else if (offset+len > mtd->size - (mtd->size / 4)) | ||
360 | status_new = (status_old & ~(SR_BP0 | SR_BP1)) | SR_BP2; | ||
361 | else if (offset+len > mtd->size - (mtd->size / 2)) | ||
362 | status_new = (status_old & ~SR_BP1) | SR_BP2 | SR_BP0; | ||
363 | else | ||
364 | status_new = (status_old & ~SR_BP0) | SR_BP2 | SR_BP1; | ||
365 | |||
366 | /* Only modify protection if it will not lock other areas */ | ||
367 | if ((status_new & (SR_BP2 | SR_BP1 | SR_BP0)) < | ||
368 | (status_old & (SR_BP2 | SR_BP1 | SR_BP0))) { | ||
369 | write_enable(nor); | ||
370 | ret = write_sr(nor, status_new); | ||
371 | if (ret) | ||
372 | goto err; | ||
373 | } | ||
374 | |||
375 | err: | ||
376 | spi_nor_unlock_and_unprep(nor, SPI_NOR_OPS_UNLOCK); | ||
377 | return ret; | ||
378 | } | ||
379 | |||
380 | struct flash_info { | ||
381 | /* JEDEC id zero means "no ID" (most older chips); otherwise it has | ||
382 | * a high byte of zero plus three data bytes: the manufacturer id, | ||
383 | * then a two byte device id. | ||
384 | */ | ||
385 | u32 jedec_id; | ||
386 | u16 ext_id; | ||
387 | |||
388 | /* The size listed here is what works with SPINOR_OP_SE, which isn't | ||
389 | * necessarily called a "sector" by the vendor. | ||
390 | */ | ||
391 | unsigned sector_size; | ||
392 | u16 n_sectors; | ||
393 | |||
394 | u16 page_size; | ||
395 | u16 addr_width; | ||
396 | |||
397 | u16 flags; | ||
398 | #define SECT_4K 0x01 /* SPINOR_OP_BE_4K works uniformly */ | ||
399 | #define SPI_NOR_NO_ERASE 0x02 /* No erase command needed */ | ||
400 | #define SST_WRITE 0x04 /* use SST byte programming */ | ||
401 | #define SPI_NOR_NO_FR 0x08 /* Can't do fastread */ | ||
402 | #define SECT_4K_PMC 0x10 /* SPINOR_OP_BE_4K_PMC works uniformly */ | ||
403 | #define SPI_NOR_DUAL_READ 0x20 /* Flash supports Dual Read */ | ||
404 | #define SPI_NOR_QUAD_READ 0x40 /* Flash supports Quad Read */ | ||
405 | }; | ||
406 | |||
407 | #define INFO(_jedec_id, _ext_id, _sector_size, _n_sectors, _flags) \ | ||
408 | ((kernel_ulong_t)&(struct flash_info) { \ | ||
409 | .jedec_id = (_jedec_id), \ | ||
410 | .ext_id = (_ext_id), \ | ||
411 | .sector_size = (_sector_size), \ | ||
412 | .n_sectors = (_n_sectors), \ | ||
413 | .page_size = 256, \ | ||
414 | .flags = (_flags), \ | ||
415 | }) | ||
416 | |||
417 | #define CAT25_INFO(_sector_size, _n_sectors, _page_size, _addr_width, _flags) \ | ||
418 | ((kernel_ulong_t)&(struct flash_info) { \ | ||
419 | .sector_size = (_sector_size), \ | ||
420 | .n_sectors = (_n_sectors), \ | ||
421 | .page_size = (_page_size), \ | ||
422 | .addr_width = (_addr_width), \ | ||
423 | .flags = (_flags), \ | ||
424 | }) | ||
425 | |||
426 | /* NOTE: double check command sets and memory organization when you add | ||
427 | * more nor chips. This current list focusses on newer chips, which | ||
428 | * have been converging on command sets which including JEDEC ID. | ||
429 | */ | ||
430 | const struct spi_device_id spi_nor_ids[] = { | ||
431 | /* Atmel -- some are (confusingly) marketed as "DataFlash" */ | ||
432 | { "at25fs010", INFO(0x1f6601, 0, 32 * 1024, 4, SECT_4K) }, | ||
433 | { "at25fs040", INFO(0x1f6604, 0, 64 * 1024, 8, SECT_4K) }, | ||
434 | |||
435 | { "at25df041a", INFO(0x1f4401, 0, 64 * 1024, 8, SECT_4K) }, | ||
436 | { "at25df321a", INFO(0x1f4701, 0, 64 * 1024, 64, SECT_4K) }, | ||
437 | { "at25df641", INFO(0x1f4800, 0, 64 * 1024, 128, SECT_4K) }, | ||
438 | |||
439 | { "at26f004", INFO(0x1f0400, 0, 64 * 1024, 8, SECT_4K) }, | ||
440 | { "at26df081a", INFO(0x1f4501, 0, 64 * 1024, 16, SECT_4K) }, | ||
441 | { "at26df161a", INFO(0x1f4601, 0, 64 * 1024, 32, SECT_4K) }, | ||
442 | { "at26df321", INFO(0x1f4700, 0, 64 * 1024, 64, SECT_4K) }, | ||
443 | |||
444 | { "at45db081d", INFO(0x1f2500, 0, 64 * 1024, 16, SECT_4K) }, | ||
445 | |||
446 | /* EON -- en25xxx */ | ||
447 | { "en25f32", INFO(0x1c3116, 0, 64 * 1024, 64, SECT_4K) }, | ||
448 | { "en25p32", INFO(0x1c2016, 0, 64 * 1024, 64, 0) }, | ||
449 | { "en25q32b", INFO(0x1c3016, 0, 64 * 1024, 64, 0) }, | ||
450 | { "en25p64", INFO(0x1c2017, 0, 64 * 1024, 128, 0) }, | ||
451 | { "en25q64", INFO(0x1c3017, 0, 64 * 1024, 128, SECT_4K) }, | ||
452 | { "en25qh256", INFO(0x1c7019, 0, 64 * 1024, 512, 0) }, | ||
453 | |||
454 | /* ESMT */ | ||
455 | { "f25l32pa", INFO(0x8c2016, 0, 64 * 1024, 64, SECT_4K) }, | ||
456 | |||
457 | /* Everspin */ | ||
458 | { "mr25h256", CAT25_INFO( 32 * 1024, 1, 256, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, | ||
459 | { "mr25h10", CAT25_INFO(128 * 1024, 1, 256, 3, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, | ||
460 | |||
461 | /* GigaDevice */ | ||
462 | { "gd25q32", INFO(0xc84016, 0, 64 * 1024, 64, SECT_4K) }, | ||
463 | { "gd25q64", INFO(0xc84017, 0, 64 * 1024, 128, SECT_4K) }, | ||
464 | |||
465 | /* Intel/Numonyx -- xxxs33b */ | ||
466 | { "160s33b", INFO(0x898911, 0, 64 * 1024, 32, 0) }, | ||
467 | { "320s33b", INFO(0x898912, 0, 64 * 1024, 64, 0) }, | ||
468 | { "640s33b", INFO(0x898913, 0, 64 * 1024, 128, 0) }, | ||
469 | |||
470 | /* Macronix */ | ||
471 | { "mx25l2005a", INFO(0xc22012, 0, 64 * 1024, 4, SECT_4K) }, | ||
472 | { "mx25l4005a", INFO(0xc22013, 0, 64 * 1024, 8, SECT_4K) }, | ||
473 | { "mx25l8005", INFO(0xc22014, 0, 64 * 1024, 16, 0) }, | ||
474 | { "mx25l1606e", INFO(0xc22015, 0, 64 * 1024, 32, SECT_4K) }, | ||
475 | { "mx25l3205d", INFO(0xc22016, 0, 64 * 1024, 64, 0) }, | ||
476 | { "mx25l3255e", INFO(0xc29e16, 0, 64 * 1024, 64, SECT_4K) }, | ||
477 | { "mx25l6405d", INFO(0xc22017, 0, 64 * 1024, 128, 0) }, | ||
478 | { "mx25l12805d", INFO(0xc22018, 0, 64 * 1024, 256, 0) }, | ||
479 | { "mx25l12855e", INFO(0xc22618, 0, 64 * 1024, 256, 0) }, | ||
480 | { "mx25l25635e", INFO(0xc22019, 0, 64 * 1024, 512, 0) }, | ||
481 | { "mx25l25655e", INFO(0xc22619, 0, 64 * 1024, 512, 0) }, | ||
482 | { "mx66l51235l", INFO(0xc2201a, 0, 64 * 1024, 1024, SPI_NOR_QUAD_READ) }, | ||
483 | { "mx66l1g55g", INFO(0xc2261b, 0, 64 * 1024, 2048, SPI_NOR_QUAD_READ) }, | ||
484 | |||
485 | /* Micron */ | ||
486 | { "n25q064", INFO(0x20ba17, 0, 64 * 1024, 128, 0) }, | ||
487 | { "n25q128a11", INFO(0x20bb18, 0, 64 * 1024, 256, 0) }, | ||
488 | { "n25q128a13", INFO(0x20ba18, 0, 64 * 1024, 256, 0) }, | ||
489 | { "n25q256a", INFO(0x20ba19, 0, 64 * 1024, 512, SECT_4K) }, | ||
490 | { "n25q512a", INFO(0x20bb20, 0, 64 * 1024, 1024, SECT_4K) }, | ||
491 | |||
492 | /* PMC */ | ||
493 | { "pm25lv512", INFO(0, 0, 32 * 1024, 2, SECT_4K_PMC) }, | ||
494 | { "pm25lv010", INFO(0, 0, 32 * 1024, 4, SECT_4K_PMC) }, | ||
495 | { "pm25lq032", INFO(0x7f9d46, 0, 64 * 1024, 64, SECT_4K) }, | ||
496 | |||
497 | /* Spansion -- single (large) sector size only, at least | ||
498 | * for the chips listed here (without boot sectors). | ||
499 | */ | ||
500 | { "s25sl032p", INFO(0x010215, 0x4d00, 64 * 1024, 64, 0) }, | ||
501 | { "s25sl064p", INFO(0x010216, 0x4d00, 64 * 1024, 128, 0) }, | ||
502 | { "s25fl256s0", INFO(0x010219, 0x4d00, 256 * 1024, 128, 0) }, | ||
503 | { "s25fl256s1", INFO(0x010219, 0x4d01, 64 * 1024, 512, SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, | ||
504 | { "s25fl512s", INFO(0x010220, 0x4d00, 256 * 1024, 256, SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, | ||
505 | { "s70fl01gs", INFO(0x010221, 0x4d00, 256 * 1024, 256, 0) }, | ||
506 | { "s25sl12800", INFO(0x012018, 0x0300, 256 * 1024, 64, 0) }, | ||
507 | { "s25sl12801", INFO(0x012018, 0x0301, 64 * 1024, 256, 0) }, | ||
508 | { "s25fl129p0", INFO(0x012018, 0x4d00, 256 * 1024, 64, 0) }, | ||
509 | { "s25fl129p1", INFO(0x012018, 0x4d01, 64 * 1024, 256, 0) }, | ||
510 | { "s25sl004a", INFO(0x010212, 0, 64 * 1024, 8, 0) }, | ||
511 | { "s25sl008a", INFO(0x010213, 0, 64 * 1024, 16, 0) }, | ||
512 | { "s25sl016a", INFO(0x010214, 0, 64 * 1024, 32, 0) }, | ||
513 | { "s25sl032a", INFO(0x010215, 0, 64 * 1024, 64, 0) }, | ||
514 | { "s25sl064a", INFO(0x010216, 0, 64 * 1024, 128, 0) }, | ||
515 | { "s25fl008k", INFO(0xef4014, 0, 64 * 1024, 16, SECT_4K) }, | ||
516 | { "s25fl016k", INFO(0xef4015, 0, 64 * 1024, 32, SECT_4K) }, | ||
517 | { "s25fl064k", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) }, | ||
518 | |||
519 | /* SST -- large erase sizes are "overlays", "sectors" are 4K */ | ||
520 | { "sst25vf040b", INFO(0xbf258d, 0, 64 * 1024, 8, SECT_4K | SST_WRITE) }, | ||
521 | { "sst25vf080b", INFO(0xbf258e, 0, 64 * 1024, 16, SECT_4K | SST_WRITE) }, | ||
522 | { "sst25vf016b", INFO(0xbf2541, 0, 64 * 1024, 32, SECT_4K | SST_WRITE) }, | ||
523 | { "sst25vf032b", INFO(0xbf254a, 0, 64 * 1024, 64, SECT_4K | SST_WRITE) }, | ||
524 | { "sst25vf064c", INFO(0xbf254b, 0, 64 * 1024, 128, SECT_4K) }, | ||
525 | { "sst25wf512", INFO(0xbf2501, 0, 64 * 1024, 1, SECT_4K | SST_WRITE) }, | ||
526 | { "sst25wf010", INFO(0xbf2502, 0, 64 * 1024, 2, SECT_4K | SST_WRITE) }, | ||
527 | { "sst25wf020", INFO(0xbf2503, 0, 64 * 1024, 4, SECT_4K | SST_WRITE) }, | ||
528 | { "sst25wf040", INFO(0xbf2504, 0, 64 * 1024, 8, SECT_4K | SST_WRITE) }, | ||
529 | |||
530 | /* ST Microelectronics -- newer production may have feature updates */ | ||
531 | { "m25p05", INFO(0x202010, 0, 32 * 1024, 2, 0) }, | ||
532 | { "m25p10", INFO(0x202011, 0, 32 * 1024, 4, 0) }, | ||
533 | { "m25p20", INFO(0x202012, 0, 64 * 1024, 4, 0) }, | ||
534 | { "m25p40", INFO(0x202013, 0, 64 * 1024, 8, 0) }, | ||
535 | { "m25p80", INFO(0x202014, 0, 64 * 1024, 16, 0) }, | ||
536 | { "m25p16", INFO(0x202015, 0, 64 * 1024, 32, 0) }, | ||
537 | { "m25p32", INFO(0x202016, 0, 64 * 1024, 64, 0) }, | ||
538 | { "m25p64", INFO(0x202017, 0, 64 * 1024, 128, 0) }, | ||
539 | { "m25p128", INFO(0x202018, 0, 256 * 1024, 64, 0) }, | ||
540 | { "n25q032", INFO(0x20ba16, 0, 64 * 1024, 64, 0) }, | ||
541 | |||
542 | { "m25p05-nonjedec", INFO(0, 0, 32 * 1024, 2, 0) }, | ||
543 | { "m25p10-nonjedec", INFO(0, 0, 32 * 1024, 4, 0) }, | ||
544 | { "m25p20-nonjedec", INFO(0, 0, 64 * 1024, 4, 0) }, | ||
545 | { "m25p40-nonjedec", INFO(0, 0, 64 * 1024, 8, 0) }, | ||
546 | { "m25p80-nonjedec", INFO(0, 0, 64 * 1024, 16, 0) }, | ||
547 | { "m25p16-nonjedec", INFO(0, 0, 64 * 1024, 32, 0) }, | ||
548 | { "m25p32-nonjedec", INFO(0, 0, 64 * 1024, 64, 0) }, | ||
549 | { "m25p64-nonjedec", INFO(0, 0, 64 * 1024, 128, 0) }, | ||
550 | { "m25p128-nonjedec", INFO(0, 0, 256 * 1024, 64, 0) }, | ||
551 | |||
552 | { "m45pe10", INFO(0x204011, 0, 64 * 1024, 2, 0) }, | ||
553 | { "m45pe80", INFO(0x204014, 0, 64 * 1024, 16, 0) }, | ||
554 | { "m45pe16", INFO(0x204015, 0, 64 * 1024, 32, 0) }, | ||
555 | |||
556 | { "m25pe20", INFO(0x208012, 0, 64 * 1024, 4, 0) }, | ||
557 | { "m25pe80", INFO(0x208014, 0, 64 * 1024, 16, 0) }, | ||
558 | { "m25pe16", INFO(0x208015, 0, 64 * 1024, 32, SECT_4K) }, | ||
559 | |||
560 | { "m25px16", INFO(0x207115, 0, 64 * 1024, 32, SECT_4K) }, | ||
561 | { "m25px32", INFO(0x207116, 0, 64 * 1024, 64, SECT_4K) }, | ||
562 | { "m25px32-s0", INFO(0x207316, 0, 64 * 1024, 64, SECT_4K) }, | ||
563 | { "m25px32-s1", INFO(0x206316, 0, 64 * 1024, 64, SECT_4K) }, | ||
564 | { "m25px64", INFO(0x207117, 0, 64 * 1024, 128, 0) }, | ||
565 | |||
566 | /* Winbond -- w25x "blocks" are 64K, "sectors" are 4KiB */ | ||
567 | { "w25x10", INFO(0xef3011, 0, 64 * 1024, 2, SECT_4K) }, | ||
568 | { "w25x20", INFO(0xef3012, 0, 64 * 1024, 4, SECT_4K) }, | ||
569 | { "w25x40", INFO(0xef3013, 0, 64 * 1024, 8, SECT_4K) }, | ||
570 | { "w25x80", INFO(0xef3014, 0, 64 * 1024, 16, SECT_4K) }, | ||
571 | { "w25x16", INFO(0xef3015, 0, 64 * 1024, 32, SECT_4K) }, | ||
572 | { "w25x32", INFO(0xef3016, 0, 64 * 1024, 64, SECT_4K) }, | ||
573 | { "w25q32", INFO(0xef4016, 0, 64 * 1024, 64, SECT_4K) }, | ||
574 | { "w25q32dw", INFO(0xef6016, 0, 64 * 1024, 64, SECT_4K) }, | ||
575 | { "w25x64", INFO(0xef3017, 0, 64 * 1024, 128, SECT_4K) }, | ||
576 | { "w25q64", INFO(0xef4017, 0, 64 * 1024, 128, SECT_4K) }, | ||
577 | { "w25q128", INFO(0xef4018, 0, 64 * 1024, 256, SECT_4K) }, | ||
578 | { "w25q80", INFO(0xef5014, 0, 64 * 1024, 16, SECT_4K) }, | ||
579 | { "w25q80bl", INFO(0xef4014, 0, 64 * 1024, 16, SECT_4K) }, | ||
580 | { "w25q128", INFO(0xef4018, 0, 64 * 1024, 256, SECT_4K) }, | ||
581 | { "w25q256", INFO(0xef4019, 0, 64 * 1024, 512, SECT_4K) }, | ||
582 | |||
583 | /* Catalyst / On Semiconductor -- non-JEDEC */ | ||
584 | { "cat25c11", CAT25_INFO( 16, 8, 16, 1, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, | ||
585 | { "cat25c03", CAT25_INFO( 32, 8, 16, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, | ||
586 | { "cat25c09", CAT25_INFO( 128, 8, 32, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, | ||
587 | { "cat25c17", CAT25_INFO( 256, 8, 32, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, | ||
588 | { "cat25128", CAT25_INFO(2048, 8, 64, 2, SPI_NOR_NO_ERASE | SPI_NOR_NO_FR) }, | ||
589 | { }, | ||
590 | }; | ||
591 | EXPORT_SYMBOL_GPL(spi_nor_ids); | ||
592 | |||
593 | static const struct spi_device_id *spi_nor_read_id(struct spi_nor *nor) | ||
594 | { | ||
595 | int tmp; | ||
596 | u8 id[5]; | ||
597 | u32 jedec; | ||
598 | u16 ext_jedec; | ||
599 | struct flash_info *info; | ||
600 | |||
601 | tmp = nor->read_reg(nor, SPINOR_OP_RDID, id, 5); | ||
602 | if (tmp < 0) { | ||
603 | dev_dbg(nor->dev, " error %d reading JEDEC ID\n", tmp); | ||
604 | return ERR_PTR(tmp); | ||
605 | } | ||
606 | jedec = id[0]; | ||
607 | jedec = jedec << 8; | ||
608 | jedec |= id[1]; | ||
609 | jedec = jedec << 8; | ||
610 | jedec |= id[2]; | ||
611 | |||
612 | ext_jedec = id[3] << 8 | id[4]; | ||
613 | |||
614 | for (tmp = 0; tmp < ARRAY_SIZE(spi_nor_ids) - 1; tmp++) { | ||
615 | info = (void *)spi_nor_ids[tmp].driver_data; | ||
616 | if (info->jedec_id == jedec) { | ||
617 | if (info->ext_id == 0 || info->ext_id == ext_jedec) | ||
618 | return &spi_nor_ids[tmp]; | ||
619 | } | ||
620 | } | ||
621 | dev_err(nor->dev, "unrecognized JEDEC id %06x\n", jedec); | ||
622 | return ERR_PTR(-ENODEV); | ||
623 | } | ||
624 | |||
625 | static const struct spi_device_id *jedec_probe(struct spi_nor *nor) | ||
626 | { | ||
627 | return nor->read_id(nor); | ||
628 | } | ||
629 | |||
630 | static int spi_nor_read(struct mtd_info *mtd, loff_t from, size_t len, | ||
631 | size_t *retlen, u_char *buf) | ||
632 | { | ||
633 | struct spi_nor *nor = mtd_to_spi_nor(mtd); | ||
634 | int ret; | ||
635 | |||
636 | dev_dbg(nor->dev, "from 0x%08x, len %zd\n", (u32)from, len); | ||
637 | |||
638 | ret = spi_nor_lock_and_prep(nor, SPI_NOR_OPS_READ); | ||
639 | if (ret) | ||
640 | return ret; | ||
641 | |||
642 | ret = nor->read(nor, from, len, retlen, buf); | ||
643 | |||
644 | spi_nor_unlock_and_unprep(nor, SPI_NOR_OPS_READ); | ||
645 | return ret; | ||
646 | } | ||
647 | |||
648 | static int sst_write(struct mtd_info *mtd, loff_t to, size_t len, | ||
649 | size_t *retlen, const u_char *buf) | ||
650 | { | ||
651 | struct spi_nor *nor = mtd_to_spi_nor(mtd); | ||
652 | size_t actual; | ||
653 | int ret; | ||
654 | |||
655 | dev_dbg(nor->dev, "to 0x%08x, len %zd\n", (u32)to, len); | ||
656 | |||
657 | ret = spi_nor_lock_and_prep(nor, SPI_NOR_OPS_WRITE); | ||
658 | if (ret) | ||
659 | return ret; | ||
660 | |||
661 | /* Wait until finished previous write command. */ | ||
662 | ret = wait_till_ready(nor); | ||
663 | if (ret) | ||
664 | goto time_out; | ||
665 | |||
666 | write_enable(nor); | ||
667 | |||
668 | nor->sst_write_second = false; | ||
669 | |||
670 | actual = to % 2; | ||
671 | /* Start write from odd address. */ | ||
672 | if (actual) { | ||
673 | nor->program_opcode = SPINOR_OP_BP; | ||
674 | |||
675 | /* write one byte. */ | ||
676 | nor->write(nor, to, 1, retlen, buf); | ||
677 | ret = wait_till_ready(nor); | ||
678 | if (ret) | ||
679 | goto time_out; | ||
680 | } | ||
681 | to += actual; | ||
682 | |||
683 | /* Write out most of the data here. */ | ||
684 | for (; actual < len - 1; actual += 2) { | ||
685 | nor->program_opcode = SPINOR_OP_AAI_WP; | ||
686 | |||
687 | /* write two bytes. */ | ||
688 | nor->write(nor, to, 2, retlen, buf + actual); | ||
689 | ret = wait_till_ready(nor); | ||
690 | if (ret) | ||
691 | goto time_out; | ||
692 | to += 2; | ||
693 | nor->sst_write_second = true; | ||
694 | } | ||
695 | nor->sst_write_second = false; | ||
696 | |||
697 | write_disable(nor); | ||
698 | ret = wait_till_ready(nor); | ||
699 | if (ret) | ||
700 | goto time_out; | ||
701 | |||
702 | /* Write out trailing byte if it exists. */ | ||
703 | if (actual != len) { | ||
704 | write_enable(nor); | ||
705 | |||
706 | nor->program_opcode = SPINOR_OP_BP; | ||
707 | nor->write(nor, to, 1, retlen, buf + actual); | ||
708 | |||
709 | ret = wait_till_ready(nor); | ||
710 | if (ret) | ||
711 | goto time_out; | ||
712 | write_disable(nor); | ||
713 | } | ||
714 | time_out: | ||
715 | spi_nor_unlock_and_unprep(nor, SPI_NOR_OPS_WRITE); | ||
716 | return ret; | ||
717 | } | ||
718 | |||
719 | /* | ||
720 | * Write an address range to the nor chip. Data must be written in | ||
721 | * FLASH_PAGESIZE chunks. The address range may be any size provided | ||
722 | * it is within the physical boundaries. | ||
723 | */ | ||
724 | static int spi_nor_write(struct mtd_info *mtd, loff_t to, size_t len, | ||
725 | size_t *retlen, const u_char *buf) | ||
726 | { | ||
727 | struct spi_nor *nor = mtd_to_spi_nor(mtd); | ||
728 | u32 page_offset, page_size, i; | ||
729 | int ret; | ||
730 | |||
731 | dev_dbg(nor->dev, "to 0x%08x, len %zd\n", (u32)to, len); | ||
732 | |||
733 | ret = spi_nor_lock_and_prep(nor, SPI_NOR_OPS_WRITE); | ||
734 | if (ret) | ||
735 | return ret; | ||
736 | |||
737 | /* Wait until finished previous write command. */ | ||
738 | ret = wait_till_ready(nor); | ||
739 | if (ret) | ||
740 | goto write_err; | ||
741 | |||
742 | write_enable(nor); | ||
743 | |||
744 | page_offset = to & (nor->page_size - 1); | ||
745 | |||
746 | /* do all the bytes fit onto one page? */ | ||
747 | if (page_offset + len <= nor->page_size) { | ||
748 | nor->write(nor, to, len, retlen, buf); | ||
749 | } else { | ||
750 | /* the size of data remaining on the first page */ | ||
751 | page_size = nor->page_size - page_offset; | ||
752 | nor->write(nor, to, page_size, retlen, buf); | ||
753 | |||
754 | /* write everything in nor->page_size chunks */ | ||
755 | for (i = page_size; i < len; i += page_size) { | ||
756 | page_size = len - i; | ||
757 | if (page_size > nor->page_size) | ||
758 | page_size = nor->page_size; | ||
759 | |||
760 | wait_till_ready(nor); | ||
761 | write_enable(nor); | ||
762 | |||
763 | nor->write(nor, to + i, page_size, retlen, buf + i); | ||
764 | } | ||
765 | } | ||
766 | |||
767 | write_err: | ||
768 | spi_nor_unlock_and_unprep(nor, SPI_NOR_OPS_WRITE); | ||
769 | return 0; | ||
770 | } | ||
771 | |||
772 | static int macronix_quad_enable(struct spi_nor *nor) | ||
773 | { | ||
774 | int ret, val; | ||
775 | |||
776 | val = read_sr(nor); | ||
777 | write_enable(nor); | ||
778 | |||
779 | nor->cmd_buf[0] = val | SR_QUAD_EN_MX; | ||
780 | nor->write_reg(nor, SPINOR_OP_WRSR, nor->cmd_buf, 1, 0); | ||
781 | |||
782 | if (wait_till_ready(nor)) | ||
783 | return 1; | ||
784 | |||
785 | ret = read_sr(nor); | ||
786 | if (!(ret > 0 && (ret & SR_QUAD_EN_MX))) { | ||
787 | dev_err(nor->dev, "Macronix Quad bit not set\n"); | ||
788 | return -EINVAL; | ||
789 | } | ||
790 | |||
791 | return 0; | ||
792 | } | ||
793 | |||
794 | /* | ||
795 | * Write status Register and configuration register with 2 bytes | ||
796 | * The first byte will be written to the status register, while the | ||
797 | * second byte will be written to the configuration register. | ||
798 | * Return negative if error occured. | ||
799 | */ | ||
800 | static int write_sr_cr(struct spi_nor *nor, u16 val) | ||
801 | { | ||
802 | nor->cmd_buf[0] = val & 0xff; | ||
803 | nor->cmd_buf[1] = (val >> 8); | ||
804 | |||
805 | return nor->write_reg(nor, SPINOR_OP_WRSR, nor->cmd_buf, 2, 0); | ||
806 | } | ||
807 | |||
808 | static int spansion_quad_enable(struct spi_nor *nor) | ||
809 | { | ||
810 | int ret; | ||
811 | int quad_en = CR_QUAD_EN_SPAN << 8; | ||
812 | |||
813 | write_enable(nor); | ||
814 | |||
815 | ret = write_sr_cr(nor, quad_en); | ||
816 | if (ret < 0) { | ||
817 | dev_err(nor->dev, | ||
818 | "error while writing configuration register\n"); | ||
819 | return -EINVAL; | ||
820 | } | ||
821 | |||
822 | /* read back and check it */ | ||
823 | ret = read_cr(nor); | ||
824 | if (!(ret > 0 && (ret & CR_QUAD_EN_SPAN))) { | ||
825 | dev_err(nor->dev, "Spansion Quad bit not set\n"); | ||
826 | return -EINVAL; | ||
827 | } | ||
828 | |||
829 | return 0; | ||
830 | } | ||
831 | |||
832 | static int set_quad_mode(struct spi_nor *nor, u32 jedec_id) | ||
833 | { | ||
834 | int status; | ||
835 | |||
836 | switch (JEDEC_MFR(jedec_id)) { | ||
837 | case CFI_MFR_MACRONIX: | ||
838 | status = macronix_quad_enable(nor); | ||
839 | if (status) { | ||
840 | dev_err(nor->dev, "Macronix quad-read not enabled\n"); | ||
841 | return -EINVAL; | ||
842 | } | ||
843 | return status; | ||
844 | default: | ||
845 | status = spansion_quad_enable(nor); | ||
846 | if (status) { | ||
847 | dev_err(nor->dev, "Spansion quad-read not enabled\n"); | ||
848 | return -EINVAL; | ||
849 | } | ||
850 | return status; | ||
851 | } | ||
852 | } | ||
853 | |||
854 | static int spi_nor_check(struct spi_nor *nor) | ||
855 | { | ||
856 | if (!nor->dev || !nor->read || !nor->write || | ||
857 | !nor->read_reg || !nor->write_reg || !nor->erase) { | ||
858 | pr_err("spi-nor: please fill all the necessary fields!\n"); | ||
859 | return -EINVAL; | ||
860 | } | ||
861 | |||
862 | if (!nor->read_id) | ||
863 | nor->read_id = spi_nor_read_id; | ||
864 | if (!nor->wait_till_ready) | ||
865 | nor->wait_till_ready = spi_nor_wait_till_ready; | ||
866 | |||
867 | return 0; | ||
868 | } | ||
869 | |||
870 | int spi_nor_scan(struct spi_nor *nor, const struct spi_device_id *id, | ||
871 | enum read_mode mode) | ||
872 | { | ||
873 | struct flash_info *info; | ||
874 | struct flash_platform_data *data; | ||
875 | struct device *dev = nor->dev; | ||
876 | struct mtd_info *mtd = nor->mtd; | ||
877 | struct device_node *np = dev->of_node; | ||
878 | int ret; | ||
879 | int i; | ||
880 | |||
881 | ret = spi_nor_check(nor); | ||
882 | if (ret) | ||
883 | return ret; | ||
884 | |||
885 | /* Platform data helps sort out which chip type we have, as | ||
886 | * well as how this board partitions it. If we don't have | ||
887 | * a chip ID, try the JEDEC id commands; they'll work for most | ||
888 | * newer chips, even if we don't recognize the particular chip. | ||
889 | */ | ||
890 | data = dev_get_platdata(dev); | ||
891 | if (data && data->type) { | ||
892 | const struct spi_device_id *plat_id; | ||
893 | |||
894 | for (i = 0; i < ARRAY_SIZE(spi_nor_ids) - 1; i++) { | ||
895 | plat_id = &spi_nor_ids[i]; | ||
896 | if (strcmp(data->type, plat_id->name)) | ||
897 | continue; | ||
898 | break; | ||
899 | } | ||
900 | |||
901 | if (i < ARRAY_SIZE(spi_nor_ids) - 1) | ||
902 | id = plat_id; | ||
903 | else | ||
904 | dev_warn(dev, "unrecognized id %s\n", data->type); | ||
905 | } | ||
906 | |||
907 | info = (void *)id->driver_data; | ||
908 | |||
909 | if (info->jedec_id) { | ||
910 | const struct spi_device_id *jid; | ||
911 | |||
912 | jid = jedec_probe(nor); | ||
913 | if (IS_ERR(jid)) { | ||
914 | return PTR_ERR(jid); | ||
915 | } else if (jid != id) { | ||
916 | /* | ||
917 | * JEDEC knows better, so overwrite platform ID. We | ||
918 | * can't trust partitions any longer, but we'll let | ||
919 | * mtd apply them anyway, since some partitions may be | ||
920 | * marked read-only, and we don't want to lose that | ||
921 | * information, even if it's not 100% accurate. | ||
922 | */ | ||
923 | dev_warn(dev, "found %s, expected %s\n", | ||
924 | jid->name, id->name); | ||
925 | id = jid; | ||
926 | info = (void *)jid->driver_data; | ||
927 | } | ||
928 | } | ||
929 | |||
930 | mutex_init(&nor->lock); | ||
931 | |||
932 | /* | ||
933 | * Atmel, SST and Intel/Numonyx serial nor tend to power | ||
934 | * up with the software protection bits set | ||
935 | */ | ||
936 | |||
937 | if (JEDEC_MFR(info->jedec_id) == CFI_MFR_ATMEL || | ||
938 | JEDEC_MFR(info->jedec_id) == CFI_MFR_INTEL || | ||
939 | JEDEC_MFR(info->jedec_id) == CFI_MFR_SST) { | ||
940 | write_enable(nor); | ||
941 | write_sr(nor, 0); | ||
942 | } | ||
943 | |||
944 | if (data && data->name) | ||
945 | mtd->name = data->name; | ||
946 | else | ||
947 | mtd->name = dev_name(dev); | ||
948 | |||
949 | mtd->type = MTD_NORFLASH; | ||
950 | mtd->writesize = 1; | ||
951 | mtd->flags = MTD_CAP_NORFLASH; | ||
952 | mtd->size = info->sector_size * info->n_sectors; | ||
953 | mtd->_erase = spi_nor_erase; | ||
954 | mtd->_read = spi_nor_read; | ||
955 | |||
956 | /* nor protection support for STmicro chips */ | ||
957 | if (JEDEC_MFR(info->jedec_id) == CFI_MFR_ST) { | ||
958 | mtd->_lock = spi_nor_lock; | ||
959 | mtd->_unlock = spi_nor_unlock; | ||
960 | } | ||
961 | |||
962 | /* sst nor chips use AAI word program */ | ||
963 | if (info->flags & SST_WRITE) | ||
964 | mtd->_write = sst_write; | ||
965 | else | ||
966 | mtd->_write = spi_nor_write; | ||
967 | |||
968 | /* prefer "small sector" erase if possible */ | ||
969 | if (info->flags & SECT_4K) { | ||
970 | nor->erase_opcode = SPINOR_OP_BE_4K; | ||
971 | mtd->erasesize = 4096; | ||
972 | } else if (info->flags & SECT_4K_PMC) { | ||
973 | nor->erase_opcode = SPINOR_OP_BE_4K_PMC; | ||
974 | mtd->erasesize = 4096; | ||
975 | } else { | ||
976 | nor->erase_opcode = SPINOR_OP_SE; | ||
977 | mtd->erasesize = info->sector_size; | ||
978 | } | ||
979 | |||
980 | if (info->flags & SPI_NOR_NO_ERASE) | ||
981 | mtd->flags |= MTD_NO_ERASE; | ||
982 | |||
983 | mtd->dev.parent = dev; | ||
984 | nor->page_size = info->page_size; | ||
985 | mtd->writebufsize = nor->page_size; | ||
986 | |||
987 | if (np) { | ||
988 | /* If we were instantiated by DT, use it */ | ||
989 | if (of_property_read_bool(np, "m25p,fast-read")) | ||
990 | nor->flash_read = SPI_NOR_FAST; | ||
991 | else | ||
992 | nor->flash_read = SPI_NOR_NORMAL; | ||
993 | } else { | ||
994 | /* If we weren't instantiated by DT, default to fast-read */ | ||
995 | nor->flash_read = SPI_NOR_FAST; | ||
996 | } | ||
997 | |||
998 | /* Some devices cannot do fast-read, no matter what DT tells us */ | ||
999 | if (info->flags & SPI_NOR_NO_FR) | ||
1000 | nor->flash_read = SPI_NOR_NORMAL; | ||
1001 | |||
1002 | /* Quad/Dual-read mode takes precedence over fast/normal */ | ||
1003 | if (mode == SPI_NOR_QUAD && info->flags & SPI_NOR_QUAD_READ) { | ||
1004 | ret = set_quad_mode(nor, info->jedec_id); | ||
1005 | if (ret) { | ||
1006 | dev_err(dev, "quad mode not supported\n"); | ||
1007 | return ret; | ||
1008 | } | ||
1009 | nor->flash_read = SPI_NOR_QUAD; | ||
1010 | } else if (mode == SPI_NOR_DUAL && info->flags & SPI_NOR_DUAL_READ) { | ||
1011 | nor->flash_read = SPI_NOR_DUAL; | ||
1012 | } | ||
1013 | |||
1014 | /* Default commands */ | ||
1015 | switch (nor->flash_read) { | ||
1016 | case SPI_NOR_QUAD: | ||
1017 | nor->read_opcode = SPINOR_OP_READ_1_1_4; | ||
1018 | break; | ||
1019 | case SPI_NOR_DUAL: | ||
1020 | nor->read_opcode = SPINOR_OP_READ_1_1_2; | ||
1021 | break; | ||
1022 | case SPI_NOR_FAST: | ||
1023 | nor->read_opcode = SPINOR_OP_READ_FAST; | ||
1024 | break; | ||
1025 | case SPI_NOR_NORMAL: | ||
1026 | nor->read_opcode = SPINOR_OP_READ; | ||
1027 | break; | ||
1028 | default: | ||
1029 | dev_err(dev, "No Read opcode defined\n"); | ||
1030 | return -EINVAL; | ||
1031 | } | ||
1032 | |||
1033 | nor->program_opcode = SPINOR_OP_PP; | ||
1034 | |||
1035 | if (info->addr_width) | ||
1036 | nor->addr_width = info->addr_width; | ||
1037 | else if (mtd->size > 0x1000000) { | ||
1038 | /* enable 4-byte addressing if the device exceeds 16MiB */ | ||
1039 | nor->addr_width = 4; | ||
1040 | if (JEDEC_MFR(info->jedec_id) == CFI_MFR_AMD) { | ||
1041 | /* Dedicated 4-byte command set */ | ||
1042 | switch (nor->flash_read) { | ||
1043 | case SPI_NOR_QUAD: | ||
1044 | nor->read_opcode = SPINOR_OP_READ4_1_1_4; | ||
1045 | break; | ||
1046 | case SPI_NOR_DUAL: | ||
1047 | nor->read_opcode = SPINOR_OP_READ4_1_1_2; | ||
1048 | break; | ||
1049 | case SPI_NOR_FAST: | ||
1050 | nor->read_opcode = SPINOR_OP_READ4_FAST; | ||
1051 | break; | ||
1052 | case SPI_NOR_NORMAL: | ||
1053 | nor->read_opcode = SPINOR_OP_READ4; | ||
1054 | break; | ||
1055 | } | ||
1056 | nor->program_opcode = SPINOR_OP_PP_4B; | ||
1057 | /* No small sector erase for 4-byte command set */ | ||
1058 | nor->erase_opcode = SPINOR_OP_SE_4B; | ||
1059 | mtd->erasesize = info->sector_size; | ||
1060 | } else | ||
1061 | set_4byte(nor, info->jedec_id, 1); | ||
1062 | } else { | ||
1063 | nor->addr_width = 3; | ||
1064 | } | ||
1065 | |||
1066 | nor->read_dummy = spi_nor_read_dummy_cycles(nor); | ||
1067 | |||
1068 | dev_info(dev, "%s (%lld Kbytes)\n", id->name, | ||
1069 | (long long)mtd->size >> 10); | ||
1070 | |||
1071 | dev_dbg(dev, | ||
1072 | "mtd .name = %s, .size = 0x%llx (%lldMiB), " | ||
1073 | ".erasesize = 0x%.8x (%uKiB) .numeraseregions = %d\n", | ||
1074 | mtd->name, (long long)mtd->size, (long long)(mtd->size >> 20), | ||
1075 | mtd->erasesize, mtd->erasesize / 1024, mtd->numeraseregions); | ||
1076 | |||
1077 | if (mtd->numeraseregions) | ||
1078 | for (i = 0; i < mtd->numeraseregions; i++) | ||
1079 | dev_dbg(dev, | ||
1080 | "mtd.eraseregions[%d] = { .offset = 0x%llx, " | ||
1081 | ".erasesize = 0x%.8x (%uKiB), " | ||
1082 | ".numblocks = %d }\n", | ||
1083 | i, (long long)mtd->eraseregions[i].offset, | ||
1084 | mtd->eraseregions[i].erasesize, | ||
1085 | mtd->eraseregions[i].erasesize / 1024, | ||
1086 | mtd->eraseregions[i].numblocks); | ||
1087 | return 0; | ||
1088 | } | ||
1089 | EXPORT_SYMBOL_GPL(spi_nor_scan); | ||
1090 | |||
1091 | const struct spi_device_id *spi_nor_match_id(char *name) | ||
1092 | { | ||
1093 | const struct spi_device_id *id = spi_nor_ids; | ||
1094 | |||
1095 | while (id->name[0]) { | ||
1096 | if (!strcmp(name, id->name)) | ||
1097 | return id; | ||
1098 | id++; | ||
1099 | } | ||
1100 | return NULL; | ||
1101 | } | ||
1102 | EXPORT_SYMBOL_GPL(spi_nor_match_id); | ||
1103 | |||
1104 | MODULE_LICENSE("GPL"); | ||
1105 | MODULE_AUTHOR("Huang Shijie <shijie8@gmail.com>"); | ||
1106 | MODULE_AUTHOR("Mike Lavender"); | ||
1107 | MODULE_DESCRIPTION("framework for SPI NOR"); | ||