blob: 099fa166569a56dda7bd3e3ee748a3bae32c0c0c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
David Woodhousea1452a32010-08-08 20:58:20 +01002 * Copyright © 2000-2010 David Woodhouse <dwmw2@infradead.org>
3 * Steven J. Hill <sjhill@realitydiluted.com>
4 * Thomas Gleixner <tglx@linutronix.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020010 * Info:
11 * Contains standard defines and IDs for NAND flash devices
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +020013 * Changelog:
14 * See git changelog.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 */
Boris Brezillond4092d72017-08-04 17:29:10 +020016#ifndef __LINUX_MTD_RAWNAND_H
17#define __LINUX_MTD_RAWNAND_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/wait.h>
20#include <linux/spinlock.h>
21#include <linux/mtd/mtd.h>
Alessandro Rubini30631cb2009-09-20 23:28:14 +020022#include <linux/mtd/flashchip.h>
Alessandro Rubinic62d81b2009-09-20 23:28:04 +020023#include <linux/mtd/bbm.h>
Boris Brezillon1c3ab612018-07-05 12:27:29 +020024#include <linux/of.h>
Miquel Raynal789157e2018-03-19 14:47:28 +010025#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
David Woodhouse5e81e882010-02-26 18:32:56 +000027struct nand_flash_dev;
Brian Norris5844fee2015-01-23 00:22:27 -080028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* Scan and identify a NAND device */
Miquel Raynal256c4fc2018-04-22 18:02:30 +020030int nand_scan_with_ids(struct mtd_info *mtd, int max_chips,
31 struct nand_flash_dev *ids);
32
33static inline int nand_scan(struct mtd_info *mtd, int max_chips)
34{
35 return nand_scan_with_ids(mtd, max_chips, NULL);
36}
37
David Woodhouseb77d95c2006-09-25 21:58:50 +010038/* Internal helper for board drivers which need to override command function */
Sascha Hauer79022592016-09-07 14:21:42 +020039void nand_wait_ready(struct mtd_info *mtd);
David Woodhouseb77d95c2006-09-25 21:58:50 +010040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/* The maximum number of NAND chips in an array */
42#define NAND_MAX_CHIPS 8
43
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +020044/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * Constants for hardware specific CLE/ALE/NCE function
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020046 *
47 * These are bits which can be or'ed to set/clear multiple
48 * bits in one go.
49 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* Select the chip by setting nCE to low */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020051#define NAND_NCE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/* Select the command latch by setting CLE to high */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020053#define NAND_CLE 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/* Select the address latch by setting ALE to high */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020055#define NAND_ALE 0x04
56
57#define NAND_CTRL_CLE (NAND_NCE | NAND_CLE)
58#define NAND_CTRL_ALE (NAND_NCE | NAND_ALE)
59#define NAND_CTRL_CHANGE 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/*
62 * Standard NAND flash commands
63 */
64#define NAND_CMD_READ0 0
65#define NAND_CMD_READ1 1
Thomas Gleixner7bc33122006-06-20 20:05:05 +020066#define NAND_CMD_RNDOUT 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define NAND_CMD_PAGEPROG 0x10
68#define NAND_CMD_READOOB 0x50
69#define NAND_CMD_ERASE1 0x60
70#define NAND_CMD_STATUS 0x70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define NAND_CMD_SEQIN 0x80
Thomas Gleixner7bc33122006-06-20 20:05:05 +020072#define NAND_CMD_RNDIN 0x85
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define NAND_CMD_READID 0x90
74#define NAND_CMD_ERASE2 0xd0
Florian Fainellicaa4b6f2010-08-30 18:32:14 +020075#define NAND_CMD_PARAM 0xec
Huang Shijie7db03ec2012-09-13 14:57:52 +080076#define NAND_CMD_GET_FEATURES 0xee
77#define NAND_CMD_SET_FEATURES 0xef
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define NAND_CMD_RESET 0xff
79
80/* Extended commands for large page devices */
81#define NAND_CMD_READSTART 0x30
Thomas Gleixner7bc33122006-06-20 20:05:05 +020082#define NAND_CMD_RNDOUTSTART 0xE0
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define NAND_CMD_CACHEDPROG 0x15
84
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020085#define NAND_CMD_NONE -1
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/* Status bits */
88#define NAND_STATUS_FAIL 0x01
89#define NAND_STATUS_FAIL_N1 0x02
90#define NAND_STATUS_TRUE_READY 0x20
91#define NAND_STATUS_READY 0x40
92#define NAND_STATUS_WP 0x80
93
Boris Brezillon104e4422017-03-16 09:35:58 +010094#define NAND_DATA_IFACE_CHECK_ONLY -1
95
Thomas Gleixner61ecfa82005-11-07 11:15:31 +000096/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * Constants for ECC_MODES
98 */
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +020099typedef enum {
100 NAND_ECC_NONE,
101 NAND_ECC_SOFT,
102 NAND_ECC_HW,
103 NAND_ECC_HW_SYNDROME,
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -0700104 NAND_ECC_HW_OOB_FIRST,
Thomas Petazzoni785818f2017-04-29 11:06:43 +0200105 NAND_ECC_ON_DIE,
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200106} nand_ecc_modes_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100108enum nand_ecc_algo {
109 NAND_ECC_UNKNOWN,
110 NAND_ECC_HAMMING,
111 NAND_ECC_BCH,
Stefan Agnerf308d732018-06-24 23:27:22 +0200112 NAND_ECC_RS,
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100113};
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * Constants for Hardware ECC
David A. Marlin068e3c02005-01-24 03:07:46 +0000117 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/* Reset Hardware ECC for read */
119#define NAND_ECC_READ 0
120/* Reset Hardware ECC for write */
121#define NAND_ECC_WRITE 1
Brian Norris7854d3f2011-06-23 14:12:08 -0700122/* Enable Hardware ECC before syndrome is read back from flash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#define NAND_ECC_READSYN 2
124
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100125/*
126 * Enable generic NAND 'page erased' check. This check is only done when
127 * ecc.correct() returns -EBADMSG.
128 * Set this flag if your implementation does not fix bitflips in erased
129 * pages and you want to rely on the default implementation.
130 */
131#define NAND_ECC_GENERIC_ERASED_CHECK BIT(0)
Boris Brezillonba78ee02016-06-08 17:04:22 +0200132#define NAND_ECC_MAXIMIZE BIT(1)
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100133
David A. Marlin068e3c02005-01-24 03:07:46 +0000134/* Bit mask for flags passed to do_nand_read_ecc */
135#define NAND_GET_DEVICE 0x80
136
137
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200138/*
139 * Option constants for bizarre disfunctionality and real
140 * features.
141 */
Brian Norris7854d3f2011-06-23 14:12:08 -0700142/* Buswidth is 16 bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#define NAND_BUSWIDTH_16 0x00000002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/* Chip has cache program function */
145#define NAND_CACHEPRG 0x00000008
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200146/*
Brian Norris5bc7c332013-03-13 09:51:31 -0700147 * Chip requires ready check on read (for auto-incremented sequential read).
148 * True only for small page devices; large page devices do not support
149 * autoincrement.
150 */
151#define NAND_NEED_READRDY 0x00000100
152
Thomas Gleixner29072b92006-09-28 15:38:36 +0200153/* Chip does not allow subpage writes */
154#define NAND_NO_SUBPAGE_WRITE 0x00000200
155
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200156/* Device is one of 'new' xD cards that expose fake nand command set */
157#define NAND_BROKEN_XD 0x00000400
158
159/* Device behaves just like nand, but is readonly */
160#define NAND_ROM 0x00000800
161
Jeff Westfahla5ff4f12012-08-13 16:35:30 -0500162/* Device supports subpage reads */
163#define NAND_SUBPAGE_READ 0x00001000
164
Boris BREZILLONc03d9962015-12-02 12:01:05 +0100165/*
166 * Some MLC NANDs need data scrambling to limit bitflips caused by repeated
167 * patterns.
168 */
169#define NAND_NEED_SCRAMBLING 0x00002000
170
Masahiro Yamada14157f82017-09-13 11:05:50 +0900171/* Device needs 3rd row address cycle */
172#define NAND_ROW_ADDR_3 0x00004000
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/* Options valid for Samsung large page devices */
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +0200175#define NAND_SAMSUNG_LP_OPTIONS NAND_CACHEPRG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177/* Macros to identify the above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG))
Jeff Westfahla5ff4f12012-08-13 16:35:30 -0500179#define NAND_HAS_SUBPAGE_READ(chip) ((chip->options & NAND_SUBPAGE_READ))
Marc Gonzalez3371d662016-11-15 10:56:20 +0100180#define NAND_HAS_SUBPAGE_WRITE(chip) !((chip)->options & NAND_NO_SUBPAGE_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* Non chip related options */
Thomas Gleixner0040bf32005-02-09 12:20:00 +0000183/* This option skips the bbt scan during initialization. */
Brian Norrisb4dc53e2011-05-31 16:31:26 -0700184#define NAND_SKIP_BBTSCAN 0x00010000
Ben Dooksb1c6e6d2009-11-02 18:12:33 +0000185/* Chip may not exist, so silence any errors in scan */
Brian Norrisb4dc53e2011-05-31 16:31:26 -0700186#define NAND_SCAN_SILENT_NODEV 0x00040000
Matthieu CASTET64b37b22012-11-06 11:51:44 +0100187/*
188 * Autodetect nand buswidth with readid/onfi.
189 * This suppose the driver will configure the hardware in 8 bits mode
190 * when calling nand_scan_ident, and update its configuration
191 * before calling nand_scan_tail.
192 */
193#define NAND_BUSWIDTH_AUTO 0x00080000
Scott Wood5f867db2015-06-26 19:43:58 -0500194/*
195 * This option could be defined by controller drivers to protect against
196 * kmap'ed, vmalloc'ed highmem buffers being passed from upper layers
197 */
198#define NAND_USE_BOUNCE_BUFFER 0x00100000
Ben Dooksb1c6e6d2009-11-02 18:12:33 +0000199
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200200/*
201 * In case your controller is implementing ->cmd_ctrl() and is relying on the
202 * default ->cmdfunc() implementation, you may want to let the core handle the
203 * tCCS delay which is required when a column change (RNDIN or RNDOUT) is
204 * requested.
205 * If your controller already takes care of this delay, you don't need to set
206 * this flag.
207 */
208#define NAND_WAIT_TCCS 0x00200000
209
Stefan Agnerf922bd72018-06-24 23:27:23 +0200210/*
211 * Whether the NAND chip is a boot medium. Drivers might use this information
212 * to select ECC algorithms supported by the boot ROM or similar restrictions.
213 */
214#define NAND_IS_BOOT_MEDIUM 0x00400000
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/* Options set by nand scan */
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200217/* Nand scan has allocated controller struct */
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200218#define NAND_CONTROLLER_ALLOC 0x80000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Thomas Gleixner29072b92006-09-28 15:38:36 +0200220/* Cell info constants */
221#define NAND_CI_CHIPNR_MSK 0x03
222#define NAND_CI_CELLTYPE_MSK 0x0C
Huang Shijie7db906b2013-09-25 14:58:11 +0800223#define NAND_CI_CELLTYPE_SHIFT 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/* Keep gcc happy */
226struct nand_chip;
227
Chris Packham872b71f2018-06-25 10:44:45 +1200228/* ONFI version bits */
229#define ONFI_VERSION_1_0 BIT(1)
230#define ONFI_VERSION_2_0 BIT(2)
231#define ONFI_VERSION_2_1 BIT(3)
232#define ONFI_VERSION_2_2 BIT(4)
233#define ONFI_VERSION_2_3 BIT(5)
234#define ONFI_VERSION_3_0 BIT(6)
235#define ONFI_VERSION_3_1 BIT(7)
236#define ONFI_VERSION_3_2 BIT(8)
237#define ONFI_VERSION_4_0 BIT(9)
238
Huang Shijie5b40db62013-05-17 11:17:28 +0800239/* ONFI features */
240#define ONFI_FEATURE_16_BIT_BUS (1 << 0)
241#define ONFI_FEATURE_EXT_PARAM_PAGE (1 << 7)
242
Huang Shijie3e701922012-09-13 14:57:53 +0800243/* ONFI timing mode, used in both asynchronous and synchronous mode */
244#define ONFI_TIMING_MODE_0 (1 << 0)
245#define ONFI_TIMING_MODE_1 (1 << 1)
246#define ONFI_TIMING_MODE_2 (1 << 2)
247#define ONFI_TIMING_MODE_3 (1 << 3)
248#define ONFI_TIMING_MODE_4 (1 << 4)
249#define ONFI_TIMING_MODE_5 (1 << 5)
250#define ONFI_TIMING_MODE_UNKNOWN (1 << 6)
251
Miquel Raynal789157e2018-03-19 14:47:28 +0100252/* ONFI feature number/address */
253#define ONFI_FEATURE_NUMBER 256
Huang Shijie7db03ec2012-09-13 14:57:52 +0800254#define ONFI_FEATURE_ADDR_TIMING_MODE 0x1
255
Brian Norris8429bb32013-12-03 15:51:09 -0800256/* Vendor-specific feature address (Micron) */
257#define ONFI_FEATURE_ADDR_READ_RETRY 0x89
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200258#define ONFI_FEATURE_ON_DIE_ECC 0x90
259#define ONFI_FEATURE_ON_DIE_ECC_EN BIT(3)
Brian Norris8429bb32013-12-03 15:51:09 -0800260
Huang Shijie7db03ec2012-09-13 14:57:52 +0800261/* ONFI subfeature parameters length */
262#define ONFI_SUBFEATURE_PARAM_LEN 4
263
David Mosbergerd914c932013-05-29 15:30:13 +0300264/* ONFI optional commands SET/GET FEATURES supported? */
265#define ONFI_OPT_CMD_SET_GET_FEATURES (1 << 2)
266
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200267struct nand_onfi_params {
268 /* rev info and features block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200269 /* 'O' 'N' 'F' 'I' */
270 u8 sig[4];
271 __le16 revision;
272 __le16 features;
273 __le16 opt_cmd;
Huang Shijie5138a982013-05-17 11:17:27 +0800274 u8 reserved0[2];
275 __le16 ext_param_page_length; /* since ONFI 2.1 */
276 u8 num_of_param_pages; /* since ONFI 2.1 */
277 u8 reserved1[17];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200278
279 /* manufacturer information block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200280 char manufacturer[12];
281 char model[20];
282 u8 jedec_id;
283 __le16 date_code;
284 u8 reserved2[13];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200285
286 /* memory organization block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200287 __le32 byte_per_page;
288 __le16 spare_bytes_per_page;
289 __le32 data_bytes_per_ppage;
290 __le16 spare_bytes_per_ppage;
291 __le32 pages_per_block;
292 __le32 blocks_per_lun;
293 u8 lun_count;
294 u8 addr_cycles;
295 u8 bits_per_cell;
296 __le16 bb_per_lun;
297 __le16 block_endurance;
298 u8 guaranteed_good_blocks;
299 __le16 guaranteed_block_endurance;
300 u8 programs_per_page;
301 u8 ppage_attr;
302 u8 ecc_bits;
303 u8 interleaved_bits;
304 u8 interleaved_ops;
305 u8 reserved3[13];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200306
307 /* electrical parameter block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200308 u8 io_pin_capacitance_max;
309 __le16 async_timing_mode;
310 __le16 program_cache_timing_mode;
311 __le16 t_prog;
312 __le16 t_bers;
313 __le16 t_r;
314 __le16 t_ccs;
315 __le16 src_sync_timing_mode;
Boris BREZILLONde64aa92015-11-23 11:23:07 +0100316 u8 src_ssync_features;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200317 __le16 clk_pin_capacitance_typ;
318 __le16 io_pin_capacitance_typ;
319 __le16 input_pin_capacitance_typ;
320 u8 input_pin_capacitance_max;
Brian Norrisa55e85c2013-12-02 11:12:22 -0800321 u8 driver_strength_support;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200322 __le16 t_int_r;
Brian Norris74e98be2015-12-01 11:08:32 -0800323 __le16 t_adl;
Boris BREZILLONde64aa92015-11-23 11:23:07 +0100324 u8 reserved4[8];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200325
326 /* vendor */
Brian Norris6f0065b2013-12-03 12:02:20 -0800327 __le16 vendor_revision;
328 u8 vendor[88];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200329
330 __le16 crc;
Brian Norrise2e6b7b2013-12-05 12:06:54 -0800331} __packed;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200332
333#define ONFI_CRC_BASE 0x4F4E
334
Huang Shijie5138a982013-05-17 11:17:27 +0800335/* Extended ECC information Block Definition (since ONFI 2.1) */
336struct onfi_ext_ecc_info {
337 u8 ecc_bits;
338 u8 codeword_size;
339 __le16 bb_per_lun;
340 __le16 block_endurance;
341 u8 reserved[2];
342} __packed;
343
344#define ONFI_SECTION_TYPE_0 0 /* Unused section. */
345#define ONFI_SECTION_TYPE_1 1 /* for additional sections. */
346#define ONFI_SECTION_TYPE_2 2 /* for ECC information. */
347struct onfi_ext_section {
348 u8 type;
349 u8 length;
350} __packed;
351
352#define ONFI_EXT_SECTION_MAX 8
353
354/* Extended Parameter Page Definition (since ONFI 2.1) */
355struct onfi_ext_param_page {
356 __le16 crc;
357 u8 sig[4]; /* 'E' 'P' 'P' 'S' */
358 u8 reserved0[10];
359 struct onfi_ext_section sections[ONFI_EXT_SECTION_MAX];
360
361 /*
362 * The actual size of the Extended Parameter Page is in
363 * @ext_param_page_length of nand_onfi_params{}.
364 * The following are the variable length sections.
365 * So we do not add any fields below. Please see the ONFI spec.
366 */
367} __packed;
368
Huang Shijieafbfff02014-02-21 13:39:37 +0800369struct jedec_ecc_info {
370 u8 ecc_bits;
371 u8 codeword_size;
372 __le16 bb_per_lun;
373 __le16 block_endurance;
374 u8 reserved[2];
375} __packed;
376
Huang Shijie7852f892014-02-21 13:39:39 +0800377/* JEDEC features */
378#define JEDEC_FEATURE_16_BIT_BUS (1 << 0)
379
Huang Shijieafbfff02014-02-21 13:39:37 +0800380struct nand_jedec_params {
381 /* rev info and features block */
382 /* 'J' 'E' 'S' 'D' */
383 u8 sig[4];
384 __le16 revision;
385 __le16 features;
386 u8 opt_cmd[3];
387 __le16 sec_cmd;
388 u8 num_of_param_pages;
389 u8 reserved0[18];
390
391 /* manufacturer information block */
392 char manufacturer[12];
393 char model[20];
394 u8 jedec_id[6];
395 u8 reserved1[10];
396
397 /* memory organization block */
398 __le32 byte_per_page;
399 __le16 spare_bytes_per_page;
400 u8 reserved2[6];
401 __le32 pages_per_block;
402 __le32 blocks_per_lun;
403 u8 lun_count;
404 u8 addr_cycles;
405 u8 bits_per_cell;
406 u8 programs_per_page;
407 u8 multi_plane_addr;
408 u8 multi_plane_op_attr;
409 u8 reserved3[38];
410
411 /* electrical parameter block */
412 __le16 async_sdr_speed_grade;
413 __le16 toggle_ddr_speed_grade;
414 __le16 sync_ddr_speed_grade;
415 u8 async_sdr_features;
416 u8 toggle_ddr_features;
417 u8 sync_ddr_features;
418 __le16 t_prog;
419 __le16 t_bers;
420 __le16 t_r;
421 __le16 t_r_multi_plane;
422 __le16 t_ccs;
423 __le16 io_pin_capacitance_typ;
424 __le16 input_pin_capacitance_typ;
425 __le16 clk_pin_capacitance_typ;
426 u8 driver_strength_support;
Brian Norris74e98be2015-12-01 11:08:32 -0800427 __le16 t_adl;
Huang Shijieafbfff02014-02-21 13:39:37 +0800428 u8 reserved4[36];
429
430 /* ECC and endurance block */
431 u8 guaranteed_good_blocks;
432 __le16 guaranteed_block_endurance;
433 struct jedec_ecc_info ecc_info[4];
434 u8 reserved5[29];
435
436 /* reserved */
437 u8 reserved6[148];
438
439 /* vendor */
440 __le16 vendor_rev_num;
441 u8 reserved7[88];
442
443 /* CRC for Parameter Page */
444 __le16 crc;
445} __packed;
446
Miquel Raynalf4531b22018-03-19 14:47:26 +0100447/**
Miquel Raynala97421c2018-03-19 14:47:27 +0100448 * struct onfi_params - ONFI specific parameters that will be reused
449 * @version: ONFI version (BCD encoded), 0 if ONFI is not supported
450 * @tPROG: Page program time
451 * @tBERS: Block erase time
452 * @tR: Page read time
453 * @tCCS: Change column setup time
454 * @async_timing_mode: Supported asynchronous timing mode
455 * @vendor_revision: Vendor specific revision number
456 * @vendor: Vendor specific data
457 */
458struct onfi_params {
459 int version;
460 u16 tPROG;
461 u16 tBERS;
462 u16 tR;
463 u16 tCCS;
464 u16 async_timing_mode;
465 u16 vendor_revision;
466 u8 vendor[88];
467};
468
469/**
Miquel Raynalf4531b22018-03-19 14:47:26 +0100470 * struct nand_parameters - NAND generic parameters from the parameter page
471 * @model: Model name
472 * @supports_set_get_features: The NAND chip supports setting/getting features
Miquel Raynal789157e2018-03-19 14:47:28 +0100473 * @set_feature_list: Bitmap of features that can be set
474 * @get_feature_list: Bitmap of features that can be get
Miquel Raynala97421c2018-03-19 14:47:27 +0100475 * @onfi: ONFI specific parameters
Miquel Raynalf4531b22018-03-19 14:47:26 +0100476 */
477struct nand_parameters {
Miquel Raynala97421c2018-03-19 14:47:27 +0100478 /* Generic parameters */
Miquel Raynal2023f1fa2018-07-25 15:31:51 +0200479 const char *model;
Miquel Raynalf4531b22018-03-19 14:47:26 +0100480 bool supports_set_get_features;
Miquel Raynal789157e2018-03-19 14:47:28 +0100481 DECLARE_BITMAP(set_feature_list, ONFI_FEATURE_NUMBER);
482 DECLARE_BITMAP(get_feature_list, ONFI_FEATURE_NUMBER);
Miquel Raynala97421c2018-03-19 14:47:27 +0100483
484 /* ONFI parameters */
485 struct onfi_params onfi;
Miquel Raynalf4531b22018-03-19 14:47:26 +0100486};
487
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +0200488/* The maximum expected count of bytes in the NAND ID sequence */
489#define NAND_MAX_ID_LEN 8
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491/**
Boris Brezillon7f501f02016-05-24 19:20:05 +0200492 * struct nand_id - NAND id structure
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +0200493 * @data: buffer containing the id bytes.
Boris Brezillon7f501f02016-05-24 19:20:05 +0200494 * @len: ID length.
495 */
496struct nand_id {
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +0200497 u8 data[NAND_MAX_ID_LEN];
Boris Brezillon7f501f02016-05-24 19:20:05 +0200498 int len;
499};
500
501/**
Miquel Raynal05b54c72018-07-19 01:05:46 +0200502 * struct nand_controller_ops - Controller operations
503 *
504 * @attach_chip: this method is called after the NAND detection phase after
505 * flash ID and MTD fields such as erase size, page size and OOB
506 * size have been set up. ECC requirements are available if
507 * provided by the NAND chip or device tree. Typically used to
508 * choose the appropriate ECC configuration and allocate
509 * associated resources.
510 * This hook is optional.
511 * @detach_chip: free all resources allocated/claimed in
512 * nand_controller_ops->attach_chip().
513 * This hook is optional.
514 */
515struct nand_controller_ops {
516 int (*attach_chip)(struct nand_chip *chip);
517 void (*detach_chip)(struct nand_chip *chip);
518};
519
520/**
Miquel Raynal7da45132018-07-17 09:08:02 +0200521 * struct nand_controller - Structure used to describe a NAND controller
522 *
Thomas Gleixner61ecfa82005-11-07 11:15:31 +0000523 * @lock: protection lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * @active: the mtd device which holds the controller currently
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200525 * @wq: wait queue to sleep on if a NAND operation is in
526 * progress used instead of the per chip wait queue
527 * when a hw controller is available.
Miquel Raynal05b54c72018-07-19 01:05:46 +0200528 * @ops: NAND controller operations.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 */
Miquel Raynal7da45132018-07-17 09:08:02 +0200530struct nand_controller {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200531 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 struct nand_chip *active;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100533 wait_queue_head_t wq;
Miquel Raynal05b54c72018-07-19 01:05:46 +0200534 const struct nand_controller_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535};
536
Miquel Raynal7da45132018-07-17 09:08:02 +0200537static inline void nand_controller_init(struct nand_controller *nfc)
Marc Gonzalezd45bc582016-07-27 11:23:52 +0200538{
539 nfc->active = NULL;
540 spin_lock_init(&nfc->lock);
541 init_waitqueue_head(&nfc->wq);
542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/**
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +0900545 * struct nand_ecc_step_info - ECC step information of ECC engine
546 * @stepsize: data bytes per ECC step
547 * @strengths: array of supported strengths
548 * @nstrengths: number of supported strengths
549 */
550struct nand_ecc_step_info {
551 int stepsize;
552 const int *strengths;
553 int nstrengths;
554};
555
556/**
557 * struct nand_ecc_caps - capability of ECC engine
558 * @stepinfos: array of ECC step information
559 * @nstepinfos: number of ECC step information
560 * @calc_ecc_bytes: driver's hook to calculate ECC bytes per step
561 */
562struct nand_ecc_caps {
563 const struct nand_ecc_step_info *stepinfos;
564 int nstepinfos;
565 int (*calc_ecc_bytes)(int step_size, int strength);
566};
567
Masahiro Yamadaa03c6012017-06-07 20:52:11 +0900568/* a shorthand to generate struct nand_ecc_caps with only one ECC stepsize */
569#define NAND_ECC_CAPS_SINGLE(__name, __calc, __step, ...) \
570static const int __name##_strengths[] = { __VA_ARGS__ }; \
571static const struct nand_ecc_step_info __name##_stepinfo = { \
572 .stepsize = __step, \
573 .strengths = __name##_strengths, \
574 .nstrengths = ARRAY_SIZE(__name##_strengths), \
575}; \
576static const struct nand_ecc_caps __name = { \
577 .stepinfos = &__name##_stepinfo, \
578 .nstepinfos = 1, \
579 .calc_ecc_bytes = __calc, \
580}
581
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +0900582/**
Brian Norris7854d3f2011-06-23 14:12:08 -0700583 * struct nand_ecc_ctrl - Control structure for ECC
584 * @mode: ECC mode
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100585 * @algo: ECC algorithm
Brian Norris7854d3f2011-06-23 14:12:08 -0700586 * @steps: number of ECC steps per page
587 * @size: data bytes per ECC step
588 * @bytes: ECC bytes per step
Mike Dunn1d0b95b02012-03-11 14:21:10 -0700589 * @strength: max number of correctible bits per ECC step
Brian Norris7854d3f2011-06-23 14:12:08 -0700590 * @total: total number of ECC bytes per page
591 * @prepad: padding information for syndrome based ECC generators
592 * @postpad: padding information for syndrome based ECC generators
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100593 * @options: ECC specific options (see NAND_ECC_XXX flags defined above)
Brian Norris7854d3f2011-06-23 14:12:08 -0700594 * @priv: pointer to private ECC control data
Masahiro Yamadac0313b92017-12-05 17:47:16 +0900595 * @calc_buf: buffer for calculated ECC, size is oobsize.
596 * @code_buf: buffer for ECC read from flash, size is oobsize.
Brian Norris7854d3f2011-06-23 14:12:08 -0700597 * @hwctl: function to control hardware ECC generator. Must only
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200598 * be provided if an hardware ECC is available
Brian Norris7854d3f2011-06-23 14:12:08 -0700599 * @calculate: function for ECC calculation or readback from ECC hardware
Boris BREZILLON6e941192015-12-30 20:32:03 +0100600 * @correct: function for ECC correction, matching to ECC generator (sw/hw).
601 * Should return a positive number representing the number of
602 * corrected bitflips, -EBADMSG if the number of bitflips exceed
603 * ECC strength, or any other error code if the error is not
604 * directly related to correction.
605 * If -EBADMSG is returned the input buffers should be left
606 * untouched.
Boris BREZILLON62d956d2014-10-20 10:46:14 +0200607 * @read_page_raw: function to read a raw page without ECC. This function
608 * should hide the specific layout used by the ECC
609 * controller and always return contiguous in-band and
610 * out-of-band data even if they're not stored
611 * contiguously on the NAND chip (e.g.
612 * NAND_ECC_HW_SYNDROME interleaves in-band and
613 * out-of-band data).
614 * @write_page_raw: function to write a raw page without ECC. This function
615 * should hide the specific layout used by the ECC
616 * controller and consider the passed data as contiguous
617 * in-band and out-of-band data. ECC controller is
618 * responsible for doing the appropriate transformations
619 * to adapt to its specific layout (e.g.
620 * NAND_ECC_HW_SYNDROME interleaves in-band and
621 * out-of-band data).
Brian Norris7854d3f2011-06-23 14:12:08 -0700622 * @read_page: function to read a page according to the ECC generator
Mike Dunn5ca7f412012-09-11 08:59:03 -0700623 * requirements; returns maximum number of bitflips corrected in
Masahiro Yamada07604682017-03-30 15:45:47 +0900624 * any single ECC step, -EIO hw error
Mike Dunn5ca7f412012-09-11 08:59:03 -0700625 * @read_subpage: function to read parts of the page covered by ECC;
626 * returns same as read_page()
Gupta, Pekon837a6ba2013-03-15 17:55:53 +0530627 * @write_subpage: function to write parts of the page covered by ECC.
Brian Norris7854d3f2011-06-23 14:12:08 -0700628 * @write_page: function to write a page according to the ECC generator
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200629 * requirements.
Brian Norris9ce244b2011-08-30 18:45:37 -0700630 * @write_oob_raw: function to write chip OOB data without ECC
Brian Norrisc46f6482011-08-30 18:45:38 -0700631 * @read_oob_raw: function to read chip OOB data without ECC
Randy Dunlap844d3b42006-06-28 21:48:27 -0700632 * @read_oob: function to read chip OOB data
633 * @write_oob: function to write chip OOB data
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200634 */
635struct nand_ecc_ctrl {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200636 nand_ecc_modes_t mode;
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100637 enum nand_ecc_algo algo;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200638 int steps;
639 int size;
640 int bytes;
641 int total;
Mike Dunn1d0b95b02012-03-11 14:21:10 -0700642 int strength;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200643 int prepad;
644 int postpad;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100645 unsigned int options;
Ivan Djelic193bd402011-03-11 11:05:33 +0100646 void *priv;
Masahiro Yamadac0313b92017-12-05 17:47:16 +0900647 u8 *calc_buf;
648 u8 *code_buf;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200649 void (*hwctl)(struct mtd_info *mtd, int mode);
650 int (*calculate)(struct mtd_info *mtd, const uint8_t *dat,
651 uint8_t *ecc_code);
652 int (*correct)(struct mtd_info *mtd, uint8_t *dat, uint8_t *read_ecc,
653 uint8_t *calc_ecc);
654 int (*read_page_raw)(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -0700655 uint8_t *buf, int oob_required, int page);
Josh Wufdbad98d2012-06-25 18:07:45 +0800656 int (*write_page_raw)(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200657 const uint8_t *buf, int oob_required, int page);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200658 int (*read_page)(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -0700659 uint8_t *buf, int oob_required, int page);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200660 int (*read_subpage)(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +0800661 uint32_t offs, uint32_t len, uint8_t *buf, int page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +0530662 int (*write_subpage)(struct mtd_info *mtd, struct nand_chip *chip,
663 uint32_t offset, uint32_t data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200664 const uint8_t *data_buf, int oob_required, int page);
Josh Wufdbad98d2012-06-25 18:07:45 +0800665 int (*write_page)(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200666 const uint8_t *buf, int oob_required, int page);
Brian Norris9ce244b2011-08-30 18:45:37 -0700667 int (*write_oob_raw)(struct mtd_info *mtd, struct nand_chip *chip,
668 int page);
Brian Norrisc46f6482011-08-30 18:45:38 -0700669 int (*read_oob_raw)(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +0300670 int page);
671 int (*read_oob)(struct mtd_info *mtd, struct nand_chip *chip, int page);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200672 int (*write_oob)(struct mtd_info *mtd, struct nand_chip *chip,
673 int page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200674};
675
676/**
Sascha Hauereee64b72016-09-15 10:32:46 +0200677 * struct nand_sdr_timings - SDR NAND chip timings
678 *
679 * This struct defines the timing requirements of a SDR NAND chip.
680 * These information can be found in every NAND datasheets and the timings
681 * meaning are described in the ONFI specifications:
682 * www.onfi.org/~/media/ONFI/specs/onfi_3_1_spec.pdf (chapter 4.15 Timing
683 * Parameters)
684 *
685 * All these timings are expressed in picoseconds.
686 *
Boris Brezillon204e7ec2016-10-01 10:24:02 +0200687 * @tBERS_max: Block erase time
688 * @tCCS_min: Change column setup time
689 * @tPROG_max: Page program time
690 * @tR_max: Page read time
Sascha Hauereee64b72016-09-15 10:32:46 +0200691 * @tALH_min: ALE hold time
692 * @tADL_min: ALE to data loading time
693 * @tALS_min: ALE setup time
694 * @tAR_min: ALE to RE# delay
695 * @tCEA_max: CE# access time
Randy Dunlap61babe92016-11-21 18:32:08 -0800696 * @tCEH_min: CE# high hold time
Sascha Hauereee64b72016-09-15 10:32:46 +0200697 * @tCH_min: CE# hold time
698 * @tCHZ_max: CE# high to output hi-Z
699 * @tCLH_min: CLE hold time
700 * @tCLR_min: CLE to RE# delay
701 * @tCLS_min: CLE setup time
702 * @tCOH_min: CE# high to output hold
703 * @tCS_min: CE# setup time
704 * @tDH_min: Data hold time
705 * @tDS_min: Data setup time
706 * @tFEAT_max: Busy time for Set Features and Get Features
707 * @tIR_min: Output hi-Z to RE# low
708 * @tITC_max: Interface and Timing Mode Change time
709 * @tRC_min: RE# cycle time
710 * @tREA_max: RE# access time
711 * @tREH_min: RE# high hold time
712 * @tRHOH_min: RE# high to output hold
713 * @tRHW_min: RE# high to WE# low
714 * @tRHZ_max: RE# high to output hi-Z
715 * @tRLOH_min: RE# low to output hold
716 * @tRP_min: RE# pulse width
717 * @tRR_min: Ready to RE# low (data only)
718 * @tRST_max: Device reset time, measured from the falling edge of R/B# to the
719 * rising edge of R/B#.
720 * @tWB_max: WE# high to SR[6] low
721 * @tWC_min: WE# cycle time
722 * @tWH_min: WE# high hold time
723 * @tWHR_min: WE# high to RE# low
724 * @tWP_min: WE# pulse width
725 * @tWW_min: WP# transition to WE# low
726 */
727struct nand_sdr_timings {
Boris Brezillon6d292312017-07-31 10:31:27 +0200728 u64 tBERS_max;
Boris Brezillon204e7ec2016-10-01 10:24:02 +0200729 u32 tCCS_min;
Boris Brezillon6d292312017-07-31 10:31:27 +0200730 u64 tPROG_max;
731 u64 tR_max;
Sascha Hauereee64b72016-09-15 10:32:46 +0200732 u32 tALH_min;
733 u32 tADL_min;
734 u32 tALS_min;
735 u32 tAR_min;
736 u32 tCEA_max;
737 u32 tCEH_min;
738 u32 tCH_min;
739 u32 tCHZ_max;
740 u32 tCLH_min;
741 u32 tCLR_min;
742 u32 tCLS_min;
743 u32 tCOH_min;
744 u32 tCS_min;
745 u32 tDH_min;
746 u32 tDS_min;
747 u32 tFEAT_max;
748 u32 tIR_min;
749 u32 tITC_max;
750 u32 tRC_min;
751 u32 tREA_max;
752 u32 tREH_min;
753 u32 tRHOH_min;
754 u32 tRHW_min;
755 u32 tRHZ_max;
756 u32 tRLOH_min;
757 u32 tRP_min;
758 u32 tRR_min;
759 u64 tRST_max;
760 u32 tWB_max;
761 u32 tWC_min;
762 u32 tWH_min;
763 u32 tWHR_min;
764 u32 tWP_min;
765 u32 tWW_min;
766};
767
768/**
769 * enum nand_data_interface_type - NAND interface timing type
770 * @NAND_SDR_IFACE: Single Data Rate interface
771 */
772enum nand_data_interface_type {
773 NAND_SDR_IFACE,
774};
775
776/**
777 * struct nand_data_interface - NAND interface timing
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -0300778 * @type: type of the timing
779 * @timings: The timing, type according to @type
780 * @timings.sdr: Use it when @type is %NAND_SDR_IFACE.
Sascha Hauereee64b72016-09-15 10:32:46 +0200781 */
782struct nand_data_interface {
783 enum nand_data_interface_type type;
784 union {
785 struct nand_sdr_timings sdr;
786 } timings;
787};
788
789/**
790 * nand_get_sdr_timings - get SDR timing from data interface
791 * @conf: The data interface
792 */
793static inline const struct nand_sdr_timings *
794nand_get_sdr_timings(const struct nand_data_interface *conf)
795{
796 if (conf->type != NAND_SDR_IFACE)
797 return ERR_PTR(-EINVAL);
798
799 return &conf->timings.sdr;
800}
801
802/**
Boris Brezillonabbe26d2016-06-08 09:32:55 +0200803 * struct nand_manufacturer_ops - NAND Manufacturer operations
804 * @detect: detect the NAND memory organization and capabilities
805 * @init: initialize all vendor specific fields (like the ->read_retry()
806 * implementation) if any.
807 * @cleanup: the ->init() function may have allocated resources, ->cleanup()
808 * is here to let vendor specific code release those resources.
Chris Packham00ce4e02018-06-25 10:44:44 +1200809 * @fixup_onfi_param_page: apply vendor specific fixups to the ONFI parameter
810 * page. This is called after the checksum is verified.
Boris Brezillonabbe26d2016-06-08 09:32:55 +0200811 */
812struct nand_manufacturer_ops {
813 void (*detect)(struct nand_chip *chip);
814 int (*init)(struct nand_chip *chip);
815 void (*cleanup)(struct nand_chip *chip);
Chris Packham00ce4e02018-06-25 10:44:44 +1200816 void (*fixup_onfi_param_page)(struct nand_chip *chip,
817 struct nand_onfi_params *p);
Boris Brezillonabbe26d2016-06-08 09:32:55 +0200818};
819
820/**
Miquel Raynal8878b122017-11-09 14:16:45 +0100821 * struct nand_op_cmd_instr - Definition of a command instruction
822 * @opcode: the command to issue in one cycle
823 */
824struct nand_op_cmd_instr {
825 u8 opcode;
826};
827
828/**
829 * struct nand_op_addr_instr - Definition of an address instruction
830 * @naddrs: length of the @addrs array
831 * @addrs: array containing the address cycles to issue
832 */
833struct nand_op_addr_instr {
834 unsigned int naddrs;
835 const u8 *addrs;
836};
837
838/**
839 * struct nand_op_data_instr - Definition of a data instruction
840 * @len: number of data bytes to move
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -0300841 * @buf: buffer to fill
842 * @buf.in: buffer to fill when reading from the NAND chip
843 * @buf.out: buffer to read from when writing to the NAND chip
Miquel Raynal8878b122017-11-09 14:16:45 +0100844 * @force_8bit: force 8-bit access
845 *
846 * Please note that "in" and "out" are inverted from the ONFI specification
847 * and are from the controller perspective, so a "in" is a read from the NAND
848 * chip while a "out" is a write to the NAND chip.
849 */
850struct nand_op_data_instr {
851 unsigned int len;
852 union {
853 void *in;
854 const void *out;
855 } buf;
856 bool force_8bit;
857};
858
859/**
860 * struct nand_op_waitrdy_instr - Definition of a wait ready instruction
861 * @timeout_ms: maximum delay while waiting for the ready/busy pin in ms
862 */
863struct nand_op_waitrdy_instr {
864 unsigned int timeout_ms;
865};
866
867/**
868 * enum nand_op_instr_type - Definition of all instruction types
869 * @NAND_OP_CMD_INSTR: command instruction
870 * @NAND_OP_ADDR_INSTR: address instruction
871 * @NAND_OP_DATA_IN_INSTR: data in instruction
872 * @NAND_OP_DATA_OUT_INSTR: data out instruction
873 * @NAND_OP_WAITRDY_INSTR: wait ready instruction
874 */
875enum nand_op_instr_type {
876 NAND_OP_CMD_INSTR,
877 NAND_OP_ADDR_INSTR,
878 NAND_OP_DATA_IN_INSTR,
879 NAND_OP_DATA_OUT_INSTR,
880 NAND_OP_WAITRDY_INSTR,
881};
882
883/**
884 * struct nand_op_instr - Instruction object
885 * @type: the instruction type
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -0300886 * @ctx: extra data associated to the instruction. You'll have to use the
887 * appropriate element depending on @type
888 * @ctx.cmd: use it if @type is %NAND_OP_CMD_INSTR
889 * @ctx.addr: use it if @type is %NAND_OP_ADDR_INSTR
890 * @ctx.data: use it if @type is %NAND_OP_DATA_IN_INSTR
891 * or %NAND_OP_DATA_OUT_INSTR
892 * @ctx.waitrdy: use it if @type is %NAND_OP_WAITRDY_INSTR
Miquel Raynal8878b122017-11-09 14:16:45 +0100893 * @delay_ns: delay the controller should apply after the instruction has been
894 * issued on the bus. Most modern controllers have internal timings
895 * control logic, and in this case, the controller driver can ignore
896 * this field.
897 */
898struct nand_op_instr {
899 enum nand_op_instr_type type;
900 union {
901 struct nand_op_cmd_instr cmd;
902 struct nand_op_addr_instr addr;
903 struct nand_op_data_instr data;
904 struct nand_op_waitrdy_instr waitrdy;
905 } ctx;
906 unsigned int delay_ns;
907};
908
909/*
910 * Special handling must be done for the WAITRDY timeout parameter as it usually
911 * is either tPROG (after a prog), tR (before a read), tRST (during a reset) or
912 * tBERS (during an erase) which all of them are u64 values that cannot be
913 * divided by usual kernel macros and must be handled with the special
914 * DIV_ROUND_UP_ULL() macro.
Geert Uytterhoeven9f825e72018-05-14 12:49:37 +0200915 *
916 * Cast to type of dividend is needed here to guarantee that the result won't
917 * be an unsigned long long when the dividend is an unsigned long (or smaller),
918 * which is what the compiler does when it sees ternary operator with 2
919 * different return types (picks the largest type to make sure there's no
920 * loss).
Miquel Raynal8878b122017-11-09 14:16:45 +0100921 */
Geert Uytterhoeven9f825e72018-05-14 12:49:37 +0200922#define __DIVIDE(dividend, divisor) ({ \
923 (__typeof__(dividend))(sizeof(dividend) <= sizeof(unsigned long) ? \
924 DIV_ROUND_UP(dividend, divisor) : \
925 DIV_ROUND_UP_ULL(dividend, divisor)); \
926 })
Miquel Raynal8878b122017-11-09 14:16:45 +0100927#define PSEC_TO_NSEC(x) __DIVIDE(x, 1000)
928#define PSEC_TO_MSEC(x) __DIVIDE(x, 1000000000)
929
930#define NAND_OP_CMD(id, ns) \
931 { \
932 .type = NAND_OP_CMD_INSTR, \
933 .ctx.cmd.opcode = id, \
934 .delay_ns = ns, \
935 }
936
937#define NAND_OP_ADDR(ncycles, cycles, ns) \
938 { \
939 .type = NAND_OP_ADDR_INSTR, \
940 .ctx.addr = { \
941 .naddrs = ncycles, \
942 .addrs = cycles, \
943 }, \
944 .delay_ns = ns, \
945 }
946
947#define NAND_OP_DATA_IN(l, b, ns) \
948 { \
949 .type = NAND_OP_DATA_IN_INSTR, \
950 .ctx.data = { \
951 .len = l, \
952 .buf.in = b, \
953 .force_8bit = false, \
954 }, \
955 .delay_ns = ns, \
956 }
957
958#define NAND_OP_DATA_OUT(l, b, ns) \
959 { \
960 .type = NAND_OP_DATA_OUT_INSTR, \
961 .ctx.data = { \
962 .len = l, \
963 .buf.out = b, \
964 .force_8bit = false, \
965 }, \
966 .delay_ns = ns, \
967 }
968
969#define NAND_OP_8BIT_DATA_IN(l, b, ns) \
970 { \
971 .type = NAND_OP_DATA_IN_INSTR, \
972 .ctx.data = { \
973 .len = l, \
974 .buf.in = b, \
975 .force_8bit = true, \
976 }, \
977 .delay_ns = ns, \
978 }
979
980#define NAND_OP_8BIT_DATA_OUT(l, b, ns) \
981 { \
982 .type = NAND_OP_DATA_OUT_INSTR, \
983 .ctx.data = { \
984 .len = l, \
985 .buf.out = b, \
986 .force_8bit = true, \
987 }, \
988 .delay_ns = ns, \
989 }
990
991#define NAND_OP_WAIT_RDY(tout_ms, ns) \
992 { \
993 .type = NAND_OP_WAITRDY_INSTR, \
994 .ctx.waitrdy.timeout_ms = tout_ms, \
995 .delay_ns = ns, \
996 }
997
998/**
999 * struct nand_subop - a sub operation
1000 * @instrs: array of instructions
1001 * @ninstrs: length of the @instrs array
1002 * @first_instr_start_off: offset to start from for the first instruction
1003 * of the sub-operation
1004 * @last_instr_end_off: offset to end at (excluded) for the last instruction
1005 * of the sub-operation
1006 *
1007 * Both @first_instr_start_off and @last_instr_end_off only apply to data or
1008 * address instructions.
1009 *
1010 * When an operation cannot be handled as is by the NAND controller, it will
1011 * be split by the parser into sub-operations which will be passed to the
1012 * controller driver.
1013 */
1014struct nand_subop {
1015 const struct nand_op_instr *instrs;
1016 unsigned int ninstrs;
1017 unsigned int first_instr_start_off;
1018 unsigned int last_instr_end_off;
1019};
1020
Miquel Raynal760c4352018-07-19 00:09:12 +02001021unsigned int nand_subop_get_addr_start_off(const struct nand_subop *subop,
1022 unsigned int op_id);
1023unsigned int nand_subop_get_num_addr_cyc(const struct nand_subop *subop,
1024 unsigned int op_id);
1025unsigned int nand_subop_get_data_start_off(const struct nand_subop *subop,
1026 unsigned int op_id);
1027unsigned int nand_subop_get_data_len(const struct nand_subop *subop,
1028 unsigned int op_id);
Miquel Raynal8878b122017-11-09 14:16:45 +01001029
1030/**
1031 * struct nand_op_parser_addr_constraints - Constraints for address instructions
1032 * @maxcycles: maximum number of address cycles the controller can issue in a
1033 * single step
1034 */
1035struct nand_op_parser_addr_constraints {
1036 unsigned int maxcycles;
1037};
1038
1039/**
1040 * struct nand_op_parser_data_constraints - Constraints for data instructions
1041 * @maxlen: maximum data length that the controller can handle in a single step
1042 */
1043struct nand_op_parser_data_constraints {
1044 unsigned int maxlen;
1045};
1046
1047/**
1048 * struct nand_op_parser_pattern_elem - One element of a pattern
1049 * @type: the instructuction type
1050 * @optional: whether this element of the pattern is optional or mandatory
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -03001051 * @ctx: address or data constraint
1052 * @ctx.addr: address constraint (number of cycles)
1053 * @ctx.data: data constraint (data length)
Miquel Raynal8878b122017-11-09 14:16:45 +01001054 */
1055struct nand_op_parser_pattern_elem {
1056 enum nand_op_instr_type type;
1057 bool optional;
1058 union {
1059 struct nand_op_parser_addr_constraints addr;
1060 struct nand_op_parser_data_constraints data;
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001061 } ctx;
Miquel Raynal8878b122017-11-09 14:16:45 +01001062};
1063
1064#define NAND_OP_PARSER_PAT_CMD_ELEM(_opt) \
1065 { \
1066 .type = NAND_OP_CMD_INSTR, \
1067 .optional = _opt, \
1068 }
1069
1070#define NAND_OP_PARSER_PAT_ADDR_ELEM(_opt, _maxcycles) \
1071 { \
1072 .type = NAND_OP_ADDR_INSTR, \
1073 .optional = _opt, \
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001074 .ctx.addr.maxcycles = _maxcycles, \
Miquel Raynal8878b122017-11-09 14:16:45 +01001075 }
1076
1077#define NAND_OP_PARSER_PAT_DATA_IN_ELEM(_opt, _maxlen) \
1078 { \
1079 .type = NAND_OP_DATA_IN_INSTR, \
1080 .optional = _opt, \
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001081 .ctx.data.maxlen = _maxlen, \
Miquel Raynal8878b122017-11-09 14:16:45 +01001082 }
1083
1084#define NAND_OP_PARSER_PAT_DATA_OUT_ELEM(_opt, _maxlen) \
1085 { \
1086 .type = NAND_OP_DATA_OUT_INSTR, \
1087 .optional = _opt, \
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001088 .ctx.data.maxlen = _maxlen, \
Miquel Raynal8878b122017-11-09 14:16:45 +01001089 }
1090
1091#define NAND_OP_PARSER_PAT_WAITRDY_ELEM(_opt) \
1092 { \
1093 .type = NAND_OP_WAITRDY_INSTR, \
1094 .optional = _opt, \
1095 }
1096
1097/**
1098 * struct nand_op_parser_pattern - NAND sub-operation pattern descriptor
1099 * @elems: array of pattern elements
1100 * @nelems: number of pattern elements in @elems array
1101 * @exec: the function that will issue a sub-operation
1102 *
1103 * A pattern is a list of elements, each element reprensenting one instruction
1104 * with its constraints. The pattern itself is used by the core to match NAND
1105 * chip operation with NAND controller operations.
1106 * Once a match between a NAND controller operation pattern and a NAND chip
1107 * operation (or a sub-set of a NAND operation) is found, the pattern ->exec()
1108 * hook is called so that the controller driver can issue the operation on the
1109 * bus.
1110 *
1111 * Controller drivers should declare as many patterns as they support and pass
1112 * this list of patterns (created with the help of the following macro) to
1113 * the nand_op_parser_exec_op() helper.
1114 */
1115struct nand_op_parser_pattern {
1116 const struct nand_op_parser_pattern_elem *elems;
1117 unsigned int nelems;
1118 int (*exec)(struct nand_chip *chip, const struct nand_subop *subop);
1119};
1120
1121#define NAND_OP_PARSER_PATTERN(_exec, ...) \
1122 { \
1123 .exec = _exec, \
1124 .elems = (struct nand_op_parser_pattern_elem[]) { __VA_ARGS__ }, \
1125 .nelems = sizeof((struct nand_op_parser_pattern_elem[]) { __VA_ARGS__ }) / \
1126 sizeof(struct nand_op_parser_pattern_elem), \
1127 }
1128
1129/**
1130 * struct nand_op_parser - NAND controller operation parser descriptor
1131 * @patterns: array of supported patterns
1132 * @npatterns: length of the @patterns array
1133 *
1134 * The parser descriptor is just an array of supported patterns which will be
1135 * iterated by nand_op_parser_exec_op() everytime it tries to execute an
1136 * NAND operation (or tries to determine if a specific operation is supported).
1137 *
1138 * It is worth mentioning that patterns will be tested in their declaration
1139 * order, and the first match will be taken, so it's important to order patterns
1140 * appropriately so that simple/inefficient patterns are placed at the end of
1141 * the list. Usually, this is where you put single instruction patterns.
1142 */
1143struct nand_op_parser {
1144 const struct nand_op_parser_pattern *patterns;
1145 unsigned int npatterns;
1146};
1147
1148#define NAND_OP_PARSER(...) \
1149 { \
1150 .patterns = (struct nand_op_parser_pattern[]) { __VA_ARGS__ }, \
1151 .npatterns = sizeof((struct nand_op_parser_pattern[]) { __VA_ARGS__ }) / \
1152 sizeof(struct nand_op_parser_pattern), \
1153 }
1154
1155/**
1156 * struct nand_operation - NAND operation descriptor
1157 * @instrs: array of instructions to execute
1158 * @ninstrs: length of the @instrs array
1159 *
1160 * The actual operation structure that will be passed to chip->exec_op().
1161 */
1162struct nand_operation {
1163 const struct nand_op_instr *instrs;
1164 unsigned int ninstrs;
1165};
1166
1167#define NAND_OPERATION(_instrs) \
1168 { \
1169 .instrs = _instrs, \
1170 .ninstrs = ARRAY_SIZE(_instrs), \
1171 }
1172
1173int nand_op_parser_exec_op(struct nand_chip *chip,
1174 const struct nand_op_parser *parser,
1175 const struct nand_operation *op, bool check_only);
1176
1177/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 * struct nand_chip - NAND Private Flash Chip Data
Boris BREZILLONed4f85c2015-12-01 12:03:06 +01001179 * @mtd: MTD device registered to the MTD framework
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001180 * @IO_ADDR_R: [BOARDSPECIFIC] address to read the 8 I/O lines of the
1181 * flash device
1182 * @IO_ADDR_W: [BOARDSPECIFIC] address to write the 8 I/O lines of the
1183 * flash device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 * @read_byte: [REPLACEABLE] read one byte from the chip
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 * @read_word: [REPLACEABLE] read one word from the chip
Uwe Kleine-König05f78352013-12-05 22:22:04 +01001186 * @write_byte: [REPLACEABLE] write a single byte to the chip on the
1187 * low 8 I/O lines
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 * @write_buf: [REPLACEABLE] write data from the buffer to the chip
1189 * @read_buf: [REPLACEABLE] read data from the chip into the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * @select_chip: [REPLACEABLE] select chip nr
Brian Norrisce157512013-04-11 01:34:59 -07001191 * @block_bad: [REPLACEABLE] check if a block is bad, using OOB markers
1192 * @block_markbad: [REPLACEABLE] mark a block bad
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001193 * @cmd_ctrl: [BOARDSPECIFIC] hardwarespecific function for controlling
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02001194 * ALE/CLE/nCE. Also used to write command and address
Brian Norris7854d3f2011-06-23 14:12:08 -07001195 * @dev_ready: [BOARDSPECIFIC] hardwarespecific function for accessing
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001196 * device ready/busy line. If set to NULL no access to
1197 * ready/busy is available and the ready/busy information
1198 * is read from the chip status register.
1199 * @cmdfunc: [REPLACEABLE] hardwarespecific function for writing
1200 * commands to the chip.
1201 * @waitfunc: [REPLACEABLE] hardwarespecific function for wait on
1202 * ready.
Miquel Raynal8878b122017-11-09 14:16:45 +01001203 * @exec_op: controller specific method to execute NAND operations.
1204 * This method replaces ->cmdfunc(),
1205 * ->{read,write}_{buf,byte,word}(), ->dev_ready() and
1206 * ->waifunc().
Brian Norrisba84fb52014-01-03 15:13:33 -08001207 * @setup_read_retry: [FLASHSPECIFIC] flash (vendor) specific function for
1208 * setting the read-retry mode. Mostly needed for MLC NAND.
Brian Norris7854d3f2011-06-23 14:12:08 -07001209 * @ecc: [BOARDSPECIFIC] ECC control structure
Masahiro Yamada477544c2017-03-30 17:15:05 +09001210 * @buf_align: minimum buffer alignment required by a platform
Miquel Raynal7da45132018-07-17 09:08:02 +02001211 * @dummy_controller: dummy controller implementation for drivers that can
1212 * only control a single chip
Brian Norris49c50b92014-05-06 16:02:19 -07001213 * @erase: [REPLACEABLE] erase function
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001214 * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transferring
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001215 * data from array to read regs (tR).
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02001216 * @state: [INTERN] the current state of the NAND device
Brian Norrise9195ed2011-08-30 18:45:43 -07001217 * @oob_poi: "poison value buffer," used for laying out OOB data
1218 * before writing
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001219 * @page_shift: [INTERN] number of address bits in a page (column
1220 * address bits).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 * @phys_erase_shift: [INTERN] number of address bits in a physical eraseblock
1222 * @bbt_erase_shift: [INTERN] number of address bits in a bbt entry
1223 * @chip_shift: [INTERN] number of address bits in one chip
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001224 * @options: [BOARDSPECIFIC] various chip options. They can partly
1225 * be set to inform nand_scan about special functionality.
1226 * See the defines for further explanation.
Brian Norris5fb15492011-05-31 16:31:21 -07001227 * @bbt_options: [INTERN] bad block specific options. All options used
1228 * here must come from bbm.h. By default, these options
1229 * will be copied to the appropriate nand_bbt_descr's.
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001230 * @badblockpos: [INTERN] position of the bad block marker in the oob
1231 * area.
Brian Norris661a0832012-01-13 18:11:50 -08001232 * @badblockbits: [INTERN] minimum number of set bits in a good block's
1233 * bad block marker position; i.e., BBM == 11110111b is
1234 * not bad when badblockbits == 7
Huang Shijie7db906b2013-09-25 14:58:11 +08001235 * @bits_per_cell: [INTERN] number of bits per cell. i.e., 1 means SLC.
Huang Shijie4cfeca22013-05-17 11:17:25 +08001236 * @ecc_strength_ds: [INTERN] ECC correctability from the datasheet.
1237 * Minimum amount of bit errors per @ecc_step_ds guaranteed
1238 * to be correctable. If unknown, set to zero.
1239 * @ecc_step_ds: [INTERN] ECC step required by the @ecc_strength_ds,
Mauro Carvalho Chehabb6f6c292017-05-13 07:40:36 -03001240 * also from the datasheet. It is the recommended ECC step
Huang Shijie4cfeca22013-05-17 11:17:25 +08001241 * size, if known; if unknown, set to zero.
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001242 * @onfi_timing_mode_default: [INTERN] default ONFI timing mode. This field is
Boris Brezillond8e725d2016-09-15 10:32:50 +02001243 * set to the actually used ONFI mode if the chip is
1244 * ONFI compliant or deduced from the datasheet if
1245 * the NAND chip is not ONFI compliant.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 * @numchips: [INTERN] number of physical chips
1247 * @chipsize: [INTERN] the size of one chip for multichip arrays
1248 * @pagemask: [INTERN] page number mask = number of (pages / chip) - 1
Masahiro Yamadac0313b92017-12-05 17:47:16 +09001249 * @data_buf: [INTERN] buffer for data, size is (page size + oobsize).
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001250 * @pagebuf: [INTERN] holds the pagenumber which is currently in
1251 * data_buf.
Mike Dunnedbc45402012-04-25 12:06:11 -07001252 * @pagebuf_bitflips: [INTERN] holds the bitflip count for the page which is
1253 * currently in data_buf.
Thomas Gleixner29072b92006-09-28 15:38:36 +02001254 * @subpagesize: [INTERN] holds the subpagesize
Boris Brezillon7f501f02016-05-24 19:20:05 +02001255 * @id: [INTERN] holds NAND ID
Miquel Raynalf4531b22018-03-19 14:47:26 +01001256 * @parameters: [INTERN] holds generic parameters under an easily
1257 * readable form.
Zach Brownceb374e2017-01-10 13:30:19 -06001258 * @max_bb_per_die: [INTERN] the max number of bad blocks each die of a
1259 * this nand device will encounter their life times.
1260 * @blocks_per_die: [INTERN] The number of PEBs in a die
Randy Dunlap61babe92016-11-21 18:32:08 -08001261 * @data_interface: [INTERN] NAND interface timing information
Brian Norrisba84fb52014-01-03 15:13:33 -08001262 * @read_retries: [INTERN] the number of read retry modes supported
Miquel Raynalb9587582018-03-19 14:47:19 +01001263 * @set_features: [REPLACEABLE] set the NAND chip features
1264 * @get_features: [REPLACEABLE] get the NAND chip features
Boris Brezillon104e4422017-03-16 09:35:58 +01001265 * @setup_data_interface: [OPTIONAL] setup the data interface and timing. If
1266 * chipnr is set to %NAND_DATA_IFACE_CHECK_ONLY this
1267 * means the configuration should not be applied but
1268 * only checked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 * @bbt: [INTERN] bad block table pointer
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001270 * @bbt_td: [REPLACEABLE] bad block table descriptor for flash
1271 * lookup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * @bbt_md: [REPLACEABLE] bad block table mirror descriptor
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001273 * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for initial
1274 * bad block scan.
1275 * @controller: [REPLACEABLE] a pointer to a hardware controller
Brian Norris7854d3f2011-06-23 14:12:08 -07001276 * structure which is shared among multiple independent
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001277 * devices.
Brian Norris32c8db82011-08-23 17:17:35 -07001278 * @priv: [OPTIONAL] pointer to private chip data
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001279 * @manufacturer: [INTERN] Contains manufacturer information
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -03001280 * @manufacturer.desc: [INTERN] Contains manufacturer's description
1281 * @manufacturer.priv: [INTERN] Contains manufacturer private information
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 */
Thomas Gleixner61ecfa82005-11-07 11:15:31 +00001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284struct nand_chip {
Boris BREZILLONed4f85c2015-12-01 12:03:06 +01001285 struct mtd_info mtd;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001286 void __iomem *IO_ADDR_R;
1287 void __iomem *IO_ADDR_W;
Thomas Gleixner61ecfa82005-11-07 11:15:31 +00001288
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001289 uint8_t (*read_byte)(struct mtd_info *mtd);
1290 u16 (*read_word)(struct mtd_info *mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01001291 void (*write_byte)(struct mtd_info *mtd, uint8_t byte);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001292 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len);
1293 void (*read_buf)(struct mtd_info *mtd, uint8_t *buf, int len);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001294 void (*select_chip)(struct mtd_info *mtd, int chip);
Archit Taneja9f3e0422016-02-03 14:29:49 +05301295 int (*block_bad)(struct mtd_info *mtd, loff_t ofs);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001296 int (*block_markbad)(struct mtd_info *mtd, loff_t ofs);
1297 void (*cmd_ctrl)(struct mtd_info *mtd, int dat, unsigned int ctrl);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001298 int (*dev_ready)(struct mtd_info *mtd);
1299 void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column,
1300 int page_addr);
1301 int(*waitfunc)(struct mtd_info *mtd, struct nand_chip *this);
Miquel Raynal8878b122017-11-09 14:16:45 +01001302 int (*exec_op)(struct nand_chip *chip,
1303 const struct nand_operation *op,
1304 bool check_only);
Brian Norris49c50b92014-05-06 16:02:19 -07001305 int (*erase)(struct mtd_info *mtd, int page);
Miquel Raynalb9587582018-03-19 14:47:19 +01001306 int (*set_features)(struct mtd_info *mtd, struct nand_chip *chip,
1307 int feature_addr, uint8_t *subfeature_para);
1308 int (*get_features)(struct mtd_info *mtd, struct nand_chip *chip,
1309 int feature_addr, uint8_t *subfeature_para);
Brian Norrisba84fb52014-01-03 15:13:33 -08001310 int (*setup_read_retry)(struct mtd_info *mtd, int retry_mode);
Boris Brezillon104e4422017-03-16 09:35:58 +01001311 int (*setup_data_interface)(struct mtd_info *mtd, int chipnr,
1312 const struct nand_data_interface *conf);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001313
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001314 int chip_delay;
1315 unsigned int options;
Brian Norris5fb15492011-05-31 16:31:21 -07001316 unsigned int bbt_options;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001317
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001318 int page_shift;
1319 int phys_erase_shift;
1320 int bbt_erase_shift;
1321 int chip_shift;
1322 int numchips;
1323 uint64_t chipsize;
1324 int pagemask;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09001325 u8 *data_buf;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001326 int pagebuf;
Mike Dunnedbc45402012-04-25 12:06:11 -07001327 unsigned int pagebuf_bitflips;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001328 int subpagesize;
Huang Shijie7db906b2013-09-25 14:58:11 +08001329 uint8_t bits_per_cell;
Huang Shijie4cfeca22013-05-17 11:17:25 +08001330 uint16_t ecc_strength_ds;
1331 uint16_t ecc_step_ds;
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001332 int onfi_timing_mode_default;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001333 int badblockpos;
1334 int badblockbits;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001335
Boris Brezillon7f501f02016-05-24 19:20:05 +02001336 struct nand_id id;
Miquel Raynalf4531b22018-03-19 14:47:26 +01001337 struct nand_parameters parameters;
Zach Brownceb374e2017-01-10 13:30:19 -06001338 u16 max_bb_per_die;
1339 u32 blocks_per_die;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02001340
Miquel Raynal17fa8042017-11-30 18:01:31 +01001341 struct nand_data_interface data_interface;
Boris Brezillond8e725d2016-09-15 10:32:50 +02001342
Brian Norrisba84fb52014-01-03 15:13:33 -08001343 int read_retries;
1344
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001345 flstate_t state;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001346
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001347 uint8_t *oob_poi;
Miquel Raynal7da45132018-07-17 09:08:02 +02001348 struct nand_controller *controller;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001349
1350 struct nand_ecc_ctrl ecc;
Masahiro Yamada477544c2017-03-30 17:15:05 +09001351 unsigned long buf_align;
Miquel Raynal7da45132018-07-17 09:08:02 +02001352 struct nand_controller dummy_controller;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001353
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001354 uint8_t *bbt;
1355 struct nand_bbt_descr *bbt_td;
1356 struct nand_bbt_descr *bbt_md;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001357
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001358 struct nand_bbt_descr *badblock_pattern;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001359
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001360 void *priv;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001361
1362 struct {
1363 const struct nand_manufacturer *desc;
1364 void *priv;
1365 } manufacturer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366};
1367
Miquel Raynal8878b122017-11-09 14:16:45 +01001368static inline int nand_exec_op(struct nand_chip *chip,
1369 const struct nand_operation *op)
1370{
1371 if (!chip->exec_op)
1372 return -ENOTSUPP;
1373
1374 return chip->exec_op(chip, op, false);
1375}
1376
Boris Brezillon41b207a2016-02-03 19:06:15 +01001377extern const struct mtd_ooblayout_ops nand_ooblayout_sp_ops;
1378extern const struct mtd_ooblayout_ops nand_ooblayout_lp_ops;
1379
Brian Norris28b8b26b2015-10-30 20:33:20 -07001380static inline void nand_set_flash_node(struct nand_chip *chip,
1381 struct device_node *np)
1382{
Boris BREZILLON29574ed2015-12-10 09:00:38 +01001383 mtd_set_of_node(&chip->mtd, np);
Brian Norris28b8b26b2015-10-30 20:33:20 -07001384}
1385
1386static inline struct device_node *nand_get_flash_node(struct nand_chip *chip)
1387{
Boris BREZILLON29574ed2015-12-10 09:00:38 +01001388 return mtd_get_of_node(&chip->mtd);
Brian Norris28b8b26b2015-10-30 20:33:20 -07001389}
1390
Boris BREZILLON9eba47d2015-11-16 14:37:35 +01001391static inline struct nand_chip *mtd_to_nand(struct mtd_info *mtd)
1392{
Boris BREZILLON2d3b77b2015-12-10 09:00:33 +01001393 return container_of(mtd, struct nand_chip, mtd);
Boris BREZILLON9eba47d2015-11-16 14:37:35 +01001394}
1395
Boris BREZILLONffd014f2015-12-01 12:03:07 +01001396static inline struct mtd_info *nand_to_mtd(struct nand_chip *chip)
1397{
1398 return &chip->mtd;
1399}
1400
Boris BREZILLONd39ddbd2015-12-10 09:00:39 +01001401static inline void *nand_get_controller_data(struct nand_chip *chip)
1402{
1403 return chip->priv;
1404}
1405
1406static inline void nand_set_controller_data(struct nand_chip *chip, void *priv)
1407{
1408 chip->priv = priv;
1409}
1410
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001411static inline void nand_set_manufacturer_data(struct nand_chip *chip,
1412 void *priv)
1413{
1414 chip->manufacturer.priv = priv;
1415}
1416
1417static inline void *nand_get_manufacturer_data(struct nand_chip *chip)
1418{
1419 return chip->manufacturer.priv;
1420}
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422/*
1423 * NAND Flash Manufacturer ID Codes
1424 */
1425#define NAND_MFR_TOSHIBA 0x98
Rafał Miłecki1c7fe6b2016-06-09 20:10:11 +02001426#define NAND_MFR_ESMT 0xc8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427#define NAND_MFR_SAMSUNG 0xec
1428#define NAND_MFR_FUJITSU 0x04
1429#define NAND_MFR_NATIONAL 0x8f
1430#define NAND_MFR_RENESAS 0x07
1431#define NAND_MFR_STMICRO 0x20
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02001432#define NAND_MFR_HYNIX 0xad
sshahrom@micron.com8c60e542007-03-21 18:48:02 -07001433#define NAND_MFR_MICRON 0x2c
Steven J. Hill30eb0db2007-07-18 23:29:46 -05001434#define NAND_MFR_AMD 0x01
Brian Norrisc1257b42011-11-02 13:34:42 -07001435#define NAND_MFR_MACRONIX 0xc2
Brian Norrisb1ccfab2012-05-22 07:30:47 -07001436#define NAND_MFR_EON 0x92
Huang Shijie3f97c6f2013-12-26 15:37:45 +08001437#define NAND_MFR_SANDISK 0x45
Huang Shijie4968a412014-01-03 16:50:39 +08001438#define NAND_MFR_INTEL 0x89
Brian Norris641519c2014-11-04 11:32:45 -08001439#define NAND_MFR_ATO 0x9b
Andrey Jr. Melnikova4077ce2016-12-08 19:57:08 +03001440#define NAND_MFR_WINBOND 0xef
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Artem Bityutskiy53552d22013-03-14 09:57:23 +02001442
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001443/*
1444 * A helper for defining older NAND chips where the second ID byte fully
1445 * defined the chip, including the geometry (chip size, eraseblock size, page
Artem Bityutskiy5bfa9b72013-03-19 10:29:26 +02001446 * size). All these chips have 512 bytes NAND page size.
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001447 */
Artem Bityutskiy5bfa9b72013-03-19 10:29:26 +02001448#define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \
1449 { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \
1450 .chipsize = (chipsz), .erasesize = (erasesz), .options = (opts) }
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001451
1452/*
1453 * A helper for defining newer chips which report their page size and
1454 * eraseblock size via the extended ID bytes.
1455 *
1456 * The real difference between LEGACY_ID_NAND and EXTENDED_ID_NAND is that with
1457 * EXTENDED_ID_NAND, manufacturers overloaded the same device ID so that the
1458 * device ID now only represented a particular total chip size (and voltage,
1459 * buswidth), and the page size, eraseblock size, and OOB size could vary while
1460 * using the same device ID.
1461 */
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001462#define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \
1463 { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001464 .options = (opts) }
1465
Huang Shijie2dc0bdd2013-05-17 11:17:31 +08001466#define NAND_ECC_INFO(_strength, _step) \
1467 { .strength_ds = (_strength), .step_ds = (_step) }
1468#define NAND_ECC_STRENGTH(type) ((type)->ecc.strength_ds)
1469#define NAND_ECC_STEP(type) ((type)->ecc.step_ds)
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471/**
1472 * struct nand_flash_dev - NAND Flash Device ID Structure
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001473 * @name: a human-readable name of the NAND chip
1474 * @dev_id: the device ID (the second byte of the full chip ID array)
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001475 * @mfr_id: manufecturer ID part of the full chip ID array (refers the same
1476 * memory address as @id[0])
1477 * @dev_id: device ID part of the full chip ID array (refers the same memory
1478 * address as @id[1])
1479 * @id: full device ID array
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001480 * @pagesize: size of the NAND page in bytes; if 0, then the real page size (as
1481 * well as the eraseblock size) is determined from the extended NAND
1482 * chip ID array)
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001483 * @chipsize: total chip size in MiB
Artem Bityutskiyecb42fe2013-03-13 13:45:00 +02001484 * @erasesize: eraseblock size in bytes (determined from the extended ID if 0)
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001485 * @options: stores various chip bit options
Huang Shijief22d5f62013-03-15 11:00:59 +08001486 * @id_len: The valid length of the @id.
1487 * @oobsize: OOB size
Randy Dunlap7b7d8982014-07-27 14:31:53 -07001488 * @ecc: ECC correctability and step information from the datasheet.
Huang Shijie2dc0bdd2013-05-17 11:17:31 +08001489 * @ecc.strength_ds: The ECC correctability from the datasheet, same as the
1490 * @ecc_strength_ds in nand_chip{}.
1491 * @ecc.step_ds: The ECC step required by the @ecc.strength_ds, same as the
1492 * @ecc_step_ds in nand_chip{}, also from the datasheet.
1493 * For example, the "4bit ECC for each 512Byte" can be set with
1494 * NAND_ECC_INFO(4, 512).
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001495 * @onfi_timing_mode_default: the default ONFI timing mode entered after a NAND
1496 * reset. Should be deduced from timings described
1497 * in the datasheet.
1498 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 */
1500struct nand_flash_dev {
1501 char *name;
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001502 union {
1503 struct {
1504 uint8_t mfr_id;
1505 uint8_t dev_id;
1506 };
Artem Bityutskiy53552d22013-03-14 09:57:23 +02001507 uint8_t id[NAND_MAX_ID_LEN];
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001508 };
Artem Bityutskiyecb42fe2013-03-13 13:45:00 +02001509 unsigned int pagesize;
1510 unsigned int chipsize;
1511 unsigned int erasesize;
1512 unsigned int options;
Huang Shijief22d5f62013-03-15 11:00:59 +08001513 uint16_t id_len;
1514 uint16_t oobsize;
Huang Shijie2dc0bdd2013-05-17 11:17:31 +08001515 struct {
1516 uint16_t strength_ds;
1517 uint16_t step_ds;
1518 } ecc;
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001519 int onfi_timing_mode_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520};
1521
1522/**
Boris Brezillon8cfb9ab2017-01-07 15:15:57 +01001523 * struct nand_manufacturer - NAND Flash Manufacturer structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 * @name: Manufacturer name
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02001525 * @id: manufacturer ID code of device.
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001526 * @ops: manufacturer operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527*/
Boris Brezillon8cfb9ab2017-01-07 15:15:57 +01001528struct nand_manufacturer {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 int id;
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001530 char *name;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001531 const struct nand_manufacturer_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532};
1533
Boris Brezillonbcc678c2017-01-07 15:48:25 +01001534const struct nand_manufacturer *nand_get_manufacturer(u8 id);
1535
1536static inline const char *
1537nand_manufacturer_name(const struct nand_manufacturer *manufacturer)
1538{
1539 return manufacturer ? manufacturer->name : "Unknown";
1540}
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542extern struct nand_flash_dev nand_flash_ids[];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02001544extern const struct nand_manufacturer_ops toshiba_nand_manuf_ops;
Boris Brezillonc51d0ac2016-06-08 10:22:19 +02001545extern const struct nand_manufacturer_ops samsung_nand_manuf_ops;
Boris Brezillon01389b62016-06-08 10:30:18 +02001546extern const struct nand_manufacturer_ops hynix_nand_manuf_ops;
Boris Brezillon10d4e752016-06-08 10:38:57 +02001547extern const struct nand_manufacturer_ops micron_nand_manuf_ops;
Boris Brezillon229204d2016-06-08 10:42:23 +02001548extern const struct nand_manufacturer_ops amd_nand_manuf_ops;
Boris Brezillon3b5206f2016-06-08 10:43:26 +02001549extern const struct nand_manufacturer_ops macronix_nand_manuf_ops;
Boris Brezillonc51d0ac2016-06-08 10:22:19 +02001550
Boris Brezillon44b07b92018-07-05 12:27:30 +02001551int nand_create_bbt(struct nand_chip *chip);
Sascha Hauer79022592016-09-07 14:21:42 +02001552int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs);
1553int nand_isreserved_bbt(struct mtd_info *mtd, loff_t offs);
1554int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt);
1555int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
1556 int allowbbt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Thomas Gleixner41796c22006-05-23 11:38:59 +02001558/**
1559 * struct platform_nand_chip - chip level device structure
Thomas Gleixner41796c22006-05-23 11:38:59 +02001560 * @nr_chips: max. number of chips to scan for
Randy Dunlap844d3b42006-06-28 21:48:27 -07001561 * @chip_offset: chip number offset
Thomas Gleixner8be834f2006-05-27 20:05:26 +02001562 * @nr_partitions: number of partitions pointed to by partitions (or zero)
Thomas Gleixner41796c22006-05-23 11:38:59 +02001563 * @partitions: mtd partition list
1564 * @chip_delay: R/B delay value in us
1565 * @options: Option flags, e.g. 16bit buswidth
Brian Norrisa40f7342011-05-31 16:31:22 -07001566 * @bbt_options: BBT option flags, e.g. NAND_BBT_USE_FLASH
Vitaly Wool972edcb2007-05-06 18:46:57 +04001567 * @part_probe_types: NULL-terminated array of probe types
Thomas Gleixner41796c22006-05-23 11:38:59 +02001568 */
1569struct platform_nand_chip {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001570 int nr_chips;
1571 int chip_offset;
1572 int nr_partitions;
1573 struct mtd_partition *partitions;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001574 int chip_delay;
1575 unsigned int options;
Brian Norrisa40f7342011-05-31 16:31:22 -07001576 unsigned int bbt_options;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001577 const char **part_probe_types;
Thomas Gleixner41796c22006-05-23 11:38:59 +02001578};
1579
H Hartley Sweetenbf95efd2009-05-12 13:46:58 -07001580/* Keep gcc happy */
1581struct platform_device;
1582
Thomas Gleixner41796c22006-05-23 11:38:59 +02001583/**
1584 * struct platform_nand_ctrl - controller level device structure
H Hartley Sweetenbf95efd2009-05-12 13:46:58 -07001585 * @probe: platform specific function to probe/setup hardware
1586 * @remove: platform specific function to remove/teardown hardware
Thomas Gleixner41796c22006-05-23 11:38:59 +02001587 * @dev_ready: platform specific function to read ready/busy pin
1588 * @select_chip: platform specific chip select function
Vitaly Wool972edcb2007-05-06 18:46:57 +04001589 * @cmd_ctrl: platform specific function for controlling
1590 * ALE/CLE/nCE. Also used to write command and address
Alexander Clouterd6fed9e2009-05-11 19:28:01 +01001591 * @write_buf: platform specific function for write buffer
1592 * @read_buf: platform specific function for read buffer
Randy Dunlap844d3b42006-06-28 21:48:27 -07001593 * @priv: private data to transport driver specific settings
Thomas Gleixner41796c22006-05-23 11:38:59 +02001594 *
1595 * All fields are optional and depend on the hardware driver requirements
1596 */
1597struct platform_nand_ctrl {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001598 int (*probe)(struct platform_device *pdev);
1599 void (*remove)(struct platform_device *pdev);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001600 int (*dev_ready)(struct mtd_info *mtd);
1601 void (*select_chip)(struct mtd_info *mtd, int chip);
1602 void (*cmd_ctrl)(struct mtd_info *mtd, int dat, unsigned int ctrl);
1603 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len);
1604 void (*read_buf)(struct mtd_info *mtd, uint8_t *buf, int len);
1605 void *priv;
Thomas Gleixner41796c22006-05-23 11:38:59 +02001606};
1607
Vitaly Wool972edcb2007-05-06 18:46:57 +04001608/**
1609 * struct platform_nand_data - container structure for platform-specific data
1610 * @chip: chip level chip structure
1611 * @ctrl: controller level device structure
1612 */
1613struct platform_nand_data {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001614 struct platform_nand_chip chip;
1615 struct platform_nand_ctrl ctrl;
Vitaly Wool972edcb2007-05-06 18:46:57 +04001616};
1617
Huang Shijie3e701922012-09-13 14:57:53 +08001618/* return the supported asynchronous timing mode. */
1619static inline int onfi_get_async_timing_mode(struct nand_chip *chip)
1620{
Miquel Raynala97421c2018-03-19 14:47:27 +01001621 if (!chip->parameters.onfi.version)
Huang Shijie3e701922012-09-13 14:57:53 +08001622 return ONFI_TIMING_MODE_UNKNOWN;
Huang Shijie3e701922012-09-13 14:57:53 +08001623
Miquel Raynala97421c2018-03-19 14:47:27 +01001624 return chip->parameters.onfi.async_timing_mode;
Huang Shijie3e701922012-09-13 14:57:53 +08001625}
1626
Miquel Raynal17fa8042017-11-30 18:01:31 +01001627int onfi_fill_data_interface(struct nand_chip *chip,
Sascha Hauerb88730a2016-09-15 10:32:48 +02001628 enum nand_data_interface_type type,
1629 int timing_mode);
1630
Huang Shijie1d0ed692013-09-25 14:58:10 +08001631/*
1632 * Check if it is a SLC nand.
1633 * The !nand_is_slc() can be used to check the MLC/TLC nand chips.
1634 * We do not distinguish the MLC and TLC now.
1635 */
1636static inline bool nand_is_slc(struct nand_chip *chip)
1637{
Lothar Waßmann2d2a2b82017-08-29 12:17:13 +02001638 WARN(chip->bits_per_cell == 0,
1639 "chip->bits_per_cell is used uninitialized\n");
Huang Shijie7db906b2013-09-25 14:58:11 +08001640 return chip->bits_per_cell == 1;
Huang Shijie1d0ed692013-09-25 14:58:10 +08001641}
Brian Norris3dad2342014-01-29 14:08:12 -08001642
1643/**
1644 * Check if the opcode's address should be sent only on the lower 8 bits
1645 * @command: opcode to check
1646 */
1647static inline int nand_opcode_8bits(unsigned int command)
1648{
David Mosbergere34fcb02014-03-21 16:05:10 -06001649 switch (command) {
1650 case NAND_CMD_READID:
1651 case NAND_CMD_PARAM:
1652 case NAND_CMD_GET_FEATURES:
1653 case NAND_CMD_SET_FEATURES:
1654 return 1;
1655 default:
1656 break;
1657 }
1658 return 0;
Brian Norris3dad2342014-01-29 14:08:12 -08001659}
1660
Boris BREZILLON974647e2014-07-11 09:49:42 +02001661/* get timing characteristics from ONFI timing mode. */
1662const struct nand_sdr_timings *onfi_async_timing_mode_to_sdr_timings(int mode);
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001663
1664int nand_check_erased_ecc_chunk(void *data, int datalen,
1665 void *ecc, int ecclen,
1666 void *extraoob, int extraooblen,
1667 int threshold);
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001668
Abhishek Sahu181ace92018-06-20 12:57:28 +05301669int nand_ecc_choose_conf(struct nand_chip *chip,
1670 const struct nand_ecc_caps *caps, int oobavail);
1671
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001672/* Default write_oob implementation */
1673int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page);
1674
1675/* Default write_oob syndrome implementation */
1676int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1677 int page);
1678
1679/* Default read_oob implementation */
1680int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page);
1681
1682/* Default read_oob syndrome implementation */
1683int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1684 int page);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001685
Miquel Raynal97baea12018-03-19 14:47:20 +01001686/* Wrapper to use in order for controllers/vendors to GET/SET FEATURES */
1687int nand_get_features(struct nand_chip *chip, int addr, u8 *subfeature_param);
1688int nand_set_features(struct nand_chip *chip, int addr, u8 *subfeature_param);
Boris Brezillon4a78cc62017-05-26 17:10:15 +02001689/* Stub used by drivers that do not support GET/SET FEATURES operations */
Miquel Raynalb9587582018-03-19 14:47:19 +01001690int nand_get_set_features_notsupp(struct mtd_info *mtd, struct nand_chip *chip,
1691 int addr, u8 *subfeature_param);
Boris Brezillon4a78cc62017-05-26 17:10:15 +02001692
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001693/* Default read_page_raw implementation */
1694int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1695 uint8_t *buf, int oob_required, int page);
Boris Brezillon0d6030a2018-07-18 10:42:17 +02001696int nand_read_page_raw_notsupp(struct mtd_info *mtd, struct nand_chip *chip,
1697 u8 *buf, int oob_required, int page);
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001698
1699/* Default write_page_raw implementation */
1700int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1701 const uint8_t *buf, int oob_required, int page);
Boris Brezillon0d6030a2018-07-18 10:42:17 +02001702int nand_write_page_raw_notsupp(struct mtd_info *mtd, struct nand_chip *chip,
1703 const u8 *buf, int oob_required, int page);
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001704
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001705/* Reset and initialize a NAND device */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001706int nand_reset(struct nand_chip *chip, int chipnr);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001707
Boris Brezillon97d90da2017-11-30 18:01:29 +01001708/* NAND operation helpers */
1709int nand_reset_op(struct nand_chip *chip);
1710int nand_readid_op(struct nand_chip *chip, u8 addr, void *buf,
1711 unsigned int len);
1712int nand_status_op(struct nand_chip *chip, u8 *status);
1713int nand_exit_status_op(struct nand_chip *chip);
1714int nand_erase_op(struct nand_chip *chip, unsigned int eraseblock);
1715int nand_read_page_op(struct nand_chip *chip, unsigned int page,
1716 unsigned int offset_in_page, void *buf, unsigned int len);
1717int nand_change_read_column_op(struct nand_chip *chip,
1718 unsigned int offset_in_page, void *buf,
1719 unsigned int len, bool force_8bit);
1720int nand_read_oob_op(struct nand_chip *chip, unsigned int page,
1721 unsigned int offset_in_page, void *buf, unsigned int len);
1722int nand_prog_page_begin_op(struct nand_chip *chip, unsigned int page,
1723 unsigned int offset_in_page, const void *buf,
1724 unsigned int len);
1725int nand_prog_page_end_op(struct nand_chip *chip);
1726int nand_prog_page_op(struct nand_chip *chip, unsigned int page,
1727 unsigned int offset_in_page, const void *buf,
1728 unsigned int len);
1729int nand_change_write_column_op(struct nand_chip *chip,
1730 unsigned int offset_in_page, const void *buf,
1731 unsigned int len, bool force_8bit);
1732int nand_read_data_op(struct nand_chip *chip, void *buf, unsigned int len,
1733 bool force_8bit);
1734int nand_write_data_op(struct nand_chip *chip, const void *buf,
1735 unsigned int len, bool force_8bit);
1736
Miquel Raynal98732da2018-07-25 15:31:50 +02001737/*
1738 * Free resources held by the NAND device, must be called on error after a
1739 * sucessful nand_scan().
1740 */
Richard Weinbergerd44154f2016-09-21 11:44:41 +02001741void nand_cleanup(struct nand_chip *chip);
Miquel Raynal98732da2018-07-25 15:31:50 +02001742/* Unregister the MTD device and calls nand_cleanup() */
1743void nand_release(struct mtd_info *mtd);
Richard Weinbergerd44154f2016-09-21 11:44:41 +02001744
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001745/* Default extended ID decoding function */
1746void nand_decode_ext_id(struct nand_chip *chip);
Miquel Raynal8878b122017-11-09 14:16:45 +01001747
1748/*
1749 * External helper for controller drivers that have to implement the WAITRDY
1750 * instruction and have no physical pin to check it.
1751 */
1752int nand_soft_waitrdy(struct nand_chip *chip, unsigned long timeout_ms);
1753
Boris Brezillond4092d72017-08-04 17:29:10 +02001754#endif /* __LINUX_MTD_RAWNAND_H */