Merge branches 'iommu/fixes', 'dma-debug', 'x86/amd', 'x86/vt-d', 'arm/tegra' and...
[deliverable/linux.git] / drivers / mtd / nand / denali.c
CommitLineData
ce082596
JR
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>
84457949 22#include <linux/dma-mapping.h>
ce082596
JR
23#include <linux/wait.h>
24#include <linux/mutex.h>
b8664b37 25#include <linux/slab.h>
ce082596
JR
26#include <linux/pci.h>
27#include <linux/mtd/mtd.h>
28#include <linux/module.h>
29
30#include "denali.h"
31
32MODULE_LICENSE("GPL");
33
5bac3acf 34/* We define a module parameter that allows the user to override
ce082596
JR
35 * the hardware and decide what timing mode should be used.
36 */
37#define NAND_DEFAULT_TIMINGS -1
38
39static int onfi_timing_mode = NAND_DEFAULT_TIMINGS;
40module_param(onfi_timing_mode, int, S_IRUGO);
bdca6dae
CD
41MODULE_PARM_DESC(onfi_timing_mode, "Overrides default ONFI setting."
42 " -1 indicates use default timings");
ce082596
JR
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. */
9589bf5b
JI
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)
ce082596 58
5bac3acf 59/* indicates whether or not the internal value for the flash bank is
b292c341 60 * valid or not */
5bac3acf 61#define CHIP_SELECT_INVALID -1
ce082596
JR
62
63#define SUPPORT_8BITECC 1
64
5bac3acf 65/* This macro divides two integers and rounds fractional values up
ce082596
JR
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
b292c341 75 * configuration options. */
ce082596
JR
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
5bac3acf 88/* this is a helper macro that allows us to
ce082596
JR
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 */
93static 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
ce082596
JR
99/* forward declarations */
100static void clear_interrupts(struct denali_nand_info *denali);
bdca6dae
CD
101static uint32_t wait_for_irq(struct denali_nand_info *denali,
102 uint32_t irq_mask);
103static void denali_irq_enable(struct denali_nand_info *denali,
104 uint32_t int_mask);
ce082596
JR
105static uint32_t read_interrupt_status(struct denali_nand_info *denali);
106
bdca6dae
CD
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.
ce082596 112*/
bdca6dae
CD
113static void index_addr(struct denali_nand_info *denali,
114 uint32_t address, uint32_t data)
ce082596 115{
24c3fa36
CD
116 iowrite32(address, denali->flash_mem);
117 iowrite32(data, denali->flash_mem + 0x10);
ce082596
JR
118}
119
120/* Perform an indexed read of the device */
121static void index_addr_read_data(struct denali_nand_info *denali,
122 uint32_t address, uint32_t *pdata)
123{
24c3fa36 124 iowrite32(address, denali->flash_mem);
ce082596
JR
125 *pdata = ioread32(denali->flash_mem + 0x10);
126}
127
5bac3acf 128/* We need to buffer some data for some of the NAND core routines.
ce082596
JR
129 * The operations manage buffering that data. */
130static void reset_buf(struct denali_nand_info *denali)
131{
132 denali->buf.head = denali->buf.tail = 0;
133}
134
135static 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 */
142static 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
f0bc0c77
CD
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);
ce082596
JR
154}
155
156/* resets a specific device connected to the core */
157static void reset_bank(struct denali_nand_info *denali)
158{
159 uint32_t irq_status = 0;
9589bf5b
JI
160 uint32_t irq_mask = INTR_STATUS__RST_COMP |
161 INTR_STATUS__TIME_OUT;
ce082596
JR
162
163 clear_interrupts(denali);
164
9589bf5b 165 iowrite32(1 << denali->flash_bank, denali->flash_reg + DEVICE_RESET);
ce082596
JR
166
167 irq_status = wait_for_irq(denali, irq_mask);
5bac3acf 168
9589bf5b 169 if (irq_status & INTR_STATUS__TIME_OUT)
84457949 170 dev_err(denali->dev, "reset bank failed.\n");
ce082596
JR
171}
172
173/* Reset the flash controller */
eda936ef 174static uint16_t denali_nand_reset(struct denali_nand_info *denali)
ce082596
JR
175{
176 uint32_t i;
177
84457949 178 dev_dbg(denali->dev, "%s, Line %d, Function: %s\n",
ce082596
JR
179 __FILE__, __LINE__, __func__);
180
c89eeda8 181 for (i = 0 ; i < denali->max_banks; i++)
9589bf5b
JI
182 iowrite32(INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT,
183 denali->flash_reg + INTR_STATUS(i));
ce082596 184
c89eeda8 185 for (i = 0 ; i < denali->max_banks; i++) {
9589bf5b 186 iowrite32(1 << i, denali->flash_reg + DEVICE_RESET);
bdca6dae 187 while (!(ioread32(denali->flash_reg +
9589bf5b
JI
188 INTR_STATUS(i)) &
189 (INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT)))
628bfd41 190 cpu_relax();
9589bf5b
JI
191 if (ioread32(denali->flash_reg + INTR_STATUS(i)) &
192 INTR_STATUS__TIME_OUT)
84457949 193 dev_dbg(denali->dev,
ce082596
JR
194 "NAND Reset operation timed out on bank %d\n", i);
195 }
196
c89eeda8 197 for (i = 0; i < denali->max_banks; i++)
9589bf5b
JI
198 iowrite32(INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT,
199 denali->flash_reg + INTR_STATUS(i));
ce082596
JR
200
201 return PASS;
202}
203
bdca6dae
CD
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.
ce082596 207 */
eda936ef 208static void nand_onfi_timing_set(struct denali_nand_info *denali,
bdca6dae 209 uint16_t mode)
ce082596
JR
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
84457949 231 dev_dbg(denali->dev, "%s, Line %d, Function: %s\n",
ce082596
JR
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)
84457949 268 dev_warn(denali->dev, "%s, Line %d: Warning!\n",
ce082596
JR
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
24c3fa36
CD
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);
ce082596
JR
304}
305
ce082596
JR
306/* queries the NAND device to see what ONFI modes it supports. */
307static uint16_t get_onfi_nand_para(struct denali_nand_info *denali)
308{
309 int i;
4c03bbdf
CD
310 /* we needn't to do a reset here because driver has already
311 * reset all the banks before
312 * */
ce082596
JR
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--) {
bdca6dae
CD
318 if (ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
319 (0x01 << i))
ce082596
JR
320 break;
321 }
322
eda936ef 323 nand_onfi_timing_set(denali, i);
ce082596
JR
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
4c03bbdf
CD
333static void get_samsung_nand_para(struct denali_nand_info *denali,
334 uint8_t device_id)
ce082596 335{
4c03bbdf 336 if (device_id == 0xd3) { /* Samsung K9WAG08U1A */
ce082596 337 /* Set timing register values according to datasheet */
24c3fa36
CD
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);
ce082596 345 }
ce082596
JR
346}
347
348static void get_toshiba_nand_para(struct denali_nand_info *denali)
349{
ce082596
JR
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)) {
24c3fa36 356 iowrite32(216, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
ce082596
JR
357 tmp = ioread32(denali->flash_reg + DEVICES_CONNECTED) *
358 ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
24c3fa36 359 iowrite32(tmp,
bdca6dae 360 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
ce082596 361#if SUPPORT_15BITECC
24c3fa36 362 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
ce082596 363#elif SUPPORT_8BITECC
24c3fa36 364 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
ce082596
JR
365#endif
366 }
ce082596
JR
367}
368
ef41e1bb
CD
369static void get_hynix_nand_para(struct denali_nand_info *denali,
370 uint8_t device_id)
ce082596 371{
ce082596
JR
372 uint32_t main_size, spare_size;
373
ef41e1bb 374 switch (device_id) {
ce082596
JR
375 case 0xD5: /* Hynix H27UAG8T2A, H27UBG8U5A or H27UCG8VFA */
376 case 0xD7: /* Hynix H27UDG8VEM, H27UCG8UDM or H27UCG8V5A */
24c3fa36
CD
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);
bdca6dae
CD
380 main_size = 4096 *
381 ioread32(denali->flash_reg + DEVICES_CONNECTED);
382 spare_size = 224 *
383 ioread32(denali->flash_reg + DEVICES_CONNECTED);
24c3fa36 384 iowrite32(main_size,
bdca6dae 385 denali->flash_reg + LOGICAL_PAGE_DATA_SIZE);
24c3fa36 386 iowrite32(spare_size,
bdca6dae 387 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
24c3fa36 388 iowrite32(0, denali->flash_reg + DEVICE_WIDTH);
ce082596 389#if SUPPORT_15BITECC
24c3fa36 390 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
ce082596 391#elif SUPPORT_8BITECC
24c3fa36 392 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
ce082596 393#endif
ce082596
JR
394 break;
395 default:
84457949 396 dev_warn(denali->dev,
ce082596
JR
397 "Spectra: Unknown Hynix NAND (Device ID: 0x%x)."
398 "Will use default parameter values instead.\n",
66406524 399 device_id);
ce082596
JR
400 }
401}
402
403/* determines how many NAND chips are connected to the controller. Note for
b292c341 404 * Intel CE4100 devices we don't support more than one device.
ce082596
JR
405 */
406static void find_valid_banks(struct denali_nand_info *denali)
407{
c89eeda8 408 uint32_t id[denali->max_banks];
ce082596
JR
409 int i;
410
411 denali->total_used_banks = 1;
c89eeda8 412 for (i = 0; i < denali->max_banks; i++) {
ce082596
JR
413 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 0), 0x90);
414 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 1), 0);
bdca6dae
CD
415 index_addr_read_data(denali,
416 (uint32_t)(MODE_11 | (i << 24) | 2), &id[i]);
ce082596 417
84457949 418 dev_dbg(denali->dev,
ce082596
JR
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
345b1d3b 432 if (denali->platform == INTEL_CE4100) {
ce082596
JR
433 /* Platform limitations of the CE4100 device limit
434 * users to a single chip solution for NAND.
5bac3acf
C
435 * Multichip support is not enabled.
436 */
345b1d3b 437 if (denali->total_used_banks != 1) {
84457949 438 dev_err(denali->dev,
7cfffac0 439 "Sorry, Intel CE4100 only supports "
ce082596
JR
440 "a single NAND device.\n");
441 BUG();
442 }
443 }
84457949 444 dev_dbg(denali->dev,
ce082596
JR
445 "denali->total_used_banks: %d\n", denali->total_used_banks);
446}
447
c89eeda8
JI
448/*
449 * Use the configuration feature register to determine the maximum number of
450 * banks that the hardware supports.
451 */
452static 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
ce082596
JR
459static void detect_partition_feature(struct denali_nand_info *denali)
460{
66406524
CD
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 * */
ce082596 467 if (ioread32(denali->flash_reg + FEATURES) & FEATURES__PARTITION) {
9589bf5b
JI
468 if ((ioread32(denali->flash_reg + PERM_SRC_ID(1)) &
469 PERM_SRC_ID__SRCID) == SPECTRA_PARTITION_ID) {
66406524 470 denali->fwblks =
9589bf5b
JI
471 ((ioread32(denali->flash_reg + MIN_MAX_BANK(1)) &
472 MIN_MAX_BANK__MIN_VALUE) *
66406524 473 denali->blksperchip)
ce082596 474 +
9589bf5b
JI
475 (ioread32(denali->flash_reg + MIN_BLK_ADDR(1)) &
476 MIN_BLK_ADDR__VALUE);
66406524
CD
477 } else
478 denali->fwblks = SPECTRA_START_BLOCK;
479 } else
480 denali->fwblks = SPECTRA_START_BLOCK;
ce082596
JR
481}
482
eda936ef 483static uint16_t denali_nand_timing_set(struct denali_nand_info *denali)
ce082596
JR
484{
485 uint16_t status = PASS;
ef41e1bb
CD
486 uint32_t id_bytes[5], addr;
487 uint8_t i, maf_id, device_id;
ce082596 488
84457949 489 dev_dbg(denali->dev,
7cfffac0
CD
490 "%s, Line %d, Function: %s\n",
491 __FILE__, __LINE__, __func__);
ce082596 492
ef41e1bb
CD
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];
ce082596
JR
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;
ef41e1bb 510 } else if (maf_id == 0xEC) { /* Samsung NAND */
4c03bbdf 511 get_samsung_nand_para(denali, device_id);
ef41e1bb 512 } else if (maf_id == 0x98) { /* Toshiba NAND */
ce082596 513 get_toshiba_nand_para(denali);
ef41e1bb
CD
514 } else if (maf_id == 0xAD) { /* Hynix NAND */
515 get_hynix_nand_para(denali, device_id);
ce082596
JR
516 }
517
84457949 518 dev_info(denali->dev,
7cfffac0
CD
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"
ce082596
JR
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),
7cfffac0 525 ioread32(denali->flash_reg + RE_2_RE),
ce082596
JR
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
ce082596
JR
532 find_valid_banks(denali);
533
534 detect_partition_feature(denali);
535
ce082596 536 /* If the user specified to override the default timings
5bac3acf 537 * with a specific ONFI mode, we apply those changes here.
ce082596
JR
538 */
539 if (onfi_timing_mode != NAND_DEFAULT_TIMINGS)
eda936ef 540 nand_onfi_timing_set(denali, onfi_timing_mode);
ce082596
JR
541
542 return status;
543}
544
eda936ef 545static void denali_set_intr_modes(struct denali_nand_info *denali,
ce082596
JR
546 uint16_t INT_ENABLE)
547{
84457949 548 dev_dbg(denali->dev, "%s, Line %d, Function: %s\n",
ce082596
JR
549 __FILE__, __LINE__, __func__);
550
551 if (INT_ENABLE)
24c3fa36 552 iowrite32(1, denali->flash_reg + GLOBAL_INT_ENABLE);
ce082596 553 else
24c3fa36 554 iowrite32(0, denali->flash_reg + GLOBAL_INT_ENABLE);
ce082596
JR
555}
556
557/* validation function to verify that the controlling software is making
b292c341 558 * a valid request
ce082596
JR
559 */
560static inline bool is_flash_bank_valid(int flash_bank)
561{
5bac3acf 562 return (flash_bank >= 0 && flash_bank < 4);
ce082596
JR
563}
564
565static void denali_irq_init(struct denali_nand_info *denali)
566{
567 uint32_t int_mask = 0;
9589bf5b 568 int i;
ce082596
JR
569
570 /* Disable global interrupts */
eda936ef 571 denali_set_intr_modes(denali, false);
ce082596
JR
572
573 int_mask = DENALI_IRQ_ALL;
574
575 /* Clear all status bits */
c89eeda8 576 for (i = 0; i < denali->max_banks; ++i)
9589bf5b 577 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS(i));
ce082596
JR
578
579 denali_irq_enable(denali, int_mask);
580}
581
582static void denali_irq_cleanup(int irqnum, struct denali_nand_info *denali)
583{
eda936ef 584 denali_set_intr_modes(denali, false);
ce082596
JR
585 free_irq(irqnum, denali);
586}
587
bdca6dae
CD
588static void denali_irq_enable(struct denali_nand_info *denali,
589 uint32_t int_mask)
ce082596 590{
9589bf5b
JI
591 int i;
592
c89eeda8 593 for (i = 0; i < denali->max_banks; ++i)
9589bf5b 594 iowrite32(int_mask, denali->flash_reg + INTR_EN(i));
ce082596
JR
595}
596
597/* This function only returns when an interrupt that this driver cares about
5bac3acf 598 * occurs. This is to reduce the overhead of servicing interrupts
ce082596
JR
599 */
600static inline uint32_t denali_irq_detected(struct denali_nand_info *denali)
601{
a99d1796 602 return read_interrupt_status(denali) & DENALI_IRQ_ALL;
ce082596
JR
603}
604
605/* Interrupts are cleared by writing a 1 to the appropriate status bit */
bdca6dae
CD
606static inline void clear_interrupt(struct denali_nand_info *denali,
607 uint32_t irq_mask)
ce082596
JR
608{
609 uint32_t intr_status_reg = 0;
610
9589bf5b 611 intr_status_reg = INTR_STATUS(denali->flash_bank);
ce082596 612
24c3fa36 613 iowrite32(irq_mask, denali->flash_reg + intr_status_reg);
ce082596
JR
614}
615
616static 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);
8ae61ebd 622 clear_interrupt(denali, status);
ce082596 623
ce082596
JR
624 denali->irq_status = 0x0;
625 spin_unlock_irq(&denali->irq_lock);
626}
627
628static uint32_t read_interrupt_status(struct denali_nand_info *denali)
629{
630 uint32_t intr_status_reg = 0;
631
9589bf5b 632 intr_status_reg = INTR_STATUS(denali->flash_bank);
ce082596
JR
633
634 return ioread32(denali->flash_reg + intr_status_reg);
635}
636
5bac3acf
C
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.
ce082596
JR
640 */
641static 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
5bac3acf
C
649 /* check to see if a valid NAND chip has
650 * been selected.
ce082596 651 */
345b1d3b 652 if (is_flash_bank_valid(denali->flash_bank)) {
5bac3acf 653 /* check to see if controller generated
ce082596 654 * the interrupt, since this is a shared interrupt */
bdca6dae
CD
655 irq_status = denali_irq_detected(denali);
656 if (irq_status != 0) {
ce082596
JR
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
674static 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
345b1d3b 681 do {
bdca6dae
CD
682 comp_res =
683 wait_for_completion_timeout(&denali->complete, timeout);
ce082596
JR
684 spin_lock_irq(&denali->irq_lock);
685 intr_status = denali->irq_status;
686
345b1d3b 687 if (intr_status & irq_mask) {
ce082596
JR
688 denali->irq_status &= ~irq_mask;
689 spin_unlock_irq(&denali->irq_lock);
ce082596
JR
690 /* our interrupt was detected */
691 break;
345b1d3b 692 } else {
5bac3acf
C
693 /* these are not the interrupts you are looking for -
694 * need to wait again */
ce082596 695 spin_unlock_irq(&denali->irq_lock);
ce082596
JR
696 retry = true;
697 }
698 } while (comp_res != 0);
699
345b1d3b 700 if (comp_res == 0) {
ce082596 701 /* timeout */
5bac3acf
C
702 printk(KERN_ERR "timeout occurred, status = 0x%x, mask = 0x%x\n",
703 intr_status, irq_mask);
ce082596
JR
704
705 intr_status = 0;
706 }
707 return intr_status;
708}
709
5bac3acf 710/* This helper function setups the registers for ECC and whether or not
25985edc 711 * the spare area will be transferred. */
5bac3acf 712static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en,
ce082596
JR
713 bool transfer_spare)
714{
5bac3acf 715 int ecc_en_flag = 0, transfer_spare_flag = 0;
ce082596
JR
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. */
24c3fa36
CD
722 iowrite32(ecc_en_flag, denali->flash_reg + ECC_ENABLE);
723 iowrite32(transfer_spare_flag,
bdca6dae 724 denali->flash_reg + TRANSFER_SPARE_REG);
ce082596
JR
725}
726
5bac3acf 727/* sends a pipeline command operation to the controller. See the Denali NAND
b292c341 728 * controller's user guide for more information (section 4.2.3.6).
ce082596 729 */
bdca6dae
CD
730static 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)
ce082596
JR
735{
736 int status = PASS;
5bac3acf 737 uint32_t addr = 0x0, cmd = 0x0, page_count = 1, irq_status = 0,
ce082596
JR
738 irq_mask = 0;
739
a99d1796 740 if (op == DENALI_READ)
9589bf5b 741 irq_mask = INTR_STATUS__LOAD_COMP;
a99d1796
CD
742 else if (op == DENALI_WRITE)
743 irq_mask = 0;
744 else
745 BUG();
ce082596
JR
746
747 setup_ecc_for_xfer(denali, ecc_en, transfer_spare);
748
ce082596 749 /* clear interrupts */
5bac3acf 750 clear_interrupts(denali);
ce082596
JR
751
752 addr = BANK(denali->flash_bank) | denali->page;
753
345b1d3b 754 if (op == DENALI_WRITE && access_type != SPARE_ACCESS) {
5bac3acf 755 cmd = MODE_01 | addr;
24c3fa36 756 iowrite32(cmd, denali->flash_mem);
345b1d3b 757 } else if (op == DENALI_WRITE && access_type == SPARE_ACCESS) {
ce082596 758 /* read spare area */
5bac3acf 759 cmd = MODE_10 | addr;
ce082596
JR
760 index_addr(denali, (uint32_t)cmd, access_type);
761
5bac3acf 762 cmd = MODE_01 | addr;
24c3fa36 763 iowrite32(cmd, denali->flash_mem);
345b1d3b 764 } else if (op == DENALI_READ) {
ce082596 765 /* setup page read request for access type */
5bac3acf 766 cmd = MODE_10 | addr;
ce082596
JR
767 index_addr(denali, (uint32_t)cmd, access_type);
768
769 /* page 33 of the NAND controller spec indicates we should not
5bac3acf 770 use the pipeline commands in Spare area only mode. So we
ce082596
JR
771 don't.
772 */
345b1d3b 773 if (access_type == SPARE_ACCESS) {
ce082596 774 cmd = MODE_01 | addr;
24c3fa36 775 iowrite32(cmd, denali->flash_mem);
345b1d3b 776 } else {
bdca6dae
CD
777 index_addr(denali, (uint32_t)cmd,
778 0x2000 | op | page_count);
5bac3acf
C
779
780 /* wait for command to be accepted
bdca6dae
CD
781 * can always use status0 bit as the
782 * mask is identical for each
ce082596
JR
783 * bank. */
784 irq_status = wait_for_irq(denali, irq_mask);
785
345b1d3b 786 if (irq_status == 0) {
84457949 787 dev_err(denali->dev,
7cfffac0
CD
788 "cmd, page, addr on timeout "
789 "(0x%x, 0x%x, 0x%x)\n",
790 cmd, denali->page, addr);
ce082596 791 status = FAIL;
345b1d3b 792 } else {
ce082596 793 cmd = MODE_01 | addr;
24c3fa36 794 iowrite32(cmd, denali->flash_mem);
ce082596
JR
795 }
796 }
797 }
798 return status;
799}
800
801/* helper function that simply writes a buffer to the flash */
bdca6dae
CD
802static int write_data_to_flash_mem(struct denali_nand_info *denali,
803 const uint8_t *buf,
804 int len)
ce082596
JR
805{
806 uint32_t i = 0, *buf32;
807
5bac3acf
C
808 /* verify that the len is a multiple of 4. see comment in
809 * read_data_from_flash_mem() */
ce082596
JR
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++)
24c3fa36 815 iowrite32(*buf32++, denali->flash_mem + 0x10);
5bac3acf 816 return i*4; /* intent is to return the number of bytes read */
ce082596
JR
817}
818
819/* helper function that simply reads a buffer from the flash */
bdca6dae
CD
820static int read_data_from_flash_mem(struct denali_nand_info *denali,
821 uint8_t *buf,
822 int len)
ce082596
JR
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
5bac3acf
C
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,
ce082596
JR
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++)
ce082596 839 *buf32++ = ioread32(denali->flash_mem + 0x10);
5bac3acf 840 return i*4; /* intent is to return the number of bytes read */
ce082596
JR
841}
842
843/* writes OOB data to the device */
844static 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;
9589bf5b
JI
848 uint32_t irq_mask = INTR_STATUS__PROGRAM_COMP |
849 INTR_STATUS__PROGRAM_FAIL;
ce082596
JR
850 int status = 0;
851
852 denali->page = page;
853
5bac3acf 854 if (denali_send_pipeline_cmd(denali, false, false, SPARE_ACCESS,
345b1d3b 855 DENALI_WRITE) == PASS) {
ce082596
JR
856 write_data_to_flash_mem(denali, buf, mtd->oobsize);
857
ce082596
JR
858 /* wait for operation to complete */
859 irq_status = wait_for_irq(denali, irq_mask);
860
345b1d3b 861 if (irq_status == 0) {
84457949 862 dev_err(denali->dev, "OOB write failed\n");
ce082596
JR
863 status = -EIO;
864 }
345b1d3b 865 } else {
84457949 866 dev_err(denali->dev, "unable to send pipeline command\n");
5bac3acf 867 status = -EIO;
ce082596
JR
868 }
869 return status;
870}
871
872/* reads OOB data from the device */
873static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
874{
875 struct denali_nand_info *denali = mtd_to_denali(mtd);
9589bf5b 876 uint32_t irq_mask = INTR_STATUS__LOAD_COMP,
bdca6dae 877 irq_status = 0, addr = 0x0, cmd = 0x0;
ce082596
JR
878
879 denali->page = page;
880
5bac3acf 881 if (denali_send_pipeline_cmd(denali, false, true, SPARE_ACCESS,
345b1d3b 882 DENALI_READ) == PASS) {
5bac3acf 883 read_data_from_flash_mem(denali, buf, mtd->oobsize);
ce082596 884
5bac3acf 885 /* wait for command to be accepted
ce082596
JR
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)
84457949 891 dev_err(denali->dev, "page on OOB timeout %d\n",
bdca6dae 892 denali->page);
ce082596
JR
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)
5bac3acf 898 * if you are in MAIN_ACCESS.
ce082596
JR
899 */
900 addr = BANK(denali->flash_bank) | denali->page;
5bac3acf 901 cmd = MODE_10 | addr;
ce082596 902 index_addr(denali, (uint32_t)cmd, MAIN_ACCESS);
ce082596
JR
903 }
904}
905
5bac3acf 906/* this function examines buffers to see if they contain data that
ce082596
JR
907 * indicate that the buffer is part of an erased region of flash.
908 */
909bool is_erased(uint8_t *buf, int len)
910{
911 int i = 0;
912 for (i = 0; i < len; i++)
ce082596 913 if (buf[i] != 0xFF)
ce082596 914 return false;
ce082596
JR
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)
8ae61ebd
CD
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)
ce082596
JR
924#define ECC_LAST_ERR(x) ((x) & ERR_CORRECTION_INFO__LAST_ERR_INFO)
925
5bac3acf 926static bool handle_ecc(struct denali_nand_info *denali, uint8_t *buf,
3f91e94f 927 uint32_t irq_status, unsigned int *max_bitflips)
ce082596
JR
928{
929 bool check_erased_page = false;
3f91e94f 930 unsigned int bitflips = 0;
ce082596 931
9589bf5b 932 if (irq_status & INTR_STATUS__ECC_ERR) {
ce082596
JR
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;
8ae61ebd 937 denali_set_intr_modes(denali, false);
ce082596 938
345b1d3b 939 do {
5bac3acf 940 err_address = ioread32(denali->flash_reg +
ce082596
JR
941 ECC_ERROR_ADDRESS);
942 err_sector = ECC_SECTOR(err_address);
943 err_byte = ECC_BYTE(err_address);
944
5bac3acf 945 err_correction_info = ioread32(denali->flash_reg +
ce082596 946 ERR_CORRECTION_INFO);
5bac3acf 947 err_correction_value =
ce082596
JR
948 ECC_CORRECTION_VALUE(err_correction_info);
949 err_device = ECC_ERR_DEVICE(err_correction_info);
950
345b1d3b 951 if (ECC_ERROR_CORRECTABLE(err_correction_info)) {
8ae61ebd 952 /* If err_byte is larger than ECC_SECTOR_SIZE,
25985edc 953 * means error happened in OOB, so we ignore
8ae61ebd
CD
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;
ce082596
JR
966 /* correct the ECC error */
967 buf[offset] ^= err_correction_value;
968 denali->mtd.ecc_stats.corrected++;
3f91e94f 969 bitflips++;
ce082596 970 }
345b1d3b 971 } else {
5bac3acf 972 /* if the error is not correctable, need to
bdca6dae
CD
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 * */
ce082596
JR
976 check_erased_page = true;
977 }
ce082596 978 } while (!ECC_LAST_ERR(err_correction_info));
8ae61ebd
CD
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) &
9589bf5b 984 INTR_STATUS__ECC_TRANSACTION_DONE))
8ae61ebd
CD
985 cpu_relax();
986 clear_interrupts(denali);
987 denali_set_intr_modes(denali, true);
ce082596 988 }
3f91e94f 989 *max_bitflips = bitflips;
ce082596
JR
990 return check_erased_page;
991}
992
993/* programs the controller to either enable/disable DMA transfers */
aadff49c 994static void denali_enable_dma(struct denali_nand_info *denali, bool en)
ce082596
JR
995{
996 uint32_t reg_val = 0x0;
997
a99d1796
CD
998 if (en)
999 reg_val = DMA_ENABLE__FLAG;
ce082596 1000
24c3fa36 1001 iowrite32(reg_val, denali->flash_reg + DMA_ENABLE);
ce082596
JR
1002 ioread32(denali->flash_reg + DMA_ENABLE);
1003}
1004
1005/* setups the HW to perform the data DMA */
aadff49c 1006static void denali_setup_dma(struct denali_nand_info *denali, int op)
ce082596
JR
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
5bac3acf 1029/* writes a page. user specifies type, and this function handles the
b292c341 1030 * configuration details. */
fdbad98d 1031static int write_page(struct mtd_info *mtd, struct nand_chip *chip,
ce082596
JR
1032 const uint8_t *buf, bool raw_xfer)
1033{
1034 struct denali_nand_info *denali = mtd_to_denali(mtd);
ce082596
JR
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;
9589bf5b
JI
1040 uint32_t irq_mask = INTR_STATUS__DMA_CMD_COMP |
1041 INTR_STATUS__PROGRAM_FAIL;
ce082596
JR
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
345b1d3b 1053 if (raw_xfer) {
ce082596 1054 /* transfer the data to the spare area */
5bac3acf
C
1055 memcpy(denali->buf.buf + mtd->writesize,
1056 chip->oob_poi,
1057 mtd->oobsize);
ce082596
JR
1058 }
1059
84457949 1060 dma_sync_single_for_device(denali->dev, addr, size, DMA_TO_DEVICE);
ce082596
JR
1061
1062 clear_interrupts(denali);
5bac3acf 1063 denali_enable_dma(denali, true);
ce082596 1064
aadff49c 1065 denali_setup_dma(denali, DENALI_WRITE);
ce082596
JR
1066
1067 /* wait for operation to complete */
1068 irq_status = wait_for_irq(denali, irq_mask);
1069
345b1d3b 1070 if (irq_status == 0) {
84457949 1071 dev_err(denali->dev,
7cfffac0
CD
1072 "timeout on write_page (type = %d)\n",
1073 raw_xfer);
5bac3acf 1074 denali->status =
9589bf5b 1075 (irq_status & INTR_STATUS__PROGRAM_FAIL) ?
bdca6dae 1076 NAND_STATUS_FAIL : PASS;
ce082596
JR
1077 }
1078
5bac3acf 1079 denali_enable_dma(denali, false);
84457949 1080 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_TO_DEVICE);
fdbad98d
JW
1081
1082 return 0;
ce082596
JR
1083}
1084
1085/* NAND core entry points */
1086
5bac3acf 1087/* this is the callback that the NAND core calls to write a page. Since
b292c341
CD
1088 * writing a page with ECC or without is similar, all the work is done
1089 * by write_page above.
1090 * */
fdbad98d 1091static int denali_write_page(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1092 const uint8_t *buf, int oob_required)
ce082596
JR
1093{
1094 /* for regular page writes, we let HW handle all the ECC
5bac3acf 1095 * data written to the device. */
fdbad98d 1096 return write_page(mtd, chip, buf, false);
ce082596
JR
1097}
1098
5bac3acf 1099/* This is the callback that the NAND core calls to write a page without ECC.
25985edc 1100 * raw access is similar to ECC page writes, so all the work is done in the
b292c341 1101 * write_page() function above.
ce082596 1102 */
fdbad98d 1103static int denali_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1104 const uint8_t *buf, int oob_required)
ce082596 1105{
5bac3acf 1106 /* for raw page writes, we want to disable ECC and simply write
ce082596 1107 whatever data is in the buffer. */
fdbad98d 1108 return write_page(mtd, chip, buf, true);
ce082596
JR
1109}
1110
5bac3acf 1111static int denali_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
ce082596
JR
1112 int page)
1113{
5bac3acf 1114 return write_oob_data(mtd, chip->oob_poi, page);
ce082596
JR
1115}
1116
5bac3acf 1117static int denali_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
5c2ffb11 1118 int page)
ce082596
JR
1119{
1120 read_oob_data(mtd, chip->oob_poi, page);
1121
5c2ffb11 1122 return 0;
ce082596
JR
1123}
1124
1125static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1126 uint8_t *buf, int oob_required, int page)
ce082596 1127{
3f91e94f 1128 unsigned int max_bitflips;
ce082596 1129 struct denali_nand_info *denali = mtd_to_denali(mtd);
ce082596
JR
1130
1131 dma_addr_t addr = denali->buf.dma_buf;
1132 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1133
1134 uint32_t irq_status = 0;
9589bf5b
JI
1135 uint32_t irq_mask = INTR_STATUS__ECC_TRANSACTION_DONE |
1136 INTR_STATUS__ECC_ERR;
ce082596
JR
1137 bool check_erased_page = false;
1138
7d8a26fd 1139 if (page != denali->page) {
84457949 1140 dev_err(denali->dev, "IN %s: page %d is not"
7d8a26fd
CD
1141 " equal to denali->page %d, investigate!!",
1142 __func__, page, denali->page);
1143 BUG();
1144 }
1145
ce082596
JR
1146 setup_ecc_for_xfer(denali, true, false);
1147
aadff49c 1148 denali_enable_dma(denali, true);
84457949 1149 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
ce082596
JR
1150
1151 clear_interrupts(denali);
aadff49c 1152 denali_setup_dma(denali, DENALI_READ);
ce082596
JR
1153
1154 /* wait for operation to complete */
1155 irq_status = wait_for_irq(denali, irq_mask);
1156
84457949 1157 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
ce082596
JR
1158
1159 memcpy(buf, denali->buf.buf, mtd->writesize);
5bac3acf 1160
3f91e94f 1161 check_erased_page = handle_ecc(denali, buf, irq_status, &max_bitflips);
aadff49c 1162 denali_enable_dma(denali, false);
ce082596 1163
345b1d3b 1164 if (check_erased_page) {
ce082596
JR
1165 read_oob_data(&denali->mtd, chip->oob_poi, denali->page);
1166
1167 /* check ECC failures that may have occurred on erased pages */
345b1d3b 1168 if (check_erased_page) {
ce082596 1169 if (!is_erased(buf, denali->mtd.writesize))
ce082596 1170 denali->mtd.ecc_stats.failed++;
ce082596 1171 if (!is_erased(buf, denali->mtd.oobsize))
ce082596 1172 denali->mtd.ecc_stats.failed++;
5bac3acf 1173 }
ce082596 1174 }
3f91e94f 1175 return max_bitflips;
ce082596
JR
1176}
1177
1178static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1fbb938d 1179 uint8_t *buf, int oob_required, int page)
ce082596
JR
1180{
1181 struct denali_nand_info *denali = mtd_to_denali(mtd);
ce082596
JR
1182
1183 dma_addr_t addr = denali->buf.dma_buf;
1184 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1185
1186 uint32_t irq_status = 0;
9589bf5b 1187 uint32_t irq_mask = INTR_STATUS__DMA_CMD_COMP;
5bac3acf 1188
7d8a26fd 1189 if (page != denali->page) {
84457949 1190 dev_err(denali->dev, "IN %s: page %d is not"
7d8a26fd
CD
1191 " equal to denali->page %d, investigate!!",
1192 __func__, page, denali->page);
1193 BUG();
1194 }
1195
ce082596 1196 setup_ecc_for_xfer(denali, false, true);
aadff49c 1197 denali_enable_dma(denali, true);
ce082596 1198
84457949 1199 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
ce082596
JR
1200
1201 clear_interrupts(denali);
aadff49c 1202 denali_setup_dma(denali, DENALI_READ);
ce082596
JR
1203
1204 /* wait for operation to complete */
1205 irq_status = wait_for_irq(denali, irq_mask);
1206
84457949 1207 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
ce082596 1208
aadff49c 1209 denali_enable_dma(denali, false);
ce082596
JR
1210
1211 memcpy(buf, denali->buf.buf, mtd->writesize);
1212 memcpy(chip->oob_poi, denali->buf.buf + mtd->writesize, mtd->oobsize);
1213
1214 return 0;
1215}
1216
1217static uint8_t denali_read_byte(struct mtd_info *mtd)
1218{
1219 struct denali_nand_info *denali = mtd_to_denali(mtd);
1220 uint8_t result = 0xff;
1221
1222 if (denali->buf.head < denali->buf.tail)
ce082596 1223 result = denali->buf.buf[denali->buf.head++];
ce082596 1224
ce082596
JR
1225 return result;
1226}
1227
1228static void denali_select_chip(struct mtd_info *mtd, int chip)
1229{
1230 struct denali_nand_info *denali = mtd_to_denali(mtd);
7cfffac0 1231
ce082596
JR
1232 spin_lock_irq(&denali->irq_lock);
1233 denali->flash_bank = chip;
1234 spin_unlock_irq(&denali->irq_lock);
1235}
1236
1237static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip)
1238{
1239 struct denali_nand_info *denali = mtd_to_denali(mtd);
1240 int status = denali->status;
1241 denali->status = 0;
1242
ce082596
JR
1243 return status;
1244}
1245
1246static void denali_erase(struct mtd_info *mtd, int page)
1247{
1248 struct denali_nand_info *denali = mtd_to_denali(mtd);
1249
1250 uint32_t cmd = 0x0, irq_status = 0;
1251
ce082596 1252 /* clear interrupts */
5bac3acf 1253 clear_interrupts(denali);
ce082596
JR
1254
1255 /* setup page read request for access type */
1256 cmd = MODE_10 | BANK(denali->flash_bank) | page;
1257 index_addr(denali, (uint32_t)cmd, 0x1);
1258
1259 /* wait for erase to complete or failure to occur */
9589bf5b
JI
1260 irq_status = wait_for_irq(denali, INTR_STATUS__ERASE_COMP |
1261 INTR_STATUS__ERASE_FAIL);
ce082596 1262
9589bf5b 1263 denali->status = (irq_status & INTR_STATUS__ERASE_FAIL) ?
bdca6dae 1264 NAND_STATUS_FAIL : PASS;
ce082596
JR
1265}
1266
5bac3acf 1267static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col,
ce082596
JR
1268 int page)
1269{
1270 struct denali_nand_info *denali = mtd_to_denali(mtd);
ef41e1bb
CD
1271 uint32_t addr, id;
1272 int i;
ce082596 1273
345b1d3b 1274 switch (cmd) {
a99d1796
CD
1275 case NAND_CMD_PAGEPROG:
1276 break;
1277 case NAND_CMD_STATUS:
1278 read_status(denali);
1279 break;
1280 case NAND_CMD_READID:
42af8b58 1281 case NAND_CMD_PARAM:
a99d1796 1282 reset_buf(denali);
ef41e1bb
CD
1283 /*sometimes ManufactureId read from register is not right
1284 * e.g. some of Micron MT29F32G08QAA MLC NAND chips
1285 * So here we send READID cmd to NAND insteand
1286 * */
1287 addr = (uint32_t)MODE_11 | BANK(denali->flash_bank);
1288 index_addr(denali, (uint32_t)addr | 0, 0x90);
1289 index_addr(denali, (uint32_t)addr | 1, 0);
1290 for (i = 0; i < 5; i++) {
1291 index_addr_read_data(denali,
1292 (uint32_t)addr | 2,
1293 &id);
1294 write_byte_to_buf(denali, id);
a99d1796
CD
1295 }
1296 break;
1297 case NAND_CMD_READ0:
1298 case NAND_CMD_SEQIN:
1299 denali->page = page;
1300 break;
1301 case NAND_CMD_RESET:
1302 reset_bank(denali);
1303 break;
1304 case NAND_CMD_READOOB:
1305 /* TODO: Read OOB data */
1306 break;
1307 default:
1308 printk(KERN_ERR ": unsupported command"
1309 " received 0x%x\n", cmd);
1310 break;
ce082596
JR
1311 }
1312}
1313
1314/* stubs for ECC functions not used by the NAND core */
5bac3acf 1315static int denali_ecc_calculate(struct mtd_info *mtd, const uint8_t *data,
ce082596
JR
1316 uint8_t *ecc_code)
1317{
7cfffac0 1318 struct denali_nand_info *denali = mtd_to_denali(mtd);
84457949 1319 dev_err(denali->dev,
7cfffac0 1320 "denali_ecc_calculate called unexpectedly\n");
ce082596
JR
1321 BUG();
1322 return -EIO;
1323}
1324
5bac3acf 1325static int denali_ecc_correct(struct mtd_info *mtd, uint8_t *data,
ce082596
JR
1326 uint8_t *read_ecc, uint8_t *calc_ecc)
1327{
7cfffac0 1328 struct denali_nand_info *denali = mtd_to_denali(mtd);
84457949 1329 dev_err(denali->dev,
7cfffac0 1330 "denali_ecc_correct called unexpectedly\n");
ce082596
JR
1331 BUG();
1332 return -EIO;
1333}
1334
1335static void denali_ecc_hwctl(struct mtd_info *mtd, int mode)
1336{
7cfffac0 1337 struct denali_nand_info *denali = mtd_to_denali(mtd);
84457949 1338 dev_err(denali->dev,
7cfffac0 1339 "denali_ecc_hwctl called unexpectedly\n");
ce082596
JR
1340 BUG();
1341}
1342/* end NAND core entry points */
1343
1344/* Initialization code to bring the device up to a known good state */
1345static void denali_hw_init(struct denali_nand_info *denali)
1346{
db9a3210
CD
1347 /* tell driver how many bit controller will skip before
1348 * writing ECC code in OOB, this register may be already
1349 * set by firmware. So we read this value out.
1350 * if this value is 0, just let it be.
1351 * */
1352 denali->bbtskipbytes = ioread32(denali->flash_reg +
1353 SPARE_AREA_SKIP_BYTES);
bc27ede3 1354 detect_max_banks(denali);
eda936ef 1355 denali_nand_reset(denali);
24c3fa36
CD
1356 iowrite32(0x0F, denali->flash_reg + RB_PIN_ENABLED);
1357 iowrite32(CHIP_EN_DONT_CARE__FLAG,
bdca6dae 1358 denali->flash_reg + CHIP_ENABLE_DONT_CARE);
ce082596 1359
24c3fa36 1360 iowrite32(0xffff, denali->flash_reg + SPARE_AREA_MARKER);
ce082596
JR
1361
1362 /* Should set value for these registers when init */
24c3fa36
CD
1363 iowrite32(0, denali->flash_reg + TWO_ROW_ADDR_CYCLES);
1364 iowrite32(1, denali->flash_reg + ECC_ENABLE);
5eab6aaa
CD
1365 denali_nand_timing_set(denali);
1366 denali_irq_init(denali);
ce082596
JR
1367}
1368
db9a3210
CD
1369/* Althogh controller spec said SLC ECC is forceb to be 4bit,
1370 * but denali controller in MRST only support 15bit and 8bit ECC
1371 * correction
1372 * */
1373#define ECC_8BITS 14
1374static struct nand_ecclayout nand_8bit_oob = {
1375 .eccbytes = 14,
ce082596
JR
1376};
1377
db9a3210
CD
1378#define ECC_15BITS 26
1379static struct nand_ecclayout nand_15bit_oob = {
1380 .eccbytes = 26,
ce082596
JR
1381};
1382
1383static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1384static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1385
1386static struct nand_bbt_descr bbt_main_descr = {
1387 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1388 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1389 .offs = 8,
1390 .len = 4,
1391 .veroffs = 12,
1392 .maxblocks = 4,
1393 .pattern = bbt_pattern,
1394};
1395
1396static struct nand_bbt_descr bbt_mirror_descr = {
1397 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1398 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1399 .offs = 8,
1400 .len = 4,
1401 .veroffs = 12,
1402 .maxblocks = 4,
1403 .pattern = mirror_pattern,
1404};
1405
421f91d2 1406/* initialize driver data structures */
ce082596
JR
1407void denali_drv_init(struct denali_nand_info *denali)
1408{
1409 denali->idx = 0;
1410
1411 /* setup interrupt handler */
5bac3acf 1412 /* the completion object will be used to notify
ce082596
JR
1413 * the callee that the interrupt is done */
1414 init_completion(&denali->complete);
1415
1416 /* the spinlock will be used to synchronize the ISR
5bac3acf 1417 * with any element that might be access shared
ce082596
JR
1418 * data (interrupt status) */
1419 spin_lock_init(&denali->irq_lock);
1420
1421 /* indicate that MTD has not selected a valid bank yet */
1422 denali->flash_bank = CHIP_SELECT_INVALID;
1423
1424 /* initialize our irq_status variable to indicate no interrupts */
1425 denali->irq_status = 0;
1426}
1427
1428/* driver entry point */
1429static int denali_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
1430{
1431 int ret = -ENODEV;
1432 resource_size_t csr_base, mem_base;
1433 unsigned long csr_len, mem_len;
1434 struct denali_nand_info *denali;
1435
ce082596
JR
1436 denali = kzalloc(sizeof(*denali), GFP_KERNEL);
1437 if (!denali)
1438 return -ENOMEM;
1439
1440 ret = pci_enable_device(dev);
1441 if (ret) {
1442 printk(KERN_ERR "Spectra: pci_enable_device failed.\n");
5c0eb900 1443 goto failed_alloc_memery;
ce082596
JR
1444 }
1445
1446 if (id->driver_data == INTEL_CE4100) {
5bac3acf
C
1447 /* Due to a silicon limitation, we can only support
1448 * ONFI timing mode 1 and below.
1449 */
345b1d3b 1450 if (onfi_timing_mode < -1 || onfi_timing_mode > 1) {
bdca6dae
CD
1451 printk(KERN_ERR "Intel CE4100 only supports"
1452 " ONFI timing mode 1 or below\n");
ce082596 1453 ret = -EINVAL;
5c0eb900 1454 goto failed_enable_dev;
ce082596
JR
1455 }
1456 denali->platform = INTEL_CE4100;
1457 mem_base = pci_resource_start(dev, 0);
1458 mem_len = pci_resource_len(dev, 1);
1459 csr_base = pci_resource_start(dev, 1);
1460 csr_len = pci_resource_len(dev, 1);
1461 } else {
1462 denali->platform = INTEL_MRST;
1463 csr_base = pci_resource_start(dev, 0);
5c0eb900 1464 csr_len = pci_resource_len(dev, 0);
ce082596
JR
1465 mem_base = pci_resource_start(dev, 1);
1466 mem_len = pci_resource_len(dev, 1);
1467 if (!mem_len) {
1468 mem_base = csr_base + csr_len;
1469 mem_len = csr_len;
ce082596
JR
1470 }
1471 }
1472
1473 /* Is 32-bit DMA supported? */
84457949 1474 ret = dma_set_mask(&dev->dev, DMA_BIT_MASK(32));
345b1d3b 1475 if (ret) {
ce082596 1476 printk(KERN_ERR "Spectra: no usable DMA configuration\n");
5c0eb900 1477 goto failed_enable_dev;
ce082596 1478 }
84457949
JI
1479 denali->buf.dma_buf = dma_map_single(&dev->dev, denali->buf.buf,
1480 DENALI_BUF_SIZE,
1481 DMA_BIDIRECTIONAL);
ce082596 1482
84457949 1483 if (dma_mapping_error(&dev->dev, denali->buf.dma_buf)) {
7cfffac0 1484 dev_err(&dev->dev, "Spectra: failed to map DMA buffer\n");
5c0eb900 1485 goto failed_enable_dev;
ce082596
JR
1486 }
1487
1488 pci_set_master(dev);
84457949 1489 denali->dev = &dev->dev;
5eab6aaa 1490 denali->mtd.dev.parent = &dev->dev;
ce082596
JR
1491
1492 ret = pci_request_regions(dev, DENALI_NAND_NAME);
1493 if (ret) {
1494 printk(KERN_ERR "Spectra: Unable to request memory regions\n");
5c0eb900 1495 goto failed_dma_map;
ce082596
JR
1496 }
1497
1498 denali->flash_reg = ioremap_nocache(csr_base, csr_len);
1499 if (!denali->flash_reg) {
1500 printk(KERN_ERR "Spectra: Unable to remap memory region\n");
1501 ret = -ENOMEM;
5c0eb900 1502 goto failed_req_regions;
ce082596 1503 }
ce082596
JR
1504
1505 denali->flash_mem = ioremap_nocache(mem_base, mem_len);
1506 if (!denali->flash_mem) {
1507 printk(KERN_ERR "Spectra: ioremap_nocache failed!");
ce082596 1508 ret = -ENOMEM;
5c0eb900 1509 goto failed_remap_reg;
ce082596
JR
1510 }
1511
ce082596
JR
1512 denali_hw_init(denali);
1513 denali_drv_init(denali);
1514
5eab6aaa
CD
1515 /* denali_isr register is done after all the hardware
1516 * initilization is finished*/
ce082596
JR
1517 if (request_irq(dev->irq, denali_isr, IRQF_SHARED,
1518 DENALI_NAND_NAME, denali)) {
1519 printk(KERN_ERR "Spectra: Unable to allocate IRQ\n");
1520 ret = -ENODEV;
5c0eb900 1521 goto failed_remap_mem;
ce082596
JR
1522 }
1523
1524 /* now that our ISR is registered, we can enable interrupts */
eda936ef 1525 denali_set_intr_modes(denali, true);
ce082596
JR
1526
1527 pci_set_drvdata(dev, denali);
1528
5eab6aaa 1529 denali->mtd.name = "denali-nand";
ce082596
JR
1530 denali->mtd.owner = THIS_MODULE;
1531 denali->mtd.priv = &denali->nand;
1532
1533 /* register the driver with the NAND core subsystem */
1534 denali->nand.select_chip = denali_select_chip;
1535 denali->nand.cmdfunc = denali_cmdfunc;
1536 denali->nand.read_byte = denali_read_byte;
1537 denali->nand.waitfunc = denali_waitfunc;
1538
5bac3acf 1539 /* scan for NAND devices attached to the controller
ce082596 1540 * this is the first stage in a two step process to register
5bac3acf 1541 * with the nand subsystem */
c89eeda8 1542 if (nand_scan_ident(&denali->mtd, denali->max_banks, NULL)) {
ce082596 1543 ret = -ENXIO;
5c0eb900 1544 goto failed_req_irq;
ce082596 1545 }
5bac3acf 1546
66406524
CD
1547 /* MTD supported page sizes vary by kernel. We validate our
1548 * kernel supports the device here.
1549 */
1550 if (denali->mtd.writesize > NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE) {
1551 ret = -ENODEV;
1552 printk(KERN_ERR "Spectra: device size not supported by this "
1553 "version of MTD.");
5c0eb900 1554 goto failed_req_irq;
66406524
CD
1555 }
1556
08b9ab99
CD
1557 /* support for multi nand
1558 * MTD known nothing about multi nand,
1559 * so we should tell it the real pagesize
1560 * and anything necessery
1561 */
1562 denali->devnum = ioread32(denali->flash_reg + DEVICES_CONNECTED);
1563 denali->nand.chipsize <<= (denali->devnum - 1);
1564 denali->nand.page_shift += (denali->devnum - 1);
1565 denali->nand.pagemask = (denali->nand.chipsize >>
1566 denali->nand.page_shift) - 1;
1567 denali->nand.bbt_erase_shift += (denali->devnum - 1);
1568 denali->nand.phys_erase_shift = denali->nand.bbt_erase_shift;
1569 denali->nand.chip_shift += (denali->devnum - 1);
1570 denali->mtd.writesize <<= (denali->devnum - 1);
1571 denali->mtd.oobsize <<= (denali->devnum - 1);
1572 denali->mtd.erasesize <<= (denali->devnum - 1);
1573 denali->mtd.size = denali->nand.numchips * denali->nand.chipsize;
1574 denali->bbtskipbytes *= denali->devnum;
1575
5bac3acf
C
1576 /* second stage of the NAND scan
1577 * this stage requires information regarding ECC and
1578 * bad block management. */
ce082596
JR
1579
1580 /* Bad block management */
1581 denali->nand.bbt_td = &bbt_main_descr;
1582 denali->nand.bbt_md = &bbt_mirror_descr;
1583
1584 /* skip the scan for now until we have OOB read and write support */
bb9ebd4e 1585 denali->nand.bbt_options |= NAND_BBT_USE_FLASH;
a40f7341 1586 denali->nand.options |= NAND_SKIP_BBTSCAN;
ce082596
JR
1587 denali->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
1588
db9a3210
CD
1589 /* Denali Controller only support 15bit and 8bit ECC in MRST,
1590 * so just let controller do 15bit ECC for MLC and 8bit ECC for
1591 * SLC if possible.
1592 * */
1593 if (denali->nand.cellinfo & 0xc &&
1594 (denali->mtd.oobsize > (denali->bbtskipbytes +
1595 ECC_15BITS * (denali->mtd.writesize /
1596 ECC_SECTOR_SIZE)))) {
1597 /* if MLC OOB size is large enough, use 15bit ECC*/
6a918bad 1598 denali->nand.ecc.strength = 15;
db9a3210
CD
1599 denali->nand.ecc.layout = &nand_15bit_oob;
1600 denali->nand.ecc.bytes = ECC_15BITS;
24c3fa36 1601 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
db9a3210
CD
1602 } else if (denali->mtd.oobsize < (denali->bbtskipbytes +
1603 ECC_8BITS * (denali->mtd.writesize /
1604 ECC_SECTOR_SIZE))) {
1605 printk(KERN_ERR "Your NAND chip OOB is not large enough to"
1606 " contain 8bit ECC correction codes");
5c0eb900 1607 goto failed_req_irq;
db9a3210 1608 } else {
6a918bad 1609 denali->nand.ecc.strength = 8;
db9a3210
CD
1610 denali->nand.ecc.layout = &nand_8bit_oob;
1611 denali->nand.ecc.bytes = ECC_8BITS;
24c3fa36 1612 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
ce082596
JR
1613 }
1614
08b9ab99 1615 denali->nand.ecc.bytes *= denali->devnum;
6a918bad 1616 denali->nand.ecc.strength *= denali->devnum;
db9a3210
CD
1617 denali->nand.ecc.layout->eccbytes *=
1618 denali->mtd.writesize / ECC_SECTOR_SIZE;
1619 denali->nand.ecc.layout->oobfree[0].offset =
1620 denali->bbtskipbytes + denali->nand.ecc.layout->eccbytes;
1621 denali->nand.ecc.layout->oobfree[0].length =
1622 denali->mtd.oobsize - denali->nand.ecc.layout->eccbytes -
1623 denali->bbtskipbytes;
1624
66406524
CD
1625 /* Let driver know the total blocks number and
1626 * how many blocks contained by each nand chip.
1627 * blksperchip will help driver to know how many
1628 * blocks is taken by FW.
1629 * */
1630 denali->totalblks = denali->mtd.size >>
1631 denali->nand.phys_erase_shift;
1632 denali->blksperchip = denali->totalblks / denali->nand.numchips;
1633
5bac3acf
C
1634 /* These functions are required by the NAND core framework, otherwise,
1635 * the NAND core will assert. However, we don't need them, so we'll stub
1636 * them out. */
ce082596
JR
1637 denali->nand.ecc.calculate = denali_ecc_calculate;
1638 denali->nand.ecc.correct = denali_ecc_correct;
1639 denali->nand.ecc.hwctl = denali_ecc_hwctl;
1640
1641 /* override the default read operations */
08b9ab99 1642 denali->nand.ecc.size = ECC_SECTOR_SIZE * denali->devnum;
ce082596
JR
1643 denali->nand.ecc.read_page = denali_read_page;
1644 denali->nand.ecc.read_page_raw = denali_read_page_raw;
1645 denali->nand.ecc.write_page = denali_write_page;
1646 denali->nand.ecc.write_page_raw = denali_write_page_raw;
1647 denali->nand.ecc.read_oob = denali_read_oob;
1648 denali->nand.ecc.write_oob = denali_write_oob;
1649 denali->nand.erase_cmd = denali_erase;
1650
345b1d3b 1651 if (nand_scan_tail(&denali->mtd)) {
ce082596 1652 ret = -ENXIO;
5c0eb900 1653 goto failed_req_irq;
ce082596
JR
1654 }
1655
ee0e87b1 1656 ret = mtd_device_register(&denali->mtd, NULL, 0);
ce082596 1657 if (ret) {
7cfffac0
CD
1658 dev_err(&dev->dev, "Spectra: Failed to register MTD: %d\n",
1659 ret);
5c0eb900 1660 goto failed_req_irq;
ce082596
JR
1661 }
1662 return 0;
1663
5c0eb900 1664failed_req_irq:
ce082596 1665 denali_irq_cleanup(dev->irq, denali);
5c0eb900 1666failed_remap_mem:
ce082596 1667 iounmap(denali->flash_mem);
5c0eb900
CD
1668failed_remap_reg:
1669 iounmap(denali->flash_reg);
1670failed_req_regions:
ce082596 1671 pci_release_regions(dev);
5c0eb900 1672failed_dma_map:
84457949
JI
1673 dma_unmap_single(&dev->dev, denali->buf.dma_buf, DENALI_BUF_SIZE,
1674 DMA_BIDIRECTIONAL);
5c0eb900
CD
1675failed_enable_dev:
1676 pci_disable_device(dev);
1677failed_alloc_memery:
ce082596
JR
1678 kfree(denali);
1679 return ret;
1680}
1681
1682/* driver exit point */
1683static void denali_pci_remove(struct pci_dev *dev)
1684{
1685 struct denali_nand_info *denali = pci_get_drvdata(dev);
1686
ce082596 1687 nand_release(&denali->mtd);
ce082596
JR
1688
1689 denali_irq_cleanup(dev->irq, denali);
1690
1691 iounmap(denali->flash_reg);
1692 iounmap(denali->flash_mem);
1693 pci_release_regions(dev);
1694 pci_disable_device(dev);
84457949
JI
1695 dma_unmap_single(&dev->dev, denali->buf.dma_buf, DENALI_BUF_SIZE,
1696 DMA_BIDIRECTIONAL);
ce082596
JR
1697 pci_set_drvdata(dev, NULL);
1698 kfree(denali);
1699}
1700
1701MODULE_DEVICE_TABLE(pci, denali_pci_ids);
1702
1703static struct pci_driver denali_pci_driver = {
1704 .name = DENALI_NAND_NAME,
1705 .id_table = denali_pci_ids,
1706 .probe = denali_pci_probe,
1707 .remove = denali_pci_remove,
1708};
1709
4d16cd65 1710module_pci_driver(denali_pci_driver);
This page took 0.223683 seconds and 5 git commands to generate.