blob: 80aeeca03f36b83ae13aaae5c0736d582db639e6 [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>
Miquel Raynal789157e2018-03-19 14:47:28 +010024#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26struct mtd_info;
David Woodhouse5e81e882010-02-26 18:32:56 +000027struct nand_flash_dev;
Brian Norris5844fee2015-01-23 00:22:27 -080028struct device_node;
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/* Scan and identify a NAND device */
Miquel Raynal256c4fc2018-04-22 18:02:30 +020031int nand_scan_with_ids(struct mtd_info *mtd, int max_chips,
32 struct nand_flash_dev *ids);
33
34static inline int nand_scan(struct mtd_info *mtd, int max_chips)
35{
36 return nand_scan_with_ids(mtd, max_chips, NULL);
37}
38
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +020039/*
40 * Separate phases of nand_scan(), allowing board driver to intervene
41 * and override command or ECC setup according to flash type.
42 */
Sascha Hauer79022592016-09-07 14:21:42 +020043int nand_scan_ident(struct mtd_info *mtd, int max_chips,
David Woodhouse5e81e882010-02-26 18:32:56 +000044 struct nand_flash_dev *table);
Sascha Hauer79022592016-09-07 14:21:42 +020045int nand_scan_tail(struct mtd_info *mtd);
David Woodhouse3b85c322006-09-25 17:06:53 +010046
Richard Weinbergerd44154f2016-09-21 11:44:41 +020047/* Unregister the MTD device and free resources held by the NAND device */
Sascha Hauer79022592016-09-07 14:21:42 +020048void nand_release(struct mtd_info *mtd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
David Woodhouseb77d95c2006-09-25 21:58:50 +010050/* Internal helper for board drivers which need to override command function */
Sascha Hauer79022592016-09-07 14:21:42 +020051void nand_wait_ready(struct mtd_info *mtd);
David Woodhouseb77d95c2006-09-25 21:58:50 +010052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* The maximum number of NAND chips in an array */
54#define NAND_MAX_CHIPS 8
55
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +020056/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * Constants for hardware specific CLE/ALE/NCE function
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020058 *
59 * These are bits which can be or'ed to set/clear multiple
60 * bits in one go.
61 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/* Select the chip by setting nCE to low */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020063#define NAND_NCE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/* Select the command latch by setting CLE to high */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020065#define NAND_CLE 0x02
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/* Select the address latch by setting ALE to high */
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020067#define NAND_ALE 0x04
68
69#define NAND_CTRL_CLE (NAND_NCE | NAND_CLE)
70#define NAND_CTRL_ALE (NAND_NCE | NAND_ALE)
71#define NAND_CTRL_CHANGE 0x80
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
74 * Standard NAND flash commands
75 */
76#define NAND_CMD_READ0 0
77#define NAND_CMD_READ1 1
Thomas Gleixner7bc33122006-06-20 20:05:05 +020078#define NAND_CMD_RNDOUT 5
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define NAND_CMD_PAGEPROG 0x10
80#define NAND_CMD_READOOB 0x50
81#define NAND_CMD_ERASE1 0x60
82#define NAND_CMD_STATUS 0x70
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define NAND_CMD_SEQIN 0x80
Thomas Gleixner7bc33122006-06-20 20:05:05 +020084#define NAND_CMD_RNDIN 0x85
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define NAND_CMD_READID 0x90
86#define NAND_CMD_ERASE2 0xd0
Florian Fainellicaa4b6f2010-08-30 18:32:14 +020087#define NAND_CMD_PARAM 0xec
Huang Shijie7db03ec2012-09-13 14:57:52 +080088#define NAND_CMD_GET_FEATURES 0xee
89#define NAND_CMD_SET_FEATURES 0xef
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define NAND_CMD_RESET 0xff
91
92/* Extended commands for large page devices */
93#define NAND_CMD_READSTART 0x30
Thomas Gleixner7bc33122006-06-20 20:05:05 +020094#define NAND_CMD_RNDOUTSTART 0xE0
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define NAND_CMD_CACHEDPROG 0x15
96
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +020097#define NAND_CMD_NONE -1
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* Status bits */
100#define NAND_STATUS_FAIL 0x01
101#define NAND_STATUS_FAIL_N1 0x02
102#define NAND_STATUS_TRUE_READY 0x20
103#define NAND_STATUS_READY 0x40
104#define NAND_STATUS_WP 0x80
105
Boris Brezillon104e4422017-03-16 09:35:58 +0100106#define NAND_DATA_IFACE_CHECK_ONLY -1
107
Thomas Gleixner61ecfa82005-11-07 11:15:31 +0000108/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * Constants for ECC_MODES
110 */
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200111typedef enum {
112 NAND_ECC_NONE,
113 NAND_ECC_SOFT,
114 NAND_ECC_HW,
115 NAND_ECC_HW_SYNDROME,
Sneha Narnakaje6e0cb132009-09-18 12:51:47 -0700116 NAND_ECC_HW_OOB_FIRST,
Thomas Petazzoni785818f2017-04-29 11:06:43 +0200117 NAND_ECC_ON_DIE,
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200118} nand_ecc_modes_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100120enum nand_ecc_algo {
121 NAND_ECC_UNKNOWN,
122 NAND_ECC_HAMMING,
123 NAND_ECC_BCH,
Stefan Agnerf308d732018-06-24 23:27:22 +0200124 NAND_ECC_RS,
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100125};
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
128 * Constants for Hardware ECC
David A. Marlin068e3c02005-01-24 03:07:46 +0000129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/* Reset Hardware ECC for read */
131#define NAND_ECC_READ 0
132/* Reset Hardware ECC for write */
133#define NAND_ECC_WRITE 1
Brian Norris7854d3f2011-06-23 14:12:08 -0700134/* Enable Hardware ECC before syndrome is read back from flash */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135#define NAND_ECC_READSYN 2
136
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100137/*
138 * Enable generic NAND 'page erased' check. This check is only done when
139 * ecc.correct() returns -EBADMSG.
140 * Set this flag if your implementation does not fix bitflips in erased
141 * pages and you want to rely on the default implementation.
142 */
143#define NAND_ECC_GENERIC_ERASED_CHECK BIT(0)
Boris Brezillonba78ee02016-06-08 17:04:22 +0200144#define NAND_ECC_MAXIMIZE BIT(1)
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100145
David A. Marlin068e3c02005-01-24 03:07:46 +0000146/* Bit mask for flags passed to do_nand_read_ecc */
147#define NAND_GET_DEVICE 0x80
148
149
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200150/*
151 * Option constants for bizarre disfunctionality and real
152 * features.
153 */
Brian Norris7854d3f2011-06-23 14:12:08 -0700154/* Buswidth is 16 bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#define NAND_BUSWIDTH_16 0x00000002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/* Chip has cache program function */
157#define NAND_CACHEPRG 0x00000008
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200158/*
Brian Norris5bc7c332013-03-13 09:51:31 -0700159 * Chip requires ready check on read (for auto-incremented sequential read).
160 * True only for small page devices; large page devices do not support
161 * autoincrement.
162 */
163#define NAND_NEED_READRDY 0x00000100
164
Thomas Gleixner29072b92006-09-28 15:38:36 +0200165/* Chip does not allow subpage writes */
166#define NAND_NO_SUBPAGE_WRITE 0x00000200
167
Maxim Levitsky93edbad2010-02-22 20:39:40 +0200168/* Device is one of 'new' xD cards that expose fake nand command set */
169#define NAND_BROKEN_XD 0x00000400
170
171/* Device behaves just like nand, but is readonly */
172#define NAND_ROM 0x00000800
173
Jeff Westfahla5ff4f12012-08-13 16:35:30 -0500174/* Device supports subpage reads */
175#define NAND_SUBPAGE_READ 0x00001000
176
Boris BREZILLONc03d9962015-12-02 12:01:05 +0100177/*
178 * Some MLC NANDs need data scrambling to limit bitflips caused by repeated
179 * patterns.
180 */
181#define NAND_NEED_SCRAMBLING 0x00002000
182
Masahiro Yamada14157f82017-09-13 11:05:50 +0900183/* Device needs 3rd row address cycle */
184#define NAND_ROW_ADDR_3 0x00004000
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* Options valid for Samsung large page devices */
Artem Bityutskiy3239a6c2013-03-04 14:56:18 +0200187#define NAND_SAMSUNG_LP_OPTIONS NAND_CACHEPRG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189/* Macros to identify the above */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG))
Jeff Westfahla5ff4f12012-08-13 16:35:30 -0500191#define NAND_HAS_SUBPAGE_READ(chip) ((chip->options & NAND_SUBPAGE_READ))
Marc Gonzalez3371d662016-11-15 10:56:20 +0100192#define NAND_HAS_SUBPAGE_WRITE(chip) !((chip)->options & NAND_NO_SUBPAGE_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/* Non chip related options */
Thomas Gleixner0040bf32005-02-09 12:20:00 +0000195/* This option skips the bbt scan during initialization. */
Brian Norrisb4dc53e2011-05-31 16:31:26 -0700196#define NAND_SKIP_BBTSCAN 0x00010000
Ben Dooksb1c6e6d2009-11-02 18:12:33 +0000197/* Chip may not exist, so silence any errors in scan */
Brian Norrisb4dc53e2011-05-31 16:31:26 -0700198#define NAND_SCAN_SILENT_NODEV 0x00040000
Matthieu CASTET64b37b22012-11-06 11:51:44 +0100199/*
200 * Autodetect nand buswidth with readid/onfi.
201 * This suppose the driver will configure the hardware in 8 bits mode
202 * when calling nand_scan_ident, and update its configuration
203 * before calling nand_scan_tail.
204 */
205#define NAND_BUSWIDTH_AUTO 0x00080000
Scott Wood5f867db2015-06-26 19:43:58 -0500206/*
207 * This option could be defined by controller drivers to protect against
208 * kmap'ed, vmalloc'ed highmem buffers being passed from upper layers
209 */
210#define NAND_USE_BOUNCE_BUFFER 0x00100000
Ben Dooksb1c6e6d2009-11-02 18:12:33 +0000211
Boris Brezillon6ea40a32016-10-01 10:24:03 +0200212/*
213 * In case your controller is implementing ->cmd_ctrl() and is relying on the
214 * default ->cmdfunc() implementation, you may want to let the core handle the
215 * tCCS delay which is required when a column change (RNDIN or RNDOUT) is
216 * requested.
217 * If your controller already takes care of this delay, you don't need to set
218 * this flag.
219 */
220#define NAND_WAIT_TCCS 0x00200000
221
Stefan Agnerf922bd72018-06-24 23:27:23 +0200222/*
223 * Whether the NAND chip is a boot medium. Drivers might use this information
224 * to select ECC algorithms supported by the boot ROM or similar restrictions.
225 */
226#define NAND_IS_BOOT_MEDIUM 0x00400000
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* Options set by nand scan */
Thomas Gleixnera36ed292006-05-23 11:37:03 +0200229/* Nand scan has allocated controller struct */
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200230#define NAND_CONTROLLER_ALLOC 0x80000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Thomas Gleixner29072b92006-09-28 15:38:36 +0200232/* Cell info constants */
233#define NAND_CI_CHIPNR_MSK 0x03
234#define NAND_CI_CELLTYPE_MSK 0x0C
Huang Shijie7db906b2013-09-25 14:58:11 +0800235#define NAND_CI_CELLTYPE_SHIFT 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/* Keep gcc happy */
238struct nand_chip;
239
Huang Shijie5b40db62013-05-17 11:17:28 +0800240/* ONFI features */
241#define ONFI_FEATURE_16_BIT_BUS (1 << 0)
242#define ONFI_FEATURE_EXT_PARAM_PAGE (1 << 7)
243
Huang Shijie3e701922012-09-13 14:57:53 +0800244/* ONFI timing mode, used in both asynchronous and synchronous mode */
245#define ONFI_TIMING_MODE_0 (1 << 0)
246#define ONFI_TIMING_MODE_1 (1 << 1)
247#define ONFI_TIMING_MODE_2 (1 << 2)
248#define ONFI_TIMING_MODE_3 (1 << 3)
249#define ONFI_TIMING_MODE_4 (1 << 4)
250#define ONFI_TIMING_MODE_5 (1 << 5)
251#define ONFI_TIMING_MODE_UNKNOWN (1 << 6)
252
Miquel Raynal789157e2018-03-19 14:47:28 +0100253/* ONFI feature number/address */
254#define ONFI_FEATURE_NUMBER 256
Huang Shijie7db03ec2012-09-13 14:57:52 +0800255#define ONFI_FEATURE_ADDR_TIMING_MODE 0x1
256
Brian Norris8429bb32013-12-03 15:51:09 -0800257/* Vendor-specific feature address (Micron) */
258#define ONFI_FEATURE_ADDR_READ_RETRY 0x89
Thomas Petazzoni9748e1d2017-04-29 11:06:45 +0200259#define ONFI_FEATURE_ON_DIE_ECC 0x90
260#define ONFI_FEATURE_ON_DIE_ECC_EN BIT(3)
Brian Norris8429bb32013-12-03 15:51:09 -0800261
Huang Shijie7db03ec2012-09-13 14:57:52 +0800262/* ONFI subfeature parameters length */
263#define ONFI_SUBFEATURE_PARAM_LEN 4
264
David Mosbergerd914c932013-05-29 15:30:13 +0300265/* ONFI optional commands SET/GET FEATURES supported? */
266#define ONFI_OPT_CMD_SET_GET_FEATURES (1 << 2)
267
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200268struct nand_onfi_params {
269 /* rev info and features block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200270 /* 'O' 'N' 'F' 'I' */
271 u8 sig[4];
272 __le16 revision;
273 __le16 features;
274 __le16 opt_cmd;
Huang Shijie5138a982013-05-17 11:17:27 +0800275 u8 reserved0[2];
276 __le16 ext_param_page_length; /* since ONFI 2.1 */
277 u8 num_of_param_pages; /* since ONFI 2.1 */
278 u8 reserved1[17];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200279
280 /* manufacturer information block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200281 char manufacturer[12];
282 char model[20];
283 u8 jedec_id;
284 __le16 date_code;
285 u8 reserved2[13];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200286
287 /* memory organization block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200288 __le32 byte_per_page;
289 __le16 spare_bytes_per_page;
290 __le32 data_bytes_per_ppage;
291 __le16 spare_bytes_per_ppage;
292 __le32 pages_per_block;
293 __le32 blocks_per_lun;
294 u8 lun_count;
295 u8 addr_cycles;
296 u8 bits_per_cell;
297 __le16 bb_per_lun;
298 __le16 block_endurance;
299 u8 guaranteed_good_blocks;
300 __le16 guaranteed_block_endurance;
301 u8 programs_per_page;
302 u8 ppage_attr;
303 u8 ecc_bits;
304 u8 interleaved_bits;
305 u8 interleaved_ops;
306 u8 reserved3[13];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200307
308 /* electrical parameter block */
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200309 u8 io_pin_capacitance_max;
310 __le16 async_timing_mode;
311 __le16 program_cache_timing_mode;
312 __le16 t_prog;
313 __le16 t_bers;
314 __le16 t_r;
315 __le16 t_ccs;
316 __le16 src_sync_timing_mode;
Boris BREZILLONde64aa92015-11-23 11:23:07 +0100317 u8 src_ssync_features;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200318 __le16 clk_pin_capacitance_typ;
319 __le16 io_pin_capacitance_typ;
320 __le16 input_pin_capacitance_typ;
321 u8 input_pin_capacitance_max;
Brian Norrisa55e85c2013-12-02 11:12:22 -0800322 u8 driver_strength_support;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200323 __le16 t_int_r;
Brian Norris74e98be2015-12-01 11:08:32 -0800324 __le16 t_adl;
Boris BREZILLONde64aa92015-11-23 11:23:07 +0100325 u8 reserved4[8];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200326
327 /* vendor */
Brian Norris6f0065b2013-12-03 12:02:20 -0800328 __le16 vendor_revision;
329 u8 vendor[88];
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200330
331 __le16 crc;
Brian Norrise2e6b7b2013-12-05 12:06:54 -0800332} __packed;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +0200333
334#define ONFI_CRC_BASE 0x4F4E
335
Huang Shijie5138a982013-05-17 11:17:27 +0800336/* Extended ECC information Block Definition (since ONFI 2.1) */
337struct onfi_ext_ecc_info {
338 u8 ecc_bits;
339 u8 codeword_size;
340 __le16 bb_per_lun;
341 __le16 block_endurance;
342 u8 reserved[2];
343} __packed;
344
345#define ONFI_SECTION_TYPE_0 0 /* Unused section. */
346#define ONFI_SECTION_TYPE_1 1 /* for additional sections. */
347#define ONFI_SECTION_TYPE_2 2 /* for ECC information. */
348struct onfi_ext_section {
349 u8 type;
350 u8 length;
351} __packed;
352
353#define ONFI_EXT_SECTION_MAX 8
354
355/* Extended Parameter Page Definition (since ONFI 2.1) */
356struct onfi_ext_param_page {
357 __le16 crc;
358 u8 sig[4]; /* 'E' 'P' 'P' 'S' */
359 u8 reserved0[10];
360 struct onfi_ext_section sections[ONFI_EXT_SECTION_MAX];
361
362 /*
363 * The actual size of the Extended Parameter Page is in
364 * @ext_param_page_length of nand_onfi_params{}.
365 * The following are the variable length sections.
366 * So we do not add any fields below. Please see the ONFI spec.
367 */
368} __packed;
369
Huang Shijieafbfff02014-02-21 13:39:37 +0800370struct jedec_ecc_info {
371 u8 ecc_bits;
372 u8 codeword_size;
373 __le16 bb_per_lun;
374 __le16 block_endurance;
375 u8 reserved[2];
376} __packed;
377
Huang Shijie7852f892014-02-21 13:39:39 +0800378/* JEDEC features */
379#define JEDEC_FEATURE_16_BIT_BUS (1 << 0)
380
Huang Shijieafbfff02014-02-21 13:39:37 +0800381struct nand_jedec_params {
382 /* rev info and features block */
383 /* 'J' 'E' 'S' 'D' */
384 u8 sig[4];
385 __le16 revision;
386 __le16 features;
387 u8 opt_cmd[3];
388 __le16 sec_cmd;
389 u8 num_of_param_pages;
390 u8 reserved0[18];
391
392 /* manufacturer information block */
393 char manufacturer[12];
394 char model[20];
395 u8 jedec_id[6];
396 u8 reserved1[10];
397
398 /* memory organization block */
399 __le32 byte_per_page;
400 __le16 spare_bytes_per_page;
401 u8 reserved2[6];
402 __le32 pages_per_block;
403 __le32 blocks_per_lun;
404 u8 lun_count;
405 u8 addr_cycles;
406 u8 bits_per_cell;
407 u8 programs_per_page;
408 u8 multi_plane_addr;
409 u8 multi_plane_op_attr;
410 u8 reserved3[38];
411
412 /* electrical parameter block */
413 __le16 async_sdr_speed_grade;
414 __le16 toggle_ddr_speed_grade;
415 __le16 sync_ddr_speed_grade;
416 u8 async_sdr_features;
417 u8 toggle_ddr_features;
418 u8 sync_ddr_features;
419 __le16 t_prog;
420 __le16 t_bers;
421 __le16 t_r;
422 __le16 t_r_multi_plane;
423 __le16 t_ccs;
424 __le16 io_pin_capacitance_typ;
425 __le16 input_pin_capacitance_typ;
426 __le16 clk_pin_capacitance_typ;
427 u8 driver_strength_support;
Brian Norris74e98be2015-12-01 11:08:32 -0800428 __le16 t_adl;
Huang Shijieafbfff02014-02-21 13:39:37 +0800429 u8 reserved4[36];
430
431 /* ECC and endurance block */
432 u8 guaranteed_good_blocks;
433 __le16 guaranteed_block_endurance;
434 struct jedec_ecc_info ecc_info[4];
435 u8 reserved5[29];
436
437 /* reserved */
438 u8 reserved6[148];
439
440 /* vendor */
441 __le16 vendor_rev_num;
442 u8 reserved7[88];
443
444 /* CRC for Parameter Page */
445 __le16 crc;
446} __packed;
447
Miquel Raynalf4531b22018-03-19 14:47:26 +0100448/**
Miquel Raynala97421c2018-03-19 14:47:27 +0100449 * struct onfi_params - ONFI specific parameters that will be reused
450 * @version: ONFI version (BCD encoded), 0 if ONFI is not supported
451 * @tPROG: Page program time
452 * @tBERS: Block erase time
453 * @tR: Page read time
454 * @tCCS: Change column setup time
455 * @async_timing_mode: Supported asynchronous timing mode
456 * @vendor_revision: Vendor specific revision number
457 * @vendor: Vendor specific data
458 */
459struct onfi_params {
460 int version;
461 u16 tPROG;
462 u16 tBERS;
463 u16 tR;
464 u16 tCCS;
465 u16 async_timing_mode;
466 u16 vendor_revision;
467 u8 vendor[88];
468};
469
470/**
Miquel Raynalf4531b22018-03-19 14:47:26 +0100471 * struct nand_parameters - NAND generic parameters from the parameter page
472 * @model: Model name
473 * @supports_set_get_features: The NAND chip supports setting/getting features
Miquel Raynal789157e2018-03-19 14:47:28 +0100474 * @set_feature_list: Bitmap of features that can be set
475 * @get_feature_list: Bitmap of features that can be get
Miquel Raynala97421c2018-03-19 14:47:27 +0100476 * @onfi: ONFI specific parameters
Miquel Raynalf4531b22018-03-19 14:47:26 +0100477 */
478struct nand_parameters {
Miquel Raynala97421c2018-03-19 14:47:27 +0100479 /* Generic parameters */
Miquel Raynalf4531b22018-03-19 14:47:26 +0100480 char model[100];
481 bool supports_set_get_features;
Miquel Raynal789157e2018-03-19 14:47:28 +0100482 DECLARE_BITMAP(set_feature_list, ONFI_FEATURE_NUMBER);
483 DECLARE_BITMAP(get_feature_list, ONFI_FEATURE_NUMBER);
Miquel Raynala97421c2018-03-19 14:47:27 +0100484
485 /* ONFI parameters */
486 struct onfi_params onfi;
Miquel Raynalf4531b22018-03-19 14:47:26 +0100487};
488
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +0200489/* The maximum expected count of bytes in the NAND ID sequence */
490#define NAND_MAX_ID_LEN 8
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492/**
Boris Brezillon7f501f02016-05-24 19:20:05 +0200493 * struct nand_id - NAND id structure
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +0200494 * @data: buffer containing the id bytes.
Boris Brezillon7f501f02016-05-24 19:20:05 +0200495 * @len: ID length.
496 */
497struct nand_id {
Jean-Louis Thekekara5158bd52017-06-29 19:08:30 +0200498 u8 data[NAND_MAX_ID_LEN];
Boris Brezillon7f501f02016-05-24 19:20:05 +0200499 int len;
500};
501
502/**
Randy Dunlap844d3b42006-06-28 21:48:27 -0700503 * struct nand_hw_control - Control structure for hardware controller (e.g ECC generator) shared among independent devices
Thomas Gleixner61ecfa82005-11-07 11:15:31 +0000504 * @lock: protection lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * @active: the mtd device which holds the controller currently
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200506 * @wq: wait queue to sleep on if a NAND operation is in
507 * progress used instead of the per chip wait queue
508 * when a hw controller is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 */
510struct nand_hw_control {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200511 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct nand_chip *active;
Thomas Gleixner0dfc6242005-05-31 20:39:20 +0100513 wait_queue_head_t wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514};
515
Marc Gonzalezd45bc582016-07-27 11:23:52 +0200516static inline void nand_hw_control_init(struct nand_hw_control *nfc)
517{
518 nfc->active = NULL;
519 spin_lock_init(&nfc->lock);
520 init_waitqueue_head(&nfc->wq);
521}
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/**
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +0900524 * struct nand_ecc_step_info - ECC step information of ECC engine
525 * @stepsize: data bytes per ECC step
526 * @strengths: array of supported strengths
527 * @nstrengths: number of supported strengths
528 */
529struct nand_ecc_step_info {
530 int stepsize;
531 const int *strengths;
532 int nstrengths;
533};
534
535/**
536 * struct nand_ecc_caps - capability of ECC engine
537 * @stepinfos: array of ECC step information
538 * @nstepinfos: number of ECC step information
539 * @calc_ecc_bytes: driver's hook to calculate ECC bytes per step
540 */
541struct nand_ecc_caps {
542 const struct nand_ecc_step_info *stepinfos;
543 int nstepinfos;
544 int (*calc_ecc_bytes)(int step_size, int strength);
545};
546
Masahiro Yamadaa03c6012017-06-07 20:52:11 +0900547/* a shorthand to generate struct nand_ecc_caps with only one ECC stepsize */
548#define NAND_ECC_CAPS_SINGLE(__name, __calc, __step, ...) \
549static const int __name##_strengths[] = { __VA_ARGS__ }; \
550static const struct nand_ecc_step_info __name##_stepinfo = { \
551 .stepsize = __step, \
552 .strengths = __name##_strengths, \
553 .nstrengths = ARRAY_SIZE(__name##_strengths), \
554}; \
555static const struct nand_ecc_caps __name = { \
556 .stepinfos = &__name##_stepinfo, \
557 .nstepinfos = 1, \
558 .calc_ecc_bytes = __calc, \
559}
560
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +0900561/**
Brian Norris7854d3f2011-06-23 14:12:08 -0700562 * struct nand_ecc_ctrl - Control structure for ECC
563 * @mode: ECC mode
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100564 * @algo: ECC algorithm
Brian Norris7854d3f2011-06-23 14:12:08 -0700565 * @steps: number of ECC steps per page
566 * @size: data bytes per ECC step
567 * @bytes: ECC bytes per step
Mike Dunn1d0b95b02012-03-11 14:21:10 -0700568 * @strength: max number of correctible bits per ECC step
Brian Norris7854d3f2011-06-23 14:12:08 -0700569 * @total: total number of ECC bytes per page
570 * @prepad: padding information for syndrome based ECC generators
571 * @postpad: padding information for syndrome based ECC generators
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100572 * @options: ECC specific options (see NAND_ECC_XXX flags defined above)
Brian Norris7854d3f2011-06-23 14:12:08 -0700573 * @priv: pointer to private ECC control data
Masahiro Yamadac0313b92017-12-05 17:47:16 +0900574 * @calc_buf: buffer for calculated ECC, size is oobsize.
575 * @code_buf: buffer for ECC read from flash, size is oobsize.
Brian Norris7854d3f2011-06-23 14:12:08 -0700576 * @hwctl: function to control hardware ECC generator. Must only
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200577 * be provided if an hardware ECC is available
Brian Norris7854d3f2011-06-23 14:12:08 -0700578 * @calculate: function for ECC calculation or readback from ECC hardware
Boris BREZILLON6e941192015-12-30 20:32:03 +0100579 * @correct: function for ECC correction, matching to ECC generator (sw/hw).
580 * Should return a positive number representing the number of
581 * corrected bitflips, -EBADMSG if the number of bitflips exceed
582 * ECC strength, or any other error code if the error is not
583 * directly related to correction.
584 * If -EBADMSG is returned the input buffers should be left
585 * untouched.
Boris BREZILLON62d956d2014-10-20 10:46:14 +0200586 * @read_page_raw: function to read a raw page without ECC. This function
587 * should hide the specific layout used by the ECC
588 * controller and always return contiguous in-band and
589 * out-of-band data even if they're not stored
590 * contiguously on the NAND chip (e.g.
591 * NAND_ECC_HW_SYNDROME interleaves in-band and
592 * out-of-band data).
593 * @write_page_raw: function to write a raw page without ECC. This function
594 * should hide the specific layout used by the ECC
595 * controller and consider the passed data as contiguous
596 * in-band and out-of-band data. ECC controller is
597 * responsible for doing the appropriate transformations
598 * to adapt to its specific layout (e.g.
599 * NAND_ECC_HW_SYNDROME interleaves in-band and
600 * out-of-band data).
Brian Norris7854d3f2011-06-23 14:12:08 -0700601 * @read_page: function to read a page according to the ECC generator
Mike Dunn5ca7f412012-09-11 08:59:03 -0700602 * requirements; returns maximum number of bitflips corrected in
Masahiro Yamada07604682017-03-30 15:45:47 +0900603 * any single ECC step, -EIO hw error
Mike Dunn5ca7f412012-09-11 08:59:03 -0700604 * @read_subpage: function to read parts of the page covered by ECC;
605 * returns same as read_page()
Gupta, Pekon837a6ba2013-03-15 17:55:53 +0530606 * @write_subpage: function to write parts of the page covered by ECC.
Brian Norris7854d3f2011-06-23 14:12:08 -0700607 * @write_page: function to write a page according to the ECC generator
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +0200608 * requirements.
Brian Norris9ce244b2011-08-30 18:45:37 -0700609 * @write_oob_raw: function to write chip OOB data without ECC
Brian Norrisc46f6482011-08-30 18:45:38 -0700610 * @read_oob_raw: function to read chip OOB data without ECC
Randy Dunlap844d3b42006-06-28 21:48:27 -0700611 * @read_oob: function to read chip OOB data
612 * @write_oob: function to write chip OOB data
Thomas Gleixner6dfc6d22006-05-23 12:00:46 +0200613 */
614struct nand_ecc_ctrl {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200615 nand_ecc_modes_t mode;
Rafał Miłeckib0fcd8a2016-03-23 11:19:00 +0100616 enum nand_ecc_algo algo;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200617 int steps;
618 int size;
619 int bytes;
620 int total;
Mike Dunn1d0b95b02012-03-11 14:21:10 -0700621 int strength;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200622 int prepad;
623 int postpad;
Boris BREZILLON40cbe6e2015-12-30 20:32:04 +0100624 unsigned int options;
Ivan Djelic193bd402011-03-11 11:05:33 +0100625 void *priv;
Masahiro Yamadac0313b92017-12-05 17:47:16 +0900626 u8 *calc_buf;
627 u8 *code_buf;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200628 void (*hwctl)(struct mtd_info *mtd, int mode);
629 int (*calculate)(struct mtd_info *mtd, const uint8_t *dat,
630 uint8_t *ecc_code);
631 int (*correct)(struct mtd_info *mtd, uint8_t *dat, uint8_t *read_ecc,
632 uint8_t *calc_ecc);
633 int (*read_page_raw)(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -0700634 uint8_t *buf, int oob_required, int page);
Josh Wufdbad98d2012-06-25 18:07:45 +0800635 int (*write_page_raw)(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200636 const uint8_t *buf, int oob_required, int page);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200637 int (*read_page)(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -0700638 uint8_t *buf, int oob_required, int page);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200639 int (*read_subpage)(struct mtd_info *mtd, struct nand_chip *chip,
Huang Shijiee004deb2014-01-03 11:01:40 +0800640 uint32_t offs, uint32_t len, uint8_t *buf, int page);
Gupta, Pekon837a6ba2013-03-15 17:55:53 +0530641 int (*write_subpage)(struct mtd_info *mtd, struct nand_chip *chip,
642 uint32_t offset, uint32_t data_len,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200643 const uint8_t *data_buf, int oob_required, int page);
Josh Wufdbad98d2012-06-25 18:07:45 +0800644 int (*write_page)(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +0200645 const uint8_t *buf, int oob_required, int page);
Brian Norris9ce244b2011-08-30 18:45:37 -0700646 int (*write_oob_raw)(struct mtd_info *mtd, struct nand_chip *chip,
647 int page);
Brian Norrisc46f6482011-08-30 18:45:38 -0700648 int (*read_oob_raw)(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +0300649 int page);
650 int (*read_oob)(struct mtd_info *mtd, struct nand_chip *chip, int page);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +0200651 int (*write_oob)(struct mtd_info *mtd, struct nand_chip *chip,
652 int page);
Thomas Gleixnerf75e5092006-05-26 18:52:08 +0200653};
654
655/**
Sascha Hauereee64b72016-09-15 10:32:46 +0200656 * struct nand_sdr_timings - SDR NAND chip timings
657 *
658 * This struct defines the timing requirements of a SDR NAND chip.
659 * These information can be found in every NAND datasheets and the timings
660 * meaning are described in the ONFI specifications:
661 * www.onfi.org/~/media/ONFI/specs/onfi_3_1_spec.pdf (chapter 4.15 Timing
662 * Parameters)
663 *
664 * All these timings are expressed in picoseconds.
665 *
Boris Brezillon204e7ec2016-10-01 10:24:02 +0200666 * @tBERS_max: Block erase time
667 * @tCCS_min: Change column setup time
668 * @tPROG_max: Page program time
669 * @tR_max: Page read time
Sascha Hauereee64b72016-09-15 10:32:46 +0200670 * @tALH_min: ALE hold time
671 * @tADL_min: ALE to data loading time
672 * @tALS_min: ALE setup time
673 * @tAR_min: ALE to RE# delay
674 * @tCEA_max: CE# access time
Randy Dunlap61babe92016-11-21 18:32:08 -0800675 * @tCEH_min: CE# high hold time
Sascha Hauereee64b72016-09-15 10:32:46 +0200676 * @tCH_min: CE# hold time
677 * @tCHZ_max: CE# high to output hi-Z
678 * @tCLH_min: CLE hold time
679 * @tCLR_min: CLE to RE# delay
680 * @tCLS_min: CLE setup time
681 * @tCOH_min: CE# high to output hold
682 * @tCS_min: CE# setup time
683 * @tDH_min: Data hold time
684 * @tDS_min: Data setup time
685 * @tFEAT_max: Busy time for Set Features and Get Features
686 * @tIR_min: Output hi-Z to RE# low
687 * @tITC_max: Interface and Timing Mode Change time
688 * @tRC_min: RE# cycle time
689 * @tREA_max: RE# access time
690 * @tREH_min: RE# high hold time
691 * @tRHOH_min: RE# high to output hold
692 * @tRHW_min: RE# high to WE# low
693 * @tRHZ_max: RE# high to output hi-Z
694 * @tRLOH_min: RE# low to output hold
695 * @tRP_min: RE# pulse width
696 * @tRR_min: Ready to RE# low (data only)
697 * @tRST_max: Device reset time, measured from the falling edge of R/B# to the
698 * rising edge of R/B#.
699 * @tWB_max: WE# high to SR[6] low
700 * @tWC_min: WE# cycle time
701 * @tWH_min: WE# high hold time
702 * @tWHR_min: WE# high to RE# low
703 * @tWP_min: WE# pulse width
704 * @tWW_min: WP# transition to WE# low
705 */
706struct nand_sdr_timings {
Boris Brezillon6d292312017-07-31 10:31:27 +0200707 u64 tBERS_max;
Boris Brezillon204e7ec2016-10-01 10:24:02 +0200708 u32 tCCS_min;
Boris Brezillon6d292312017-07-31 10:31:27 +0200709 u64 tPROG_max;
710 u64 tR_max;
Sascha Hauereee64b72016-09-15 10:32:46 +0200711 u32 tALH_min;
712 u32 tADL_min;
713 u32 tALS_min;
714 u32 tAR_min;
715 u32 tCEA_max;
716 u32 tCEH_min;
717 u32 tCH_min;
718 u32 tCHZ_max;
719 u32 tCLH_min;
720 u32 tCLR_min;
721 u32 tCLS_min;
722 u32 tCOH_min;
723 u32 tCS_min;
724 u32 tDH_min;
725 u32 tDS_min;
726 u32 tFEAT_max;
727 u32 tIR_min;
728 u32 tITC_max;
729 u32 tRC_min;
730 u32 tREA_max;
731 u32 tREH_min;
732 u32 tRHOH_min;
733 u32 tRHW_min;
734 u32 tRHZ_max;
735 u32 tRLOH_min;
736 u32 tRP_min;
737 u32 tRR_min;
738 u64 tRST_max;
739 u32 tWB_max;
740 u32 tWC_min;
741 u32 tWH_min;
742 u32 tWHR_min;
743 u32 tWP_min;
744 u32 tWW_min;
745};
746
747/**
748 * enum nand_data_interface_type - NAND interface timing type
749 * @NAND_SDR_IFACE: Single Data Rate interface
750 */
751enum nand_data_interface_type {
752 NAND_SDR_IFACE,
753};
754
755/**
756 * struct nand_data_interface - NAND interface timing
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -0300757 * @type: type of the timing
758 * @timings: The timing, type according to @type
759 * @timings.sdr: Use it when @type is %NAND_SDR_IFACE.
Sascha Hauereee64b72016-09-15 10:32:46 +0200760 */
761struct nand_data_interface {
762 enum nand_data_interface_type type;
763 union {
764 struct nand_sdr_timings sdr;
765 } timings;
766};
767
768/**
769 * nand_get_sdr_timings - get SDR timing from data interface
770 * @conf: The data interface
771 */
772static inline const struct nand_sdr_timings *
773nand_get_sdr_timings(const struct nand_data_interface *conf)
774{
775 if (conf->type != NAND_SDR_IFACE)
776 return ERR_PTR(-EINVAL);
777
778 return &conf->timings.sdr;
779}
780
781/**
Boris Brezillonabbe26d2016-06-08 09:32:55 +0200782 * struct nand_manufacturer_ops - NAND Manufacturer operations
783 * @detect: detect the NAND memory organization and capabilities
784 * @init: initialize all vendor specific fields (like the ->read_retry()
785 * implementation) if any.
786 * @cleanup: the ->init() function may have allocated resources, ->cleanup()
787 * is here to let vendor specific code release those resources.
788 */
789struct nand_manufacturer_ops {
790 void (*detect)(struct nand_chip *chip);
791 int (*init)(struct nand_chip *chip);
792 void (*cleanup)(struct nand_chip *chip);
793};
794
795/**
Miquel Raynal8878b122017-11-09 14:16:45 +0100796 * struct nand_op_cmd_instr - Definition of a command instruction
797 * @opcode: the command to issue in one cycle
798 */
799struct nand_op_cmd_instr {
800 u8 opcode;
801};
802
803/**
804 * struct nand_op_addr_instr - Definition of an address instruction
805 * @naddrs: length of the @addrs array
806 * @addrs: array containing the address cycles to issue
807 */
808struct nand_op_addr_instr {
809 unsigned int naddrs;
810 const u8 *addrs;
811};
812
813/**
814 * struct nand_op_data_instr - Definition of a data instruction
815 * @len: number of data bytes to move
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -0300816 * @buf: buffer to fill
817 * @buf.in: buffer to fill when reading from the NAND chip
818 * @buf.out: buffer to read from when writing to the NAND chip
Miquel Raynal8878b122017-11-09 14:16:45 +0100819 * @force_8bit: force 8-bit access
820 *
821 * Please note that "in" and "out" are inverted from the ONFI specification
822 * and are from the controller perspective, so a "in" is a read from the NAND
823 * chip while a "out" is a write to the NAND chip.
824 */
825struct nand_op_data_instr {
826 unsigned int len;
827 union {
828 void *in;
829 const void *out;
830 } buf;
831 bool force_8bit;
832};
833
834/**
835 * struct nand_op_waitrdy_instr - Definition of a wait ready instruction
836 * @timeout_ms: maximum delay while waiting for the ready/busy pin in ms
837 */
838struct nand_op_waitrdy_instr {
839 unsigned int timeout_ms;
840};
841
842/**
843 * enum nand_op_instr_type - Definition of all instruction types
844 * @NAND_OP_CMD_INSTR: command instruction
845 * @NAND_OP_ADDR_INSTR: address instruction
846 * @NAND_OP_DATA_IN_INSTR: data in instruction
847 * @NAND_OP_DATA_OUT_INSTR: data out instruction
848 * @NAND_OP_WAITRDY_INSTR: wait ready instruction
849 */
850enum nand_op_instr_type {
851 NAND_OP_CMD_INSTR,
852 NAND_OP_ADDR_INSTR,
853 NAND_OP_DATA_IN_INSTR,
854 NAND_OP_DATA_OUT_INSTR,
855 NAND_OP_WAITRDY_INSTR,
856};
857
858/**
859 * struct nand_op_instr - Instruction object
860 * @type: the instruction type
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -0300861 * @ctx: extra data associated to the instruction. You'll have to use the
862 * appropriate element depending on @type
863 * @ctx.cmd: use it if @type is %NAND_OP_CMD_INSTR
864 * @ctx.addr: use it if @type is %NAND_OP_ADDR_INSTR
865 * @ctx.data: use it if @type is %NAND_OP_DATA_IN_INSTR
866 * or %NAND_OP_DATA_OUT_INSTR
867 * @ctx.waitrdy: use it if @type is %NAND_OP_WAITRDY_INSTR
Miquel Raynal8878b122017-11-09 14:16:45 +0100868 * @delay_ns: delay the controller should apply after the instruction has been
869 * issued on the bus. Most modern controllers have internal timings
870 * control logic, and in this case, the controller driver can ignore
871 * this field.
872 */
873struct nand_op_instr {
874 enum nand_op_instr_type type;
875 union {
876 struct nand_op_cmd_instr cmd;
877 struct nand_op_addr_instr addr;
878 struct nand_op_data_instr data;
879 struct nand_op_waitrdy_instr waitrdy;
880 } ctx;
881 unsigned int delay_ns;
882};
883
884/*
885 * Special handling must be done for the WAITRDY timeout parameter as it usually
886 * is either tPROG (after a prog), tR (before a read), tRST (during a reset) or
887 * tBERS (during an erase) which all of them are u64 values that cannot be
888 * divided by usual kernel macros and must be handled with the special
889 * DIV_ROUND_UP_ULL() macro.
Geert Uytterhoeven9f825e72018-05-14 12:49:37 +0200890 *
891 * Cast to type of dividend is needed here to guarantee that the result won't
892 * be an unsigned long long when the dividend is an unsigned long (or smaller),
893 * which is what the compiler does when it sees ternary operator with 2
894 * different return types (picks the largest type to make sure there's no
895 * loss).
Miquel Raynal8878b122017-11-09 14:16:45 +0100896 */
Geert Uytterhoeven9f825e72018-05-14 12:49:37 +0200897#define __DIVIDE(dividend, divisor) ({ \
898 (__typeof__(dividend))(sizeof(dividend) <= sizeof(unsigned long) ? \
899 DIV_ROUND_UP(dividend, divisor) : \
900 DIV_ROUND_UP_ULL(dividend, divisor)); \
901 })
Miquel Raynal8878b122017-11-09 14:16:45 +0100902#define PSEC_TO_NSEC(x) __DIVIDE(x, 1000)
903#define PSEC_TO_MSEC(x) __DIVIDE(x, 1000000000)
904
905#define NAND_OP_CMD(id, ns) \
906 { \
907 .type = NAND_OP_CMD_INSTR, \
908 .ctx.cmd.opcode = id, \
909 .delay_ns = ns, \
910 }
911
912#define NAND_OP_ADDR(ncycles, cycles, ns) \
913 { \
914 .type = NAND_OP_ADDR_INSTR, \
915 .ctx.addr = { \
916 .naddrs = ncycles, \
917 .addrs = cycles, \
918 }, \
919 .delay_ns = ns, \
920 }
921
922#define NAND_OP_DATA_IN(l, b, ns) \
923 { \
924 .type = NAND_OP_DATA_IN_INSTR, \
925 .ctx.data = { \
926 .len = l, \
927 .buf.in = b, \
928 .force_8bit = false, \
929 }, \
930 .delay_ns = ns, \
931 }
932
933#define NAND_OP_DATA_OUT(l, b, ns) \
934 { \
935 .type = NAND_OP_DATA_OUT_INSTR, \
936 .ctx.data = { \
937 .len = l, \
938 .buf.out = b, \
939 .force_8bit = false, \
940 }, \
941 .delay_ns = ns, \
942 }
943
944#define NAND_OP_8BIT_DATA_IN(l, b, ns) \
945 { \
946 .type = NAND_OP_DATA_IN_INSTR, \
947 .ctx.data = { \
948 .len = l, \
949 .buf.in = b, \
950 .force_8bit = true, \
951 }, \
952 .delay_ns = ns, \
953 }
954
955#define NAND_OP_8BIT_DATA_OUT(l, b, ns) \
956 { \
957 .type = NAND_OP_DATA_OUT_INSTR, \
958 .ctx.data = { \
959 .len = l, \
960 .buf.out = b, \
961 .force_8bit = true, \
962 }, \
963 .delay_ns = ns, \
964 }
965
966#define NAND_OP_WAIT_RDY(tout_ms, ns) \
967 { \
968 .type = NAND_OP_WAITRDY_INSTR, \
969 .ctx.waitrdy.timeout_ms = tout_ms, \
970 .delay_ns = ns, \
971 }
972
973/**
974 * struct nand_subop - a sub operation
975 * @instrs: array of instructions
976 * @ninstrs: length of the @instrs array
977 * @first_instr_start_off: offset to start from for the first instruction
978 * of the sub-operation
979 * @last_instr_end_off: offset to end at (excluded) for the last instruction
980 * of the sub-operation
981 *
982 * Both @first_instr_start_off and @last_instr_end_off only apply to data or
983 * address instructions.
984 *
985 * When an operation cannot be handled as is by the NAND controller, it will
986 * be split by the parser into sub-operations which will be passed to the
987 * controller driver.
988 */
989struct nand_subop {
990 const struct nand_op_instr *instrs;
991 unsigned int ninstrs;
992 unsigned int first_instr_start_off;
993 unsigned int last_instr_end_off;
994};
995
996int nand_subop_get_addr_start_off(const struct nand_subop *subop,
997 unsigned int op_id);
998int nand_subop_get_num_addr_cyc(const struct nand_subop *subop,
999 unsigned int op_id);
1000int nand_subop_get_data_start_off(const struct nand_subop *subop,
1001 unsigned int op_id);
1002int nand_subop_get_data_len(const struct nand_subop *subop,
1003 unsigned int op_id);
1004
1005/**
1006 * struct nand_op_parser_addr_constraints - Constraints for address instructions
1007 * @maxcycles: maximum number of address cycles the controller can issue in a
1008 * single step
1009 */
1010struct nand_op_parser_addr_constraints {
1011 unsigned int maxcycles;
1012};
1013
1014/**
1015 * struct nand_op_parser_data_constraints - Constraints for data instructions
1016 * @maxlen: maximum data length that the controller can handle in a single step
1017 */
1018struct nand_op_parser_data_constraints {
1019 unsigned int maxlen;
1020};
1021
1022/**
1023 * struct nand_op_parser_pattern_elem - One element of a pattern
1024 * @type: the instructuction type
1025 * @optional: whether this element of the pattern is optional or mandatory
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -03001026 * @ctx: address or data constraint
1027 * @ctx.addr: address constraint (number of cycles)
1028 * @ctx.data: data constraint (data length)
Miquel Raynal8878b122017-11-09 14:16:45 +01001029 */
1030struct nand_op_parser_pattern_elem {
1031 enum nand_op_instr_type type;
1032 bool optional;
1033 union {
1034 struct nand_op_parser_addr_constraints addr;
1035 struct nand_op_parser_data_constraints data;
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001036 } ctx;
Miquel Raynal8878b122017-11-09 14:16:45 +01001037};
1038
1039#define NAND_OP_PARSER_PAT_CMD_ELEM(_opt) \
1040 { \
1041 .type = NAND_OP_CMD_INSTR, \
1042 .optional = _opt, \
1043 }
1044
1045#define NAND_OP_PARSER_PAT_ADDR_ELEM(_opt, _maxcycles) \
1046 { \
1047 .type = NAND_OP_ADDR_INSTR, \
1048 .optional = _opt, \
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001049 .ctx.addr.maxcycles = _maxcycles, \
Miquel Raynal8878b122017-11-09 14:16:45 +01001050 }
1051
1052#define NAND_OP_PARSER_PAT_DATA_IN_ELEM(_opt, _maxlen) \
1053 { \
1054 .type = NAND_OP_DATA_IN_INSTR, \
1055 .optional = _opt, \
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001056 .ctx.data.maxlen = _maxlen, \
Miquel Raynal8878b122017-11-09 14:16:45 +01001057 }
1058
1059#define NAND_OP_PARSER_PAT_DATA_OUT_ELEM(_opt, _maxlen) \
1060 { \
1061 .type = NAND_OP_DATA_OUT_INSTR, \
1062 .optional = _opt, \
Miquel Raynalc1a72e22018-01-19 19:11:27 +01001063 .ctx.data.maxlen = _maxlen, \
Miquel Raynal8878b122017-11-09 14:16:45 +01001064 }
1065
1066#define NAND_OP_PARSER_PAT_WAITRDY_ELEM(_opt) \
1067 { \
1068 .type = NAND_OP_WAITRDY_INSTR, \
1069 .optional = _opt, \
1070 }
1071
1072/**
1073 * struct nand_op_parser_pattern - NAND sub-operation pattern descriptor
1074 * @elems: array of pattern elements
1075 * @nelems: number of pattern elements in @elems array
1076 * @exec: the function that will issue a sub-operation
1077 *
1078 * A pattern is a list of elements, each element reprensenting one instruction
1079 * with its constraints. The pattern itself is used by the core to match NAND
1080 * chip operation with NAND controller operations.
1081 * Once a match between a NAND controller operation pattern and a NAND chip
1082 * operation (or a sub-set of a NAND operation) is found, the pattern ->exec()
1083 * hook is called so that the controller driver can issue the operation on the
1084 * bus.
1085 *
1086 * Controller drivers should declare as many patterns as they support and pass
1087 * this list of patterns (created with the help of the following macro) to
1088 * the nand_op_parser_exec_op() helper.
1089 */
1090struct nand_op_parser_pattern {
1091 const struct nand_op_parser_pattern_elem *elems;
1092 unsigned int nelems;
1093 int (*exec)(struct nand_chip *chip, const struct nand_subop *subop);
1094};
1095
1096#define NAND_OP_PARSER_PATTERN(_exec, ...) \
1097 { \
1098 .exec = _exec, \
1099 .elems = (struct nand_op_parser_pattern_elem[]) { __VA_ARGS__ }, \
1100 .nelems = sizeof((struct nand_op_parser_pattern_elem[]) { __VA_ARGS__ }) / \
1101 sizeof(struct nand_op_parser_pattern_elem), \
1102 }
1103
1104/**
1105 * struct nand_op_parser - NAND controller operation parser descriptor
1106 * @patterns: array of supported patterns
1107 * @npatterns: length of the @patterns array
1108 *
1109 * The parser descriptor is just an array of supported patterns which will be
1110 * iterated by nand_op_parser_exec_op() everytime it tries to execute an
1111 * NAND operation (or tries to determine if a specific operation is supported).
1112 *
1113 * It is worth mentioning that patterns will be tested in their declaration
1114 * order, and the first match will be taken, so it's important to order patterns
1115 * appropriately so that simple/inefficient patterns are placed at the end of
1116 * the list. Usually, this is where you put single instruction patterns.
1117 */
1118struct nand_op_parser {
1119 const struct nand_op_parser_pattern *patterns;
1120 unsigned int npatterns;
1121};
1122
1123#define NAND_OP_PARSER(...) \
1124 { \
1125 .patterns = (struct nand_op_parser_pattern[]) { __VA_ARGS__ }, \
1126 .npatterns = sizeof((struct nand_op_parser_pattern[]) { __VA_ARGS__ }) / \
1127 sizeof(struct nand_op_parser_pattern), \
1128 }
1129
1130/**
1131 * struct nand_operation - NAND operation descriptor
1132 * @instrs: array of instructions to execute
1133 * @ninstrs: length of the @instrs array
1134 *
1135 * The actual operation structure that will be passed to chip->exec_op().
1136 */
1137struct nand_operation {
1138 const struct nand_op_instr *instrs;
1139 unsigned int ninstrs;
1140};
1141
1142#define NAND_OPERATION(_instrs) \
1143 { \
1144 .instrs = _instrs, \
1145 .ninstrs = ARRAY_SIZE(_instrs), \
1146 }
1147
1148int nand_op_parser_exec_op(struct nand_chip *chip,
1149 const struct nand_op_parser *parser,
1150 const struct nand_operation *op, bool check_only);
1151
1152/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 * struct nand_chip - NAND Private Flash Chip Data
Boris BREZILLONed4f85c2015-12-01 12:03:06 +01001154 * @mtd: MTD device registered to the MTD framework
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001155 * @IO_ADDR_R: [BOARDSPECIFIC] address to read the 8 I/O lines of the
1156 * flash device
1157 * @IO_ADDR_W: [BOARDSPECIFIC] address to write the 8 I/O lines of the
1158 * flash device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 * @read_byte: [REPLACEABLE] read one byte from the chip
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 * @read_word: [REPLACEABLE] read one word from the chip
Uwe Kleine-König05f78352013-12-05 22:22:04 +01001161 * @write_byte: [REPLACEABLE] write a single byte to the chip on the
1162 * low 8 I/O lines
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 * @write_buf: [REPLACEABLE] write data from the buffer to the chip
1164 * @read_buf: [REPLACEABLE] read data from the chip into the buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 * @select_chip: [REPLACEABLE] select chip nr
Brian Norrisce157512013-04-11 01:34:59 -07001166 * @block_bad: [REPLACEABLE] check if a block is bad, using OOB markers
1167 * @block_markbad: [REPLACEABLE] mark a block bad
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001168 * @cmd_ctrl: [BOARDSPECIFIC] hardwarespecific function for controlling
Thomas Gleixner7abd3ef2006-05-23 23:25:53 +02001169 * ALE/CLE/nCE. Also used to write command and address
Brian Norris7854d3f2011-06-23 14:12:08 -07001170 * @dev_ready: [BOARDSPECIFIC] hardwarespecific function for accessing
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001171 * device ready/busy line. If set to NULL no access to
1172 * ready/busy is available and the ready/busy information
1173 * is read from the chip status register.
1174 * @cmdfunc: [REPLACEABLE] hardwarespecific function for writing
1175 * commands to the chip.
1176 * @waitfunc: [REPLACEABLE] hardwarespecific function for wait on
1177 * ready.
Miquel Raynal8878b122017-11-09 14:16:45 +01001178 * @exec_op: controller specific method to execute NAND operations.
1179 * This method replaces ->cmdfunc(),
1180 * ->{read,write}_{buf,byte,word}(), ->dev_ready() and
1181 * ->waifunc().
Brian Norrisba84fb52014-01-03 15:13:33 -08001182 * @setup_read_retry: [FLASHSPECIFIC] flash (vendor) specific function for
1183 * setting the read-retry mode. Mostly needed for MLC NAND.
Brian Norris7854d3f2011-06-23 14:12:08 -07001184 * @ecc: [BOARDSPECIFIC] ECC control structure
Masahiro Yamada477544c2017-03-30 17:15:05 +09001185 * @buf_align: minimum buffer alignment required by a platform
Randy Dunlap844d3b42006-06-28 21:48:27 -07001186 * @hwcontrol: platform-specific hardware control structure
Brian Norris49c50b92014-05-06 16:02:19 -07001187 * @erase: [REPLACEABLE] erase function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 * @scan_bbt: [REPLACEABLE] function to scan bad block table
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001189 * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transferring
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001190 * data from array to read regs (tR).
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02001191 * @state: [INTERN] the current state of the NAND device
Brian Norrise9195ed2011-08-30 18:45:43 -07001192 * @oob_poi: "poison value buffer," used for laying out OOB data
1193 * before writing
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001194 * @page_shift: [INTERN] number of address bits in a page (column
1195 * address bits).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 * @phys_erase_shift: [INTERN] number of address bits in a physical eraseblock
1197 * @bbt_erase_shift: [INTERN] number of address bits in a bbt entry
1198 * @chip_shift: [INTERN] number of address bits in one chip
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001199 * @options: [BOARDSPECIFIC] various chip options. They can partly
1200 * be set to inform nand_scan about special functionality.
1201 * See the defines for further explanation.
Brian Norris5fb15492011-05-31 16:31:21 -07001202 * @bbt_options: [INTERN] bad block specific options. All options used
1203 * here must come from bbm.h. By default, these options
1204 * will be copied to the appropriate nand_bbt_descr's.
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001205 * @badblockpos: [INTERN] position of the bad block marker in the oob
1206 * area.
Brian Norris661a0832012-01-13 18:11:50 -08001207 * @badblockbits: [INTERN] minimum number of set bits in a good block's
1208 * bad block marker position; i.e., BBM == 11110111b is
1209 * not bad when badblockbits == 7
Huang Shijie7db906b2013-09-25 14:58:11 +08001210 * @bits_per_cell: [INTERN] number of bits per cell. i.e., 1 means SLC.
Huang Shijie4cfeca22013-05-17 11:17:25 +08001211 * @ecc_strength_ds: [INTERN] ECC correctability from the datasheet.
1212 * Minimum amount of bit errors per @ecc_step_ds guaranteed
1213 * to be correctable. If unknown, set to zero.
1214 * @ecc_step_ds: [INTERN] ECC step required by the @ecc_strength_ds,
Mauro Carvalho Chehabb6f6c292017-05-13 07:40:36 -03001215 * also from the datasheet. It is the recommended ECC step
Huang Shijie4cfeca22013-05-17 11:17:25 +08001216 * size, if known; if unknown, set to zero.
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001217 * @onfi_timing_mode_default: [INTERN] default ONFI timing mode. This field is
Boris Brezillond8e725d2016-09-15 10:32:50 +02001218 * set to the actually used ONFI mode if the chip is
1219 * ONFI compliant or deduced from the datasheet if
1220 * the NAND chip is not ONFI compliant.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 * @numchips: [INTERN] number of physical chips
1222 * @chipsize: [INTERN] the size of one chip for multichip arrays
1223 * @pagemask: [INTERN] page number mask = number of (pages / chip) - 1
Masahiro Yamadac0313b92017-12-05 17:47:16 +09001224 * @data_buf: [INTERN] buffer for data, size is (page size + oobsize).
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001225 * @pagebuf: [INTERN] holds the pagenumber which is currently in
1226 * data_buf.
Mike Dunnedbc45402012-04-25 12:06:11 -07001227 * @pagebuf_bitflips: [INTERN] holds the bitflip count for the page which is
1228 * currently in data_buf.
Thomas Gleixner29072b92006-09-28 15:38:36 +02001229 * @subpagesize: [INTERN] holds the subpagesize
Boris Brezillon7f501f02016-05-24 19:20:05 +02001230 * @id: [INTERN] holds NAND ID
Miquel Raynalf4531b22018-03-19 14:47:26 +01001231 * @parameters: [INTERN] holds generic parameters under an easily
1232 * readable form.
Zach Brownceb374e2017-01-10 13:30:19 -06001233 * @max_bb_per_die: [INTERN] the max number of bad blocks each die of a
1234 * this nand device will encounter their life times.
1235 * @blocks_per_die: [INTERN] The number of PEBs in a die
Randy Dunlap61babe92016-11-21 18:32:08 -08001236 * @data_interface: [INTERN] NAND interface timing information
Brian Norrisba84fb52014-01-03 15:13:33 -08001237 * @read_retries: [INTERN] the number of read retry modes supported
Miquel Raynalb9587582018-03-19 14:47:19 +01001238 * @set_features: [REPLACEABLE] set the NAND chip features
1239 * @get_features: [REPLACEABLE] get the NAND chip features
Boris Brezillon104e4422017-03-16 09:35:58 +01001240 * @setup_data_interface: [OPTIONAL] setup the data interface and timing. If
1241 * chipnr is set to %NAND_DATA_IFACE_CHECK_ONLY this
1242 * means the configuration should not be applied but
1243 * only checked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 * @bbt: [INTERN] bad block table pointer
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001245 * @bbt_td: [REPLACEABLE] bad block table descriptor for flash
1246 * lookup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 * @bbt_md: [REPLACEABLE] bad block table mirror descriptor
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001248 * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for initial
1249 * bad block scan.
1250 * @controller: [REPLACEABLE] a pointer to a hardware controller
Brian Norris7854d3f2011-06-23 14:12:08 -07001251 * structure which is shared among multiple independent
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001252 * devices.
Brian Norris32c8db82011-08-23 17:17:35 -07001253 * @priv: [OPTIONAL] pointer to private chip data
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001254 * @manufacturer: [INTERN] Contains manufacturer information
Mauro Carvalho Chehaba6766882018-05-07 06:35:52 -03001255 * @manufacturer.desc: [INTERN] Contains manufacturer's description
1256 * @manufacturer.priv: [INTERN] Contains manufacturer private information
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 */
Thomas Gleixner61ecfa82005-11-07 11:15:31 +00001258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259struct nand_chip {
Boris BREZILLONed4f85c2015-12-01 12:03:06 +01001260 struct mtd_info mtd;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001261 void __iomem *IO_ADDR_R;
1262 void __iomem *IO_ADDR_W;
Thomas Gleixner61ecfa82005-11-07 11:15:31 +00001263
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001264 uint8_t (*read_byte)(struct mtd_info *mtd);
1265 u16 (*read_word)(struct mtd_info *mtd);
Uwe Kleine-König05f78352013-12-05 22:22:04 +01001266 void (*write_byte)(struct mtd_info *mtd, uint8_t byte);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001267 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len);
1268 void (*read_buf)(struct mtd_info *mtd, uint8_t *buf, int len);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001269 void (*select_chip)(struct mtd_info *mtd, int chip);
Archit Taneja9f3e0422016-02-03 14:29:49 +05301270 int (*block_bad)(struct mtd_info *mtd, loff_t ofs);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001271 int (*block_markbad)(struct mtd_info *mtd, loff_t ofs);
1272 void (*cmd_ctrl)(struct mtd_info *mtd, int dat, unsigned int ctrl);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001273 int (*dev_ready)(struct mtd_info *mtd);
1274 void (*cmdfunc)(struct mtd_info *mtd, unsigned command, int column,
1275 int page_addr);
1276 int(*waitfunc)(struct mtd_info *mtd, struct nand_chip *this);
Miquel Raynal8878b122017-11-09 14:16:45 +01001277 int (*exec_op)(struct nand_chip *chip,
1278 const struct nand_operation *op,
1279 bool check_only);
Brian Norris49c50b92014-05-06 16:02:19 -07001280 int (*erase)(struct mtd_info *mtd, int page);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001281 int (*scan_bbt)(struct mtd_info *mtd);
Miquel Raynalb9587582018-03-19 14:47:19 +01001282 int (*set_features)(struct mtd_info *mtd, struct nand_chip *chip,
1283 int feature_addr, uint8_t *subfeature_para);
1284 int (*get_features)(struct mtd_info *mtd, struct nand_chip *chip,
1285 int feature_addr, uint8_t *subfeature_para);
Brian Norrisba84fb52014-01-03 15:13:33 -08001286 int (*setup_read_retry)(struct mtd_info *mtd, int retry_mode);
Boris Brezillon104e4422017-03-16 09:35:58 +01001287 int (*setup_data_interface)(struct mtd_info *mtd, int chipnr,
1288 const struct nand_data_interface *conf);
Boris Brezillond8e725d2016-09-15 10:32:50 +02001289
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001290 int chip_delay;
1291 unsigned int options;
Brian Norris5fb15492011-05-31 16:31:21 -07001292 unsigned int bbt_options;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001293
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001294 int page_shift;
1295 int phys_erase_shift;
1296 int bbt_erase_shift;
1297 int chip_shift;
1298 int numchips;
1299 uint64_t chipsize;
1300 int pagemask;
Masahiro Yamadac0313b92017-12-05 17:47:16 +09001301 u8 *data_buf;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001302 int pagebuf;
Mike Dunnedbc45402012-04-25 12:06:11 -07001303 unsigned int pagebuf_bitflips;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001304 int subpagesize;
Huang Shijie7db906b2013-09-25 14:58:11 +08001305 uint8_t bits_per_cell;
Huang Shijie4cfeca22013-05-17 11:17:25 +08001306 uint16_t ecc_strength_ds;
1307 uint16_t ecc_step_ds;
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001308 int onfi_timing_mode_default;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001309 int badblockpos;
1310 int badblockbits;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001311
Boris Brezillon7f501f02016-05-24 19:20:05 +02001312 struct nand_id id;
Miquel Raynalf4531b22018-03-19 14:47:26 +01001313 struct nand_parameters parameters;
Zach Brownceb374e2017-01-10 13:30:19 -06001314 u16 max_bb_per_die;
1315 u32 blocks_per_die;
Florian Fainellid1e1f4e2010-08-30 18:32:24 +02001316
Miquel Raynal17fa8042017-11-30 18:01:31 +01001317 struct nand_data_interface data_interface;
Boris Brezillond8e725d2016-09-15 10:32:50 +02001318
Brian Norrisba84fb52014-01-03 15:13:33 -08001319 int read_retries;
1320
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001321 flstate_t state;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001322
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001323 uint8_t *oob_poi;
1324 struct nand_hw_control *controller;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001325
1326 struct nand_ecc_ctrl ecc;
Masahiro Yamada477544c2017-03-30 17:15:05 +09001327 unsigned long buf_align;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001328 struct nand_hw_control hwcontrol;
1329
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001330 uint8_t *bbt;
1331 struct nand_bbt_descr *bbt_td;
1332 struct nand_bbt_descr *bbt_md;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001333
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001334 struct nand_bbt_descr *badblock_pattern;
Thomas Gleixnerf75e5092006-05-26 18:52:08 +02001335
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001336 void *priv;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001337
1338 struct {
1339 const struct nand_manufacturer *desc;
1340 void *priv;
1341 } manufacturer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342};
1343
Miquel Raynal8878b122017-11-09 14:16:45 +01001344static inline int nand_exec_op(struct nand_chip *chip,
1345 const struct nand_operation *op)
1346{
1347 if (!chip->exec_op)
1348 return -ENOTSUPP;
1349
1350 return chip->exec_op(chip, op, false);
1351}
1352
Boris Brezillon41b207a2016-02-03 19:06:15 +01001353extern const struct mtd_ooblayout_ops nand_ooblayout_sp_ops;
1354extern const struct mtd_ooblayout_ops nand_ooblayout_lp_ops;
1355
Brian Norris28b8b26b2015-10-30 20:33:20 -07001356static inline void nand_set_flash_node(struct nand_chip *chip,
1357 struct device_node *np)
1358{
Boris BREZILLON29574ed2015-12-10 09:00:38 +01001359 mtd_set_of_node(&chip->mtd, np);
Brian Norris28b8b26b2015-10-30 20:33:20 -07001360}
1361
1362static inline struct device_node *nand_get_flash_node(struct nand_chip *chip)
1363{
Boris BREZILLON29574ed2015-12-10 09:00:38 +01001364 return mtd_get_of_node(&chip->mtd);
Brian Norris28b8b26b2015-10-30 20:33:20 -07001365}
1366
Boris BREZILLON9eba47d2015-11-16 14:37:35 +01001367static inline struct nand_chip *mtd_to_nand(struct mtd_info *mtd)
1368{
Boris BREZILLON2d3b77b2015-12-10 09:00:33 +01001369 return container_of(mtd, struct nand_chip, mtd);
Boris BREZILLON9eba47d2015-11-16 14:37:35 +01001370}
1371
Boris BREZILLONffd014f2015-12-01 12:03:07 +01001372static inline struct mtd_info *nand_to_mtd(struct nand_chip *chip)
1373{
1374 return &chip->mtd;
1375}
1376
Boris BREZILLONd39ddbd2015-12-10 09:00:39 +01001377static inline void *nand_get_controller_data(struct nand_chip *chip)
1378{
1379 return chip->priv;
1380}
1381
1382static inline void nand_set_controller_data(struct nand_chip *chip, void *priv)
1383{
1384 chip->priv = priv;
1385}
1386
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001387static inline void nand_set_manufacturer_data(struct nand_chip *chip,
1388 void *priv)
1389{
1390 chip->manufacturer.priv = priv;
1391}
1392
1393static inline void *nand_get_manufacturer_data(struct nand_chip *chip)
1394{
1395 return chip->manufacturer.priv;
1396}
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398/*
1399 * NAND Flash Manufacturer ID Codes
1400 */
1401#define NAND_MFR_TOSHIBA 0x98
Rafał Miłecki1c7fe6b2016-06-09 20:10:11 +02001402#define NAND_MFR_ESMT 0xc8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403#define NAND_MFR_SAMSUNG 0xec
1404#define NAND_MFR_FUJITSU 0x04
1405#define NAND_MFR_NATIONAL 0x8f
1406#define NAND_MFR_RENESAS 0x07
1407#define NAND_MFR_STMICRO 0x20
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02001408#define NAND_MFR_HYNIX 0xad
sshahrom@micron.com8c60e542007-03-21 18:48:02 -07001409#define NAND_MFR_MICRON 0x2c
Steven J. Hill30eb0db2007-07-18 23:29:46 -05001410#define NAND_MFR_AMD 0x01
Brian Norrisc1257b42011-11-02 13:34:42 -07001411#define NAND_MFR_MACRONIX 0xc2
Brian Norrisb1ccfab2012-05-22 07:30:47 -07001412#define NAND_MFR_EON 0x92
Huang Shijie3f97c6f2013-12-26 15:37:45 +08001413#define NAND_MFR_SANDISK 0x45
Huang Shijie4968a412014-01-03 16:50:39 +08001414#define NAND_MFR_INTEL 0x89
Brian Norris641519c2014-11-04 11:32:45 -08001415#define NAND_MFR_ATO 0x9b
Andrey Jr. Melnikova4077ce2016-12-08 19:57:08 +03001416#define NAND_MFR_WINBOND 0xef
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Artem Bityutskiy53552d22013-03-14 09:57:23 +02001418
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001419/*
1420 * A helper for defining older NAND chips where the second ID byte fully
1421 * defined the chip, including the geometry (chip size, eraseblock size, page
Artem Bityutskiy5bfa9b72013-03-19 10:29:26 +02001422 * size). All these chips have 512 bytes NAND page size.
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001423 */
Artem Bityutskiy5bfa9b72013-03-19 10:29:26 +02001424#define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \
1425 { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \
1426 .chipsize = (chipsz), .erasesize = (erasesz), .options = (opts) }
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001427
1428/*
1429 * A helper for defining newer chips which report their page size and
1430 * eraseblock size via the extended ID bytes.
1431 *
1432 * The real difference between LEGACY_ID_NAND and EXTENDED_ID_NAND is that with
1433 * EXTENDED_ID_NAND, manufacturers overloaded the same device ID so that the
1434 * device ID now only represented a particular total chip size (and voltage,
1435 * buswidth), and the page size, eraseblock size, and OOB size could vary while
1436 * using the same device ID.
1437 */
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001438#define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \
1439 { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \
Artem Bityutskiy8dbfae12013-03-04 15:39:18 +02001440 .options = (opts) }
1441
Huang Shijie2dc0bdd2013-05-17 11:17:31 +08001442#define NAND_ECC_INFO(_strength, _step) \
1443 { .strength_ds = (_strength), .step_ds = (_step) }
1444#define NAND_ECC_STRENGTH(type) ((type)->ecc.strength_ds)
1445#define NAND_ECC_STEP(type) ((type)->ecc.step_ds)
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447/**
1448 * struct nand_flash_dev - NAND Flash Device ID Structure
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001449 * @name: a human-readable name of the NAND chip
1450 * @dev_id: the device ID (the second byte of the full chip ID array)
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001451 * @mfr_id: manufecturer ID part of the full chip ID array (refers the same
1452 * memory address as @id[0])
1453 * @dev_id: device ID part of the full chip ID array (refers the same memory
1454 * address as @id[1])
1455 * @id: full device ID array
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001456 * @pagesize: size of the NAND page in bytes; if 0, then the real page size (as
1457 * well as the eraseblock size) is determined from the extended NAND
1458 * chip ID array)
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001459 * @chipsize: total chip size in MiB
Artem Bityutskiyecb42fe2013-03-13 13:45:00 +02001460 * @erasesize: eraseblock size in bytes (determined from the extended ID if 0)
Artem Bityutskiy68aa352de2013-03-04 16:05:00 +02001461 * @options: stores various chip bit options
Huang Shijief22d5f62013-03-15 11:00:59 +08001462 * @id_len: The valid length of the @id.
1463 * @oobsize: OOB size
Randy Dunlap7b7d8982014-07-27 14:31:53 -07001464 * @ecc: ECC correctability and step information from the datasheet.
Huang Shijie2dc0bdd2013-05-17 11:17:31 +08001465 * @ecc.strength_ds: The ECC correctability from the datasheet, same as the
1466 * @ecc_strength_ds in nand_chip{}.
1467 * @ecc.step_ds: The ECC step required by the @ecc.strength_ds, same as the
1468 * @ecc_step_ds in nand_chip{}, also from the datasheet.
1469 * For example, the "4bit ECC for each 512Byte" can be set with
1470 * NAND_ECC_INFO(4, 512).
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001471 * @onfi_timing_mode_default: the default ONFI timing mode entered after a NAND
1472 * reset. Should be deduced from timings described
1473 * in the datasheet.
1474 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 */
1476struct nand_flash_dev {
1477 char *name;
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001478 union {
1479 struct {
1480 uint8_t mfr_id;
1481 uint8_t dev_id;
1482 };
Artem Bityutskiy53552d22013-03-14 09:57:23 +02001483 uint8_t id[NAND_MAX_ID_LEN];
Artem Bityutskiy8e12b472013-03-04 16:26:56 +02001484 };
Artem Bityutskiyecb42fe2013-03-13 13:45:00 +02001485 unsigned int pagesize;
1486 unsigned int chipsize;
1487 unsigned int erasesize;
1488 unsigned int options;
Huang Shijief22d5f62013-03-15 11:00:59 +08001489 uint16_t id_len;
1490 uint16_t oobsize;
Huang Shijie2dc0bdd2013-05-17 11:17:31 +08001491 struct {
1492 uint16_t strength_ds;
1493 uint16_t step_ds;
1494 } ecc;
Boris BREZILLON57a94e22014-09-22 20:11:50 +02001495 int onfi_timing_mode_default;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496};
1497
1498/**
Boris Brezillon8cfb9ab2017-01-07 15:15:57 +01001499 * struct nand_manufacturer - NAND Flash Manufacturer structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 * @name: Manufacturer name
Thomas Gleixner2c0a2be2006-05-23 11:50:56 +02001501 * @id: manufacturer ID code of device.
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001502 * @ops: manufacturer operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503*/
Boris Brezillon8cfb9ab2017-01-07 15:15:57 +01001504struct nand_manufacturer {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 int id;
Sebastian Andrzej Siewiora0491fc2010-10-05 12:41:01 +02001506 char *name;
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001507 const struct nand_manufacturer_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508};
1509
Boris Brezillonbcc678c2017-01-07 15:48:25 +01001510const struct nand_manufacturer *nand_get_manufacturer(u8 id);
1511
1512static inline const char *
1513nand_manufacturer_name(const struct nand_manufacturer *manufacturer)
1514{
1515 return manufacturer ? manufacturer->name : "Unknown";
1516}
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518extern struct nand_flash_dev nand_flash_ids[];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Boris Brezillon9b2d61f2016-06-08 10:34:57 +02001520extern const struct nand_manufacturer_ops toshiba_nand_manuf_ops;
Boris Brezillonc51d0ac2016-06-08 10:22:19 +02001521extern const struct nand_manufacturer_ops samsung_nand_manuf_ops;
Boris Brezillon01389b62016-06-08 10:30:18 +02001522extern const struct nand_manufacturer_ops hynix_nand_manuf_ops;
Boris Brezillon10d4e752016-06-08 10:38:57 +02001523extern const struct nand_manufacturer_ops micron_nand_manuf_ops;
Boris Brezillon229204d2016-06-08 10:42:23 +02001524extern const struct nand_manufacturer_ops amd_nand_manuf_ops;
Boris Brezillon3b5206f2016-06-08 10:43:26 +02001525extern const struct nand_manufacturer_ops macronix_nand_manuf_ops;
Boris Brezillonc51d0ac2016-06-08 10:22:19 +02001526
Sascha Hauer79022592016-09-07 14:21:42 +02001527int nand_default_bbt(struct mtd_info *mtd);
1528int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs);
1529int nand_isreserved_bbt(struct mtd_info *mtd, loff_t offs);
1530int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt);
1531int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr,
1532 int allowbbt);
1533int nand_do_read(struct mtd_info *mtd, loff_t from, size_t len,
1534 size_t *retlen, uint8_t *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Thomas Gleixner41796c22006-05-23 11:38:59 +02001536/**
1537 * struct platform_nand_chip - chip level device structure
Thomas Gleixner41796c22006-05-23 11:38:59 +02001538 * @nr_chips: max. number of chips to scan for
Randy Dunlap844d3b42006-06-28 21:48:27 -07001539 * @chip_offset: chip number offset
Thomas Gleixner8be834f2006-05-27 20:05:26 +02001540 * @nr_partitions: number of partitions pointed to by partitions (or zero)
Thomas Gleixner41796c22006-05-23 11:38:59 +02001541 * @partitions: mtd partition list
1542 * @chip_delay: R/B delay value in us
1543 * @options: Option flags, e.g. 16bit buswidth
Brian Norrisa40f7342011-05-31 16:31:22 -07001544 * @bbt_options: BBT option flags, e.g. NAND_BBT_USE_FLASH
Vitaly Wool972edcb2007-05-06 18:46:57 +04001545 * @part_probe_types: NULL-terminated array of probe types
Thomas Gleixner41796c22006-05-23 11:38:59 +02001546 */
1547struct platform_nand_chip {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001548 int nr_chips;
1549 int chip_offset;
1550 int nr_partitions;
1551 struct mtd_partition *partitions;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001552 int chip_delay;
1553 unsigned int options;
Brian Norrisa40f7342011-05-31 16:31:22 -07001554 unsigned int bbt_options;
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001555 const char **part_probe_types;
Thomas Gleixner41796c22006-05-23 11:38:59 +02001556};
1557
H Hartley Sweetenbf95efd2009-05-12 13:46:58 -07001558/* Keep gcc happy */
1559struct platform_device;
1560
Thomas Gleixner41796c22006-05-23 11:38:59 +02001561/**
1562 * struct platform_nand_ctrl - controller level device structure
H Hartley Sweetenbf95efd2009-05-12 13:46:58 -07001563 * @probe: platform specific function to probe/setup hardware
1564 * @remove: platform specific function to remove/teardown hardware
Thomas Gleixner41796c22006-05-23 11:38:59 +02001565 * @hwcontrol: platform specific hardware control structure
1566 * @dev_ready: platform specific function to read ready/busy pin
1567 * @select_chip: platform specific chip select function
Vitaly Wool972edcb2007-05-06 18:46:57 +04001568 * @cmd_ctrl: platform specific function for controlling
1569 * ALE/CLE/nCE. Also used to write command and address
Alexander Clouterd6fed9e2009-05-11 19:28:01 +01001570 * @write_buf: platform specific function for write buffer
1571 * @read_buf: platform specific function for read buffer
Randy Dunlap25806d32012-08-18 17:41:35 -07001572 * @read_byte: platform specific function to read one byte from chip
Randy Dunlap844d3b42006-06-28 21:48:27 -07001573 * @priv: private data to transport driver specific settings
Thomas Gleixner41796c22006-05-23 11:38:59 +02001574 *
1575 * All fields are optional and depend on the hardware driver requirements
1576 */
1577struct platform_nand_ctrl {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001578 int (*probe)(struct platform_device *pdev);
1579 void (*remove)(struct platform_device *pdev);
1580 void (*hwcontrol)(struct mtd_info *mtd, int cmd);
1581 int (*dev_ready)(struct mtd_info *mtd);
1582 void (*select_chip)(struct mtd_info *mtd, int chip);
1583 void (*cmd_ctrl)(struct mtd_info *mtd, int dat, unsigned int ctrl);
1584 void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len);
1585 void (*read_buf)(struct mtd_info *mtd, uint8_t *buf, int len);
John Crispinb4f7aa82012-04-30 19:30:47 +02001586 unsigned char (*read_byte)(struct mtd_info *mtd);
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001587 void *priv;
Thomas Gleixner41796c22006-05-23 11:38:59 +02001588};
1589
Vitaly Wool972edcb2007-05-06 18:46:57 +04001590/**
1591 * struct platform_nand_data - container structure for platform-specific data
1592 * @chip: chip level chip structure
1593 * @ctrl: controller level device structure
1594 */
1595struct platform_nand_data {
Sebastian Andrzej Siewiorb46daf72010-10-07 21:48:27 +02001596 struct platform_nand_chip chip;
1597 struct platform_nand_ctrl ctrl;
Vitaly Wool972edcb2007-05-06 18:46:57 +04001598};
1599
Huang Shijie3e701922012-09-13 14:57:53 +08001600/* return the supported asynchronous timing mode. */
1601static inline int onfi_get_async_timing_mode(struct nand_chip *chip)
1602{
Miquel Raynala97421c2018-03-19 14:47:27 +01001603 if (!chip->parameters.onfi.version)
Huang Shijie3e701922012-09-13 14:57:53 +08001604 return ONFI_TIMING_MODE_UNKNOWN;
Huang Shijie3e701922012-09-13 14:57:53 +08001605
Miquel Raynala97421c2018-03-19 14:47:27 +01001606 return chip->parameters.onfi.async_timing_mode;
Huang Shijie3e701922012-09-13 14:57:53 +08001607}
1608
Miquel Raynal17fa8042017-11-30 18:01:31 +01001609int onfi_fill_data_interface(struct nand_chip *chip,
Sascha Hauerb88730a2016-09-15 10:32:48 +02001610 enum nand_data_interface_type type,
1611 int timing_mode);
1612
Huang Shijie1d0ed692013-09-25 14:58:10 +08001613/*
1614 * Check if it is a SLC nand.
1615 * The !nand_is_slc() can be used to check the MLC/TLC nand chips.
1616 * We do not distinguish the MLC and TLC now.
1617 */
1618static inline bool nand_is_slc(struct nand_chip *chip)
1619{
Lothar Waßmann2d2a2b82017-08-29 12:17:13 +02001620 WARN(chip->bits_per_cell == 0,
1621 "chip->bits_per_cell is used uninitialized\n");
Huang Shijie7db906b2013-09-25 14:58:11 +08001622 return chip->bits_per_cell == 1;
Huang Shijie1d0ed692013-09-25 14:58:10 +08001623}
Brian Norris3dad2342014-01-29 14:08:12 -08001624
1625/**
1626 * Check if the opcode's address should be sent only on the lower 8 bits
1627 * @command: opcode to check
1628 */
1629static inline int nand_opcode_8bits(unsigned int command)
1630{
David Mosbergere34fcb02014-03-21 16:05:10 -06001631 switch (command) {
1632 case NAND_CMD_READID:
1633 case NAND_CMD_PARAM:
1634 case NAND_CMD_GET_FEATURES:
1635 case NAND_CMD_SET_FEATURES:
1636 return 1;
1637 default:
1638 break;
1639 }
1640 return 0;
Brian Norris3dad2342014-01-29 14:08:12 -08001641}
1642
Boris BREZILLON974647e2014-07-11 09:49:42 +02001643/* get timing characteristics from ONFI timing mode. */
1644const struct nand_sdr_timings *onfi_async_timing_mode_to_sdr_timings(int mode);
Boris BREZILLON730a43f2015-09-03 18:03:38 +02001645
1646int nand_check_erased_ecc_chunk(void *data, int datalen,
1647 void *ecc, int ecclen,
1648 void *extraoob, int extraooblen,
1649 int threshold);
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001650
Masahiro Yamada2c8f8af2017-06-07 20:52:10 +09001651int nand_check_ecc_caps(struct nand_chip *chip,
1652 const struct nand_ecc_caps *caps, int oobavail);
1653
1654int nand_match_ecc_req(struct nand_chip *chip,
1655 const struct nand_ecc_caps *caps, int oobavail);
1656
1657int nand_maximize_ecc(struct nand_chip *chip,
1658 const struct nand_ecc_caps *caps, int oobavail);
1659
Boris Brezillon9d02fc22015-08-26 16:08:12 +02001660/* Default write_oob implementation */
1661int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page);
1662
1663/* Default write_oob syndrome implementation */
1664int nand_write_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1665 int page);
1666
1667/* Default read_oob implementation */
1668int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, int page);
1669
1670/* Default read_oob syndrome implementation */
1671int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip,
1672 int page);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001673
Miquel Raynal97baea12018-03-19 14:47:20 +01001674/* Wrapper to use in order for controllers/vendors to GET/SET FEATURES */
1675int nand_get_features(struct nand_chip *chip, int addr, u8 *subfeature_param);
1676int nand_set_features(struct nand_chip *chip, int addr, u8 *subfeature_param);
Boris Brezillon4a78cc62017-05-26 17:10:15 +02001677/* Stub used by drivers that do not support GET/SET FEATURES operations */
Miquel Raynalb9587582018-03-19 14:47:19 +01001678int nand_get_set_features_notsupp(struct mtd_info *mtd, struct nand_chip *chip,
1679 int addr, u8 *subfeature_param);
Boris Brezillon4a78cc62017-05-26 17:10:15 +02001680
Thomas Petazzonicc0f51e2017-04-29 11:06:44 +02001681/* Default read_page_raw implementation */
1682int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1683 uint8_t *buf, int oob_required, int page);
1684
1685/* Default write_page_raw implementation */
1686int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1687 const uint8_t *buf, int oob_required, int page);
1688
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001689/* Reset and initialize a NAND device */
Boris Brezillon73f907f2016-10-24 16:46:20 +02001690int nand_reset(struct nand_chip *chip, int chipnr);
Sascha Hauer2f94abf2016-09-15 10:32:45 +02001691
Boris Brezillon97d90da2017-11-30 18:01:29 +01001692/* NAND operation helpers */
1693int nand_reset_op(struct nand_chip *chip);
1694int nand_readid_op(struct nand_chip *chip, u8 addr, void *buf,
1695 unsigned int len);
1696int nand_status_op(struct nand_chip *chip, u8 *status);
1697int nand_exit_status_op(struct nand_chip *chip);
1698int nand_erase_op(struct nand_chip *chip, unsigned int eraseblock);
1699int nand_read_page_op(struct nand_chip *chip, unsigned int page,
1700 unsigned int offset_in_page, void *buf, unsigned int len);
1701int nand_change_read_column_op(struct nand_chip *chip,
1702 unsigned int offset_in_page, void *buf,
1703 unsigned int len, bool force_8bit);
1704int nand_read_oob_op(struct nand_chip *chip, unsigned int page,
1705 unsigned int offset_in_page, void *buf, unsigned int len);
1706int nand_prog_page_begin_op(struct nand_chip *chip, unsigned int page,
1707 unsigned int offset_in_page, const void *buf,
1708 unsigned int len);
1709int nand_prog_page_end_op(struct nand_chip *chip);
1710int nand_prog_page_op(struct nand_chip *chip, unsigned int page,
1711 unsigned int offset_in_page, const void *buf,
1712 unsigned int len);
1713int nand_change_write_column_op(struct nand_chip *chip,
1714 unsigned int offset_in_page, const void *buf,
1715 unsigned int len, bool force_8bit);
1716int nand_read_data_op(struct nand_chip *chip, void *buf, unsigned int len,
1717 bool force_8bit);
1718int nand_write_data_op(struct nand_chip *chip, const void *buf,
1719 unsigned int len, bool force_8bit);
1720
Richard Weinbergerd44154f2016-09-21 11:44:41 +02001721/* Free resources held by the NAND device */
1722void nand_cleanup(struct nand_chip *chip);
1723
Boris Brezillonabbe26d2016-06-08 09:32:55 +02001724/* Default extended ID decoding function */
1725void nand_decode_ext_id(struct nand_chip *chip);
Miquel Raynal8878b122017-11-09 14:16:45 +01001726
1727/*
1728 * External helper for controller drivers that have to implement the WAITRDY
1729 * instruction and have no physical pin to check it.
1730 */
1731int nand_soft_waitrdy(struct nand_chip *chip, unsigned long timeout_ms);
1732
Boris Brezillond4092d72017-08-04 17:29:10 +02001733#endif /* __LINUX_MTD_RAWNAND_H */