Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1 | /* |
| 2 | * NAND Flash Controller Device Driver |
| 3 | * Copyright © 2009-2010, Intel Corporation and its suppliers. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms and conditions of the GNU General Public License, |
| 7 | * version 2, as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 17 | * |
| 18 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 19 | #include <linux/interrupt.h> |
| 20 | #include <linux/delay.h> |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 21 | #include <linux/dma-mapping.h> |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 22 | #include <linux/wait.h> |
| 23 | #include <linux/mutex.h> |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 24 | #include <linux/mtd/mtd.h> |
| 25 | #include <linux/module.h> |
| 26 | |
| 27 | #include "denali.h" |
| 28 | |
| 29 | MODULE_LICENSE("GPL"); |
| 30 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 31 | /* |
| 32 | * We define a module parameter that allows the user to override |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 33 | * the hardware and decide what timing mode should be used. |
| 34 | */ |
| 35 | #define NAND_DEFAULT_TIMINGS -1 |
| 36 | |
| 37 | static int onfi_timing_mode = NAND_DEFAULT_TIMINGS; |
| 38 | module_param(onfi_timing_mode, int, S_IRUGO); |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 39 | MODULE_PARM_DESC(onfi_timing_mode, |
| 40 | "Overrides default ONFI setting. -1 indicates use default timings"); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 41 | |
| 42 | #define DENALI_NAND_NAME "denali-nand" |
| 43 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 44 | /* |
| 45 | * We define a macro here that combines all interrupts this driver uses into |
| 46 | * a single constant value, for convenience. |
| 47 | */ |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 48 | #define DENALI_IRQ_ALL (INTR__DMA_CMD_COMP | \ |
| 49 | INTR__ECC_TRANSACTION_DONE | \ |
| 50 | INTR__ECC_ERR | \ |
| 51 | INTR__PROGRAM_FAIL | \ |
| 52 | INTR__LOAD_COMP | \ |
| 53 | INTR__PROGRAM_COMP | \ |
| 54 | INTR__TIME_OUT | \ |
| 55 | INTR__ERASE_FAIL | \ |
| 56 | INTR__RST_COMP | \ |
| 57 | INTR__ERASE_COMP) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 58 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 59 | /* |
| 60 | * indicates whether or not the internal value for the flash bank is |
| 61 | * valid or not |
| 62 | */ |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 63 | #define CHIP_SELECT_INVALID -1 |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 64 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 65 | /* |
| 66 | * This macro divides two integers and rounds fractional values up |
| 67 | * to the nearest integer value. |
| 68 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 69 | #define CEIL_DIV(X, Y) (((X)%(Y)) ? ((X)/(Y)+1) : ((X)/(Y))) |
| 70 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 71 | /* |
| 72 | * this macro allows us to convert from an MTD structure to our own |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 73 | * device context (denali) structure. |
| 74 | */ |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 75 | static inline struct denali_nand_info *mtd_to_denali(struct mtd_info *mtd) |
| 76 | { |
| 77 | return container_of(mtd_to_nand(mtd), struct denali_nand_info, nand); |
| 78 | } |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 79 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 80 | /* |
| 81 | * These constants are defined by the driver to enable common driver |
| 82 | * configuration options. |
| 83 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 84 | #define SPARE_ACCESS 0x41 |
| 85 | #define MAIN_ACCESS 0x42 |
| 86 | #define MAIN_SPARE_ACCESS 0x43 |
| 87 | |
| 88 | #define DENALI_READ 0 |
| 89 | #define DENALI_WRITE 0x100 |
| 90 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 91 | /* |
| 92 | * this is a helper macro that allows us to |
| 93 | * format the bank into the proper bits for the controller |
| 94 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 95 | #define BANK(x) ((x) << 24) |
| 96 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 97 | /* forward declarations */ |
| 98 | static void clear_interrupts(struct denali_nand_info *denali); |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 99 | static uint32_t wait_for_irq(struct denali_nand_info *denali, |
| 100 | uint32_t irq_mask); |
| 101 | static void denali_irq_enable(struct denali_nand_info *denali, |
| 102 | uint32_t int_mask); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 103 | static uint32_t read_interrupt_status(struct denali_nand_info *denali); |
| 104 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 105 | /* |
| 106 | * Certain operations for the denali NAND controller use an indexed mode to |
| 107 | * read/write data. The operation is performed by writing the address value |
| 108 | * of the command to the device memory followed by the data. This function |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 109 | * abstracts this common operation. |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 110 | */ |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 111 | static void index_addr(struct denali_nand_info *denali, |
| 112 | uint32_t address, uint32_t data) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 113 | { |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 114 | iowrite32(address, denali->flash_mem); |
| 115 | iowrite32(data, denali->flash_mem + 0x10); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* Perform an indexed read of the device */ |
| 119 | static void index_addr_read_data(struct denali_nand_info *denali, |
| 120 | uint32_t address, uint32_t *pdata) |
| 121 | { |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 122 | iowrite32(address, denali->flash_mem); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 123 | *pdata = ioread32(denali->flash_mem + 0x10); |
| 124 | } |
| 125 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 126 | /* |
| 127 | * We need to buffer some data for some of the NAND core routines. |
| 128 | * The operations manage buffering that data. |
| 129 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 130 | static void reset_buf(struct denali_nand_info *denali) |
| 131 | { |
| 132 | denali->buf.head = denali->buf.tail = 0; |
| 133 | } |
| 134 | |
| 135 | static void write_byte_to_buf(struct denali_nand_info *denali, uint8_t byte) |
| 136 | { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 137 | denali->buf.buf[denali->buf.tail++] = byte; |
| 138 | } |
| 139 | |
| 140 | /* reads the status of the device */ |
| 141 | static void read_status(struct denali_nand_info *denali) |
| 142 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 143 | uint32_t cmd; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 144 | |
| 145 | /* initialize the data buffer to store status */ |
| 146 | reset_buf(denali); |
| 147 | |
Chuanxiao Dong | f0bc0c7 | 2010-08-11 17:14:59 +0800 | [diff] [blame] | 148 | cmd = ioread32(denali->flash_reg + WRITE_PROTECT); |
| 149 | if (cmd) |
| 150 | write_byte_to_buf(denali, NAND_STATUS_WP); |
| 151 | else |
| 152 | write_byte_to_buf(denali, 0); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | /* resets a specific device connected to the core */ |
| 156 | static void reset_bank(struct denali_nand_info *denali) |
| 157 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 158 | uint32_t irq_status; |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 159 | uint32_t irq_mask = INTR__RST_COMP | INTR__TIME_OUT; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 160 | |
| 161 | clear_interrupts(denali); |
| 162 | |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 163 | iowrite32(1 << denali->flash_bank, denali->flash_reg + DEVICE_RESET); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 164 | |
| 165 | irq_status = wait_for_irq(denali, irq_mask); |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 166 | |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 167 | if (irq_status & INTR__TIME_OUT) |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 168 | dev_err(denali->dev, "reset bank failed.\n"); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | /* Reset the flash controller */ |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 172 | static uint16_t denali_nand_reset(struct denali_nand_info *denali) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 173 | { |
Masahiro Yamada | 93e3c8a | 2014-09-09 11:01:54 +0900 | [diff] [blame] | 174 | int i; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 175 | |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 176 | for (i = 0; i < denali->max_banks; i++) |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 177 | iowrite32(INTR__RST_COMP | INTR__TIME_OUT, |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 178 | denali->flash_reg + INTR_STATUS(i)); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 179 | |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 180 | for (i = 0; i < denali->max_banks; i++) { |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 181 | iowrite32(1 << i, denali->flash_reg + DEVICE_RESET); |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 182 | while (!(ioread32(denali->flash_reg + INTR_STATUS(i)) & |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 183 | (INTR__RST_COMP | INTR__TIME_OUT))) |
Chuanxiao Dong | 628bfd41 | 2010-08-11 17:53:29 +0800 | [diff] [blame] | 184 | cpu_relax(); |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 185 | if (ioread32(denali->flash_reg + INTR_STATUS(i)) & |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 186 | INTR__TIME_OUT) |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 187 | dev_dbg(denali->dev, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 188 | "NAND Reset operation timed out on bank %d\n", i); |
| 189 | } |
| 190 | |
Jamie Iles | c89eeda | 2011-05-06 15:28:57 +0100 | [diff] [blame] | 191 | for (i = 0; i < denali->max_banks; i++) |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 192 | iowrite32(INTR__RST_COMP | INTR__TIME_OUT, |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 193 | denali->flash_reg + INTR_STATUS(i)); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 194 | |
| 195 | return PASS; |
| 196 | } |
| 197 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 198 | /* |
| 199 | * this routine calculates the ONFI timing values for a given mode and |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 200 | * programs the clocking register accordingly. The mode is determined by |
| 201 | * the get_onfi_nand_para routine. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 202 | */ |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 203 | static void nand_onfi_timing_set(struct denali_nand_info *denali, |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 204 | uint16_t mode) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 205 | { |
| 206 | uint16_t Trea[6] = {40, 30, 25, 20, 20, 16}; |
| 207 | uint16_t Trp[6] = {50, 25, 17, 15, 12, 10}; |
| 208 | uint16_t Treh[6] = {30, 15, 15, 10, 10, 7}; |
| 209 | uint16_t Trc[6] = {100, 50, 35, 30, 25, 20}; |
| 210 | uint16_t Trhoh[6] = {0, 15, 15, 15, 15, 15}; |
| 211 | uint16_t Trloh[6] = {0, 0, 0, 0, 5, 5}; |
| 212 | uint16_t Tcea[6] = {100, 45, 30, 25, 25, 25}; |
| 213 | uint16_t Tadl[6] = {200, 100, 100, 100, 70, 70}; |
| 214 | uint16_t Trhw[6] = {200, 100, 100, 100, 100, 100}; |
| 215 | uint16_t Trhz[6] = {200, 100, 100, 100, 100, 100}; |
| 216 | uint16_t Twhr[6] = {120, 80, 80, 60, 60, 60}; |
| 217 | uint16_t Tcs[6] = {70, 35, 25, 25, 20, 15}; |
| 218 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 219 | uint16_t data_invalid_rhoh, data_invalid_rloh, data_invalid; |
| 220 | uint16_t dv_window = 0; |
| 221 | uint16_t en_lo, en_hi; |
| 222 | uint16_t acc_clks; |
| 223 | uint16_t addr_2_data, re_2_we, re_2_re, we_2_re, cs_cnt; |
| 224 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 225 | en_lo = CEIL_DIV(Trp[mode], CLK_X); |
| 226 | en_hi = CEIL_DIV(Treh[mode], CLK_X); |
| 227 | #if ONFI_BLOOM_TIME |
| 228 | if ((en_hi * CLK_X) < (Treh[mode] + 2)) |
| 229 | en_hi++; |
| 230 | #endif |
| 231 | |
| 232 | if ((en_lo + en_hi) * CLK_X < Trc[mode]) |
| 233 | en_lo += CEIL_DIV((Trc[mode] - (en_lo + en_hi) * CLK_X), CLK_X); |
| 234 | |
| 235 | if ((en_lo + en_hi) < CLK_MULTI) |
| 236 | en_lo += CLK_MULTI - en_lo - en_hi; |
| 237 | |
| 238 | while (dv_window < 8) { |
| 239 | data_invalid_rhoh = en_lo * CLK_X + Trhoh[mode]; |
| 240 | |
| 241 | data_invalid_rloh = (en_lo + en_hi) * CLK_X + Trloh[mode]; |
| 242 | |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 243 | data_invalid = data_invalid_rhoh < data_invalid_rloh ? |
| 244 | data_invalid_rhoh : data_invalid_rloh; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 245 | |
| 246 | dv_window = data_invalid - Trea[mode]; |
| 247 | |
| 248 | if (dv_window < 8) |
| 249 | en_lo++; |
| 250 | } |
| 251 | |
| 252 | acc_clks = CEIL_DIV(Trea[mode], CLK_X); |
| 253 | |
Masahiro Yamada | 7d14ecd | 2014-09-16 20:04:24 +0900 | [diff] [blame] | 254 | while (acc_clks * CLK_X - Trea[mode] < 3) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 255 | acc_clks++; |
| 256 | |
Masahiro Yamada | 7d14ecd | 2014-09-16 20:04:24 +0900 | [diff] [blame] | 257 | if (data_invalid - acc_clks * CLK_X < 2) |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 258 | dev_warn(denali->dev, "%s, Line %d: Warning!\n", |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 259 | __FILE__, __LINE__); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 260 | |
| 261 | addr_2_data = CEIL_DIV(Tadl[mode], CLK_X); |
| 262 | re_2_we = CEIL_DIV(Trhw[mode], CLK_X); |
| 263 | re_2_re = CEIL_DIV(Trhz[mode], CLK_X); |
| 264 | we_2_re = CEIL_DIV(Twhr[mode], CLK_X); |
| 265 | cs_cnt = CEIL_DIV((Tcs[mode] - Trp[mode]), CLK_X); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 266 | if (cs_cnt == 0) |
| 267 | cs_cnt = 1; |
| 268 | |
| 269 | if (Tcea[mode]) { |
Masahiro Yamada | 7d14ecd | 2014-09-16 20:04:24 +0900 | [diff] [blame] | 270 | while (cs_cnt * CLK_X + Trea[mode] < Tcea[mode]) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 271 | cs_cnt++; |
| 272 | } |
| 273 | |
| 274 | #if MODE5_WORKAROUND |
| 275 | if (mode == 5) |
| 276 | acc_clks = 5; |
| 277 | #endif |
| 278 | |
| 279 | /* Sighting 3462430: Temporary hack for MT29F128G08CJABAWP:B */ |
Masahiro Yamada | 7d14ecd | 2014-09-16 20:04:24 +0900 | [diff] [blame] | 280 | if (ioread32(denali->flash_reg + MANUFACTURER_ID) == 0 && |
| 281 | ioread32(denali->flash_reg + DEVICE_ID) == 0x88) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 282 | acc_clks = 6; |
| 283 | |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 284 | iowrite32(acc_clks, denali->flash_reg + ACC_CLKS); |
| 285 | iowrite32(re_2_we, denali->flash_reg + RE_2_WE); |
| 286 | iowrite32(re_2_re, denali->flash_reg + RE_2_RE); |
| 287 | iowrite32(we_2_re, denali->flash_reg + WE_2_RE); |
| 288 | iowrite32(addr_2_data, denali->flash_reg + ADDR_2_DATA); |
| 289 | iowrite32(en_lo, denali->flash_reg + RDWR_EN_LO_CNT); |
| 290 | iowrite32(en_hi, denali->flash_reg + RDWR_EN_HI_CNT); |
| 291 | iowrite32(cs_cnt, denali->flash_reg + CS_SETUP_CNT); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 292 | } |
| 293 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 294 | /* queries the NAND device to see what ONFI modes it supports. */ |
| 295 | static uint16_t get_onfi_nand_para(struct denali_nand_info *denali) |
| 296 | { |
| 297 | int i; |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 298 | |
| 299 | /* |
| 300 | * we needn't to do a reset here because driver has already |
Chuanxiao Dong | 4c03bbd | 2010-08-06 15:45:19 +0800 | [diff] [blame] | 301 | * reset all the banks before |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 302 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 303 | if (!(ioread32(denali->flash_reg + ONFI_TIMING_MODE) & |
| 304 | ONFI_TIMING_MODE__VALUE)) |
| 305 | return FAIL; |
| 306 | |
| 307 | for (i = 5; i > 0; i--) { |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 308 | if (ioread32(denali->flash_reg + ONFI_TIMING_MODE) & |
| 309 | (0x01 << i)) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 310 | break; |
| 311 | } |
| 312 | |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 313 | nand_onfi_timing_set(denali, i); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 314 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 315 | /* |
| 316 | * By now, all the ONFI devices we know support the page cache |
| 317 | * rw feature. So here we enable the pipeline_rw_ahead feature |
| 318 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 319 | /* iowrite32(1, denali->flash_reg + CACHE_WRITE_ENABLE); */ |
| 320 | /* iowrite32(1, denali->flash_reg + CACHE_READ_ENABLE); */ |
| 321 | |
| 322 | return PASS; |
| 323 | } |
| 324 | |
Chuanxiao Dong | 4c03bbd | 2010-08-06 15:45:19 +0800 | [diff] [blame] | 325 | static void get_samsung_nand_para(struct denali_nand_info *denali, |
| 326 | uint8_t device_id) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 327 | { |
Chuanxiao Dong | 4c03bbd | 2010-08-06 15:45:19 +0800 | [diff] [blame] | 328 | if (device_id == 0xd3) { /* Samsung K9WAG08U1A */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 329 | /* Set timing register values according to datasheet */ |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 330 | iowrite32(5, denali->flash_reg + ACC_CLKS); |
| 331 | iowrite32(20, denali->flash_reg + RE_2_WE); |
| 332 | iowrite32(12, denali->flash_reg + WE_2_RE); |
| 333 | iowrite32(14, denali->flash_reg + ADDR_2_DATA); |
| 334 | iowrite32(3, denali->flash_reg + RDWR_EN_LO_CNT); |
| 335 | iowrite32(2, denali->flash_reg + RDWR_EN_HI_CNT); |
| 336 | iowrite32(2, denali->flash_reg + CS_SETUP_CNT); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 337 | } |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | static void get_toshiba_nand_para(struct denali_nand_info *denali) |
| 341 | { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 342 | /* |
| 343 | * Workaround to fix a controller bug which reports a wrong |
| 344 | * spare area size for some kind of Toshiba NAND device |
| 345 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 346 | if ((ioread32(denali->flash_reg + DEVICE_MAIN_AREA_SIZE) == 4096) && |
Masahiro Yamada | e713ddd | 2017-03-23 05:07:24 +0900 | [diff] [blame] | 347 | (ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE) == 64)) |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 348 | iowrite32(216, denali->flash_reg + DEVICE_SPARE_AREA_SIZE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 349 | } |
| 350 | |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 351 | static void get_hynix_nand_para(struct denali_nand_info *denali, |
| 352 | uint8_t device_id) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 353 | { |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 354 | switch (device_id) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 355 | case 0xD5: /* Hynix H27UAG8T2A, H27UBG8U5A or H27UCG8VFA */ |
| 356 | case 0xD7: /* Hynix H27UDG8VEM, H27UCG8UDM or H27UCG8V5A */ |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 357 | iowrite32(128, denali->flash_reg + PAGES_PER_BLOCK); |
| 358 | iowrite32(4096, denali->flash_reg + DEVICE_MAIN_AREA_SIZE); |
| 359 | iowrite32(224, denali->flash_reg + DEVICE_SPARE_AREA_SIZE); |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 360 | iowrite32(0, denali->flash_reg + DEVICE_WIDTH); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 361 | break; |
| 362 | default: |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 363 | dev_warn(denali->dev, |
Masahiro Yamada | 789ccf1 | 2016-11-09 13:35:24 +0900 | [diff] [blame] | 364 | "Unknown Hynix NAND (Device ID: 0x%x).\n" |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 365 | "Will use default parameter values instead.\n", |
| 366 | device_id); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 370 | /* |
| 371 | * determines how many NAND chips are connected to the controller. Note for |
Chuanxiao Dong | b292c34 | 2010-08-11 17:46:00 +0800 | [diff] [blame] | 372 | * Intel CE4100 devices we don't support more than one device. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 373 | */ |
| 374 | static void find_valid_banks(struct denali_nand_info *denali) |
| 375 | { |
Jamie Iles | c89eeda | 2011-05-06 15:28:57 +0100 | [diff] [blame] | 376 | uint32_t id[denali->max_banks]; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 377 | int i; |
| 378 | |
| 379 | denali->total_used_banks = 1; |
Jamie Iles | c89eeda | 2011-05-06 15:28:57 +0100 | [diff] [blame] | 380 | for (i = 0; i < denali->max_banks; i++) { |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 381 | index_addr(denali, MODE_11 | (i << 24) | 0, 0x90); |
| 382 | index_addr(denali, MODE_11 | (i << 24) | 1, 0); |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 383 | index_addr_read_data(denali, MODE_11 | (i << 24) | 2, &id[i]); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 384 | |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 385 | dev_dbg(denali->dev, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 386 | "Return 1st ID for bank[%d]: %x\n", i, id[i]); |
| 387 | |
| 388 | if (i == 0) { |
| 389 | if (!(id[i] & 0x0ff)) |
| 390 | break; /* WTF? */ |
| 391 | } else { |
| 392 | if ((id[i] & 0x0ff) == (id[0] & 0x0ff)) |
| 393 | denali->total_used_banks++; |
| 394 | else |
| 395 | break; |
| 396 | } |
| 397 | } |
| 398 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 399 | if (denali->platform == INTEL_CE4100) { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 400 | /* |
| 401 | * Platform limitations of the CE4100 device limit |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 402 | * users to a single chip solution for NAND. |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 403 | * Multichip support is not enabled. |
| 404 | */ |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 405 | if (denali->total_used_banks != 1) { |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 406 | dev_err(denali->dev, |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 407 | "Sorry, Intel CE4100 only supports a single NAND device.\n"); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 408 | BUG(); |
| 409 | } |
| 410 | } |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 411 | dev_dbg(denali->dev, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 412 | "denali->total_used_banks: %d\n", denali->total_used_banks); |
| 413 | } |
| 414 | |
Jamie Iles | c89eeda | 2011-05-06 15:28:57 +0100 | [diff] [blame] | 415 | /* |
| 416 | * Use the configuration feature register to determine the maximum number of |
| 417 | * banks that the hardware supports. |
| 418 | */ |
| 419 | static void detect_max_banks(struct denali_nand_info *denali) |
| 420 | { |
| 421 | uint32_t features = ioread32(denali->flash_reg + FEATURES); |
| 422 | |
Masahiro Yamada | e7beeee | 2017-03-30 15:45:57 +0900 | [diff] [blame] | 423 | denali->max_banks = 1 << (features & FEATURES__N_BANKS); |
| 424 | |
| 425 | /* the encoding changed from rev 5.0 to 5.1 */ |
| 426 | if (denali->revision < 0x0501) |
| 427 | denali->max_banks <<= 1; |
Jamie Iles | c89eeda | 2011-05-06 15:28:57 +0100 | [diff] [blame] | 428 | } |
| 429 | |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 430 | static uint16_t denali_nand_timing_set(struct denali_nand_info *denali) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 431 | { |
| 432 | uint16_t status = PASS; |
grmoore@altera.com | d68a5c3 | 2014-06-23 14:21:10 -0500 | [diff] [blame] | 433 | uint32_t id_bytes[8], addr; |
Masahiro Yamada | 93e3c8a | 2014-09-09 11:01:54 +0900 | [diff] [blame] | 434 | uint8_t maf_id, device_id; |
| 435 | int i; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 436 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 437 | /* |
| 438 | * Use read id method to get device ID and other params. |
| 439 | * For some NAND chips, controller can't report the correct |
| 440 | * device ID by reading from DEVICE_ID register |
| 441 | */ |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 442 | addr = MODE_11 | BANK(denali->flash_bank); |
| 443 | index_addr(denali, addr | 0, 0x90); |
| 444 | index_addr(denali, addr | 1, 0); |
grmoore@altera.com | d68a5c3 | 2014-06-23 14:21:10 -0500 | [diff] [blame] | 445 | for (i = 0; i < 8; i++) |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 446 | index_addr_read_data(denali, addr | 2, &id_bytes[i]); |
| 447 | maf_id = id_bytes[0]; |
| 448 | device_id = id_bytes[1]; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 449 | |
| 450 | if (ioread32(denali->flash_reg + ONFI_DEVICE_NO_OF_LUNS) & |
| 451 | ONFI_DEVICE_NO_OF_LUNS__ONFI_DEVICE) { /* ONFI 1.0 NAND */ |
| 452 | if (FAIL == get_onfi_nand_para(denali)) |
| 453 | return FAIL; |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 454 | } else if (maf_id == 0xEC) { /* Samsung NAND */ |
Chuanxiao Dong | 4c03bbd | 2010-08-06 15:45:19 +0800 | [diff] [blame] | 455 | get_samsung_nand_para(denali, device_id); |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 456 | } else if (maf_id == 0x98) { /* Toshiba NAND */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 457 | get_toshiba_nand_para(denali); |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 458 | } else if (maf_id == 0xAD) { /* Hynix NAND */ |
| 459 | get_hynix_nand_para(denali, device_id); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 460 | } |
| 461 | |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 462 | dev_info(denali->dev, |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 463 | "Dump timing register values:\n" |
Chuanxiao Dong | 7cfffac | 2010-08-10 00:16:51 +0800 | [diff] [blame] | 464 | "acc_clks: %d, re_2_we: %d, re_2_re: %d\n" |
| 465 | "we_2_re: %d, addr_2_data: %d, rdwr_en_lo_cnt: %d\n" |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 466 | "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n", |
| 467 | ioread32(denali->flash_reg + ACC_CLKS), |
| 468 | ioread32(denali->flash_reg + RE_2_WE), |
Chuanxiao Dong | 7cfffac | 2010-08-10 00:16:51 +0800 | [diff] [blame] | 469 | ioread32(denali->flash_reg + RE_2_RE), |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 470 | ioread32(denali->flash_reg + WE_2_RE), |
| 471 | ioread32(denali->flash_reg + ADDR_2_DATA), |
| 472 | ioread32(denali->flash_reg + RDWR_EN_LO_CNT), |
| 473 | ioread32(denali->flash_reg + RDWR_EN_HI_CNT), |
| 474 | ioread32(denali->flash_reg + CS_SETUP_CNT)); |
| 475 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 476 | find_valid_banks(denali); |
| 477 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 478 | /* |
| 479 | * If the user specified to override the default timings |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 480 | * with a specific ONFI mode, we apply those changes here. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 481 | */ |
| 482 | if (onfi_timing_mode != NAND_DEFAULT_TIMINGS) |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 483 | nand_onfi_timing_set(denali, onfi_timing_mode); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 484 | |
| 485 | return status; |
| 486 | } |
| 487 | |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 488 | static void denali_set_intr_modes(struct denali_nand_info *denali, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 489 | uint16_t INT_ENABLE) |
| 490 | { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 491 | if (INT_ENABLE) |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 492 | iowrite32(1, denali->flash_reg + GLOBAL_INT_ENABLE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 493 | else |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 494 | iowrite32(0, denali->flash_reg + GLOBAL_INT_ENABLE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 495 | } |
| 496 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 497 | /* |
| 498 | * validation function to verify that the controlling software is making |
Chuanxiao Dong | b292c34 | 2010-08-11 17:46:00 +0800 | [diff] [blame] | 499 | * a valid request |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 500 | */ |
| 501 | static inline bool is_flash_bank_valid(int flash_bank) |
| 502 | { |
Masahiro Yamada | 7d14ecd | 2014-09-16 20:04:24 +0900 | [diff] [blame] | 503 | return flash_bank >= 0 && flash_bank < 4; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 504 | } |
| 505 | |
| 506 | static void denali_irq_init(struct denali_nand_info *denali) |
| 507 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 508 | uint32_t int_mask; |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 509 | int i; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 510 | |
| 511 | /* Disable global interrupts */ |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 512 | denali_set_intr_modes(denali, false); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 513 | |
| 514 | int_mask = DENALI_IRQ_ALL; |
| 515 | |
| 516 | /* Clear all status bits */ |
Jamie Iles | c89eeda | 2011-05-06 15:28:57 +0100 | [diff] [blame] | 517 | for (i = 0; i < denali->max_banks; ++i) |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 518 | iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS(i)); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 519 | |
| 520 | denali_irq_enable(denali, int_mask); |
| 521 | } |
| 522 | |
| 523 | static void denali_irq_cleanup(int irqnum, struct denali_nand_info *denali) |
| 524 | { |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 525 | denali_set_intr_modes(denali, false); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 526 | } |
| 527 | |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 528 | static void denali_irq_enable(struct denali_nand_info *denali, |
| 529 | uint32_t int_mask) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 530 | { |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 531 | int i; |
| 532 | |
Jamie Iles | c89eeda | 2011-05-06 15:28:57 +0100 | [diff] [blame] | 533 | for (i = 0; i < denali->max_banks; ++i) |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 534 | iowrite32(int_mask, denali->flash_reg + INTR_EN(i)); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 535 | } |
| 536 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 537 | /* |
| 538 | * This function only returns when an interrupt that this driver cares about |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 539 | * occurs. This is to reduce the overhead of servicing interrupts |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 540 | */ |
| 541 | static inline uint32_t denali_irq_detected(struct denali_nand_info *denali) |
| 542 | { |
Chuanxiao Dong | a99d179 | 2010-07-27 11:32:21 +0800 | [diff] [blame] | 543 | return read_interrupt_status(denali) & DENALI_IRQ_ALL; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | /* Interrupts are cleared by writing a 1 to the appropriate status bit */ |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 547 | static inline void clear_interrupt(struct denali_nand_info *denali, |
| 548 | uint32_t irq_mask) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 549 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 550 | uint32_t intr_status_reg; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 551 | |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 552 | intr_status_reg = INTR_STATUS(denali->flash_bank); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 553 | |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 554 | iowrite32(irq_mask, denali->flash_reg + intr_status_reg); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | static void clear_interrupts(struct denali_nand_info *denali) |
| 558 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 559 | uint32_t status; |
| 560 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 561 | spin_lock_irq(&denali->irq_lock); |
| 562 | |
| 563 | status = read_interrupt_status(denali); |
Chuanxiao Dong | 8ae61eb | 2010-08-10 00:07:01 +0800 | [diff] [blame] | 564 | clear_interrupt(denali, status); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 565 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 566 | denali->irq_status = 0x0; |
| 567 | spin_unlock_irq(&denali->irq_lock); |
| 568 | } |
| 569 | |
| 570 | static uint32_t read_interrupt_status(struct denali_nand_info *denali) |
| 571 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 572 | uint32_t intr_status_reg; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 573 | |
Jamie Iles | 9589bf5 | 2011-05-06 15:28:56 +0100 | [diff] [blame] | 574 | intr_status_reg = INTR_STATUS(denali->flash_bank); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 575 | |
| 576 | return ioread32(denali->flash_reg + intr_status_reg); |
| 577 | } |
| 578 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 579 | /* |
| 580 | * This is the interrupt service routine. It handles all interrupts |
| 581 | * sent to this device. Note that on CE4100, this is a shared interrupt. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 582 | */ |
| 583 | static irqreturn_t denali_isr(int irq, void *dev_id) |
| 584 | { |
| 585 | struct denali_nand_info *denali = dev_id; |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 586 | uint32_t irq_status; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 587 | irqreturn_t result = IRQ_NONE; |
| 588 | |
| 589 | spin_lock(&denali->irq_lock); |
| 590 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 591 | /* check to see if a valid NAND chip has been selected. */ |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 592 | if (is_flash_bank_valid(denali->flash_bank)) { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 593 | /* |
| 594 | * check to see if controller generated the interrupt, |
| 595 | * since this is a shared interrupt |
| 596 | */ |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 597 | irq_status = denali_irq_detected(denali); |
| 598 | if (irq_status != 0) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 599 | /* handle interrupt */ |
| 600 | /* first acknowledge it */ |
| 601 | clear_interrupt(denali, irq_status); |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 602 | /* |
| 603 | * store the status in the device context for someone |
| 604 | * to read |
| 605 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 606 | denali->irq_status |= irq_status; |
| 607 | /* notify anyone who cares that it happened */ |
| 608 | complete(&denali->complete); |
| 609 | /* tell the OS that we've handled this */ |
| 610 | result = IRQ_HANDLED; |
| 611 | } |
| 612 | } |
| 613 | spin_unlock(&denali->irq_lock); |
| 614 | return result; |
| 615 | } |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 616 | |
| 617 | static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask) |
| 618 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 619 | unsigned long comp_res; |
| 620 | uint32_t intr_status; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 621 | unsigned long timeout = msecs_to_jiffies(1000); |
| 622 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 623 | do { |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 624 | comp_res = |
| 625 | wait_for_completion_timeout(&denali->complete, timeout); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 626 | spin_lock_irq(&denali->irq_lock); |
| 627 | intr_status = denali->irq_status; |
| 628 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 629 | if (intr_status & irq_mask) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 630 | denali->irq_status &= ~irq_mask; |
| 631 | spin_unlock_irq(&denali->irq_lock); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 632 | /* our interrupt was detected */ |
| 633 | break; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 634 | } |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 635 | |
| 636 | /* |
| 637 | * these are not the interrupts you are looking for - |
| 638 | * need to wait again |
| 639 | */ |
| 640 | spin_unlock_irq(&denali->irq_lock); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 641 | } while (comp_res != 0); |
| 642 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 643 | if (comp_res == 0) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 644 | /* timeout */ |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 645 | pr_err("timeout occurred, status = 0x%x, mask = 0x%x\n", |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 646 | intr_status, irq_mask); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 647 | |
| 648 | intr_status = 0; |
| 649 | } |
| 650 | return intr_status; |
| 651 | } |
| 652 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 653 | /* |
| 654 | * This helper function setups the registers for ECC and whether or not |
| 655 | * the spare area will be transferred. |
| 656 | */ |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 657 | static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 658 | bool transfer_spare) |
| 659 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 660 | int ecc_en_flag, transfer_spare_flag; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 661 | |
| 662 | /* set ECC, transfer spare bits if needed */ |
| 663 | ecc_en_flag = ecc_en ? ECC_ENABLE__FLAG : 0; |
| 664 | transfer_spare_flag = transfer_spare ? TRANSFER_SPARE_REG__FLAG : 0; |
| 665 | |
| 666 | /* Enable spare area/ECC per user's request. */ |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 667 | iowrite32(ecc_en_flag, denali->flash_reg + ECC_ENABLE); |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 668 | iowrite32(transfer_spare_flag, denali->flash_reg + TRANSFER_SPARE_REG); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 669 | } |
| 670 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 671 | /* |
| 672 | * sends a pipeline command operation to the controller. See the Denali NAND |
Chuanxiao Dong | b292c34 | 2010-08-11 17:46:00 +0800 | [diff] [blame] | 673 | * controller's user guide for more information (section 4.2.3.6). |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 674 | */ |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 675 | static int denali_send_pipeline_cmd(struct denali_nand_info *denali, |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 676 | bool ecc_en, bool transfer_spare, |
| 677 | int access_type, int op) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 678 | { |
| 679 | int status = PASS; |
Masahiro Yamada | 8927ad3 | 2017-03-30 15:45:49 +0900 | [diff] [blame] | 680 | uint32_t addr, cmd; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 681 | |
| 682 | setup_ecc_for_xfer(denali, ecc_en, transfer_spare); |
| 683 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 684 | clear_interrupts(denali); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 685 | |
| 686 | addr = BANK(denali->flash_bank) | denali->page; |
| 687 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 688 | if (op == DENALI_WRITE && access_type != SPARE_ACCESS) { |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 689 | cmd = MODE_01 | addr; |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 690 | iowrite32(cmd, denali->flash_mem); |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 691 | } else if (op == DENALI_WRITE && access_type == SPARE_ACCESS) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 692 | /* read spare area */ |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 693 | cmd = MODE_10 | addr; |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 694 | index_addr(denali, cmd, access_type); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 695 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 696 | cmd = MODE_01 | addr; |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 697 | iowrite32(cmd, denali->flash_mem); |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 698 | } else if (op == DENALI_READ) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 699 | /* setup page read request for access type */ |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 700 | cmd = MODE_10 | addr; |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 701 | index_addr(denali, cmd, access_type); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 702 | |
Masahiro Yamada | 8927ad3 | 2017-03-30 15:45:49 +0900 | [diff] [blame] | 703 | cmd = MODE_01 | addr; |
| 704 | iowrite32(cmd, denali->flash_mem); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 705 | } |
| 706 | return status; |
| 707 | } |
| 708 | |
| 709 | /* helper function that simply writes a buffer to the flash */ |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 710 | static int write_data_to_flash_mem(struct denali_nand_info *denali, |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 711 | const uint8_t *buf, int len) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 712 | { |
Masahiro Yamada | 93e3c8a | 2014-09-09 11:01:54 +0900 | [diff] [blame] | 713 | uint32_t *buf32; |
| 714 | int i; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 715 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 716 | /* |
| 717 | * verify that the len is a multiple of 4. |
| 718 | * see comment in read_data_from_flash_mem() |
| 719 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 720 | BUG_ON((len % 4) != 0); |
| 721 | |
| 722 | /* write the data to the flash memory */ |
| 723 | buf32 = (uint32_t *)buf; |
| 724 | for (i = 0; i < len / 4; i++) |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 725 | iowrite32(*buf32++, denali->flash_mem + 0x10); |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 726 | return i * 4; /* intent is to return the number of bytes read */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 727 | } |
| 728 | |
| 729 | /* helper function that simply reads a buffer from the flash */ |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 730 | static int read_data_from_flash_mem(struct denali_nand_info *denali, |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 731 | uint8_t *buf, int len) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 732 | { |
Masahiro Yamada | 93e3c8a | 2014-09-09 11:01:54 +0900 | [diff] [blame] | 733 | uint32_t *buf32; |
| 734 | int i; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 735 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 736 | /* |
| 737 | * we assume that len will be a multiple of 4, if not it would be nice |
| 738 | * to know about it ASAP rather than have random failures... |
| 739 | * This assumption is based on the fact that this function is designed |
| 740 | * to be used to read flash pages, which are typically multiples of 4. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 741 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 742 | BUG_ON((len % 4) != 0); |
| 743 | |
| 744 | /* transfer the data from the flash */ |
| 745 | buf32 = (uint32_t *)buf; |
| 746 | for (i = 0; i < len / 4; i++) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 747 | *buf32++ = ioread32(denali->flash_mem + 0x10); |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 748 | return i * 4; /* intent is to return the number of bytes read */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 749 | } |
| 750 | |
| 751 | /* writes OOB data to the device */ |
| 752 | static int write_oob_data(struct mtd_info *mtd, uint8_t *buf, int page) |
| 753 | { |
| 754 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 755 | uint32_t irq_status; |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 756 | uint32_t irq_mask = INTR__PROGRAM_COMP | INTR__PROGRAM_FAIL; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 757 | int status = 0; |
| 758 | |
| 759 | denali->page = page; |
| 760 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 761 | if (denali_send_pipeline_cmd(denali, false, false, SPARE_ACCESS, |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 762 | DENALI_WRITE) == PASS) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 763 | write_data_to_flash_mem(denali, buf, mtd->oobsize); |
| 764 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 765 | /* wait for operation to complete */ |
| 766 | irq_status = wait_for_irq(denali, irq_mask); |
| 767 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 768 | if (irq_status == 0) { |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 769 | dev_err(denali->dev, "OOB write failed\n"); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 770 | status = -EIO; |
| 771 | } |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 772 | } else { |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 773 | dev_err(denali->dev, "unable to send pipeline command\n"); |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 774 | status = -EIO; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 775 | } |
| 776 | return status; |
| 777 | } |
| 778 | |
| 779 | /* reads OOB data from the device */ |
| 780 | static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page) |
| 781 | { |
| 782 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 783 | uint32_t irq_mask = INTR__LOAD_COMP; |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 784 | uint32_t irq_status, addr, cmd; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 785 | |
| 786 | denali->page = page; |
| 787 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 788 | if (denali_send_pipeline_cmd(denali, false, true, SPARE_ACCESS, |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 789 | DENALI_READ) == PASS) { |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 790 | read_data_from_flash_mem(denali, buf, mtd->oobsize); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 791 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 792 | /* |
| 793 | * wait for command to be accepted |
| 794 | * can always use status0 bit as the |
| 795 | * mask is identical for each bank. |
| 796 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 797 | irq_status = wait_for_irq(denali, irq_mask); |
| 798 | |
| 799 | if (irq_status == 0) |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 800 | dev_err(denali->dev, "page on OOB timeout %d\n", |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 801 | denali->page); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 802 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 803 | /* |
| 804 | * We set the device back to MAIN_ACCESS here as I observed |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 805 | * instability with the controller if you do a block erase |
| 806 | * and the last transaction was a SPARE_ACCESS. Block erase |
| 807 | * is reliable (according to the MTD test infrastructure) |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 808 | * if you are in MAIN_ACCESS. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 809 | */ |
| 810 | addr = BANK(denali->flash_bank) | denali->page; |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 811 | cmd = MODE_10 | addr; |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 812 | index_addr(denali, cmd, MAIN_ACCESS); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 813 | } |
| 814 | } |
| 815 | |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 816 | static int denali_check_erased_page(struct mtd_info *mtd, |
| 817 | struct nand_chip *chip, uint8_t *buf, |
| 818 | unsigned long uncor_ecc_flags, |
| 819 | unsigned int max_bitflips) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 820 | { |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 821 | uint8_t *ecc_code = chip->buffers->ecccode; |
| 822 | int ecc_steps = chip->ecc.steps; |
| 823 | int ecc_size = chip->ecc.size; |
| 824 | int ecc_bytes = chip->ecc.bytes; |
| 825 | int i, ret, stat; |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 826 | |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 827 | ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0, |
| 828 | chip->ecc.total); |
| 829 | if (ret) |
| 830 | return ret; |
| 831 | |
| 832 | for (i = 0; i < ecc_steps; i++) { |
| 833 | if (!(uncor_ecc_flags & BIT(i))) |
| 834 | continue; |
| 835 | |
| 836 | stat = nand_check_erased_ecc_chunk(buf, ecc_size, |
| 837 | ecc_code, ecc_bytes, |
| 838 | NULL, 0, |
| 839 | chip->ecc.strength); |
| 840 | if (stat < 0) { |
| 841 | mtd->ecc_stats.failed++; |
| 842 | } else { |
| 843 | mtd->ecc_stats.corrected += stat; |
| 844 | max_bitflips = max_t(unsigned int, max_bitflips, stat); |
| 845 | } |
| 846 | |
| 847 | buf += ecc_size; |
| 848 | ecc_code += ecc_bytes; |
| 849 | } |
| 850 | |
| 851 | return max_bitflips; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 852 | } |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 853 | |
Masahiro Yamada | 24715c7 | 2017-03-30 15:45:52 +0900 | [diff] [blame] | 854 | static int denali_hw_ecc_fixup(struct mtd_info *mtd, |
| 855 | struct denali_nand_info *denali, |
| 856 | unsigned long *uncor_ecc_flags) |
| 857 | { |
| 858 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 859 | int bank = denali->flash_bank; |
| 860 | uint32_t ecc_cor; |
| 861 | unsigned int max_bitflips; |
| 862 | |
| 863 | ecc_cor = ioread32(denali->flash_reg + ECC_COR_INFO(bank)); |
| 864 | ecc_cor >>= ECC_COR_INFO__SHIFT(bank); |
| 865 | |
| 866 | if (ecc_cor & ECC_COR_INFO__UNCOR_ERR) { |
| 867 | /* |
| 868 | * This flag is set when uncorrectable error occurs at least in |
| 869 | * one ECC sector. We can not know "how many sectors", or |
| 870 | * "which sector(s)". We need erase-page check for all sectors. |
| 871 | */ |
| 872 | *uncor_ecc_flags = GENMASK(chip->ecc.steps - 1, 0); |
| 873 | return 0; |
| 874 | } |
| 875 | |
| 876 | max_bitflips = ecc_cor & ECC_COR_INFO__MAX_ERRORS; |
| 877 | |
| 878 | /* |
| 879 | * The register holds the maximum of per-sector corrected bitflips. |
| 880 | * This is suitable for the return value of the ->read_page() callback. |
| 881 | * Unfortunately, we can not know the total number of corrected bits in |
| 882 | * the page. Increase the stats by max_bitflips. (compromised solution) |
| 883 | */ |
| 884 | mtd->ecc_stats.corrected += max_bitflips; |
| 885 | |
| 886 | return max_bitflips; |
| 887 | } |
| 888 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 889 | #define ECC_SECTOR_SIZE 512 |
| 890 | |
| 891 | #define ECC_SECTOR(x) (((x) & ECC_ERROR_ADDRESS__SECTOR_NR) >> 12) |
| 892 | #define ECC_BYTE(x) (((x) & ECC_ERROR_ADDRESS__OFFSET)) |
| 893 | #define ECC_CORRECTION_VALUE(x) ((x) & ERR_CORRECTION_INFO__BYTEMASK) |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 894 | #define ECC_ERROR_UNCORRECTABLE(x) ((x) & ERR_CORRECTION_INFO__ERROR_TYPE) |
Chuanxiao Dong | 8ae61eb | 2010-08-10 00:07:01 +0800 | [diff] [blame] | 895 | #define ECC_ERR_DEVICE(x) (((x) & ERR_CORRECTION_INFO__DEVICE_NR) >> 8) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 896 | #define ECC_LAST_ERR(x) ((x) & ERR_CORRECTION_INFO__LAST_ERR_INFO) |
| 897 | |
Masahiro Yamada | 24715c7 | 2017-03-30 15:45:52 +0900 | [diff] [blame] | 898 | static int denali_sw_ecc_fixup(struct mtd_info *mtd, |
| 899 | struct denali_nand_info *denali, |
| 900 | unsigned long *uncor_ecc_flags, uint8_t *buf) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 901 | { |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 902 | unsigned int bitflips = 0; |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 903 | unsigned int max_bitflips = 0; |
| 904 | uint32_t err_addr, err_cor_info; |
| 905 | unsigned int err_byte, err_sector, err_device; |
| 906 | uint8_t err_cor_value; |
| 907 | unsigned int prev_sector = 0; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 908 | |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 909 | /* read the ECC errors. we'll ignore them for now */ |
| 910 | denali_set_intr_modes(denali, false); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 911 | |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 912 | do { |
| 913 | err_addr = ioread32(denali->flash_reg + ECC_ERROR_ADDRESS); |
| 914 | err_sector = ECC_SECTOR(err_addr); |
| 915 | err_byte = ECC_BYTE(err_addr); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 916 | |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 917 | err_cor_info = ioread32(denali->flash_reg + ERR_CORRECTION_INFO); |
| 918 | err_cor_value = ECC_CORRECTION_VALUE(err_cor_info); |
| 919 | err_device = ECC_ERR_DEVICE(err_cor_info); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 920 | |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 921 | /* reset the bitflip counter when crossing ECC sector */ |
| 922 | if (err_sector != prev_sector) |
| 923 | bitflips = 0; |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 924 | |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 925 | if (ECC_ERROR_UNCORRECTABLE(err_cor_info)) { |
| 926 | /* |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 927 | * Check later if this is a real ECC error, or |
| 928 | * an erased sector. |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 929 | */ |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 930 | *uncor_ecc_flags |= BIT(err_sector); |
Masahiro Yamada | 20d4859 | 2017-03-30 15:45:50 +0900 | [diff] [blame] | 931 | } else if (err_byte < ECC_SECTOR_SIZE) { |
| 932 | /* |
| 933 | * If err_byte is larger than ECC_SECTOR_SIZE, means error |
| 934 | * happened in OOB, so we ignore it. It's no need for |
| 935 | * us to correct it err_device is represented the NAND |
| 936 | * error bits are happened in if there are more than |
| 937 | * one NAND connected. |
| 938 | */ |
| 939 | int offset; |
| 940 | unsigned int flips_in_byte; |
| 941 | |
| 942 | offset = (err_sector * ECC_SECTOR_SIZE + err_byte) * |
| 943 | denali->devnum + err_device; |
| 944 | |
| 945 | /* correct the ECC error */ |
| 946 | flips_in_byte = hweight8(buf[offset] ^ err_cor_value); |
| 947 | buf[offset] ^= err_cor_value; |
| 948 | mtd->ecc_stats.corrected += flips_in_byte; |
| 949 | bitflips += flips_in_byte; |
| 950 | |
| 951 | max_bitflips = max(max_bitflips, bitflips); |
| 952 | } |
| 953 | |
| 954 | prev_sector = err_sector; |
| 955 | } while (!ECC_LAST_ERR(err_cor_info)); |
| 956 | |
| 957 | /* |
| 958 | * Once handle all ecc errors, controller will trigger a |
| 959 | * ECC_TRANSACTION_DONE interrupt, so here just wait for |
| 960 | * a while for this interrupt |
| 961 | */ |
| 962 | while (!(read_interrupt_status(denali) & INTR__ECC_TRANSACTION_DONE)) |
| 963 | cpu_relax(); |
| 964 | clear_interrupts(denali); |
| 965 | denali_set_intr_modes(denali, true); |
| 966 | |
| 967 | return max_bitflips; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 968 | } |
| 969 | |
| 970 | /* programs the controller to either enable/disable DMA transfers */ |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 971 | static void denali_enable_dma(struct denali_nand_info *denali, bool en) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 972 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 973 | iowrite32(en ? DMA_ENABLE__FLAG : 0, denali->flash_reg + DMA_ENABLE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 974 | ioread32(denali->flash_reg + DMA_ENABLE); |
| 975 | } |
| 976 | |
Masahiro Yamada | 210a2c8 | 2017-03-30 15:45:54 +0900 | [diff] [blame] | 977 | static void denali_setup_dma64(struct denali_nand_info *denali, int op) |
| 978 | { |
| 979 | uint32_t mode; |
| 980 | const int page_count = 1; |
| 981 | uint64_t addr = denali->buf.dma_buf; |
| 982 | |
| 983 | mode = MODE_10 | BANK(denali->flash_bank) | denali->page; |
| 984 | |
| 985 | /* DMA is a three step process */ |
| 986 | |
| 987 | /* |
| 988 | * 1. setup transfer type, interrupt when complete, |
| 989 | * burst len = 64 bytes, the number of pages |
| 990 | */ |
| 991 | index_addr(denali, mode, 0x01002000 | (64 << 16) | op | page_count); |
| 992 | |
| 993 | /* 2. set memory low address */ |
| 994 | index_addr(denali, mode, addr); |
| 995 | |
| 996 | /* 3. set memory high address */ |
| 997 | index_addr(denali, mode, addr >> 32); |
| 998 | } |
| 999 | |
| 1000 | static void denali_setup_dma32(struct denali_nand_info *denali, int op) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1001 | { |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 1002 | uint32_t mode; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1003 | const int page_count = 1; |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 1004 | uint32_t addr = denali->buf.dma_buf; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1005 | |
| 1006 | mode = MODE_10 | BANK(denali->flash_bank); |
| 1007 | |
| 1008 | /* DMA is a four step process */ |
| 1009 | |
| 1010 | /* 1. setup transfer type and # of pages */ |
| 1011 | index_addr(denali, mode | denali->page, 0x2000 | op | page_count); |
| 1012 | |
| 1013 | /* 2. set memory high address bits 23:8 */ |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 1014 | index_addr(denali, mode | ((addr >> 16) << 8), 0x2200); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1015 | |
| 1016 | /* 3. set memory low address bits 23:8 */ |
Graham Moore | 7c272ac | 2015-01-09 09:32:35 -0600 | [diff] [blame] | 1017 | index_addr(denali, mode | ((addr & 0xffff) << 8), 0x2300); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1018 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1019 | /* 4. interrupt when complete, burst len = 64 bytes */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1020 | index_addr(denali, mode | 0x14000, 0x2400); |
| 1021 | } |
| 1022 | |
Masahiro Yamada | 210a2c8 | 2017-03-30 15:45:54 +0900 | [diff] [blame] | 1023 | static void denali_setup_dma(struct denali_nand_info *denali, int op) |
| 1024 | { |
| 1025 | if (denali->caps & DENALI_CAP_DMA_64BIT) |
| 1026 | denali_setup_dma64(denali, op); |
| 1027 | else |
| 1028 | denali_setup_dma32(denali, op); |
| 1029 | } |
| 1030 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1031 | /* |
| 1032 | * writes a page. user specifies type, and this function handles the |
| 1033 | * configuration details. |
| 1034 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 1035 | static int write_page(struct mtd_info *mtd, struct nand_chip *chip, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1036 | const uint8_t *buf, bool raw_xfer) |
| 1037 | { |
| 1038 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1039 | dma_addr_t addr = denali->buf.dma_buf; |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1040 | size_t size = mtd->writesize + mtd->oobsize; |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 1041 | uint32_t irq_status; |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 1042 | uint32_t irq_mask = INTR__DMA_CMD_COMP | INTR__PROGRAM_FAIL; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1043 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1044 | /* |
| 1045 | * if it is a raw xfer, we want to disable ecc and send the spare area. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1046 | * !raw_xfer - enable ecc |
| 1047 | * raw_xfer - transfer spare |
| 1048 | */ |
| 1049 | setup_ecc_for_xfer(denali, !raw_xfer, raw_xfer); |
| 1050 | |
| 1051 | /* copy buffer into DMA buffer */ |
| 1052 | memcpy(denali->buf.buf, buf, mtd->writesize); |
| 1053 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 1054 | if (raw_xfer) { |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1055 | /* transfer the data to the spare area */ |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1056 | memcpy(denali->buf.buf + mtd->writesize, |
| 1057 | chip->oob_poi, |
| 1058 | mtd->oobsize); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1059 | } |
| 1060 | |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 1061 | dma_sync_single_for_device(denali->dev, addr, size, DMA_TO_DEVICE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1062 | |
| 1063 | clear_interrupts(denali); |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1064 | denali_enable_dma(denali, true); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1065 | |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 1066 | denali_setup_dma(denali, DENALI_WRITE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1067 | |
| 1068 | /* wait for operation to complete */ |
| 1069 | irq_status = wait_for_irq(denali, irq_mask); |
| 1070 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 1071 | if (irq_status == 0) { |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 1072 | dev_err(denali->dev, "timeout on write_page (type = %d)\n", |
| 1073 | raw_xfer); |
Brian Norris | c115add | 2014-07-21 19:07:31 -0700 | [diff] [blame] | 1074 | denali->status = NAND_STATUS_FAIL; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1075 | } |
| 1076 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1077 | denali_enable_dma(denali, false); |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 1078 | dma_sync_single_for_cpu(denali->dev, addr, size, DMA_TO_DEVICE); |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 1079 | |
| 1080 | return 0; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | /* NAND core entry points */ |
| 1084 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1085 | /* |
| 1086 | * this is the callback that the NAND core calls to write a page. Since |
Chuanxiao Dong | b292c34 | 2010-08-11 17:46:00 +0800 | [diff] [blame] | 1087 | * writing a page with ECC or without is similar, all the work is done |
| 1088 | * by write_page above. |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1089 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 1090 | static int denali_write_page(struct mtd_info *mtd, struct nand_chip *chip, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 1091 | const uint8_t *buf, int oob_required, int page) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1092 | { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1093 | /* |
| 1094 | * for regular page writes, we let HW handle all the ECC |
| 1095 | * data written to the device. |
| 1096 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 1097 | return write_page(mtd, chip, buf, false); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1098 | } |
| 1099 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1100 | /* |
| 1101 | * This is the callback that the NAND core calls to write a page without ECC. |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1102 | * raw access is similar to ECC page writes, so all the work is done in the |
Chuanxiao Dong | b292c34 | 2010-08-11 17:46:00 +0800 | [diff] [blame] | 1103 | * write_page() function above. |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1104 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 1105 | static int denali_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip, |
Boris BREZILLON | 45aaeff | 2015-10-13 11:22:18 +0200 | [diff] [blame] | 1106 | const uint8_t *buf, int oob_required, |
| 1107 | int page) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1108 | { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1109 | /* |
| 1110 | * for raw page writes, we want to disable ECC and simply write |
| 1111 | * whatever data is in the buffer. |
| 1112 | */ |
Josh Wu | fdbad98d | 2012-06-25 18:07:45 +0800 | [diff] [blame] | 1113 | return write_page(mtd, chip, buf, true); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1114 | } |
| 1115 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1116 | static int denali_write_oob(struct mtd_info *mtd, struct nand_chip *chip, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1117 | int page) |
| 1118 | { |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1119 | return write_oob_data(mtd, chip->oob_poi, page); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1120 | } |
| 1121 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1122 | static int denali_read_oob(struct mtd_info *mtd, struct nand_chip *chip, |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 1123 | int page) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1124 | { |
| 1125 | read_oob_data(mtd, chip->oob_poi, page); |
| 1126 | |
Shmulik Ladkani | 5c2ffb1 | 2012-05-09 13:06:35 +0300 | [diff] [blame] | 1127 | return 0; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1128 | } |
| 1129 | |
| 1130 | static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1131 | uint8_t *buf, int oob_required, int page) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1132 | { |
| 1133 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1134 | dma_addr_t addr = denali->buf.dma_buf; |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1135 | size_t size = mtd->writesize + mtd->oobsize; |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 1136 | uint32_t irq_status; |
Masahiro Yamada | 24715c7 | 2017-03-30 15:45:52 +0900 | [diff] [blame] | 1137 | uint32_t irq_mask = denali->caps & DENALI_CAP_HW_ECC_FIXUP ? |
| 1138 | INTR__DMA_CMD_COMP | INTR__ECC_UNCOR_ERR : |
| 1139 | INTR__ECC_TRANSACTION_DONE | INTR__ECC_ERR; |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 1140 | unsigned long uncor_ecc_flags = 0; |
| 1141 | int stat = 0; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1142 | |
Chuanxiao Dong | 7d8a26f | 2010-08-11 18:19:23 +0800 | [diff] [blame] | 1143 | if (page != denali->page) { |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 1144 | dev_err(denali->dev, |
| 1145 | "IN %s: page %d is not equal to denali->page %d", |
| 1146 | __func__, page, denali->page); |
Chuanxiao Dong | 7d8a26f | 2010-08-11 18:19:23 +0800 | [diff] [blame] | 1147 | BUG(); |
| 1148 | } |
| 1149 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1150 | setup_ecc_for_xfer(denali, true, false); |
| 1151 | |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 1152 | denali_enable_dma(denali, true); |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 1153 | dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1154 | |
| 1155 | clear_interrupts(denali); |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 1156 | denali_setup_dma(denali, DENALI_READ); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1157 | |
| 1158 | /* wait for operation to complete */ |
| 1159 | irq_status = wait_for_irq(denali, irq_mask); |
| 1160 | |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 1161 | dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1162 | |
| 1163 | memcpy(buf, denali->buf.buf, mtd->writesize); |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1164 | |
Masahiro Yamada | 24715c7 | 2017-03-30 15:45:52 +0900 | [diff] [blame] | 1165 | if (denali->caps & DENALI_CAP_HW_ECC_FIXUP) |
| 1166 | stat = denali_hw_ecc_fixup(mtd, denali, &uncor_ecc_flags); |
| 1167 | else if (irq_status & INTR__ECC_ERR) |
| 1168 | stat = denali_sw_ecc_fixup(mtd, denali, &uncor_ecc_flags, buf); |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 1169 | denali_enable_dma(denali, false); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1170 | |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 1171 | if (stat < 0) |
| 1172 | return stat; |
| 1173 | |
| 1174 | if (uncor_ecc_flags) { |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1175 | read_oob_data(mtd, chip->oob_poi, denali->page); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1176 | |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 1177 | stat = denali_check_erased_page(mtd, chip, buf, |
| 1178 | uncor_ecc_flags, stat); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1179 | } |
Masahiro Yamada | d29109b | 2017-03-30 15:45:51 +0900 | [diff] [blame] | 1180 | |
| 1181 | return stat; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1182 | } |
| 1183 | |
| 1184 | static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip, |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 1185 | uint8_t *buf, int oob_required, int page) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1186 | { |
| 1187 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1188 | dma_addr_t addr = denali->buf.dma_buf; |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1189 | size_t size = mtd->writesize + mtd->oobsize; |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 1190 | uint32_t irq_mask = INTR__DMA_CMD_COMP; |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1191 | |
Chuanxiao Dong | 7d8a26f | 2010-08-11 18:19:23 +0800 | [diff] [blame] | 1192 | if (page != denali->page) { |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 1193 | dev_err(denali->dev, |
| 1194 | "IN %s: page %d is not equal to denali->page %d", |
| 1195 | __func__, page, denali->page); |
Chuanxiao Dong | 7d8a26f | 2010-08-11 18:19:23 +0800 | [diff] [blame] | 1196 | BUG(); |
| 1197 | } |
| 1198 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1199 | setup_ecc_for_xfer(denali, false, true); |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 1200 | denali_enable_dma(denali, true); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1201 | |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 1202 | dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1203 | |
| 1204 | clear_interrupts(denali); |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 1205 | denali_setup_dma(denali, DENALI_READ); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1206 | |
| 1207 | /* wait for operation to complete */ |
Brian Norris | ba5f2bc | 2014-09-19 09:37:19 -0700 | [diff] [blame] | 1208 | wait_for_irq(denali, irq_mask); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1209 | |
Jamie Iles | 8445794 | 2011-05-06 15:28:55 +0100 | [diff] [blame] | 1210 | dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1211 | |
David Woodhouse | aadff49 | 2010-05-13 16:12:43 +0100 | [diff] [blame] | 1212 | denali_enable_dma(denali, false); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1213 | |
| 1214 | memcpy(buf, denali->buf.buf, mtd->writesize); |
| 1215 | memcpy(chip->oob_poi, denali->buf.buf + mtd->writesize, mtd->oobsize); |
| 1216 | |
| 1217 | return 0; |
| 1218 | } |
| 1219 | |
| 1220 | static uint8_t denali_read_byte(struct mtd_info *mtd) |
| 1221 | { |
| 1222 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
| 1223 | uint8_t result = 0xff; |
| 1224 | |
| 1225 | if (denali->buf.head < denali->buf.tail) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1226 | result = denali->buf.buf[denali->buf.head++]; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1227 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1228 | return result; |
| 1229 | } |
| 1230 | |
| 1231 | static void denali_select_chip(struct mtd_info *mtd, int chip) |
| 1232 | { |
| 1233 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
Chuanxiao Dong | 7cfffac | 2010-08-10 00:16:51 +0800 | [diff] [blame] | 1234 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1235 | spin_lock_irq(&denali->irq_lock); |
| 1236 | denali->flash_bank = chip; |
| 1237 | spin_unlock_irq(&denali->irq_lock); |
| 1238 | } |
| 1239 | |
| 1240 | static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip) |
| 1241 | { |
| 1242 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
| 1243 | int status = denali->status; |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 1244 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1245 | denali->status = 0; |
| 1246 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1247 | return status; |
| 1248 | } |
| 1249 | |
Brian Norris | 49c50b9 | 2014-05-06 16:02:19 -0700 | [diff] [blame] | 1250 | static int denali_erase(struct mtd_info *mtd, int page) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1251 | { |
| 1252 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
| 1253 | |
Masahiro Yamada | 5637b69 | 2014-09-09 11:01:52 +0900 | [diff] [blame] | 1254 | uint32_t cmd, irq_status; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1255 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1256 | clear_interrupts(denali); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1257 | |
| 1258 | /* setup page read request for access type */ |
| 1259 | cmd = MODE_10 | BANK(denali->flash_bank) | page; |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 1260 | index_addr(denali, cmd, 0x1); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1261 | |
| 1262 | /* wait for erase to complete or failure to occur */ |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 1263 | irq_status = wait_for_irq(denali, INTR__ERASE_COMP | INTR__ERASE_FAIL); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1264 | |
Masahiro Yamada | 1aded58 | 2017-03-23 05:07:06 +0900 | [diff] [blame] | 1265 | return irq_status & INTR__ERASE_FAIL ? NAND_STATUS_FAIL : PASS; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1266 | } |
| 1267 | |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1268 | static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1269 | int page) |
| 1270 | { |
| 1271 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 1272 | uint32_t addr, id; |
| 1273 | int i; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1274 | |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 1275 | switch (cmd) { |
Chuanxiao Dong | a99d179 | 2010-07-27 11:32:21 +0800 | [diff] [blame] | 1276 | case NAND_CMD_PAGEPROG: |
| 1277 | break; |
| 1278 | case NAND_CMD_STATUS: |
| 1279 | read_status(denali); |
| 1280 | break; |
| 1281 | case NAND_CMD_READID: |
Florian Fainelli | 42af8b5 | 2010-08-30 18:32:20 +0200 | [diff] [blame] | 1282 | case NAND_CMD_PARAM: |
Chuanxiao Dong | a99d179 | 2010-07-27 11:32:21 +0800 | [diff] [blame] | 1283 | reset_buf(denali); |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1284 | /* |
| 1285 | * sometimes ManufactureId read from register is not right |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 1286 | * e.g. some of Micron MT29F32G08QAA MLC NAND chips |
| 1287 | * So here we send READID cmd to NAND insteand |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1288 | */ |
Masahiro Yamada | 3157d1e | 2014-09-09 11:01:53 +0900 | [diff] [blame] | 1289 | addr = MODE_11 | BANK(denali->flash_bank); |
| 1290 | index_addr(denali, addr | 0, 0x90); |
Enrico Jorns | 9c07d09 | 2015-09-18 10:02:41 +0200 | [diff] [blame] | 1291 | index_addr(denali, addr | 1, col); |
grmoore@altera.com | d68a5c3 | 2014-06-23 14:21:10 -0500 | [diff] [blame] | 1292 | for (i = 0; i < 8; i++) { |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 1293 | index_addr_read_data(denali, addr | 2, &id); |
Chuanxiao Dong | ef41e1b | 2010-08-06 00:48:49 +0800 | [diff] [blame] | 1294 | write_byte_to_buf(denali, id); |
Chuanxiao Dong | a99d179 | 2010-07-27 11:32:21 +0800 | [diff] [blame] | 1295 | } |
| 1296 | break; |
| 1297 | case NAND_CMD_READ0: |
| 1298 | case NAND_CMD_SEQIN: |
| 1299 | denali->page = page; |
| 1300 | break; |
| 1301 | case NAND_CMD_RESET: |
| 1302 | reset_bank(denali); |
| 1303 | break; |
| 1304 | case NAND_CMD_READOOB: |
| 1305 | /* TODO: Read OOB data */ |
| 1306 | break; |
| 1307 | default: |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1308 | pr_err(": unsupported command received 0x%x\n", cmd); |
Chuanxiao Dong | a99d179 | 2010-07-27 11:32:21 +0800 | [diff] [blame] | 1309 | break; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1310 | } |
| 1311 | } |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1312 | /* end NAND core entry points */ |
| 1313 | |
| 1314 | /* Initialization code to bring the device up to a known good state */ |
| 1315 | static void denali_hw_init(struct denali_nand_info *denali) |
| 1316 | { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1317 | /* |
Masahiro Yamada | e7beeee | 2017-03-30 15:45:57 +0900 | [diff] [blame] | 1318 | * The REVISION register may not be reliable. Platforms are allowed to |
| 1319 | * override it. |
| 1320 | */ |
| 1321 | if (!denali->revision) |
| 1322 | denali->revision = |
| 1323 | swab16(ioread32(denali->flash_reg + REVISION)); |
| 1324 | |
| 1325 | /* |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1326 | * tell driver how many bit controller will skip before |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1327 | * writing ECC code in OOB, this register may be already |
| 1328 | * set by firmware. So we read this value out. |
| 1329 | * if this value is 0, just let it be. |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1330 | */ |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1331 | denali->bbtskipbytes = ioread32(denali->flash_reg + |
| 1332 | SPARE_AREA_SKIP_BYTES); |
Jamie Iles | bc27ede | 2011-06-06 17:11:34 +0100 | [diff] [blame] | 1333 | detect_max_banks(denali); |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 1334 | denali_nand_reset(denali); |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 1335 | iowrite32(0x0F, denali->flash_reg + RB_PIN_ENABLED); |
| 1336 | iowrite32(CHIP_EN_DONT_CARE__FLAG, |
Chuanxiao Dong | bdca6da | 2010-07-27 11:28:09 +0800 | [diff] [blame] | 1337 | denali->flash_reg + CHIP_ENABLE_DONT_CARE); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1338 | |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 1339 | iowrite32(0xffff, denali->flash_reg + SPARE_AREA_MARKER); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1340 | |
| 1341 | /* Should set value for these registers when init */ |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 1342 | iowrite32(0, denali->flash_reg + TWO_ROW_ADDR_CYCLES); |
| 1343 | iowrite32(1, denali->flash_reg + ECC_ENABLE); |
Chuanxiao Dong | 5eab6aaa | 2010-08-12 10:07:18 +0800 | [diff] [blame] | 1344 | denali_nand_timing_set(denali); |
| 1345 | denali_irq_init(denali); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1346 | } |
| 1347 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1348 | /* |
| 1349 | * Althogh controller spec said SLC ECC is forceb to be 4bit, |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1350 | * but denali controller in MRST only support 15bit and 8bit ECC |
| 1351 | * correction |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1352 | */ |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1353 | #define ECC_8BITS 14 |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1354 | #define ECC_15BITS 26 |
Boris Brezillon | 14fad62 | 2016-02-03 20:00:11 +0100 | [diff] [blame] | 1355 | |
| 1356 | static int denali_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 1357 | struct mtd_oob_region *oobregion) |
| 1358 | { |
| 1359 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
| 1360 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 1361 | |
| 1362 | if (section) |
| 1363 | return -ERANGE; |
| 1364 | |
| 1365 | oobregion->offset = denali->bbtskipbytes; |
| 1366 | oobregion->length = chip->ecc.total; |
| 1367 | |
| 1368 | return 0; |
| 1369 | } |
| 1370 | |
| 1371 | static int denali_ooblayout_free(struct mtd_info *mtd, int section, |
| 1372 | struct mtd_oob_region *oobregion) |
| 1373 | { |
| 1374 | struct denali_nand_info *denali = mtd_to_denali(mtd); |
| 1375 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 1376 | |
| 1377 | if (section) |
| 1378 | return -ERANGE; |
| 1379 | |
| 1380 | oobregion->offset = chip->ecc.total + denali->bbtskipbytes; |
| 1381 | oobregion->length = mtd->oobsize - oobregion->offset; |
| 1382 | |
| 1383 | return 0; |
| 1384 | } |
| 1385 | |
| 1386 | static const struct mtd_ooblayout_ops denali_ooblayout_ops = { |
| 1387 | .ecc = denali_ooblayout_ecc, |
| 1388 | .free = denali_ooblayout_free, |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1389 | }; |
| 1390 | |
| 1391 | static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' }; |
| 1392 | static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' }; |
| 1393 | |
| 1394 | static struct nand_bbt_descr bbt_main_descr = { |
| 1395 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
| 1396 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 1397 | .offs = 8, |
| 1398 | .len = 4, |
| 1399 | .veroffs = 12, |
| 1400 | .maxblocks = 4, |
| 1401 | .pattern = bbt_pattern, |
| 1402 | }; |
| 1403 | |
| 1404 | static struct nand_bbt_descr bbt_mirror_descr = { |
| 1405 | .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE |
| 1406 | | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP, |
| 1407 | .offs = 8, |
| 1408 | .len = 4, |
| 1409 | .veroffs = 12, |
| 1410 | .maxblocks = 4, |
| 1411 | .pattern = mirror_pattern, |
| 1412 | }; |
| 1413 | |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 1414 | /* initialize driver data structures */ |
Brian Norris | 8c51943 | 2013-08-10 22:57:30 -0700 | [diff] [blame] | 1415 | static void denali_drv_init(struct denali_nand_info *denali) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1416 | { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1417 | /* |
| 1418 | * the completion object will be used to notify |
| 1419 | * the callee that the interrupt is done |
| 1420 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1421 | init_completion(&denali->complete); |
| 1422 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1423 | /* |
| 1424 | * the spinlock will be used to synchronize the ISR with any |
| 1425 | * element that might be access shared data (interrupt status) |
| 1426 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1427 | spin_lock_init(&denali->irq_lock); |
| 1428 | |
| 1429 | /* indicate that MTD has not selected a valid bank yet */ |
| 1430 | denali->flash_bank = CHIP_SELECT_INVALID; |
| 1431 | |
| 1432 | /* initialize our irq_status variable to indicate no interrupts */ |
| 1433 | denali->irq_status = 0; |
| 1434 | } |
| 1435 | |
Masahiro Yamada | e93c164 | 2017-03-23 05:07:21 +0900 | [diff] [blame] | 1436 | static int denali_multidev_fixup(struct denali_nand_info *denali) |
Masahiro Yamada | 6da27b4 | 2017-03-23 05:07:20 +0900 | [diff] [blame] | 1437 | { |
| 1438 | struct nand_chip *chip = &denali->nand; |
| 1439 | struct mtd_info *mtd = nand_to_mtd(chip); |
| 1440 | |
| 1441 | /* |
| 1442 | * Support for multi device: |
| 1443 | * When the IP configuration is x16 capable and two x8 chips are |
| 1444 | * connected in parallel, DEVICES_CONNECTED should be set to 2. |
| 1445 | * In this case, the core framework knows nothing about this fact, |
| 1446 | * so we should tell it the _logical_ pagesize and anything necessary. |
| 1447 | */ |
| 1448 | denali->devnum = ioread32(denali->flash_reg + DEVICES_CONNECTED); |
| 1449 | |
Masahiro Yamada | cc5d803 | 2017-03-23 05:07:22 +0900 | [diff] [blame] | 1450 | /* |
| 1451 | * On some SoCs, DEVICES_CONNECTED is not auto-detected. |
| 1452 | * For those, DEVICES_CONNECTED is left to 0. Set 1 if it is the case. |
| 1453 | */ |
| 1454 | if (denali->devnum == 0) { |
| 1455 | denali->devnum = 1; |
| 1456 | iowrite32(1, denali->flash_reg + DEVICES_CONNECTED); |
| 1457 | } |
| 1458 | |
Masahiro Yamada | e93c164 | 2017-03-23 05:07:21 +0900 | [diff] [blame] | 1459 | if (denali->devnum == 1) |
| 1460 | return 0; |
| 1461 | |
| 1462 | if (denali->devnum != 2) { |
| 1463 | dev_err(denali->dev, "unsupported number of devices %d\n", |
| 1464 | denali->devnum); |
| 1465 | return -EINVAL; |
| 1466 | } |
| 1467 | |
| 1468 | /* 2 chips in parallel */ |
| 1469 | mtd->size <<= 1; |
| 1470 | mtd->erasesize <<= 1; |
| 1471 | mtd->writesize <<= 1; |
| 1472 | mtd->oobsize <<= 1; |
| 1473 | chip->chipsize <<= 1; |
| 1474 | chip->page_shift += 1; |
| 1475 | chip->phys_erase_shift += 1; |
| 1476 | chip->bbt_erase_shift += 1; |
| 1477 | chip->chip_shift += 1; |
| 1478 | chip->pagemask <<= 1; |
| 1479 | chip->ecc.size <<= 1; |
| 1480 | chip->ecc.bytes <<= 1; |
| 1481 | chip->ecc.strength <<= 1; |
| 1482 | denali->bbtskipbytes <<= 1; |
| 1483 | |
| 1484 | return 0; |
Masahiro Yamada | 6da27b4 | 2017-03-23 05:07:20 +0900 | [diff] [blame] | 1485 | } |
| 1486 | |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1487 | int denali_init(struct denali_nand_info *denali) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1488 | { |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1489 | struct nand_chip *chip = &denali->nand; |
| 1490 | struct mtd_info *mtd = nand_to_mtd(chip); |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1491 | int ret; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1492 | |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1493 | if (denali->platform == INTEL_CE4100) { |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1494 | /* |
| 1495 | * Due to a silicon limitation, we can only support |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1496 | * ONFI timing mode 1 and below. |
| 1497 | */ |
Chuanxiao Dong | 345b1d3 | 2010-07-27 10:41:53 +0800 | [diff] [blame] | 1498 | if (onfi_timing_mode < -1 || onfi_timing_mode > 1) { |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1499 | pr_err("Intel CE4100 only supports ONFI timing mode 1 or below\n"); |
| 1500 | return -EINVAL; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1501 | } |
| 1502 | } |
| 1503 | |
Huang Shijie | e07caa3 | 2013-12-21 00:02:28 +0800 | [diff] [blame] | 1504 | /* allocate a temporary buffer for nand_scan_ident() */ |
| 1505 | denali->buf.buf = devm_kzalloc(denali->dev, PAGE_SIZE, |
| 1506 | GFP_DMA | GFP_KERNEL); |
| 1507 | if (!denali->buf.buf) |
| 1508 | return -ENOMEM; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1509 | |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1510 | mtd->dev.parent = denali->dev; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1511 | denali_hw_init(denali); |
| 1512 | denali_drv_init(denali); |
| 1513 | |
Masahiro Yamada | 7ebb8d0 | 2016-11-09 13:35:27 +0900 | [diff] [blame] | 1514 | /* Request IRQ after all the hardware initialization is finished */ |
| 1515 | ret = devm_request_irq(denali->dev, denali->irq, denali_isr, |
| 1516 | IRQF_SHARED, DENALI_NAND_NAME, denali); |
| 1517 | if (ret) { |
Masahiro Yamada | 789ccf1 | 2016-11-09 13:35:24 +0900 | [diff] [blame] | 1518 | dev_err(denali->dev, "Unable to request IRQ\n"); |
Masahiro Yamada | 7ebb8d0 | 2016-11-09 13:35:27 +0900 | [diff] [blame] | 1519 | return ret; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1520 | } |
| 1521 | |
| 1522 | /* now that our ISR is registered, we can enable interrupts */ |
Chuanxiao Dong | eda936e | 2010-07-27 14:17:37 +0800 | [diff] [blame] | 1523 | denali_set_intr_modes(denali, true); |
Masahiro Yamada | 63757d4 | 2017-03-23 05:07:18 +0900 | [diff] [blame] | 1524 | nand_set_flash_node(chip, denali->dev->of_node); |
Masahiro Yamada | 8aabdf3 | 2017-03-30 15:45:48 +0900 | [diff] [blame] | 1525 | /* Fallback to the default name if DT did not give "label" property */ |
| 1526 | if (!mtd->name) |
| 1527 | mtd->name = "denali-nand"; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1528 | |
| 1529 | /* register the driver with the NAND core subsystem */ |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1530 | chip->select_chip = denali_select_chip; |
| 1531 | chip->cmdfunc = denali_cmdfunc; |
| 1532 | chip->read_byte = denali_read_byte; |
| 1533 | chip->waitfunc = denali_waitfunc; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1534 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1535 | /* |
| 1536 | * scan for NAND devices attached to the controller |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1537 | * this is the first stage in a two step process to register |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1538 | * with the nand subsystem |
| 1539 | */ |
Masahiro Yamada | a227d4e | 2016-11-09 13:35:28 +0900 | [diff] [blame] | 1540 | ret = nand_scan_ident(mtd, denali->max_banks, NULL); |
| 1541 | if (ret) |
Chuanxiao Dong | 5c0eb90 | 2010-08-09 18:37:00 +0800 | [diff] [blame] | 1542 | goto failed_req_irq; |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1543 | |
Huang Shijie | e07caa3 | 2013-12-21 00:02:28 +0800 | [diff] [blame] | 1544 | /* allocate the right size buffer now */ |
| 1545 | devm_kfree(denali->dev, denali->buf.buf); |
| 1546 | denali->buf.buf = devm_kzalloc(denali->dev, |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1547 | mtd->writesize + mtd->oobsize, |
Huang Shijie | e07caa3 | 2013-12-21 00:02:28 +0800 | [diff] [blame] | 1548 | GFP_KERNEL); |
| 1549 | if (!denali->buf.buf) { |
| 1550 | ret = -ENOMEM; |
| 1551 | goto failed_req_irq; |
| 1552 | } |
| 1553 | |
Masahiro Yamada | 210a2c8 | 2017-03-30 15:45:54 +0900 | [diff] [blame] | 1554 | ret = dma_set_mask(denali->dev, |
| 1555 | DMA_BIT_MASK(denali->caps & DENALI_CAP_DMA_64BIT ? |
| 1556 | 64 : 32)); |
Huang Shijie | e07caa3 | 2013-12-21 00:02:28 +0800 | [diff] [blame] | 1557 | if (ret) { |
Masahiro Yamada | 789ccf1 | 2016-11-09 13:35:24 +0900 | [diff] [blame] | 1558 | dev_err(denali->dev, "No usable DMA configuration\n"); |
Huang Shijie | e07caa3 | 2013-12-21 00:02:28 +0800 | [diff] [blame] | 1559 | goto failed_req_irq; |
| 1560 | } |
| 1561 | |
| 1562 | denali->buf.dma_buf = dma_map_single(denali->dev, denali->buf.buf, |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1563 | mtd->writesize + mtd->oobsize, |
Huang Shijie | e07caa3 | 2013-12-21 00:02:28 +0800 | [diff] [blame] | 1564 | DMA_BIDIRECTIONAL); |
| 1565 | if (dma_mapping_error(denali->dev, denali->buf.dma_buf)) { |
Masahiro Yamada | 789ccf1 | 2016-11-09 13:35:24 +0900 | [diff] [blame] | 1566 | dev_err(denali->dev, "Failed to map DMA buffer\n"); |
Huang Shijie | e07caa3 | 2013-12-21 00:02:28 +0800 | [diff] [blame] | 1567 | ret = -EIO; |
Chuanxiao Dong | 5c0eb90 | 2010-08-09 18:37:00 +0800 | [diff] [blame] | 1568 | goto failed_req_irq; |
Chuanxiao.Dong | 6640652 | 2010-08-06 18:48:21 +0800 | [diff] [blame] | 1569 | } |
| 1570 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1571 | /* |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1572 | * second stage of the NAND scan |
Chuanxiao | 5bac3ac | 2010-08-05 23:06:04 +0800 | [diff] [blame] | 1573 | * this stage requires information regarding ECC and |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1574 | * bad block management. |
| 1575 | */ |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1576 | |
| 1577 | /* Bad block management */ |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1578 | chip->bbt_td = &bbt_main_descr; |
| 1579 | chip->bbt_md = &bbt_mirror_descr; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1580 | |
| 1581 | /* skip the scan for now until we have OOB read and write support */ |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1582 | chip->bbt_options |= NAND_BBT_USE_FLASH; |
| 1583 | chip->options |= NAND_SKIP_BBTSCAN; |
| 1584 | chip->ecc.mode = NAND_ECC_HW_SYNDROME; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1585 | |
Graham Moore | d99d728 | 2015-01-14 09:38:50 -0600 | [diff] [blame] | 1586 | /* no subpage writes on denali */ |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1587 | chip->options |= NAND_NO_SUBPAGE_WRITE; |
Graham Moore | d99d728 | 2015-01-14 09:38:50 -0600 | [diff] [blame] | 1588 | |
Masahiro Yamada | 43914a2 | 2014-09-09 11:01:51 +0900 | [diff] [blame] | 1589 | /* |
| 1590 | * Denali Controller only support 15bit and 8bit ECC in MRST, |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1591 | * so just let controller do 15bit ECC for MLC and 8bit ECC for |
| 1592 | * SLC if possible. |
| 1593 | * */ |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1594 | if (!nand_is_slc(chip) && |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1595 | (mtd->oobsize > (denali->bbtskipbytes + |
| 1596 | ECC_15BITS * (mtd->writesize / |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1597 | ECC_SECTOR_SIZE)))) { |
| 1598 | /* if MLC OOB size is large enough, use 15bit ECC*/ |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1599 | chip->ecc.strength = 15; |
| 1600 | chip->ecc.bytes = ECC_15BITS; |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 1601 | iowrite32(15, denali->flash_reg + ECC_CORRECTION); |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1602 | } else if (mtd->oobsize < (denali->bbtskipbytes + |
| 1603 | ECC_8BITS * (mtd->writesize / |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1604 | ECC_SECTOR_SIZE))) { |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 1605 | pr_err("Your NAND chip OOB is not large enough to contain 8bit ECC correction codes"); |
Chuanxiao Dong | 5c0eb90 | 2010-08-09 18:37:00 +0800 | [diff] [blame] | 1606 | goto failed_req_irq; |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1607 | } else { |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1608 | chip->ecc.strength = 8; |
| 1609 | chip->ecc.bytes = ECC_8BITS; |
Chuanxiao Dong | 24c3fa3 | 2010-08-09 23:59:23 +0800 | [diff] [blame] | 1610 | iowrite32(8, denali->flash_reg + ECC_CORRECTION); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1611 | } |
| 1612 | |
Boris Brezillon | 14fad62 | 2016-02-03 20:00:11 +0100 | [diff] [blame] | 1613 | mtd_set_ooblayout(mtd, &denali_ooblayout_ops); |
Chuanxiao Dong | db9a3210 | 2010-08-06 18:02:03 +0800 | [diff] [blame] | 1614 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1615 | /* override the default read operations */ |
Masahiro Yamada | 6da27b4 | 2017-03-23 05:07:20 +0900 | [diff] [blame] | 1616 | chip->ecc.size = ECC_SECTOR_SIZE; |
Masahiro Yamada | 1394a72 | 2017-03-23 05:07:17 +0900 | [diff] [blame] | 1617 | chip->ecc.read_page = denali_read_page; |
| 1618 | chip->ecc.read_page_raw = denali_read_page_raw; |
| 1619 | chip->ecc.write_page = denali_write_page; |
| 1620 | chip->ecc.write_page_raw = denali_write_page_raw; |
| 1621 | chip->ecc.read_oob = denali_read_oob; |
| 1622 | chip->ecc.write_oob = denali_write_oob; |
| 1623 | chip->erase = denali_erase; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1624 | |
Masahiro Yamada | e93c164 | 2017-03-23 05:07:21 +0900 | [diff] [blame] | 1625 | ret = denali_multidev_fixup(denali); |
| 1626 | if (ret) |
| 1627 | goto failed_req_irq; |
Masahiro Yamada | 6da27b4 | 2017-03-23 05:07:20 +0900 | [diff] [blame] | 1628 | |
Masahiro Yamada | a227d4e | 2016-11-09 13:35:28 +0900 | [diff] [blame] | 1629 | ret = nand_scan_tail(mtd); |
| 1630 | if (ret) |
Chuanxiao Dong | 5c0eb90 | 2010-08-09 18:37:00 +0800 | [diff] [blame] | 1631 | goto failed_req_irq; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1632 | |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1633 | ret = mtd_device_register(mtd, NULL, 0); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1634 | if (ret) { |
Masahiro Yamada | 789ccf1 | 2016-11-09 13:35:24 +0900 | [diff] [blame] | 1635 | dev_err(denali->dev, "Failed to register MTD: %d\n", ret); |
Chuanxiao Dong | 5c0eb90 | 2010-08-09 18:37:00 +0800 | [diff] [blame] | 1636 | goto failed_req_irq; |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1637 | } |
| 1638 | return 0; |
| 1639 | |
Chuanxiao Dong | 5c0eb90 | 2010-08-09 18:37:00 +0800 | [diff] [blame] | 1640 | failed_req_irq: |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1641 | denali_irq_cleanup(denali->irq, denali); |
| 1642 | |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1643 | return ret; |
| 1644 | } |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1645 | EXPORT_SYMBOL(denali_init); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1646 | |
| 1647 | /* driver exit point */ |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1648 | void denali_remove(struct denali_nand_info *denali) |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1649 | { |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1650 | struct mtd_info *mtd = nand_to_mtd(&denali->nand); |
Boris BREZILLON | 320092a | 2015-12-11 15:02:34 +0100 | [diff] [blame] | 1651 | /* |
| 1652 | * Pre-compute DMA buffer size to avoid any problems in case |
| 1653 | * nand_release() ever changes in a way that mtd->writesize and |
| 1654 | * mtd->oobsize are not reliable after this call. |
| 1655 | */ |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1656 | int bufsize = mtd->writesize + mtd->oobsize; |
Boris BREZILLON | 320092a | 2015-12-11 15:02:34 +0100 | [diff] [blame] | 1657 | |
Boris BREZILLON | 442f201b | 2015-12-11 15:06:00 +0100 | [diff] [blame] | 1658 | nand_release(mtd); |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1659 | denali_irq_cleanup(denali->irq, denali); |
Boris BREZILLON | 320092a | 2015-12-11 15:02:34 +0100 | [diff] [blame] | 1660 | dma_unmap_single(denali->dev, denali->buf.dma_buf, bufsize, |
Masahiro Yamada | 8125450 | 2014-09-16 20:04:25 +0900 | [diff] [blame] | 1661 | DMA_BIDIRECTIONAL); |
Jason Roberts | ce08259 | 2010-05-13 15:57:33 +0100 | [diff] [blame] | 1662 | } |
Dinh Nguyen | 2a0a288 | 2012-09-27 10:58:05 -0600 | [diff] [blame] | 1663 | EXPORT_SYMBOL(denali_remove); |