Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Overview: |
| 3 | * This is the generic MTD driver for NAND flash devices. It should be |
| 4 | * capable of working with almost all NAND chips currently available. |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 5 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * Additional technical information is available on |
maximilian attems | 8b2b403 | 2007-07-28 13:07:16 +0200 | [diff] [blame] | 7 | * http://www.linux-mtd.infradead.org/doc/nand.html |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com) |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 10 | * 2002-2006 Thomas Gleixner (tglx@linutronix.de) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 12 | * Credits: |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 13 | * David Woodhouse for adding multichip support |
| 14 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | * Aleph One Ltd. and Toby Churchill Ltd. for supporting the |
| 16 | * rework for 2K page size chips |
| 17 | * |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 18 | * TODO: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | * Enable cached programming for 2k page size chips |
| 20 | * Check, if mtd->ecctype should be set to MTD_ECC_HW |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 21 | * if we have HW ECC support. |
Artem Bityutskiy | c0b8ba7 | 2007-07-23 16:06:50 +0300 | [diff] [blame] | 22 | * BBT table is not serialized, has to be fixed |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | * This program is free software; you can redistribute it and/or modify |
| 25 | * it under the terms of the GNU General Public License version 2 as |
| 26 | * published by the Free Software Foundation. |
| 27 | * |
| 28 | */ |
| 29 | |
Ezequiel Garcia | 2017164 | 2013-11-25 08:30:31 -0300 | [diff] [blame] | 30 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 31 | |
David Woodhouse | 552d920 | 2006-05-14 01:20:46 +0100 | [diff] [blame] | 32 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/delay.h> |
| 34 | #include <linux/errno.h> |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 35 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/sched.h> |
| 37 | #include <linux/slab.h> |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 38 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/types.h> |
| 40 | #include <linux/mtd/mtd.h> |
| 41 | #include <linux/mtd/nand.h> |
| 42 | #include <linux/mtd/nand_ecc.h> |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 43 | #include <linux/mtd/nand_bch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <linux/interrupt.h> |
| 45 | #include <linux/bitops.h> |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 46 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/mtd/partitions.h> |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 48 | #include <linux/of_mtd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | /* Define default oob placement schemes for large and small page devices */ |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 51 | static struct nand_ecclayout nand_oob_8 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | .eccbytes = 3, |
| 53 | .eccpos = {0, 1, 2}, |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 54 | .oobfree = { |
| 55 | {.offset = 3, |
| 56 | .length = 2}, |
| 57 | {.offset = 6, |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 58 | .length = 2} } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; |
| 60 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 61 | static struct nand_ecclayout nand_oob_16 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | .eccbytes = 6, |
| 63 | .eccpos = {0, 1, 2, 3, 6, 7}, |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 64 | .oobfree = { |
| 65 | {.offset = 8, |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 66 | . length = 8} } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | }; |
| 68 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 69 | static struct nand_ecclayout nand_oob_64 = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | .eccbytes = 24, |
| 71 | .eccpos = { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 72 | 40, 41, 42, 43, 44, 45, 46, 47, |
| 73 | 48, 49, 50, 51, 52, 53, 54, 55, |
| 74 | 56, 57, 58, 59, 60, 61, 62, 63}, |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 75 | .oobfree = { |
| 76 | {.offset = 2, |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 77 | .length = 38} } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | }; |
| 79 | |
Thomas Gleixner | 81ec536 | 2007-12-12 17:27:03 +0100 | [diff] [blame] | 80 | static struct nand_ecclayout nand_oob_128 = { |
| 81 | .eccbytes = 48, |
| 82 | .eccpos = { |
| 83 | 80, 81, 82, 83, 84, 85, 86, 87, |
| 84 | 88, 89, 90, 91, 92, 93, 94, 95, |
| 85 | 96, 97, 98, 99, 100, 101, 102, 103, |
| 86 | 104, 105, 106, 107, 108, 109, 110, 111, |
| 87 | 112, 113, 114, 115, 116, 117, 118, 119, |
| 88 | 120, 121, 122, 123, 124, 125, 126, 127}, |
| 89 | .oobfree = { |
| 90 | {.offset = 2, |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 91 | .length = 78} } |
Thomas Gleixner | 81ec536 | 2007-12-12 17:27:03 +0100 | [diff] [blame] | 92 | }; |
| 93 | |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 94 | static int nand_get_device(struct mtd_info *mtd, int new_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 96 | static int nand_do_write_oob(struct mtd_info *mtd, loff_t to, |
| 97 | struct mtd_oob_ops *ops); |
| 98 | |
Vimal Singh | 6fe5a6a | 2010-02-03 14:12:24 +0530 | [diff] [blame] | 99 | static int check_offs_len(struct mtd_info *mtd, |
| 100 | loff_t ofs, uint64_t len) |
| 101 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 102 | struct nand_chip *chip = mtd_to_nand(mtd); |
Vimal Singh | 6fe5a6a | 2010-02-03 14:12:24 +0530 | [diff] [blame] | 103 | int ret = 0; |
| 104 | |
| 105 | /* Start address must align on block boundary */ |
Dan Carpenter | daae74c | 2013-08-09 12:49:05 +0300 | [diff] [blame] | 106 | if (ofs & ((1ULL << chip->phys_erase_shift) - 1)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 107 | pr_debug("%s: unaligned address\n", __func__); |
Vimal Singh | 6fe5a6a | 2010-02-03 14:12:24 +0530 | [diff] [blame] | 108 | ret = -EINVAL; |
| 109 | } |
| 110 | |
| 111 | /* Length must align on block boundary */ |
Dan Carpenter | daae74c | 2013-08-09 12:49:05 +0300 | [diff] [blame] | 112 | if (len & ((1ULL << chip->phys_erase_shift) - 1)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 113 | pr_debug("%s: length not block aligned\n", __func__); |
Vimal Singh | 6fe5a6a | 2010-02-03 14:12:24 +0530 | [diff] [blame] | 114 | ret = -EINVAL; |
| 115 | } |
| 116 | |
Vimal Singh | 6fe5a6a | 2010-02-03 14:12:24 +0530 | [diff] [blame] | 117 | return ret; |
| 118 | } |
| 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | /** |
| 121 | * nand_release_device - [GENERIC] release chip |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 122 | * @mtd: MTD device structure |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 123 | * |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 124 | * Release chip lock and wake up anyone waiting on the device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 126 | static void nand_release_device(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 128 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Thomas Gleixner | a36ed29 | 2006-05-23 11:37:03 +0200 | [diff] [blame] | 130 | /* Release the controller and the chip */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 131 | spin_lock(&chip->controller->lock); |
| 132 | chip->controller->active = NULL; |
| 133 | chip->state = FL_READY; |
| 134 | wake_up(&chip->controller->wq); |
| 135 | spin_unlock(&chip->controller->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | /** |
| 139 | * nand_read_byte - [DEFAULT] read one byte from the chip |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 140 | * @mtd: MTD device structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 142 | * Default read function for 8bit buswidth |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | */ |
Thomas Gleixner | 58dd8f2b | 2006-05-23 11:52:35 +0200 | [diff] [blame] | 144 | static uint8_t nand_read_byte(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 146 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 147 | return readb(chip->IO_ADDR_R); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | /** |
Masanari Iida | 064a769 | 2012-11-09 23:20:58 +0900 | [diff] [blame] | 151 | * nand_read_byte16 - [DEFAULT] read one byte endianness aware from the chip |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 152 | * @mtd: MTD device structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 154 | * Default read function for 16bit buswidth with endianness conversion. |
| 155 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | */ |
Thomas Gleixner | 58dd8f2b | 2006-05-23 11:52:35 +0200 | [diff] [blame] | 157 | static uint8_t nand_read_byte16(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 159 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 160 | return (uint8_t) cpu_to_le16(readw(chip->IO_ADDR_R)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | * nand_read_word - [DEFAULT] read one word from the chip |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 165 | * @mtd: MTD device structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 167 | * Default read function for 16bit buswidth without endianness conversion. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | */ |
| 169 | static u16 nand_read_word(struct mtd_info *mtd) |
| 170 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 171 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 172 | return readw(chip->IO_ADDR_R); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | * nand_select_chip - [DEFAULT] control CE line |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 177 | * @mtd: MTD device structure |
| 178 | * @chipnr: chipnumber to select, -1 for deselect |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | * |
| 180 | * Default select function for 1 chip devices. |
| 181 | */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 182 | static void nand_select_chip(struct mtd_info *mtd, int chipnr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 184 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 185 | |
| 186 | switch (chipnr) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | case -1: |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 188 | chip->cmd_ctrl(mtd, NAND_CMD_NONE, 0 | NAND_CTRL_CHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | break; |
| 190 | case 0: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | break; |
| 192 | |
| 193 | default: |
| 194 | BUG(); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | /** |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 199 | * nand_write_byte - [DEFAULT] write single byte to chip |
| 200 | * @mtd: MTD device structure |
| 201 | * @byte: value to write |
| 202 | * |
| 203 | * Default function to write a byte to I/O[7:0] |
| 204 | */ |
| 205 | static void nand_write_byte(struct mtd_info *mtd, uint8_t byte) |
| 206 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 207 | struct nand_chip *chip = mtd_to_nand(mtd); |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 208 | |
| 209 | chip->write_buf(mtd, &byte, 1); |
| 210 | } |
| 211 | |
| 212 | /** |
| 213 | * nand_write_byte16 - [DEFAULT] write single byte to a chip with width 16 |
| 214 | * @mtd: MTD device structure |
| 215 | * @byte: value to write |
| 216 | * |
| 217 | * Default function to write a byte to I/O[7:0] on a 16-bit wide chip. |
| 218 | */ |
| 219 | static void nand_write_byte16(struct mtd_info *mtd, uint8_t byte) |
| 220 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 221 | struct nand_chip *chip = mtd_to_nand(mtd); |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 222 | uint16_t word = byte; |
| 223 | |
| 224 | /* |
| 225 | * It's not entirely clear what should happen to I/O[15:8] when writing |
| 226 | * a byte. The ONFi spec (Revision 3.1; 2012-09-19, Section 2.16) reads: |
| 227 | * |
| 228 | * When the host supports a 16-bit bus width, only data is |
| 229 | * transferred at the 16-bit width. All address and command line |
| 230 | * transfers shall use only the lower 8-bits of the data bus. During |
| 231 | * command transfers, the host may place any value on the upper |
| 232 | * 8-bits of the data bus. During address transfers, the host shall |
| 233 | * set the upper 8-bits of the data bus to 00h. |
| 234 | * |
| 235 | * One user of the write_byte callback is nand_onfi_set_features. The |
| 236 | * four parameters are specified to be written to I/O[7:0], but this is |
| 237 | * neither an address nor a command transfer. Let's assume a 0 on the |
| 238 | * upper I/O lines is OK. |
| 239 | */ |
| 240 | chip->write_buf(mtd, (uint8_t *)&word, 2); |
| 241 | } |
| 242 | |
| 243 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | * nand_write_buf - [DEFAULT] write buffer to chip |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 245 | * @mtd: MTD device structure |
| 246 | * @buf: data buffer |
| 247 | * @len: number of bytes to write |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 249 | * Default write function for 8bit buswidth. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | */ |
Thomas Gleixner | 58dd8f2b | 2006-05-23 11:52:35 +0200 | [diff] [blame] | 251 | static void nand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 253 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
Alexander Shiyan | 7641383 | 2013-04-13 09:32:13 +0400 | [diff] [blame] | 255 | iowrite8_rep(chip->IO_ADDR_W, buf, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | /** |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 259 | * nand_read_buf - [DEFAULT] read chip data into buffer |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 260 | * @mtd: MTD device structure |
| 261 | * @buf: buffer to store date |
| 262 | * @len: number of bytes to read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 264 | * Default read function for 8bit buswidth. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | */ |
Thomas Gleixner | 58dd8f2b | 2006-05-23 11:52:35 +0200 | [diff] [blame] | 266 | static void nand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 268 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | |
Alexander Shiyan | 7641383 | 2013-04-13 09:32:13 +0400 | [diff] [blame] | 270 | ioread8_rep(chip->IO_ADDR_R, buf, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | * nand_write_buf16 - [DEFAULT] write buffer to chip |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 275 | * @mtd: MTD device structure |
| 276 | * @buf: data buffer |
| 277 | * @len: number of bytes to write |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 279 | * Default write function for 16bit buswidth. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | */ |
Thomas Gleixner | 58dd8f2b | 2006-05-23 11:52:35 +0200 | [diff] [blame] | 281 | static void nand_write_buf16(struct mtd_info *mtd, const uint8_t *buf, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 283 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | u16 *p = (u16 *) buf; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 285 | |
Alexander Shiyan | 7641383 | 2013-04-13 09:32:13 +0400 | [diff] [blame] | 286 | iowrite16_rep(chip->IO_ADDR_W, p, len >> 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | /** |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 290 | * nand_read_buf16 - [DEFAULT] read chip data into buffer |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 291 | * @mtd: MTD device structure |
| 292 | * @buf: buffer to store date |
| 293 | * @len: number of bytes to read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 295 | * Default read function for 16bit buswidth. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | */ |
Thomas Gleixner | 58dd8f2b | 2006-05-23 11:52:35 +0200 | [diff] [blame] | 297 | static void nand_read_buf16(struct mtd_info *mtd, uint8_t *buf, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 299 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | u16 *p = (u16 *) buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Alexander Shiyan | 7641383 | 2013-04-13 09:32:13 +0400 | [diff] [blame] | 302 | ioread16_rep(chip->IO_ADDR_R, p, len >> 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | * nand_block_bad - [DEFAULT] Read bad block marker from the chip |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 307 | * @mtd: MTD device structure |
| 308 | * @ofs: offset from device start |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | * |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 310 | * Check, if the block is bad. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | */ |
Archit Taneja | 9f3e042 | 2016-02-03 14:29:49 +0530 | [diff] [blame] | 312 | static int nand_block_bad(struct mtd_info *mtd, loff_t ofs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | { |
Archit Taneja | 9f3e042 | 2016-02-03 14:29:49 +0530 | [diff] [blame] | 314 | int page, res = 0, i = 0; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 315 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | u16 bad; |
| 317 | |
Brian Norris | 5fb1549 | 2011-05-31 16:31:21 -0700 | [diff] [blame] | 318 | if (chip->bbt_options & NAND_BBT_SCANLASTPAGE) |
Kevin Cernekee | b60b08b | 2010-05-04 20:58:10 -0700 | [diff] [blame] | 319 | ofs += mtd->erasesize - mtd->writesize; |
| 320 | |
Thomas Knobloch | 1a12f46 | 2007-05-03 07:39:37 +0100 | [diff] [blame] | 321 | page = (int)(ofs >> chip->page_shift) & chip->pagemask; |
| 322 | |
Brian Norris | cdbec05 | 2012-01-13 18:11:48 -0800 | [diff] [blame] | 323 | do { |
| 324 | if (chip->options & NAND_BUSWIDTH_16) { |
| 325 | chip->cmdfunc(mtd, NAND_CMD_READOOB, |
| 326 | chip->badblockpos & 0xFE, page); |
| 327 | bad = cpu_to_le16(chip->read_word(mtd)); |
| 328 | if (chip->badblockpos & 0x1) |
| 329 | bad >>= 8; |
| 330 | else |
| 331 | bad &= 0xFF; |
| 332 | } else { |
| 333 | chip->cmdfunc(mtd, NAND_CMD_READOOB, chip->badblockpos, |
| 334 | page); |
| 335 | bad = chip->read_byte(mtd); |
| 336 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 337 | |
Brian Norris | cdbec05 | 2012-01-13 18:11:48 -0800 | [diff] [blame] | 338 | if (likely(chip->badblockbits == 8)) |
| 339 | res = bad != 0xFF; |
| 340 | else |
| 341 | res = hweight8(bad) < chip->badblockbits; |
| 342 | ofs += mtd->writesize; |
| 343 | page = (int)(ofs >> chip->page_shift) & chip->pagemask; |
| 344 | i++; |
| 345 | } while (!res && i < 2 && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE)); |
Maxim Levitsky | e0b58d0 | 2010-02-22 20:39:38 +0200 | [diff] [blame] | 346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | return res; |
| 348 | } |
| 349 | |
| 350 | /** |
Brian Norris | 5a0edb2 | 2013-07-30 17:52:58 -0700 | [diff] [blame] | 351 | * nand_default_block_markbad - [DEFAULT] mark a block bad via bad block marker |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 352 | * @mtd: MTD device structure |
| 353 | * @ofs: offset from device start |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 355 | * This is the default implementation, which can be overridden by a hardware |
Brian Norris | 5a0edb2 | 2013-07-30 17:52:58 -0700 | [diff] [blame] | 356 | * specific driver. It provides the details for writing a bad block marker to a |
| 357 | * block. |
| 358 | */ |
| 359 | static int nand_default_block_markbad(struct mtd_info *mtd, loff_t ofs) |
| 360 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 361 | struct nand_chip *chip = mtd_to_nand(mtd); |
Brian Norris | 5a0edb2 | 2013-07-30 17:52:58 -0700 | [diff] [blame] | 362 | struct mtd_oob_ops ops; |
| 363 | uint8_t buf[2] = { 0, 0 }; |
| 364 | int ret = 0, res, i = 0; |
| 365 | |
Brian Norris | 0ec56dc | 2015-02-28 02:02:30 -0800 | [diff] [blame] | 366 | memset(&ops, 0, sizeof(ops)); |
Brian Norris | 5a0edb2 | 2013-07-30 17:52:58 -0700 | [diff] [blame] | 367 | ops.oobbuf = buf; |
| 368 | ops.ooboffs = chip->badblockpos; |
| 369 | if (chip->options & NAND_BUSWIDTH_16) { |
| 370 | ops.ooboffs &= ~0x01; |
| 371 | ops.len = ops.ooblen = 2; |
| 372 | } else { |
| 373 | ops.len = ops.ooblen = 1; |
| 374 | } |
| 375 | ops.mode = MTD_OPS_PLACE_OOB; |
| 376 | |
| 377 | /* Write to first/last page(s) if necessary */ |
| 378 | if (chip->bbt_options & NAND_BBT_SCANLASTPAGE) |
| 379 | ofs += mtd->erasesize - mtd->writesize; |
| 380 | do { |
| 381 | res = nand_do_write_oob(mtd, ofs, &ops); |
| 382 | if (!ret) |
| 383 | ret = res; |
| 384 | |
| 385 | i++; |
| 386 | ofs += mtd->writesize; |
| 387 | } while ((chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2); |
| 388 | |
| 389 | return ret; |
| 390 | } |
| 391 | |
| 392 | /** |
| 393 | * nand_block_markbad_lowlevel - mark a block bad |
| 394 | * @mtd: MTD device structure |
| 395 | * @ofs: offset from device start |
| 396 | * |
| 397 | * This function performs the generic NAND bad block marking steps (i.e., bad |
| 398 | * block table(s) and/or marker(s)). We only allow the hardware driver to |
| 399 | * specify how to write bad block markers to OOB (chip->block_markbad). |
| 400 | * |
Brian Norris | b32843b | 2013-07-30 17:52:59 -0700 | [diff] [blame] | 401 | * We try operations in the following order: |
Brian Norris | e2414f4 | 2012-02-06 13:44:00 -0800 | [diff] [blame] | 402 | * (1) erase the affected block, to allow OOB marker to be written cleanly |
Brian Norris | b32843b | 2013-07-30 17:52:59 -0700 | [diff] [blame] | 403 | * (2) write bad block marker to OOB area of affected block (unless flag |
| 404 | * NAND_BBT_NO_OOB_BBM is present) |
| 405 | * (3) update the BBT |
| 406 | * Note that we retain the first error encountered in (2) or (3), finish the |
Brian Norris | e2414f4 | 2012-02-06 13:44:00 -0800 | [diff] [blame] | 407 | * procedures, and dump the error in the end. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | */ |
Brian Norris | 5a0edb2 | 2013-07-30 17:52:58 -0700 | [diff] [blame] | 409 | static int nand_block_markbad_lowlevel(struct mtd_info *mtd, loff_t ofs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 411 | struct nand_chip *chip = mtd_to_nand(mtd); |
Brian Norris | b32843b | 2013-07-30 17:52:59 -0700 | [diff] [blame] | 412 | int res, ret = 0; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 413 | |
Brian Norris | b32843b | 2013-07-30 17:52:59 -0700 | [diff] [blame] | 414 | if (!(chip->bbt_options & NAND_BBT_NO_OOB_BBM)) { |
Brian Norris | 0091842 | 2012-01-13 18:11:47 -0800 | [diff] [blame] | 415 | struct erase_info einfo; |
| 416 | |
| 417 | /* Attempt erase before marking OOB */ |
| 418 | memset(&einfo, 0, sizeof(einfo)); |
| 419 | einfo.mtd = mtd; |
| 420 | einfo.addr = ofs; |
Dan Carpenter | daae74c | 2013-08-09 12:49:05 +0300 | [diff] [blame] | 421 | einfo.len = 1ULL << chip->phys_erase_shift; |
Brian Norris | 0091842 | 2012-01-13 18:11:47 -0800 | [diff] [blame] | 422 | nand_erase_nand(mtd, &einfo, 0); |
Brian Norris | 0091842 | 2012-01-13 18:11:47 -0800 | [diff] [blame] | 423 | |
Brian Norris | b32843b | 2013-07-30 17:52:59 -0700 | [diff] [blame] | 424 | /* Write bad block marker to OOB */ |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 425 | nand_get_device(mtd, FL_WRITING); |
Brian Norris | 5a0edb2 | 2013-07-30 17:52:58 -0700 | [diff] [blame] | 426 | ret = chip->block_markbad(mtd, ofs); |
Artem Bityutskiy | c0b8ba7 | 2007-07-23 16:06:50 +0300 | [diff] [blame] | 427 | nand_release_device(mtd); |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 428 | } |
Brian Norris | e2414f4 | 2012-02-06 13:44:00 -0800 | [diff] [blame] | 429 | |
Brian Norris | b32843b | 2013-07-30 17:52:59 -0700 | [diff] [blame] | 430 | /* Mark block bad in BBT */ |
| 431 | if (chip->bbt) { |
| 432 | res = nand_markbad_bbt(mtd, ofs); |
Brian Norris | e2414f4 | 2012-02-06 13:44:00 -0800 | [diff] [blame] | 433 | if (!ret) |
| 434 | ret = res; |
| 435 | } |
| 436 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 437 | if (!ret) |
| 438 | mtd->ecc_stats.badblocks++; |
Artem Bityutskiy | c0b8ba7 | 2007-07-23 16:06:50 +0300 | [diff] [blame] | 439 | |
Thomas Gleixner | f1a28c0 | 2006-05-30 00:37:34 +0200 | [diff] [blame] | 440 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } |
| 442 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 443 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | * nand_check_wp - [GENERIC] check if the chip is write protected |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 445 | * @mtd: MTD device structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 447 | * Check, if the device is write protected. The function expects, that the |
| 448 | * device is already selected. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 450 | static int nand_check_wp(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 452 | struct nand_chip *chip = mtd_to_nand(mtd); |
Maxim Levitsky | 93edbad | 2010-02-22 20:39:40 +0200 | [diff] [blame] | 453 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 454 | /* Broken xD cards report WP despite being writable */ |
Maxim Levitsky | 93edbad | 2010-02-22 20:39:40 +0200 | [diff] [blame] | 455 | if (chip->options & NAND_BROKEN_XD) |
| 456 | return 0; |
| 457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | /* Check the WP bit */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 459 | chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1); |
| 460 | return (chip->read_byte(mtd) & NAND_STATUS_WP) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | /** |
Gu Zheng | c30e1f7 | 2014-09-03 17:49:10 +0800 | [diff] [blame] | 464 | * nand_block_isreserved - [GENERIC] Check if a block is marked reserved. |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 465 | * @mtd: MTD device structure |
| 466 | * @ofs: offset from device start |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 467 | * |
Gu Zheng | c30e1f7 | 2014-09-03 17:49:10 +0800 | [diff] [blame] | 468 | * Check if the block is marked as reserved. |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 469 | */ |
| 470 | static int nand_block_isreserved(struct mtd_info *mtd, loff_t ofs) |
| 471 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 472 | struct nand_chip *chip = mtd_to_nand(mtd); |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 473 | |
| 474 | if (!chip->bbt) |
| 475 | return 0; |
| 476 | /* Return info from the table */ |
| 477 | return nand_isreserved_bbt(mtd, ofs); |
| 478 | } |
| 479 | |
| 480 | /** |
| 481 | * nand_block_checkbad - [GENERIC] Check if a block is marked bad |
| 482 | * @mtd: MTD device structure |
| 483 | * @ofs: offset from device start |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 484 | * @allowbbt: 1, if its allowed to access the bbt area |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | * |
| 486 | * Check, if the block is bad. Either by reading the bad block table or |
| 487 | * calling of the scan function. |
| 488 | */ |
Archit Taneja | 9f3e042 | 2016-02-03 14:29:49 +0530 | [diff] [blame] | 489 | static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 491 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 492 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 493 | if (!chip->bbt) |
Archit Taneja | 9f3e042 | 2016-02-03 14:29:49 +0530 | [diff] [blame] | 494 | return chip->block_bad(mtd, ofs); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | /* Return info from the table */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 497 | return nand_isbad_bbt(mtd, ofs, allowbbt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } |
| 499 | |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 500 | /** |
| 501 | * panic_nand_wait_ready - [GENERIC] Wait for the ready pin after commands. |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 502 | * @mtd: MTD device structure |
| 503 | * @timeo: Timeout |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 504 | * |
| 505 | * Helper function for nand_wait_ready used when needing to wait in interrupt |
| 506 | * context. |
| 507 | */ |
| 508 | static void panic_nand_wait_ready(struct mtd_info *mtd, unsigned long timeo) |
| 509 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 510 | struct nand_chip *chip = mtd_to_nand(mtd); |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 511 | int i; |
| 512 | |
| 513 | /* Wait for the device to get ready */ |
| 514 | for (i = 0; i < timeo; i++) { |
| 515 | if (chip->dev_ready(mtd)) |
| 516 | break; |
| 517 | touch_softlockup_watchdog(); |
| 518 | mdelay(1); |
| 519 | } |
| 520 | } |
| 521 | |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 522 | /** |
| 523 | * nand_wait_ready - [GENERIC] Wait for the ready pin after commands. |
| 524 | * @mtd: MTD device structure |
| 525 | * |
| 526 | * Wait for the ready pin after a command, and warn if a timeout occurs. |
| 527 | */ |
David Woodhouse | 4b648b0 | 2006-09-25 17:05:24 +0100 | [diff] [blame] | 528 | void nand_wait_ready(struct mtd_info *mtd) |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 529 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 530 | struct nand_chip *chip = mtd_to_nand(mtd); |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 531 | unsigned long timeo = 400; |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 532 | |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 533 | if (in_interrupt() || oops_in_progress) |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 534 | return panic_nand_wait_ready(mtd, timeo); |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 535 | |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 536 | /* Wait until command is processed or timeout occurs */ |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 537 | timeo = jiffies + msecs_to_jiffies(timeo); |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 538 | do { |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 539 | if (chip->dev_ready(mtd)) |
Ezequiel Garcia | 4c7e054 | 2016-04-12 17:46:41 -0300 | [diff] [blame] | 540 | return; |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 541 | cond_resched(); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 542 | } while (time_before(jiffies, timeo)); |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 543 | |
Brian Norris | 9ebfdf5 | 2016-03-04 17:19:23 -0800 | [diff] [blame] | 544 | if (!chip->dev_ready(mtd)) |
| 545 | pr_warn_ratelimited("timeout while waiting for chip to become ready\n"); |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 546 | } |
David Woodhouse | 4b648b0 | 2006-09-25 17:05:24 +0100 | [diff] [blame] | 547 | EXPORT_SYMBOL_GPL(nand_wait_ready); |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | /** |
Roger Quadros | 60c70d6 | 2015-02-23 17:26:39 +0200 | [diff] [blame] | 550 | * nand_wait_status_ready - [GENERIC] Wait for the ready status after commands. |
| 551 | * @mtd: MTD device structure |
| 552 | * @timeo: Timeout in ms |
| 553 | * |
| 554 | * Wait for status ready (i.e. command done) or timeout. |
| 555 | */ |
| 556 | static void nand_wait_status_ready(struct mtd_info *mtd, unsigned long timeo) |
| 557 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 558 | register struct nand_chip *chip = mtd_to_nand(mtd); |
Roger Quadros | 60c70d6 | 2015-02-23 17:26:39 +0200 | [diff] [blame] | 559 | |
| 560 | timeo = jiffies + msecs_to_jiffies(timeo); |
| 561 | do { |
| 562 | if ((chip->read_byte(mtd) & NAND_STATUS_READY)) |
| 563 | break; |
| 564 | touch_softlockup_watchdog(); |
| 565 | } while (time_before(jiffies, timeo)); |
| 566 | }; |
| 567 | |
| 568 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | * nand_command - [DEFAULT] Send command to NAND device |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 570 | * @mtd: MTD device structure |
| 571 | * @command: the command to be sent |
| 572 | * @column: the column address for this command, -1 if none |
| 573 | * @page_addr: the page address for this command, -1 if none |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 575 | * Send command to NAND device. This function is used for small page devices |
Artem Bityutskiy | 51148f1 | 2013-03-05 15:00:51 +0200 | [diff] [blame] | 576 | * (512 Bytes per page). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 578 | static void nand_command(struct mtd_info *mtd, unsigned int command, |
| 579 | int column, int page_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 581 | register struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 582 | int ctrl = NAND_CTRL_CLE | NAND_CTRL_CHANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 584 | /* Write out the command to the device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | if (command == NAND_CMD_SEQIN) { |
| 586 | int readcmd; |
| 587 | |
Joern Engel | 2831877 | 2006-05-22 23:18:05 +0200 | [diff] [blame] | 588 | if (column >= mtd->writesize) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | /* OOB area */ |
Joern Engel | 2831877 | 2006-05-22 23:18:05 +0200 | [diff] [blame] | 590 | column -= mtd->writesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | readcmd = NAND_CMD_READOOB; |
| 592 | } else if (column < 256) { |
| 593 | /* First 256 bytes --> READ0 */ |
| 594 | readcmd = NAND_CMD_READ0; |
| 595 | } else { |
| 596 | column -= 256; |
| 597 | readcmd = NAND_CMD_READ1; |
| 598 | } |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 599 | chip->cmd_ctrl(mtd, readcmd, ctrl); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 600 | ctrl &= ~NAND_CTRL_CHANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | } |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 602 | chip->cmd_ctrl(mtd, command, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 604 | /* Address cycle, when necessary */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 605 | ctrl = NAND_CTRL_ALE | NAND_CTRL_CHANGE; |
| 606 | /* Serially input address */ |
| 607 | if (column != -1) { |
| 608 | /* Adjust columns for 16 bit buswidth */ |
Brian Norris | 3dad234 | 2014-01-29 14:08:12 -0800 | [diff] [blame] | 609 | if (chip->options & NAND_BUSWIDTH_16 && |
| 610 | !nand_opcode_8bits(command)) |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 611 | column >>= 1; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 612 | chip->cmd_ctrl(mtd, column, ctrl); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 613 | ctrl &= ~NAND_CTRL_CHANGE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 615 | if (page_addr != -1) { |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 616 | chip->cmd_ctrl(mtd, page_addr, ctrl); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 617 | ctrl &= ~NAND_CTRL_CHANGE; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 618 | chip->cmd_ctrl(mtd, page_addr >> 8, ctrl); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 619 | /* One more address cycle for devices > 32MiB */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 620 | if (chip->chipsize > (32 << 20)) |
| 621 | chip->cmd_ctrl(mtd, page_addr >> 16, ctrl); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 622 | } |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 623 | chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 624 | |
| 625 | /* |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 626 | * Program and erase have their own busy handlers status and sequential |
| 627 | * in needs no delay |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 628 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | switch (command) { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | case NAND_CMD_PAGEPROG: |
| 632 | case NAND_CMD_ERASE1: |
| 633 | case NAND_CMD_ERASE2: |
| 634 | case NAND_CMD_SEQIN: |
| 635 | case NAND_CMD_STATUS: |
| 636 | return; |
| 637 | |
| 638 | case NAND_CMD_RESET: |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 639 | if (chip->dev_ready) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | break; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 641 | udelay(chip->chip_delay); |
| 642 | chip->cmd_ctrl(mtd, NAND_CMD_STATUS, |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 643 | NAND_CTRL_CLE | NAND_CTRL_CHANGE); |
Thomas Gleixner | 12efdde | 2006-05-24 22:57:09 +0200 | [diff] [blame] | 644 | chip->cmd_ctrl(mtd, |
| 645 | NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); |
Roger Quadros | 60c70d6 | 2015-02-23 17:26:39 +0200 | [diff] [blame] | 646 | /* EZ-NAND can take upto 250ms as per ONFi v4.0 */ |
| 647 | nand_wait_status_ready(mtd, 250); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | return; |
| 649 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 650 | /* This applies to read commands */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | default: |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 652 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | * If we don't have access to the busy pin, we apply the given |
| 654 | * command delay |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 655 | */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 656 | if (!chip->dev_ready) { |
| 657 | udelay(chip->chip_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | return; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 659 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | } |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 661 | /* |
| 662 | * Apply this short delay always to ensure that we do wait tWB in |
| 663 | * any case on any machine. |
| 664 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 665 | ndelay(100); |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 666 | |
| 667 | nand_wait_ready(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | } |
| 669 | |
| 670 | /** |
| 671 | * nand_command_lp - [DEFAULT] Send command to NAND large page device |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 672 | * @mtd: MTD device structure |
| 673 | * @command: the command to be sent |
| 674 | * @column: the column address for this command, -1 if none |
| 675 | * @page_addr: the page address for this command, -1 if none |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | * |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 677 | * Send command to NAND device. This is the version for the new large page |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 678 | * devices. We don't have the separate regions as we have in the small page |
| 679 | * devices. We must emulate NAND_CMD_READOOB to keep the code compatible. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | */ |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 681 | static void nand_command_lp(struct mtd_info *mtd, unsigned int command, |
| 682 | int column, int page_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 684 | register struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
| 686 | /* Emulate NAND_CMD_READOOB */ |
| 687 | if (command == NAND_CMD_READOOB) { |
Joern Engel | 2831877 | 2006-05-22 23:18:05 +0200 | [diff] [blame] | 688 | column += mtd->writesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | command = NAND_CMD_READ0; |
| 690 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 691 | |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 692 | /* Command latch cycle */ |
Alexander Shiyan | fb066ad | 2013-02-28 12:02:19 +0400 | [diff] [blame] | 693 | chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
| 695 | if (column != -1 || page_addr != -1) { |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 696 | int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
| 698 | /* Serially input address */ |
| 699 | if (column != -1) { |
| 700 | /* Adjust columns for 16 bit buswidth */ |
Brian Norris | 3dad234 | 2014-01-29 14:08:12 -0800 | [diff] [blame] | 701 | if (chip->options & NAND_BUSWIDTH_16 && |
| 702 | !nand_opcode_8bits(command)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | column >>= 1; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 704 | chip->cmd_ctrl(mtd, column, ctrl); |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 705 | ctrl &= ~NAND_CTRL_CHANGE; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 706 | chip->cmd_ctrl(mtd, column >> 8, ctrl); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 707 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | if (page_addr != -1) { |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 709 | chip->cmd_ctrl(mtd, page_addr, ctrl); |
| 710 | chip->cmd_ctrl(mtd, page_addr >> 8, |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 711 | NAND_NCE | NAND_ALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | /* One more address cycle for devices > 128MiB */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 713 | if (chip->chipsize > (128 << 20)) |
| 714 | chip->cmd_ctrl(mtd, page_addr >> 16, |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 715 | NAND_NCE | NAND_ALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | } |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 718 | chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 719 | |
| 720 | /* |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 721 | * Program and erase have their own busy handlers status, sequential |
Gerhard Sittig | 7a442f1 | 2014-03-29 14:36:22 +0100 | [diff] [blame] | 722 | * in and status need no delay. |
David A. Marlin | 30f464b | 2005-01-17 18:35:25 +0000 | [diff] [blame] | 723 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | switch (command) { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 725 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | case NAND_CMD_CACHEDPROG: |
| 727 | case NAND_CMD_PAGEPROG: |
| 728 | case NAND_CMD_ERASE1: |
| 729 | case NAND_CMD_ERASE2: |
| 730 | case NAND_CMD_SEQIN: |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 731 | case NAND_CMD_RNDIN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | case NAND_CMD_STATUS: |
David A. Marlin | 30f464b | 2005-01-17 18:35:25 +0000 | [diff] [blame] | 733 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | |
| 735 | case NAND_CMD_RESET: |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 736 | if (chip->dev_ready) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | break; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 738 | udelay(chip->chip_delay); |
Thomas Gleixner | 12efdde | 2006-05-24 22:57:09 +0200 | [diff] [blame] | 739 | chip->cmd_ctrl(mtd, NAND_CMD_STATUS, |
| 740 | NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE); |
| 741 | chip->cmd_ctrl(mtd, NAND_CMD_NONE, |
| 742 | NAND_NCE | NAND_CTRL_CHANGE); |
Roger Quadros | 60c70d6 | 2015-02-23 17:26:39 +0200 | [diff] [blame] | 743 | /* EZ-NAND can take upto 250ms as per ONFi v4.0 */ |
| 744 | nand_wait_status_ready(mtd, 250); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | return; |
| 746 | |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 747 | case NAND_CMD_RNDOUT: |
| 748 | /* No ready / busy check necessary */ |
| 749 | chip->cmd_ctrl(mtd, NAND_CMD_RNDOUTSTART, |
| 750 | NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE); |
| 751 | chip->cmd_ctrl(mtd, NAND_CMD_NONE, |
| 752 | NAND_NCE | NAND_CTRL_CHANGE); |
| 753 | return; |
| 754 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | case NAND_CMD_READ0: |
Thomas Gleixner | 12efdde | 2006-05-24 22:57:09 +0200 | [diff] [blame] | 756 | chip->cmd_ctrl(mtd, NAND_CMD_READSTART, |
| 757 | NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE); |
| 758 | chip->cmd_ctrl(mtd, NAND_CMD_NONE, |
| 759 | NAND_NCE | NAND_CTRL_CHANGE); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 760 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 761 | /* This applies to read commands */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | default: |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 763 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | * If we don't have access to the busy pin, we apply the given |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 765 | * command delay. |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 766 | */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 767 | if (!chip->dev_ready) { |
| 768 | udelay(chip->chip_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | return; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 770 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | } |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 772 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 773 | /* |
| 774 | * Apply this short delay always to ensure that we do wait tWB in |
| 775 | * any case on any machine. |
| 776 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 777 | ndelay(100); |
Thomas Gleixner | 3b88775 | 2005-02-22 21:56:49 +0000 | [diff] [blame] | 778 | |
| 779 | nand_wait_ready(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | /** |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 783 | * panic_nand_get_device - [GENERIC] Get chip for selected access |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 784 | * @chip: the nand chip descriptor |
| 785 | * @mtd: MTD device structure |
| 786 | * @new_state: the state which is requested |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 787 | * |
| 788 | * Used when in panic, no locks are taken. |
| 789 | */ |
| 790 | static void panic_nand_get_device(struct nand_chip *chip, |
| 791 | struct mtd_info *mtd, int new_state) |
| 792 | { |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 793 | /* Hardware controller shared among independent devices */ |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 794 | chip->controller->active = chip; |
| 795 | chip->state = new_state; |
| 796 | } |
| 797 | |
| 798 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | * nand_get_device - [GENERIC] Get chip for selected access |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 800 | * @mtd: MTD device structure |
| 801 | * @new_state: the state which is requested |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | * |
| 803 | * Get the device and lock it for exclusive access |
| 804 | */ |
Thomas Gleixner | 2c0a2be | 2006-05-23 11:50:56 +0200 | [diff] [blame] | 805 | static int |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 806 | nand_get_device(struct mtd_info *mtd, int new_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 808 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 809 | spinlock_t *lock = &chip->controller->lock; |
| 810 | wait_queue_head_t *wq = &chip->controller->wq; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 811 | DECLARE_WAITQUEUE(wait, current); |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 812 | retry: |
Thomas Gleixner | 0dfc624 | 2005-05-31 20:39:20 +0100 | [diff] [blame] | 813 | spin_lock(lock); |
| 814 | |
vimal singh | b8b3ee9 | 2009-07-09 20:41:22 +0530 | [diff] [blame] | 815 | /* Hardware controller shared among independent devices */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 816 | if (!chip->controller->active) |
| 817 | chip->controller->active = chip; |
Thomas Gleixner | a36ed29 | 2006-05-23 11:37:03 +0200 | [diff] [blame] | 818 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 819 | if (chip->controller->active == chip && chip->state == FL_READY) { |
| 820 | chip->state = new_state; |
Thomas Gleixner | 0dfc624 | 2005-05-31 20:39:20 +0100 | [diff] [blame] | 821 | spin_unlock(lock); |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 822 | return 0; |
| 823 | } |
| 824 | if (new_state == FL_PM_SUSPENDED) { |
Li Yang | 6b0d9a8 | 2009-11-17 14:45:49 -0800 | [diff] [blame] | 825 | if (chip->controller->active->state == FL_PM_SUSPENDED) { |
| 826 | chip->state = FL_PM_SUSPENDED; |
| 827 | spin_unlock(lock); |
| 828 | return 0; |
Li Yang | 6b0d9a8 | 2009-11-17 14:45:49 -0800 | [diff] [blame] | 829 | } |
Thomas Gleixner | 0dfc624 | 2005-05-31 20:39:20 +0100 | [diff] [blame] | 830 | } |
| 831 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 832 | add_wait_queue(wq, &wait); |
| 833 | spin_unlock(lock); |
| 834 | schedule(); |
| 835 | remove_wait_queue(wq, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | goto retry; |
| 837 | } |
| 838 | |
| 839 | /** |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 840 | * panic_nand_wait - [GENERIC] wait until the command is done |
| 841 | * @mtd: MTD device structure |
| 842 | * @chip: NAND chip structure |
| 843 | * @timeo: timeout |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 844 | * |
| 845 | * Wait for command done. This is a helper function for nand_wait used when |
| 846 | * we are in interrupt context. May happen when in panic and trying to write |
Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 847 | * an oops through mtdoops. |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 848 | */ |
| 849 | static void panic_nand_wait(struct mtd_info *mtd, struct nand_chip *chip, |
| 850 | unsigned long timeo) |
| 851 | { |
| 852 | int i; |
| 853 | for (i = 0; i < timeo; i++) { |
| 854 | if (chip->dev_ready) { |
| 855 | if (chip->dev_ready(mtd)) |
| 856 | break; |
| 857 | } else { |
| 858 | if (chip->read_byte(mtd) & NAND_STATUS_READY) |
| 859 | break; |
| 860 | } |
| 861 | mdelay(1); |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 862 | } |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 863 | } |
| 864 | |
| 865 | /** |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 866 | * nand_wait - [DEFAULT] wait until the command is done |
| 867 | * @mtd: MTD device structure |
| 868 | * @chip: NAND chip structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | * |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 870 | * Wait for command done. This applies to erase and program only. |
Randy Dunlap | 844d3b4 | 2006-06-28 21:48:27 -0700 | [diff] [blame] | 871 | */ |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 872 | static int nand_wait(struct mtd_info *mtd, struct nand_chip *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | { |
| 874 | |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 875 | int status; |
| 876 | unsigned long timeo = 400; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 878 | /* |
| 879 | * Apply this short delay always to ensure that we do wait tWB in any |
| 880 | * case on any machine. |
| 881 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 882 | ndelay(100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
Artem Bityutskiy | 14c6578 | 2013-03-04 14:21:34 +0200 | [diff] [blame] | 884 | chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 886 | if (in_interrupt() || oops_in_progress) |
| 887 | panic_nand_wait(mtd, chip, timeo); |
| 888 | else { |
Huang Shijie | 6d2559f | 2013-01-30 10:03:56 +0800 | [diff] [blame] | 889 | timeo = jiffies + msecs_to_jiffies(timeo); |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 890 | do { |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 891 | if (chip->dev_ready) { |
| 892 | if (chip->dev_ready(mtd)) |
| 893 | break; |
| 894 | } else { |
| 895 | if (chip->read_byte(mtd) & NAND_STATUS_READY) |
| 896 | break; |
| 897 | } |
| 898 | cond_resched(); |
Alex Smith | b70af9b | 2015-10-06 14:52:07 +0100 | [diff] [blame] | 899 | } while (time_before(jiffies, timeo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | } |
Richard Purdie | 8fe833c | 2006-03-31 02:31:14 -0800 | [diff] [blame] | 901 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 902 | status = (int)chip->read_byte(mtd); |
Matthieu CASTET | f251b8d | 2012-11-05 15:00:44 +0100 | [diff] [blame] | 903 | /* This can happen if in case of timeout or buggy dev_ready */ |
| 904 | WARN_ON(!(status & NAND_STATUS_READY)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | return status; |
| 906 | } |
| 907 | |
| 908 | /** |
Randy Dunlap | b6d676d | 2010-08-10 18:02:50 -0700 | [diff] [blame] | 909 | * __nand_unlock - [REPLACEABLE] unlocks specified locked blocks |
Randy Dunlap | b6d676d | 2010-08-10 18:02:50 -0700 | [diff] [blame] | 910 | * @mtd: mtd info |
| 911 | * @ofs: offset to start unlock from |
| 912 | * @len: length to unlock |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 913 | * @invert: when = 0, unlock the range of blocks within the lower and |
| 914 | * upper boundary address |
| 915 | * when = 1, unlock the range of blocks outside the boundaries |
| 916 | * of the lower and upper boundary address |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 917 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 918 | * Returs unlock status. |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 919 | */ |
| 920 | static int __nand_unlock(struct mtd_info *mtd, loff_t ofs, |
| 921 | uint64_t len, int invert) |
| 922 | { |
| 923 | int ret = 0; |
| 924 | int status, page; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 925 | struct nand_chip *chip = mtd_to_nand(mtd); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 926 | |
| 927 | /* Submit address of first page to unlock */ |
| 928 | page = ofs >> chip->page_shift; |
| 929 | chip->cmdfunc(mtd, NAND_CMD_UNLOCK1, -1, page & chip->pagemask); |
| 930 | |
| 931 | /* Submit address of last page to unlock */ |
| 932 | page = (ofs + len) >> chip->page_shift; |
| 933 | chip->cmdfunc(mtd, NAND_CMD_UNLOCK2, -1, |
| 934 | (page | invert) & chip->pagemask); |
| 935 | |
| 936 | /* Call wait ready function */ |
| 937 | status = chip->waitfunc(mtd, chip); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 938 | /* See if device thinks it succeeded */ |
Huang Shijie | 7483096 | 2012-10-14 23:47:24 -0400 | [diff] [blame] | 939 | if (status & NAND_STATUS_FAIL) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 940 | pr_debug("%s: error status = 0x%08x\n", |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 941 | __func__, status); |
| 942 | ret = -EIO; |
| 943 | } |
| 944 | |
| 945 | return ret; |
| 946 | } |
| 947 | |
| 948 | /** |
Randy Dunlap | b6d676d | 2010-08-10 18:02:50 -0700 | [diff] [blame] | 949 | * nand_unlock - [REPLACEABLE] unlocks specified locked blocks |
Randy Dunlap | b6d676d | 2010-08-10 18:02:50 -0700 | [diff] [blame] | 950 | * @mtd: mtd info |
| 951 | * @ofs: offset to start unlock from |
| 952 | * @len: length to unlock |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 953 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 954 | * Returns unlock status. |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 955 | */ |
| 956 | int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) |
| 957 | { |
| 958 | int ret = 0; |
| 959 | int chipnr; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 960 | struct nand_chip *chip = mtd_to_nand(mtd); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 961 | |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 962 | pr_debug("%s: start = 0x%012llx, len = %llu\n", |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 963 | __func__, (unsigned long long)ofs, len); |
| 964 | |
| 965 | if (check_offs_len(mtd, ofs, len)) |
Brian Norris | b1a2348 | 2015-02-28 02:02:27 -0800 | [diff] [blame] | 966 | return -EINVAL; |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 967 | |
| 968 | /* Align to last block address if size addresses end of the device */ |
| 969 | if (ofs + len == mtd->size) |
| 970 | len -= mtd->erasesize; |
| 971 | |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 972 | nand_get_device(mtd, FL_UNLOCKING); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 973 | |
| 974 | /* Shift to get chip number */ |
| 975 | chipnr = ofs >> chip->chip_shift; |
| 976 | |
| 977 | chip->select_chip(mtd, chipnr); |
| 978 | |
White Ding | 57d3a9a | 2014-07-24 00:10:45 +0800 | [diff] [blame] | 979 | /* |
| 980 | * Reset the chip. |
| 981 | * If we want to check the WP through READ STATUS and check the bit 7 |
| 982 | * we must reset the chip |
| 983 | * some operation can also clear the bit 7 of status register |
| 984 | * eg. erase/program a locked block |
| 985 | */ |
| 986 | chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1); |
| 987 | |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 988 | /* Check, if it is write protected */ |
| 989 | if (nand_check_wp(mtd)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 990 | pr_debug("%s: device is write protected!\n", |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 991 | __func__); |
| 992 | ret = -EIO; |
| 993 | goto out; |
| 994 | } |
| 995 | |
| 996 | ret = __nand_unlock(mtd, ofs, len, 0); |
| 997 | |
| 998 | out: |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 999 | chip->select_chip(mtd, -1); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1000 | nand_release_device(mtd); |
| 1001 | |
| 1002 | return ret; |
| 1003 | } |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1004 | EXPORT_SYMBOL(nand_unlock); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1005 | |
| 1006 | /** |
Randy Dunlap | b6d676d | 2010-08-10 18:02:50 -0700 | [diff] [blame] | 1007 | * nand_lock - [REPLACEABLE] locks all blocks present in the device |
Randy Dunlap | b6d676d | 2010-08-10 18:02:50 -0700 | [diff] [blame] | 1008 | * @mtd: mtd info |
| 1009 | * @ofs: offset to start unlock from |
| 1010 | * @len: length to unlock |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1011 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1012 | * This feature is not supported in many NAND parts. 'Micron' NAND parts do |
| 1013 | * have this feature, but it allows only to lock all blocks, not for specified |
| 1014 | * range for block. Implementing 'lock' feature by making use of 'unlock', for |
| 1015 | * now. |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1016 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1017 | * Returns lock status. |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1018 | */ |
| 1019 | int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len) |
| 1020 | { |
| 1021 | int ret = 0; |
| 1022 | int chipnr, status, page; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 1023 | struct nand_chip *chip = mtd_to_nand(mtd); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1024 | |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 1025 | pr_debug("%s: start = 0x%012llx, len = %llu\n", |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1026 | __func__, (unsigned long long)ofs, len); |
| 1027 | |
| 1028 | if (check_offs_len(mtd, ofs, len)) |
Brian Norris | b1a2348 | 2015-02-28 02:02:27 -0800 | [diff] [blame] | 1029 | return -EINVAL; |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1030 | |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 1031 | nand_get_device(mtd, FL_LOCKING); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1032 | |
| 1033 | /* Shift to get chip number */ |
| 1034 | chipnr = ofs >> chip->chip_shift; |
| 1035 | |
| 1036 | chip->select_chip(mtd, chipnr); |
| 1037 | |
White Ding | 57d3a9a | 2014-07-24 00:10:45 +0800 | [diff] [blame] | 1038 | /* |
| 1039 | * Reset the chip. |
| 1040 | * If we want to check the WP through READ STATUS and check the bit 7 |
| 1041 | * we must reset the chip |
| 1042 | * some operation can also clear the bit 7 of status register |
| 1043 | * eg. erase/program a locked block |
| 1044 | */ |
| 1045 | chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1); |
| 1046 | |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1047 | /* Check, if it is write protected */ |
| 1048 | if (nand_check_wp(mtd)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 1049 | pr_debug("%s: device is write protected!\n", |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1050 | __func__); |
| 1051 | status = MTD_ERASE_FAILED; |
| 1052 | ret = -EIO; |
| 1053 | goto out; |
| 1054 | } |
| 1055 | |
| 1056 | /* Submit address of first page to lock */ |
| 1057 | page = ofs >> chip->page_shift; |
| 1058 | chip->cmdfunc(mtd, NAND_CMD_LOCK, -1, page & chip->pagemask); |
| 1059 | |
| 1060 | /* Call wait ready function */ |
| 1061 | status = chip->waitfunc(mtd, chip); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1062 | /* See if device thinks it succeeded */ |
Huang Shijie | 7483096 | 2012-10-14 23:47:24 -0400 | [diff] [blame] | 1063 | if (status & NAND_STATUS_FAIL) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 1064 | pr_debug("%s: error status = 0x%08x\n", |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1065 | __func__, status); |
| 1066 | ret = -EIO; |
| 1067 | goto out; |
| 1068 | } |
| 1069 | |
| 1070 | ret = __nand_unlock(mtd, ofs, len, 0x1); |
| 1071 | |
| 1072 | out: |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 1073 | chip->select_chip(mtd, -1); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1074 | nand_release_device(mtd); |
| 1075 | |
| 1076 | return ret; |
| 1077 | } |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1078 | EXPORT_SYMBOL(nand_lock); |
Vimal Singh | 7d70f33 | 2010-02-08 15:50:49 +0530 | [diff] [blame] | 1079 | |
| 1080 | /** |
Boris BREZILLON | 730a43f | 2015-09-03 18:03:38 +0200 | [diff] [blame] | 1081 | * nand_check_erased_buf - check if a buffer contains (almost) only 0xff data |
| 1082 | * @buf: buffer to test |
| 1083 | * @len: buffer length |
| 1084 | * @bitflips_threshold: maximum number of bitflips |
| 1085 | * |
| 1086 | * Check if a buffer contains only 0xff, which means the underlying region |
| 1087 | * has been erased and is ready to be programmed. |
| 1088 | * The bitflips_threshold specify the maximum number of bitflips before |
| 1089 | * considering the region is not erased. |
| 1090 | * Note: The logic of this function has been extracted from the memweight |
| 1091 | * implementation, except that nand_check_erased_buf function exit before |
| 1092 | * testing the whole buffer if the number of bitflips exceed the |
| 1093 | * bitflips_threshold value. |
| 1094 | * |
| 1095 | * Returns a positive number of bitflips less than or equal to |
| 1096 | * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the |
| 1097 | * threshold. |
| 1098 | */ |
| 1099 | static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold) |
| 1100 | { |
| 1101 | const unsigned char *bitmap = buf; |
| 1102 | int bitflips = 0; |
| 1103 | int weight; |
| 1104 | |
| 1105 | for (; len && ((uintptr_t)bitmap) % sizeof(long); |
| 1106 | len--, bitmap++) { |
| 1107 | weight = hweight8(*bitmap); |
| 1108 | bitflips += BITS_PER_BYTE - weight; |
| 1109 | if (unlikely(bitflips > bitflips_threshold)) |
| 1110 | return -EBADMSG; |
| 1111 | } |
| 1112 | |
| 1113 | for (; len >= sizeof(long); |
| 1114 | len -= sizeof(long), bitmap += sizeof(long)) { |
| 1115 | weight = hweight_long(*((unsigned long *)bitmap)); |
| 1116 | bitflips += BITS_PER_LONG - weight; |
| 1117 | if (unlikely(bitflips > bitflips_threshold)) |
| 1118 | return -EBADMSG; |
| 1119 | } |
| 1120 | |
| 1121 | for (; len > 0; len--, bitmap++) { |
| 1122 | weight = hweight8(*bitmap); |
| 1123 | bitflips += BITS_PER_BYTE - weight; |
| 1124 | if (unlikely(bitflips > bitflips_threshold)) |
| 1125 | return -EBADMSG; |
| 1126 | } |
| 1127 | |
| 1128 | return bitflips; |
| 1129 | } |
| 1130 | |
| 1131 | /** |
| 1132 | * nand_check_erased_ecc_chunk - check if an ECC chunk contains (almost) only |
| 1133 | * 0xff data |
| 1134 | * @data: data buffer to test |
| 1135 | * @datalen: data length |
| 1136 | * @ecc: ECC buffer |
| 1137 | * @ecclen: ECC length |
| 1138 | * @extraoob: extra OOB buffer |
| 1139 | * @extraooblen: extra OOB length |
| 1140 | * @bitflips_threshold: maximum number of bitflips |
| 1141 | * |
| 1142 | * Check if a data buffer and its associated ECC and OOB data contains only |
| 1143 | * 0xff pattern, which means the underlying region has been erased and is |
| 1144 | * ready to be programmed. |
| 1145 | * The bitflips_threshold specify the maximum number of bitflips before |
| 1146 | * considering the region as not erased. |
| 1147 | * |
| 1148 | * Note: |
| 1149 | * 1/ ECC algorithms are working on pre-defined block sizes which are usually |
| 1150 | * different from the NAND page size. When fixing bitflips, ECC engines will |
| 1151 | * report the number of errors per chunk, and the NAND core infrastructure |
| 1152 | * expect you to return the maximum number of bitflips for the whole page. |
| 1153 | * This is why you should always use this function on a single chunk and |
| 1154 | * not on the whole page. After checking each chunk you should update your |
| 1155 | * max_bitflips value accordingly. |
| 1156 | * 2/ When checking for bitflips in erased pages you should not only check |
| 1157 | * the payload data but also their associated ECC data, because a user might |
| 1158 | * have programmed almost all bits to 1 but a few. In this case, we |
| 1159 | * shouldn't consider the chunk as erased, and checking ECC bytes prevent |
| 1160 | * this case. |
| 1161 | * 3/ The extraoob argument is optional, and should be used if some of your OOB |
| 1162 | * data are protected by the ECC engine. |
| 1163 | * It could also be used if you support subpages and want to attach some |
| 1164 | * extra OOB data to an ECC chunk. |
| 1165 | * |
| 1166 | * Returns a positive number of bitflips less than or equal to |
| 1167 | * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the |
| 1168 | * threshold. In case of success, the passed buffers are filled with 0xff. |
| 1169 | */ |
| 1170 | int nand_check_erased_ecc_chunk(void *data, int datalen, |
| 1171 | void *ecc, int ecclen, |
| 1172 | void *extraoob, int extraooblen, |
| 1173 | int bitflips_threshold) |
| 1174 | { |
| 1175 | int data_bitflips = 0, ecc_bitflips = 0, extraoob_bitflips = 0; |
| 1176 | |
| 1177 | data_bitflips = nand_check_erased_buf(data, datalen, |
| 1178 | bitflips_threshold); |
| 1179 | if (data_bitflips < 0) |
| 1180 | return data_bitflips; |
| 1181 | |
| 1182 | bitflips_threshold -= data_bitflips; |
| 1183 | |
| 1184 | ecc_bitflips = nand_check_erased_buf(ecc, ecclen, bitflips_threshold); |
| 1185 | if (ecc_bitflips < 0) |
| 1186 | return ecc_bitflips; |
| 1187 | |
| 1188 | bitflips_threshold -= ecc_bitflips; |
| 1189 | |
| 1190 | extraoob_bitflips = nand_check_erased_buf(extraoob, extraooblen, |
| 1191 | bitflips_threshold); |
| 1192 | if (extraoob_bitflips < 0) |
| 1193 | return extraoob_bitflips; |
| 1194 | |
| 1195 | if (data_bitflips) |
| 1196 | memset(data, 0xff, datalen); |
| 1197 | |
| 1198 | if (ecc_bitflips) |
| 1199 | memset(ecc, 0xff, ecclen); |
| 1200 | |
| 1201 | if (extraoob_bitflips) |
| 1202 | memset(extraoob, 0xff, extraooblen); |
| 1203 | |
| 1204 | return data_bitflips + ecc_bitflips + extraoob_bitflips; |
| 1205 | } |
| 1206 | EXPORT_SYMBOL(nand_check_erased_ecc_chunk); |
| 1207 | |
| 1208 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1209 | * nand_read_page_raw - [INTERN] read raw page data without ecc |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1210 | * @mtd: mtd info structure |
| 1211 | * @chip: nand chip info structure |
| 1212 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1213 | * @oob_required: caller requires OOB data read to chip->oob_poi |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1214 | * @page: page number to read |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 1215 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1216 | * Not for syndrome calculating ECC controllers, which use a special oob layout. |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1217 | */ |
| 1218 | static int nand_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1219 | uint8_t *buf, int oob_required, int page) |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1220 | { |
| 1221 | chip->read_buf(mtd, buf, mtd->writesize); |
Brian Norris | 279f08d | 2012-05-02 10:15:03 -0700 | [diff] [blame] | 1222 | if (oob_required) |
| 1223 | chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1224 | return 0; |
| 1225 | } |
| 1226 | |
| 1227 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1228 | * nand_read_page_raw_syndrome - [INTERN] read raw page data without ecc |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1229 | * @mtd: mtd info structure |
| 1230 | * @chip: nand chip info structure |
| 1231 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1232 | * @oob_required: caller requires OOB data read to chip->oob_poi |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1233 | * @page: page number to read |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 1234 | * |
| 1235 | * We need a special oob layout and handling even when OOB isn't used. |
| 1236 | */ |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1237 | static int nand_read_page_raw_syndrome(struct mtd_info *mtd, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1238 | struct nand_chip *chip, uint8_t *buf, |
| 1239 | int oob_required, int page) |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 1240 | { |
| 1241 | int eccsize = chip->ecc.size; |
| 1242 | int eccbytes = chip->ecc.bytes; |
| 1243 | uint8_t *oob = chip->oob_poi; |
| 1244 | int steps, size; |
| 1245 | |
| 1246 | for (steps = chip->ecc.steps; steps > 0; steps--) { |
| 1247 | chip->read_buf(mtd, buf, eccsize); |
| 1248 | buf += eccsize; |
| 1249 | |
| 1250 | if (chip->ecc.prepad) { |
| 1251 | chip->read_buf(mtd, oob, chip->ecc.prepad); |
| 1252 | oob += chip->ecc.prepad; |
| 1253 | } |
| 1254 | |
| 1255 | chip->read_buf(mtd, oob, eccbytes); |
| 1256 | oob += eccbytes; |
| 1257 | |
| 1258 | if (chip->ecc.postpad) { |
| 1259 | chip->read_buf(mtd, oob, chip->ecc.postpad); |
| 1260 | oob += chip->ecc.postpad; |
| 1261 | } |
| 1262 | } |
| 1263 | |
| 1264 | size = mtd->oobsize - (oob - chip->oob_poi); |
| 1265 | if (size) |
| 1266 | chip->read_buf(mtd, oob, size); |
| 1267 | |
| 1268 | return 0; |
| 1269 | } |
| 1270 | |
| 1271 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1272 | * nand_read_page_swecc - [REPLACEABLE] software ECC based page read function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1273 | * @mtd: mtd info structure |
| 1274 | * @chip: nand chip info structure |
| 1275 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1276 | * @oob_required: caller requires OOB data read to chip->oob_poi |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1277 | * @page: page number to read |
David A. Marlin | 068e3c0 | 2005-01-24 03:07:46 +0000 | [diff] [blame] | 1278 | */ |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1279 | static int nand_read_page_swecc(struct mtd_info *mtd, struct nand_chip *chip, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1280 | uint8_t *buf, int oob_required, int page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | { |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1282 | int i, eccsize = chip->ecc.size; |
| 1283 | int eccbytes = chip->ecc.bytes; |
| 1284 | int eccsteps = chip->ecc.steps; |
| 1285 | uint8_t *p = buf; |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 1286 | uint8_t *ecc_calc = chip->buffers->ecccalc; |
| 1287 | uint8_t *ecc_code = chip->buffers->ecccode; |
Ben Dooks | 8b099a3 | 2007-05-28 19:17:54 +0100 | [diff] [blame] | 1288 | uint32_t *eccpos = chip->ecc.layout->eccpos; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1289 | unsigned int max_bitflips = 0; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1290 | |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1291 | chip->ecc.read_page_raw(mtd, chip, buf, 1, page); |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1292 | |
| 1293 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) |
| 1294 | chip->ecc.calculate(mtd, p, &ecc_calc[i]); |
| 1295 | |
| 1296 | for (i = 0; i < chip->ecc.total; i++) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1297 | ecc_code[i] = chip->oob_poi[eccpos[i]]; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1298 | |
| 1299 | eccsteps = chip->ecc.steps; |
| 1300 | p = buf; |
| 1301 | |
| 1302 | for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 1303 | int stat; |
| 1304 | |
| 1305 | stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]); |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1306 | if (stat < 0) { |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1307 | mtd->ecc_stats.failed++; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1308 | } else { |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1309 | mtd->ecc_stats.corrected += stat; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1310 | max_bitflips = max_t(unsigned int, max_bitflips, stat); |
| 1311 | } |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1312 | } |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1313 | return max_bitflips; |
Thomas Gleixner | 22c60f5 | 2005-04-04 19:56:32 +0100 | [diff] [blame] | 1314 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | /** |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 1317 | * nand_read_subpage - [REPLACEABLE] ECC based sub-page read function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1318 | * @mtd: mtd info structure |
| 1319 | * @chip: nand chip info structure |
| 1320 | * @data_offs: offset of requested data within the page |
| 1321 | * @readlen: data length |
| 1322 | * @bufpoi: buffer to store read data |
Huang Shijie | e004deb | 2014-01-03 11:01:40 +0800 | [diff] [blame] | 1323 | * @page: page number to read |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1324 | */ |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1325 | static int nand_read_subpage(struct mtd_info *mtd, struct nand_chip *chip, |
Huang Shijie | e004deb | 2014-01-03 11:01:40 +0800 | [diff] [blame] | 1326 | uint32_t data_offs, uint32_t readlen, uint8_t *bufpoi, |
| 1327 | int page) |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1328 | { |
| 1329 | int start_step, end_step, num_steps; |
| 1330 | uint32_t *eccpos = chip->ecc.layout->eccpos; |
| 1331 | uint8_t *p; |
| 1332 | int data_col_addr, i, gaps = 0; |
| 1333 | int datafrag_len, eccfrag_len, aligned_len, aligned_pos; |
| 1334 | int busw = (chip->options & NAND_BUSWIDTH_16) ? 2 : 1; |
Ron | 4a4163ca | 2014-03-16 04:01:07 +1030 | [diff] [blame] | 1335 | int index; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1336 | unsigned int max_bitflips = 0; |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1337 | |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1338 | /* Column address within the page aligned to ECC size (256bytes) */ |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1339 | start_step = data_offs / chip->ecc.size; |
| 1340 | end_step = (data_offs + readlen - 1) / chip->ecc.size; |
| 1341 | num_steps = end_step - start_step + 1; |
Ron | 4a4163ca | 2014-03-16 04:01:07 +1030 | [diff] [blame] | 1342 | index = start_step * chip->ecc.bytes; |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1343 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1344 | /* Data size aligned to ECC ecc.size */ |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1345 | datafrag_len = num_steps * chip->ecc.size; |
| 1346 | eccfrag_len = num_steps * chip->ecc.bytes; |
| 1347 | |
| 1348 | data_col_addr = start_step * chip->ecc.size; |
| 1349 | /* If we read not a page aligned data */ |
| 1350 | if (data_col_addr != 0) |
| 1351 | chip->cmdfunc(mtd, NAND_CMD_RNDOUT, data_col_addr, -1); |
| 1352 | |
| 1353 | p = bufpoi + data_col_addr; |
| 1354 | chip->read_buf(mtd, p, datafrag_len); |
| 1355 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1356 | /* Calculate ECC */ |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1357 | for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) |
| 1358 | chip->ecc.calculate(mtd, p, &chip->buffers->ecccalc[i]); |
| 1359 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1360 | /* |
| 1361 | * The performance is faster if we position offsets according to |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1362 | * ecc.pos. Let's make sure that there are no gaps in ECC positions. |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1363 | */ |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1364 | for (i = 0; i < eccfrag_len - 1; i++) { |
Ron | 47570bb1 | 2014-03-16 04:01:08 +1030 | [diff] [blame] | 1365 | if (eccpos[i + index] + 1 != eccpos[i + index + 1]) { |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1366 | gaps = 1; |
| 1367 | break; |
| 1368 | } |
| 1369 | } |
| 1370 | if (gaps) { |
| 1371 | chip->cmdfunc(mtd, NAND_CMD_RNDOUT, mtd->writesize, -1); |
| 1372 | chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); |
| 1373 | } else { |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1374 | /* |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1375 | * Send the command to read the particular ECC bytes take care |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1376 | * about buswidth alignment in read_buf. |
| 1377 | */ |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1378 | aligned_pos = eccpos[index] & ~(busw - 1); |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1379 | aligned_len = eccfrag_len; |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1380 | if (eccpos[index] & (busw - 1)) |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1381 | aligned_len++; |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1382 | if (eccpos[index + (num_steps * chip->ecc.bytes)] & (busw - 1)) |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1383 | aligned_len++; |
| 1384 | |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1385 | chip->cmdfunc(mtd, NAND_CMD_RNDOUT, |
| 1386 | mtd->writesize + aligned_pos, -1); |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1387 | chip->read_buf(mtd, &chip->oob_poi[aligned_pos], aligned_len); |
| 1388 | } |
| 1389 | |
| 1390 | for (i = 0; i < eccfrag_len; i++) |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1391 | chip->buffers->ecccode[i] = chip->oob_poi[eccpos[i + index]]; |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1392 | |
| 1393 | p = bufpoi + data_col_addr; |
| 1394 | for (i = 0; i < eccfrag_len ; i += chip->ecc.bytes, p += chip->ecc.size) { |
| 1395 | int stat; |
| 1396 | |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1397 | stat = chip->ecc.correct(mtd, p, |
| 1398 | &chip->buffers->ecccode[i], &chip->buffers->ecccalc[i]); |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 1399 | if (stat == -EBADMSG && |
| 1400 | (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) { |
| 1401 | /* check for empty pages with bitflips */ |
| 1402 | stat = nand_check_erased_ecc_chunk(p, chip->ecc.size, |
| 1403 | &chip->buffers->ecccode[i], |
| 1404 | chip->ecc.bytes, |
| 1405 | NULL, 0, |
| 1406 | chip->ecc.strength); |
| 1407 | } |
| 1408 | |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1409 | if (stat < 0) { |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1410 | mtd->ecc_stats.failed++; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1411 | } else { |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1412 | mtd->ecc_stats.corrected += stat; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1413 | max_bitflips = max_t(unsigned int, max_bitflips, stat); |
| 1414 | } |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1415 | } |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1416 | return max_bitflips; |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1417 | } |
| 1418 | |
| 1419 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1420 | * nand_read_page_hwecc - [REPLACEABLE] hardware ECC based page read function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1421 | * @mtd: mtd info structure |
| 1422 | * @chip: nand chip info structure |
| 1423 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1424 | * @oob_required: caller requires OOB data read to chip->oob_poi |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1425 | * @page: page number to read |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1426 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1427 | * Not for syndrome calculating ECC controllers which need a special oob layout. |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1428 | */ |
| 1429 | static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1430 | uint8_t *buf, int oob_required, int page) |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1431 | { |
| 1432 | int i, eccsize = chip->ecc.size; |
| 1433 | int eccbytes = chip->ecc.bytes; |
| 1434 | int eccsteps = chip->ecc.steps; |
| 1435 | uint8_t *p = buf; |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 1436 | uint8_t *ecc_calc = chip->buffers->ecccalc; |
| 1437 | uint8_t *ecc_code = chip->buffers->ecccode; |
Ben Dooks | 8b099a3 | 2007-05-28 19:17:54 +0100 | [diff] [blame] | 1438 | uint32_t *eccpos = chip->ecc.layout->eccpos; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1439 | unsigned int max_bitflips = 0; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1440 | |
| 1441 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 1442 | chip->ecc.hwctl(mtd, NAND_ECC_READ); |
| 1443 | chip->read_buf(mtd, p, eccsize); |
| 1444 | chip->ecc.calculate(mtd, p, &ecc_calc[i]); |
| 1445 | } |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1446 | chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1447 | |
| 1448 | for (i = 0; i < chip->ecc.total; i++) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1449 | ecc_code[i] = chip->oob_poi[eccpos[i]]; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1450 | |
| 1451 | eccsteps = chip->ecc.steps; |
| 1452 | p = buf; |
| 1453 | |
| 1454 | for (i = 0 ; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 1455 | int stat; |
| 1456 | |
| 1457 | stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]); |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 1458 | if (stat == -EBADMSG && |
| 1459 | (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) { |
| 1460 | /* check for empty pages with bitflips */ |
| 1461 | stat = nand_check_erased_ecc_chunk(p, eccsize, |
| 1462 | &ecc_code[i], eccbytes, |
| 1463 | NULL, 0, |
| 1464 | chip->ecc.strength); |
| 1465 | } |
| 1466 | |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1467 | if (stat < 0) { |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1468 | mtd->ecc_stats.failed++; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1469 | } else { |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1470 | mtd->ecc_stats.corrected += stat; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1471 | max_bitflips = max_t(unsigned int, max_bitflips, stat); |
| 1472 | } |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1473 | } |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1474 | return max_bitflips; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1475 | } |
| 1476 | |
| 1477 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1478 | * nand_read_page_hwecc_oob_first - [REPLACEABLE] hw ecc, read oob first |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1479 | * @mtd: mtd info structure |
| 1480 | * @chip: nand chip info structure |
| 1481 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1482 | * @oob_required: caller requires OOB data read to chip->oob_poi |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1483 | * @page: page number to read |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1484 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1485 | * Hardware ECC for large page chips, require OOB to be read first. For this |
| 1486 | * ECC mode, the write_page method is re-used from ECC_HW. These methods |
| 1487 | * read/write ECC from the OOB area, unlike the ECC_HW_SYNDROME support with |
| 1488 | * multiple ECC steps, follows the "infix ECC" scheme and reads/writes ECC from |
| 1489 | * the data area, by overwriting the NAND manufacturer bad block markings. |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1490 | */ |
| 1491 | static int nand_read_page_hwecc_oob_first(struct mtd_info *mtd, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1492 | struct nand_chip *chip, uint8_t *buf, int oob_required, int page) |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1493 | { |
| 1494 | int i, eccsize = chip->ecc.size; |
| 1495 | int eccbytes = chip->ecc.bytes; |
| 1496 | int eccsteps = chip->ecc.steps; |
| 1497 | uint8_t *p = buf; |
| 1498 | uint8_t *ecc_code = chip->buffers->ecccode; |
| 1499 | uint32_t *eccpos = chip->ecc.layout->eccpos; |
| 1500 | uint8_t *ecc_calc = chip->buffers->ecccalc; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1501 | unsigned int max_bitflips = 0; |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1502 | |
| 1503 | /* Read the OOB area first */ |
| 1504 | chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page); |
| 1505 | chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); |
| 1506 | chip->cmdfunc(mtd, NAND_CMD_READ0, 0, page); |
| 1507 | |
| 1508 | for (i = 0; i < chip->ecc.total; i++) |
| 1509 | ecc_code[i] = chip->oob_poi[eccpos[i]]; |
| 1510 | |
| 1511 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 1512 | int stat; |
| 1513 | |
| 1514 | chip->ecc.hwctl(mtd, NAND_ECC_READ); |
| 1515 | chip->read_buf(mtd, p, eccsize); |
| 1516 | chip->ecc.calculate(mtd, p, &ecc_calc[i]); |
| 1517 | |
| 1518 | stat = chip->ecc.correct(mtd, p, &ecc_code[i], NULL); |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 1519 | if (stat == -EBADMSG && |
| 1520 | (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) { |
| 1521 | /* check for empty pages with bitflips */ |
| 1522 | stat = nand_check_erased_ecc_chunk(p, eccsize, |
| 1523 | &ecc_code[i], eccbytes, |
| 1524 | NULL, 0, |
| 1525 | chip->ecc.strength); |
| 1526 | } |
| 1527 | |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1528 | if (stat < 0) { |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1529 | mtd->ecc_stats.failed++; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1530 | } else { |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1531 | mtd->ecc_stats.corrected += stat; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1532 | max_bitflips = max_t(unsigned int, max_bitflips, stat); |
| 1533 | } |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1534 | } |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1535 | return max_bitflips; |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1539 | * nand_read_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page read |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1540 | * @mtd: mtd info structure |
| 1541 | * @chip: nand chip info structure |
| 1542 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1543 | * @oob_required: caller requires OOB data read to chip->oob_poi |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1544 | * @page: page number to read |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1545 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1546 | * The hw generator calculates the error syndrome automatically. Therefore we |
| 1547 | * need a special oob layout and handling. |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1548 | */ |
| 1549 | static int nand_read_page_syndrome(struct mtd_info *mtd, struct nand_chip *chip, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1550 | uint8_t *buf, int oob_required, int page) |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1551 | { |
| 1552 | int i, eccsize = chip->ecc.size; |
| 1553 | int eccbytes = chip->ecc.bytes; |
| 1554 | int eccsteps = chip->ecc.steps; |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 1555 | int eccpadbytes = eccbytes + chip->ecc.prepad + chip->ecc.postpad; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1556 | uint8_t *p = buf; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 1557 | uint8_t *oob = chip->oob_poi; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1558 | unsigned int max_bitflips = 0; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1559 | |
| 1560 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 1561 | int stat; |
| 1562 | |
| 1563 | chip->ecc.hwctl(mtd, NAND_ECC_READ); |
| 1564 | chip->read_buf(mtd, p, eccsize); |
| 1565 | |
| 1566 | if (chip->ecc.prepad) { |
| 1567 | chip->read_buf(mtd, oob, chip->ecc.prepad); |
| 1568 | oob += chip->ecc.prepad; |
| 1569 | } |
| 1570 | |
| 1571 | chip->ecc.hwctl(mtd, NAND_ECC_READSYN); |
| 1572 | chip->read_buf(mtd, oob, eccbytes); |
| 1573 | stat = chip->ecc.correct(mtd, p, oob, NULL); |
| 1574 | |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1575 | oob += eccbytes; |
| 1576 | |
| 1577 | if (chip->ecc.postpad) { |
| 1578 | chip->read_buf(mtd, oob, chip->ecc.postpad); |
| 1579 | oob += chip->ecc.postpad; |
| 1580 | } |
Boris BREZILLON | 40cbe6e | 2015-12-30 20:32:04 +0100 | [diff] [blame] | 1581 | |
| 1582 | if (stat == -EBADMSG && |
| 1583 | (chip->ecc.options & NAND_ECC_GENERIC_ERASED_CHECK)) { |
| 1584 | /* check for empty pages with bitflips */ |
| 1585 | stat = nand_check_erased_ecc_chunk(p, chip->ecc.size, |
| 1586 | oob - eccpadbytes, |
| 1587 | eccpadbytes, |
| 1588 | NULL, 0, |
| 1589 | chip->ecc.strength); |
| 1590 | } |
| 1591 | |
| 1592 | if (stat < 0) { |
| 1593 | mtd->ecc_stats.failed++; |
| 1594 | } else { |
| 1595 | mtd->ecc_stats.corrected += stat; |
| 1596 | max_bitflips = max_t(unsigned int, max_bitflips, stat); |
| 1597 | } |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1598 | } |
| 1599 | |
| 1600 | /* Calculate remaining oob bytes */ |
Vitaly Wool | 7e4178f | 2006-06-07 09:34:37 +0400 | [diff] [blame] | 1601 | i = mtd->oobsize - (oob - chip->oob_poi); |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1602 | if (i) |
| 1603 | chip->read_buf(mtd, oob, i); |
| 1604 | |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1605 | return max_bitflips; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1606 | } |
| 1607 | |
| 1608 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1609 | * nand_transfer_oob - [INTERN] Transfer oob to client buffer |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1610 | * @chip: nand chip structure |
| 1611 | * @oob: oob destination address |
| 1612 | * @ops: oob ops structure |
| 1613 | * @len: size of oob to transfer |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1614 | */ |
| 1615 | static uint8_t *nand_transfer_oob(struct nand_chip *chip, uint8_t *oob, |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 1616 | struct mtd_oob_ops *ops, size_t len) |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1617 | { |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 1618 | switch (ops->mode) { |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1619 | |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 1620 | case MTD_OPS_PLACE_OOB: |
| 1621 | case MTD_OPS_RAW: |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1622 | memcpy(oob, chip->oob_poi + ops->ooboffs, len); |
| 1623 | return oob + len; |
| 1624 | |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 1625 | case MTD_OPS_AUTO_OOB: { |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1626 | struct nand_oobfree *free = chip->ecc.layout->oobfree; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1627 | uint32_t boffs = 0, roffs = ops->ooboffs; |
| 1628 | size_t bytes = 0; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1629 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 1630 | for (; free->length && len; free++, len -= bytes) { |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1631 | /* Read request not from offset 0? */ |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1632 | if (unlikely(roffs)) { |
| 1633 | if (roffs >= free->length) { |
| 1634 | roffs -= free->length; |
| 1635 | continue; |
| 1636 | } |
| 1637 | boffs = free->offset + roffs; |
| 1638 | bytes = min_t(size_t, len, |
| 1639 | (free->length - roffs)); |
| 1640 | roffs = 0; |
| 1641 | } else { |
| 1642 | bytes = min_t(size_t, len, free->length); |
| 1643 | boffs = free->offset; |
| 1644 | } |
| 1645 | memcpy(oob, chip->oob_poi + boffs, bytes); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1646 | oob += bytes; |
| 1647 | } |
| 1648 | return oob; |
| 1649 | } |
| 1650 | default: |
| 1651 | BUG(); |
| 1652 | } |
| 1653 | return NULL; |
| 1654 | } |
| 1655 | |
| 1656 | /** |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1657 | * nand_setup_read_retry - [INTERN] Set the READ RETRY mode |
| 1658 | * @mtd: MTD device structure |
| 1659 | * @retry_mode: the retry mode to use |
| 1660 | * |
| 1661 | * Some vendors supply a special command to shift the Vt threshold, to be used |
| 1662 | * when there are too many bitflips in a page (i.e., ECC error). After setting |
| 1663 | * a new threshold, the host should retry reading the page. |
| 1664 | */ |
| 1665 | static int nand_setup_read_retry(struct mtd_info *mtd, int retry_mode) |
| 1666 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 1667 | struct nand_chip *chip = mtd_to_nand(mtd); |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1668 | |
| 1669 | pr_debug("setting READ RETRY mode %d\n", retry_mode); |
| 1670 | |
| 1671 | if (retry_mode >= chip->read_retries) |
| 1672 | return -EINVAL; |
| 1673 | |
| 1674 | if (!chip->setup_read_retry) |
| 1675 | return -EOPNOTSUPP; |
| 1676 | |
| 1677 | return chip->setup_read_retry(mtd, retry_mode); |
| 1678 | } |
| 1679 | |
| 1680 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1681 | * nand_do_read_ops - [INTERN] Read data with ECC |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1682 | * @mtd: MTD device structure |
| 1683 | * @from: offset to read from |
| 1684 | * @ops: oob ops structure |
David A. Marlin | 068e3c0 | 2005-01-24 03:07:46 +0000 | [diff] [blame] | 1685 | * |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1686 | * Internal function. Called with chip held. |
David A. Marlin | 068e3c0 | 2005-01-24 03:07:46 +0000 | [diff] [blame] | 1687 | */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1688 | static int nand_do_read_ops(struct mtd_info *mtd, loff_t from, |
| 1689 | struct mtd_oob_ops *ops) |
David A. Marlin | 068e3c0 | 2005-01-24 03:07:46 +0000 | [diff] [blame] | 1690 | { |
Brian Norris | e47f3db | 2012-05-02 10:14:56 -0700 | [diff] [blame] | 1691 | int chipnr, page, realpage, col, bytes, aligned, oob_required; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 1692 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1693 | int ret = 0; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1694 | uint32_t readlen = ops->len; |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 1695 | uint32_t oobreadlen = ops->ooblen; |
Boris BREZILLON | 29f1058 | 2016-03-07 10:46:52 +0100 | [diff] [blame] | 1696 | uint32_t max_oobsize = mtd_oobavail(mtd, ops); |
Maxim Levitsky | 9aca334 | 2010-02-22 20:39:35 +0200 | [diff] [blame] | 1697 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1698 | uint8_t *bufpoi, *oob, *buf; |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 1699 | int use_bufpoi; |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1700 | unsigned int max_bitflips = 0; |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1701 | int retry_mode = 0; |
Brian Norris | b72f3df | 2013-12-03 11:04:14 -0800 | [diff] [blame] | 1702 | bool ecc_fail = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 1704 | chipnr = (int)(from >> chip->chip_shift); |
| 1705 | chip->select_chip(mtd, chipnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1706 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 1707 | realpage = (int)(from >> chip->page_shift); |
| 1708 | page = realpage & chip->pagemask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1710 | col = (int)(from & (mtd->writesize - 1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1712 | buf = ops->datbuf; |
| 1713 | oob = ops->oobbuf; |
Brian Norris | e47f3db | 2012-05-02 10:14:56 -0700 | [diff] [blame] | 1714 | oob_required = oob ? 1 : 0; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1715 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 1716 | while (1) { |
Brian Norris | b72f3df | 2013-12-03 11:04:14 -0800 | [diff] [blame] | 1717 | unsigned int ecc_failures = mtd->ecc_stats.failed; |
| 1718 | |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1719 | bytes = min(mtd->writesize - col, readlen); |
| 1720 | aligned = (bytes == mtd->writesize); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1721 | |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 1722 | if (!aligned) |
| 1723 | use_bufpoi = 1; |
| 1724 | else if (chip->options & NAND_USE_BOUNCE_BUFFER) |
| 1725 | use_bufpoi = !virt_addr_valid(buf); |
| 1726 | else |
| 1727 | use_bufpoi = 0; |
| 1728 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1729 | /* Is the current page in the buffer? */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1730 | if (realpage != chip->pagebuf || oob) { |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 1731 | bufpoi = use_bufpoi ? chip->buffers->databuf : buf; |
| 1732 | |
| 1733 | if (use_bufpoi && aligned) |
| 1734 | pr_debug("%s: using read bounce buffer for buf@%p\n", |
| 1735 | __func__, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1737 | read_retry: |
Brian Norris | c00a099 | 2012-05-01 17:12:54 -0700 | [diff] [blame] | 1738 | chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1740 | /* |
| 1741 | * Now read the page into the buffer. Absent an error, |
| 1742 | * the read methods return max bitflips per ecc step. |
| 1743 | */ |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 1744 | if (unlikely(ops->mode == MTD_OPS_RAW)) |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1745 | ret = chip->ecc.read_page_raw(mtd, chip, bufpoi, |
Brian Norris | e47f3db | 2012-05-02 10:14:56 -0700 | [diff] [blame] | 1746 | oob_required, |
| 1747 | page); |
Jeff Westfahl | a5ff4f1 | 2012-08-13 16:35:30 -0500 | [diff] [blame] | 1748 | else if (!aligned && NAND_HAS_SUBPAGE_READ(chip) && |
| 1749 | !oob) |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 1750 | ret = chip->ecc.read_subpage(mtd, chip, |
Huang Shijie | e004deb | 2014-01-03 11:01:40 +0800 | [diff] [blame] | 1751 | col, bytes, bufpoi, |
| 1752 | page); |
David Woodhouse | 956e944 | 2006-09-25 17:12:39 +0100 | [diff] [blame] | 1753 | else |
Sneha Narnakaje | 46a8cf2 | 2009-09-18 12:51:46 -0700 | [diff] [blame] | 1754 | ret = chip->ecc.read_page(mtd, chip, bufpoi, |
Brian Norris | e47f3db | 2012-05-02 10:14:56 -0700 | [diff] [blame] | 1755 | oob_required, page); |
Brian Norris | 6d77b9d | 2011-09-07 13:13:40 -0700 | [diff] [blame] | 1756 | if (ret < 0) { |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 1757 | if (use_bufpoi) |
Brian Norris | 6d77b9d | 2011-09-07 13:13:40 -0700 | [diff] [blame] | 1758 | /* Invalidate page cache */ |
| 1759 | chip->pagebuf = -1; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 1760 | break; |
Brian Norris | 6d77b9d | 2011-09-07 13:13:40 -0700 | [diff] [blame] | 1761 | } |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1762 | |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1763 | max_bitflips = max_t(unsigned int, max_bitflips, ret); |
| 1764 | |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1765 | /* Transfer not aligned data */ |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 1766 | if (use_bufpoi) { |
Jeff Westfahl | a5ff4f1 | 2012-08-13 16:35:30 -0500 | [diff] [blame] | 1767 | if (!NAND_HAS_SUBPAGE_READ(chip) && !oob && |
Brian Norris | b72f3df | 2013-12-03 11:04:14 -0800 | [diff] [blame] | 1768 | !(mtd->ecc_stats.failed - ecc_failures) && |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1769 | (ops->mode != MTD_OPS_RAW)) { |
Alexey Korolev | 3d45955 | 2008-05-15 17:23:18 +0100 | [diff] [blame] | 1770 | chip->pagebuf = realpage; |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1771 | chip->pagebuf_bitflips = ret; |
| 1772 | } else { |
Brian Norris | 6d77b9d | 2011-09-07 13:13:40 -0700 | [diff] [blame] | 1773 | /* Invalidate page cache */ |
| 1774 | chip->pagebuf = -1; |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1775 | } |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 1776 | memcpy(buf, chip->buffers->databuf + col, bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1778 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1779 | if (unlikely(oob)) { |
Maxim Levitsky | b64d39d | 2010-02-22 20:39:37 +0200 | [diff] [blame] | 1780 | int toread = min(oobreadlen, max_oobsize); |
| 1781 | |
| 1782 | if (toread) { |
| 1783 | oob = nand_transfer_oob(chip, |
| 1784 | oob, ops, toread); |
| 1785 | oobreadlen -= toread; |
| 1786 | } |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1787 | } |
Brian Norris | 5bc7c33 | 2013-03-13 09:51:31 -0700 | [diff] [blame] | 1788 | |
| 1789 | if (chip->options & NAND_NEED_READRDY) { |
| 1790 | /* Apply delay or wait for ready/busy pin */ |
| 1791 | if (!chip->dev_ready) |
| 1792 | udelay(chip->chip_delay); |
| 1793 | else |
| 1794 | nand_wait_ready(mtd); |
| 1795 | } |
Brian Norris | b72f3df | 2013-12-03 11:04:14 -0800 | [diff] [blame] | 1796 | |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1797 | if (mtd->ecc_stats.failed - ecc_failures) { |
Brian Norris | 28fa65e | 2014-02-12 16:08:28 -0800 | [diff] [blame] | 1798 | if (retry_mode + 1 < chip->read_retries) { |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1799 | retry_mode++; |
| 1800 | ret = nand_setup_read_retry(mtd, |
| 1801 | retry_mode); |
| 1802 | if (ret < 0) |
| 1803 | break; |
| 1804 | |
| 1805 | /* Reset failures; retry */ |
| 1806 | mtd->ecc_stats.failed = ecc_failures; |
| 1807 | goto read_retry; |
| 1808 | } else { |
| 1809 | /* No more retry modes; real failure */ |
| 1810 | ecc_fail = true; |
| 1811 | } |
| 1812 | } |
| 1813 | |
| 1814 | buf += bytes; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1815 | } else { |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 1816 | memcpy(buf, chip->buffers->databuf + col, bytes); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1817 | buf += bytes; |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1818 | max_bitflips = max_t(unsigned int, max_bitflips, |
| 1819 | chip->pagebuf_bitflips); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1820 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1822 | readlen -= bytes; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1823 | |
Brian Norris | ba84fb5 | 2014-01-03 15:13:33 -0800 | [diff] [blame] | 1824 | /* Reset to retry mode 0 */ |
| 1825 | if (retry_mode) { |
| 1826 | ret = nand_setup_read_retry(mtd, 0); |
| 1827 | if (ret < 0) |
| 1828 | break; |
| 1829 | retry_mode = 0; |
| 1830 | } |
| 1831 | |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1832 | if (!readlen) |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 1833 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1835 | /* For subsequent reads align to page boundary */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | col = 0; |
| 1837 | /* Increment page address */ |
| 1838 | realpage++; |
| 1839 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 1840 | page = realpage & chip->pagemask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | /* Check, if we cross a chip boundary */ |
| 1842 | if (!page) { |
| 1843 | chipnr++; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 1844 | chip->select_chip(mtd, -1); |
| 1845 | chip->select_chip(mtd, chipnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | } |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 1848 | chip->select_chip(mtd, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 1850 | ops->retlen = ops->len - (size_t) readlen; |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 1851 | if (oob) |
| 1852 | ops->oobretlen = ops->ooblen - oobreadlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 1854 | if (ret < 0) |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1855 | return ret; |
| 1856 | |
Brian Norris | b72f3df | 2013-12-03 11:04:14 -0800 | [diff] [blame] | 1857 | if (ecc_fail) |
Thomas Gleixner | 9a1fcdf | 2006-05-29 14:56:39 +0200 | [diff] [blame] | 1858 | return -EBADMSG; |
| 1859 | |
Mike Dunn | edbc4540 | 2012-04-25 12:06:11 -0700 | [diff] [blame] | 1860 | return max_bitflips; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1861 | } |
| 1862 | |
| 1863 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1864 | * nand_read - [MTD Interface] MTD compatibility function for nand_do_read_ecc |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1865 | * @mtd: MTD device structure |
| 1866 | * @from: offset to read from |
| 1867 | * @len: number of bytes to read |
| 1868 | * @retlen: pointer to variable to store the number of read bytes |
| 1869 | * @buf: the databuffer to put data |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1870 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1871 | * Get hold of the chip and call nand_do_read. |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1872 | */ |
| 1873 | static int nand_read(struct mtd_info *mtd, loff_t from, size_t len, |
| 1874 | size_t *retlen, uint8_t *buf) |
| 1875 | { |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 1876 | struct mtd_oob_ops ops; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1877 | int ret; |
| 1878 | |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 1879 | nand_get_device(mtd, FL_READING); |
Brian Norris | 0ec56dc | 2015-02-28 02:02:30 -0800 | [diff] [blame] | 1880 | memset(&ops, 0, sizeof(ops)); |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 1881 | ops.len = len; |
| 1882 | ops.datbuf = buf; |
Huang Shijie | 11041ae6 | 2012-07-03 16:44:14 +0800 | [diff] [blame] | 1883 | ops.mode = MTD_OPS_PLACE_OOB; |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 1884 | ret = nand_do_read_ops(mtd, from, &ops); |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 1885 | *retlen = ops.retlen; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1886 | nand_release_device(mtd); |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 1887 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | } |
| 1889 | |
| 1890 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1891 | * nand_read_oob_std - [REPLACEABLE] the most common OOB data read function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1892 | * @mtd: mtd info structure |
| 1893 | * @chip: nand chip info structure |
| 1894 | * @page: page number to read |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1895 | */ |
| 1896 | static int nand_read_oob_std(struct mtd_info *mtd, struct nand_chip *chip, |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 1897 | int page) |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1898 | { |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 1899 | chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page); |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1900 | chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 1901 | return 0; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1902 | } |
| 1903 | |
| 1904 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1905 | * nand_read_oob_syndrome - [REPLACEABLE] OOB data read function for HW ECC |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1906 | * with syndromes |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1907 | * @mtd: mtd info structure |
| 1908 | * @chip: nand chip info structure |
| 1909 | * @page: page number to read |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1910 | */ |
| 1911 | static int nand_read_oob_syndrome(struct mtd_info *mtd, struct nand_chip *chip, |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 1912 | int page) |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1913 | { |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1914 | int length = mtd->oobsize; |
| 1915 | int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad; |
| 1916 | int eccsize = chip->ecc.size; |
Baruch Siach | 2ea69d2 | 2015-01-22 15:23:05 +0200 | [diff] [blame] | 1917 | uint8_t *bufpoi = chip->oob_poi; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1918 | int i, toread, sndrnd = 0, pos; |
| 1919 | |
| 1920 | chip->cmdfunc(mtd, NAND_CMD_READ0, chip->ecc.size, page); |
| 1921 | for (i = 0; i < chip->ecc.steps; i++) { |
| 1922 | if (sndrnd) { |
| 1923 | pos = eccsize + i * (eccsize + chunk); |
| 1924 | if (mtd->writesize > 512) |
| 1925 | chip->cmdfunc(mtd, NAND_CMD_RNDOUT, pos, -1); |
| 1926 | else |
| 1927 | chip->cmdfunc(mtd, NAND_CMD_READ0, pos, page); |
| 1928 | } else |
| 1929 | sndrnd = 1; |
| 1930 | toread = min_t(int, length, chunk); |
| 1931 | chip->read_buf(mtd, bufpoi, toread); |
| 1932 | bufpoi += toread; |
| 1933 | length -= toread; |
| 1934 | } |
| 1935 | if (length > 0) |
| 1936 | chip->read_buf(mtd, bufpoi, length); |
| 1937 | |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 1938 | return 0; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1939 | } |
| 1940 | |
| 1941 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1942 | * nand_write_oob_std - [REPLACEABLE] the most common OOB data write function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1943 | * @mtd: mtd info structure |
| 1944 | * @chip: nand chip info structure |
| 1945 | * @page: page number to write |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1946 | */ |
| 1947 | static int nand_write_oob_std(struct mtd_info *mtd, struct nand_chip *chip, |
| 1948 | int page) |
| 1949 | { |
| 1950 | int status = 0; |
| 1951 | const uint8_t *buf = chip->oob_poi; |
| 1952 | int length = mtd->oobsize; |
| 1953 | |
| 1954 | chip->cmdfunc(mtd, NAND_CMD_SEQIN, mtd->writesize, page); |
| 1955 | chip->write_buf(mtd, buf, length); |
| 1956 | /* Send command to program the OOB data */ |
| 1957 | chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1); |
| 1958 | |
| 1959 | status = chip->waitfunc(mtd, chip); |
| 1960 | |
Savin Zlobec | 0d420f9 | 2006-06-21 11:51:20 +0200 | [diff] [blame] | 1961 | return status & NAND_STATUS_FAIL ? -EIO : 0; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1962 | } |
| 1963 | |
| 1964 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 1965 | * nand_write_oob_syndrome - [REPLACEABLE] OOB data write function for HW ECC |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 1966 | * with syndrome - only for large page flash |
| 1967 | * @mtd: mtd info structure |
| 1968 | * @chip: nand chip info structure |
| 1969 | * @page: page number to write |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1970 | */ |
| 1971 | static int nand_write_oob_syndrome(struct mtd_info *mtd, |
| 1972 | struct nand_chip *chip, int page) |
| 1973 | { |
| 1974 | int chunk = chip->ecc.bytes + chip->ecc.prepad + chip->ecc.postpad; |
| 1975 | int eccsize = chip->ecc.size, length = mtd->oobsize; |
| 1976 | int i, len, pos, status = 0, sndcmd = 0, steps = chip->ecc.steps; |
| 1977 | const uint8_t *bufpoi = chip->oob_poi; |
| 1978 | |
| 1979 | /* |
| 1980 | * data-ecc-data-ecc ... ecc-oob |
| 1981 | * or |
| 1982 | * data-pad-ecc-pad-data-pad .... ecc-pad-oob |
| 1983 | */ |
| 1984 | if (!chip->ecc.prepad && !chip->ecc.postpad) { |
| 1985 | pos = steps * (eccsize + chunk); |
| 1986 | steps = 0; |
| 1987 | } else |
Vitaly Wool | 8b0036e | 2006-07-11 09:11:25 +0200 | [diff] [blame] | 1988 | pos = eccsize; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 1989 | |
| 1990 | chip->cmdfunc(mtd, NAND_CMD_SEQIN, pos, page); |
| 1991 | for (i = 0; i < steps; i++) { |
| 1992 | if (sndcmd) { |
| 1993 | if (mtd->writesize <= 512) { |
| 1994 | uint32_t fill = 0xFFFFFFFF; |
| 1995 | |
| 1996 | len = eccsize; |
| 1997 | while (len > 0) { |
| 1998 | int num = min_t(int, len, 4); |
| 1999 | chip->write_buf(mtd, (uint8_t *)&fill, |
| 2000 | num); |
| 2001 | len -= num; |
| 2002 | } |
| 2003 | } else { |
| 2004 | pos = eccsize + i * (eccsize + chunk); |
| 2005 | chip->cmdfunc(mtd, NAND_CMD_RNDIN, pos, -1); |
| 2006 | } |
| 2007 | } else |
| 2008 | sndcmd = 1; |
| 2009 | len = min_t(int, length, chunk); |
| 2010 | chip->write_buf(mtd, bufpoi, len); |
| 2011 | bufpoi += len; |
| 2012 | length -= len; |
| 2013 | } |
| 2014 | if (length > 0) |
| 2015 | chip->write_buf(mtd, bufpoi, length); |
| 2016 | |
| 2017 | chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1); |
| 2018 | status = chip->waitfunc(mtd, chip); |
| 2019 | |
| 2020 | return status & NAND_STATUS_FAIL ? -EIO : 0; |
| 2021 | } |
| 2022 | |
| 2023 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2024 | * nand_do_read_oob - [INTERN] NAND read out-of-band |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2025 | * @mtd: MTD device structure |
| 2026 | * @from: offset to read from |
| 2027 | * @ops: oob operations description structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2029 | * NAND read out-of-band data from the spare area. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2030 | */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2031 | static int nand_do_read_oob(struct mtd_info *mtd, loff_t from, |
| 2032 | struct mtd_oob_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2033 | { |
Brian Norris | c00a099 | 2012-05-01 17:12:54 -0700 | [diff] [blame] | 2034 | int page, realpage, chipnr; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 2035 | struct nand_chip *chip = mtd_to_nand(mtd); |
Brian Norris | 041e457 | 2011-06-23 16:45:24 -0700 | [diff] [blame] | 2036 | struct mtd_ecc_stats stats; |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2037 | int readlen = ops->ooblen; |
| 2038 | int len; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 2039 | uint8_t *buf = ops->oobbuf; |
Shmulik Ladkani | 1951f2f | 2012-05-09 13:13:34 +0300 | [diff] [blame] | 2040 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2041 | |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2042 | pr_debug("%s: from = 0x%08Lx, len = %i\n", |
vimal singh | 20d8e24 | 2009-07-07 15:49:49 +0530 | [diff] [blame] | 2043 | __func__, (unsigned long long)from, readlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | |
Brian Norris | 041e457 | 2011-06-23 16:45:24 -0700 | [diff] [blame] | 2045 | stats = mtd->ecc_stats; |
| 2046 | |
Boris BREZILLON | 29f1058 | 2016-03-07 10:46:52 +0100 | [diff] [blame] | 2047 | len = mtd_oobavail(mtd, ops); |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2048 | |
| 2049 | if (unlikely(ops->ooboffs >= len)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2050 | pr_debug("%s: attempt to start read outside oob\n", |
| 2051 | __func__); |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2052 | return -EINVAL; |
| 2053 | } |
| 2054 | |
| 2055 | /* Do not allow reads past end of device */ |
| 2056 | if (unlikely(from >= mtd->size || |
| 2057 | ops->ooboffs + readlen > ((mtd->size >> chip->page_shift) - |
| 2058 | (from >> chip->page_shift)) * len)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2059 | pr_debug("%s: attempt to read beyond end of device\n", |
| 2060 | __func__); |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2061 | return -EINVAL; |
| 2062 | } |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2063 | |
Thomas Gleixner | 7314e9e | 2006-05-25 09:51:54 +0200 | [diff] [blame] | 2064 | chipnr = (int)(from >> chip->chip_shift); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2065 | chip->select_chip(mtd, chipnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | |
Thomas Gleixner | 7314e9e | 2006-05-25 09:51:54 +0200 | [diff] [blame] | 2067 | /* Shift to get page */ |
| 2068 | realpage = (int)(from >> chip->page_shift); |
| 2069 | page = realpage & chip->pagemask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 2071 | while (1) { |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 2072 | if (ops->mode == MTD_OPS_RAW) |
Shmulik Ladkani | 1951f2f | 2012-05-09 13:13:34 +0300 | [diff] [blame] | 2073 | ret = chip->ecc.read_oob_raw(mtd, chip, page); |
Brian Norris | c46f648 | 2011-08-30 18:45:38 -0700 | [diff] [blame] | 2074 | else |
Shmulik Ladkani | 1951f2f | 2012-05-09 13:13:34 +0300 | [diff] [blame] | 2075 | ret = chip->ecc.read_oob(mtd, chip, page); |
| 2076 | |
| 2077 | if (ret < 0) |
| 2078 | break; |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2079 | |
| 2080 | len = min(len, readlen); |
| 2081 | buf = nand_transfer_oob(chip, buf, ops, len); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2082 | |
Brian Norris | 5bc7c33 | 2013-03-13 09:51:31 -0700 | [diff] [blame] | 2083 | if (chip->options & NAND_NEED_READRDY) { |
| 2084 | /* Apply delay or wait for ready/busy pin */ |
| 2085 | if (!chip->dev_ready) |
| 2086 | udelay(chip->chip_delay); |
| 2087 | else |
| 2088 | nand_wait_ready(mtd); |
| 2089 | } |
| 2090 | |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2091 | readlen -= len; |
Savin Zlobec | 0d420f9 | 2006-06-21 11:51:20 +0200 | [diff] [blame] | 2092 | if (!readlen) |
| 2093 | break; |
| 2094 | |
Thomas Gleixner | 7314e9e | 2006-05-25 09:51:54 +0200 | [diff] [blame] | 2095 | /* Increment page address */ |
| 2096 | realpage++; |
| 2097 | |
| 2098 | page = realpage & chip->pagemask; |
| 2099 | /* Check, if we cross a chip boundary */ |
| 2100 | if (!page) { |
| 2101 | chipnr++; |
| 2102 | chip->select_chip(mtd, -1); |
| 2103 | chip->select_chip(mtd, chipnr); |
| 2104 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2105 | } |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2106 | chip->select_chip(mtd, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2107 | |
Shmulik Ladkani | 1951f2f | 2012-05-09 13:13:34 +0300 | [diff] [blame] | 2108 | ops->oobretlen = ops->ooblen - readlen; |
| 2109 | |
| 2110 | if (ret < 0) |
| 2111 | return ret; |
Brian Norris | 041e457 | 2011-06-23 16:45:24 -0700 | [diff] [blame] | 2112 | |
| 2113 | if (mtd->ecc_stats.failed - stats.failed) |
| 2114 | return -EBADMSG; |
| 2115 | |
| 2116 | return mtd->ecc_stats.corrected - stats.corrected ? -EUCLEAN : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | } |
| 2118 | |
| 2119 | /** |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2120 | * nand_read_oob - [MTD Interface] NAND read data and/or out-of-band |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2121 | * @mtd: MTD device structure |
| 2122 | * @from: offset to read from |
| 2123 | * @ops: oob operation description structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2125 | * NAND read data and/or out-of-band data. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2126 | */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2127 | static int nand_read_oob(struct mtd_info *mtd, loff_t from, |
| 2128 | struct mtd_oob_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | { |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2130 | int ret = -ENOTSUPP; |
| 2131 | |
| 2132 | ops->retlen = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | |
| 2134 | /* Do not allow reads past end of device */ |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2135 | if (ops->datbuf && (from + ops->len) > mtd->size) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2136 | pr_debug("%s: attempt to read beyond end of device\n", |
| 2137 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2138 | return -EINVAL; |
| 2139 | } |
| 2140 | |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 2141 | nand_get_device(mtd, FL_READING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 2143 | switch (ops->mode) { |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 2144 | case MTD_OPS_PLACE_OOB: |
| 2145 | case MTD_OPS_AUTO_OOB: |
| 2146 | case MTD_OPS_RAW: |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2147 | break; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 2148 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2149 | default: |
| 2150 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | } |
| 2152 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2153 | if (!ops->datbuf) |
| 2154 | ret = nand_do_read_oob(mtd, from, ops); |
| 2155 | else |
| 2156 | ret = nand_do_read_ops(mtd, from, ops); |
| 2157 | |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 2158 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | nand_release_device(mtd); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2160 | return ret; |
| 2161 | } |
| 2162 | |
| 2163 | |
| 2164 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2165 | * nand_write_page_raw - [INTERN] raw page write function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2166 | * @mtd: mtd info structure |
| 2167 | * @chip: nand chip info structure |
| 2168 | * @buf: data buffer |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 2169 | * @oob_required: must write chip->oob_poi to OOB |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2170 | * @page: page number to write |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 2171 | * |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2172 | * Not for syndrome calculating ECC controllers, which use a special oob layout. |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2173 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2174 | static int nand_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2175 | const uint8_t *buf, int oob_required, int page) |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2176 | { |
| 2177 | chip->write_buf(mtd, buf, mtd->writesize); |
Brian Norris | 279f08d | 2012-05-02 10:15:03 -0700 | [diff] [blame] | 2178 | if (oob_required) |
| 2179 | chip->write_buf(mtd, chip->oob_poi, mtd->oobsize); |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2180 | |
| 2181 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | } |
| 2183 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 2184 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2185 | * nand_write_page_raw_syndrome - [INTERN] raw page write function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2186 | * @mtd: mtd info structure |
| 2187 | * @chip: nand chip info structure |
| 2188 | * @buf: data buffer |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 2189 | * @oob_required: must write chip->oob_poi to OOB |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2190 | * @page: page number to write |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 2191 | * |
| 2192 | * We need a special oob layout and handling even when ECC isn't checked. |
| 2193 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2194 | static int nand_write_page_raw_syndrome(struct mtd_info *mtd, |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 2195 | struct nand_chip *chip, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2196 | const uint8_t *buf, int oob_required, |
| 2197 | int page) |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 2198 | { |
| 2199 | int eccsize = chip->ecc.size; |
| 2200 | int eccbytes = chip->ecc.bytes; |
| 2201 | uint8_t *oob = chip->oob_poi; |
| 2202 | int steps, size; |
| 2203 | |
| 2204 | for (steps = chip->ecc.steps; steps > 0; steps--) { |
| 2205 | chip->write_buf(mtd, buf, eccsize); |
| 2206 | buf += eccsize; |
| 2207 | |
| 2208 | if (chip->ecc.prepad) { |
| 2209 | chip->write_buf(mtd, oob, chip->ecc.prepad); |
| 2210 | oob += chip->ecc.prepad; |
| 2211 | } |
| 2212 | |
Boris BREZILLON | 60c3bc1 | 2014-02-01 19:10:28 +0100 | [diff] [blame] | 2213 | chip->write_buf(mtd, oob, eccbytes); |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 2214 | oob += eccbytes; |
| 2215 | |
| 2216 | if (chip->ecc.postpad) { |
| 2217 | chip->write_buf(mtd, oob, chip->ecc.postpad); |
| 2218 | oob += chip->ecc.postpad; |
| 2219 | } |
| 2220 | } |
| 2221 | |
| 2222 | size = mtd->oobsize - (oob - chip->oob_poi); |
| 2223 | if (size) |
| 2224 | chip->write_buf(mtd, oob, size); |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2225 | |
| 2226 | return 0; |
David Brownell | 52ff49d | 2009-03-04 12:01:36 -0800 | [diff] [blame] | 2227 | } |
| 2228 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2229 | * nand_write_page_swecc - [REPLACEABLE] software ECC based page write function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2230 | * @mtd: mtd info structure |
| 2231 | * @chip: nand chip info structure |
| 2232 | * @buf: data buffer |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 2233 | * @oob_required: must write chip->oob_poi to OOB |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2234 | * @page: page number to write |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2235 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2236 | static int nand_write_page_swecc(struct mtd_info *mtd, struct nand_chip *chip, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2237 | const uint8_t *buf, int oob_required, |
| 2238 | int page) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2239 | { |
| 2240 | int i, eccsize = chip->ecc.size; |
| 2241 | int eccbytes = chip->ecc.bytes; |
| 2242 | int eccsteps = chip->ecc.steps; |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 2243 | uint8_t *ecc_calc = chip->buffers->ecccalc; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2244 | const uint8_t *p = buf; |
Ben Dooks | 8b099a3 | 2007-05-28 19:17:54 +0100 | [diff] [blame] | 2245 | uint32_t *eccpos = chip->ecc.layout->eccpos; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2246 | |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2247 | /* Software ECC calculation */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2248 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) |
| 2249 | chip->ecc.calculate(mtd, p, &ecc_calc[i]); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2250 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2251 | for (i = 0; i < chip->ecc.total; i++) |
| 2252 | chip->oob_poi[eccpos[i]] = ecc_calc[i]; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2253 | |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2254 | return chip->ecc.write_page_raw(mtd, chip, buf, 1, page); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2255 | } |
| 2256 | |
| 2257 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2258 | * nand_write_page_hwecc - [REPLACEABLE] hardware ECC based page write function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2259 | * @mtd: mtd info structure |
| 2260 | * @chip: nand chip info structure |
| 2261 | * @buf: data buffer |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 2262 | * @oob_required: must write chip->oob_poi to OOB |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2263 | * @page: page number to write |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2264 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2265 | static int nand_write_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2266 | const uint8_t *buf, int oob_required, |
| 2267 | int page) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2268 | { |
| 2269 | int i, eccsize = chip->ecc.size; |
| 2270 | int eccbytes = chip->ecc.bytes; |
| 2271 | int eccsteps = chip->ecc.steps; |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 2272 | uint8_t *ecc_calc = chip->buffers->ecccalc; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2273 | const uint8_t *p = buf; |
Ben Dooks | 8b099a3 | 2007-05-28 19:17:54 +0100 | [diff] [blame] | 2274 | uint32_t *eccpos = chip->ecc.layout->eccpos; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2275 | |
| 2276 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 2277 | chip->ecc.hwctl(mtd, NAND_ECC_WRITE); |
David Woodhouse | 29da9ce | 2006-05-26 23:05:44 +0100 | [diff] [blame] | 2278 | chip->write_buf(mtd, p, eccsize); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2279 | chip->ecc.calculate(mtd, p, &ecc_calc[i]); |
| 2280 | } |
| 2281 | |
| 2282 | for (i = 0; i < chip->ecc.total; i++) |
| 2283 | chip->oob_poi[eccpos[i]] = ecc_calc[i]; |
| 2284 | |
| 2285 | chip->write_buf(mtd, chip->oob_poi, mtd->oobsize); |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2286 | |
| 2287 | return 0; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2288 | } |
| 2289 | |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2290 | |
| 2291 | /** |
Brian Norris | 73c8aaf | 2015-02-28 02:04:18 -0800 | [diff] [blame] | 2292 | * nand_write_subpage_hwecc - [REPLACEABLE] hardware ECC based subpage write |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2293 | * @mtd: mtd info structure |
| 2294 | * @chip: nand chip info structure |
Brian Norris | d6a95080 | 2013-08-08 17:16:36 -0700 | [diff] [blame] | 2295 | * @offset: column address of subpage within the page |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2296 | * @data_len: data length |
Brian Norris | d6a95080 | 2013-08-08 17:16:36 -0700 | [diff] [blame] | 2297 | * @buf: data buffer |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2298 | * @oob_required: must write chip->oob_poi to OOB |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2299 | * @page: page number to write |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2300 | */ |
| 2301 | static int nand_write_subpage_hwecc(struct mtd_info *mtd, |
| 2302 | struct nand_chip *chip, uint32_t offset, |
Brian Norris | d6a95080 | 2013-08-08 17:16:36 -0700 | [diff] [blame] | 2303 | uint32_t data_len, const uint8_t *buf, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2304 | int oob_required, int page) |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2305 | { |
| 2306 | uint8_t *oob_buf = chip->oob_poi; |
| 2307 | uint8_t *ecc_calc = chip->buffers->ecccalc; |
| 2308 | int ecc_size = chip->ecc.size; |
| 2309 | int ecc_bytes = chip->ecc.bytes; |
| 2310 | int ecc_steps = chip->ecc.steps; |
| 2311 | uint32_t *eccpos = chip->ecc.layout->eccpos; |
| 2312 | uint32_t start_step = offset / ecc_size; |
| 2313 | uint32_t end_step = (offset + data_len - 1) / ecc_size; |
| 2314 | int oob_bytes = mtd->oobsize / ecc_steps; |
| 2315 | int step, i; |
| 2316 | |
| 2317 | for (step = 0; step < ecc_steps; step++) { |
| 2318 | /* configure controller for WRITE access */ |
| 2319 | chip->ecc.hwctl(mtd, NAND_ECC_WRITE); |
| 2320 | |
| 2321 | /* write data (untouched subpages already masked by 0xFF) */ |
Brian Norris | d6a95080 | 2013-08-08 17:16:36 -0700 | [diff] [blame] | 2322 | chip->write_buf(mtd, buf, ecc_size); |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2323 | |
| 2324 | /* mask ECC of un-touched subpages by padding 0xFF */ |
| 2325 | if ((step < start_step) || (step > end_step)) |
| 2326 | memset(ecc_calc, 0xff, ecc_bytes); |
| 2327 | else |
Brian Norris | d6a95080 | 2013-08-08 17:16:36 -0700 | [diff] [blame] | 2328 | chip->ecc.calculate(mtd, buf, ecc_calc); |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2329 | |
| 2330 | /* mask OOB of un-touched subpages by padding 0xFF */ |
| 2331 | /* if oob_required, preserve OOB metadata of written subpage */ |
| 2332 | if (!oob_required || (step < start_step) || (step > end_step)) |
| 2333 | memset(oob_buf, 0xff, oob_bytes); |
| 2334 | |
Brian Norris | d6a95080 | 2013-08-08 17:16:36 -0700 | [diff] [blame] | 2335 | buf += ecc_size; |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2336 | ecc_calc += ecc_bytes; |
| 2337 | oob_buf += oob_bytes; |
| 2338 | } |
| 2339 | |
| 2340 | /* copy calculated ECC for whole page to chip->buffer->oob */ |
| 2341 | /* this include masked-value(0xFF) for unwritten subpages */ |
| 2342 | ecc_calc = chip->buffers->ecccalc; |
| 2343 | for (i = 0; i < chip->ecc.total; i++) |
| 2344 | chip->oob_poi[eccpos[i]] = ecc_calc[i]; |
| 2345 | |
| 2346 | /* write OOB buffer to NAND device */ |
| 2347 | chip->write_buf(mtd, chip->oob_poi, mtd->oobsize); |
| 2348 | |
| 2349 | return 0; |
| 2350 | } |
| 2351 | |
| 2352 | |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2353 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2354 | * nand_write_page_syndrome - [REPLACEABLE] hardware ECC syndrome based page write |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2355 | * @mtd: mtd info structure |
| 2356 | * @chip: nand chip info structure |
| 2357 | * @buf: data buffer |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 2358 | * @oob_required: must write chip->oob_poi to OOB |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2359 | * @page: page number to write |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2360 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2361 | * The hw generator calculates the error syndrome automatically. Therefore we |
| 2362 | * need a special oob layout and handling. |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2363 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2364 | static int nand_write_page_syndrome(struct mtd_info *mtd, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 2365 | struct nand_chip *chip, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2366 | const uint8_t *buf, int oob_required, |
| 2367 | int page) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2368 | { |
| 2369 | int i, eccsize = chip->ecc.size; |
| 2370 | int eccbytes = chip->ecc.bytes; |
| 2371 | int eccsteps = chip->ecc.steps; |
| 2372 | const uint8_t *p = buf; |
| 2373 | uint8_t *oob = chip->oob_poi; |
| 2374 | |
| 2375 | for (i = 0; eccsteps; eccsteps--, i += eccbytes, p += eccsize) { |
| 2376 | |
| 2377 | chip->ecc.hwctl(mtd, NAND_ECC_WRITE); |
| 2378 | chip->write_buf(mtd, p, eccsize); |
| 2379 | |
| 2380 | if (chip->ecc.prepad) { |
| 2381 | chip->write_buf(mtd, oob, chip->ecc.prepad); |
| 2382 | oob += chip->ecc.prepad; |
| 2383 | } |
| 2384 | |
| 2385 | chip->ecc.calculate(mtd, p, oob); |
| 2386 | chip->write_buf(mtd, oob, eccbytes); |
| 2387 | oob += eccbytes; |
| 2388 | |
| 2389 | if (chip->ecc.postpad) { |
| 2390 | chip->write_buf(mtd, oob, chip->ecc.postpad); |
| 2391 | oob += chip->ecc.postpad; |
| 2392 | } |
| 2393 | } |
| 2394 | |
| 2395 | /* Calculate remaining oob bytes */ |
Vitaly Wool | 7e4178f | 2006-06-07 09:34:37 +0400 | [diff] [blame] | 2396 | i = mtd->oobsize - (oob - chip->oob_poi); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2397 | if (i) |
| 2398 | chip->write_buf(mtd, oob, i); |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2399 | |
| 2400 | return 0; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2401 | } |
| 2402 | |
| 2403 | /** |
David Woodhouse | 956e944 | 2006-09-25 17:12:39 +0100 | [diff] [blame] | 2404 | * nand_write_page - [REPLACEABLE] write one page |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2405 | * @mtd: MTD device structure |
| 2406 | * @chip: NAND chip descriptor |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2407 | * @offset: address offset within the page |
| 2408 | * @data_len: length of actual data to be written |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2409 | * @buf: the data to write |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 2410 | * @oob_required: must write chip->oob_poi to OOB |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2411 | * @page: page number to write |
| 2412 | * @cached: cached programming |
| 2413 | * @raw: use _raw version of write_page |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2414 | */ |
| 2415 | static int nand_write_page(struct mtd_info *mtd, struct nand_chip *chip, |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2416 | uint32_t offset, int data_len, const uint8_t *buf, |
| 2417 | int oob_required, int page, int cached, int raw) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2418 | { |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2419 | int status, subpage; |
| 2420 | |
| 2421 | if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && |
| 2422 | chip->ecc.write_subpage) |
| 2423 | subpage = offset || (data_len < mtd->writesize); |
| 2424 | else |
| 2425 | subpage = 0; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2426 | |
| 2427 | chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page); |
| 2428 | |
David Woodhouse | 956e944 | 2006-09-25 17:12:39 +0100 | [diff] [blame] | 2429 | if (unlikely(raw)) |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2430 | status = chip->ecc.write_page_raw(mtd, chip, buf, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2431 | oob_required, page); |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2432 | else if (subpage) |
| 2433 | status = chip->ecc.write_subpage(mtd, chip, offset, data_len, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2434 | buf, oob_required, page); |
David Woodhouse | 956e944 | 2006-09-25 17:12:39 +0100 | [diff] [blame] | 2435 | else |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 2436 | status = chip->ecc.write_page(mtd, chip, buf, oob_required, |
| 2437 | page); |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 2438 | |
| 2439 | if (status < 0) |
| 2440 | return status; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2441 | |
| 2442 | /* |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2443 | * Cached progamming disabled for now. Not sure if it's worth the |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2444 | * trouble. The speed gain is not very impressive. (2.3->2.6Mib/s). |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2445 | */ |
| 2446 | cached = 0; |
| 2447 | |
Artem Bityutskiy | 3239a6c | 2013-03-04 14:56:18 +0200 | [diff] [blame] | 2448 | if (!cached || !NAND_HAS_CACHEPROG(chip)) { |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2449 | |
| 2450 | chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1); |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 2451 | status = chip->waitfunc(mtd, chip); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2452 | /* |
| 2453 | * See if operation failed and additional status checks are |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2454 | * available. |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2455 | */ |
| 2456 | if ((status & NAND_STATUS_FAIL) && (chip->errstat)) |
| 2457 | status = chip->errstat(mtd, chip, FL_WRITING, status, |
| 2458 | page); |
| 2459 | |
| 2460 | if (status & NAND_STATUS_FAIL) |
| 2461 | return -EIO; |
| 2462 | } else { |
| 2463 | chip->cmdfunc(mtd, NAND_CMD_CACHEDPROG, -1, -1); |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 2464 | status = chip->waitfunc(mtd, chip); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2465 | } |
| 2466 | |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2467 | return 0; |
| 2468 | } |
| 2469 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2470 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2471 | * nand_fill_oob - [INTERN] Transfer client buffer to oob |
THOMSON, Adam (Adam) | f722013e | 2011-06-14 16:52:38 +0200 | [diff] [blame] | 2472 | * @mtd: MTD device structure |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2473 | * @oob: oob data buffer |
| 2474 | * @len: oob data write length |
| 2475 | * @ops: oob ops structure |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2476 | */ |
THOMSON, Adam (Adam) | f722013e | 2011-06-14 16:52:38 +0200 | [diff] [blame] | 2477 | static uint8_t *nand_fill_oob(struct mtd_info *mtd, uint8_t *oob, size_t len, |
| 2478 | struct mtd_oob_ops *ops) |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2479 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 2480 | struct nand_chip *chip = mtd_to_nand(mtd); |
THOMSON, Adam (Adam) | f722013e | 2011-06-14 16:52:38 +0200 | [diff] [blame] | 2481 | |
| 2482 | /* |
| 2483 | * Initialise to all 0xFF, to avoid the possibility of left over OOB |
| 2484 | * data from a previous OOB read. |
| 2485 | */ |
| 2486 | memset(chip->oob_poi, 0xff, mtd->oobsize); |
| 2487 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 2488 | switch (ops->mode) { |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2489 | |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 2490 | case MTD_OPS_PLACE_OOB: |
| 2491 | case MTD_OPS_RAW: |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2492 | memcpy(chip->oob_poi + ops->ooboffs, oob, len); |
| 2493 | return oob + len; |
| 2494 | |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 2495 | case MTD_OPS_AUTO_OOB: { |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2496 | struct nand_oobfree *free = chip->ecc.layout->oobfree; |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 2497 | uint32_t boffs = 0, woffs = ops->ooboffs; |
| 2498 | size_t bytes = 0; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2499 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 2500 | for (; free->length && len; free++, len -= bytes) { |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2501 | /* Write request not from offset 0? */ |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 2502 | if (unlikely(woffs)) { |
| 2503 | if (woffs >= free->length) { |
| 2504 | woffs -= free->length; |
| 2505 | continue; |
| 2506 | } |
| 2507 | boffs = free->offset + woffs; |
| 2508 | bytes = min_t(size_t, len, |
| 2509 | (free->length - woffs)); |
| 2510 | woffs = 0; |
| 2511 | } else { |
| 2512 | bytes = min_t(size_t, len, free->length); |
| 2513 | boffs = free->offset; |
| 2514 | } |
Vitaly Wool | 8b0036e | 2006-07-11 09:11:25 +0200 | [diff] [blame] | 2515 | memcpy(chip->oob_poi + boffs, oob, bytes); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2516 | oob += bytes; |
| 2517 | } |
| 2518 | return oob; |
| 2519 | } |
| 2520 | default: |
| 2521 | BUG(); |
| 2522 | } |
| 2523 | return NULL; |
| 2524 | } |
| 2525 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 2526 | #define NOTALIGNED(x) ((x & (chip->subpagesize - 1)) != 0) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2527 | |
| 2528 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2529 | * nand_do_write_ops - [INTERN] NAND write with ECC |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2530 | * @mtd: MTD device structure |
| 2531 | * @to: offset to write to |
| 2532 | * @ops: oob operations description structure |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2533 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2534 | * NAND write with ECC. |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2535 | */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2536 | static int nand_do_write_ops(struct mtd_info *mtd, loff_t to, |
| 2537 | struct mtd_oob_ops *ops) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2538 | { |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2539 | int chipnr, realpage, page, blockmask, column; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 2540 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2541 | uint32_t writelen = ops->len; |
Maxim Levitsky | 782ce79 | 2010-02-22 20:39:36 +0200 | [diff] [blame] | 2542 | |
| 2543 | uint32_t oobwritelen = ops->ooblen; |
Boris BREZILLON | 29f1058 | 2016-03-07 10:46:52 +0100 | [diff] [blame] | 2544 | uint32_t oobmaxlen = mtd_oobavail(mtd, ops); |
Maxim Levitsky | 782ce79 | 2010-02-22 20:39:36 +0200 | [diff] [blame] | 2545 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2546 | uint8_t *oob = ops->oobbuf; |
| 2547 | uint8_t *buf = ops->datbuf; |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2548 | int ret; |
Brian Norris | e47f3db | 2012-05-02 10:14:56 -0700 | [diff] [blame] | 2549 | int oob_required = oob ? 1 : 0; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2550 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2551 | ops->retlen = 0; |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2552 | if (!writelen) |
| 2553 | return 0; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2554 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2555 | /* Reject writes, which are not page aligned */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2556 | if (NOTALIGNED(to) || NOTALIGNED(ops->len)) { |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 2557 | pr_notice("%s: attempt to write non page aligned data\n", |
| 2558 | __func__); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2559 | return -EINVAL; |
| 2560 | } |
| 2561 | |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2562 | column = to & (mtd->writesize - 1); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2563 | |
Thomas Gleixner | 6a93096 | 2006-06-28 00:11:45 +0200 | [diff] [blame] | 2564 | chipnr = (int)(to >> chip->chip_shift); |
| 2565 | chip->select_chip(mtd, chipnr); |
| 2566 | |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2567 | /* Check, if it is write protected */ |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2568 | if (nand_check_wp(mtd)) { |
| 2569 | ret = -EIO; |
| 2570 | goto err_out; |
| 2571 | } |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2572 | |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2573 | realpage = (int)(to >> chip->page_shift); |
| 2574 | page = realpage & chip->pagemask; |
| 2575 | blockmask = (1 << (chip->phys_erase_shift - chip->page_shift)) - 1; |
| 2576 | |
| 2577 | /* Invalidate the page cache, when we write to the cached page */ |
Brian Norris | 537ab1b | 2014-07-21 19:08:03 -0700 | [diff] [blame] | 2578 | if (to <= ((loff_t)chip->pagebuf << chip->page_shift) && |
| 2579 | ((loff_t)chip->pagebuf << chip->page_shift) < (to + ops->len)) |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2580 | chip->pagebuf = -1; |
| 2581 | |
Maxim Levitsky | 782ce79 | 2010-02-22 20:39:36 +0200 | [diff] [blame] | 2582 | /* Don't allow multipage oob writes with offset */ |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2583 | if (oob && ops->ooboffs && (ops->ooboffs + ops->ooblen > oobmaxlen)) { |
| 2584 | ret = -EINVAL; |
| 2585 | goto err_out; |
| 2586 | } |
Maxim Levitsky | 782ce79 | 2010-02-22 20:39:36 +0200 | [diff] [blame] | 2587 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 2588 | while (1) { |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2589 | int bytes = mtd->writesize; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2590 | int cached = writelen > bytes && page != blockmask; |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2591 | uint8_t *wbuf = buf; |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 2592 | int use_bufpoi; |
| 2593 | int part_pagewr = (column || writelen < (mtd->writesize - 1)); |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2594 | |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 2595 | if (part_pagewr) |
| 2596 | use_bufpoi = 1; |
| 2597 | else if (chip->options & NAND_USE_BOUNCE_BUFFER) |
| 2598 | use_bufpoi = !virt_addr_valid(buf); |
| 2599 | else |
| 2600 | use_bufpoi = 0; |
| 2601 | |
| 2602 | /* Partial page write?, or need to use bounce buffer */ |
| 2603 | if (use_bufpoi) { |
| 2604 | pr_debug("%s: using write bounce buffer for buf@%p\n", |
| 2605 | __func__, buf); |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2606 | cached = 0; |
Kamal Dasu | 66507c7 | 2014-05-01 20:51:19 -0400 | [diff] [blame] | 2607 | if (part_pagewr) |
| 2608 | bytes = min_t(int, bytes - column, writelen); |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2609 | chip->pagebuf = -1; |
| 2610 | memset(chip->buffers->databuf, 0xff, mtd->writesize); |
| 2611 | memcpy(&chip->buffers->databuf[column], buf, bytes); |
| 2612 | wbuf = chip->buffers->databuf; |
| 2613 | } |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2614 | |
Maxim Levitsky | 782ce79 | 2010-02-22 20:39:36 +0200 | [diff] [blame] | 2615 | if (unlikely(oob)) { |
| 2616 | size_t len = min(oobwritelen, oobmaxlen); |
THOMSON, Adam (Adam) | f722013e | 2011-06-14 16:52:38 +0200 | [diff] [blame] | 2617 | oob = nand_fill_oob(mtd, oob, len, ops); |
Maxim Levitsky | 782ce79 | 2010-02-22 20:39:36 +0200 | [diff] [blame] | 2618 | oobwritelen -= len; |
THOMSON, Adam (Adam) | f722013e | 2011-06-14 16:52:38 +0200 | [diff] [blame] | 2619 | } else { |
| 2620 | /* We still need to erase leftover OOB data */ |
| 2621 | memset(chip->oob_poi, 0xff, mtd->oobsize); |
Maxim Levitsky | 782ce79 | 2010-02-22 20:39:36 +0200 | [diff] [blame] | 2622 | } |
Gupta, Pekon | 837a6ba | 2013-03-15 17:55:53 +0530 | [diff] [blame] | 2623 | ret = chip->write_page(mtd, chip, column, bytes, wbuf, |
| 2624 | oob_required, page, cached, |
| 2625 | (ops->mode == MTD_OPS_RAW)); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2626 | if (ret) |
| 2627 | break; |
| 2628 | |
| 2629 | writelen -= bytes; |
| 2630 | if (!writelen) |
| 2631 | break; |
| 2632 | |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 2633 | column = 0; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2634 | buf += bytes; |
| 2635 | realpage++; |
| 2636 | |
| 2637 | page = realpage & chip->pagemask; |
| 2638 | /* Check, if we cross a chip boundary */ |
| 2639 | if (!page) { |
| 2640 | chipnr++; |
| 2641 | chip->select_chip(mtd, -1); |
| 2642 | chip->select_chip(mtd, chipnr); |
| 2643 | } |
| 2644 | } |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2645 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2646 | ops->retlen = ops->len - writelen; |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2647 | if (unlikely(oob)) |
| 2648 | ops->oobretlen = ops->ooblen; |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2649 | |
| 2650 | err_out: |
| 2651 | chip->select_chip(mtd, -1); |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 2652 | return ret; |
| 2653 | } |
| 2654 | |
| 2655 | /** |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2656 | * panic_nand_write - [MTD Interface] NAND write with ECC |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2657 | * @mtd: MTD device structure |
| 2658 | * @to: offset to write to |
| 2659 | * @len: number of bytes to write |
| 2660 | * @retlen: pointer to variable to store the number of written bytes |
| 2661 | * @buf: the data to write |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2662 | * |
| 2663 | * NAND write with ECC. Used when performing writes in interrupt context, this |
| 2664 | * may for example be called by mtdoops when writing an oops while in panic. |
| 2665 | */ |
| 2666 | static int panic_nand_write(struct mtd_info *mtd, loff_t to, size_t len, |
| 2667 | size_t *retlen, const uint8_t *buf) |
| 2668 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 2669 | struct nand_chip *chip = mtd_to_nand(mtd); |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2670 | struct mtd_oob_ops ops; |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2671 | int ret; |
| 2672 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2673 | /* Wait for the device to get ready */ |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2674 | panic_nand_wait(mtd, chip, 400); |
| 2675 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2676 | /* Grab the device */ |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2677 | panic_nand_get_device(chip, mtd, FL_WRITING); |
| 2678 | |
Brian Norris | 0ec56dc | 2015-02-28 02:02:30 -0800 | [diff] [blame] | 2679 | memset(&ops, 0, sizeof(ops)); |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2680 | ops.len = len; |
| 2681 | ops.datbuf = (uint8_t *)buf; |
Huang Shijie | 11041ae6 | 2012-07-03 16:44:14 +0800 | [diff] [blame] | 2682 | ops.mode = MTD_OPS_PLACE_OOB; |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2683 | |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2684 | ret = nand_do_write_ops(mtd, to, &ops); |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2685 | |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2686 | *retlen = ops.retlen; |
Simon Kagstrom | 2af7c65 | 2009-10-05 15:55:52 +0200 | [diff] [blame] | 2687 | return ret; |
| 2688 | } |
| 2689 | |
| 2690 | /** |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2691 | * nand_write - [MTD Interface] NAND write with ECC |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2692 | * @mtd: MTD device structure |
| 2693 | * @to: offset to write to |
| 2694 | * @len: number of bytes to write |
| 2695 | * @retlen: pointer to variable to store the number of written bytes |
| 2696 | * @buf: the data to write |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2698 | * NAND write with ECC. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2699 | */ |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2700 | static int nand_write(struct mtd_info *mtd, loff_t to, size_t len, |
Thomas Gleixner | 7314e9e | 2006-05-25 09:51:54 +0200 | [diff] [blame] | 2701 | size_t *retlen, const uint8_t *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | { |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2703 | struct mtd_oob_ops ops; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2704 | int ret; |
| 2705 | |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 2706 | nand_get_device(mtd, FL_WRITING); |
Brian Norris | 0ec56dc | 2015-02-28 02:02:30 -0800 | [diff] [blame] | 2707 | memset(&ops, 0, sizeof(ops)); |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2708 | ops.len = len; |
| 2709 | ops.datbuf = (uint8_t *)buf; |
Huang Shijie | 11041ae6 | 2012-07-03 16:44:14 +0800 | [diff] [blame] | 2710 | ops.mode = MTD_OPS_PLACE_OOB; |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2711 | ret = nand_do_write_ops(mtd, to, &ops); |
Brian Norris | 4a89ff8 | 2011-08-30 18:45:45 -0700 | [diff] [blame] | 2712 | *retlen = ops.retlen; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2713 | nand_release_device(mtd); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2714 | return ret; |
| 2715 | } |
| 2716 | |
| 2717 | /** |
| 2718 | * nand_do_write_oob - [MTD Interface] NAND write out-of-band |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2719 | * @mtd: MTD device structure |
| 2720 | * @to: offset to write to |
| 2721 | * @ops: oob operation description structure |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2722 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2723 | * NAND write out-of-band. |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2724 | */ |
| 2725 | static int nand_do_write_oob(struct mtd_info *mtd, loff_t to, |
| 2726 | struct mtd_oob_ops *ops) |
| 2727 | { |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2728 | int chipnr, page, status, len; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 2729 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2730 | |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2731 | pr_debug("%s: to = 0x%08x, len = %i\n", |
vimal singh | 20d8e24 | 2009-07-07 15:49:49 +0530 | [diff] [blame] | 2732 | __func__, (unsigned int)to, (int)ops->ooblen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2733 | |
Boris BREZILLON | 29f1058 | 2016-03-07 10:46:52 +0100 | [diff] [blame] | 2734 | len = mtd_oobavail(mtd, ops); |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | /* Do not allow write past end of page */ |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2737 | if ((ops->ooboffs + ops->ooblen) > len) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2738 | pr_debug("%s: attempt to write past end of page\n", |
| 2739 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2740 | return -EINVAL; |
| 2741 | } |
| 2742 | |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2743 | if (unlikely(ops->ooboffs >= len)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2744 | pr_debug("%s: attempt to start write outside oob\n", |
| 2745 | __func__); |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2746 | return -EINVAL; |
| 2747 | } |
| 2748 | |
Jason Liu | 775adc3d4 | 2011-02-25 13:06:18 +0800 | [diff] [blame] | 2749 | /* Do not allow write past end of device */ |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2750 | if (unlikely(to >= mtd->size || |
| 2751 | ops->ooboffs + ops->ooblen > |
| 2752 | ((mtd->size >> chip->page_shift) - |
| 2753 | (to >> chip->page_shift)) * len)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2754 | pr_debug("%s: attempt to write beyond end of device\n", |
| 2755 | __func__); |
Adrian Hunter | 0373615 | 2007-01-31 17:58:29 +0200 | [diff] [blame] | 2756 | return -EINVAL; |
| 2757 | } |
| 2758 | |
Thomas Gleixner | 7314e9e | 2006-05-25 09:51:54 +0200 | [diff] [blame] | 2759 | chipnr = (int)(to >> chip->chip_shift); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2760 | chip->select_chip(mtd, chipnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2761 | |
Thomas Gleixner | 7314e9e | 2006-05-25 09:51:54 +0200 | [diff] [blame] | 2762 | /* Shift to get page */ |
| 2763 | page = (int)(to >> chip->page_shift); |
| 2764 | |
| 2765 | /* |
| 2766 | * Reset the chip. Some chips (like the Toshiba TC5832DC found in one |
| 2767 | * of my DiskOnChip 2000 test units) will clear the whole data page too |
| 2768 | * if we don't do this. I have no clue why, but I seem to have 'fixed' |
| 2769 | * it in the doc2000 driver in August 1999. dwmw2. |
| 2770 | */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2771 | chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2772 | |
| 2773 | /* Check, if it is write protected */ |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2774 | if (nand_check_wp(mtd)) { |
| 2775 | chip->select_chip(mtd, -1); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2776 | return -EROFS; |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2777 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 2778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2779 | /* Invalidate the page cache, if we write to the cached page */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2780 | if (page == chip->pagebuf) |
| 2781 | chip->pagebuf = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | |
THOMSON, Adam (Adam) | f722013e | 2011-06-14 16:52:38 +0200 | [diff] [blame] | 2783 | nand_fill_oob(mtd, ops->oobbuf, ops->ooblen, ops); |
Brian Norris | 9ce244b | 2011-08-30 18:45:37 -0700 | [diff] [blame] | 2784 | |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 2785 | if (ops->mode == MTD_OPS_RAW) |
Brian Norris | 9ce244b | 2011-08-30 18:45:37 -0700 | [diff] [blame] | 2786 | status = chip->ecc.write_oob_raw(mtd, chip, page & chip->pagemask); |
| 2787 | else |
| 2788 | status = chip->ecc.write_oob(mtd, chip, page & chip->pagemask); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2789 | |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2790 | chip->select_chip(mtd, -1); |
| 2791 | |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 2792 | if (status) |
| 2793 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 | |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2795 | ops->oobretlen = ops->ooblen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2796 | |
Thomas Gleixner | 7bc3312 | 2006-06-20 20:05:05 +0200 | [diff] [blame] | 2797 | return 0; |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2798 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2799 | |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2800 | /** |
| 2801 | * nand_write_oob - [MTD Interface] NAND write data and/or out-of-band |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2802 | * @mtd: MTD device structure |
| 2803 | * @to: offset to write to |
| 2804 | * @ops: oob operation description structure |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2805 | */ |
| 2806 | static int nand_write_oob(struct mtd_info *mtd, loff_t to, |
| 2807 | struct mtd_oob_ops *ops) |
| 2808 | { |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2809 | int ret = -ENOTSUPP; |
| 2810 | |
| 2811 | ops->retlen = 0; |
| 2812 | |
| 2813 | /* Do not allow writes past end of device */ |
Vitaly Wool | 7014568 | 2006-11-03 18:20:38 +0300 | [diff] [blame] | 2814 | if (ops->datbuf && (to + ops->len) > mtd->size) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2815 | pr_debug("%s: attempt to write beyond end of device\n", |
| 2816 | __func__); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2817 | return -EINVAL; |
| 2818 | } |
| 2819 | |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 2820 | nand_get_device(mtd, FL_WRITING); |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2821 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 2822 | switch (ops->mode) { |
Brian Norris | 0612b9d | 2011-08-30 18:45:40 -0700 | [diff] [blame] | 2823 | case MTD_OPS_PLACE_OOB: |
| 2824 | case MTD_OPS_AUTO_OOB: |
| 2825 | case MTD_OPS_RAW: |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2826 | break; |
| 2827 | |
| 2828 | default: |
| 2829 | goto out; |
| 2830 | } |
| 2831 | |
| 2832 | if (!ops->datbuf) |
| 2833 | ret = nand_do_write_oob(mtd, to, ops); |
| 2834 | else |
| 2835 | ret = nand_do_write_ops(mtd, to, ops); |
| 2836 | |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 2837 | out: |
Thomas Gleixner | 8593fbc | 2006-05-29 03:26:58 +0200 | [diff] [blame] | 2838 | nand_release_device(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | return ret; |
| 2840 | } |
| 2841 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | /** |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 2843 | * single_erase - [GENERIC] NAND standard block erase command function |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2844 | * @mtd: MTD device structure |
| 2845 | * @page: the page address of the block which will be erased |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | * |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 2847 | * Standard erase command for NAND chips. Returns NAND status. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | */ |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 2849 | static int single_erase(struct mtd_info *mtd, int page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 2851 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | /* Send commands to erase a block */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2853 | chip->cmdfunc(mtd, NAND_CMD_ERASE1, -1, page); |
| 2854 | chip->cmdfunc(mtd, NAND_CMD_ERASE2, -1, -1); |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 2855 | |
| 2856 | return chip->waitfunc(mtd, chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | } |
| 2858 | |
| 2859 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | * nand_erase - [MTD Interface] erase block(s) |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2861 | * @mtd: MTD device structure |
| 2862 | * @instr: erase instruction |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2864 | * Erase one ore more blocks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 2866 | static int nand_erase(struct mtd_info *mtd, struct erase_info *instr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | { |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 2868 | return nand_erase_nand(mtd, instr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 2870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2871 | /** |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 2872 | * nand_erase_nand - [INTERN] erase block(s) |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2873 | * @mtd: MTD device structure |
| 2874 | * @instr: erase instruction |
| 2875 | * @allowbbt: allow erasing the bbt area |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2876 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2877 | * Erase one ore more blocks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2879 | int nand_erase_nand(struct mtd_info *mtd, struct erase_info *instr, |
| 2880 | int allowbbt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | { |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 2882 | int page, status, pages_per_block, ret, chipnr; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 2883 | struct nand_chip *chip = mtd_to_nand(mtd); |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 2884 | loff_t len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2886 | pr_debug("%s: start = 0x%012llx, len = %llu\n", |
| 2887 | __func__, (unsigned long long)instr->addr, |
| 2888 | (unsigned long long)instr->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | |
Vimal Singh | 6fe5a6a | 2010-02-03 14:12:24 +0530 | [diff] [blame] | 2890 | if (check_offs_len(mtd, instr->addr, instr->len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2892 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2893 | /* Grab the lock and see if the device is available */ |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 2894 | nand_get_device(mtd, FL_ERASING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | |
| 2896 | /* Shift to get first page */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2897 | page = (int)(instr->addr >> chip->page_shift); |
| 2898 | chipnr = (int)(instr->addr >> chip->chip_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2899 | |
| 2900 | /* Calculate pages in each block */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2901 | pages_per_block = 1 << (chip->phys_erase_shift - chip->page_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2902 | |
| 2903 | /* Select the NAND device */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2904 | chip->select_chip(mtd, chipnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2906 | /* Check, if it is write protected */ |
| 2907 | if (nand_check_wp(mtd)) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2908 | pr_debug("%s: device is write protected!\n", |
| 2909 | __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | instr->state = MTD_ERASE_FAILED; |
| 2911 | goto erase_exit; |
| 2912 | } |
| 2913 | |
| 2914 | /* Loop through the pages */ |
| 2915 | len = instr->len; |
| 2916 | |
| 2917 | instr->state = MTD_ERASING; |
| 2918 | |
| 2919 | while (len) { |
Wolfram Sang | 12183a2 | 2011-12-21 23:01:20 +0100 | [diff] [blame] | 2920 | /* Check if we have a bad block, we do not erase bad blocks! */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2921 | if (nand_block_checkbad(mtd, ((loff_t) page) << |
Archit Taneja | 9f3e042 | 2016-02-03 14:29:49 +0530 | [diff] [blame] | 2922 | chip->page_shift, allowbbt)) { |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 2923 | pr_warn("%s: attempt to erase a bad block at page 0x%08x\n", |
| 2924 | __func__, page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | instr->state = MTD_ERASE_FAILED; |
| 2926 | goto erase_exit; |
| 2927 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 2928 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2929 | /* |
| 2930 | * Invalidate the page cache, if we erase the block which |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2931 | * contains the current cached page. |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2932 | */ |
| 2933 | if (page <= chip->pagebuf && chip->pagebuf < |
| 2934 | (page + pages_per_block)) |
| 2935 | chip->pagebuf = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2936 | |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 2937 | status = chip->erase(mtd, page & chip->pagemask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2938 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2939 | /* |
| 2940 | * See if operation failed and additional status checks are |
| 2941 | * available |
| 2942 | */ |
| 2943 | if ((status & NAND_STATUS_FAIL) && (chip->errstat)) |
| 2944 | status = chip->errstat(mtd, chip, FL_ERASING, |
| 2945 | status, page); |
David A. Marlin | 068e3c0 | 2005-01-24 03:07:46 +0000 | [diff] [blame] | 2946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | /* See if block erase succeeded */ |
David A. Marlin | a4ab4c5 | 2005-01-23 18:30:53 +0000 | [diff] [blame] | 2948 | if (status & NAND_STATUS_FAIL) { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2949 | pr_debug("%s: failed erase, page 0x%08x\n", |
| 2950 | __func__, page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | instr->state = MTD_ERASE_FAILED; |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 2952 | instr->fail_addr = |
| 2953 | ((loff_t)page << chip->page_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2954 | goto erase_exit; |
| 2955 | } |
David A. Marlin | 30f464b | 2005-01-17 18:35:25 +0000 | [diff] [blame] | 2956 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | /* Increment page address and decrement length */ |
Dan Carpenter | daae74c | 2013-08-09 12:49:05 +0300 | [diff] [blame] | 2958 | len -= (1ULL << chip->phys_erase_shift); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | page += pages_per_block; |
| 2960 | |
| 2961 | /* Check, if we cross a chip boundary */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2962 | if (len && !(page & chip->pagemask)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2963 | chipnr++; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 2964 | chip->select_chip(mtd, -1); |
| 2965 | chip->select_chip(mtd, chipnr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | } |
| 2967 | } |
| 2968 | instr->state = MTD_ERASE_DONE; |
| 2969 | |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 2970 | erase_exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2971 | |
| 2972 | ret = instr->state == MTD_ERASE_DONE ? 0 : -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | |
| 2974 | /* Deselect and wake up anyone waiting on the device */ |
Huang Shijie | b0bb690 | 2012-11-19 14:43:29 +0800 | [diff] [blame] | 2975 | chip->select_chip(mtd, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | nand_release_device(mtd); |
| 2977 | |
David Woodhouse | 49defc0 | 2007-10-06 15:01:59 -0400 | [diff] [blame] | 2978 | /* Do call back function */ |
| 2979 | if (!ret) |
| 2980 | mtd_erase_callback(instr); |
| 2981 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2982 | /* Return more or less happy */ |
| 2983 | return ret; |
| 2984 | } |
| 2985 | |
| 2986 | /** |
| 2987 | * nand_sync - [MTD Interface] sync |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2988 | * @mtd: MTD device structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2989 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 2990 | * Sync is actually a wait for chip ready function. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2991 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 2992 | static void nand_sync(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | { |
Brian Norris | 289c052 | 2011-07-19 10:06:09 -0700 | [diff] [blame] | 2994 | pr_debug("%s: called\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | |
| 2996 | /* Grab the lock and see if the device is available */ |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 2997 | nand_get_device(mtd, FL_SYNCING); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2998 | /* Release it and go back */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 2999 | nand_release_device(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | } |
| 3001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | /** |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3003 | * nand_block_isbad - [MTD Interface] Check if block at offset is bad |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3004 | * @mtd: MTD device structure |
| 3005 | * @offs: offset relative to mtd start |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3007 | static int nand_block_isbad(struct mtd_info *mtd, loff_t offs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | { |
Archit Taneja | 9f3e042 | 2016-02-03 14:29:49 +0530 | [diff] [blame] | 3009 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 3010 | int chipnr = (int)(offs >> chip->chip_shift); |
| 3011 | int ret; |
| 3012 | |
| 3013 | /* Select the NAND device */ |
| 3014 | nand_get_device(mtd, FL_READING); |
| 3015 | chip->select_chip(mtd, chipnr); |
| 3016 | |
| 3017 | ret = nand_block_checkbad(mtd, offs, 0); |
| 3018 | |
| 3019 | chip->select_chip(mtd, -1); |
| 3020 | nand_release_device(mtd); |
| 3021 | |
| 3022 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | } |
| 3024 | |
| 3025 | /** |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3026 | * nand_block_markbad - [MTD Interface] Mark block at the given offset as bad |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3027 | * @mtd: MTD device structure |
| 3028 | * @ofs: offset relative to mtd start |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 3030 | static int nand_block_markbad(struct mtd_info *mtd, loff_t ofs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | int ret; |
| 3033 | |
Florian Fainelli | f8ac041 | 2010-09-07 13:23:43 +0200 | [diff] [blame] | 3034 | ret = nand_block_isbad(mtd, ofs); |
| 3035 | if (ret) { |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3036 | /* If it was bad already, return success and do nothing */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | if (ret > 0) |
| 3038 | return 0; |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 3039 | return ret; |
| 3040 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | |
Brian Norris | 5a0edb2 | 2013-07-30 17:52:58 -0700 | [diff] [blame] | 3042 | return nand_block_markbad_lowlevel(mtd, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | } |
| 3044 | |
| 3045 | /** |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 3046 | * nand_onfi_set_features- [REPLACEABLE] set features for ONFI nand |
| 3047 | * @mtd: MTD device structure |
| 3048 | * @chip: nand chip info structure |
| 3049 | * @addr: feature address. |
| 3050 | * @subfeature_param: the subfeature parameters, a four bytes array. |
| 3051 | */ |
| 3052 | static int nand_onfi_set_features(struct mtd_info *mtd, struct nand_chip *chip, |
| 3053 | int addr, uint8_t *subfeature_param) |
| 3054 | { |
| 3055 | int status; |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 3056 | int i; |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 3057 | |
David Mosberger | d914c93 | 2013-05-29 15:30:13 +0300 | [diff] [blame] | 3058 | if (!chip->onfi_version || |
| 3059 | !(le16_to_cpu(chip->onfi_params.opt_cmd) |
| 3060 | & ONFI_OPT_CMD_SET_GET_FEATURES)) |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 3061 | return -EINVAL; |
| 3062 | |
| 3063 | chip->cmdfunc(mtd, NAND_CMD_SET_FEATURES, addr, -1); |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 3064 | for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i) |
| 3065 | chip->write_byte(mtd, subfeature_param[i]); |
| 3066 | |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 3067 | status = chip->waitfunc(mtd, chip); |
| 3068 | if (status & NAND_STATUS_FAIL) |
| 3069 | return -EIO; |
| 3070 | return 0; |
| 3071 | } |
| 3072 | |
| 3073 | /** |
| 3074 | * nand_onfi_get_features- [REPLACEABLE] get features for ONFI nand |
| 3075 | * @mtd: MTD device structure |
| 3076 | * @chip: nand chip info structure |
| 3077 | * @addr: feature address. |
| 3078 | * @subfeature_param: the subfeature parameters, a four bytes array. |
| 3079 | */ |
| 3080 | static int nand_onfi_get_features(struct mtd_info *mtd, struct nand_chip *chip, |
| 3081 | int addr, uint8_t *subfeature_param) |
| 3082 | { |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 3083 | int i; |
| 3084 | |
David Mosberger | d914c93 | 2013-05-29 15:30:13 +0300 | [diff] [blame] | 3085 | if (!chip->onfi_version || |
| 3086 | !(le16_to_cpu(chip->onfi_params.opt_cmd) |
| 3087 | & ONFI_OPT_CMD_SET_GET_FEATURES)) |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 3088 | return -EINVAL; |
| 3089 | |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 3090 | chip->cmdfunc(mtd, NAND_CMD_GET_FEATURES, addr, -1); |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 3091 | for (i = 0; i < ONFI_SUBFEATURE_PARAM_LEN; ++i) |
| 3092 | *subfeature_param++ = chip->read_byte(mtd); |
Huang Shijie | 7db03ec | 2012-09-13 14:57:52 +0800 | [diff] [blame] | 3093 | return 0; |
| 3094 | } |
| 3095 | |
| 3096 | /** |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 3097 | * nand_suspend - [MTD Interface] Suspend the NAND flash |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3098 | * @mtd: MTD device structure |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 3099 | */ |
| 3100 | static int nand_suspend(struct mtd_info *mtd) |
| 3101 | { |
Huang Shijie | 6a8214a | 2012-11-19 14:43:30 +0800 | [diff] [blame] | 3102 | return nand_get_device(mtd, FL_PM_SUSPENDED); |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 3103 | } |
| 3104 | |
| 3105 | /** |
| 3106 | * nand_resume - [MTD Interface] Resume the NAND flash |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3107 | * @mtd: MTD device structure |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 3108 | */ |
| 3109 | static void nand_resume(struct mtd_info *mtd) |
| 3110 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 3111 | struct nand_chip *chip = mtd_to_nand(mtd); |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 3112 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3113 | if (chip->state == FL_PM_SUSPENDED) |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 3114 | nand_release_device(mtd); |
| 3115 | else |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 3116 | pr_err("%s called for a chip which is not in suspended state\n", |
| 3117 | __func__); |
Vitaly Wool | 962034f | 2005-09-15 14:58:53 +0100 | [diff] [blame] | 3118 | } |
| 3119 | |
Scott Branden | 72ea403 | 2014-11-20 11:18:05 -0800 | [diff] [blame] | 3120 | /** |
| 3121 | * nand_shutdown - [MTD Interface] Finish the current NAND operation and |
| 3122 | * prevent further operations |
| 3123 | * @mtd: MTD device structure |
| 3124 | */ |
| 3125 | static void nand_shutdown(struct mtd_info *mtd) |
| 3126 | { |
Brian Norris | 9ca641b | 2015-11-09 16:37:28 -0800 | [diff] [blame] | 3127 | nand_get_device(mtd, FL_PM_SUSPENDED); |
Scott Branden | 72ea403 | 2014-11-20 11:18:05 -0800 | [diff] [blame] | 3128 | } |
| 3129 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3130 | /* Set default functions */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3131 | static void nand_set_defaults(struct nand_chip *chip, int busw) |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3132 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3133 | /* check for proper chip_delay setup, set 20us if not */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3134 | if (!chip->chip_delay) |
| 3135 | chip->chip_delay = 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | |
| 3137 | /* check, if a user supplied command function given */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3138 | if (chip->cmdfunc == NULL) |
| 3139 | chip->cmdfunc = nand_command; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | |
| 3141 | /* check, if a user supplied wait function given */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3142 | if (chip->waitfunc == NULL) |
| 3143 | chip->waitfunc = nand_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3144 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3145 | if (!chip->select_chip) |
| 3146 | chip->select_chip = nand_select_chip; |
Brian Norris | 68e8078 | 2013-07-18 01:17:02 -0700 | [diff] [blame] | 3147 | |
Huang Shijie | 4204ccc | 2013-08-16 10:10:07 +0800 | [diff] [blame] | 3148 | /* set for ONFI nand */ |
| 3149 | if (!chip->onfi_set_features) |
| 3150 | chip->onfi_set_features = nand_onfi_set_features; |
| 3151 | if (!chip->onfi_get_features) |
| 3152 | chip->onfi_get_features = nand_onfi_get_features; |
| 3153 | |
Brian Norris | 68e8078 | 2013-07-18 01:17:02 -0700 | [diff] [blame] | 3154 | /* If called twice, pointers that depend on busw may need to be reset */ |
| 3155 | if (!chip->read_byte || chip->read_byte == nand_read_byte) |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3156 | chip->read_byte = busw ? nand_read_byte16 : nand_read_byte; |
| 3157 | if (!chip->read_word) |
| 3158 | chip->read_word = nand_read_word; |
| 3159 | if (!chip->block_bad) |
| 3160 | chip->block_bad = nand_block_bad; |
| 3161 | if (!chip->block_markbad) |
| 3162 | chip->block_markbad = nand_default_block_markbad; |
Brian Norris | 68e8078 | 2013-07-18 01:17:02 -0700 | [diff] [blame] | 3163 | if (!chip->write_buf || chip->write_buf == nand_write_buf) |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3164 | chip->write_buf = busw ? nand_write_buf16 : nand_write_buf; |
Uwe Kleine-König | 05f7835 | 2013-12-05 22:22:04 +0100 | [diff] [blame] | 3165 | if (!chip->write_byte || chip->write_byte == nand_write_byte) |
| 3166 | chip->write_byte = busw ? nand_write_byte16 : nand_write_byte; |
Brian Norris | 68e8078 | 2013-07-18 01:17:02 -0700 | [diff] [blame] | 3167 | if (!chip->read_buf || chip->read_buf == nand_read_buf) |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3168 | chip->read_buf = busw ? nand_read_buf16 : nand_read_buf; |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3169 | if (!chip->scan_bbt) |
| 3170 | chip->scan_bbt = nand_default_bbt; |
Thomas Gleixner | f75e509 | 2006-05-26 18:52:08 +0200 | [diff] [blame] | 3171 | |
| 3172 | if (!chip->controller) { |
| 3173 | chip->controller = &chip->hwcontrol; |
| 3174 | spin_lock_init(&chip->controller->lock); |
| 3175 | init_waitqueue_head(&chip->controller->wq); |
| 3176 | } |
| 3177 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3178 | } |
| 3179 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3180 | /* Sanitize ONFI strings so we can safely print them */ |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3181 | static void sanitize_string(uint8_t *s, size_t len) |
| 3182 | { |
| 3183 | ssize_t i; |
| 3184 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3185 | /* Null terminate */ |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3186 | s[len - 1] = 0; |
| 3187 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3188 | /* Remove non printable chars */ |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3189 | for (i = 0; i < len - 1; i++) { |
| 3190 | if (s[i] < ' ' || s[i] > 127) |
| 3191 | s[i] = '?'; |
| 3192 | } |
| 3193 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3194 | /* Remove trailing spaces */ |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3195 | strim(s); |
| 3196 | } |
| 3197 | |
| 3198 | static u16 onfi_crc16(u16 crc, u8 const *p, size_t len) |
| 3199 | { |
| 3200 | int i; |
| 3201 | while (len--) { |
| 3202 | crc ^= *p++ << 8; |
| 3203 | for (i = 0; i < 8; i++) |
| 3204 | crc = (crc << 1) ^ ((crc & 0x8000) ? 0x8005 : 0); |
| 3205 | } |
| 3206 | |
| 3207 | return crc; |
| 3208 | } |
| 3209 | |
Huang Shijie | 6dcbe0c | 2013-05-22 10:28:27 +0800 | [diff] [blame] | 3210 | /* Parse the Extended Parameter Page. */ |
| 3211 | static int nand_flash_detect_ext_param_page(struct mtd_info *mtd, |
| 3212 | struct nand_chip *chip, struct nand_onfi_params *p) |
| 3213 | { |
| 3214 | struct onfi_ext_param_page *ep; |
| 3215 | struct onfi_ext_section *s; |
| 3216 | struct onfi_ext_ecc_info *ecc; |
| 3217 | uint8_t *cursor; |
| 3218 | int ret = -EINVAL; |
| 3219 | int len; |
| 3220 | int i; |
| 3221 | |
| 3222 | len = le16_to_cpu(p->ext_param_page_length) * 16; |
| 3223 | ep = kmalloc(len, GFP_KERNEL); |
Brian Norris | 5cb1327 | 2013-09-16 17:59:20 -0700 | [diff] [blame] | 3224 | if (!ep) |
| 3225 | return -ENOMEM; |
Huang Shijie | 6dcbe0c | 2013-05-22 10:28:27 +0800 | [diff] [blame] | 3226 | |
| 3227 | /* Send our own NAND_CMD_PARAM. */ |
| 3228 | chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1); |
| 3229 | |
| 3230 | /* Use the Change Read Column command to skip the ONFI param pages. */ |
| 3231 | chip->cmdfunc(mtd, NAND_CMD_RNDOUT, |
| 3232 | sizeof(*p) * p->num_of_param_pages , -1); |
| 3233 | |
| 3234 | /* Read out the Extended Parameter Page. */ |
| 3235 | chip->read_buf(mtd, (uint8_t *)ep, len); |
| 3236 | if ((onfi_crc16(ONFI_CRC_BASE, ((uint8_t *)ep) + 2, len - 2) |
| 3237 | != le16_to_cpu(ep->crc))) { |
| 3238 | pr_debug("fail in the CRC.\n"); |
| 3239 | goto ext_out; |
| 3240 | } |
| 3241 | |
| 3242 | /* |
| 3243 | * Check the signature. |
| 3244 | * Do not strictly follow the ONFI spec, maybe changed in future. |
| 3245 | */ |
| 3246 | if (strncmp(ep->sig, "EPPS", 4)) { |
| 3247 | pr_debug("The signature is invalid.\n"); |
| 3248 | goto ext_out; |
| 3249 | } |
| 3250 | |
| 3251 | /* find the ECC section. */ |
| 3252 | cursor = (uint8_t *)(ep + 1); |
| 3253 | for (i = 0; i < ONFI_EXT_SECTION_MAX; i++) { |
| 3254 | s = ep->sections + i; |
| 3255 | if (s->type == ONFI_SECTION_TYPE_2) |
| 3256 | break; |
| 3257 | cursor += s->length * 16; |
| 3258 | } |
| 3259 | if (i == ONFI_EXT_SECTION_MAX) { |
| 3260 | pr_debug("We can not find the ECC section.\n"); |
| 3261 | goto ext_out; |
| 3262 | } |
| 3263 | |
| 3264 | /* get the info we want. */ |
| 3265 | ecc = (struct onfi_ext_ecc_info *)cursor; |
| 3266 | |
Brian Norris | 4ae7d22 | 2013-09-16 18:20:21 -0700 | [diff] [blame] | 3267 | if (!ecc->codeword_size) { |
| 3268 | pr_debug("Invalid codeword size\n"); |
| 3269 | goto ext_out; |
Huang Shijie | 6dcbe0c | 2013-05-22 10:28:27 +0800 | [diff] [blame] | 3270 | } |
| 3271 | |
Brian Norris | 4ae7d22 | 2013-09-16 18:20:21 -0700 | [diff] [blame] | 3272 | chip->ecc_strength_ds = ecc->ecc_bits; |
| 3273 | chip->ecc_step_ds = 1 << ecc->codeword_size; |
Brian Norris | 5cb1327 | 2013-09-16 17:59:20 -0700 | [diff] [blame] | 3274 | ret = 0; |
Huang Shijie | 6dcbe0c | 2013-05-22 10:28:27 +0800 | [diff] [blame] | 3275 | |
| 3276 | ext_out: |
| 3277 | kfree(ep); |
| 3278 | return ret; |
| 3279 | } |
| 3280 | |
Brian Norris | 8429bb3 | 2013-12-03 15:51:09 -0800 | [diff] [blame] | 3281 | static int nand_setup_read_retry_micron(struct mtd_info *mtd, int retry_mode) |
| 3282 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 3283 | struct nand_chip *chip = mtd_to_nand(mtd); |
Brian Norris | 8429bb3 | 2013-12-03 15:51:09 -0800 | [diff] [blame] | 3284 | uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {retry_mode}; |
| 3285 | |
| 3286 | return chip->onfi_set_features(mtd, chip, ONFI_FEATURE_ADDR_READ_RETRY, |
| 3287 | feature); |
| 3288 | } |
| 3289 | |
| 3290 | /* |
| 3291 | * Configure chip properties from Micron vendor-specific ONFI table |
| 3292 | */ |
| 3293 | static void nand_onfi_detect_micron(struct nand_chip *chip, |
| 3294 | struct nand_onfi_params *p) |
| 3295 | { |
| 3296 | struct nand_onfi_vendor_micron *micron = (void *)p->vendor; |
| 3297 | |
| 3298 | if (le16_to_cpu(p->vendor_revision) < 1) |
| 3299 | return; |
| 3300 | |
| 3301 | chip->read_retries = micron->read_retry_options; |
| 3302 | chip->setup_read_retry = nand_setup_read_retry_micron; |
| 3303 | } |
| 3304 | |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3305 | /* |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3306 | * Check if the NAND chip is ONFI compliant, returns 1 if it is, 0 otherwise. |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3307 | */ |
| 3308 | static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip, |
Matthieu CASTET | 08c248f | 2011-06-26 18:26:55 +0200 | [diff] [blame] | 3309 | int *busw) |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3310 | { |
| 3311 | struct nand_onfi_params *p = &chip->onfi_params; |
Brian Norris | bd9c6e9 | 2013-11-29 22:04:28 -0800 | [diff] [blame] | 3312 | int i, j; |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3313 | int val; |
| 3314 | |
Brian Norris | 7854d3f | 2011-06-23 14:12:08 -0700 | [diff] [blame] | 3315 | /* Try ONFI for unknown chip or LP */ |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3316 | chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1); |
| 3317 | if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' || |
| 3318 | chip->read_byte(mtd) != 'F' || chip->read_byte(mtd) != 'I') |
| 3319 | return 0; |
| 3320 | |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3321 | chip->cmdfunc(mtd, NAND_CMD_PARAM, 0, -1); |
| 3322 | for (i = 0; i < 3; i++) { |
Brian Norris | bd9c6e9 | 2013-11-29 22:04:28 -0800 | [diff] [blame] | 3323 | for (j = 0; j < sizeof(*p); j++) |
| 3324 | ((uint8_t *)p)[j] = chip->read_byte(mtd); |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3325 | if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 254) == |
| 3326 | le16_to_cpu(p->crc)) { |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3327 | break; |
| 3328 | } |
| 3329 | } |
| 3330 | |
Brian Norris | c7f23a7 | 2013-08-13 10:51:55 -0700 | [diff] [blame] | 3331 | if (i == 3) { |
| 3332 | pr_err("Could not find valid ONFI parameter page; aborting\n"); |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3333 | return 0; |
Brian Norris | c7f23a7 | 2013-08-13 10:51:55 -0700 | [diff] [blame] | 3334 | } |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3335 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3336 | /* Check version */ |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3337 | val = le16_to_cpu(p->revision); |
Brian Norris | b7b1a29 | 2010-12-12 00:23:33 -0800 | [diff] [blame] | 3338 | if (val & (1 << 5)) |
| 3339 | chip->onfi_version = 23; |
| 3340 | else if (val & (1 << 4)) |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3341 | chip->onfi_version = 22; |
| 3342 | else if (val & (1 << 3)) |
| 3343 | chip->onfi_version = 21; |
| 3344 | else if (val & (1 << 2)) |
| 3345 | chip->onfi_version = 20; |
Brian Norris | b7b1a29 | 2010-12-12 00:23:33 -0800 | [diff] [blame] | 3346 | else if (val & (1 << 1)) |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3347 | chip->onfi_version = 10; |
Brian Norris | b7b1a29 | 2010-12-12 00:23:33 -0800 | [diff] [blame] | 3348 | |
| 3349 | if (!chip->onfi_version) { |
Ezequiel Garcia | 2017164 | 2013-11-25 08:30:31 -0300 | [diff] [blame] | 3350 | pr_info("unsupported ONFI version: %d\n", val); |
Brian Norris | b7b1a29 | 2010-12-12 00:23:33 -0800 | [diff] [blame] | 3351 | return 0; |
| 3352 | } |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3353 | |
| 3354 | sanitize_string(p->manufacturer, sizeof(p->manufacturer)); |
| 3355 | sanitize_string(p->model, sizeof(p->model)); |
| 3356 | if (!mtd->name) |
| 3357 | mtd->name = p->model; |
Brian Norris | 4355b70 | 2013-08-27 18:45:10 -0700 | [diff] [blame] | 3358 | |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3359 | mtd->writesize = le32_to_cpu(p->byte_per_page); |
Brian Norris | 4355b70 | 2013-08-27 18:45:10 -0700 | [diff] [blame] | 3360 | |
| 3361 | /* |
| 3362 | * pages_per_block and blocks_per_lun may not be a power-of-2 size |
| 3363 | * (don't ask me who thought of this...). MTD assumes that these |
| 3364 | * dimensions will be power-of-2, so just truncate the remaining area. |
| 3365 | */ |
| 3366 | mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1); |
| 3367 | mtd->erasesize *= mtd->writesize; |
| 3368 | |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3369 | mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page); |
Brian Norris | 4355b70 | 2013-08-27 18:45:10 -0700 | [diff] [blame] | 3370 | |
| 3371 | /* See erasesize comment */ |
| 3372 | chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1); |
Matthieu CASTET | 6379575 | 2012-03-19 15:35:25 +0100 | [diff] [blame] | 3373 | chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count; |
Huang Shijie | 13fbd17 | 2013-09-25 14:58:13 +0800 | [diff] [blame] | 3374 | chip->bits_per_cell = p->bits_per_cell; |
Huang Shijie | e2985fc | 2013-05-17 11:17:30 +0800 | [diff] [blame] | 3375 | |
| 3376 | if (onfi_feature(chip) & ONFI_FEATURE_16_BIT_BUS) |
Matthieu CASTET | 08c248f | 2011-06-26 18:26:55 +0200 | [diff] [blame] | 3377 | *busw = NAND_BUSWIDTH_16; |
Huang Shijie | e2985fc | 2013-05-17 11:17:30 +0800 | [diff] [blame] | 3378 | else |
| 3379 | *busw = 0; |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3380 | |
Huang Shijie | 10c86ba | 2013-05-17 11:17:26 +0800 | [diff] [blame] | 3381 | if (p->ecc_bits != 0xff) { |
| 3382 | chip->ecc_strength_ds = p->ecc_bits; |
| 3383 | chip->ecc_step_ds = 512; |
Huang Shijie | 6dcbe0c | 2013-05-22 10:28:27 +0800 | [diff] [blame] | 3384 | } else if (chip->onfi_version >= 21 && |
| 3385 | (onfi_feature(chip) & ONFI_FEATURE_EXT_PARAM_PAGE)) { |
| 3386 | |
| 3387 | /* |
| 3388 | * The nand_flash_detect_ext_param_page() uses the |
| 3389 | * Change Read Column command which maybe not supported |
| 3390 | * by the chip->cmdfunc. So try to update the chip->cmdfunc |
| 3391 | * now. We do not replace user supplied command function. |
| 3392 | */ |
| 3393 | if (mtd->writesize > 512 && chip->cmdfunc == nand_command) |
| 3394 | chip->cmdfunc = nand_command_lp; |
| 3395 | |
| 3396 | /* The Extended Parameter Page is supported since ONFI 2.1. */ |
| 3397 | if (nand_flash_detect_ext_param_page(mtd, chip, p)) |
Brian Norris | c7f23a7 | 2013-08-13 10:51:55 -0700 | [diff] [blame] | 3398 | pr_warn("Failed to detect ONFI extended param page\n"); |
| 3399 | } else { |
| 3400 | pr_warn("Could not retrieve ONFI ECC requirements\n"); |
Huang Shijie | 10c86ba | 2013-05-17 11:17:26 +0800 | [diff] [blame] | 3401 | } |
| 3402 | |
Brian Norris | 8429bb3 | 2013-12-03 15:51:09 -0800 | [diff] [blame] | 3403 | if (p->jedec_id == NAND_MFR_MICRON) |
| 3404 | nand_onfi_detect_micron(chip, p); |
| 3405 | |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3406 | return 1; |
| 3407 | } |
| 3408 | |
| 3409 | /* |
Huang Shijie | 9136181 | 2014-02-21 13:39:40 +0800 | [diff] [blame] | 3410 | * Check if the NAND chip is JEDEC compliant, returns 1 if it is, 0 otherwise. |
| 3411 | */ |
| 3412 | static int nand_flash_detect_jedec(struct mtd_info *mtd, struct nand_chip *chip, |
| 3413 | int *busw) |
| 3414 | { |
| 3415 | struct nand_jedec_params *p = &chip->jedec_params; |
| 3416 | struct jedec_ecc_info *ecc; |
| 3417 | int val; |
| 3418 | int i, j; |
| 3419 | |
| 3420 | /* Try JEDEC for unknown chip or LP */ |
| 3421 | chip->cmdfunc(mtd, NAND_CMD_READID, 0x40, -1); |
| 3422 | if (chip->read_byte(mtd) != 'J' || chip->read_byte(mtd) != 'E' || |
| 3423 | chip->read_byte(mtd) != 'D' || chip->read_byte(mtd) != 'E' || |
| 3424 | chip->read_byte(mtd) != 'C') |
| 3425 | return 0; |
| 3426 | |
| 3427 | chip->cmdfunc(mtd, NAND_CMD_PARAM, 0x40, -1); |
| 3428 | for (i = 0; i < 3; i++) { |
| 3429 | for (j = 0; j < sizeof(*p); j++) |
| 3430 | ((uint8_t *)p)[j] = chip->read_byte(mtd); |
| 3431 | |
| 3432 | if (onfi_crc16(ONFI_CRC_BASE, (uint8_t *)p, 510) == |
| 3433 | le16_to_cpu(p->crc)) |
| 3434 | break; |
| 3435 | } |
| 3436 | |
| 3437 | if (i == 3) { |
| 3438 | pr_err("Could not find valid JEDEC parameter page; aborting\n"); |
| 3439 | return 0; |
| 3440 | } |
| 3441 | |
| 3442 | /* Check version */ |
| 3443 | val = le16_to_cpu(p->revision); |
| 3444 | if (val & (1 << 2)) |
| 3445 | chip->jedec_version = 10; |
| 3446 | else if (val & (1 << 1)) |
| 3447 | chip->jedec_version = 1; /* vendor specific version */ |
| 3448 | |
| 3449 | if (!chip->jedec_version) { |
| 3450 | pr_info("unsupported JEDEC version: %d\n", val); |
| 3451 | return 0; |
| 3452 | } |
| 3453 | |
| 3454 | sanitize_string(p->manufacturer, sizeof(p->manufacturer)); |
| 3455 | sanitize_string(p->model, sizeof(p->model)); |
| 3456 | if (!mtd->name) |
| 3457 | mtd->name = p->model; |
| 3458 | |
| 3459 | mtd->writesize = le32_to_cpu(p->byte_per_page); |
| 3460 | |
| 3461 | /* Please reference to the comment for nand_flash_detect_onfi. */ |
| 3462 | mtd->erasesize = 1 << (fls(le32_to_cpu(p->pages_per_block)) - 1); |
| 3463 | mtd->erasesize *= mtd->writesize; |
| 3464 | |
| 3465 | mtd->oobsize = le16_to_cpu(p->spare_bytes_per_page); |
| 3466 | |
| 3467 | /* Please reference to the comment for nand_flash_detect_onfi. */ |
| 3468 | chip->chipsize = 1 << (fls(le32_to_cpu(p->blocks_per_lun)) - 1); |
| 3469 | chip->chipsize *= (uint64_t)mtd->erasesize * p->lun_count; |
| 3470 | chip->bits_per_cell = p->bits_per_cell; |
| 3471 | |
| 3472 | if (jedec_feature(chip) & JEDEC_FEATURE_16_BIT_BUS) |
| 3473 | *busw = NAND_BUSWIDTH_16; |
| 3474 | else |
| 3475 | *busw = 0; |
| 3476 | |
| 3477 | /* ECC info */ |
| 3478 | ecc = &p->ecc_info[0]; |
| 3479 | |
| 3480 | if (ecc->codeword_size >= 9) { |
| 3481 | chip->ecc_strength_ds = ecc->ecc_bits; |
| 3482 | chip->ecc_step_ds = 1 << ecc->codeword_size; |
| 3483 | } else { |
| 3484 | pr_warn("Invalid codeword size\n"); |
| 3485 | } |
| 3486 | |
| 3487 | return 1; |
| 3488 | } |
| 3489 | |
| 3490 | /* |
Brian Norris | e3b88bd | 2012-09-24 20:40:52 -0700 | [diff] [blame] | 3491 | * nand_id_has_period - Check if an ID string has a given wraparound period |
| 3492 | * @id_data: the ID string |
| 3493 | * @arrlen: the length of the @id_data array |
| 3494 | * @period: the period of repitition |
| 3495 | * |
| 3496 | * Check if an ID string is repeated within a given sequence of bytes at |
| 3497 | * specific repetition interval period (e.g., {0x20,0x01,0x7F,0x20} has a |
Brian Norris | d4d4f1b | 2012-11-14 21:54:20 -0800 | [diff] [blame] | 3498 | * period of 3). This is a helper function for nand_id_len(). Returns non-zero |
Brian Norris | e3b88bd | 2012-09-24 20:40:52 -0700 | [diff] [blame] | 3499 | * if the repetition has a period of @period; otherwise, returns zero. |
| 3500 | */ |
| 3501 | static int nand_id_has_period(u8 *id_data, int arrlen, int period) |
| 3502 | { |
| 3503 | int i, j; |
| 3504 | for (i = 0; i < period; i++) |
| 3505 | for (j = i + period; j < arrlen; j += period) |
| 3506 | if (id_data[i] != id_data[j]) |
| 3507 | return 0; |
| 3508 | return 1; |
| 3509 | } |
| 3510 | |
| 3511 | /* |
| 3512 | * nand_id_len - Get the length of an ID string returned by CMD_READID |
| 3513 | * @id_data: the ID string |
| 3514 | * @arrlen: the length of the @id_data array |
| 3515 | |
| 3516 | * Returns the length of the ID string, according to known wraparound/trailing |
| 3517 | * zero patterns. If no pattern exists, returns the length of the array. |
| 3518 | */ |
| 3519 | static int nand_id_len(u8 *id_data, int arrlen) |
| 3520 | { |
| 3521 | int last_nonzero, period; |
| 3522 | |
| 3523 | /* Find last non-zero byte */ |
| 3524 | for (last_nonzero = arrlen - 1; last_nonzero >= 0; last_nonzero--) |
| 3525 | if (id_data[last_nonzero]) |
| 3526 | break; |
| 3527 | |
| 3528 | /* All zeros */ |
| 3529 | if (last_nonzero < 0) |
| 3530 | return 0; |
| 3531 | |
| 3532 | /* Calculate wraparound period */ |
| 3533 | for (period = 1; period < arrlen; period++) |
| 3534 | if (nand_id_has_period(id_data, arrlen, period)) |
| 3535 | break; |
| 3536 | |
| 3537 | /* There's a repeated pattern */ |
| 3538 | if (period < arrlen) |
| 3539 | return period; |
| 3540 | |
| 3541 | /* There are trailing zeros */ |
| 3542 | if (last_nonzero < arrlen - 1) |
| 3543 | return last_nonzero + 1; |
| 3544 | |
| 3545 | /* No pattern detected */ |
| 3546 | return arrlen; |
| 3547 | } |
| 3548 | |
Huang Shijie | 7db906b | 2013-09-25 14:58:11 +0800 | [diff] [blame] | 3549 | /* Extract the bits of per cell from the 3rd byte of the extended ID */ |
| 3550 | static int nand_get_bits_per_cell(u8 cellinfo) |
| 3551 | { |
| 3552 | int bits; |
| 3553 | |
| 3554 | bits = cellinfo & NAND_CI_CELLTYPE_MSK; |
| 3555 | bits >>= NAND_CI_CELLTYPE_SHIFT; |
| 3556 | return bits + 1; |
| 3557 | } |
| 3558 | |
Brian Norris | e3b88bd | 2012-09-24 20:40:52 -0700 | [diff] [blame] | 3559 | /* |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3560 | * Many new NAND share similar device ID codes, which represent the size of the |
| 3561 | * chip. The rest of the parameters must be decoded according to generic or |
| 3562 | * manufacturer-specific "extended ID" decoding patterns. |
| 3563 | */ |
| 3564 | static void nand_decode_ext_id(struct mtd_info *mtd, struct nand_chip *chip, |
| 3565 | u8 id_data[8], int *busw) |
| 3566 | { |
Brian Norris | e3b88bd | 2012-09-24 20:40:52 -0700 | [diff] [blame] | 3567 | int extid, id_len; |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3568 | /* The 3rd id byte holds MLC / multichip data */ |
Huang Shijie | 7db906b | 2013-09-25 14:58:11 +0800 | [diff] [blame] | 3569 | chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]); |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3570 | /* The 4th id byte is the important one */ |
| 3571 | extid = id_data[3]; |
| 3572 | |
Brian Norris | e3b88bd | 2012-09-24 20:40:52 -0700 | [diff] [blame] | 3573 | id_len = nand_id_len(id_data, 8); |
| 3574 | |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3575 | /* |
| 3576 | * Field definitions are in the following datasheets: |
| 3577 | * Old style (4,5 byte ID): Samsung K9GAG08U0M (p.32) |
Brian Norris | af451af | 2012-10-09 23:26:06 -0700 | [diff] [blame] | 3578 | * New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44) |
Brian Norris | 73ca392 | 2012-09-24 20:40:54 -0700 | [diff] [blame] | 3579 | * Hynix MLC (6 byte ID): Hynix H27UBG8T2B (p.22) |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3580 | * |
Brian Norris | af451af | 2012-10-09 23:26:06 -0700 | [diff] [blame] | 3581 | * Check for ID length, non-zero 6th byte, cell type, and Hynix/Samsung |
| 3582 | * ID to decide what to do. |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3583 | */ |
Brian Norris | af451af | 2012-10-09 23:26:06 -0700 | [diff] [blame] | 3584 | if (id_len == 6 && id_data[0] == NAND_MFR_SAMSUNG && |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 3585 | !nand_is_slc(chip) && id_data[5] != 0x00) { |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3586 | /* Calc pagesize */ |
| 3587 | mtd->writesize = 2048 << (extid & 0x03); |
| 3588 | extid >>= 2; |
| 3589 | /* Calc oobsize */ |
Brian Norris | e2d3a35 | 2012-09-24 20:40:55 -0700 | [diff] [blame] | 3590 | switch (((extid >> 2) & 0x04) | (extid & 0x03)) { |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3591 | case 1: |
| 3592 | mtd->oobsize = 128; |
| 3593 | break; |
| 3594 | case 2: |
| 3595 | mtd->oobsize = 218; |
| 3596 | break; |
| 3597 | case 3: |
| 3598 | mtd->oobsize = 400; |
| 3599 | break; |
Brian Norris | e2d3a35 | 2012-09-24 20:40:55 -0700 | [diff] [blame] | 3600 | case 4: |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3601 | mtd->oobsize = 436; |
| 3602 | break; |
Brian Norris | e2d3a35 | 2012-09-24 20:40:55 -0700 | [diff] [blame] | 3603 | case 5: |
| 3604 | mtd->oobsize = 512; |
| 3605 | break; |
| 3606 | case 6: |
Brian Norris | e2d3a35 | 2012-09-24 20:40:55 -0700 | [diff] [blame] | 3607 | mtd->oobsize = 640; |
| 3608 | break; |
Huang Shijie | 94d04e8 | 2013-12-25 17:18:55 +0800 | [diff] [blame] | 3609 | case 7: |
| 3610 | default: /* Other cases are "reserved" (unknown) */ |
| 3611 | mtd->oobsize = 1024; |
| 3612 | break; |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3613 | } |
| 3614 | extid >>= 2; |
| 3615 | /* Calc blocksize */ |
| 3616 | mtd->erasesize = (128 * 1024) << |
| 3617 | (((extid >> 1) & 0x04) | (extid & 0x03)); |
| 3618 | *busw = 0; |
Brian Norris | 73ca392 | 2012-09-24 20:40:54 -0700 | [diff] [blame] | 3619 | } else if (id_len == 6 && id_data[0] == NAND_MFR_HYNIX && |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 3620 | !nand_is_slc(chip)) { |
Brian Norris | 73ca392 | 2012-09-24 20:40:54 -0700 | [diff] [blame] | 3621 | unsigned int tmp; |
| 3622 | |
| 3623 | /* Calc pagesize */ |
| 3624 | mtd->writesize = 2048 << (extid & 0x03); |
| 3625 | extid >>= 2; |
| 3626 | /* Calc oobsize */ |
| 3627 | switch (((extid >> 2) & 0x04) | (extid & 0x03)) { |
| 3628 | case 0: |
| 3629 | mtd->oobsize = 128; |
| 3630 | break; |
| 3631 | case 1: |
| 3632 | mtd->oobsize = 224; |
| 3633 | break; |
| 3634 | case 2: |
| 3635 | mtd->oobsize = 448; |
| 3636 | break; |
| 3637 | case 3: |
| 3638 | mtd->oobsize = 64; |
| 3639 | break; |
| 3640 | case 4: |
| 3641 | mtd->oobsize = 32; |
| 3642 | break; |
| 3643 | case 5: |
| 3644 | mtd->oobsize = 16; |
| 3645 | break; |
| 3646 | default: |
| 3647 | mtd->oobsize = 640; |
| 3648 | break; |
| 3649 | } |
| 3650 | extid >>= 2; |
| 3651 | /* Calc blocksize */ |
| 3652 | tmp = ((extid >> 1) & 0x04) | (extid & 0x03); |
| 3653 | if (tmp < 0x03) |
| 3654 | mtd->erasesize = (128 * 1024) << tmp; |
| 3655 | else if (tmp == 0x03) |
| 3656 | mtd->erasesize = 768 * 1024; |
| 3657 | else |
| 3658 | mtd->erasesize = (64 * 1024) << tmp; |
| 3659 | *busw = 0; |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3660 | } else { |
| 3661 | /* Calc pagesize */ |
| 3662 | mtd->writesize = 1024 << (extid & 0x03); |
| 3663 | extid >>= 2; |
| 3664 | /* Calc oobsize */ |
| 3665 | mtd->oobsize = (8 << (extid & 0x01)) * |
| 3666 | (mtd->writesize >> 9); |
| 3667 | extid >>= 2; |
| 3668 | /* Calc blocksize. Blocksize is multiples of 64KiB */ |
| 3669 | mtd->erasesize = (64 * 1024) << (extid & 0x03); |
| 3670 | extid >>= 2; |
| 3671 | /* Get buswidth information */ |
| 3672 | *busw = (extid & 0x01) ? NAND_BUSWIDTH_16 : 0; |
Brian Norris | 60c6738 | 2013-06-25 13:17:59 -0700 | [diff] [blame] | 3673 | |
| 3674 | /* |
| 3675 | * Toshiba 24nm raw SLC (i.e., not BENAND) have 32B OOB per |
| 3676 | * 512B page. For Toshiba SLC, we decode the 5th/6th byte as |
| 3677 | * follows: |
| 3678 | * - ID byte 6, bits[2:0]: 100b -> 43nm, 101b -> 32nm, |
| 3679 | * 110b -> 24nm |
| 3680 | * - ID byte 5, bit[7]: 1 -> BENAND, 0 -> raw SLC |
| 3681 | */ |
| 3682 | if (id_len >= 6 && id_data[0] == NAND_MFR_TOSHIBA && |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 3683 | nand_is_slc(chip) && |
Brian Norris | 60c6738 | 2013-06-25 13:17:59 -0700 | [diff] [blame] | 3684 | (id_data[5] & 0x7) == 0x6 /* 24nm */ && |
| 3685 | !(id_data[4] & 0x80) /* !BENAND */) { |
| 3686 | mtd->oobsize = 32 * mtd->writesize >> 9; |
| 3687 | } |
| 3688 | |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3689 | } |
| 3690 | } |
| 3691 | |
| 3692 | /* |
Brian Norris | f23a481 | 2012-09-24 20:40:51 -0700 | [diff] [blame] | 3693 | * Old devices have chip data hardcoded in the device ID table. nand_decode_id |
| 3694 | * decodes a matching ID table entry and assigns the MTD size parameters for |
| 3695 | * the chip. |
| 3696 | */ |
| 3697 | static void nand_decode_id(struct mtd_info *mtd, struct nand_chip *chip, |
| 3698 | struct nand_flash_dev *type, u8 id_data[8], |
| 3699 | int *busw) |
| 3700 | { |
| 3701 | int maf_id = id_data[0]; |
| 3702 | |
| 3703 | mtd->erasesize = type->erasesize; |
| 3704 | mtd->writesize = type->pagesize; |
| 3705 | mtd->oobsize = mtd->writesize / 32; |
| 3706 | *busw = type->options & NAND_BUSWIDTH_16; |
| 3707 | |
Huang Shijie | 1c195e9 | 2013-09-25 14:58:12 +0800 | [diff] [blame] | 3708 | /* All legacy ID NAND are small-page, SLC */ |
| 3709 | chip->bits_per_cell = 1; |
| 3710 | |
Brian Norris | f23a481 | 2012-09-24 20:40:51 -0700 | [diff] [blame] | 3711 | /* |
| 3712 | * Check for Spansion/AMD ID + repeating 5th, 6th byte since |
| 3713 | * some Spansion chips have erasesize that conflicts with size |
| 3714 | * listed in nand_ids table. |
| 3715 | * Data sheet (5 byte ID): Spansion S30ML-P ORNAND (p.39) |
| 3716 | */ |
| 3717 | if (maf_id == NAND_MFR_AMD && id_data[4] != 0x00 && id_data[5] == 0x00 |
| 3718 | && id_data[6] == 0x00 && id_data[7] == 0x00 |
| 3719 | && mtd->writesize == 512) { |
| 3720 | mtd->erasesize = 128 * 1024; |
| 3721 | mtd->erasesize <<= ((id_data[3] & 0x03) << 1); |
| 3722 | } |
| 3723 | } |
| 3724 | |
| 3725 | /* |
Brian Norris | 7e74c2d | 2012-09-24 20:40:49 -0700 | [diff] [blame] | 3726 | * Set the bad block marker/indicator (BBM/BBI) patterns according to some |
| 3727 | * heuristic patterns using various detected parameters (e.g., manufacturer, |
| 3728 | * page size, cell-type information). |
| 3729 | */ |
| 3730 | static void nand_decode_bbm_options(struct mtd_info *mtd, |
| 3731 | struct nand_chip *chip, u8 id_data[8]) |
| 3732 | { |
| 3733 | int maf_id = id_data[0]; |
| 3734 | |
| 3735 | /* Set the bad block position */ |
| 3736 | if (mtd->writesize > 512 || (chip->options & NAND_BUSWIDTH_16)) |
| 3737 | chip->badblockpos = NAND_LARGE_BADBLOCK_POS; |
| 3738 | else |
| 3739 | chip->badblockpos = NAND_SMALL_BADBLOCK_POS; |
| 3740 | |
| 3741 | /* |
| 3742 | * Bad block marker is stored in the last page of each block on Samsung |
| 3743 | * and Hynix MLC devices; stored in first two pages of each block on |
| 3744 | * Micron devices with 2KiB pages and on SLC Samsung, Hynix, Toshiba, |
| 3745 | * AMD/Spansion, and Macronix. All others scan only the first page. |
| 3746 | */ |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 3747 | if (!nand_is_slc(chip) && |
Brian Norris | 7e74c2d | 2012-09-24 20:40:49 -0700 | [diff] [blame] | 3748 | (maf_id == NAND_MFR_SAMSUNG || |
| 3749 | maf_id == NAND_MFR_HYNIX)) |
| 3750 | chip->bbt_options |= NAND_BBT_SCANLASTPAGE; |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 3751 | else if ((nand_is_slc(chip) && |
Brian Norris | 7e74c2d | 2012-09-24 20:40:49 -0700 | [diff] [blame] | 3752 | (maf_id == NAND_MFR_SAMSUNG || |
| 3753 | maf_id == NAND_MFR_HYNIX || |
| 3754 | maf_id == NAND_MFR_TOSHIBA || |
| 3755 | maf_id == NAND_MFR_AMD || |
| 3756 | maf_id == NAND_MFR_MACRONIX)) || |
| 3757 | (mtd->writesize == 2048 && |
| 3758 | maf_id == NAND_MFR_MICRON)) |
| 3759 | chip->bbt_options |= NAND_BBT_SCAN2NDPAGE; |
| 3760 | } |
| 3761 | |
Huang Shijie | ec6e87e | 2013-03-15 11:01:00 +0800 | [diff] [blame] | 3762 | static inline bool is_full_id_nand(struct nand_flash_dev *type) |
| 3763 | { |
| 3764 | return type->id_len; |
| 3765 | } |
| 3766 | |
| 3767 | static bool find_full_id_nand(struct mtd_info *mtd, struct nand_chip *chip, |
| 3768 | struct nand_flash_dev *type, u8 *id_data, int *busw) |
| 3769 | { |
| 3770 | if (!strncmp(type->id, id_data, type->id_len)) { |
| 3771 | mtd->writesize = type->pagesize; |
| 3772 | mtd->erasesize = type->erasesize; |
| 3773 | mtd->oobsize = type->oobsize; |
| 3774 | |
Huang Shijie | 7db906b | 2013-09-25 14:58:11 +0800 | [diff] [blame] | 3775 | chip->bits_per_cell = nand_get_bits_per_cell(id_data[2]); |
Huang Shijie | ec6e87e | 2013-03-15 11:01:00 +0800 | [diff] [blame] | 3776 | chip->chipsize = (uint64_t)type->chipsize << 20; |
| 3777 | chip->options |= type->options; |
Huang Shijie | 5721934 | 2013-05-17 11:17:32 +0800 | [diff] [blame] | 3778 | chip->ecc_strength_ds = NAND_ECC_STRENGTH(type); |
| 3779 | chip->ecc_step_ds = NAND_ECC_STEP(type); |
Boris BREZILLON | 57a94e2 | 2014-09-22 20:11:50 +0200 | [diff] [blame] | 3780 | chip->onfi_timing_mode_default = |
| 3781 | type->onfi_timing_mode_default; |
Huang Shijie | ec6e87e | 2013-03-15 11:01:00 +0800 | [diff] [blame] | 3782 | |
| 3783 | *busw = type->options & NAND_BUSWIDTH_16; |
| 3784 | |
Cai Zhiyong | 092b6a1 | 2013-12-25 21:19:21 +0800 | [diff] [blame] | 3785 | if (!mtd->name) |
| 3786 | mtd->name = type->name; |
| 3787 | |
Huang Shijie | ec6e87e | 2013-03-15 11:01:00 +0800 | [diff] [blame] | 3788 | return true; |
| 3789 | } |
| 3790 | return false; |
| 3791 | } |
| 3792 | |
Brian Norris | 7e74c2d | 2012-09-24 20:40:49 -0700 | [diff] [blame] | 3793 | /* |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3794 | * Get the flash and manufacturer id and lookup if the type is supported. |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3795 | */ |
| 3796 | static struct nand_flash_dev *nand_get_flash_type(struct mtd_info *mtd, |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3797 | struct nand_chip *chip, |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 3798 | int *maf_id, int *dev_id, |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 3799 | struct nand_flash_dev *type) |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3800 | { |
Cai Zhiyong | bb77082 | 2013-12-25 20:11:15 +0800 | [diff] [blame] | 3801 | int busw; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3802 | int i, maf_idx; |
Kevin Cernekee | 426c457 | 2010-05-04 20:58:03 -0700 | [diff] [blame] | 3803 | u8 id_data[8]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3804 | |
| 3805 | /* Select the device */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3806 | chip->select_chip(mtd, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3807 | |
Karl Beldan | ef89a88 | 2008-09-15 14:37:29 +0200 | [diff] [blame] | 3808 | /* |
| 3809 | * Reset the chip, required by some chips (e.g. Micron MT29FxGxxxxx) |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3810 | * after power-up. |
Karl Beldan | ef89a88 | 2008-09-15 14:37:29 +0200 | [diff] [blame] | 3811 | */ |
| 3812 | chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1); |
| 3813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3814 | /* Send the command for reading device ID */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3815 | chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3816 | |
| 3817 | /* Read manufacturer and device IDs */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3818 | *maf_id = chip->read_byte(mtd); |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3819 | *dev_id = chip->read_byte(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3820 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3821 | /* |
| 3822 | * Try again to make sure, as some systems the bus-hold or other |
Ben Dooks | ed8165c | 2008-04-14 14:58:58 +0100 | [diff] [blame] | 3823 | * interface concerns can cause random data which looks like a |
| 3824 | * possibly credible NAND flash to appear. If the two results do |
| 3825 | * not match, ignore the device completely. |
| 3826 | */ |
| 3827 | |
| 3828 | chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1); |
| 3829 | |
Brian Norris | 4aef9b7 | 2012-09-24 20:40:48 -0700 | [diff] [blame] | 3830 | /* Read entire ID string */ |
| 3831 | for (i = 0; i < 8; i++) |
Kevin Cernekee | 426c457 | 2010-05-04 20:58:03 -0700 | [diff] [blame] | 3832 | id_data[i] = chip->read_byte(mtd); |
Ben Dooks | ed8165c | 2008-04-14 14:58:58 +0100 | [diff] [blame] | 3833 | |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3834 | if (id_data[0] != *maf_id || id_data[1] != *dev_id) { |
Ezequiel Garcia | 2017164 | 2013-11-25 08:30:31 -0300 | [diff] [blame] | 3835 | pr_info("second ID read did not match %02x,%02x against %02x,%02x\n", |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 3836 | *maf_id, *dev_id, id_data[0], id_data[1]); |
Ben Dooks | ed8165c | 2008-04-14 14:58:58 +0100 | [diff] [blame] | 3837 | return ERR_PTR(-ENODEV); |
| 3838 | } |
| 3839 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3840 | if (!type) |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 3841 | type = nand_flash_ids; |
| 3842 | |
Huang Shijie | ec6e87e | 2013-03-15 11:01:00 +0800 | [diff] [blame] | 3843 | for (; type->name != NULL; type++) { |
| 3844 | if (is_full_id_nand(type)) { |
| 3845 | if (find_full_id_nand(mtd, chip, type, id_data, &busw)) |
| 3846 | goto ident_done; |
| 3847 | } else if (*dev_id == type->dev_id) { |
Brian Norris | db5b09f | 2015-05-22 10:43:12 -0700 | [diff] [blame] | 3848 | break; |
Huang Shijie | ec6e87e | 2013-03-15 11:01:00 +0800 | [diff] [blame] | 3849 | } |
| 3850 | } |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 3851 | |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3852 | chip->onfi_version = 0; |
| 3853 | if (!type->name || !type->pagesize) { |
Masahiro Yamada | 35fc519 | 2014-04-09 16:26:26 +0900 | [diff] [blame] | 3854 | /* Check if the chip is ONFI compliant */ |
Brian Norris | 47450b3 | 2012-09-24 20:40:47 -0700 | [diff] [blame] | 3855 | if (nand_flash_detect_onfi(mtd, chip, &busw)) |
Florian Fainelli | 6fb277b | 2010-09-01 22:28:59 +0200 | [diff] [blame] | 3856 | goto ident_done; |
Huang Shijie | 9136181 | 2014-02-21 13:39:40 +0800 | [diff] [blame] | 3857 | |
| 3858 | /* Check if the chip is JEDEC compliant */ |
| 3859 | if (nand_flash_detect_jedec(mtd, chip, &busw)) |
| 3860 | goto ident_done; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3861 | } |
| 3862 | |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 3863 | if (!type->name) |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3864 | return ERR_PTR(-ENODEV); |
| 3865 | |
Thomas Gleixner | ba0251f | 2006-05-27 01:02:13 +0200 | [diff] [blame] | 3866 | if (!mtd->name) |
| 3867 | mtd->name = type->name; |
| 3868 | |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 3869 | chip->chipsize = (uint64_t)type->chipsize << 20; |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3870 | |
Boris BREZILLON | a7f5ba4 | 2015-10-01 16:58:27 +0200 | [diff] [blame] | 3871 | if (!type->pagesize) { |
Brian Norris | fc09bbc | 2012-09-24 20:40:50 -0700 | [diff] [blame] | 3872 | /* Decode parameters from extended ID */ |
| 3873 | nand_decode_ext_id(mtd, chip, id_data, &busw); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3874 | } else { |
Brian Norris | f23a481 | 2012-09-24 20:40:51 -0700 | [diff] [blame] | 3875 | nand_decode_id(mtd, chip, type, id_data, &busw); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3876 | } |
Brian Norris | bf7a01b | 2012-07-13 09:28:24 -0700 | [diff] [blame] | 3877 | /* Get chip options */ |
| 3878 | chip->options |= type->options; |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3879 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3880 | /* |
| 3881 | * Check if chip is not a Samsung device. Do not clear the |
| 3882 | * options for chips which do not have an extended id. |
Florian Fainelli | d1e1f4e | 2010-08-30 18:32:24 +0200 | [diff] [blame] | 3883 | */ |
| 3884 | if (*maf_id != NAND_MFR_SAMSUNG && !type->pagesize) |
| 3885 | chip->options &= ~NAND_SAMSUNG_LP_OPTIONS; |
| 3886 | ident_done: |
| 3887 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3888 | /* Try to identify manufacturer */ |
David Woodhouse | 9a90986 | 2006-07-15 13:26:18 +0100 | [diff] [blame] | 3889 | for (maf_idx = 0; nand_manuf_ids[maf_idx].id != 0x0; maf_idx++) { |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3890 | if (nand_manuf_ids[maf_idx].id == *maf_id) |
| 3891 | break; |
| 3892 | } |
| 3893 | |
Matthieu CASTET | 64b37b2 | 2012-11-06 11:51:44 +0100 | [diff] [blame] | 3894 | if (chip->options & NAND_BUSWIDTH_AUTO) { |
| 3895 | WARN_ON(chip->options & NAND_BUSWIDTH_16); |
| 3896 | chip->options |= busw; |
| 3897 | nand_set_defaults(chip, busw); |
| 3898 | } else if (busw != (chip->options & NAND_BUSWIDTH_16)) { |
| 3899 | /* |
| 3900 | * Check, if buswidth is correct. Hardware drivers should set |
| 3901 | * chip correct! |
| 3902 | */ |
Ezequiel Garcia | 2017164 | 2013-11-25 08:30:31 -0300 | [diff] [blame] | 3903 | pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n", |
| 3904 | *maf_id, *dev_id); |
| 3905 | pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, mtd->name); |
| 3906 | pr_warn("bus width %d instead %d bit\n", |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 3907 | (chip->options & NAND_BUSWIDTH_16) ? 16 : 8, |
| 3908 | busw ? 16 : 8); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3909 | return ERR_PTR(-EINVAL); |
| 3910 | } |
| 3911 | |
Brian Norris | 7e74c2d | 2012-09-24 20:40:49 -0700 | [diff] [blame] | 3912 | nand_decode_bbm_options(mtd, chip, id_data); |
| 3913 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3914 | /* Calculate the address shift from the page size */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3915 | chip->page_shift = ffs(mtd->writesize) - 1; |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3916 | /* Convert chipsize to number of pages per chip -1 */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3917 | chip->pagemask = (chip->chipsize >> chip->page_shift) - 1; |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3918 | |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3919 | chip->bbt_erase_shift = chip->phys_erase_shift = |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3920 | ffs(mtd->erasesize) - 1; |
Adrian Hunter | 69423d9 | 2008-12-10 13:37:21 +0000 | [diff] [blame] | 3921 | if (chip->chipsize & 0xffffffff) |
| 3922 | chip->chip_shift = ffs((unsigned)chip->chipsize) - 1; |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 3923 | else { |
| 3924 | chip->chip_shift = ffs((unsigned)(chip->chipsize >> 32)); |
| 3925 | chip->chip_shift += 32 - 1; |
| 3926 | } |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3927 | |
Artem Bityutskiy | 26d9be1 | 2011-04-28 20:26:59 +0300 | [diff] [blame] | 3928 | chip->badblockbits = 8; |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 3929 | chip->erase = single_erase; |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3930 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3931 | /* Do not replace user supplied command function! */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 3932 | if (mtd->writesize > 512 && chip->cmdfunc == nand_command) |
| 3933 | chip->cmdfunc = nand_command_lp; |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3934 | |
Ezequiel Garcia | 2017164 | 2013-11-25 08:30:31 -0300 | [diff] [blame] | 3935 | pr_info("device found, Manufacturer ID: 0x%02x, Chip ID: 0x%02x\n", |
| 3936 | *maf_id, *dev_id); |
Huang Shijie | ffdac6cd | 2014-02-21 13:39:41 +0800 | [diff] [blame] | 3937 | |
| 3938 | if (chip->onfi_version) |
| 3939 | pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, |
| 3940 | chip->onfi_params.model); |
| 3941 | else if (chip->jedec_version) |
| 3942 | pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, |
| 3943 | chip->jedec_params.model); |
| 3944 | else |
| 3945 | pr_info("%s %s\n", nand_manuf_ids[maf_idx].name, |
| 3946 | type->name); |
| 3947 | |
Rafał Miłecki | 3755a99 | 2014-10-21 00:01:04 +0200 | [diff] [blame] | 3948 | pr_info("%d MiB, %s, erase size: %d KiB, page size: %d, OOB size: %d\n", |
Huang Shijie | 3723e93 | 2013-09-25 14:58:14 +0800 | [diff] [blame] | 3949 | (int)(chip->chipsize >> 20), nand_is_slc(chip) ? "SLC" : "MLC", |
Rafał Miłecki | 3755a99 | 2014-10-21 00:01:04 +0200 | [diff] [blame] | 3950 | mtd->erasesize >> 10, mtd->writesize, mtd->oobsize); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3951 | return type; |
| 3952 | } |
| 3953 | |
Boris BREZILLON | 7194a29a | 2015-12-10 09:00:37 +0100 | [diff] [blame] | 3954 | static int nand_dt_init(struct nand_chip *chip) |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 3955 | { |
Boris BREZILLON | 7194a29a | 2015-12-10 09:00:37 +0100 | [diff] [blame] | 3956 | struct device_node *dn = nand_get_flash_node(chip); |
Rafał Miłecki | 7908245 | 2016-03-23 11:19:02 +0100 | [diff] [blame^] | 3957 | int ecc_mode, ecc_algo, ecc_strength, ecc_step; |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 3958 | |
Boris BREZILLON | 7194a29a | 2015-12-10 09:00:37 +0100 | [diff] [blame] | 3959 | if (!dn) |
| 3960 | return 0; |
| 3961 | |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 3962 | if (of_get_nand_bus_width(dn) == 16) |
| 3963 | chip->options |= NAND_BUSWIDTH_16; |
| 3964 | |
| 3965 | if (of_get_nand_on_flash_bbt(dn)) |
| 3966 | chip->bbt_options |= NAND_BBT_USE_FLASH; |
| 3967 | |
| 3968 | ecc_mode = of_get_nand_ecc_mode(dn); |
Rafał Miłecki | 7908245 | 2016-03-23 11:19:02 +0100 | [diff] [blame^] | 3969 | ecc_algo = of_get_nand_ecc_algo(dn); |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 3970 | ecc_strength = of_get_nand_ecc_strength(dn); |
| 3971 | ecc_step = of_get_nand_ecc_step_size(dn); |
| 3972 | |
| 3973 | if ((ecc_step >= 0 && !(ecc_strength >= 0)) || |
| 3974 | (!(ecc_step >= 0) && ecc_strength >= 0)) { |
| 3975 | pr_err("must set both strength and step size in DT\n"); |
| 3976 | return -EINVAL; |
| 3977 | } |
| 3978 | |
| 3979 | if (ecc_mode >= 0) |
| 3980 | chip->ecc.mode = ecc_mode; |
| 3981 | |
Rafał Miłecki | 7908245 | 2016-03-23 11:19:02 +0100 | [diff] [blame^] | 3982 | if (ecc_algo >= 0) |
| 3983 | chip->ecc.algo = ecc_algo; |
| 3984 | |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 3985 | if (ecc_strength >= 0) |
| 3986 | chip->ecc.strength = ecc_strength; |
| 3987 | |
| 3988 | if (ecc_step > 0) |
| 3989 | chip->ecc.size = ecc_step; |
| 3990 | |
| 3991 | return 0; |
| 3992 | } |
| 3993 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3994 | /** |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 3995 | * nand_scan_ident - [NAND Interface] Scan for the NAND device |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 3996 | * @mtd: MTD device structure |
| 3997 | * @maxchips: number of chips to scan for |
| 3998 | * @table: alternative NAND ID table |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 3999 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4000 | * This is the first phase of the normal nand_scan() function. It reads the |
| 4001 | * flash ID and sets up MTD fields accordingly. |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4002 | * |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4003 | * The mtd->owner field must be set to the module of the caller. |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4004 | */ |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 4005 | int nand_scan_ident(struct mtd_info *mtd, int maxchips, |
| 4006 | struct nand_flash_dev *table) |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4007 | { |
Cai Zhiyong | bb77082 | 2013-12-25 20:11:15 +0800 | [diff] [blame] | 4008 | int i, nand_maf_id, nand_dev_id; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 4009 | struct nand_chip *chip = mtd_to_nand(mtd); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4010 | struct nand_flash_dev *type; |
Brian Norris | 5844fee | 2015-01-23 00:22:27 -0800 | [diff] [blame] | 4011 | int ret; |
| 4012 | |
Boris BREZILLON | 7194a29a | 2015-12-10 09:00:37 +0100 | [diff] [blame] | 4013 | ret = nand_dt_init(chip); |
| 4014 | if (ret) |
| 4015 | return ret; |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4016 | |
Brian Norris | f7a8e38 | 2016-01-05 10:39:45 -0800 | [diff] [blame] | 4017 | if (!mtd->name && mtd->dev.parent) |
| 4018 | mtd->name = dev_name(mtd->dev.parent); |
| 4019 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4020 | /* Set the default functions */ |
Cai Zhiyong | bb77082 | 2013-12-25 20:11:15 +0800 | [diff] [blame] | 4021 | nand_set_defaults(chip, chip->options & NAND_BUSWIDTH_16); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4022 | |
| 4023 | /* Read the flash type */ |
Cai Zhiyong | bb77082 | 2013-12-25 20:11:15 +0800 | [diff] [blame] | 4024 | type = nand_get_flash_type(mtd, chip, &nand_maf_id, |
| 4025 | &nand_dev_id, table); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4026 | |
| 4027 | if (IS_ERR(type)) { |
Ben Dooks | b1c6e6d | 2009-11-02 18:12:33 +0000 | [diff] [blame] | 4028 | if (!(chip->options & NAND_SCAN_SILENT_NODEV)) |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 4029 | pr_warn("No NAND device found\n"); |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4030 | chip->select_chip(mtd, -1); |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4031 | return PTR_ERR(type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4032 | } |
| 4033 | |
Huang Shijie | 0730016 | 2012-11-09 16:23:45 +0800 | [diff] [blame] | 4034 | chip->select_chip(mtd, -1); |
| 4035 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4036 | /* Check for a chip array */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 4037 | for (i = 1; i < maxchips; i++) { |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4038 | chip->select_chip(mtd, i); |
Karl Beldan | ef89a88 | 2008-09-15 14:37:29 +0200 | [diff] [blame] | 4039 | /* See comment in nand_get_flash_type for reset */ |
| 4040 | chip->cmdfunc(mtd, NAND_CMD_RESET, -1, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4041 | /* Send the command for reading device ID */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4042 | chip->cmdfunc(mtd, NAND_CMD_READID, 0x00, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4043 | /* Read manufacturer and device IDs */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4044 | if (nand_maf_id != chip->read_byte(mtd) || |
Huang Shijie | 0730016 | 2012-11-09 16:23:45 +0800 | [diff] [blame] | 4045 | nand_dev_id != chip->read_byte(mtd)) { |
| 4046 | chip->select_chip(mtd, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | break; |
Huang Shijie | 0730016 | 2012-11-09 16:23:45 +0800 | [diff] [blame] | 4048 | } |
| 4049 | chip->select_chip(mtd, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4050 | } |
| 4051 | if (i > 1) |
Ezequiel Garcia | 2017164 | 2013-11-25 08:30:31 -0300 | [diff] [blame] | 4052 | pr_info("%d chips detected\n", i); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4054 | /* Store the number of chips and calc total size for mtd */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4055 | chip->numchips = i; |
| 4056 | mtd->size = i * chip->chipsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4057 | |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4058 | return 0; |
| 4059 | } |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 4060 | EXPORT_SYMBOL(nand_scan_ident); |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4061 | |
Ezequiel Garcia | 67a9ad9 | 2014-05-14 14:58:06 -0300 | [diff] [blame] | 4062 | /* |
| 4063 | * Check if the chip configuration meet the datasheet requirements. |
| 4064 | |
| 4065 | * If our configuration corrects A bits per B bytes and the minimum |
| 4066 | * required correction level is X bits per Y bytes, then we must ensure |
| 4067 | * both of the following are true: |
| 4068 | * |
| 4069 | * (1) A / B >= X / Y |
| 4070 | * (2) A >= X |
| 4071 | * |
| 4072 | * Requirement (1) ensures we can correct for the required bitflip density. |
| 4073 | * Requirement (2) ensures we can correct even when all bitflips are clumped |
| 4074 | * in the same sector. |
| 4075 | */ |
| 4076 | static bool nand_ecc_strength_good(struct mtd_info *mtd) |
| 4077 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 4078 | struct nand_chip *chip = mtd_to_nand(mtd); |
Ezequiel Garcia | 67a9ad9 | 2014-05-14 14:58:06 -0300 | [diff] [blame] | 4079 | struct nand_ecc_ctrl *ecc = &chip->ecc; |
| 4080 | int corr, ds_corr; |
| 4081 | |
| 4082 | if (ecc->size == 0 || chip->ecc_step_ds == 0) |
| 4083 | /* Not enough information */ |
| 4084 | return true; |
| 4085 | |
| 4086 | /* |
| 4087 | * We get the number of corrected bits per page to compare |
| 4088 | * the correction density. |
| 4089 | */ |
| 4090 | corr = (mtd->writesize * ecc->strength) / ecc->size; |
| 4091 | ds_corr = (mtd->writesize * chip->ecc_strength_ds) / chip->ecc_step_ds; |
| 4092 | |
| 4093 | return corr >= ds_corr && ecc->strength >= chip->ecc_strength_ds; |
| 4094 | } |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4095 | |
| 4096 | /** |
| 4097 | * nand_scan_tail - [NAND Interface] Scan for the NAND device |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4098 | * @mtd: MTD device structure |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4099 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4100 | * This is the second phase of the normal nand_scan() function. It fills out |
| 4101 | * all the uninitialized function pointers with the defaults and scans for a |
| 4102 | * bad block table if appropriate. |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4103 | */ |
| 4104 | int nand_scan_tail(struct mtd_info *mtd) |
| 4105 | { |
| 4106 | int i; |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 4107 | struct nand_chip *chip = mtd_to_nand(mtd); |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4108 | struct nand_ecc_ctrl *ecc = &chip->ecc; |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 4109 | struct nand_buffers *nbuf; |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4110 | |
Brian Norris | e2414f4 | 2012-02-06 13:44:00 -0800 | [diff] [blame] | 4111 | /* New bad blocks should be marked in OOB, flash-based BBT, or both */ |
| 4112 | BUG_ON((chip->bbt_options & NAND_BBT_NO_OOB_BBM) && |
| 4113 | !(chip->bbt_options & NAND_BBT_USE_FLASH)); |
| 4114 | |
Huang Shijie | f02ea4e | 2014-01-13 14:27:12 +0800 | [diff] [blame] | 4115 | if (!(chip->options & NAND_OWN_BUFFERS)) { |
| 4116 | nbuf = kzalloc(sizeof(*nbuf) + mtd->writesize |
| 4117 | + mtd->oobsize * 3, GFP_KERNEL); |
| 4118 | if (!nbuf) |
| 4119 | return -ENOMEM; |
| 4120 | nbuf->ecccalc = (uint8_t *)(nbuf + 1); |
| 4121 | nbuf->ecccode = nbuf->ecccalc + mtd->oobsize; |
| 4122 | nbuf->databuf = nbuf->ecccode + mtd->oobsize; |
| 4123 | |
| 4124 | chip->buffers = nbuf; |
| 4125 | } else { |
| 4126 | if (!chip->buffers) |
| 4127 | return -ENOMEM; |
| 4128 | } |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 4129 | |
David Woodhouse | 7dcdcbef | 2006-10-21 17:09:53 +0100 | [diff] [blame] | 4130 | /* Set the internal oob buffer location, just after the page data */ |
David Woodhouse | 784f4d5 | 2006-10-22 01:47:45 +0100 | [diff] [blame] | 4131 | chip->oob_poi = chip->buffers->databuf + mtd->writesize; |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4132 | |
| 4133 | /* |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4134 | * If no default placement scheme is given, select an appropriate one. |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4135 | */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4136 | if (!ecc->layout && (ecc->mode != NAND_ECC_SOFT_BCH)) { |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4137 | switch (mtd->oobsize) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4138 | case 8: |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4139 | ecc->layout = &nand_oob_8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4140 | break; |
| 4141 | case 16: |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4142 | ecc->layout = &nand_oob_16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4143 | break; |
| 4144 | case 64: |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4145 | ecc->layout = &nand_oob_64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4146 | break; |
Thomas Gleixner | 81ec536 | 2007-12-12 17:27:03 +0100 | [diff] [blame] | 4147 | case 128: |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4148 | ecc->layout = &nand_oob_128; |
Thomas Gleixner | 81ec536 | 2007-12-12 17:27:03 +0100 | [diff] [blame] | 4149 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4150 | default: |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 4151 | pr_warn("No oob scheme defined for oobsize %d\n", |
| 4152 | mtd->oobsize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4153 | BUG(); |
| 4154 | } |
| 4155 | } |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4156 | |
David Woodhouse | 956e944 | 2006-09-25 17:12:39 +0100 | [diff] [blame] | 4157 | if (!chip->write_page) |
| 4158 | chip->write_page = nand_write_page; |
| 4159 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4160 | /* |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4161 | * Check ECC mode, default to software if 3byte/512byte hardware ECC is |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4162 | * selected and we have 256 byte pagesize fallback to software ECC |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 4163 | */ |
David Woodhouse | 956e944 | 2006-09-25 17:12:39 +0100 | [diff] [blame] | 4164 | |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4165 | switch (ecc->mode) { |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 4166 | case NAND_ECC_HW_OOB_FIRST: |
| 4167 | /* Similar to NAND_ECC_HW, but a separate read_page handle */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4168 | if (!ecc->calculate || !ecc->correct || !ecc->hwctl) { |
Rafał Miłecki | 2ac63d9 | 2014-08-19 13:55:34 +0200 | [diff] [blame] | 4169 | pr_warn("No ECC functions supplied; hardware ECC not possible\n"); |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 4170 | BUG(); |
| 4171 | } |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4172 | if (!ecc->read_page) |
| 4173 | ecc->read_page = nand_read_page_hwecc_oob_first; |
Sneha Narnakaje | 6e0cb13 | 2009-09-18 12:51:47 -0700 | [diff] [blame] | 4174 | |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 4175 | case NAND_ECC_HW: |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4176 | /* Use standard hwecc read page function? */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4177 | if (!ecc->read_page) |
| 4178 | ecc->read_page = nand_read_page_hwecc; |
| 4179 | if (!ecc->write_page) |
| 4180 | ecc->write_page = nand_write_page_hwecc; |
| 4181 | if (!ecc->read_page_raw) |
| 4182 | ecc->read_page_raw = nand_read_page_raw; |
| 4183 | if (!ecc->write_page_raw) |
| 4184 | ecc->write_page_raw = nand_write_page_raw; |
| 4185 | if (!ecc->read_oob) |
| 4186 | ecc->read_oob = nand_read_oob_std; |
| 4187 | if (!ecc->write_oob) |
| 4188 | ecc->write_oob = nand_write_oob_std; |
| 4189 | if (!ecc->read_subpage) |
| 4190 | ecc->read_subpage = nand_read_subpage; |
Helmut Schaa | 44991b3 | 2014-04-09 11:13:24 +0200 | [diff] [blame] | 4191 | if (!ecc->write_subpage && ecc->hwctl && ecc->calculate) |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4192 | ecc->write_subpage = nand_write_subpage_hwecc; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 4193 | |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 4194 | case NAND_ECC_HW_SYNDROME: |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4195 | if ((!ecc->calculate || !ecc->correct || !ecc->hwctl) && |
| 4196 | (!ecc->read_page || |
| 4197 | ecc->read_page == nand_read_page_hwecc || |
| 4198 | !ecc->write_page || |
| 4199 | ecc->write_page == nand_write_page_hwecc)) { |
Rafał Miłecki | 2ac63d9 | 2014-08-19 13:55:34 +0200 | [diff] [blame] | 4200 | pr_warn("No ECC functions supplied; hardware ECC not possible\n"); |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 4201 | BUG(); |
| 4202 | } |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4203 | /* Use standard syndrome read/write page function? */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4204 | if (!ecc->read_page) |
| 4205 | ecc->read_page = nand_read_page_syndrome; |
| 4206 | if (!ecc->write_page) |
| 4207 | ecc->write_page = nand_write_page_syndrome; |
| 4208 | if (!ecc->read_page_raw) |
| 4209 | ecc->read_page_raw = nand_read_page_raw_syndrome; |
| 4210 | if (!ecc->write_page_raw) |
| 4211 | ecc->write_page_raw = nand_write_page_raw_syndrome; |
| 4212 | if (!ecc->read_oob) |
| 4213 | ecc->read_oob = nand_read_oob_syndrome; |
| 4214 | if (!ecc->write_oob) |
| 4215 | ecc->write_oob = nand_write_oob_syndrome; |
Thomas Gleixner | f5bbdac | 2006-05-25 10:07:16 +0200 | [diff] [blame] | 4216 | |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4217 | if (mtd->writesize >= ecc->size) { |
| 4218 | if (!ecc->strength) { |
Mike Dunn | e2788c9 | 2012-04-25 12:06:10 -0700 | [diff] [blame] | 4219 | pr_warn("Driver must set ecc.strength when using hardware ECC\n"); |
| 4220 | BUG(); |
| 4221 | } |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 4222 | break; |
Mike Dunn | e2788c9 | 2012-04-25 12:06:10 -0700 | [diff] [blame] | 4223 | } |
Rafał Miłecki | 2ac63d9 | 2014-08-19 13:55:34 +0200 | [diff] [blame] | 4224 | pr_warn("%d byte HW ECC not possible on %d byte page size, fallback to SW ECC\n", |
| 4225 | ecc->size, mtd->writesize); |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4226 | ecc->mode = NAND_ECC_SOFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4227 | |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 4228 | case NAND_ECC_SOFT: |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4229 | ecc->calculate = nand_calculate_ecc; |
| 4230 | ecc->correct = nand_correct_data; |
| 4231 | ecc->read_page = nand_read_page_swecc; |
| 4232 | ecc->read_subpage = nand_read_subpage; |
| 4233 | ecc->write_page = nand_write_page_swecc; |
| 4234 | ecc->read_page_raw = nand_read_page_raw; |
| 4235 | ecc->write_page_raw = nand_write_page_raw; |
| 4236 | ecc->read_oob = nand_read_oob_std; |
| 4237 | ecc->write_oob = nand_write_oob_std; |
| 4238 | if (!ecc->size) |
| 4239 | ecc->size = 256; |
| 4240 | ecc->bytes = 3; |
| 4241 | ecc->strength = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4242 | break; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4243 | |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 4244 | case NAND_ECC_SOFT_BCH: |
| 4245 | if (!mtd_nand_has_bch()) { |
Erico Nunes | 148256f | 2014-03-11 01:31:26 -0300 | [diff] [blame] | 4246 | pr_warn("CONFIG_MTD_NAND_ECC_BCH not enabled\n"); |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 4247 | BUG(); |
| 4248 | } |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4249 | ecc->calculate = nand_bch_calculate_ecc; |
| 4250 | ecc->correct = nand_bch_correct_data; |
| 4251 | ecc->read_page = nand_read_page_swecc; |
| 4252 | ecc->read_subpage = nand_read_subpage; |
| 4253 | ecc->write_page = nand_write_page_swecc; |
| 4254 | ecc->read_page_raw = nand_read_page_raw; |
| 4255 | ecc->write_page_raw = nand_write_page_raw; |
| 4256 | ecc->read_oob = nand_read_oob_std; |
| 4257 | ecc->write_oob = nand_write_oob_std; |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 4258 | /* |
Aaron Sierra | e0377cd | 2015-01-14 17:41:31 -0600 | [diff] [blame] | 4259 | * Board driver should supply ecc.size and ecc.strength values |
| 4260 | * to select how many bits are correctable. Otherwise, default |
| 4261 | * to 4 bits for large page devices. |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 4262 | */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4263 | if (!ecc->size && (mtd->oobsize >= 64)) { |
| 4264 | ecc->size = 512; |
Aaron Sierra | e0377cd | 2015-01-14 17:41:31 -0600 | [diff] [blame] | 4265 | ecc->strength = 4; |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 4266 | } |
Aaron Sierra | e0377cd | 2015-01-14 17:41:31 -0600 | [diff] [blame] | 4267 | |
| 4268 | /* See nand_bch_init() for details. */ |
Boris BREZILLON | a8c65d5 | 2016-03-07 10:46:54 +0100 | [diff] [blame] | 4269 | ecc->bytes = 0; |
| 4270 | ecc->priv = nand_bch_init(mtd); |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4271 | if (!ecc->priv) { |
Brian Norris | 9a4d4d6 | 2011-07-19 10:06:07 -0700 | [diff] [blame] | 4272 | pr_warn("BCH ECC initialization failed!\n"); |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 4273 | BUG(); |
| 4274 | } |
| 4275 | break; |
| 4276 | |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4277 | case NAND_ECC_NONE: |
Rafał Miłecki | 2ac63d9 | 2014-08-19 13:55:34 +0200 | [diff] [blame] | 4278 | pr_warn("NAND_ECC_NONE selected by board driver. This is not recommended!\n"); |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4279 | ecc->read_page = nand_read_page_raw; |
| 4280 | ecc->write_page = nand_write_page_raw; |
| 4281 | ecc->read_oob = nand_read_oob_std; |
| 4282 | ecc->read_page_raw = nand_read_page_raw; |
| 4283 | ecc->write_page_raw = nand_write_page_raw; |
| 4284 | ecc->write_oob = nand_write_oob_std; |
| 4285 | ecc->size = mtd->writesize; |
| 4286 | ecc->bytes = 0; |
| 4287 | ecc->strength = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | break; |
David Woodhouse | 956e944 | 2006-09-25 17:12:39 +0100 | [diff] [blame] | 4289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4290 | default: |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4291 | pr_warn("Invalid NAND_ECC_MODE %d\n", ecc->mode); |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4292 | BUG(); |
| 4293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4294 | |
Brian Norris | 9ce244b | 2011-08-30 18:45:37 -0700 | [diff] [blame] | 4295 | /* For many systems, the standard OOB write also works for raw */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4296 | if (!ecc->read_oob_raw) |
| 4297 | ecc->read_oob_raw = ecc->read_oob; |
| 4298 | if (!ecc->write_oob_raw) |
| 4299 | ecc->write_oob_raw = ecc->write_oob; |
Brian Norris | 9ce244b | 2011-08-30 18:45:37 -0700 | [diff] [blame] | 4300 | |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4301 | /* |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 4302 | * The number of bytes available for a client to place data into |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4303 | * the out of band area. |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 4304 | */ |
Boris BREZILLON | f5b8aa7 | 2016-03-07 10:46:51 +0100 | [diff] [blame] | 4305 | mtd->oobavail = 0; |
| 4306 | if (ecc->layout) { |
| 4307 | for (i = 0; ecc->layout->oobfree[i].length; i++) |
| 4308 | mtd->oobavail += ecc->layout->oobfree[i].length; |
| 4309 | } |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 4310 | |
Thomas Petazzoni | 54c39e9 | 2014-07-02 15:16:32 +0200 | [diff] [blame] | 4311 | /* ECC sanity check: warn if it's too weak */ |
| 4312 | if (!nand_ecc_strength_good(mtd)) |
| 4313 | pr_warn("WARNING: %s: the ECC used on your system is too weak compared to the one required by the NAND chip\n", |
| 4314 | mtd->name); |
Ezequiel Garcia | 67a9ad9 | 2014-05-14 14:58:06 -0300 | [diff] [blame] | 4315 | |
Thomas Gleixner | 5bd34c0 | 2006-05-27 22:16:10 +0200 | [diff] [blame] | 4316 | /* |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4317 | * Set the number of read / write steps for one page depending on ECC |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4318 | * mode. |
Thomas Gleixner | 7aa65bf | 2006-05-23 11:54:38 +0200 | [diff] [blame] | 4319 | */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4320 | ecc->steps = mtd->writesize / ecc->size; |
| 4321 | if (ecc->steps * ecc->size != mtd->writesize) { |
Brian Norris | 9a4d4d6 | 2011-07-19 10:06:07 -0700 | [diff] [blame] | 4322 | pr_warn("Invalid ECC parameters\n"); |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 4323 | BUG(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4324 | } |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4325 | ecc->total = ecc->steps * ecc->bytes; |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4326 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4327 | /* Allow subpage writes up to ecc.steps. Not possible for MLC flash */ |
Huang Shijie | 1d0ed69 | 2013-09-25 14:58:10 +0800 | [diff] [blame] | 4328 | if (!(chip->options & NAND_NO_SUBPAGE_WRITE) && nand_is_slc(chip)) { |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4329 | switch (ecc->steps) { |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 4330 | case 2: |
| 4331 | mtd->subpage_sft = 1; |
| 4332 | break; |
| 4333 | case 4: |
| 4334 | case 8: |
Thomas Gleixner | 81ec536 | 2007-12-12 17:27:03 +0100 | [diff] [blame] | 4335 | case 16: |
Thomas Gleixner | 29072b9 | 2006-09-28 15:38:36 +0200 | [diff] [blame] | 4336 | mtd->subpage_sft = 2; |
| 4337 | break; |
| 4338 | } |
| 4339 | } |
| 4340 | chip->subpagesize = mtd->writesize >> mtd->subpage_sft; |
| 4341 | |
Thomas Gleixner | 04bbd0e | 2006-05-25 09:45:29 +0200 | [diff] [blame] | 4342 | /* Initialize state */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4343 | chip->state = FL_READY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4345 | /* Invalidate the pagebuffer reference */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4346 | chip->pagebuf = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4347 | |
Jeff Westfahl | a5ff4f1 | 2012-08-13 16:35:30 -0500 | [diff] [blame] | 4348 | /* Large page NAND with SOFT_ECC should support subpage reads */ |
Ron Lee | 4007e2d | 2014-04-25 15:01:35 +0930 | [diff] [blame] | 4349 | switch (ecc->mode) { |
| 4350 | case NAND_ECC_SOFT: |
| 4351 | case NAND_ECC_SOFT_BCH: |
| 4352 | if (chip->page_shift > 9) |
| 4353 | chip->options |= NAND_SUBPAGE_READ; |
| 4354 | break; |
| 4355 | |
| 4356 | default: |
| 4357 | break; |
| 4358 | } |
Jeff Westfahl | a5ff4f1 | 2012-08-13 16:35:30 -0500 | [diff] [blame] | 4359 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4360 | /* Fill in remaining MTD driver data */ |
Huang Shijie | 963d1c2 | 2013-09-25 14:58:21 +0800 | [diff] [blame] | 4361 | mtd->type = nand_is_slc(chip) ? MTD_NANDFLASH : MTD_MLCNANDFLASH; |
Maxim Levitsky | 93edbad | 2010-02-22 20:39:40 +0200 | [diff] [blame] | 4362 | mtd->flags = (chip->options & NAND_ROM) ? MTD_CAP_ROM : |
| 4363 | MTD_CAP_NANDFLASH; |
Artem Bityutskiy | 3c3c10b | 2012-01-30 14:58:32 +0200 | [diff] [blame] | 4364 | mtd->_erase = nand_erase; |
| 4365 | mtd->_point = NULL; |
| 4366 | mtd->_unpoint = NULL; |
| 4367 | mtd->_read = nand_read; |
| 4368 | mtd->_write = nand_write; |
| 4369 | mtd->_panic_write = panic_nand_write; |
| 4370 | mtd->_read_oob = nand_read_oob; |
| 4371 | mtd->_write_oob = nand_write_oob; |
| 4372 | mtd->_sync = nand_sync; |
| 4373 | mtd->_lock = NULL; |
| 4374 | mtd->_unlock = NULL; |
| 4375 | mtd->_suspend = nand_suspend; |
| 4376 | mtd->_resume = nand_resume; |
Scott Branden | 72ea403 | 2014-11-20 11:18:05 -0800 | [diff] [blame] | 4377 | mtd->_reboot = nand_shutdown; |
Ezequiel Garcia | 8471bb7 | 2014-05-21 19:06:12 -0300 | [diff] [blame] | 4378 | mtd->_block_isreserved = nand_block_isreserved; |
Artem Bityutskiy | 3c3c10b | 2012-01-30 14:58:32 +0200 | [diff] [blame] | 4379 | mtd->_block_isbad = nand_block_isbad; |
| 4380 | mtd->_block_markbad = nand_block_markbad; |
Anatolij Gustschin | cbcab65 | 2010-12-16 23:42:16 +0100 | [diff] [blame] | 4381 | mtd->writebufsize = mtd->writesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4382 | |
Mike Dunn | 6a918ba | 2012-03-11 14:21:11 -0700 | [diff] [blame] | 4383 | /* propagate ecc info to mtd_info */ |
Huang Shijie | 97de79e0 | 2013-10-18 14:20:53 +0800 | [diff] [blame] | 4384 | mtd->ecclayout = ecc->layout; |
| 4385 | mtd->ecc_strength = ecc->strength; |
| 4386 | mtd->ecc_step_size = ecc->size; |
Shmulik Ladkani | ea3b2ea | 2012-06-08 18:29:06 +0300 | [diff] [blame] | 4387 | /* |
| 4388 | * Initialize bitflip_threshold to its default prior scan_bbt() call. |
| 4389 | * scan_bbt() might invoke mtd_read(), thus bitflip_threshold must be |
| 4390 | * properly set. |
| 4391 | */ |
| 4392 | if (!mtd->bitflip_threshold) |
Brian Norris | 240181f | 2015-01-12 12:51:29 -0800 | [diff] [blame] | 4393 | mtd->bitflip_threshold = DIV_ROUND_UP(mtd->ecc_strength * 3, 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4394 | |
Thomas Gleixner | 0040bf3 | 2005-02-09 12:20:00 +0000 | [diff] [blame] | 4395 | /* Check, if we should skip the bad block table scan */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4396 | if (chip->options & NAND_SKIP_BBTSCAN) |
Thomas Gleixner | 0040bf3 | 2005-02-09 12:20:00 +0000 | [diff] [blame] | 4397 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | |
| 4399 | /* Build bad block table */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4400 | return chip->scan_bbt(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4401 | } |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 4402 | EXPORT_SYMBOL(nand_scan_tail); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4403 | |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4404 | /* |
| 4405 | * is_module_text_address() isn't exported, and it's mostly a pointless |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 4406 | * test if this is a module _anyway_ -- they'd have to try _really_ hard |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4407 | * to call us from in-kernel code if the core NAND support is modular. |
| 4408 | */ |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4409 | #ifdef MODULE |
| 4410 | #define caller_is_module() (1) |
| 4411 | #else |
| 4412 | #define caller_is_module() \ |
Rusty Russell | a6e6abd | 2009-03-31 13:05:31 -0600 | [diff] [blame] | 4413 | is_module_text_address((unsigned long)__builtin_return_address(0)) |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4414 | #endif |
| 4415 | |
| 4416 | /** |
| 4417 | * nand_scan - [NAND Interface] Scan for the NAND device |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4418 | * @mtd: MTD device structure |
| 4419 | * @maxchips: number of chips to scan for |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4420 | * |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4421 | * This fills out all the uninitialized function pointers with the defaults. |
| 4422 | * The flash ID is read and the mtd/chip structures are filled with the |
| 4423 | * appropriate values. The mtd->owner field must be set to the module of the |
| 4424 | * caller. |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4425 | */ |
| 4426 | int nand_scan(struct mtd_info *mtd, int maxchips) |
| 4427 | { |
| 4428 | int ret; |
| 4429 | |
| 4430 | /* Many callers got this wrong, so check for it for a while... */ |
| 4431 | if (!mtd->owner && caller_is_module()) { |
Brian Norris | d037021 | 2011-07-19 10:06:08 -0700 | [diff] [blame] | 4432 | pr_crit("%s called with NULL mtd->owner!\n", __func__); |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4433 | BUG(); |
| 4434 | } |
| 4435 | |
David Woodhouse | 5e81e88 | 2010-02-26 18:32:56 +0000 | [diff] [blame] | 4436 | ret = nand_scan_ident(mtd, maxchips, NULL); |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4437 | if (!ret) |
| 4438 | ret = nand_scan_tail(mtd); |
| 4439 | return ret; |
| 4440 | } |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 4441 | EXPORT_SYMBOL(nand_scan); |
David Woodhouse | 3b85c32 | 2006-09-25 17:06:53 +0100 | [diff] [blame] | 4442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4443 | /** |
Thomas Gleixner | 61b03bd | 2005-11-07 11:15:49 +0000 | [diff] [blame] | 4444 | * nand_release - [NAND Interface] Free resources held by the NAND device |
Brian Norris | 8b6e50c | 2011-05-25 14:59:01 -0700 | [diff] [blame] | 4445 | * @mtd: MTD device structure |
| 4446 | */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 4447 | void nand_release(struct mtd_info *mtd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4448 | { |
Boris BREZILLON | 862eba5 | 2015-12-01 12:03:03 +0100 | [diff] [blame] | 4449 | struct nand_chip *chip = mtd_to_nand(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4450 | |
Ivan Djelic | 193bd40 | 2011-03-11 11:05:33 +0100 | [diff] [blame] | 4451 | if (chip->ecc.mode == NAND_ECC_SOFT_BCH) |
| 4452 | nand_bch_free((struct nand_bch_control *)chip->ecc.priv); |
| 4453 | |
Jamie Iles | 5ffcaf3 | 2011-05-23 10:22:46 +0100 | [diff] [blame] | 4454 | mtd_device_unregister(mtd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4455 | |
Jesper Juhl | fa67164 | 2005-11-07 01:01:27 -0800 | [diff] [blame] | 4456 | /* Free bad block table memory */ |
Thomas Gleixner | ace4dfe | 2006-05-24 12:07:37 +0200 | [diff] [blame] | 4457 | kfree(chip->bbt); |
David Woodhouse | 4bf63fc | 2006-09-25 17:08:04 +0100 | [diff] [blame] | 4458 | if (!(chip->options & NAND_OWN_BUFFERS)) |
| 4459 | kfree(chip->buffers); |
Brian Norris | 58373ff | 2010-07-15 12:15:44 -0700 | [diff] [blame] | 4460 | |
| 4461 | /* Free bad block descriptor memory */ |
| 4462 | if (chip->badblock_pattern && chip->badblock_pattern->options |
| 4463 | & NAND_BBT_DYNAMICSTRUCT) |
| 4464 | kfree(chip->badblock_pattern); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4465 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 4466 | EXPORT_SYMBOL_GPL(nand_release); |
Richard Purdie | 8fe833c | 2006-03-31 02:31:14 -0800 | [diff] [blame] | 4467 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 4468 | MODULE_LICENSE("GPL"); |
Florian Fainelli | 7351d3a | 2010-09-07 13:23:45 +0200 | [diff] [blame] | 4469 | MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>"); |
| 4470 | MODULE_AUTHOR("Thomas Gleixner <tglx@linutronix.de>"); |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 4471 | MODULE_DESCRIPTION("Generic NAND flash driver code"); |