blob: e8d6feb9705e22d84a72b38b6c85e40a235680ea [file] [log] [blame]
Peter Pan47e90452018-08-16 17:30:12 +02001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (c) 2016-2017 Micron Technology, Inc.
4 *
5 * Authors:
6 * Peter Pan <peterpandong@micron.com>
7 */
8#ifndef __LINUX_MTD_SPINAND_H
9#define __LINUX_MTD_SPINAND_H
10
11#ifndef __UBOOT__
12#include <linux/mutex.h>
13#include <linux/bitops.h>
14#include <linux/device.h>
15#include <linux/mtd/mtd.h>
16#include <linux/mtd/nand.h>
17#include <linux/spi/spi.h>
18#include <linux/spi/spi-mem.h>
19#else
20#include <common.h>
21#include <spi.h>
22#include <spi-mem.h>
23#include <linux/mtd/nand.h>
24#endif
25
26/**
27 * Standard SPI NAND flash operations
28 */
29
30#define SPINAND_RESET_OP \
31 SPI_MEM_OP(SPI_MEM_OP_CMD(0xff, 1), \
32 SPI_MEM_OP_NO_ADDR, \
33 SPI_MEM_OP_NO_DUMMY, \
34 SPI_MEM_OP_NO_DATA)
35
36#define SPINAND_WR_EN_DIS_OP(enable) \
37 SPI_MEM_OP(SPI_MEM_OP_CMD((enable) ? 0x06 : 0x04, 1), \
38 SPI_MEM_OP_NO_ADDR, \
39 SPI_MEM_OP_NO_DUMMY, \
40 SPI_MEM_OP_NO_DATA)
41
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +010042#define SPINAND_READID_OP(naddr, ndummy, buf, len) \
Peter Pan47e90452018-08-16 17:30:12 +020043 SPI_MEM_OP(SPI_MEM_OP_CMD(0x9f, 1), \
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +010044 SPI_MEM_OP_ADDR(naddr, 0, 1), \
Peter Pan47e90452018-08-16 17:30:12 +020045 SPI_MEM_OP_DUMMY(ndummy, 1), \
46 SPI_MEM_OP_DATA_IN(len, buf, 1))
47
48#define SPINAND_SET_FEATURE_OP(reg, valptr) \
49 SPI_MEM_OP(SPI_MEM_OP_CMD(0x1f, 1), \
50 SPI_MEM_OP_ADDR(1, reg, 1), \
51 SPI_MEM_OP_NO_DUMMY, \
52 SPI_MEM_OP_DATA_OUT(1, valptr, 1))
53
54#define SPINAND_GET_FEATURE_OP(reg, valptr) \
55 SPI_MEM_OP(SPI_MEM_OP_CMD(0x0f, 1), \
56 SPI_MEM_OP_ADDR(1, reg, 1), \
57 SPI_MEM_OP_NO_DUMMY, \
58 SPI_MEM_OP_DATA_IN(1, valptr, 1))
59
60#define SPINAND_BLK_ERASE_OP(addr) \
61 SPI_MEM_OP(SPI_MEM_OP_CMD(0xd8, 1), \
62 SPI_MEM_OP_ADDR(3, addr, 1), \
63 SPI_MEM_OP_NO_DUMMY, \
64 SPI_MEM_OP_NO_DATA)
65
66#define SPINAND_PAGE_READ_OP(addr) \
67 SPI_MEM_OP(SPI_MEM_OP_CMD(0x13, 1), \
68 SPI_MEM_OP_ADDR(3, addr, 1), \
69 SPI_MEM_OP_NO_DUMMY, \
70 SPI_MEM_OP_NO_DATA)
71
72#define SPINAND_PAGE_READ_FROM_CACHE_OP(fast, addr, ndummy, buf, len) \
73 SPI_MEM_OP(SPI_MEM_OP_CMD(fast ? 0x0b : 0x03, 1), \
74 SPI_MEM_OP_ADDR(2, addr, 1), \
75 SPI_MEM_OP_DUMMY(ndummy, 1), \
76 SPI_MEM_OP_DATA_IN(len, buf, 1))
77
Mikhail Kshevetskiy2a1e78b2023-01-10 12:58:40 +010078#define SPINAND_PAGE_READ_FROM_CACHE_OP_3A(fast, addr, ndummy, buf, len) \
79 SPI_MEM_OP(SPI_MEM_OP_CMD(fast ? 0x0b : 0x03, 1), \
80 SPI_MEM_OP_ADDR(3, addr, 1), \
81 SPI_MEM_OP_DUMMY(ndummy, 1), \
82 SPI_MEM_OP_DATA_IN(len, buf, 1))
83
Peter Pan47e90452018-08-16 17:30:12 +020084#define SPINAND_PAGE_READ_FROM_CACHE_X2_OP(addr, ndummy, buf, len) \
85 SPI_MEM_OP(SPI_MEM_OP_CMD(0x3b, 1), \
86 SPI_MEM_OP_ADDR(2, addr, 1), \
87 SPI_MEM_OP_DUMMY(ndummy, 1), \
88 SPI_MEM_OP_DATA_IN(len, buf, 2))
89
Mikhail Kshevetskiy2a1e78b2023-01-10 12:58:40 +010090#define SPINAND_PAGE_READ_FROM_CACHE_X2_OP_3A(addr, ndummy, buf, len) \
91 SPI_MEM_OP(SPI_MEM_OP_CMD(0x3b, 1), \
92 SPI_MEM_OP_ADDR(3, addr, 1), \
93 SPI_MEM_OP_DUMMY(ndummy, 1), \
94 SPI_MEM_OP_DATA_IN(len, buf, 2))
95
Peter Pan47e90452018-08-16 17:30:12 +020096#define SPINAND_PAGE_READ_FROM_CACHE_X4_OP(addr, ndummy, buf, len) \
97 SPI_MEM_OP(SPI_MEM_OP_CMD(0x6b, 1), \
98 SPI_MEM_OP_ADDR(2, addr, 1), \
99 SPI_MEM_OP_DUMMY(ndummy, 1), \
100 SPI_MEM_OP_DATA_IN(len, buf, 4))
101
Mikhail Kshevetskiy2a1e78b2023-01-10 12:58:40 +0100102#define SPINAND_PAGE_READ_FROM_CACHE_X4_OP_3A(addr, ndummy, buf, len) \
103 SPI_MEM_OP(SPI_MEM_OP_CMD(0x6b, 1), \
104 SPI_MEM_OP_ADDR(3, addr, 1), \
105 SPI_MEM_OP_DUMMY(ndummy, 1), \
106 SPI_MEM_OP_DATA_IN(len, buf, 4))
107
Peter Pan47e90452018-08-16 17:30:12 +0200108#define SPINAND_PAGE_READ_FROM_CACHE_DUALIO_OP(addr, ndummy, buf, len) \
109 SPI_MEM_OP(SPI_MEM_OP_CMD(0xbb, 1), \
110 SPI_MEM_OP_ADDR(2, addr, 2), \
111 SPI_MEM_OP_DUMMY(ndummy, 2), \
112 SPI_MEM_OP_DATA_IN(len, buf, 2))
113
Mikhail Kshevetskiy2a1e78b2023-01-10 12:58:40 +0100114#define SPINAND_PAGE_READ_FROM_CACHE_DUALIO_OP_3A(addr, ndummy, buf, len) \
115 SPI_MEM_OP(SPI_MEM_OP_CMD(0xbb, 1), \
116 SPI_MEM_OP_ADDR(3, addr, 2), \
117 SPI_MEM_OP_DUMMY(ndummy, 2), \
118 SPI_MEM_OP_DATA_IN(len, buf, 2))
119
Peter Pan47e90452018-08-16 17:30:12 +0200120#define SPINAND_PAGE_READ_FROM_CACHE_QUADIO_OP(addr, ndummy, buf, len) \
121 SPI_MEM_OP(SPI_MEM_OP_CMD(0xeb, 1), \
122 SPI_MEM_OP_ADDR(2, addr, 4), \
123 SPI_MEM_OP_DUMMY(ndummy, 4), \
124 SPI_MEM_OP_DATA_IN(len, buf, 4))
125
Mikhail Kshevetskiy2a1e78b2023-01-10 12:58:40 +0100126#define SPINAND_PAGE_READ_FROM_CACHE_QUADIO_OP_3A(addr, ndummy, buf, len) \
127 SPI_MEM_OP(SPI_MEM_OP_CMD(0xeb, 1), \
128 SPI_MEM_OP_ADDR(3, addr, 4), \
129 SPI_MEM_OP_DUMMY(ndummy, 4), \
130 SPI_MEM_OP_DATA_IN(len, buf, 4))
131
Peter Pan47e90452018-08-16 17:30:12 +0200132#define SPINAND_PROG_EXEC_OP(addr) \
133 SPI_MEM_OP(SPI_MEM_OP_CMD(0x10, 1), \
134 SPI_MEM_OP_ADDR(3, addr, 1), \
135 SPI_MEM_OP_NO_DUMMY, \
136 SPI_MEM_OP_NO_DATA)
137
138#define SPINAND_PROG_LOAD(reset, addr, buf, len) \
139 SPI_MEM_OP(SPI_MEM_OP_CMD(reset ? 0x02 : 0x84, 1), \
140 SPI_MEM_OP_ADDR(2, addr, 1), \
141 SPI_MEM_OP_NO_DUMMY, \
142 SPI_MEM_OP_DATA_OUT(len, buf, 1))
143
144#define SPINAND_PROG_LOAD_X4(reset, addr, buf, len) \
145 SPI_MEM_OP(SPI_MEM_OP_CMD(reset ? 0x32 : 0x34, 1), \
146 SPI_MEM_OP_ADDR(2, addr, 1), \
147 SPI_MEM_OP_NO_DUMMY, \
148 SPI_MEM_OP_DATA_OUT(len, buf, 4))
149
150/**
151 * Standard SPI NAND flash commands
152 */
153#define SPINAND_CMD_PROG_LOAD_X4 0x32
154#define SPINAND_CMD_PROG_LOAD_RDM_DATA_X4 0x34
155
156/* feature register */
157#define REG_BLOCK_LOCK 0xa0
158#define BL_ALL_UNLOCKED 0x00
159
160/* configuration register */
161#define REG_CFG 0xb0
162#define CFG_OTP_ENABLE BIT(6)
163#define CFG_ECC_ENABLE BIT(4)
164#define CFG_QUAD_ENABLE BIT(0)
165
166/* status register */
167#define REG_STATUS 0xc0
168#define STATUS_BUSY BIT(0)
169#define STATUS_ERASE_FAILED BIT(2)
170#define STATUS_PROG_FAILED BIT(3)
171#define STATUS_ECC_MASK GENMASK(5, 4)
172#define STATUS_ECC_NO_BITFLIPS (0 << 4)
173#define STATUS_ECC_HAS_BITFLIPS (1 << 4)
174#define STATUS_ECC_UNCOR_ERROR (2 << 4)
175
176struct spinand_op;
177struct spinand_device;
178
179#define SPINAND_MAX_ID_LEN 4
180
181/**
182 * struct spinand_id - SPI NAND id structure
183 * @data: buffer containing the id bytes. Currently 4 bytes large, but can
184 * be extended if required
185 * @len: ID length
Peter Pan47e90452018-08-16 17:30:12 +0200186 */
187struct spinand_id {
188 u8 data[SPINAND_MAX_ID_LEN];
189 int len;
190};
191
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100192enum spinand_readid_method {
193 SPINAND_READID_METHOD_OPCODE,
194 SPINAND_READID_METHOD_OPCODE_ADDR,
195 SPINAND_READID_METHOD_OPCODE_DUMMY,
196};
197
198/**
199 * struct spinand_devid - SPI NAND device id structure
200 * @id: device id of current chip
201 * @len: number of bytes in device id
202 * @method: method to read chip id
203 * There are 3 possible variants:
204 * SPINAND_READID_METHOD_OPCODE: chip id is returned immediately
205 * after read_id opcode.
206 * SPINAND_READID_METHOD_OPCODE_ADDR: chip id is returned after
207 * read_id opcode + 1-byte address.
208 * SPINAND_READID_METHOD_OPCODE_DUMMY: chip id is returned after
209 * read_id opcode + 1 dummy byte.
210 */
211struct spinand_devid {
212 const u8 *id;
213 const u8 len;
214 const enum spinand_readid_method method;
215};
216
Peter Pan47e90452018-08-16 17:30:12 +0200217/**
218 * struct manufacurer_ops - SPI NAND manufacturer specific operations
Peter Pan47e90452018-08-16 17:30:12 +0200219 * @init: initialize a SPI NAND device
220 * @cleanup: cleanup a SPI NAND device
221 *
222 * Each SPI NAND manufacturer driver should implement this interface so that
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100223 * NAND chips coming from this vendor can be initialized properly.
Peter Pan47e90452018-08-16 17:30:12 +0200224 */
225struct spinand_manufacturer_ops {
Peter Pan47e90452018-08-16 17:30:12 +0200226 int (*init)(struct spinand_device *spinand);
227 void (*cleanup)(struct spinand_device *spinand);
228};
229
230/**
231 * struct spinand_manufacturer - SPI NAND manufacturer instance
232 * @id: manufacturer ID
233 * @name: manufacturer name
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100234 * @devid_len: number of bytes in device ID
235 * @chips: supported SPI NANDs under current manufacturer
236 * @nchips: number of SPI NANDs available in chips array
Peter Pan47e90452018-08-16 17:30:12 +0200237 * @ops: manufacturer operations
238 */
239struct spinand_manufacturer {
240 u8 id;
241 char *name;
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100242 const struct spinand_info *chips;
243 const size_t nchips;
Peter Pan47e90452018-08-16 17:30:12 +0200244 const struct spinand_manufacturer_ops *ops;
245};
246
Peter Pandf1859e2018-08-16 17:30:13 +0200247/* SPI NAND manufacturers */
Stefan Roesecdb295c2018-08-16 18:05:08 +0200248extern const struct spinand_manufacturer gigadevice_spinand_manufacturer;
Boris Brezillonfa465252018-08-16 17:30:15 +0200249extern const struct spinand_manufacturer macronix_spinand_manufacturer;
Peter Pandf1859e2018-08-16 17:30:13 +0200250extern const struct spinand_manufacturer micron_spinand_manufacturer;
Mikhail Kshevetskiy2a1e78b2023-01-10 12:58:40 +0100251extern const struct spinand_manufacturer paragon_spinand_manufacturer;
Robert Marko24cb4092020-03-03 20:25:40 +0100252extern const struct spinand_manufacturer toshiba_spinand_manufacturer;
Frieder Schrempfea4d7c82018-08-16 17:30:14 +0200253extern const struct spinand_manufacturer winbond_spinand_manufacturer;
Peter Pandf1859e2018-08-16 17:30:13 +0200254
Peter Pan47e90452018-08-16 17:30:12 +0200255/**
256 * struct spinand_op_variants - SPI NAND operation variants
257 * @ops: the list of variants for a given operation
258 * @nops: the number of variants
259 *
260 * Some operations like read-from-cache/write-to-cache have several variants
261 * depending on the number of IO lines you use to transfer data or address
262 * cycles. This structure is a way to describe the different variants supported
263 * by a chip and let the core pick the best one based on the SPI mem controller
264 * capabilities.
265 */
266struct spinand_op_variants {
267 const struct spi_mem_op *ops;
268 unsigned int nops;
269};
270
271#define SPINAND_OP_VARIANTS(name, ...) \
272 const struct spinand_op_variants name = { \
273 .ops = (struct spi_mem_op[]) { __VA_ARGS__ }, \
274 .nops = sizeof((struct spi_mem_op[]){ __VA_ARGS__ }) / \
275 sizeof(struct spi_mem_op), \
276 }
277
278/**
279 * spinand_ecc_info - description of the on-die ECC implemented by a SPI NAND
280 * chip
281 * @get_status: get the ECC status. Should return a positive number encoding
282 * the number of corrected bitflips if correction was possible or
283 * -EBADMSG if there are uncorrectable errors. I can also return
284 * other negative error codes if the error is not caused by
285 * uncorrectable bitflips
286 * @ooblayout: the OOB layout used by the on-die ECC implementation
287 */
288struct spinand_ecc_info {
289 int (*get_status)(struct spinand_device *spinand, u8 status);
290 const struct mtd_ooblayout_ops *ooblayout;
291};
292
293#define SPINAND_HAS_QE_BIT BIT(0)
Shivamurthy Shastri92ecb1a2020-07-07 22:04:11 +0200294#define SPINAND_HAS_CR_FEAT_BIT BIT(1)
Peter Pan47e90452018-08-16 17:30:12 +0200295
296/**
297 * struct spinand_info - Structure used to describe SPI NAND chips
298 * @model: model name
299 * @devid: device ID
300 * @flags: OR-ing of the SPINAND_XXX flags
301 * @memorg: memory organization
302 * @eccreq: ECC requirements
303 * @eccinfo: on-die ECC info
304 * @op_variants: operations variants
305 * @op_variants.read_cache: variants of the read-cache operation
306 * @op_variants.write_cache: variants of the write-cache operation
307 * @op_variants.update_cache: variants of the update-cache operation
308 * @select_target: function used to select a target/die. Required only for
309 * multi-die chips
310 *
311 * Each SPI NAND manufacturer driver should have a spinand_info table
312 * describing all the chips supported by the driver.
313 */
314struct spinand_info {
315 const char *model;
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100316 struct spinand_devid devid;
Peter Pan47e90452018-08-16 17:30:12 +0200317 u32 flags;
318 struct nand_memory_organization memorg;
319 struct nand_ecc_req eccreq;
320 struct spinand_ecc_info eccinfo;
321 struct {
322 const struct spinand_op_variants *read_cache;
323 const struct spinand_op_variants *write_cache;
324 const struct spinand_op_variants *update_cache;
325 } op_variants;
326 int (*select_target)(struct spinand_device *spinand,
327 unsigned int target);
328};
329
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100330#define SPINAND_ID(__method, ...) \
331 { \
332 .id = (const u8[]){ __VA_ARGS__ }, \
333 .len = sizeof((u8[]){ __VA_ARGS__ }), \
334 .method = __method, \
335 }
336
Peter Pan47e90452018-08-16 17:30:12 +0200337#define SPINAND_INFO_OP_VARIANTS(__read, __write, __update) \
338 { \
339 .read_cache = __read, \
340 .write_cache = __write, \
341 .update_cache = __update, \
342 }
343
344#define SPINAND_ECCINFO(__ooblayout, __get_status) \
345 .eccinfo = { \
346 .ooblayout = __ooblayout, \
347 .get_status = __get_status, \
348 }
349
350#define SPINAND_SELECT_TARGET(__func) \
351 .select_target = __func,
352
353#define SPINAND_INFO(__model, __id, __memorg, __eccreq, __op_variants, \
354 __flags, ...) \
355 { \
356 .model = __model, \
357 .devid = __id, \
358 .memorg = __memorg, \
359 .eccreq = __eccreq, \
360 .op_variants = __op_variants, \
361 .flags = __flags, \
362 __VA_ARGS__ \
363 }
364
365/**
366 * struct spinand_device - SPI NAND device instance
367 * @base: NAND device instance
368 * @slave: pointer to the SPI slave object
369 * @lock: lock used to serialize accesses to the NAND
370 * @id: NAND ID as returned by READ_ID
371 * @flags: NAND flags
372 * @op_templates: various SPI mem op templates
373 * @op_templates.read_cache: read cache op template
374 * @op_templates.write_cache: write cache op template
375 * @op_templates.update_cache: update cache op template
376 * @select_target: select a specific target/die. Usually called before sending
377 * a command addressing a page or an eraseblock embedded in
378 * this die. Only required if your chip exposes several dies
379 * @cur_target: currently selected target/die
380 * @eccinfo: on-die ECC information
381 * @cfg_cache: config register cache. One entry per die
382 * @databuf: bounce buffer for data
383 * @oobbuf: bounce buffer for OOB data
384 * @scratchbuf: buffer used for everything but page accesses. This is needed
385 * because the spi-mem interface explicitly requests that buffers
386 * passed in spi_mem_op be DMA-able, so we can't based the bufs on
387 * the stack
388 * @manufacturer: SPI NAND manufacturer information
389 * @priv: manufacturer private data
390 */
391struct spinand_device {
392 struct nand_device base;
393#ifndef __UBOOT__
394 struct spi_mem *spimem;
395 struct mutex lock;
396#else
397 struct spi_slave *slave;
398#endif
399 struct spinand_id id;
400 u32 flags;
401
402 struct {
403 const struct spi_mem_op *read_cache;
404 const struct spi_mem_op *write_cache;
405 const struct spi_mem_op *update_cache;
406 } op_templates;
407
408 int (*select_target)(struct spinand_device *spinand,
409 unsigned int target);
410 unsigned int cur_target;
411
412 struct spinand_ecc_info eccinfo;
413
414 u8 *cfg_cache;
415 u8 *databuf;
416 u8 *oobbuf;
417 u8 *scratchbuf;
418 const struct spinand_manufacturer *manufacturer;
419 void *priv;
420};
421
422/**
423 * mtd_to_spinand() - Get the SPI NAND device attached to an MTD instance
424 * @mtd: MTD instance
425 *
426 * Return: the SPI NAND device attached to @mtd.
427 */
428static inline struct spinand_device *mtd_to_spinand(struct mtd_info *mtd)
429{
430 return container_of(mtd_to_nanddev(mtd), struct spinand_device, base);
431}
432
433/**
434 * spinand_to_mtd() - Get the MTD device embedded in a SPI NAND device
435 * @spinand: SPI NAND device
436 *
437 * Return: the MTD device embedded in @spinand.
438 */
439static inline struct mtd_info *spinand_to_mtd(struct spinand_device *spinand)
440{
441 return nanddev_to_mtd(&spinand->base);
442}
443
444/**
445 * nand_to_spinand() - Get the SPI NAND device embedding an NAND object
446 * @nand: NAND object
447 *
448 * Return: the SPI NAND device embedding @nand.
449 */
450static inline struct spinand_device *nand_to_spinand(struct nand_device *nand)
451{
452 return container_of(nand, struct spinand_device, base);
453}
454
455/**
456 * spinand_to_nand() - Get the NAND device embedded in a SPI NAND object
457 * @spinand: SPI NAND device
458 *
459 * Return: the NAND device embedded in @spinand.
460 */
461static inline struct nand_device *
462spinand_to_nand(struct spinand_device *spinand)
463{
464 return &spinand->base;
465}
466
Simon Glass1b349e32020-12-19 10:40:00 -0700467#ifndef __UBOOT__
Peter Pan47e90452018-08-16 17:30:12 +0200468/**
469 * spinand_set_of_node - Attach a DT node to a SPI NAND device
470 * @spinand: SPI NAND device
471 * @np: DT node
472 *
473 * Attach a DT node to a SPI NAND device.
474 */
475static inline void spinand_set_of_node(struct spinand_device *spinand,
476 const struct device_node *np)
477{
478 nanddev_set_of_node(&spinand->base, np);
479}
Simon Glass1b349e32020-12-19 10:40:00 -0700480#else
481/**
482 * spinand_set_of_node - Attach a DT node to a SPI NAND device
483 * @spinand: SPI NAND device
484 * @node: ofnode
485 *
486 * Attach a DT node to a SPI NAND device.
487 */
488static inline void spinand_set_ofnode(struct spinand_device *spinand,
489 ofnode node)
490{
491 nanddev_set_ofnode(&spinand->base, node);
492}
493#endif /* __UBOOT__ */
Peter Pan47e90452018-08-16 17:30:12 +0200494
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100495int spinand_match_and_init(struct spinand_device *spinand,
Peter Pan47e90452018-08-16 17:30:12 +0200496 const struct spinand_info *table,
Mikhail Kshevetskiy72010312023-01-10 12:58:38 +0100497 unsigned int table_size,
498 enum spinand_readid_method rdid_method);
Peter Pan47e90452018-08-16 17:30:12 +0200499
500int spinand_upd_cfg(struct spinand_device *spinand, u8 mask, u8 val);
501int spinand_select_target(struct spinand_device *spinand, unsigned int target);
502
503#endif /* __LINUX_MTD_SPINAND_H */