Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
David Woodhouse | a1452a3 | 2010-08-08 20:58:20 +0100 | [diff] [blame] | 2 | * Copyright © 2000-2010 David Woodhouse <dwmw2@infradead.org> |
| 3 | * Steven J. Hill <sjhill@realitydiluted.com> |
| 4 | * Thomas Gleixner <tglx@linutronix.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * 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 Gleixner | 2c0a2be | 2006-05-23 11:50:56 +0200 | [diff] [blame] | 10 | * Info: |
| 11 | * Contains standard defines and IDs for NAND flash devices |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * |
Thomas Gleixner | 2c0a2be | 2006-05-23 11:50:56 +0200 | [diff] [blame] | 13 | * Changelog: |
| 14 | * See git changelog. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ |
Boris Brezillon | d4092d7 | 2017-08-04 17:29:10 +0200 | [diff] [blame] | 16 | #ifndef __LINUX_MTD_RAWNAND_H |
| 17 | #define __LINUX_MTD_RAWNAND_H |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/wait.h> |
| 20 | #include <linux/spinlock.h> |
| 21 | #include <linux/mtd/mtd.h> |
Alessandro Rubini | 30631cb | 2009-09-20 23:28:14 +0200 | [diff] [blame] | 22 | #include <linux/mtd/flashchip.h> |
Alessandro Rubini | c62d81b | 2009-09-20 23:28:04 +0200 | [diff] [blame] | 23 | #include <linux/mtd/bbm.h> |
Boris Brezillon | 1c3ab61 | 2018-07-05 12:27:29 +0200 | [diff] [blame] | 24 | #include <linux/of.h> |
Miquel Raynal | 789157e | 2018-03-19 14:47:28 +0100 | [diff] [blame] | 25 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Boris Brezillon | 00ad378 | 2018-09-06 14:05:14 +0200 | [diff] [blame] | 27 | struct nand_chip; |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 28 | struct nand_flash_dev; |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | /* Scan and identify a NAND device */ |
Boris Brezillon | 871a407 | 2018-08-04 22:59:22 +0200 | [diff] [blame] | 31 | int nand_scan_with_ids(struct nand_chip *chip, unsigned int max_chips, |
Miquel Raynal | 256c4fc | 2018-04-22 18:02:30 +0200 | [diff] [blame] | 32 | struct nand_flash_dev *ids); |
| 33 | |
Boris Brezillon | 871a407 | 2018-08-04 22:59:22 +0200 | [diff] [blame] | 34 | static inline int nand_scan(struct nand_chip *chip, unsigned int max_chips) |
Miquel Raynal | 256c4fc | 2018-04-22 18:02:30 +0200 | [diff] [blame] | 35 | { |
Boris Brezillon | 00ad378 | 2018-09-06 14:05:14 +0200 | [diff] [blame] | 36 | return nand_scan_with_ids(chip, max_chips, NULL); |
Miquel Raynal | 256c4fc | 2018-04-22 18:02:30 +0200 | [diff] [blame] | 37 | } |
| 38 | |
David Woodhouse | b77d95c | 2006-09-25 21:58:50 +0100 | [diff] [blame] | 39 | /* Internal helper for board drivers which need to override command function */ |
Boris Brezillon | 2b356ab | 2018-09-06 14:05:16 +0200 | [diff] [blame] | 40 | void nand_wait_ready(struct nand_chip *chip); |
David Woodhouse | b77d95c | 2006-09-25 21:58:50 +0100 | [diff] [blame] | 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /* The maximum number of NAND chips in an array */ |
| 43 | #define NAND_MAX_CHIPS 8 |
| 44 | |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 45 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | * Constants for hardware specific CLE/ALE/NCE function |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 47 | * |
| 48 | * These are bits which can be or'ed to set/clear multiple |
| 49 | * bits in one go. |
| 50 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | /* Select the chip by setting nCE to low */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 52 | #define NAND_NCE 0x01 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | /* Select the command latch by setting CLE to high */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 54 | #define NAND_CLE 0x02 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | /* Select the address latch by setting ALE to high */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 56 | #define NAND_ALE 0x04 |
| 57 | |
| 58 | #define NAND_CTRL_CLE (NAND_NCE | NAND_CLE) |
| 59 | #define NAND_CTRL_ALE (NAND_NCE | NAND_ALE) |
| 60 | #define NAND_CTRL_CHANGE 0x80 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | /* |
| 63 | * Standard NAND flash commands |
| 64 | */ |
| 65 | #define NAND_CMD_READ0 0 |
| 66 | #define NAND_CMD_READ1 1 |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 67 | #define NAND_CMD_RNDOUT 5 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #define NAND_CMD_PAGEPROG 0x10 |
| 69 | #define NAND_CMD_READOOB 0x50 |
| 70 | #define NAND_CMD_ERASE1 0x60 |
| 71 | #define NAND_CMD_STATUS 0x70 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #define NAND_CMD_SEQIN 0x80 |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 73 | #define NAND_CMD_RNDIN 0x85 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #define NAND_CMD_READID 0x90 |
| 75 | #define NAND_CMD_ERASE2 0xd0 |
Florian Fainelli | caa4b6f | 2010-08-30 18:32:14 +0200 | [diff] [blame] | 76 | #define NAND_CMD_PARAM 0xec |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 77 | #define NAND_CMD_GET_FEATURES 0xee |
| 78 | #define NAND_CMD_SET_FEATURES 0xef |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | #define NAND_CMD_RESET 0xff |
| 80 | |
| 81 | /* Extended commands for large page devices */ |
| 82 | #define NAND_CMD_READSTART 0x30 |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 83 | #define NAND_CMD_RNDOUTSTART 0xE0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | #define NAND_CMD_CACHEDPROG 0x15 |
| 85 | |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 86 | #define NAND_CMD_NONE -1 |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | /* Status bits */ |
| 89 | #define NAND_STATUS_FAIL 0x01 |
| 90 | #define NAND_STATUS_FAIL_N1 0x02 |
| 91 | #define NAND_STATUS_TRUE_READY 0x20 |
| 92 | #define NAND_STATUS_READY 0x40 |
| 93 | #define NAND_STATUS_WP 0x80 |
| 94 | |
Boris Brezillon | 104e442 | 2017-03-16 09:35:58 +0100 | [diff] [blame] | 95 | #define NAND_DATA_IFACE_CHECK_ONLY -1 |
| 96 | |
Thomas Gleixner | 61ecfa8 | 2005-11-07 11:15:31 +0000 | [diff] [blame] | 97 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | * Constants for ECC_MODES |
| 99 | */ |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 100 | typedef enum { |
| 101 | NAND_ECC_NONE, |
| 102 | NAND_ECC_SOFT, |
| 103 | NAND_ECC_HW, |
| 104 | NAND_ECC_HW_SYNDROME, |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 105 | NAND_ECC_HW_OOB_FIRST, |
Thomas Petazzoni | 785818f | 2017-04-29 11:06:43 +0200 | [diff] [blame] | 106 | NAND_ECC_ON_DIE, |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 107 | } nand_ecc_modes_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Rafał Miłecki | b0fcd8a | 2016-03-23 11:19:00 +0100 | [diff] [blame] | 109 | enum nand_ecc_algo { |
| 110 | NAND_ECC_UNKNOWN, |
| 111 | NAND_ECC_HAMMING, |
| 112 | NAND_ECC_BCH, |
Stefan Agner | f308d73 | 2018-06-24 23:27:22 +0200 | [diff] [blame] | 113 | NAND_ECC_RS, |
Rafał Miłecki | b0fcd8a | 2016-03-23 11:19:00 +0100 | [diff] [blame] | 114 | }; |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* |
| 117 | * Constants for Hardware ECC |
David A. Marlin | 068e3c0 | 2005-01-24 03:07:46 +0000 | [diff] [blame] | 118 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /* Reset Hardware ECC for read */ |
| 120 | #define NAND_ECC_READ 0 |
| 121 | /* Reset Hardware ECC for write */ |
| 122 | #define NAND_ECC_WRITE 1 |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 123 | /* Enable Hardware ECC before syndrome is read back from flash */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | #define NAND_ECC_READSYN 2 |
| 125 | |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 126 | /* |
| 127 | * Enable generic NAND 'page erased' check. This check is only done when |
| 128 | * ecc.correct() returns -EBADMSG. |
| 129 | * Set this flag if your implementation does not fix bitflips in erased |
| 130 | * pages and you want to rely on the default implementation. |
| 131 | */ |
| 132 | #define NAND_ECC_GENERIC_ERASED_CHECK BIT(0) |
Boris Brezillon | ba78ee0 | 2016-06-08 17:04:22 +0200 | [diff] [blame] | 133 | #define NAND_ECC_MAXIMIZE BIT(1) |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 134 | |
David A. Marlin | 068e3c0 | 2005-01-24 03:07:46 +0000 | [diff] [blame] | 135 | /* Bit mask for flags passed to do_nand_read_ecc */ |
| 136 | #define NAND_GET_DEVICE 0x80 |
| 137 | |
| 138 | |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 139 | /* |
| 140 | * Option constants for bizarre disfunctionality and real |
| 141 | * features. |
| 142 | */ |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 143 | /* Buswidth is 16 bit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | #define NAND_BUSWIDTH_16 0x00000002 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | /* Chip has cache program function */ |
| 146 | #define NAND_CACHEPRG 0x00000008 |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 147 | /* |
Brian Norris | 5bc7c33 | 2013-03-13 09:51:31 -0700 | [diff] [blame] | 148 | * Chip requires ready check on read (for auto-incremented sequential read). |
| 149 | * True only for small page devices; large page devices do not support |
| 150 | * autoincrement. |
| 151 | */ |
| 152 | #define NAND_NEED_READRDY 0x00000100 |
| 153 | |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 154 | /* Chip does not allow subpage writes */ |
| 155 | #define NAND_NO_SUBPAGE_WRITE 0x00000200 |
| 156 | |
Maxim Levitsky | 93edbad | 2010-02-22 20:39:40 +0200 | [diff] [blame] | 157 | /* Device is one of 'new' xD cards that expose fake nand command set */ |
| 158 | #define NAND_BROKEN_XD 0x00000400 |
| 159 | |
| 160 | /* Device behaves just like nand, but is readonly */ |
| 161 | #define NAND_ROM 0x00000800 |
| 162 | |
Jeff Westfahl | a5ff4f1 | 2012-08-13 16:35:30 -0500 | [diff] [blame] | 163 | /* Device supports subpage reads */ |
| 164 | #define NAND_SUBPAGE_READ 0x00001000 |
| 165 | |
Boris BREZILLON | c03d996 | 2015-12-02 12:01:05 +0100 | [diff] [blame] | 166 | /* |
| 167 | * Some MLC NANDs need data scrambling to limit bitflips caused by repeated |
| 168 | * patterns. |
| 169 | */ |
| 170 | #define NAND_NEED_SCRAMBLING 0x00002000 |
| 171 | |
Masahiro Yamada | 14157f8 | 2017-09-13 11:05:50 +0900 | [diff] [blame] | 172 | /* Device needs 3rd row address cycle */ |
| 173 | #define NAND_ROW_ADDR_3 0x00004000 |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* Options valid for Samsung large page devices */ |
Artem Bityutskiy | 3239a6c | 2013-03-04 14:56:18 +0200 | [diff] [blame] | 176 | #define NAND_SAMSUNG_LP_OPTIONS NAND_CACHEPRG |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
| 178 | /* Macros to identify the above */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | #define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG)) |
Jeff Westfahl | a5ff4f1 | 2012-08-13 16:35:30 -0500 | [diff] [blame] | 180 | #define NAND_HAS_SUBPAGE_READ(chip) ((chip->options & NAND_SUBPAGE_READ)) |
Marc Gonzalez | 3371d66 | 2016-11-15 10:56:20 +0100 | [diff] [blame] | 181 | #define NAND_HAS_SUBPAGE_WRITE(chip) !((chip)->options & NAND_NO_SUBPAGE_WRITE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | /* Non chip related options */ |
Thomas Gleixner | 0040bf3 | 2005-02-09 12:20:00 +0000 | [diff] [blame] | 184 | /* This option skips the bbt scan during initialization. */ |
Brian Norris | b4dc53e | 2011-05-31 16:31:26 -0700 | [diff] [blame] | 185 | #define NAND_SKIP_BBTSCAN 0x00010000 |
Ben Dooks | b1c6e6d | 2009-11-02 18:12:33 +0000 | [diff] [blame] | 186 | /* Chip may not exist, so silence any errors in scan */ |
Brian Norris | b4dc53e | 2011-05-31 16:31:26 -0700 | [diff] [blame] | 187 | #define NAND_SCAN_SILENT_NODEV 0x00040000 |
Matthieu CASTET | 64b37b2 | 2012-11-06 11:51:44 +0100 | [diff] [blame] | 188 | /* |
| 189 | * Autodetect nand buswidth with readid/onfi. |
| 190 | * This suppose the driver will configure the hardware in 8 bits mode |
| 191 | * when calling nand_scan_ident, and update its configuration |
| 192 | * before calling nand_scan_tail. |
| 193 | */ |
| 194 | #define NAND_BUSWIDTH_AUTO 0x00080000 |
Scott Wood | 5f867db | 2015-06-26 19:43:58 -0500 | [diff] [blame] | 195 | /* |
| 196 | * This option could be defined by controller drivers to protect against |
| 197 | * kmap'ed, vmalloc'ed highmem buffers being passed from upper layers |
| 198 | */ |
| 199 | #define NAND_USE_BOUNCE_BUFFER 0x00100000 |
Ben Dooks | b1c6e6d | 2009-11-02 18:12:33 +0000 | [diff] [blame] | 200 | |
Boris Brezillon | 6ea40a3 | 2016-10-01 10:24:03 +0200 | [diff] [blame] | 201 | /* |
| 202 | * In case your controller is implementing ->cmd_ctrl() and is relying on the |
| 203 | * default ->cmdfunc() implementation, you may want to let the core handle the |
| 204 | * tCCS delay which is required when a column change (RNDIN or RNDOUT) is |
| 205 | * requested. |
| 206 | * If your controller already takes care of this delay, you don't need to set |
| 207 | * this flag. |
| 208 | */ |
| 209 | #define NAND_WAIT_TCCS 0x00200000 |
| 210 | |
Stefan Agner | f922bd7 | 2018-06-24 23:27:23 +0200 | [diff] [blame] | 211 | /* |
| 212 | * Whether the NAND chip is a boot medium. Drivers might use this information |
| 213 | * to select ECC algorithms supported by the boot ROM or similar restrictions. |
| 214 | */ |
| 215 | #define NAND_IS_BOOT_MEDIUM 0x00400000 |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* Options set by nand scan */ |
Thomas Gleixner | a36ed29 | 2006-05-23 11:37:03 +0200 | [diff] [blame] | 218 | /* Nand scan has allocated controller struct */ |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 219 | #define NAND_CONTROLLER_ALLOC 0x80000000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 221 | /* Cell info constants */ |
| 222 | #define NAND_CI_CHIPNR_MSK 0x03 |
| 223 | #define NAND_CI_CELLTYPE_MSK 0x0C |
Huang Shijie | 7db906b | 2013-09-25 14:58:11 +0800 | [diff] [blame] | 224 | #define NAND_CI_CELLTYPE_SHIFT 2 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | /* Keep gcc happy */ |
| 227 | struct nand_chip; |
| 228 | |
Chris Packham | 872b71f | 2018-06-25 10:44:45 +1200 | [diff] [blame] | 229 | /* ONFI version bits */ |
| 230 | #define ONFI_VERSION_1_0 BIT(1) |
| 231 | #define ONFI_VERSION_2_0 BIT(2) |
| 232 | #define ONFI_VERSION_2_1 BIT(3) |
| 233 | #define ONFI_VERSION_2_2 BIT(4) |
| 234 | #define ONFI_VERSION_2_3 BIT(5) |
| 235 | #define ONFI_VERSION_3_0 BIT(6) |
| 236 | #define ONFI_VERSION_3_1 BIT(7) |
| 237 | #define ONFI_VERSION_3_2 BIT(8) |
| 238 | #define ONFI_VERSION_4_0 BIT(9) |
| 239 | |
Huang Shijie | 5b40db6 | 2013-05-17 11:17:28 +0800 | [diff] [blame] | 240 | /* ONFI features */ |
| 241 | #define ONFI_FEATURE_16_BIT_BUS (1 << 0) |
| 242 | #define ONFI_FEATURE_EXT_PARAM_PAGE (1 << 7) |
| 243 | |
Huang Shijie | 3e70192 | 2012-09-13 14:57:53 +0800 | [diff] [blame] | 244 | /* 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 Raynal | 789157e | 2018-03-19 14:47:28 +0100 | [diff] [blame] | 253 | /* ONFI feature number/address */ |
| 254 | #define ONFI_FEATURE_NUMBER 256 |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 255 | #define ONFI_FEATURE_ADDR_TIMING_MODE 0x1 |
| 256 | |
Brian Norris | 8429bb3 | 2013-12-03 15:51:09 -0800 | [diff] [blame] | 257 | /* Vendor-specific feature address (Micron) */ |
| 258 | #define ONFI_FEATURE_ADDR_READ_RETRY 0x89 |
Thomas Petazzoni | 9748e1d | 2017-04-29 11:06:45 +0200 | [diff] [blame] | 259 | #define ONFI_FEATURE_ON_DIE_ECC 0x90 |
| 260 | #define ONFI_FEATURE_ON_DIE_ECC_EN BIT(3) |
Brian Norris | 8429bb3 | 2013-12-03 15:51:09 -0800 | [diff] [blame] | 261 | |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 262 | /* ONFI subfeature parameters length */ |
| 263 | #define ONFI_SUBFEATURE_PARAM_LEN 4 |
| 264 | |
David Mosberger | d914c93 | 2013-05-29 15:30:13 +0300 | [diff] [blame] | 265 | /* ONFI optional commands SET/GET FEATURES supported? */ |
| 266 | #define ONFI_OPT_CMD_SET_GET_FEATURES (1 << 2) |
| 267 | |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 268 | struct nand_onfi_params { |
| 269 | /* rev info and features block */ |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 270 | /* 'O' 'N' 'F' 'I' */ |
| 271 | u8 sig[4]; |
| 272 | __le16 revision; |
| 273 | __le16 features; |
| 274 | __le16 opt_cmd; |
Huang Shijie | 5138a98 | 2013-05-17 11:17:27 +0800 | [diff] [blame] | 275 | 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 Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 279 | |
| 280 | /* manufacturer information block */ |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 281 | char manufacturer[12]; |
| 282 | char model[20]; |
| 283 | u8 jedec_id; |
| 284 | __le16 date_code; |
| 285 | u8 reserved2[13]; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 286 | |
| 287 | /* memory organization block */ |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 288 | __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 Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 307 | |
| 308 | /* electrical parameter block */ |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 309 | 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 BREZILLON | de64aa9 | 2015-11-23 11:23:07 +0100 | [diff] [blame] | 317 | u8 src_ssync_features; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 318 | __le16 clk_pin_capacitance_typ; |
| 319 | __le16 io_pin_capacitance_typ; |
| 320 | __le16 input_pin_capacitance_typ; |
| 321 | u8 input_pin_capacitance_max; |
Brian Norris | a55e85c | 2013-12-02 11:12:22 -0800 | [diff] [blame] | 322 | u8 driver_strength_support; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 323 | __le16 t_int_r; |
Brian Norris | 74e98be | 2015-12-01 11:08:32 -0800 | [diff] [blame] | 324 | __le16 t_adl; |
Boris BREZILLON | de64aa9 | 2015-11-23 11:23:07 +0100 | [diff] [blame] | 325 | u8 reserved4[8]; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 326 | |
| 327 | /* vendor */ |
Brian Norris | 6f0065b | 2013-12-03 12:02:20 -0800 | [diff] [blame] | 328 | __le16 vendor_revision; |
| 329 | u8 vendor[88]; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 330 | |
| 331 | __le16 crc; |
Brian Norris | e2e6b7b | 2013-12-05 12:06:54 -0800 | [diff] [blame] | 332 | } __packed; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 333 | |
| 334 | #define ONFI_CRC_BASE 0x4F4E |
| 335 | |
Huang Shijie | 5138a98 | 2013-05-17 11:17:27 +0800 | [diff] [blame] | 336 | /* Extended ECC information Block Definition (since ONFI 2.1) */ |
| 337 | struct 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. */ |
| 348 | struct 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) */ |
| 356 | struct 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 Shijie | afbfff0 | 2014-02-21 13:39:37 +0800 | [diff] [blame] | 370 | struct 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 Shijie | 7852f89 | 2014-02-21 13:39:39 +0800 | [diff] [blame] | 378 | /* JEDEC features */ |
| 379 | #define JEDEC_FEATURE_16_BIT_BUS (1 << 0) |
| 380 | |
Huang Shijie | afbfff0 | 2014-02-21 13:39:37 +0800 | [diff] [blame] | 381 | struct 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 Norris | 74e98be | 2015-12-01 11:08:32 -0800 | [diff] [blame] | 428 | __le16 t_adl; |
Huang Shijie | afbfff0 | 2014-02-21 13:39:37 +0800 | [diff] [blame] | 429 | 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 Raynal | f4531b2 | 2018-03-19 14:47:26 +0100 | [diff] [blame] | 448 | /** |
Miquel Raynal | a97421c | 2018-03-19 14:47:27 +0100 | [diff] [blame] | 449 | * 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 | */ |
| 459 | struct 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 Raynal | f4531b2 | 2018-03-19 14:47:26 +0100 | [diff] [blame] | 471 | * 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 Raynal | 789157e | 2018-03-19 14:47:28 +0100 | [diff] [blame] | 474 | * @set_feature_list: Bitmap of features that can be set |
| 475 | * @get_feature_list: Bitmap of features that can be get |
Miquel Raynal | a97421c | 2018-03-19 14:47:27 +0100 | [diff] [blame] | 476 | * @onfi: ONFI specific parameters |
Miquel Raynal | f4531b2 | 2018-03-19 14:47:26 +0100 | [diff] [blame] | 477 | */ |
| 478 | struct nand_parameters { |
Miquel Raynal | a97421c | 2018-03-19 14:47:27 +0100 | [diff] [blame] | 479 | /* Generic parameters */ |
Miquel Raynal | 2023f1fa | 2018-07-25 15:31:51 +0200 | [diff] [blame] | 480 | const char *model; |
Miquel Raynal | f4531b2 | 2018-03-19 14:47:26 +0100 | [diff] [blame] | 481 | bool supports_set_get_features; |
Miquel Raynal | 789157e | 2018-03-19 14:47:28 +0100 | [diff] [blame] | 482 | DECLARE_BITMAP(set_feature_list, ONFI_FEATURE_NUMBER); |
| 483 | DECLARE_BITMAP(get_feature_list, ONFI_FEATURE_NUMBER); |
Miquel Raynal | a97421c | 2018-03-19 14:47:27 +0100 | [diff] [blame] | 484 | |
| 485 | /* ONFI parameters */ |
Miquel Raynal | 3d3fe3c | 2018-07-25 15:31:52 +0200 | [diff] [blame] | 486 | struct onfi_params *onfi; |
Miquel Raynal | f4531b2 | 2018-03-19 14:47:26 +0100 | [diff] [blame] | 487 | }; |
| 488 | |
Jean-Louis Thekekara | 5158bd5 | 2017-06-29 19:08:30 +0200 | [diff] [blame] | 489 | /* The maximum expected count of bytes in the NAND ID sequence */ |
| 490 | #define NAND_MAX_ID_LEN 8 |
| 491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | /** |
Boris Brezillon | 7f501f0 | 2016-05-24 19:20:05 +0200 | [diff] [blame] | 493 | * struct nand_id - NAND id structure |
Jean-Louis Thekekara | 5158bd5 | 2017-06-29 19:08:30 +0200 | [diff] [blame] | 494 | * @data: buffer containing the id bytes. |
Boris Brezillon | 7f501f0 | 2016-05-24 19:20:05 +0200 | [diff] [blame] | 495 | * @len: ID length. |
| 496 | */ |
| 497 | struct nand_id { |
Jean-Louis Thekekara | 5158bd5 | 2017-06-29 19:08:30 +0200 | [diff] [blame] | 498 | u8 data[NAND_MAX_ID_LEN]; |
Boris Brezillon | 7f501f0 | 2016-05-24 19:20:05 +0200 | [diff] [blame] | 499 | int len; |
| 500 | }; |
| 501 | |
| 502 | /** |
Miquel Raynal | 05b54c7 | 2018-07-19 01:05:46 +0200 | [diff] [blame] | 503 | * struct nand_controller_ops - Controller operations |
| 504 | * |
| 505 | * @attach_chip: this method is called after the NAND detection phase after |
| 506 | * flash ID and MTD fields such as erase size, page size and OOB |
| 507 | * size have been set up. ECC requirements are available if |
| 508 | * provided by the NAND chip or device tree. Typically used to |
| 509 | * choose the appropriate ECC configuration and allocate |
| 510 | * associated resources. |
| 511 | * This hook is optional. |
| 512 | * @detach_chip: free all resources allocated/claimed in |
| 513 | * nand_controller_ops->attach_chip(). |
| 514 | * This hook is optional. |
| 515 | */ |
| 516 | struct nand_controller_ops { |
| 517 | int (*attach_chip)(struct nand_chip *chip); |
| 518 | void (*detach_chip)(struct nand_chip *chip); |
| 519 | }; |
| 520 | |
| 521 | /** |
Miquel Raynal | 7da4513 | 2018-07-17 09:08:02 +0200 | [diff] [blame] | 522 | * struct nand_controller - Structure used to describe a NAND controller |
| 523 | * |
Thomas Gleixner | 61ecfa8 | 2005-11-07 11:15:31 +0000 | [diff] [blame] | 524 | * @lock: protection lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | * @active: the mtd device which holds the controller currently |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 526 | * @wq: wait queue to sleep on if a NAND operation is in |
| 527 | * progress used instead of the per chip wait queue |
| 528 | * when a hw controller is available. |
Miquel Raynal | 05b54c7 | 2018-07-19 01:05:46 +0200 | [diff] [blame] | 529 | * @ops: NAND controller operations. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | */ |
Miquel Raynal | 7da4513 | 2018-07-17 09:08:02 +0200 | [diff] [blame] | 531 | struct nand_controller { |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 532 | spinlock_t lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | struct nand_chip *active; |
Thomas Gleixner | 0dfc624 | 2005-05-31 20:39:20 +0100 | [diff] [blame] | 534 | wait_queue_head_t wq; |
Miquel Raynal | 05b54c7 | 2018-07-19 01:05:46 +0200 | [diff] [blame] | 535 | const struct nand_controller_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | }; |
| 537 | |
Miquel Raynal | 7da4513 | 2018-07-17 09:08:02 +0200 | [diff] [blame] | 538 | static inline void nand_controller_init(struct nand_controller *nfc) |
Marc Gonzalez | d45bc58 | 2016-07-27 11:23:52 +0200 | [diff] [blame] | 539 | { |
| 540 | nfc->active = NULL; |
| 541 | spin_lock_init(&nfc->lock); |
| 542 | init_waitqueue_head(&nfc->wq); |
| 543 | } |
| 544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | /** |
Masahiro Yamada | 2c8f8af | 2017-06-07 20:52:10 +0900 | [diff] [blame] | 546 | * struct nand_ecc_step_info - ECC step information of ECC engine |
| 547 | * @stepsize: data bytes per ECC step |
| 548 | * @strengths: array of supported strengths |
| 549 | * @nstrengths: number of supported strengths |
| 550 | */ |
| 551 | struct nand_ecc_step_info { |
| 552 | int stepsize; |
| 553 | const int *strengths; |
| 554 | int nstrengths; |
| 555 | }; |
| 556 | |
| 557 | /** |
| 558 | * struct nand_ecc_caps - capability of ECC engine |
| 559 | * @stepinfos: array of ECC step information |
| 560 | * @nstepinfos: number of ECC step information |
| 561 | * @calc_ecc_bytes: driver's hook to calculate ECC bytes per step |
| 562 | */ |
| 563 | struct nand_ecc_caps { |
| 564 | const struct nand_ecc_step_info *stepinfos; |
| 565 | int nstepinfos; |
| 566 | int (*calc_ecc_bytes)(int step_size, int strength); |
| 567 | }; |
| 568 | |
Masahiro Yamada | a03c601 | 2017-06-07 20:52:11 +0900 | [diff] [blame] | 569 | /* a shorthand to generate struct nand_ecc_caps with only one ECC stepsize */ |
| 570 | #define NAND_ECC_CAPS_SINGLE(__name, __calc, __step, ...) \ |
| 571 | static const int __name##_strengths[] = { __VA_ARGS__ }; \ |
| 572 | static const struct nand_ecc_step_info __name##_stepinfo = { \ |
| 573 | .stepsize = __step, \ |
| 574 | .strengths = __name##_strengths, \ |
| 575 | .nstrengths = ARRAY_SIZE(__name##_strengths), \ |
| 576 | }; \ |
| 577 | static const struct nand_ecc_caps __name = { \ |
| 578 | .stepinfos = &__name##_stepinfo, \ |
| 579 | .nstepinfos = 1, \ |
| 580 | .calc_ecc_bytes = __calc, \ |
| 581 | } |
| 582 | |
Masahiro Yamada | 2c8f8af | 2017-06-07 20:52:10 +0900 | [diff] [blame] | 583 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 584 | * struct nand_ecc_ctrl - Control structure for ECC |
| 585 | * @mode: ECC mode |
Rafał Miłecki | b0fcd8a | 2016-03-23 11:19:00 +0100 | [diff] [blame] | 586 | * @algo: ECC algorithm |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 587 | * @steps: number of ECC steps per page |
| 588 | * @size: data bytes per ECC step |
| 589 | * @bytes: ECC bytes per step |
Mike Dunn | 1d0b95b0 | 2012-03-11 14:21:10 -0700 | [diff] [blame] | 590 | * @strength: max number of correctible bits per ECC step |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 591 | * @total: total number of ECC bytes per page |
| 592 | * @prepad: padding information for syndrome based ECC generators |
| 593 | * @postpad: padding information for syndrome based ECC generators |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 594 | * @options: ECC specific options (see NAND_ECC_XXX flags defined above) |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 595 | * @priv: pointer to private ECC control data |
Masahiro Yamada | c0313b9 | 2017-12-05 17:47:16 +0900 | [diff] [blame] | 596 | * @calc_buf: buffer for calculated ECC, size is oobsize. |
| 597 | * @code_buf: buffer for ECC read from flash, size is oobsize. |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 598 | * @hwctl: function to control hardware ECC generator. Must only |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 599 | * be provided if an hardware ECC is available |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 600 | * @calculate: function for ECC calculation or readback from ECC hardware |
Boris BREZILLON | 6e94119 | 2015-12-30 20:32:03 +0100 | [diff] [blame] | 601 | * @correct: function for ECC correction, matching to ECC generator (sw/hw). |
| 602 | * Should return a positive number representing the number of |
| 603 | * corrected bitflips, -EBADMSG if the number of bitflips exceed |
| 604 | * ECC strength, or any other error code if the error is not |
| 605 | * directly related to correction. |
| 606 | * If -EBADMSG is returned the input buffers should be left |
| 607 | * untouched. |
Boris BREZILLON | 62d956d | 2014-10-20 10:46:14 +0200 | [diff] [blame] | 608 | * @read_page_raw: function to read a raw page without ECC. This function |
| 609 | * should hide the specific layout used by the ECC |
| 610 | * controller and always return contiguous in-band and |
| 611 | * out-of-band data even if they're not stored |
| 612 | * contiguously on the NAND chip (e.g. |
| 613 | * NAND_ECC_HW_SYNDROME interleaves in-band and |
| 614 | * out-of-band data). |
| 615 | * @write_page_raw: function to write a raw page without ECC. This function |
| 616 | * should hide the specific layout used by the ECC |
| 617 | * controller and consider the passed data as contiguous |
| 618 | * in-band and out-of-band data. ECC controller is |
| 619 | * responsible for doing the appropriate transformations |
| 620 | * to adapt to its specific layout (e.g. |
| 621 | * NAND_ECC_HW_SYNDROME interleaves in-band and |
| 622 | * out-of-band data). |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 623 | * @read_page: function to read a page according to the ECC generator |
Mike Dunn | 5ca7f41 | 2012-09-11 08:59:03 -0700 | [diff] [blame] | 624 | * requirements; returns maximum number of bitflips corrected in |
Masahiro Yamada | 0760468 | 2017-03-30 15:45:47 +0900 | [diff] [blame] | 625 | * any single ECC step, -EIO hw error |
Mike Dunn | 5ca7f41 | 2012-09-11 08:59:03 -0700 | [diff] [blame] | 626 | * @read_subpage: function to read parts of the page covered by ECC; |
| 627 | * returns same as read_page() |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 628 | * @write_subpage: function to write parts of the page covered by ECC. |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 629 | * @write_page: function to write a page according to the ECC generator |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 630 | * requirements. |
Brian Norris | 9ce244b | 2011-08-30 18:45:37 -0700 | [diff] [blame] | 631 | * @write_oob_raw: function to write chip OOB data without ECC |
Brian Norris | c46f648 | 2011-08-30 18:45:38 -0700 | [diff] [blame] | 632 | * @read_oob_raw: function to read chip OOB data without ECC |
Randy Dunlap | 844d3b4 | 2006-06-28 21:48:27 -0700 | [diff] [blame] | 633 | * @read_oob: function to read chip OOB data |
| 634 | * @write_oob: function to write chip OOB data |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 635 | */ |
| 636 | struct nand_ecc_ctrl { |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 637 | nand_ecc_modes_t mode; |
Rafał Miłecki | b0fcd8a | 2016-03-23 11:19:00 +0100 | [diff] [blame] | 638 | enum nand_ecc_algo algo; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 639 | int steps; |
| 640 | int size; |
| 641 | int bytes; |
| 642 | int total; |
Mike Dunn | 1d0b95b0 | 2012-03-11 14:21:10 -0700 | [diff] [blame] | 643 | int strength; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 644 | int prepad; |
| 645 | int postpad; |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 646 | unsigned int options; |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 647 | void *priv; |
Masahiro Yamada | c0313b9 | 2017-12-05 17:47:16 +0900 | [diff] [blame] | 648 | u8 *calc_buf; |
| 649 | u8 *code_buf; |
Boris Brezillon | ec47636 | 2018-09-06 14:05:17 +0200 | [diff] [blame] | 650 | void (*hwctl)(struct nand_chip *chip, int mode); |
Boris Brezillon | af37d2c | 2018-09-06 14:05:18 +0200 | [diff] [blame] | 651 | int (*calculate)(struct nand_chip *chip, const uint8_t *dat, |
| 652 | uint8_t *ecc_code); |
Boris Brezillon | 00da2ea | 2018-09-06 14:05:19 +0200 | [diff] [blame] | 653 | int (*correct)(struct nand_chip *chip, uint8_t *dat, uint8_t *read_ecc, |
| 654 | uint8_t *calc_ecc); |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 655 | int (*read_page_raw)(struct nand_chip *chip, uint8_t *buf, |
| 656 | int oob_required, int page); |
Boris Brezillon | 767eb6f | 2018-09-06 14:05:21 +0200 | [diff] [blame] | 657 | int (*write_page_raw)(struct nand_chip *chip, const uint8_t *buf, |
| 658 | int oob_required, int page); |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 659 | int (*read_page)(struct nand_chip *chip, uint8_t *buf, |
| 660 | int oob_required, int page); |
| 661 | int (*read_subpage)(struct nand_chip *chip, uint32_t offs, |
| 662 | uint32_t len, uint8_t *buf, int page); |
Boris Brezillon | 767eb6f | 2018-09-06 14:05:21 +0200 | [diff] [blame] | 663 | int (*write_subpage)(struct nand_chip *chip, uint32_t offset, |
| 664 | uint32_t data_len, const uint8_t *data_buf, |
| 665 | int oob_required, int page); |
| 666 | int (*write_page)(struct nand_chip *chip, const uint8_t *buf, |
| 667 | int oob_required, int page); |
| 668 | int (*write_oob_raw)(struct nand_chip *chip, int page); |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 669 | int (*read_oob_raw)(struct nand_chip *chip, int page); |
| 670 | int (*read_oob)(struct nand_chip *chip, int page); |
Boris Brezillon | 767eb6f | 2018-09-06 14:05:21 +0200 | [diff] [blame] | 671 | int (*write_oob)(struct nand_chip *chip, int page); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 672 | }; |
| 673 | |
| 674 | /** |
Sascha Hauer | eee64b7 | 2016-09-15 10:32:46 +0200 | [diff] [blame] | 675 | * struct nand_sdr_timings - SDR NAND chip timings |
| 676 | * |
| 677 | * This struct defines the timing requirements of a SDR NAND chip. |
| 678 | * These information can be found in every NAND datasheets and the timings |
| 679 | * meaning are described in the ONFI specifications: |
| 680 | * www.onfi.org/~/media/ONFI/specs/onfi_3_1_spec.pdf (chapter 4.15 Timing |
| 681 | * Parameters) |
| 682 | * |
| 683 | * All these timings are expressed in picoseconds. |
| 684 | * |
Boris Brezillon | 204e7ec | 2016-10-01 10:24:02 +0200 | [diff] [blame] | 685 | * @tBERS_max: Block erase time |
| 686 | * @tCCS_min: Change column setup time |
| 687 | * @tPROG_max: Page program time |
| 688 | * @tR_max: Page read time |
Sascha Hauer | eee64b7 | 2016-09-15 10:32:46 +0200 | [diff] [blame] | 689 | * @tALH_min: ALE hold time |
| 690 | * @tADL_min: ALE to data loading time |
| 691 | * @tALS_min: ALE setup time |
| 692 | * @tAR_min: ALE to RE# delay |
| 693 | * @tCEA_max: CE# access time |
Randy Dunlap | 61babe9 | 2016-11-21 18:32:08 -0800 | [diff] [blame] | 694 | * @tCEH_min: CE# high hold time |
Sascha Hauer | eee64b7 | 2016-09-15 10:32:46 +0200 | [diff] [blame] | 695 | * @tCH_min: CE# hold time |
| 696 | * @tCHZ_max: CE# high to output hi-Z |
| 697 | * @tCLH_min: CLE hold time |
| 698 | * @tCLR_min: CLE to RE# delay |
| 699 | * @tCLS_min: CLE setup time |
| 700 | * @tCOH_min: CE# high to output hold |
| 701 | * @tCS_min: CE# setup time |
| 702 | * @tDH_min: Data hold time |
| 703 | * @tDS_min: Data setup time |
| 704 | * @tFEAT_max: Busy time for Set Features and Get Features |
| 705 | * @tIR_min: Output hi-Z to RE# low |
| 706 | * @tITC_max: Interface and Timing Mode Change time |
| 707 | * @tRC_min: RE# cycle time |
| 708 | * @tREA_max: RE# access time |
| 709 | * @tREH_min: RE# high hold time |
| 710 | * @tRHOH_min: RE# high to output hold |
| 711 | * @tRHW_min: RE# high to WE# low |
| 712 | * @tRHZ_max: RE# high to output hi-Z |
| 713 | * @tRLOH_min: RE# low to output hold |
| 714 | * @tRP_min: RE# pulse width |
| 715 | * @tRR_min: Ready to RE# low (data only) |
| 716 | * @tRST_max: Device reset time, measured from the falling edge of R/B# to the |
| 717 | * rising edge of R/B#. |
| 718 | * @tWB_max: WE# high to SR[6] low |
| 719 | * @tWC_min: WE# cycle time |
| 720 | * @tWH_min: WE# high hold time |
| 721 | * @tWHR_min: WE# high to RE# low |
| 722 | * @tWP_min: WE# pulse width |
| 723 | * @tWW_min: WP# transition to WE# low |
| 724 | */ |
| 725 | struct nand_sdr_timings { |
Boris Brezillon | 6d29231 | 2017-07-31 10:31:27 +0200 | [diff] [blame] | 726 | u64 tBERS_max; |
Boris Brezillon | 204e7ec | 2016-10-01 10:24:02 +0200 | [diff] [blame] | 727 | u32 tCCS_min; |
Boris Brezillon | 6d29231 | 2017-07-31 10:31:27 +0200 | [diff] [blame] | 728 | u64 tPROG_max; |
| 729 | u64 tR_max; |
Sascha Hauer | eee64b7 | 2016-09-15 10:32:46 +0200 | [diff] [blame] | 730 | u32 tALH_min; |
| 731 | u32 tADL_min; |
| 732 | u32 tALS_min; |
| 733 | u32 tAR_min; |
| 734 | u32 tCEA_max; |
| 735 | u32 tCEH_min; |
| 736 | u32 tCH_min; |
| 737 | u32 tCHZ_max; |
| 738 | u32 tCLH_min; |
| 739 | u32 tCLR_min; |
| 740 | u32 tCLS_min; |
| 741 | u32 tCOH_min; |
| 742 | u32 tCS_min; |
| 743 | u32 tDH_min; |
| 744 | u32 tDS_min; |
| 745 | u32 tFEAT_max; |
| 746 | u32 tIR_min; |
| 747 | u32 tITC_max; |
| 748 | u32 tRC_min; |
| 749 | u32 tREA_max; |
| 750 | u32 tREH_min; |
| 751 | u32 tRHOH_min; |
| 752 | u32 tRHW_min; |
| 753 | u32 tRHZ_max; |
| 754 | u32 tRLOH_min; |
| 755 | u32 tRP_min; |
| 756 | u32 tRR_min; |
| 757 | u64 tRST_max; |
| 758 | u32 tWB_max; |
| 759 | u32 tWC_min; |
| 760 | u32 tWH_min; |
| 761 | u32 tWHR_min; |
| 762 | u32 tWP_min; |
| 763 | u32 tWW_min; |
| 764 | }; |
| 765 | |
| 766 | /** |
| 767 | * enum nand_data_interface_type - NAND interface timing type |
| 768 | * @NAND_SDR_IFACE: Single Data Rate interface |
| 769 | */ |
| 770 | enum nand_data_interface_type { |
| 771 | NAND_SDR_IFACE, |
| 772 | }; |
| 773 | |
| 774 | /** |
| 775 | * struct nand_data_interface - NAND interface timing |
Mauro Carvalho Chehab | a676688 | 2018-05-07 06:35:52 -0300 | [diff] [blame] | 776 | * @type: type of the timing |
| 777 | * @timings: The timing, type according to @type |
| 778 | * @timings.sdr: Use it when @type is %NAND_SDR_IFACE. |
Sascha Hauer | eee64b7 | 2016-09-15 10:32:46 +0200 | [diff] [blame] | 779 | */ |
| 780 | struct nand_data_interface { |
| 781 | enum nand_data_interface_type type; |
| 782 | union { |
| 783 | struct nand_sdr_timings sdr; |
| 784 | } timings; |
| 785 | }; |
| 786 | |
| 787 | /** |
| 788 | * nand_get_sdr_timings - get SDR timing from data interface |
| 789 | * @conf: The data interface |
| 790 | */ |
| 791 | static inline const struct nand_sdr_timings * |
| 792 | nand_get_sdr_timings(const struct nand_data_interface *conf) |
| 793 | { |
| 794 | if (conf->type != NAND_SDR_IFACE) |
| 795 | return ERR_PTR(-EINVAL); |
| 796 | |
| 797 | return &conf->timings.sdr; |
| 798 | } |
| 799 | |
| 800 | /** |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 801 | * struct nand_manufacturer_ops - NAND Manufacturer operations |
| 802 | * @detect: detect the NAND memory organization and capabilities |
| 803 | * @init: initialize all vendor specific fields (like the ->read_retry() |
| 804 | * implementation) if any. |
| 805 | * @cleanup: the ->init() function may have allocated resources, ->cleanup() |
| 806 | * is here to let vendor specific code release those resources. |
Chris Packham | 00ce4e0 | 2018-06-25 10:44:44 +1200 | [diff] [blame] | 807 | * @fixup_onfi_param_page: apply vendor specific fixups to the ONFI parameter |
| 808 | * page. This is called after the checksum is verified. |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 809 | */ |
| 810 | struct nand_manufacturer_ops { |
| 811 | void (*detect)(struct nand_chip *chip); |
| 812 | int (*init)(struct nand_chip *chip); |
| 813 | void (*cleanup)(struct nand_chip *chip); |
Chris Packham | 00ce4e0 | 2018-06-25 10:44:44 +1200 | [diff] [blame] | 814 | void (*fixup_onfi_param_page)(struct nand_chip *chip, |
| 815 | struct nand_onfi_params *p); |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 816 | }; |
| 817 | |
| 818 | /** |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 819 | * struct nand_op_cmd_instr - Definition of a command instruction |
| 820 | * @opcode: the command to issue in one cycle |
| 821 | */ |
| 822 | struct nand_op_cmd_instr { |
| 823 | u8 opcode; |
| 824 | }; |
| 825 | |
| 826 | /** |
| 827 | * struct nand_op_addr_instr - Definition of an address instruction |
| 828 | * @naddrs: length of the @addrs array |
| 829 | * @addrs: array containing the address cycles to issue |
| 830 | */ |
| 831 | struct nand_op_addr_instr { |
| 832 | unsigned int naddrs; |
| 833 | const u8 *addrs; |
| 834 | }; |
| 835 | |
| 836 | /** |
| 837 | * struct nand_op_data_instr - Definition of a data instruction |
| 838 | * @len: number of data bytes to move |
Mauro Carvalho Chehab | a676688 | 2018-05-07 06:35:52 -0300 | [diff] [blame] | 839 | * @buf: buffer to fill |
| 840 | * @buf.in: buffer to fill when reading from the NAND chip |
| 841 | * @buf.out: buffer to read from when writing to the NAND chip |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 842 | * @force_8bit: force 8-bit access |
| 843 | * |
| 844 | * Please note that "in" and "out" are inverted from the ONFI specification |
| 845 | * and are from the controller perspective, so a "in" is a read from the NAND |
| 846 | * chip while a "out" is a write to the NAND chip. |
| 847 | */ |
| 848 | struct nand_op_data_instr { |
| 849 | unsigned int len; |
| 850 | union { |
| 851 | void *in; |
| 852 | const void *out; |
| 853 | } buf; |
| 854 | bool force_8bit; |
| 855 | }; |
| 856 | |
| 857 | /** |
| 858 | * struct nand_op_waitrdy_instr - Definition of a wait ready instruction |
| 859 | * @timeout_ms: maximum delay while waiting for the ready/busy pin in ms |
| 860 | */ |
| 861 | struct nand_op_waitrdy_instr { |
| 862 | unsigned int timeout_ms; |
| 863 | }; |
| 864 | |
| 865 | /** |
| 866 | * enum nand_op_instr_type - Definition of all instruction types |
| 867 | * @NAND_OP_CMD_INSTR: command instruction |
| 868 | * @NAND_OP_ADDR_INSTR: address instruction |
| 869 | * @NAND_OP_DATA_IN_INSTR: data in instruction |
| 870 | * @NAND_OP_DATA_OUT_INSTR: data out instruction |
| 871 | * @NAND_OP_WAITRDY_INSTR: wait ready instruction |
| 872 | */ |
| 873 | enum nand_op_instr_type { |
| 874 | NAND_OP_CMD_INSTR, |
| 875 | NAND_OP_ADDR_INSTR, |
| 876 | NAND_OP_DATA_IN_INSTR, |
| 877 | NAND_OP_DATA_OUT_INSTR, |
| 878 | NAND_OP_WAITRDY_INSTR, |
| 879 | }; |
| 880 | |
| 881 | /** |
| 882 | * struct nand_op_instr - Instruction object |
| 883 | * @type: the instruction type |
Mauro Carvalho Chehab | a676688 | 2018-05-07 06:35:52 -0300 | [diff] [blame] | 884 | * @ctx: extra data associated to the instruction. You'll have to use the |
| 885 | * appropriate element depending on @type |
| 886 | * @ctx.cmd: use it if @type is %NAND_OP_CMD_INSTR |
| 887 | * @ctx.addr: use it if @type is %NAND_OP_ADDR_INSTR |
| 888 | * @ctx.data: use it if @type is %NAND_OP_DATA_IN_INSTR |
| 889 | * or %NAND_OP_DATA_OUT_INSTR |
| 890 | * @ctx.waitrdy: use it if @type is %NAND_OP_WAITRDY_INSTR |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 891 | * @delay_ns: delay the controller should apply after the instruction has been |
| 892 | * issued on the bus. Most modern controllers have internal timings |
| 893 | * control logic, and in this case, the controller driver can ignore |
| 894 | * this field. |
| 895 | */ |
| 896 | struct nand_op_instr { |
| 897 | enum nand_op_instr_type type; |
| 898 | union { |
| 899 | struct nand_op_cmd_instr cmd; |
| 900 | struct nand_op_addr_instr addr; |
| 901 | struct nand_op_data_instr data; |
| 902 | struct nand_op_waitrdy_instr waitrdy; |
| 903 | } ctx; |
| 904 | unsigned int delay_ns; |
| 905 | }; |
| 906 | |
| 907 | /* |
| 908 | * Special handling must be done for the WAITRDY timeout parameter as it usually |
| 909 | * is either tPROG (after a prog), tR (before a read), tRST (during a reset) or |
| 910 | * tBERS (during an erase) which all of them are u64 values that cannot be |
| 911 | * divided by usual kernel macros and must be handled with the special |
| 912 | * DIV_ROUND_UP_ULL() macro. |
Geert Uytterhoeven | 9f825e7 | 2018-05-14 12:49:37 +0200 | [diff] [blame] | 913 | * |
| 914 | * Cast to type of dividend is needed here to guarantee that the result won't |
| 915 | * be an unsigned long long when the dividend is an unsigned long (or smaller), |
| 916 | * which is what the compiler does when it sees ternary operator with 2 |
| 917 | * different return types (picks the largest type to make sure there's no |
| 918 | * loss). |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 919 | */ |
Geert Uytterhoeven | 9f825e7 | 2018-05-14 12:49:37 +0200 | [diff] [blame] | 920 | #define __DIVIDE(dividend, divisor) ({ \ |
| 921 | (__typeof__(dividend))(sizeof(dividend) <= sizeof(unsigned long) ? \ |
| 922 | DIV_ROUND_UP(dividend, divisor) : \ |
| 923 | DIV_ROUND_UP_ULL(dividend, divisor)); \ |
| 924 | }) |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 925 | #define PSEC_TO_NSEC(x) __DIVIDE(x, 1000) |
| 926 | #define PSEC_TO_MSEC(x) __DIVIDE(x, 1000000000) |
| 927 | |
| 928 | #define NAND_OP_CMD(id, ns) \ |
| 929 | { \ |
| 930 | .type = NAND_OP_CMD_INSTR, \ |
| 931 | .ctx.cmd.opcode = id, \ |
| 932 | .delay_ns = ns, \ |
| 933 | } |
| 934 | |
| 935 | #define NAND_OP_ADDR(ncycles, cycles, ns) \ |
| 936 | { \ |
| 937 | .type = NAND_OP_ADDR_INSTR, \ |
| 938 | .ctx.addr = { \ |
| 939 | .naddrs = ncycles, \ |
| 940 | .addrs = cycles, \ |
| 941 | }, \ |
| 942 | .delay_ns = ns, \ |
| 943 | } |
| 944 | |
| 945 | #define NAND_OP_DATA_IN(l, b, ns) \ |
| 946 | { \ |
| 947 | .type = NAND_OP_DATA_IN_INSTR, \ |
| 948 | .ctx.data = { \ |
| 949 | .len = l, \ |
| 950 | .buf.in = b, \ |
| 951 | .force_8bit = false, \ |
| 952 | }, \ |
| 953 | .delay_ns = ns, \ |
| 954 | } |
| 955 | |
| 956 | #define NAND_OP_DATA_OUT(l, b, ns) \ |
| 957 | { \ |
| 958 | .type = NAND_OP_DATA_OUT_INSTR, \ |
| 959 | .ctx.data = { \ |
| 960 | .len = l, \ |
| 961 | .buf.out = b, \ |
| 962 | .force_8bit = false, \ |
| 963 | }, \ |
| 964 | .delay_ns = ns, \ |
| 965 | } |
| 966 | |
| 967 | #define NAND_OP_8BIT_DATA_IN(l, b, ns) \ |
| 968 | { \ |
| 969 | .type = NAND_OP_DATA_IN_INSTR, \ |
| 970 | .ctx.data = { \ |
| 971 | .len = l, \ |
| 972 | .buf.in = b, \ |
| 973 | .force_8bit = true, \ |
| 974 | }, \ |
| 975 | .delay_ns = ns, \ |
| 976 | } |
| 977 | |
| 978 | #define NAND_OP_8BIT_DATA_OUT(l, b, ns) \ |
| 979 | { \ |
| 980 | .type = NAND_OP_DATA_OUT_INSTR, \ |
| 981 | .ctx.data = { \ |
| 982 | .len = l, \ |
| 983 | .buf.out = b, \ |
| 984 | .force_8bit = true, \ |
| 985 | }, \ |
| 986 | .delay_ns = ns, \ |
| 987 | } |
| 988 | |
| 989 | #define NAND_OP_WAIT_RDY(tout_ms, ns) \ |
| 990 | { \ |
| 991 | .type = NAND_OP_WAITRDY_INSTR, \ |
| 992 | .ctx.waitrdy.timeout_ms = tout_ms, \ |
| 993 | .delay_ns = ns, \ |
| 994 | } |
| 995 | |
| 996 | /** |
| 997 | * struct nand_subop - a sub operation |
| 998 | * @instrs: array of instructions |
| 999 | * @ninstrs: length of the @instrs array |
| 1000 | * @first_instr_start_off: offset to start from for the first instruction |
| 1001 | * of the sub-operation |
| 1002 | * @last_instr_end_off: offset to end at (excluded) for the last instruction |
| 1003 | * of the sub-operation |
| 1004 | * |
| 1005 | * Both @first_instr_start_off and @last_instr_end_off only apply to data or |
| 1006 | * address instructions. |
| 1007 | * |
| 1008 | * When an operation cannot be handled as is by the NAND controller, it will |
| 1009 | * be split by the parser into sub-operations which will be passed to the |
| 1010 | * controller driver. |
| 1011 | */ |
| 1012 | struct nand_subop { |
| 1013 | const struct nand_op_instr *instrs; |
| 1014 | unsigned int ninstrs; |
| 1015 | unsigned int first_instr_start_off; |
| 1016 | unsigned int last_instr_end_off; |
| 1017 | }; |
| 1018 | |
Miquel Raynal | 760c435 | 2018-07-19 00:09:12 +0200 | [diff] [blame] | 1019 | unsigned int nand_subop_get_addr_start_off(const struct nand_subop *subop, |
| 1020 | unsigned int op_id); |
| 1021 | unsigned int nand_subop_get_num_addr_cyc(const struct nand_subop *subop, |
| 1022 | unsigned int op_id); |
| 1023 | unsigned int nand_subop_get_data_start_off(const struct nand_subop *subop, |
| 1024 | unsigned int op_id); |
| 1025 | unsigned int nand_subop_get_data_len(const struct nand_subop *subop, |
| 1026 | unsigned int op_id); |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1027 | |
| 1028 | /** |
| 1029 | * struct nand_op_parser_addr_constraints - Constraints for address instructions |
| 1030 | * @maxcycles: maximum number of address cycles the controller can issue in a |
| 1031 | * single step |
| 1032 | */ |
| 1033 | struct nand_op_parser_addr_constraints { |
| 1034 | unsigned int maxcycles; |
| 1035 | }; |
| 1036 | |
| 1037 | /** |
| 1038 | * struct nand_op_parser_data_constraints - Constraints for data instructions |
| 1039 | * @maxlen: maximum data length that the controller can handle in a single step |
| 1040 | */ |
| 1041 | struct nand_op_parser_data_constraints { |
| 1042 | unsigned int maxlen; |
| 1043 | }; |
| 1044 | |
| 1045 | /** |
| 1046 | * struct nand_op_parser_pattern_elem - One element of a pattern |
| 1047 | * @type: the instructuction type |
| 1048 | * @optional: whether this element of the pattern is optional or mandatory |
Mauro Carvalho Chehab | a676688 | 2018-05-07 06:35:52 -0300 | [diff] [blame] | 1049 | * @ctx: address or data constraint |
| 1050 | * @ctx.addr: address constraint (number of cycles) |
| 1051 | * @ctx.data: data constraint (data length) |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1052 | */ |
| 1053 | struct nand_op_parser_pattern_elem { |
| 1054 | enum nand_op_instr_type type; |
| 1055 | bool optional; |
| 1056 | union { |
| 1057 | struct nand_op_parser_addr_constraints addr; |
| 1058 | struct nand_op_parser_data_constraints data; |
Miquel Raynal | c1a72e2 | 2018-01-19 19:11:27 +0100 | [diff] [blame] | 1059 | } ctx; |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1060 | }; |
| 1061 | |
| 1062 | #define NAND_OP_PARSER_PAT_CMD_ELEM(_opt) \ |
| 1063 | { \ |
| 1064 | .type = NAND_OP_CMD_INSTR, \ |
| 1065 | .optional = _opt, \ |
| 1066 | } |
| 1067 | |
| 1068 | #define NAND_OP_PARSER_PAT_ADDR_ELEM(_opt, _maxcycles) \ |
| 1069 | { \ |
| 1070 | .type = NAND_OP_ADDR_INSTR, \ |
| 1071 | .optional = _opt, \ |
Miquel Raynal | c1a72e2 | 2018-01-19 19:11:27 +0100 | [diff] [blame] | 1072 | .ctx.addr.maxcycles = _maxcycles, \ |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1073 | } |
| 1074 | |
| 1075 | #define NAND_OP_PARSER_PAT_DATA_IN_ELEM(_opt, _maxlen) \ |
| 1076 | { \ |
| 1077 | .type = NAND_OP_DATA_IN_INSTR, \ |
| 1078 | .optional = _opt, \ |
Miquel Raynal | c1a72e2 | 2018-01-19 19:11:27 +0100 | [diff] [blame] | 1079 | .ctx.data.maxlen = _maxlen, \ |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | #define NAND_OP_PARSER_PAT_DATA_OUT_ELEM(_opt, _maxlen) \ |
| 1083 | { \ |
| 1084 | .type = NAND_OP_DATA_OUT_INSTR, \ |
| 1085 | .optional = _opt, \ |
Miquel Raynal | c1a72e2 | 2018-01-19 19:11:27 +0100 | [diff] [blame] | 1086 | .ctx.data.maxlen = _maxlen, \ |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1087 | } |
| 1088 | |
| 1089 | #define NAND_OP_PARSER_PAT_WAITRDY_ELEM(_opt) \ |
| 1090 | { \ |
| 1091 | .type = NAND_OP_WAITRDY_INSTR, \ |
| 1092 | .optional = _opt, \ |
| 1093 | } |
| 1094 | |
| 1095 | /** |
| 1096 | * struct nand_op_parser_pattern - NAND sub-operation pattern descriptor |
| 1097 | * @elems: array of pattern elements |
| 1098 | * @nelems: number of pattern elements in @elems array |
| 1099 | * @exec: the function that will issue a sub-operation |
| 1100 | * |
| 1101 | * A pattern is a list of elements, each element reprensenting one instruction |
| 1102 | * with its constraints. The pattern itself is used by the core to match NAND |
| 1103 | * chip operation with NAND controller operations. |
| 1104 | * Once a match between a NAND controller operation pattern and a NAND chip |
| 1105 | * operation (or a sub-set of a NAND operation) is found, the pattern ->exec() |
| 1106 | * hook is called so that the controller driver can issue the operation on the |
| 1107 | * bus. |
| 1108 | * |
| 1109 | * Controller drivers should declare as many patterns as they support and pass |
| 1110 | * this list of patterns (created with the help of the following macro) to |
| 1111 | * the nand_op_parser_exec_op() helper. |
| 1112 | */ |
| 1113 | struct nand_op_parser_pattern { |
| 1114 | const struct nand_op_parser_pattern_elem *elems; |
| 1115 | unsigned int nelems; |
| 1116 | int (*exec)(struct nand_chip *chip, const struct nand_subop *subop); |
| 1117 | }; |
| 1118 | |
| 1119 | #define NAND_OP_PARSER_PATTERN(_exec, ...) \ |
| 1120 | { \ |
| 1121 | .exec = _exec, \ |
| 1122 | .elems = (struct nand_op_parser_pattern_elem[]) { __VA_ARGS__ }, \ |
| 1123 | .nelems = sizeof((struct nand_op_parser_pattern_elem[]) { __VA_ARGS__ }) / \ |
| 1124 | sizeof(struct nand_op_parser_pattern_elem), \ |
| 1125 | } |
| 1126 | |
| 1127 | /** |
| 1128 | * struct nand_op_parser - NAND controller operation parser descriptor |
| 1129 | * @patterns: array of supported patterns |
| 1130 | * @npatterns: length of the @patterns array |
| 1131 | * |
| 1132 | * The parser descriptor is just an array of supported patterns which will be |
| 1133 | * iterated by nand_op_parser_exec_op() everytime it tries to execute an |
| 1134 | * NAND operation (or tries to determine if a specific operation is supported). |
| 1135 | * |
| 1136 | * It is worth mentioning that patterns will be tested in their declaration |
| 1137 | * order, and the first match will be taken, so it's important to order patterns |
| 1138 | * appropriately so that simple/inefficient patterns are placed at the end of |
| 1139 | * the list. Usually, this is where you put single instruction patterns. |
| 1140 | */ |
| 1141 | struct nand_op_parser { |
| 1142 | const struct nand_op_parser_pattern *patterns; |
| 1143 | unsigned int npatterns; |
| 1144 | }; |
| 1145 | |
| 1146 | #define NAND_OP_PARSER(...) \ |
| 1147 | { \ |
| 1148 | .patterns = (struct nand_op_parser_pattern[]) { __VA_ARGS__ }, \ |
| 1149 | .npatterns = sizeof((struct nand_op_parser_pattern[]) { __VA_ARGS__ }) / \ |
| 1150 | sizeof(struct nand_op_parser_pattern), \ |
| 1151 | } |
| 1152 | |
| 1153 | /** |
| 1154 | * struct nand_operation - NAND operation descriptor |
| 1155 | * @instrs: array of instructions to execute |
| 1156 | * @ninstrs: length of the @instrs array |
| 1157 | * |
| 1158 | * The actual operation structure that will be passed to chip->exec_op(). |
| 1159 | */ |
| 1160 | struct nand_operation { |
| 1161 | const struct nand_op_instr *instrs; |
| 1162 | unsigned int ninstrs; |
| 1163 | }; |
| 1164 | |
| 1165 | #define NAND_OPERATION(_instrs) \ |
| 1166 | { \ |
| 1167 | .instrs = _instrs, \ |
| 1168 | .ninstrs = ARRAY_SIZE(_instrs), \ |
| 1169 | } |
| 1170 | |
| 1171 | int nand_op_parser_exec_op(struct nand_chip *chip, |
| 1172 | const struct nand_op_parser *parser, |
| 1173 | const struct nand_operation *op, bool check_only); |
| 1174 | |
| 1175 | /** |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame^] | 1176 | * struct nand_legacy - NAND chip legacy fields/hooks |
| 1177 | * @IO_ADDR_R: address to read the 8 I/O lines of the flash device |
| 1178 | * @IO_ADDR_W: address to write the 8 I/O lines of the flash device |
| 1179 | * |
| 1180 | * If you look at this structure you're already wrong. These fields/hooks are |
| 1181 | * all deprecated. |
| 1182 | */ |
| 1183 | struct nand_legacy { |
| 1184 | void __iomem *IO_ADDR_R; |
| 1185 | void __iomem *IO_ADDR_W; |
| 1186 | }; |
| 1187 | |
| 1188 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | * struct nand_chip - NAND Private Flash Chip Data |
Boris BREZILLON | ed4f85c | 2015-12-01 12:03:06 +0100 | [diff] [blame] | 1190 | * @mtd: MTD device registered to the MTD framework |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame^] | 1191 | * @legacy: All legacy fields/hooks. If you develop a new driver, |
| 1192 | * don't even try to use any of these fields/hooks, and if |
| 1193 | * you're modifying an existing driver that is using those |
| 1194 | * fields/hooks, you should consider reworking the driver |
| 1195 | * avoid using them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | * @read_byte: [REPLACEABLE] read one byte from the chip |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 1197 | * @write_byte: [REPLACEABLE] write a single byte to the chip on the |
| 1198 | * low 8 I/O lines |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | * @write_buf: [REPLACEABLE] write data from the buffer to the chip |
| 1200 | * @read_buf: [REPLACEABLE] read data from the chip into the buffer |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | * @select_chip: [REPLACEABLE] select chip nr |
Brian Norris | ce15751 | 2013-04-11 01:34:59 -0700 | [diff] [blame] | 1202 | * @block_bad: [REPLACEABLE] check if a block is bad, using OOB markers |
| 1203 | * @block_markbad: [REPLACEABLE] mark a block bad |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1204 | * @cmd_ctrl: [BOARDSPECIFIC] hardwarespecific function for controlling |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 1205 | * ALE/CLE/nCE. Also used to write command and address |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1206 | * @dev_ready: [BOARDSPECIFIC] hardwarespecific function for accessing |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1207 | * device ready/busy line. If set to NULL no access to |
| 1208 | * ready/busy is available and the ready/busy information |
| 1209 | * is read from the chip status register. |
| 1210 | * @cmdfunc: [REPLACEABLE] hardwarespecific function for writing |
| 1211 | * commands to the chip. |
| 1212 | * @waitfunc: [REPLACEABLE] hardwarespecific function for wait on |
| 1213 | * ready. |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1214 | * @exec_op: controller specific method to execute NAND operations. |
| 1215 | * This method replaces ->cmdfunc(), |
| 1216 | * ->{read,write}_{buf,byte,word}(), ->dev_ready() and |
| 1217 | * ->waifunc(). |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1218 | * @setup_read_retry: [FLASHSPECIFIC] flash (vendor) specific function for |
| 1219 | * setting the read-retry mode. Mostly needed for MLC NAND. |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1220 | * @ecc: [BOARDSPECIFIC] ECC control structure |
Masahiro Yamada | 477544c | 2017-03-30 17:15:05 +0900 | [diff] [blame] | 1221 | * @buf_align: minimum buffer alignment required by a platform |
Miquel Raynal | 7da4513 | 2018-07-17 09:08:02 +0200 | [diff] [blame] | 1222 | * @dummy_controller: dummy controller implementation for drivers that can |
| 1223 | * only control a single chip |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 1224 | * @erase: [REPLACEABLE] erase function |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1225 | * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transferring |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1226 | * data from array to read regs (tR). |
Thomas Gleixner | 2c0a2be | 2006-05-23 11:50:56 +0200 | [diff] [blame] | 1227 | * @state: [INTERN] the current state of the NAND device |
Brian Norris | e9195ed | 2011-08-30 18:45:43 -0700 | [diff] [blame] | 1228 | * @oob_poi: "poison value buffer," used for laying out OOB data |
| 1229 | * before writing |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1230 | * @page_shift: [INTERN] number of address bits in a page (column |
| 1231 | * address bits). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | * @phys_erase_shift: [INTERN] number of address bits in a physical eraseblock |
| 1233 | * @bbt_erase_shift: [INTERN] number of address bits in a bbt entry |
| 1234 | * @chip_shift: [INTERN] number of address bits in one chip |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1235 | * @options: [BOARDSPECIFIC] various chip options. They can partly |
| 1236 | * be set to inform nand_scan about special functionality. |
| 1237 | * See the defines for further explanation. |
Brian Norris | 5fb1549 | 2011-05-31 16:31:21 -0700 | [diff] [blame] | 1238 | * @bbt_options: [INTERN] bad block specific options. All options used |
| 1239 | * here must come from bbm.h. By default, these options |
| 1240 | * will be copied to the appropriate nand_bbt_descr's. |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1241 | * @badblockpos: [INTERN] position of the bad block marker in the oob |
| 1242 | * area. |
Brian Norris | 661a083 | 2012-01-13 18:11:50 -0800 | [diff] [blame] | 1243 | * @badblockbits: [INTERN] minimum number of set bits in a good block's |
| 1244 | * bad block marker position; i.e., BBM == 11110111b is |
| 1245 | * not bad when badblockbits == 7 |
Huang Shijie | 7db906b | 2013-09-25 14:58:11 +0800 | [diff] [blame] | 1246 | * @bits_per_cell: [INTERN] number of bits per cell. i.e., 1 means SLC. |
Huang Shijie | 4cfeca2 | 2013-05-17 11:17:25 +0800 | [diff] [blame] | 1247 | * @ecc_strength_ds: [INTERN] ECC correctability from the datasheet. |
| 1248 | * Minimum amount of bit errors per @ecc_step_ds guaranteed |
| 1249 | * to be correctable. If unknown, set to zero. |
| 1250 | * @ecc_step_ds: [INTERN] ECC step required by the @ecc_strength_ds, |
Mauro Carvalho Chehab | b6f6c29 | 2017-05-13 07:40:36 -0300 | [diff] [blame] | 1251 | * also from the datasheet. It is the recommended ECC step |
Huang Shijie | 4cfeca2 | 2013-05-17 11:17:25 +0800 | [diff] [blame] | 1252 | * size, if known; if unknown, set to zero. |
Boris BREZILLON | 57a94e2 | 2014-09-22 20:11:50 +0200 | [diff] [blame] | 1253 | * @onfi_timing_mode_default: [INTERN] default ONFI timing mode. This field is |
Boris Brezillon | d8e725d | 2016-09-15 10:32:50 +0200 | [diff] [blame] | 1254 | * set to the actually used ONFI mode if the chip is |
| 1255 | * ONFI compliant or deduced from the datasheet if |
| 1256 | * the NAND chip is not ONFI compliant. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | * @numchips: [INTERN] number of physical chips |
| 1258 | * @chipsize: [INTERN] the size of one chip for multichip arrays |
| 1259 | * @pagemask: [INTERN] page number mask = number of (pages / chip) - 1 |
Masahiro Yamada | c0313b9 | 2017-12-05 17:47:16 +0900 | [diff] [blame] | 1260 | * @data_buf: [INTERN] buffer for data, size is (page size + oobsize). |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1261 | * @pagebuf: [INTERN] holds the pagenumber which is currently in |
| 1262 | * data_buf. |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1263 | * @pagebuf_bitflips: [INTERN] holds the bitflip count for the page which is |
| 1264 | * currently in data_buf. |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 1265 | * @subpagesize: [INTERN] holds the subpagesize |
Boris Brezillon | 7f501f0 | 2016-05-24 19:20:05 +0200 | [diff] [blame] | 1266 | * @id: [INTERN] holds NAND ID |
Miquel Raynal | f4531b2 | 2018-03-19 14:47:26 +0100 | [diff] [blame] | 1267 | * @parameters: [INTERN] holds generic parameters under an easily |
| 1268 | * readable form. |
Zach Brown | ceb374e | 2017-01-10 13:30:19 -0600 | [diff] [blame] | 1269 | * @max_bb_per_die: [INTERN] the max number of bad blocks each die of a |
| 1270 | * this nand device will encounter their life times. |
| 1271 | * @blocks_per_die: [INTERN] The number of PEBs in a die |
Randy Dunlap | 61babe9 | 2016-11-21 18:32:08 -0800 | [diff] [blame] | 1272 | * @data_interface: [INTERN] NAND interface timing information |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1273 | * @read_retries: [INTERN] the number of read retry modes supported |
Miquel Raynal | b958758 | 2018-03-19 14:47:19 +0100 | [diff] [blame] | 1274 | * @set_features: [REPLACEABLE] set the NAND chip features |
| 1275 | * @get_features: [REPLACEABLE] get the NAND chip features |
Boris Brezillon | 104e442 | 2017-03-16 09:35:58 +0100 | [diff] [blame] | 1276 | * @setup_data_interface: [OPTIONAL] setup the data interface and timing. If |
| 1277 | * chipnr is set to %NAND_DATA_IFACE_CHECK_ONLY this |
| 1278 | * means the configuration should not be applied but |
| 1279 | * only checked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | * @bbt: [INTERN] bad block table pointer |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1281 | * @bbt_td: [REPLACEABLE] bad block table descriptor for flash |
| 1282 | * lookup. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | * @bbt_md: [REPLACEABLE] bad block table mirror descriptor |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1284 | * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for initial |
| 1285 | * bad block scan. |
| 1286 | * @controller: [REPLACEABLE] a pointer to a hardware controller |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1287 | * structure which is shared among multiple independent |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1288 | * devices. |
Brian Norris | 32c8db8 | 2011-08-23 17:17:35 -0700 | [diff] [blame] | 1289 | * @priv: [OPTIONAL] pointer to private chip data |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 1290 | * @manufacturer: [INTERN] Contains manufacturer information |
Mauro Carvalho Chehab | a676688 | 2018-05-07 06:35:52 -0300 | [diff] [blame] | 1291 | * @manufacturer.desc: [INTERN] Contains manufacturer's description |
| 1292 | * @manufacturer.priv: [INTERN] Contains manufacturer private information |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | */ |
Thomas Gleixner | 61ecfa8 | 2005-11-07 11:15:31 +0000 | [diff] [blame] | 1294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | struct nand_chip { |
Boris BREZILLON | ed4f85c | 2015-12-01 12:03:06 +0100 | [diff] [blame] | 1296 | struct mtd_info mtd; |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame^] | 1297 | |
| 1298 | struct nand_legacy legacy; |
Thomas Gleixner | 61ecfa8 | 2005-11-07 11:15:31 +0000 | [diff] [blame] | 1299 | |
Boris Brezillon | 7e53432 | 2018-09-06 14:05:22 +0200 | [diff] [blame] | 1300 | uint8_t (*read_byte)(struct nand_chip *chip); |
Boris Brezillon | c0739d8 | 2018-09-06 14:05:23 +0200 | [diff] [blame] | 1301 | void (*write_byte)(struct nand_chip *chip, uint8_t byte); |
| 1302 | void (*write_buf)(struct nand_chip *chip, const uint8_t *buf, int len); |
Boris Brezillon | 7e53432 | 2018-09-06 14:05:22 +0200 | [diff] [blame] | 1303 | void (*read_buf)(struct nand_chip *chip, uint8_t *buf, int len); |
Boris Brezillon | 758b56f | 2018-09-06 14:05:24 +0200 | [diff] [blame] | 1304 | void (*select_chip)(struct nand_chip *chip, int cs); |
Boris Brezillon | c17556f | 2018-09-06 14:05:25 +0200 | [diff] [blame] | 1305 | int (*block_bad)(struct nand_chip *chip, loff_t ofs); |
| 1306 | int (*block_markbad)(struct nand_chip *chip, loff_t ofs); |
Boris Brezillon | 0f808c1 | 2018-09-06 14:05:26 +0200 | [diff] [blame] | 1307 | void (*cmd_ctrl)(struct nand_chip *chip, int dat, unsigned int ctrl); |
Boris Brezillon | 50a487e | 2018-09-06 14:05:27 +0200 | [diff] [blame] | 1308 | int (*dev_ready)(struct nand_chip *chip); |
Boris Brezillon | 5295cf2 | 2018-09-06 14:05:28 +0200 | [diff] [blame] | 1309 | void (*cmdfunc)(struct nand_chip *chip, unsigned command, int column, |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1310 | int page_addr); |
Boris Brezillon | f1d4694 | 2018-09-06 14:05:29 +0200 | [diff] [blame] | 1311 | int (*waitfunc)(struct nand_chip *chip); |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1312 | int (*exec_op)(struct nand_chip *chip, |
| 1313 | const struct nand_operation *op, |
| 1314 | bool check_only); |
Boris Brezillon | a2098a9 | 2018-09-06 14:05:30 +0200 | [diff] [blame] | 1315 | int (*erase)(struct nand_chip *chip, int page); |
Boris Brezillon | aa36ff2 | 2018-09-06 14:05:31 +0200 | [diff] [blame] | 1316 | int (*set_features)(struct nand_chip *chip, int feature_addr, |
| 1317 | uint8_t *subfeature_para); |
| 1318 | int (*get_features)(struct nand_chip *chip, int feature_addr, |
| 1319 | uint8_t *subfeature_para); |
Boris Brezillon | 2e7f1ce | 2018-09-06 14:05:32 +0200 | [diff] [blame] | 1320 | int (*setup_read_retry)(struct nand_chip *chip, int retry_mode); |
Boris Brezillon | 858838b | 2018-09-06 14:05:33 +0200 | [diff] [blame] | 1321 | int (*setup_data_interface)(struct nand_chip *chip, int chipnr, |
Boris Brezillon | 104e442 | 2017-03-16 09:35:58 +0100 | [diff] [blame] | 1322 | const struct nand_data_interface *conf); |
Boris Brezillon | d8e725d | 2016-09-15 10:32:50 +0200 | [diff] [blame] | 1323 | |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1324 | int chip_delay; |
| 1325 | unsigned int options; |
Brian Norris | 5fb1549 | 2011-05-31 16:31:21 -0700 | [diff] [blame] | 1326 | unsigned int bbt_options; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1327 | |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1328 | int page_shift; |
| 1329 | int phys_erase_shift; |
| 1330 | int bbt_erase_shift; |
| 1331 | int chip_shift; |
| 1332 | int numchips; |
| 1333 | uint64_t chipsize; |
| 1334 | int pagemask; |
Masahiro Yamada | c0313b9 | 2017-12-05 17:47:16 +0900 | [diff] [blame] | 1335 | u8 *data_buf; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1336 | int pagebuf; |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1337 | unsigned int pagebuf_bitflips; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1338 | int subpagesize; |
Huang Shijie | 7db906b | 2013-09-25 14:58:11 +0800 | [diff] [blame] | 1339 | uint8_t bits_per_cell; |
Huang Shijie | 4cfeca2 | 2013-05-17 11:17:25 +0800 | [diff] [blame] | 1340 | uint16_t ecc_strength_ds; |
| 1341 | uint16_t ecc_step_ds; |
Boris BREZILLON | 57a94e2 | 2014-09-22 20:11:50 +0200 | [diff] [blame] | 1342 | int onfi_timing_mode_default; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1343 | int badblockpos; |
| 1344 | int badblockbits; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1345 | |
Boris Brezillon | 7f501f0 | 2016-05-24 19:20:05 +0200 | [diff] [blame] | 1346 | struct nand_id id; |
Miquel Raynal | f4531b2 | 2018-03-19 14:47:26 +0100 | [diff] [blame] | 1347 | struct nand_parameters parameters; |
Zach Brown | ceb374e | 2017-01-10 13:30:19 -0600 | [diff] [blame] | 1348 | u16 max_bb_per_die; |
| 1349 | u32 blocks_per_die; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 1350 | |
Miquel Raynal | 17fa804 | 2017-11-30 18:01:31 +0100 | [diff] [blame] | 1351 | struct nand_data_interface data_interface; |
Boris Brezillon | d8e725d | 2016-09-15 10:32:50 +0200 | [diff] [blame] | 1352 | |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1353 | int read_retries; |
| 1354 | |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1355 | flstate_t state; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1356 | |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1357 | uint8_t *oob_poi; |
Miquel Raynal | 7da4513 | 2018-07-17 09:08:02 +0200 | [diff] [blame] | 1358 | struct nand_controller *controller; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1359 | |
| 1360 | struct nand_ecc_ctrl ecc; |
Masahiro Yamada | 477544c | 2017-03-30 17:15:05 +0900 | [diff] [blame] | 1361 | unsigned long buf_align; |
Miquel Raynal | 7da4513 | 2018-07-17 09:08:02 +0200 | [diff] [blame] | 1362 | struct nand_controller dummy_controller; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1363 | |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1364 | uint8_t *bbt; |
| 1365 | struct nand_bbt_descr *bbt_td; |
| 1366 | struct nand_bbt_descr *bbt_md; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1367 | |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1368 | struct nand_bbt_descr *badblock_pattern; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1369 | |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1370 | void *priv; |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 1371 | |
| 1372 | struct { |
| 1373 | const struct nand_manufacturer *desc; |
| 1374 | void *priv; |
| 1375 | } manufacturer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | }; |
| 1377 | |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1378 | static inline int nand_exec_op(struct nand_chip *chip, |
| 1379 | const struct nand_operation *op) |
| 1380 | { |
| 1381 | if (!chip->exec_op) |
| 1382 | return -ENOTSUPP; |
| 1383 | |
| 1384 | return chip->exec_op(chip, op, false); |
| 1385 | } |
| 1386 | |
Boris Brezillon | 41b207a | 2016-02-03 19:06:15 +0100 | [diff] [blame] | 1387 | extern const struct mtd_ooblayout_ops nand_ooblayout_sp_ops; |
| 1388 | extern const struct mtd_ooblayout_ops nand_ooblayout_lp_ops; |
| 1389 | |
Brian Norris | 28b8b26b | 2015-10-30 20:33:20 -0700 | [diff] [blame] | 1390 | static inline void nand_set_flash_node(struct nand_chip *chip, |
| 1391 | struct device_node *np) |
| 1392 | { |
Boris BREZILLON | 29574ed | 2015-12-10 09:00:38 +0100 | [diff] [blame] | 1393 | mtd_set_of_node(&chip->mtd, np); |
Brian Norris | 28b8b26b | 2015-10-30 20:33:20 -0700 | [diff] [blame] | 1394 | } |
| 1395 | |
| 1396 | static inline struct device_node *nand_get_flash_node(struct nand_chip *chip) |
| 1397 | { |
Boris BREZILLON | 29574ed | 2015-12-10 09:00:38 +0100 | [diff] [blame] | 1398 | return mtd_get_of_node(&chip->mtd); |
Brian Norris | 28b8b26b | 2015-10-30 20:33:20 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
Boris BREZILLON | 9eba47d | 2015-11-16 14:37:35 +0100 | [diff] [blame] | 1401 | static inline struct nand_chip *mtd_to_nand(struct mtd_info *mtd) |
| 1402 | { |
Boris BREZILLON | 2d3b77b | 2015-12-10 09:00:33 +0100 | [diff] [blame] | 1403 | return container_of(mtd, struct nand_chip, mtd); |
Boris BREZILLON | 9eba47d | 2015-11-16 14:37:35 +0100 | [diff] [blame] | 1404 | } |
| 1405 | |
Boris BREZILLON | ffd014f | 2015-12-01 12:03:07 +0100 | [diff] [blame] | 1406 | static inline struct mtd_info *nand_to_mtd(struct nand_chip *chip) |
| 1407 | { |
| 1408 | return &chip->mtd; |
| 1409 | } |
| 1410 | |
Boris BREZILLON | d39ddbd | 2015-12-10 09:00:39 +0100 | [diff] [blame] | 1411 | static inline void *nand_get_controller_data(struct nand_chip *chip) |
| 1412 | { |
| 1413 | return chip->priv; |
| 1414 | } |
| 1415 | |
| 1416 | static inline void nand_set_controller_data(struct nand_chip *chip, void *priv) |
| 1417 | { |
| 1418 | chip->priv = priv; |
| 1419 | } |
| 1420 | |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 1421 | static inline void nand_set_manufacturer_data(struct nand_chip *chip, |
| 1422 | void *priv) |
| 1423 | { |
| 1424 | chip->manufacturer.priv = priv; |
| 1425 | } |
| 1426 | |
| 1427 | static inline void *nand_get_manufacturer_data(struct nand_chip *chip) |
| 1428 | { |
| 1429 | return chip->manufacturer.priv; |
| 1430 | } |
| 1431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | /* |
| 1433 | * NAND Flash Manufacturer ID Codes |
| 1434 | */ |
| 1435 | #define NAND_MFR_TOSHIBA 0x98 |
Rafał Miłecki | 1c7fe6b | 2016-06-09 20:10:11 +0200 | [diff] [blame] | 1436 | #define NAND_MFR_ESMT 0xc8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | #define NAND_MFR_SAMSUNG 0xec |
| 1438 | #define NAND_MFR_FUJITSU 0x04 |
| 1439 | #define NAND_MFR_NATIONAL 0x8f |
| 1440 | #define NAND_MFR_RENESAS 0x07 |
| 1441 | #define NAND_MFR_STMICRO 0x20 |
Thomas Gleixner | 2c0a2be | 2006-05-23 11:50:56 +0200 | [diff] [blame] | 1442 | #define NAND_MFR_HYNIX 0xad |
sshahrom@micron.com | 8c60e54 | 2007-03-21 18:48:02 -0700 | [diff] [blame] | 1443 | #define NAND_MFR_MICRON 0x2c |
Steven J. Hill | 30eb0db | 2007-07-18 23:29:46 -0500 | [diff] [blame] | 1444 | #define NAND_MFR_AMD 0x01 |
Brian Norris | c1257b4 | 2011-11-02 13:34:42 -0700 | [diff] [blame] | 1445 | #define NAND_MFR_MACRONIX 0xc2 |
Brian Norris | b1ccfab | 2012-05-22 07:30:47 -0700 | [diff] [blame] | 1446 | #define NAND_MFR_EON 0x92 |
Huang Shijie | 3f97c6f | 2013-12-26 15:37:45 +0800 | [diff] [blame] | 1447 | #define NAND_MFR_SANDISK 0x45 |
Huang Shijie | 4968a41 | 2014-01-03 16:50:39 +0800 | [diff] [blame] | 1448 | #define NAND_MFR_INTEL 0x89 |
Brian Norris | 641519c | 2014-11-04 11:32:45 -0800 | [diff] [blame] | 1449 | #define NAND_MFR_ATO 0x9b |
Andrey Jr. Melnikov | a4077ce | 2016-12-08 19:57:08 +0300 | [diff] [blame] | 1450 | #define NAND_MFR_WINBOND 0xef |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | |
Artem Bityutskiy | 53552d2 | 2013-03-14 09:57:23 +0200 | [diff] [blame] | 1452 | |
Artem Bityutskiy | 8dbfae1 | 2013-03-04 15:39:18 +0200 | [diff] [blame] | 1453 | /* |
| 1454 | * A helper for defining older NAND chips where the second ID byte fully |
| 1455 | * defined the chip, including the geometry (chip size, eraseblock size, page |
Artem Bityutskiy | 5bfa9b7 | 2013-03-19 10:29:26 +0200 | [diff] [blame] | 1456 | * size). All these chips have 512 bytes NAND page size. |
Artem Bityutskiy | 8dbfae1 | 2013-03-04 15:39:18 +0200 | [diff] [blame] | 1457 | */ |
Artem Bityutskiy | 5bfa9b7 | 2013-03-19 10:29:26 +0200 | [diff] [blame] | 1458 | #define LEGACY_ID_NAND(nm, devid, chipsz, erasesz, opts) \ |
| 1459 | { .name = (nm), {{ .dev_id = (devid) }}, .pagesize = 512, \ |
| 1460 | .chipsize = (chipsz), .erasesize = (erasesz), .options = (opts) } |
Artem Bityutskiy | 8dbfae1 | 2013-03-04 15:39:18 +0200 | [diff] [blame] | 1461 | |
| 1462 | /* |
| 1463 | * A helper for defining newer chips which report their page size and |
| 1464 | * eraseblock size via the extended ID bytes. |
| 1465 | * |
| 1466 | * The real difference between LEGACY_ID_NAND and EXTENDED_ID_NAND is that with |
| 1467 | * EXTENDED_ID_NAND, manufacturers overloaded the same device ID so that the |
| 1468 | * device ID now only represented a particular total chip size (and voltage, |
| 1469 | * buswidth), and the page size, eraseblock size, and OOB size could vary while |
| 1470 | * using the same device ID. |
| 1471 | */ |
Artem Bityutskiy | 8e12b47 | 2013-03-04 16:26:56 +0200 | [diff] [blame] | 1472 | #define EXTENDED_ID_NAND(nm, devid, chipsz, opts) \ |
| 1473 | { .name = (nm), {{ .dev_id = (devid) }}, .chipsize = (chipsz), \ |
Artem Bityutskiy | 8dbfae1 | 2013-03-04 15:39:18 +0200 | [diff] [blame] | 1474 | .options = (opts) } |
| 1475 | |
Huang Shijie | 2dc0bdd | 2013-05-17 11:17:31 +0800 | [diff] [blame] | 1476 | #define NAND_ECC_INFO(_strength, _step) \ |
| 1477 | { .strength_ds = (_strength), .step_ds = (_step) } |
| 1478 | #define NAND_ECC_STRENGTH(type) ((type)->ecc.strength_ds) |
| 1479 | #define NAND_ECC_STEP(type) ((type)->ecc.step_ds) |
| 1480 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | /** |
| 1482 | * struct nand_flash_dev - NAND Flash Device ID Structure |
Artem Bityutskiy | 68aa352de | 2013-03-04 16:05:00 +0200 | [diff] [blame] | 1483 | * @name: a human-readable name of the NAND chip |
| 1484 | * @dev_id: the device ID (the second byte of the full chip ID array) |
Artem Bityutskiy | 8e12b47 | 2013-03-04 16:26:56 +0200 | [diff] [blame] | 1485 | * @mfr_id: manufecturer ID part of the full chip ID array (refers the same |
| 1486 | * memory address as @id[0]) |
| 1487 | * @dev_id: device ID part of the full chip ID array (refers the same memory |
| 1488 | * address as @id[1]) |
| 1489 | * @id: full device ID array |
Artem Bityutskiy | 68aa352de | 2013-03-04 16:05:00 +0200 | [diff] [blame] | 1490 | * @pagesize: size of the NAND page in bytes; if 0, then the real page size (as |
| 1491 | * well as the eraseblock size) is determined from the extended NAND |
| 1492 | * chip ID array) |
Artem Bityutskiy | 68aa352de | 2013-03-04 16:05:00 +0200 | [diff] [blame] | 1493 | * @chipsize: total chip size in MiB |
Artem Bityutskiy | ecb42fe | 2013-03-13 13:45:00 +0200 | [diff] [blame] | 1494 | * @erasesize: eraseblock size in bytes (determined from the extended ID if 0) |
Artem Bityutskiy | 68aa352de | 2013-03-04 16:05:00 +0200 | [diff] [blame] | 1495 | * @options: stores various chip bit options |
Huang Shijie | f22d5f6 | 2013-03-15 11:00:59 +0800 | [diff] [blame] | 1496 | * @id_len: The valid length of the @id. |
| 1497 | * @oobsize: OOB size |
Randy Dunlap | 7b7d898 | 2014-07-27 14:31:53 -0700 | [diff] [blame] | 1498 | * @ecc: ECC correctability and step information from the datasheet. |
Huang Shijie | 2dc0bdd | 2013-05-17 11:17:31 +0800 | [diff] [blame] | 1499 | * @ecc.strength_ds: The ECC correctability from the datasheet, same as the |
| 1500 | * @ecc_strength_ds in nand_chip{}. |
| 1501 | * @ecc.step_ds: The ECC step required by the @ecc.strength_ds, same as the |
| 1502 | * @ecc_step_ds in nand_chip{}, also from the datasheet. |
| 1503 | * For example, the "4bit ECC for each 512Byte" can be set with |
| 1504 | * NAND_ECC_INFO(4, 512). |
Boris BREZILLON | 57a94e2 | 2014-09-22 20:11:50 +0200 | [diff] [blame] | 1505 | * @onfi_timing_mode_default: the default ONFI timing mode entered after a NAND |
| 1506 | * reset. Should be deduced from timings described |
| 1507 | * in the datasheet. |
| 1508 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | */ |
| 1510 | struct nand_flash_dev { |
| 1511 | char *name; |
Artem Bityutskiy | 8e12b47 | 2013-03-04 16:26:56 +0200 | [diff] [blame] | 1512 | union { |
| 1513 | struct { |
| 1514 | uint8_t mfr_id; |
| 1515 | uint8_t dev_id; |
| 1516 | }; |
Artem Bityutskiy | 53552d2 | 2013-03-14 09:57:23 +0200 | [diff] [blame] | 1517 | uint8_t id[NAND_MAX_ID_LEN]; |
Artem Bityutskiy | 8e12b47 | 2013-03-04 16:26:56 +0200 | [diff] [blame] | 1518 | }; |
Artem Bityutskiy | ecb42fe | 2013-03-13 13:45:00 +0200 | [diff] [blame] | 1519 | unsigned int pagesize; |
| 1520 | unsigned int chipsize; |
| 1521 | unsigned int erasesize; |
| 1522 | unsigned int options; |
Huang Shijie | f22d5f6 | 2013-03-15 11:00:59 +0800 | [diff] [blame] | 1523 | uint16_t id_len; |
| 1524 | uint16_t oobsize; |
Huang Shijie | 2dc0bdd | 2013-05-17 11:17:31 +0800 | [diff] [blame] | 1525 | struct { |
| 1526 | uint16_t strength_ds; |
| 1527 | uint16_t step_ds; |
| 1528 | } ecc; |
Boris BREZILLON | 57a94e2 | 2014-09-22 20:11:50 +0200 | [diff] [blame] | 1529 | int onfi_timing_mode_default; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | }; |
| 1531 | |
| 1532 | /** |
Boris Brezillon | 8cfb9ab | 2017-01-07 15:15:57 +0100 | [diff] [blame] | 1533 | * struct nand_manufacturer - NAND Flash Manufacturer structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | * @name: Manufacturer name |
Thomas Gleixner | 2c0a2be | 2006-05-23 11:50:56 +0200 | [diff] [blame] | 1535 | * @id: manufacturer ID code of device. |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 1536 | * @ops: manufacturer operations |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | */ |
Boris Brezillon | 8cfb9ab | 2017-01-07 15:15:57 +0100 | [diff] [blame] | 1538 | struct nand_manufacturer { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | int id; |
Sebastian Andrzej Siewior | a0491fc | 2010-10-05 12:41:01 +0200 | [diff] [blame] | 1540 | char *name; |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 1541 | const struct nand_manufacturer_ops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | }; |
| 1543 | |
Boris Brezillon | bcc678c | 2017-01-07 15:48:25 +0100 | [diff] [blame] | 1544 | const struct nand_manufacturer *nand_get_manufacturer(u8 id); |
| 1545 | |
| 1546 | static inline const char * |
| 1547 | nand_manufacturer_name(const struct nand_manufacturer *manufacturer) |
| 1548 | { |
| 1549 | return manufacturer ? manufacturer->name : "Unknown"; |
| 1550 | } |
| 1551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | extern struct nand_flash_dev nand_flash_ids[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | |
Boris Brezillon | 9b2d61f | 2016-06-08 10:34:57 +0200 | [diff] [blame] | 1554 | extern const struct nand_manufacturer_ops toshiba_nand_manuf_ops; |
Boris Brezillon | c51d0ac | 2016-06-08 10:22:19 +0200 | [diff] [blame] | 1555 | extern const struct nand_manufacturer_ops samsung_nand_manuf_ops; |
Boris Brezillon | 01389b6 | 2016-06-08 10:30:18 +0200 | [diff] [blame] | 1556 | extern const struct nand_manufacturer_ops hynix_nand_manuf_ops; |
Boris Brezillon | 10d4e75 | 2016-06-08 10:38:57 +0200 | [diff] [blame] | 1557 | extern const struct nand_manufacturer_ops micron_nand_manuf_ops; |
Boris Brezillon | 229204d | 2016-06-08 10:42:23 +0200 | [diff] [blame] | 1558 | extern const struct nand_manufacturer_ops amd_nand_manuf_ops; |
Boris Brezillon | 3b5206f | 2016-06-08 10:43:26 +0200 | [diff] [blame] | 1559 | extern const struct nand_manufacturer_ops macronix_nand_manuf_ops; |
Boris Brezillon | c51d0ac | 2016-06-08 10:22:19 +0200 | [diff] [blame] | 1560 | |
Boris Brezillon | 44b07b9 | 2018-07-05 12:27:30 +0200 | [diff] [blame] | 1561 | int nand_create_bbt(struct nand_chip *chip); |
Boris Brezillon | 5740d4c | 2018-09-06 14:05:34 +0200 | [diff] [blame] | 1562 | int nand_markbad_bbt(struct nand_chip *chip, loff_t offs); |
| 1563 | int nand_isreserved_bbt(struct nand_chip *chip, loff_t offs); |
| 1564 | int nand_isbad_bbt(struct nand_chip *chip, loff_t offs, int allowbbt); |
Boris Brezillon | e4cdf9c | 2018-09-06 14:05:35 +0200 | [diff] [blame] | 1565 | int nand_erase_nand(struct nand_chip *chip, struct erase_info *instr, |
Sascha Hauer | 7902259 | 2016-09-07 14:21:42 +0200 | [diff] [blame] | 1566 | int allowbbt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1568 | /** |
| 1569 | * struct platform_nand_chip - chip level device structure |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1570 | * @nr_chips: max. number of chips to scan for |
Randy Dunlap | 844d3b4 | 2006-06-28 21:48:27 -0700 | [diff] [blame] | 1571 | * @chip_offset: chip number offset |
Thomas Gleixner | 8be834f | 2006-05-27 20:05:26 +0200 | [diff] [blame] | 1572 | * @nr_partitions: number of partitions pointed to by partitions (or zero) |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1573 | * @partitions: mtd partition list |
| 1574 | * @chip_delay: R/B delay value in us |
| 1575 | * @options: Option flags, e.g. 16bit buswidth |
Brian Norris | a40f734 | 2011-05-31 16:31:22 -0700 | [diff] [blame] | 1576 | * @bbt_options: BBT option flags, e.g. NAND_BBT_USE_FLASH |
Vitaly Wool | 972edcb | 2007-05-06 18:46:57 +0400 | [diff] [blame] | 1577 | * @part_probe_types: NULL-terminated array of probe types |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1578 | */ |
| 1579 | struct platform_nand_chip { |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1580 | int nr_chips; |
| 1581 | int chip_offset; |
| 1582 | int nr_partitions; |
| 1583 | struct mtd_partition *partitions; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1584 | int chip_delay; |
| 1585 | unsigned int options; |
Brian Norris | a40f734 | 2011-05-31 16:31:22 -0700 | [diff] [blame] | 1586 | unsigned int bbt_options; |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1587 | const char **part_probe_types; |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1588 | }; |
| 1589 | |
H Hartley Sweeten | bf95efd | 2009-05-12 13:46:58 -0700 | [diff] [blame] | 1590 | /* Keep gcc happy */ |
| 1591 | struct platform_device; |
| 1592 | |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1593 | /** |
| 1594 | * struct platform_nand_ctrl - controller level device structure |
H Hartley Sweeten | bf95efd | 2009-05-12 13:46:58 -0700 | [diff] [blame] | 1595 | * @probe: platform specific function to probe/setup hardware |
| 1596 | * @remove: platform specific function to remove/teardown hardware |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1597 | * @dev_ready: platform specific function to read ready/busy pin |
| 1598 | * @select_chip: platform specific chip select function |
Vitaly Wool | 972edcb | 2007-05-06 18:46:57 +0400 | [diff] [blame] | 1599 | * @cmd_ctrl: platform specific function for controlling |
| 1600 | * ALE/CLE/nCE. Also used to write command and address |
Alexander Clouter | d6fed9e | 2009-05-11 19:28:01 +0100 | [diff] [blame] | 1601 | * @write_buf: platform specific function for write buffer |
| 1602 | * @read_buf: platform specific function for read buffer |
Randy Dunlap | 844d3b4 | 2006-06-28 21:48:27 -0700 | [diff] [blame] | 1603 | * @priv: private data to transport driver specific settings |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1604 | * |
| 1605 | * All fields are optional and depend on the hardware driver requirements |
| 1606 | */ |
| 1607 | struct platform_nand_ctrl { |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1608 | int (*probe)(struct platform_device *pdev); |
| 1609 | void (*remove)(struct platform_device *pdev); |
Boris Brezillon | 47bd59e | 2018-09-06 14:05:13 +0200 | [diff] [blame] | 1610 | int (*dev_ready)(struct nand_chip *chip); |
| 1611 | void (*select_chip)(struct nand_chip *chip, int cs); |
| 1612 | void (*cmd_ctrl)(struct nand_chip *chip, int dat, unsigned int ctrl); |
| 1613 | void (*write_buf)(struct nand_chip *chip, const uint8_t *buf, int len); |
| 1614 | void (*read_buf)(struct nand_chip *chip, uint8_t *buf, int len); |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1615 | void *priv; |
Thomas Gleixner | 41796c2 | 2006-05-23 11:38:59 +0200 | [diff] [blame] | 1616 | }; |
| 1617 | |
Vitaly Wool | 972edcb | 2007-05-06 18:46:57 +0400 | [diff] [blame] | 1618 | /** |
| 1619 | * struct platform_nand_data - container structure for platform-specific data |
| 1620 | * @chip: chip level chip structure |
| 1621 | * @ctrl: controller level device structure |
| 1622 | */ |
| 1623 | struct platform_nand_data { |
Sebastian Andrzej Siewior | b46daf7 | 2010-10-07 21:48:27 +0200 | [diff] [blame] | 1624 | struct platform_nand_chip chip; |
| 1625 | struct platform_nand_ctrl ctrl; |
Vitaly Wool | 972edcb | 2007-05-06 18:46:57 +0400 | [diff] [blame] | 1626 | }; |
| 1627 | |
Huang Shijie | 3e70192 | 2012-09-13 14:57:53 +0800 | [diff] [blame] | 1628 | /* return the supported asynchronous timing mode. */ |
| 1629 | static inline int onfi_get_async_timing_mode(struct nand_chip *chip) |
| 1630 | { |
Miquel Raynal | 3d3fe3c | 2018-07-25 15:31:52 +0200 | [diff] [blame] | 1631 | if (!chip->parameters.onfi) |
Huang Shijie | 3e70192 | 2012-09-13 14:57:53 +0800 | [diff] [blame] | 1632 | return ONFI_TIMING_MODE_UNKNOWN; |
Huang Shijie | 3e70192 | 2012-09-13 14:57:53 +0800 | [diff] [blame] | 1633 | |
Miquel Raynal | 3d3fe3c | 2018-07-25 15:31:52 +0200 | [diff] [blame] | 1634 | return chip->parameters.onfi->async_timing_mode; |
Huang Shijie | 3e70192 | 2012-09-13 14:57:53 +0800 | [diff] [blame] | 1635 | } |
| 1636 | |
Miquel Raynal | 17fa804 | 2017-11-30 18:01:31 +0100 | [diff] [blame] | 1637 | int onfi_fill_data_interface(struct nand_chip *chip, |
Sascha Hauer | b88730a | 2016-09-15 10:32:48 +0200 | [diff] [blame] | 1638 | enum nand_data_interface_type type, |
| 1639 | int timing_mode); |
| 1640 | |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 1641 | /* |
| 1642 | * Check if it is a SLC nand. |
| 1643 | * The !nand_is_slc() can be used to check the MLC/TLC nand chips. |
| 1644 | * We do not distinguish the MLC and TLC now. |
| 1645 | */ |
| 1646 | static inline bool nand_is_slc(struct nand_chip *chip) |
| 1647 | { |
Lothar Waßmann | 2d2a2b8 | 2017-08-29 12:17:13 +0200 | [diff] [blame] | 1648 | WARN(chip->bits_per_cell == 0, |
| 1649 | "chip->bits_per_cell is used uninitialized\n"); |
Huang Shijie | 7db906b | 2013-09-25 14:58:11 +0800 | [diff] [blame] | 1650 | return chip->bits_per_cell == 1; |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 1651 | } |
Brian Norris | 3dad234 | 2014-01-29 14:08:12 -0800 | [diff] [blame] | 1652 | |
| 1653 | /** |
| 1654 | * Check if the opcode's address should be sent only on the lower 8 bits |
| 1655 | * @command: opcode to check |
| 1656 | */ |
| 1657 | static inline int nand_opcode_8bits(unsigned int command) |
| 1658 | { |
David Mosberger | e34fcb0 | 2014-03-21 16:05:10 -0600 | [diff] [blame] | 1659 | switch (command) { |
| 1660 | case NAND_CMD_READID: |
| 1661 | case NAND_CMD_PARAM: |
| 1662 | case NAND_CMD_GET_FEATURES: |
| 1663 | case NAND_CMD_SET_FEATURES: |
| 1664 | return 1; |
| 1665 | default: |
| 1666 | break; |
| 1667 | } |
| 1668 | return 0; |
Brian Norris | 3dad234 | 2014-01-29 14:08:12 -0800 | [diff] [blame] | 1669 | } |
| 1670 | |
Boris BREZILLON | 974647e | 2014-07-11 09:49:42 +0200 | [diff] [blame] | 1671 | /* get timing characteristics from ONFI timing mode. */ |
| 1672 | const struct nand_sdr_timings *onfi_async_timing_mode_to_sdr_timings(int mode); |
Boris BREZILLON | 730a43f | 2015-09-03 18:03:38 +0200 | [diff] [blame] | 1673 | |
| 1674 | int nand_check_erased_ecc_chunk(void *data, int datalen, |
| 1675 | void *ecc, int ecclen, |
| 1676 | void *extraoob, int extraooblen, |
| 1677 | int threshold); |
Boris Brezillon | 9d02fc2 | 2015-08-26 16:08:12 +0200 | [diff] [blame] | 1678 | |
Abhishek Sahu | 181ace9 | 2018-06-20 12:57:28 +0530 | [diff] [blame] | 1679 | int nand_ecc_choose_conf(struct nand_chip *chip, |
| 1680 | const struct nand_ecc_caps *caps, int oobavail); |
| 1681 | |
Boris Brezillon | 9d02fc2 | 2015-08-26 16:08:12 +0200 | [diff] [blame] | 1682 | /* Default write_oob implementation */ |
Boris Brezillon | 767eb6f | 2018-09-06 14:05:21 +0200 | [diff] [blame] | 1683 | int nand_write_oob_std(struct nand_chip *chip, int page); |
Boris Brezillon | 9d02fc2 | 2015-08-26 16:08:12 +0200 | [diff] [blame] | 1684 | |
| 1685 | /* Default write_oob syndrome implementation */ |
Boris Brezillon | 767eb6f | 2018-09-06 14:05:21 +0200 | [diff] [blame] | 1686 | int nand_write_oob_syndrome(struct nand_chip *chip, int page); |
Boris Brezillon | 9d02fc2 | 2015-08-26 16:08:12 +0200 | [diff] [blame] | 1687 | |
| 1688 | /* Default read_oob implementation */ |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 1689 | int nand_read_oob_std(struct nand_chip *chip, int page); |
Boris Brezillon | 9d02fc2 | 2015-08-26 16:08:12 +0200 | [diff] [blame] | 1690 | |
| 1691 | /* Default read_oob syndrome implementation */ |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 1692 | int nand_read_oob_syndrome(struct nand_chip *chip, int page); |
Sascha Hauer | 2f94abf | 2016-09-15 10:32:45 +0200 | [diff] [blame] | 1693 | |
Miquel Raynal | 97baea1 | 2018-03-19 14:47:20 +0100 | [diff] [blame] | 1694 | /* Wrapper to use in order for controllers/vendors to GET/SET FEATURES */ |
| 1695 | int nand_get_features(struct nand_chip *chip, int addr, u8 *subfeature_param); |
| 1696 | int nand_set_features(struct nand_chip *chip, int addr, u8 *subfeature_param); |
Boris Brezillon | 4a78cc6 | 2017-05-26 17:10:15 +0200 | [diff] [blame] | 1697 | /* Stub used by drivers that do not support GET/SET FEATURES operations */ |
Boris Brezillon | aa36ff2 | 2018-09-06 14:05:31 +0200 | [diff] [blame] | 1698 | int nand_get_set_features_notsupp(struct nand_chip *chip, int addr, |
| 1699 | u8 *subfeature_param); |
Boris Brezillon | 4a78cc6 | 2017-05-26 17:10:15 +0200 | [diff] [blame] | 1700 | |
Thomas Petazzoni | cc0f51e | 2017-04-29 11:06:44 +0200 | [diff] [blame] | 1701 | /* Default read_page_raw implementation */ |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 1702 | int nand_read_page_raw(struct nand_chip *chip, uint8_t *buf, int oob_required, |
| 1703 | int page); |
| 1704 | int nand_read_page_raw_notsupp(struct nand_chip *chip, u8 *buf, |
| 1705 | int oob_required, int page); |
Thomas Petazzoni | cc0f51e | 2017-04-29 11:06:44 +0200 | [diff] [blame] | 1706 | |
| 1707 | /* Default write_page_raw implementation */ |
Boris Brezillon | 767eb6f | 2018-09-06 14:05:21 +0200 | [diff] [blame] | 1708 | int nand_write_page_raw(struct nand_chip *chip, const uint8_t *buf, |
| 1709 | int oob_required, int page); |
| 1710 | int nand_write_page_raw_notsupp(struct nand_chip *chip, const u8 *buf, |
| 1711 | int oob_required, int page); |
Thomas Petazzoni | cc0f51e | 2017-04-29 11:06:44 +0200 | [diff] [blame] | 1712 | |
Sascha Hauer | 2f94abf | 2016-09-15 10:32:45 +0200 | [diff] [blame] | 1713 | /* Reset and initialize a NAND device */ |
Boris Brezillon | 73f907f | 2016-10-24 16:46:20 +0200 | [diff] [blame] | 1714 | int nand_reset(struct nand_chip *chip, int chipnr); |
Sascha Hauer | 2f94abf | 2016-09-15 10:32:45 +0200 | [diff] [blame] | 1715 | |
Boris Brezillon | 97d90da | 2017-11-30 18:01:29 +0100 | [diff] [blame] | 1716 | /* NAND operation helpers */ |
| 1717 | int nand_reset_op(struct nand_chip *chip); |
| 1718 | int nand_readid_op(struct nand_chip *chip, u8 addr, void *buf, |
| 1719 | unsigned int len); |
| 1720 | int nand_status_op(struct nand_chip *chip, u8 *status); |
| 1721 | int nand_exit_status_op(struct nand_chip *chip); |
| 1722 | int nand_erase_op(struct nand_chip *chip, unsigned int eraseblock); |
| 1723 | int nand_read_page_op(struct nand_chip *chip, unsigned int page, |
| 1724 | unsigned int offset_in_page, void *buf, unsigned int len); |
| 1725 | int nand_change_read_column_op(struct nand_chip *chip, |
| 1726 | unsigned int offset_in_page, void *buf, |
| 1727 | unsigned int len, bool force_8bit); |
| 1728 | int nand_read_oob_op(struct nand_chip *chip, unsigned int page, |
| 1729 | unsigned int offset_in_page, void *buf, unsigned int len); |
| 1730 | int nand_prog_page_begin_op(struct nand_chip *chip, unsigned int page, |
| 1731 | unsigned int offset_in_page, const void *buf, |
| 1732 | unsigned int len); |
| 1733 | int nand_prog_page_end_op(struct nand_chip *chip); |
| 1734 | int nand_prog_page_op(struct nand_chip *chip, unsigned int page, |
| 1735 | unsigned int offset_in_page, const void *buf, |
| 1736 | unsigned int len); |
| 1737 | int nand_change_write_column_op(struct nand_chip *chip, |
| 1738 | unsigned int offset_in_page, const void *buf, |
| 1739 | unsigned int len, bool force_8bit); |
| 1740 | int nand_read_data_op(struct nand_chip *chip, void *buf, unsigned int len, |
| 1741 | bool force_8bit); |
| 1742 | int nand_write_data_op(struct nand_chip *chip, const void *buf, |
| 1743 | unsigned int len, bool force_8bit); |
| 1744 | |
Miquel Raynal | 98732da | 2018-07-25 15:31:50 +0200 | [diff] [blame] | 1745 | /* |
| 1746 | * Free resources held by the NAND device, must be called on error after a |
| 1747 | * sucessful nand_scan(). |
| 1748 | */ |
Richard Weinberger | d44154f | 2016-09-21 11:44:41 +0200 | [diff] [blame] | 1749 | void nand_cleanup(struct nand_chip *chip); |
Miquel Raynal | 98732da | 2018-07-25 15:31:50 +0200 | [diff] [blame] | 1750 | /* Unregister the MTD device and calls nand_cleanup() */ |
Boris Brezillon | 59ac276 | 2018-09-06 14:05:15 +0200 | [diff] [blame] | 1751 | void nand_release(struct nand_chip *chip); |
Richard Weinberger | d44154f | 2016-09-21 11:44:41 +0200 | [diff] [blame] | 1752 | |
Boris Brezillon | abbe26d | 2016-06-08 09:32:55 +0200 | [diff] [blame] | 1753 | /* Default extended ID decoding function */ |
| 1754 | void nand_decode_ext_id(struct nand_chip *chip); |
Miquel Raynal | 8878b12 | 2017-11-09 14:16:45 +0100 | [diff] [blame] | 1755 | |
| 1756 | /* |
| 1757 | * External helper for controller drivers that have to implement the WAITRDY |
| 1758 | * instruction and have no physical pin to check it. |
| 1759 | */ |
| 1760 | int nand_soft_waitrdy(struct nand_chip *chip, unsigned long timeout_ms); |
| 1761 | |
Boris Brezillon | d4092d7 | 2017-08-04 17:29:10 +0200 | [diff] [blame] | 1762 | #endif /* __LINUX_MTD_RAWNAND_H */ |