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