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