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