blob: ab960efb67f0b3050561db79f5d7a995661470c9 [file] [log] [blame]
Jason Robertsce082592010-05-13 15:57:33 +01001/*
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>
22#include <linux/wait.h>
23#include <linux/mutex.h>
David Millerb8664b32010-08-04 22:57:51 -070024#include <linux/slab.h>
Jason Robertsce082592010-05-13 15:57:33 +010025#include <linux/pci.h>
26#include <linux/mtd/mtd.h>
27#include <linux/module.h>
28
29#include "denali.h"
30
31MODULE_LICENSE("GPL");
32
Chuanxiao5bac3ac2010-08-05 23:06:04 +080033/* We define a module parameter that allows the user to override
Jason Robertsce082592010-05-13 15:57:33 +010034 * the hardware and decide what timing mode should be used.
35 */
36#define NAND_DEFAULT_TIMINGS -1
37
38static int onfi_timing_mode = NAND_DEFAULT_TIMINGS;
39module_param(onfi_timing_mode, int, S_IRUGO);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +080040MODULE_PARM_DESC(onfi_timing_mode, "Overrides default ONFI setting."
41 " -1 indicates use default timings");
Jason Robertsce082592010-05-13 15:57:33 +010042
43#define DENALI_NAND_NAME "denali-nand"
44
45/* We define a macro here that combines all interrupts this driver uses into
46 * a single constant value, for convenience. */
47#define DENALI_IRQ_ALL (INTR_STATUS0__DMA_CMD_COMP | \
48 INTR_STATUS0__ECC_TRANSACTION_DONE | \
49 INTR_STATUS0__ECC_ERR | \
50 INTR_STATUS0__PROGRAM_FAIL | \
51 INTR_STATUS0__LOAD_COMP | \
52 INTR_STATUS0__PROGRAM_COMP | \
53 INTR_STATUS0__TIME_OUT | \
54 INTR_STATUS0__ERASE_FAIL | \
55 INTR_STATUS0__RST_COMP | \
56 INTR_STATUS0__ERASE_COMP)
57
Chuanxiao5bac3ac2010-08-05 23:06:04 +080058/* indicates whether or not the internal value for the flash bank is
Jason Robertsce082592010-05-13 15:57:33 +010059 valid or not */
Chuanxiao5bac3ac2010-08-05 23:06:04 +080060#define CHIP_SELECT_INVALID -1
Jason Robertsce082592010-05-13 15:57:33 +010061
62#define SUPPORT_8BITECC 1
63
Chuanxiao5bac3ac2010-08-05 23:06:04 +080064/* This macro divides two integers and rounds fractional values up
Jason Robertsce082592010-05-13 15:57:33 +010065 * to the nearest integer value. */
66#define CEIL_DIV(X, Y) (((X)%(Y)) ? ((X)/(Y)+1) : ((X)/(Y)))
67
68/* this macro allows us to convert from an MTD structure to our own
69 * device context (denali) structure.
70 */
71#define mtd_to_denali(m) container_of(m, struct denali_nand_info, mtd)
72
73/* These constants are defined by the driver to enable common driver
74 configuration options. */
75#define SPARE_ACCESS 0x41
76#define MAIN_ACCESS 0x42
77#define MAIN_SPARE_ACCESS 0x43
78
79#define DENALI_READ 0
80#define DENALI_WRITE 0x100
81
82/* types of device accesses. We can issue commands and get status */
83#define COMMAND_CYCLE 0
84#define ADDR_CYCLE 1
85#define STATUS_CYCLE 2
86
Chuanxiao5bac3ac2010-08-05 23:06:04 +080087/* this is a helper macro that allows us to
Jason Robertsce082592010-05-13 15:57:33 +010088 * format the bank into the proper bits for the controller */
89#define BANK(x) ((x) << 24)
90
91/* List of platforms this NAND controller has be integrated into */
92static const struct pci_device_id denali_pci_ids[] = {
93 { PCI_VDEVICE(INTEL, 0x0701), INTEL_CE4100 },
94 { PCI_VDEVICE(INTEL, 0x0809), INTEL_MRST },
95 { /* end: all zeroes */ }
96};
97
98
Chuanxiao5bac3ac2010-08-05 23:06:04 +080099/* these are static lookup tables that give us easy access to
100 registers in the NAND controller.
Jason Robertsce082592010-05-13 15:57:33 +0100101 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800102static const uint32_t intr_status_addresses[4] = {INTR_STATUS0,
103 INTR_STATUS1,
104 INTR_STATUS2,
Jason Robertsce082592010-05-13 15:57:33 +0100105 INTR_STATUS3};
106
107static const uint32_t device_reset_banks[4] = {DEVICE_RESET__BANK0,
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800108 DEVICE_RESET__BANK1,
109 DEVICE_RESET__BANK2,
110 DEVICE_RESET__BANK3};
Jason Robertsce082592010-05-13 15:57:33 +0100111
112static const uint32_t operation_timeout[4] = {INTR_STATUS0__TIME_OUT,
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800113 INTR_STATUS1__TIME_OUT,
114 INTR_STATUS2__TIME_OUT,
115 INTR_STATUS3__TIME_OUT};
Jason Robertsce082592010-05-13 15:57:33 +0100116
117static const uint32_t reset_complete[4] = {INTR_STATUS0__RST_COMP,
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800118 INTR_STATUS1__RST_COMP,
119 INTR_STATUS2__RST_COMP,
120 INTR_STATUS3__RST_COMP};
Jason Robertsce082592010-05-13 15:57:33 +0100121
122/* specifies the debug level of the driver */
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800123static int nand_debug_level;
Jason Robertsce082592010-05-13 15:57:33 +0100124
125/* forward declarations */
126static void clear_interrupts(struct denali_nand_info *denali);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800127static uint32_t wait_for_irq(struct denali_nand_info *denali,
128 uint32_t irq_mask);
129static void denali_irq_enable(struct denali_nand_info *denali,
130 uint32_t int_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100131static uint32_t read_interrupt_status(struct denali_nand_info *denali);
132
133#define DEBUG_DENALI 0
134
135/* This is a wrapper for writing to the denali registers.
136 * this allows us to create debug information so we can
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800137 * observe how the driver is programming the device.
Jason Robertsce082592010-05-13 15:57:33 +0100138 * it uses standard linux convention for (val, addr) */
139static void denali_write32(uint32_t value, void *addr)
140{
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800141 iowrite32(value, addr);
Jason Robertsce082592010-05-13 15:57:33 +0100142
143#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800144 printk(KERN_INFO "wrote: 0x%x -> 0x%x\n", value,
145 (uint32_t)((uint32_t)addr & 0x1fff));
Jason Robertsce082592010-05-13 15:57:33 +0100146#endif
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800147}
Jason Robertsce082592010-05-13 15:57:33 +0100148
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800149/* Certain operations for the denali NAND controller use
150 * an indexed mode to read/write data. The operation is
151 * performed by writing the address value of the command
152 * to the device memory followed by the data. This function
153 * abstracts this common operation.
Jason Robertsce082592010-05-13 15:57:33 +0100154*/
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800155static void index_addr(struct denali_nand_info *denali,
156 uint32_t address, uint32_t data)
Jason Robertsce082592010-05-13 15:57:33 +0100157{
158 denali_write32(address, denali->flash_mem);
159 denali_write32(data, denali->flash_mem + 0x10);
160}
161
162/* Perform an indexed read of the device */
163static void index_addr_read_data(struct denali_nand_info *denali,
164 uint32_t address, uint32_t *pdata)
165{
166 denali_write32(address, denali->flash_mem);
167 *pdata = ioread32(denali->flash_mem + 0x10);
168}
169
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800170/* We need to buffer some data for some of the NAND core routines.
Jason Robertsce082592010-05-13 15:57:33 +0100171 * The operations manage buffering that data. */
172static void reset_buf(struct denali_nand_info *denali)
173{
174 denali->buf.head = denali->buf.tail = 0;
175}
176
177static void write_byte_to_buf(struct denali_nand_info *denali, uint8_t byte)
178{
179 BUG_ON(denali->buf.tail >= sizeof(denali->buf.buf));
180 denali->buf.buf[denali->buf.tail++] = byte;
181}
182
183/* reads the status of the device */
184static void read_status(struct denali_nand_info *denali)
185{
186 uint32_t cmd = 0x0;
187
188 /* initialize the data buffer to store status */
189 reset_buf(denali);
190
191 /* initiate a device status read */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800192 cmd = MODE_11 | BANK(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100193 index_addr(denali, cmd | COMMAND_CYCLE, 0x70);
194 denali_write32(cmd | STATUS_CYCLE, denali->flash_mem);
195
196 /* update buffer with status value */
197 write_byte_to_buf(denali, ioread32(denali->flash_mem + 0x10));
198
199#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800200 printk(KERN_INFO "device reporting status value of 0x%2x\n",
201 denali->buf.buf[0]);
Jason Robertsce082592010-05-13 15:57:33 +0100202#endif
203}
204
205/* resets a specific device connected to the core */
206static void reset_bank(struct denali_nand_info *denali)
207{
208 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800209 uint32_t irq_mask = reset_complete[denali->flash_bank] |
Jason Robertsce082592010-05-13 15:57:33 +0100210 operation_timeout[denali->flash_bank];
211 int bank = 0;
212
213 clear_interrupts(denali);
214
215 bank = device_reset_banks[denali->flash_bank];
216 denali_write32(bank, denali->flash_reg + DEVICE_RESET);
217
218 irq_status = wait_for_irq(denali, irq_mask);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800219
Jason Robertsce082592010-05-13 15:57:33 +0100220 if (irq_status & operation_timeout[denali->flash_bank])
Jason Robertsce082592010-05-13 15:57:33 +0100221 printk(KERN_ERR "reset bank failed.\n");
Jason Robertsce082592010-05-13 15:57:33 +0100222}
223
224/* Reset the flash controller */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800225static uint16_t denali_nand_reset(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100226{
227 uint32_t i;
228
229 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
230 __FILE__, __LINE__, __func__);
231
232 for (i = 0 ; i < LLD_MAX_FLASH_BANKS; i++)
233 denali_write32(reset_complete[i] | operation_timeout[i],
234 denali->flash_reg + intr_status_addresses[i]);
235
236 for (i = 0 ; i < LLD_MAX_FLASH_BANKS; i++) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800237 denali_write32(device_reset_banks[i],
238 denali->flash_reg + DEVICE_RESET);
239 while (!(ioread32(denali->flash_reg +
240 intr_status_addresses[i]) &
Jason Robertsce082592010-05-13 15:57:33 +0100241 (reset_complete[i] | operation_timeout[i])))
242 ;
243 if (ioread32(denali->flash_reg + intr_status_addresses[i]) &
244 operation_timeout[i])
245 nand_dbg_print(NAND_DBG_WARN,
246 "NAND Reset operation timed out on bank %d\n", i);
247 }
248
249 for (i = 0; i < LLD_MAX_FLASH_BANKS; i++)
250 denali_write32(reset_complete[i] | operation_timeout[i],
251 denali->flash_reg + intr_status_addresses[i]);
252
253 return PASS;
254}
255
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800256/* this routine calculates the ONFI timing values for a given mode and
257 * programs the clocking register accordingly. The mode is determined by
258 * the get_onfi_nand_para routine.
Jason Robertsce082592010-05-13 15:57:33 +0100259 */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800260static void nand_onfi_timing_set(struct denali_nand_info *denali,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800261 uint16_t mode)
Jason Robertsce082592010-05-13 15:57:33 +0100262{
263 uint16_t Trea[6] = {40, 30, 25, 20, 20, 16};
264 uint16_t Trp[6] = {50, 25, 17, 15, 12, 10};
265 uint16_t Treh[6] = {30, 15, 15, 10, 10, 7};
266 uint16_t Trc[6] = {100, 50, 35, 30, 25, 20};
267 uint16_t Trhoh[6] = {0, 15, 15, 15, 15, 15};
268 uint16_t Trloh[6] = {0, 0, 0, 0, 5, 5};
269 uint16_t Tcea[6] = {100, 45, 30, 25, 25, 25};
270 uint16_t Tadl[6] = {200, 100, 100, 100, 70, 70};
271 uint16_t Trhw[6] = {200, 100, 100, 100, 100, 100};
272 uint16_t Trhz[6] = {200, 100, 100, 100, 100, 100};
273 uint16_t Twhr[6] = {120, 80, 80, 60, 60, 60};
274 uint16_t Tcs[6] = {70, 35, 25, 25, 20, 15};
275
276 uint16_t TclsRising = 1;
277 uint16_t data_invalid_rhoh, data_invalid_rloh, data_invalid;
278 uint16_t dv_window = 0;
279 uint16_t en_lo, en_hi;
280 uint16_t acc_clks;
281 uint16_t addr_2_data, re_2_we, re_2_re, we_2_re, cs_cnt;
282
283 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
284 __FILE__, __LINE__, __func__);
285
286 en_lo = CEIL_DIV(Trp[mode], CLK_X);
287 en_hi = CEIL_DIV(Treh[mode], CLK_X);
288#if ONFI_BLOOM_TIME
289 if ((en_hi * CLK_X) < (Treh[mode] + 2))
290 en_hi++;
291#endif
292
293 if ((en_lo + en_hi) * CLK_X < Trc[mode])
294 en_lo += CEIL_DIV((Trc[mode] - (en_lo + en_hi) * CLK_X), CLK_X);
295
296 if ((en_lo + en_hi) < CLK_MULTI)
297 en_lo += CLK_MULTI - en_lo - en_hi;
298
299 while (dv_window < 8) {
300 data_invalid_rhoh = en_lo * CLK_X + Trhoh[mode];
301
302 data_invalid_rloh = (en_lo + en_hi) * CLK_X + Trloh[mode];
303
304 data_invalid =
305 data_invalid_rhoh <
306 data_invalid_rloh ? data_invalid_rhoh : data_invalid_rloh;
307
308 dv_window = data_invalid - Trea[mode];
309
310 if (dv_window < 8)
311 en_lo++;
312 }
313
314 acc_clks = CEIL_DIV(Trea[mode], CLK_X);
315
316 while (((acc_clks * CLK_X) - Trea[mode]) < 3)
317 acc_clks++;
318
319 if ((data_invalid - acc_clks * CLK_X) < 2)
320 nand_dbg_print(NAND_DBG_WARN, "%s, Line %d: Warning!\n",
321 __FILE__, __LINE__);
322
323 addr_2_data = CEIL_DIV(Tadl[mode], CLK_X);
324 re_2_we = CEIL_DIV(Trhw[mode], CLK_X);
325 re_2_re = CEIL_DIV(Trhz[mode], CLK_X);
326 we_2_re = CEIL_DIV(Twhr[mode], CLK_X);
327 cs_cnt = CEIL_DIV((Tcs[mode] - Trp[mode]), CLK_X);
328 if (!TclsRising)
329 cs_cnt = CEIL_DIV(Tcs[mode], CLK_X);
330 if (cs_cnt == 0)
331 cs_cnt = 1;
332
333 if (Tcea[mode]) {
334 while (((cs_cnt * CLK_X) + Trea[mode]) < Tcea[mode])
335 cs_cnt++;
336 }
337
338#if MODE5_WORKAROUND
339 if (mode == 5)
340 acc_clks = 5;
341#endif
342
343 /* Sighting 3462430: Temporary hack for MT29F128G08CJABAWP:B */
344 if ((ioread32(denali->flash_reg + MANUFACTURER_ID) == 0) &&
345 (ioread32(denali->flash_reg + DEVICE_ID) == 0x88))
346 acc_clks = 6;
347
348 denali_write32(acc_clks, denali->flash_reg + ACC_CLKS);
349 denali_write32(re_2_we, denali->flash_reg + RE_2_WE);
350 denali_write32(re_2_re, denali->flash_reg + RE_2_RE);
351 denali_write32(we_2_re, denali->flash_reg + WE_2_RE);
352 denali_write32(addr_2_data, denali->flash_reg + ADDR_2_DATA);
353 denali_write32(en_lo, denali->flash_reg + RDWR_EN_LO_CNT);
354 denali_write32(en_hi, denali->flash_reg + RDWR_EN_HI_CNT);
355 denali_write32(cs_cnt, denali->flash_reg + CS_SETUP_CNT);
356}
357
Jason Robertsce082592010-05-13 15:57:33 +0100358/* queries the NAND device to see what ONFI modes it supports. */
359static uint16_t get_onfi_nand_para(struct denali_nand_info *denali)
360{
361 int i;
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800362 /* we needn't to do a reset here because driver has already
363 * reset all the banks before
364 * */
Jason Robertsce082592010-05-13 15:57:33 +0100365 if (!(ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
366 ONFI_TIMING_MODE__VALUE))
367 return FAIL;
368
369 for (i = 5; i > 0; i--) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800370 if (ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
371 (0x01 << i))
Jason Robertsce082592010-05-13 15:57:33 +0100372 break;
373 }
374
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800375 nand_onfi_timing_set(denali, i);
Jason Robertsce082592010-05-13 15:57:33 +0100376
377 /* By now, all the ONFI devices we know support the page cache */
378 /* rw feature. So here we enable the pipeline_rw_ahead feature */
379 /* iowrite32(1, denali->flash_reg + CACHE_WRITE_ENABLE); */
380 /* iowrite32(1, denali->flash_reg + CACHE_READ_ENABLE); */
381
382 return PASS;
383}
384
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800385static void get_samsung_nand_para(struct denali_nand_info *denali,
386 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100387{
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800388 if (device_id == 0xd3) { /* Samsung K9WAG08U1A */
Jason Robertsce082592010-05-13 15:57:33 +0100389 /* Set timing register values according to datasheet */
390 denali_write32(5, denali->flash_reg + ACC_CLKS);
391 denali_write32(20, denali->flash_reg + RE_2_WE);
392 denali_write32(12, denali->flash_reg + WE_2_RE);
393 denali_write32(14, denali->flash_reg + ADDR_2_DATA);
394 denali_write32(3, denali->flash_reg + RDWR_EN_LO_CNT);
395 denali_write32(2, denali->flash_reg + RDWR_EN_HI_CNT);
396 denali_write32(2, denali->flash_reg + CS_SETUP_CNT);
397 }
Jason Robertsce082592010-05-13 15:57:33 +0100398}
399
400static void get_toshiba_nand_para(struct denali_nand_info *denali)
401{
Jason Robertsce082592010-05-13 15:57:33 +0100402 uint32_t tmp;
403
404 /* Workaround to fix a controller bug which reports a wrong */
405 /* spare area size for some kind of Toshiba NAND device */
406 if ((ioread32(denali->flash_reg + DEVICE_MAIN_AREA_SIZE) == 4096) &&
407 (ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE) == 64)) {
408 denali_write32(216, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
409 tmp = ioread32(denali->flash_reg + DEVICES_CONNECTED) *
410 ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800411 denali_write32(tmp,
412 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
Jason Robertsce082592010-05-13 15:57:33 +0100413#if SUPPORT_15BITECC
414 denali_write32(15, denali->flash_reg + ECC_CORRECTION);
415#elif SUPPORT_8BITECC
416 denali_write32(8, denali->flash_reg + ECC_CORRECTION);
417#endif
418 }
Jason Robertsce082592010-05-13 15:57:33 +0100419}
420
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800421static void get_hynix_nand_para(struct denali_nand_info *denali,
422 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100423{
Jason Robertsce082592010-05-13 15:57:33 +0100424 uint32_t main_size, spare_size;
425
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800426 switch (device_id) {
Jason Robertsce082592010-05-13 15:57:33 +0100427 case 0xD5: /* Hynix H27UAG8T2A, H27UBG8U5A or H27UCG8VFA */
428 case 0xD7: /* Hynix H27UDG8VEM, H27UCG8UDM or H27UCG8V5A */
429 denali_write32(128, denali->flash_reg + PAGES_PER_BLOCK);
430 denali_write32(4096, denali->flash_reg + DEVICE_MAIN_AREA_SIZE);
431 denali_write32(224, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800432 main_size = 4096 *
433 ioread32(denali->flash_reg + DEVICES_CONNECTED);
434 spare_size = 224 *
435 ioread32(denali->flash_reg + DEVICES_CONNECTED);
436 denali_write32(main_size,
437 denali->flash_reg + LOGICAL_PAGE_DATA_SIZE);
438 denali_write32(spare_size,
439 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
Jason Robertsce082592010-05-13 15:57:33 +0100440 denali_write32(0, denali->flash_reg + DEVICE_WIDTH);
441#if SUPPORT_15BITECC
442 denali_write32(15, denali->flash_reg + ECC_CORRECTION);
443#elif SUPPORT_8BITECC
444 denali_write32(8, denali->flash_reg + ECC_CORRECTION);
445#endif
Jason Robertsce082592010-05-13 15:57:33 +0100446 break;
447 default:
448 nand_dbg_print(NAND_DBG_WARN,
449 "Spectra: Unknown Hynix NAND (Device ID: 0x%x)."
450 "Will use default parameter values instead.\n",
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800451 device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100452 }
453}
454
455/* determines how many NAND chips are connected to the controller. Note for
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800456 Intel CE4100 devices we don't support more than one device.
Jason Robertsce082592010-05-13 15:57:33 +0100457 */
458static void find_valid_banks(struct denali_nand_info *denali)
459{
460 uint32_t id[LLD_MAX_FLASH_BANKS];
461 int i;
462
463 denali->total_used_banks = 1;
464 for (i = 0; i < LLD_MAX_FLASH_BANKS; i++) {
465 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 0), 0x90);
466 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 1), 0);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800467 index_addr_read_data(denali,
468 (uint32_t)(MODE_11 | (i << 24) | 2), &id[i]);
Jason Robertsce082592010-05-13 15:57:33 +0100469
470 nand_dbg_print(NAND_DBG_DEBUG,
471 "Return 1st ID for bank[%d]: %x\n", i, id[i]);
472
473 if (i == 0) {
474 if (!(id[i] & 0x0ff))
475 break; /* WTF? */
476 } else {
477 if ((id[i] & 0x0ff) == (id[0] & 0x0ff))
478 denali->total_used_banks++;
479 else
480 break;
481 }
482 }
483
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800484 if (denali->platform == INTEL_CE4100) {
Jason Robertsce082592010-05-13 15:57:33 +0100485 /* Platform limitations of the CE4100 device limit
486 * users to a single chip solution for NAND.
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800487 * Multichip support is not enabled.
488 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800489 if (denali->total_used_banks != 1) {
Jason Robertsce082592010-05-13 15:57:33 +0100490 printk(KERN_ERR "Sorry, Intel CE4100 only supports "
491 "a single NAND device.\n");
492 BUG();
493 }
494 }
495 nand_dbg_print(NAND_DBG_DEBUG,
496 "denali->total_used_banks: %d\n", denali->total_used_banks);
497}
498
499static void detect_partition_feature(struct denali_nand_info *denali)
500{
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800501 /* For MRST platform, denali->fwblks represent the
502 * number of blocks firmware is taken,
503 * FW is in protect partition and MTD driver has no
504 * permission to access it. So let driver know how many
505 * blocks it can't touch.
506 * */
Jason Robertsce082592010-05-13 15:57:33 +0100507 if (ioread32(denali->flash_reg + FEATURES) & FEATURES__PARTITION) {
508 if ((ioread32(denali->flash_reg + PERM_SRC_ID_1) &
509 PERM_SRC_ID_1__SRCID) == SPECTRA_PARTITION_ID) {
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800510 denali->fwblks =
Jason Robertsce082592010-05-13 15:57:33 +0100511 ((ioread32(denali->flash_reg + MIN_MAX_BANK_1) &
512 MIN_MAX_BANK_1__MIN_VALUE) *
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800513 denali->blksperchip)
Jason Robertsce082592010-05-13 15:57:33 +0100514 +
515 (ioread32(denali->flash_reg + MIN_BLK_ADDR_1) &
516 MIN_BLK_ADDR_1__VALUE);
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800517 } else
518 denali->fwblks = SPECTRA_START_BLOCK;
519 } else
520 denali->fwblks = SPECTRA_START_BLOCK;
Jason Robertsce082592010-05-13 15:57:33 +0100521}
522
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800523static uint16_t denali_nand_timing_set(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100524{
525 uint16_t status = PASS;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800526 uint32_t id_bytes[5], addr;
527 uint8_t i, maf_id, device_id;
Jason Robertsce082592010-05-13 15:57:33 +0100528
529 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
530 __FILE__, __LINE__, __func__);
531
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800532 /* Use read id method to get device ID and other
533 * params. For some NAND chips, controller can't
534 * report the correct device ID by reading from
535 * DEVICE_ID register
536 * */
537 addr = (uint32_t)MODE_11 | BANK(denali->flash_bank);
538 index_addr(denali, (uint32_t)addr | 0, 0x90);
539 index_addr(denali, (uint32_t)addr | 1, 0);
540 for (i = 0; i < 5; i++)
541 index_addr_read_data(denali, addr | 2, &id_bytes[i]);
542 maf_id = id_bytes[0];
543 device_id = id_bytes[1];
Jason Robertsce082592010-05-13 15:57:33 +0100544
545 if (ioread32(denali->flash_reg + ONFI_DEVICE_NO_OF_LUNS) &
546 ONFI_DEVICE_NO_OF_LUNS__ONFI_DEVICE) { /* ONFI 1.0 NAND */
547 if (FAIL == get_onfi_nand_para(denali))
548 return FAIL;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800549 } else if (maf_id == 0xEC) { /* Samsung NAND */
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800550 get_samsung_nand_para(denali, device_id);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800551 } else if (maf_id == 0x98) { /* Toshiba NAND */
Jason Robertsce082592010-05-13 15:57:33 +0100552 get_toshiba_nand_para(denali);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800553 } else if (maf_id == 0xAD) { /* Hynix NAND */
554 get_hynix_nand_para(denali, device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100555 }
556
557 nand_dbg_print(NAND_DBG_DEBUG, "Dump timing register values:"
558 "acc_clks: %d, re_2_we: %d, we_2_re: %d,"
559 "addr_2_data: %d, rdwr_en_lo_cnt: %d, "
560 "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n",
561 ioread32(denali->flash_reg + ACC_CLKS),
562 ioread32(denali->flash_reg + RE_2_WE),
563 ioread32(denali->flash_reg + WE_2_RE),
564 ioread32(denali->flash_reg + ADDR_2_DATA),
565 ioread32(denali->flash_reg + RDWR_EN_LO_CNT),
566 ioread32(denali->flash_reg + RDWR_EN_HI_CNT),
567 ioread32(denali->flash_reg + CS_SETUP_CNT));
568
Jason Robertsce082592010-05-13 15:57:33 +0100569 find_valid_banks(denali);
570
571 detect_partition_feature(denali);
572
Jason Robertsce082592010-05-13 15:57:33 +0100573 /* If the user specified to override the default timings
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800574 * with a specific ONFI mode, we apply those changes here.
Jason Robertsce082592010-05-13 15:57:33 +0100575 */
576 if (onfi_timing_mode != NAND_DEFAULT_TIMINGS)
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800577 nand_onfi_timing_set(denali, onfi_timing_mode);
Jason Robertsce082592010-05-13 15:57:33 +0100578
579 return status;
580}
581
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800582static void denali_set_intr_modes(struct denali_nand_info *denali,
Jason Robertsce082592010-05-13 15:57:33 +0100583 uint16_t INT_ENABLE)
584{
585 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
586 __FILE__, __LINE__, __func__);
587
588 if (INT_ENABLE)
589 denali_write32(1, denali->flash_reg + GLOBAL_INT_ENABLE);
590 else
591 denali_write32(0, denali->flash_reg + GLOBAL_INT_ENABLE);
592}
593
594/* validation function to verify that the controlling software is making
595 a valid request
596 */
597static inline bool is_flash_bank_valid(int flash_bank)
598{
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800599 return (flash_bank >= 0 && flash_bank < 4);
Jason Robertsce082592010-05-13 15:57:33 +0100600}
601
602static void denali_irq_init(struct denali_nand_info *denali)
603{
604 uint32_t int_mask = 0;
605
606 /* Disable global interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800607 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100608
609 int_mask = DENALI_IRQ_ALL;
610
611 /* Clear all status bits */
612 denali_write32(0xFFFF, denali->flash_reg + INTR_STATUS0);
613 denali_write32(0xFFFF, denali->flash_reg + INTR_STATUS1);
614 denali_write32(0xFFFF, denali->flash_reg + INTR_STATUS2);
615 denali_write32(0xFFFF, denali->flash_reg + INTR_STATUS3);
616
617 denali_irq_enable(denali, int_mask);
618}
619
620static void denali_irq_cleanup(int irqnum, struct denali_nand_info *denali)
621{
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800622 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100623 free_irq(irqnum, denali);
624}
625
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800626static void denali_irq_enable(struct denali_nand_info *denali,
627 uint32_t int_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100628{
629 denali_write32(int_mask, denali->flash_reg + INTR_EN0);
630 denali_write32(int_mask, denali->flash_reg + INTR_EN1);
631 denali_write32(int_mask, denali->flash_reg + INTR_EN2);
632 denali_write32(int_mask, denali->flash_reg + INTR_EN3);
633}
634
635/* This function only returns when an interrupt that this driver cares about
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800636 * occurs. This is to reduce the overhead of servicing interrupts
Jason Robertsce082592010-05-13 15:57:33 +0100637 */
638static inline uint32_t denali_irq_detected(struct denali_nand_info *denali)
639{
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800640 return read_interrupt_status(denali) & DENALI_IRQ_ALL;
Jason Robertsce082592010-05-13 15:57:33 +0100641}
642
643/* Interrupts are cleared by writing a 1 to the appropriate status bit */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800644static inline void clear_interrupt(struct denali_nand_info *denali,
645 uint32_t irq_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100646{
647 uint32_t intr_status_reg = 0;
648
649 intr_status_reg = intr_status_addresses[denali->flash_bank];
650
651 denali_write32(irq_mask, denali->flash_reg + intr_status_reg);
652}
653
654static void clear_interrupts(struct denali_nand_info *denali)
655{
656 uint32_t status = 0x0;
657 spin_lock_irq(&denali->irq_lock);
658
659 status = read_interrupt_status(denali);
660
661#if DEBUG_DENALI
662 denali->irq_debug_array[denali->idx++] = 0x30000000 | status;
663 denali->idx %= 32;
664#endif
665
666 denali->irq_status = 0x0;
667 spin_unlock_irq(&denali->irq_lock);
668}
669
670static uint32_t read_interrupt_status(struct denali_nand_info *denali)
671{
672 uint32_t intr_status_reg = 0;
673
674 intr_status_reg = intr_status_addresses[denali->flash_bank];
675
676 return ioread32(denali->flash_reg + intr_status_reg);
677}
678
679#if DEBUG_DENALI
680static void print_irq_log(struct denali_nand_info *denali)
681{
682 int i = 0;
683
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800684 printk(KERN_INFO "ISR debug log index = %X\n", denali->idx);
Jason Robertsce082592010-05-13 15:57:33 +0100685 for (i = 0; i < 32; i++)
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800686 printk(KERN_INFO "%08X: %08X\n", i, denali->irq_debug_array[i]);
Jason Robertsce082592010-05-13 15:57:33 +0100687}
688#endif
689
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800690/* This is the interrupt service routine. It handles all interrupts
691 * sent to this device. Note that on CE4100, this is a shared
692 * interrupt.
Jason Robertsce082592010-05-13 15:57:33 +0100693 */
694static irqreturn_t denali_isr(int irq, void *dev_id)
695{
696 struct denali_nand_info *denali = dev_id;
697 uint32_t irq_status = 0x0;
698 irqreturn_t result = IRQ_NONE;
699
700 spin_lock(&denali->irq_lock);
701
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800702 /* check to see if a valid NAND chip has
703 * been selected.
Jason Robertsce082592010-05-13 15:57:33 +0100704 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800705 if (is_flash_bank_valid(denali->flash_bank)) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800706 /* check to see if controller generated
Jason Robertsce082592010-05-13 15:57:33 +0100707 * the interrupt, since this is a shared interrupt */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800708 irq_status = denali_irq_detected(denali);
709 if (irq_status != 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100710#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800711 denali->irq_debug_array[denali->idx++] =
712 0x10000000 | irq_status;
Jason Robertsce082592010-05-13 15:57:33 +0100713 denali->idx %= 32;
714
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800715 printk(KERN_INFO "IRQ status = 0x%04x\n", irq_status);
Jason Robertsce082592010-05-13 15:57:33 +0100716#endif
717 /* handle interrupt */
718 /* first acknowledge it */
719 clear_interrupt(denali, irq_status);
720 /* store the status in the device context for someone
721 to read */
722 denali->irq_status |= irq_status;
723 /* notify anyone who cares that it happened */
724 complete(&denali->complete);
725 /* tell the OS that we've handled this */
726 result = IRQ_HANDLED;
727 }
728 }
729 spin_unlock(&denali->irq_lock);
730 return result;
731}
732#define BANK(x) ((x) << 24)
733
734static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask)
735{
736 unsigned long comp_res = 0;
737 uint32_t intr_status = 0;
738 bool retry = false;
739 unsigned long timeout = msecs_to_jiffies(1000);
740
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800741 do {
Jason Robertsce082592010-05-13 15:57:33 +0100742#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800743 printk(KERN_INFO "waiting for 0x%x\n", irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100744#endif
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800745 comp_res =
746 wait_for_completion_timeout(&denali->complete, timeout);
Jason Robertsce082592010-05-13 15:57:33 +0100747 spin_lock_irq(&denali->irq_lock);
748 intr_status = denali->irq_status;
749
750#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800751 denali->irq_debug_array[denali->idx++] =
752 0x20000000 | (irq_mask << 16) | intr_status;
Jason Robertsce082592010-05-13 15:57:33 +0100753 denali->idx %= 32;
754#endif
755
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800756 if (intr_status & irq_mask) {
Jason Robertsce082592010-05-13 15:57:33 +0100757 denali->irq_status &= ~irq_mask;
758 spin_unlock_irq(&denali->irq_lock);
759#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800760 if (retry)
761 printk(KERN_INFO "status on retry = 0x%x\n",
762 intr_status);
Jason Robertsce082592010-05-13 15:57:33 +0100763#endif
764 /* our interrupt was detected */
765 break;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800766 } else {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800767 /* these are not the interrupts you are looking for -
768 * need to wait again */
Jason Robertsce082592010-05-13 15:57:33 +0100769 spin_unlock_irq(&denali->irq_lock);
770#if DEBUG_DENALI
771 print_irq_log(denali);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800772 printk(KERN_INFO "received irq nobody cared:"
773 " irq_status = 0x%x, irq_mask = 0x%x,"
774 " timeout = %ld\n", intr_status,
775 irq_mask, comp_res);
Jason Robertsce082592010-05-13 15:57:33 +0100776#endif
777 retry = true;
778 }
779 } while (comp_res != 0);
780
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800781 if (comp_res == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100782 /* timeout */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800783 printk(KERN_ERR "timeout occurred, status = 0x%x, mask = 0x%x\n",
784 intr_status, irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100785
786 intr_status = 0;
787 }
788 return intr_status;
789}
790
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800791/* This helper function setups the registers for ECC and whether or not
Jason Robertsce082592010-05-13 15:57:33 +0100792 the spare area will be transfered. */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800793static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en,
Jason Robertsce082592010-05-13 15:57:33 +0100794 bool transfer_spare)
795{
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800796 int ecc_en_flag = 0, transfer_spare_flag = 0;
Jason Robertsce082592010-05-13 15:57:33 +0100797
798 /* set ECC, transfer spare bits if needed */
799 ecc_en_flag = ecc_en ? ECC_ENABLE__FLAG : 0;
800 transfer_spare_flag = transfer_spare ? TRANSFER_SPARE_REG__FLAG : 0;
801
802 /* Enable spare area/ECC per user's request. */
803 denali_write32(ecc_en_flag, denali->flash_reg + ECC_ENABLE);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800804 denali_write32(transfer_spare_flag,
805 denali->flash_reg + TRANSFER_SPARE_REG);
Jason Robertsce082592010-05-13 15:57:33 +0100806}
807
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800808/* sends a pipeline command operation to the controller. See the Denali NAND
809 controller's user guide for more information (section 4.2.3.6).
Jason Robertsce082592010-05-13 15:57:33 +0100810 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800811static int denali_send_pipeline_cmd(struct denali_nand_info *denali,
812 bool ecc_en,
813 bool transfer_spare,
814 int access_type,
815 int op)
Jason Robertsce082592010-05-13 15:57:33 +0100816{
817 int status = PASS;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800818 uint32_t addr = 0x0, cmd = 0x0, page_count = 1, irq_status = 0,
Jason Robertsce082592010-05-13 15:57:33 +0100819 irq_mask = 0;
820
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800821 if (op == DENALI_READ)
822 irq_mask = INTR_STATUS0__LOAD_COMP;
823 else if (op == DENALI_WRITE)
824 irq_mask = 0;
825 else
826 BUG();
Jason Robertsce082592010-05-13 15:57:33 +0100827
828 setup_ecc_for_xfer(denali, ecc_en, transfer_spare);
829
830#if DEBUG_DENALI
831 spin_lock_irq(&denali->irq_lock);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800832 denali->irq_debug_array[denali->idx++] =
833 0x40000000 | ioread32(denali->flash_reg + ECC_ENABLE) |
834 (access_type << 4);
Jason Robertsce082592010-05-13 15:57:33 +0100835 denali->idx %= 32;
836 spin_unlock_irq(&denali->irq_lock);
837#endif
838
839
840 /* clear interrupts */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800841 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +0100842
843 addr = BANK(denali->flash_bank) | denali->page;
844
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800845 if (op == DENALI_WRITE && access_type != SPARE_ACCESS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800846 cmd = MODE_01 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100847 denali_write32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800848 } else if (op == DENALI_WRITE && access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100849 /* read spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800850 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100851 index_addr(denali, (uint32_t)cmd, access_type);
852
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800853 cmd = MODE_01 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100854 denali_write32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800855 } else if (op == DENALI_READ) {
Jason Robertsce082592010-05-13 15:57:33 +0100856 /* setup page read request for access type */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800857 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100858 index_addr(denali, (uint32_t)cmd, access_type);
859
860 /* page 33 of the NAND controller spec indicates we should not
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800861 use the pipeline commands in Spare area only mode. So we
Jason Robertsce082592010-05-13 15:57:33 +0100862 don't.
863 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800864 if (access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100865 cmd = MODE_01 | addr;
866 denali_write32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800867 } else {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800868 index_addr(denali, (uint32_t)cmd,
869 0x2000 | op | page_count);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800870
871 /* wait for command to be accepted
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800872 * can always use status0 bit as the
873 * mask is identical for each
Jason Robertsce082592010-05-13 15:57:33 +0100874 * bank. */
875 irq_status = wait_for_irq(denali, irq_mask);
876
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800877 if (irq_status == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100878 printk(KERN_ERR "cmd, page, addr on timeout "
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800879 "(0x%x, 0x%x, 0x%x)\n", cmd,
880 denali->page, addr);
Jason Robertsce082592010-05-13 15:57:33 +0100881 status = FAIL;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800882 } else {
Jason Robertsce082592010-05-13 15:57:33 +0100883 cmd = MODE_01 | addr;
884 denali_write32(cmd, denali->flash_mem);
885 }
886 }
887 }
888 return status;
889}
890
891/* helper function that simply writes a buffer to the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800892static int write_data_to_flash_mem(struct denali_nand_info *denali,
893 const uint8_t *buf,
894 int len)
Jason Robertsce082592010-05-13 15:57:33 +0100895{
896 uint32_t i = 0, *buf32;
897
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800898 /* verify that the len is a multiple of 4. see comment in
899 * read_data_from_flash_mem() */
Jason Robertsce082592010-05-13 15:57:33 +0100900 BUG_ON((len % 4) != 0);
901
902 /* write the data to the flash memory */
903 buf32 = (uint32_t *)buf;
904 for (i = 0; i < len / 4; i++)
Jason Robertsce082592010-05-13 15:57:33 +0100905 denali_write32(*buf32++, denali->flash_mem + 0x10);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800906 return i*4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100907}
908
909/* helper function that simply reads a buffer from the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800910static int read_data_from_flash_mem(struct denali_nand_info *denali,
911 uint8_t *buf,
912 int len)
Jason Robertsce082592010-05-13 15:57:33 +0100913{
914 uint32_t i = 0, *buf32;
915
916 /* we assume that len will be a multiple of 4, if not
917 * it would be nice to know about it ASAP rather than
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800918 * have random failures...
919 * This assumption is based on the fact that this
920 * function is designed to be used to read flash pages,
Jason Robertsce082592010-05-13 15:57:33 +0100921 * which are typically multiples of 4...
922 */
923
924 BUG_ON((len % 4) != 0);
925
926 /* transfer the data from the flash */
927 buf32 = (uint32_t *)buf;
928 for (i = 0; i < len / 4; i++)
Jason Robertsce082592010-05-13 15:57:33 +0100929 *buf32++ = ioread32(denali->flash_mem + 0x10);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800930 return i*4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100931}
932
933/* writes OOB data to the device */
934static int write_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
935{
936 struct denali_nand_info *denali = mtd_to_denali(mtd);
937 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800938 uint32_t irq_mask = INTR_STATUS0__PROGRAM_COMP |
Jason Robertsce082592010-05-13 15:57:33 +0100939 INTR_STATUS0__PROGRAM_FAIL;
940 int status = 0;
941
942 denali->page = page;
943
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800944 if (denali_send_pipeline_cmd(denali, false, false, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800945 DENALI_WRITE) == PASS) {
Jason Robertsce082592010-05-13 15:57:33 +0100946 write_data_to_flash_mem(denali, buf, mtd->oobsize);
947
948#if DEBUG_DENALI
949 spin_lock_irq(&denali->irq_lock);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800950 denali->irq_debug_array[denali->idx++] =
951 0x80000000 | mtd->oobsize;
Jason Robertsce082592010-05-13 15:57:33 +0100952 denali->idx %= 32;
953 spin_unlock_irq(&denali->irq_lock);
954#endif
955
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800956
Jason Robertsce082592010-05-13 15:57:33 +0100957 /* wait for operation to complete */
958 irq_status = wait_for_irq(denali, irq_mask);
959
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800960 if (irq_status == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100961 printk(KERN_ERR "OOB write failed\n");
962 status = -EIO;
963 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800964 } else {
Jason Robertsce082592010-05-13 15:57:33 +0100965 printk(KERN_ERR "unable to send pipeline command\n");
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800966 status = -EIO;
Jason Robertsce082592010-05-13 15:57:33 +0100967 }
968 return status;
969}
970
971/* reads OOB data from the device */
972static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
973{
974 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800975 uint32_t irq_mask = INTR_STATUS0__LOAD_COMP,
976 irq_status = 0, addr = 0x0, cmd = 0x0;
Jason Robertsce082592010-05-13 15:57:33 +0100977
978 denali->page = page;
979
980#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800981 printk(KERN_INFO "read_oob %d\n", page);
Jason Robertsce082592010-05-13 15:57:33 +0100982#endif
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800983 if (denali_send_pipeline_cmd(denali, false, true, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800984 DENALI_READ) == PASS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800985 read_data_from_flash_mem(denali, buf, mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +0100986
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800987 /* wait for command to be accepted
Jason Robertsce082592010-05-13 15:57:33 +0100988 * can always use status0 bit as the mask is identical for each
989 * bank. */
990 irq_status = wait_for_irq(denali, irq_mask);
991
992 if (irq_status == 0)
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800993 printk(KERN_ERR "page on OOB timeout %d\n",
994 denali->page);
Jason Robertsce082592010-05-13 15:57:33 +0100995
996 /* We set the device back to MAIN_ACCESS here as I observed
997 * instability with the controller if you do a block erase
998 * and the last transaction was a SPARE_ACCESS. Block erase
999 * is reliable (according to the MTD test infrastructure)
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001000 * if you are in MAIN_ACCESS.
Jason Robertsce082592010-05-13 15:57:33 +01001001 */
1002 addr = BANK(denali->flash_bank) | denali->page;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001003 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +01001004 index_addr(denali, (uint32_t)cmd, MAIN_ACCESS);
1005
1006#if DEBUG_DENALI
1007 spin_lock_irq(&denali->irq_lock);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001008 denali->irq_debug_array[denali->idx++] =
1009 0x60000000 | mtd->oobsize;
Jason Robertsce082592010-05-13 15:57:33 +01001010 denali->idx %= 32;
1011 spin_unlock_irq(&denali->irq_lock);
1012#endif
1013 }
1014}
1015
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001016/* this function examines buffers to see if they contain data that
Jason Robertsce082592010-05-13 15:57:33 +01001017 * indicate that the buffer is part of an erased region of flash.
1018 */
1019bool is_erased(uint8_t *buf, int len)
1020{
1021 int i = 0;
1022 for (i = 0; i < len; i++)
Jason Robertsce082592010-05-13 15:57:33 +01001023 if (buf[i] != 0xFF)
Jason Robertsce082592010-05-13 15:57:33 +01001024 return false;
Jason Robertsce082592010-05-13 15:57:33 +01001025 return true;
1026}
1027#define ECC_SECTOR_SIZE 512
1028
1029#define ECC_SECTOR(x) (((x) & ECC_ERROR_ADDRESS__SECTOR_NR) >> 12)
1030#define ECC_BYTE(x) (((x) & ECC_ERROR_ADDRESS__OFFSET))
1031#define ECC_CORRECTION_VALUE(x) ((x) & ERR_CORRECTION_INFO__BYTEMASK)
1032#define ECC_ERROR_CORRECTABLE(x) (!((x) & ERR_CORRECTION_INFO))
1033#define ECC_ERR_DEVICE(x) ((x) & ERR_CORRECTION_INFO__DEVICE_NR >> 8)
1034#define ECC_LAST_ERR(x) ((x) & ERR_CORRECTION_INFO__LAST_ERR_INFO)
1035
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001036static bool handle_ecc(struct denali_nand_info *denali, uint8_t *buf,
Jason Robertsce082592010-05-13 15:57:33 +01001037 uint8_t *oobbuf, uint32_t irq_status)
1038{
1039 bool check_erased_page = false;
1040
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001041 if (irq_status & INTR_STATUS0__ECC_ERR) {
Jason Robertsce082592010-05-13 15:57:33 +01001042 /* read the ECC errors. we'll ignore them for now */
1043 uint32_t err_address = 0, err_correction_info = 0;
1044 uint32_t err_byte = 0, err_sector = 0, err_device = 0;
1045 uint32_t err_correction_value = 0;
1046
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001047 do {
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001048 err_address = ioread32(denali->flash_reg +
Jason Robertsce082592010-05-13 15:57:33 +01001049 ECC_ERROR_ADDRESS);
1050 err_sector = ECC_SECTOR(err_address);
1051 err_byte = ECC_BYTE(err_address);
1052
1053
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001054 err_correction_info = ioread32(denali->flash_reg +
Jason Robertsce082592010-05-13 15:57:33 +01001055 ERR_CORRECTION_INFO);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001056 err_correction_value =
Jason Robertsce082592010-05-13 15:57:33 +01001057 ECC_CORRECTION_VALUE(err_correction_info);
1058 err_device = ECC_ERR_DEVICE(err_correction_info);
1059
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001060 if (ECC_ERROR_CORRECTABLE(err_correction_info)) {
Jason Robertsce082592010-05-13 15:57:33 +01001061 /* offset in our buffer is computed as:
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001062 sector number * sector size + offset in
Jason Robertsce082592010-05-13 15:57:33 +01001063 sector
1064 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001065 int offset = err_sector * ECC_SECTOR_SIZE +
Jason Robertsce082592010-05-13 15:57:33 +01001066 err_byte;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001067 if (offset < denali->mtd.writesize) {
Jason Robertsce082592010-05-13 15:57:33 +01001068 /* correct the ECC error */
1069 buf[offset] ^= err_correction_value;
1070 denali->mtd.ecc_stats.corrected++;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001071 } else {
Jason Robertsce082592010-05-13 15:57:33 +01001072 /* bummer, couldn't correct the error */
1073 printk(KERN_ERR "ECC offset invalid\n");
1074 denali->mtd.ecc_stats.failed++;
1075 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001076 } else {
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001077 /* if the error is not correctable, need to
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001078 * look at the page to see if it is an erased
1079 * page. if so, then it's not a real ECC error
1080 * */
Jason Robertsce082592010-05-13 15:57:33 +01001081 check_erased_page = true;
1082 }
1083
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001084#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001085 printk(KERN_INFO "Detected ECC error in page %d:"
1086 " err_addr = 0x%08x, info to fix is"
1087 " 0x%08x\n", denali->page, err_address,
1088 err_correction_info);
Jason Robertsce082592010-05-13 15:57:33 +01001089#endif
1090 } while (!ECC_LAST_ERR(err_correction_info));
1091 }
1092 return check_erased_page;
1093}
1094
1095/* programs the controller to either enable/disable DMA transfers */
David Woodhouseaadff492010-05-13 16:12:43 +01001096static void denali_enable_dma(struct denali_nand_info *denali, bool en)
Jason Robertsce082592010-05-13 15:57:33 +01001097{
1098 uint32_t reg_val = 0x0;
1099
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001100 if (en)
1101 reg_val = DMA_ENABLE__FLAG;
Jason Robertsce082592010-05-13 15:57:33 +01001102
1103 denali_write32(reg_val, denali->flash_reg + DMA_ENABLE);
1104 ioread32(denali->flash_reg + DMA_ENABLE);
1105}
1106
1107/* setups the HW to perform the data DMA */
David Woodhouseaadff492010-05-13 16:12:43 +01001108static void denali_setup_dma(struct denali_nand_info *denali, int op)
Jason Robertsce082592010-05-13 15:57:33 +01001109{
1110 uint32_t mode = 0x0;
1111 const int page_count = 1;
1112 dma_addr_t addr = denali->buf.dma_buf;
1113
1114 mode = MODE_10 | BANK(denali->flash_bank);
1115
1116 /* DMA is a four step process */
1117
1118 /* 1. setup transfer type and # of pages */
1119 index_addr(denali, mode | denali->page, 0x2000 | op | page_count);
1120
1121 /* 2. set memory high address bits 23:8 */
1122 index_addr(denali, mode | ((uint16_t)(addr >> 16) << 8), 0x2200);
1123
1124 /* 3. set memory low address bits 23:8 */
1125 index_addr(denali, mode | ((uint16_t)addr << 8), 0x2300);
1126
1127 /* 4. interrupt when complete, burst len = 64 bytes*/
1128 index_addr(denali, mode | 0x14000, 0x2400);
1129}
1130
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001131/* writes a page. user specifies type, and this function handles the
Jason Robertsce082592010-05-13 15:57:33 +01001132 configuration details. */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001133static void write_page(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001134 const uint8_t *buf, bool raw_xfer)
1135{
1136 struct denali_nand_info *denali = mtd_to_denali(mtd);
1137 struct pci_dev *pci_dev = denali->dev;
1138
1139 dma_addr_t addr = denali->buf.dma_buf;
1140 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1141
1142 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001143 uint32_t irq_mask = INTR_STATUS0__DMA_CMD_COMP |
Jason Robertsce082592010-05-13 15:57:33 +01001144 INTR_STATUS0__PROGRAM_FAIL;
1145
1146 /* if it is a raw xfer, we want to disable ecc, and send
1147 * the spare area.
1148 * !raw_xfer - enable ecc
1149 * raw_xfer - transfer spare
1150 */
1151 setup_ecc_for_xfer(denali, !raw_xfer, raw_xfer);
1152
1153 /* copy buffer into DMA buffer */
1154 memcpy(denali->buf.buf, buf, mtd->writesize);
1155
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001156 if (raw_xfer) {
Jason Robertsce082592010-05-13 15:57:33 +01001157 /* transfer the data to the spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001158 memcpy(denali->buf.buf + mtd->writesize,
1159 chip->oob_poi,
1160 mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +01001161 }
1162
1163 pci_dma_sync_single_for_device(pci_dev, addr, size, PCI_DMA_TODEVICE);
1164
1165 clear_interrupts(denali);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001166 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001167
David Woodhouseaadff492010-05-13 16:12:43 +01001168 denali_setup_dma(denali, DENALI_WRITE);
Jason Robertsce082592010-05-13 15:57:33 +01001169
1170 /* wait for operation to complete */
1171 irq_status = wait_for_irq(denali, irq_mask);
1172
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001173 if (irq_status == 0) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001174 printk(KERN_ERR "timeout on write_page"
1175 " (type = %d)\n", raw_xfer);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001176 denali->status =
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001177 (irq_status & INTR_STATUS0__PROGRAM_FAIL) ?
1178 NAND_STATUS_FAIL : PASS;
Jason Robertsce082592010-05-13 15:57:33 +01001179 }
1180
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001181 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001182 pci_dma_sync_single_for_cpu(pci_dev, addr, size, PCI_DMA_TODEVICE);
1183}
1184
1185/* NAND core entry points */
1186
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001187/* this is the callback that the NAND core calls to write a page. Since
1188 writing a page with ECC or without is similar, all the work is done
Jason Robertsce082592010-05-13 15:57:33 +01001189 by write_page above. */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001190static void denali_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001191 const uint8_t *buf)
1192{
1193 /* for regular page writes, we let HW handle all the ECC
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001194 * data written to the device. */
Jason Robertsce082592010-05-13 15:57:33 +01001195 write_page(mtd, chip, buf, false);
1196}
1197
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001198/* This is the callback that the NAND core calls to write a page without ECC.
Jason Robertsce082592010-05-13 15:57:33 +01001199 raw access is similiar to ECC page writes, so all the work is done in the
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001200 write_page() function above.
Jason Robertsce082592010-05-13 15:57:33 +01001201 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001202static void denali_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001203 const uint8_t *buf)
1204{
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001205 /* for raw page writes, we want to disable ECC and simply write
Jason Robertsce082592010-05-13 15:57:33 +01001206 whatever data is in the buffer. */
1207 write_page(mtd, chip, buf, true);
1208}
1209
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001210static int denali_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001211 int page)
1212{
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001213 return write_oob_data(mtd, chip->oob_poi, page);
Jason Robertsce082592010-05-13 15:57:33 +01001214}
1215
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001216static int denali_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001217 int page, int sndcmd)
1218{
1219 read_oob_data(mtd, chip->oob_poi, page);
1220
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001221 return 0; /* notify NAND core to send command to
1222 NAND device. */
Jason Robertsce082592010-05-13 15:57:33 +01001223}
1224
1225static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip,
1226 uint8_t *buf, int page)
1227{
1228 struct denali_nand_info *denali = mtd_to_denali(mtd);
1229 struct pci_dev *pci_dev = denali->dev;
1230
1231 dma_addr_t addr = denali->buf.dma_buf;
1232 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1233
1234 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001235 uint32_t irq_mask = INTR_STATUS0__ECC_TRANSACTION_DONE |
Jason Robertsce082592010-05-13 15:57:33 +01001236 INTR_STATUS0__ECC_ERR;
1237 bool check_erased_page = false;
1238
1239 setup_ecc_for_xfer(denali, true, false);
1240
David Woodhouseaadff492010-05-13 16:12:43 +01001241 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001242 pci_dma_sync_single_for_device(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1243
1244 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001245 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001246
1247 /* wait for operation to complete */
1248 irq_status = wait_for_irq(denali, irq_mask);
1249
1250 pci_dma_sync_single_for_cpu(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1251
1252 memcpy(buf, denali->buf.buf, mtd->writesize);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001253
Jason Robertsce082592010-05-13 15:57:33 +01001254 check_erased_page = handle_ecc(denali, buf, chip->oob_poi, irq_status);
David Woodhouseaadff492010-05-13 16:12:43 +01001255 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001256
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001257 if (check_erased_page) {
Jason Robertsce082592010-05-13 15:57:33 +01001258 read_oob_data(&denali->mtd, chip->oob_poi, denali->page);
1259
1260 /* check ECC failures that may have occurred on erased pages */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001261 if (check_erased_page) {
Jason Robertsce082592010-05-13 15:57:33 +01001262 if (!is_erased(buf, denali->mtd.writesize))
Jason Robertsce082592010-05-13 15:57:33 +01001263 denali->mtd.ecc_stats.failed++;
Jason Robertsce082592010-05-13 15:57:33 +01001264 if (!is_erased(buf, denali->mtd.oobsize))
Jason Robertsce082592010-05-13 15:57:33 +01001265 denali->mtd.ecc_stats.failed++;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001266 }
Jason Robertsce082592010-05-13 15:57:33 +01001267 }
1268 return 0;
1269}
1270
1271static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1272 uint8_t *buf, int page)
1273{
1274 struct denali_nand_info *denali = mtd_to_denali(mtd);
1275 struct pci_dev *pci_dev = denali->dev;
1276
1277 dma_addr_t addr = denali->buf.dma_buf;
1278 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1279
1280 uint32_t irq_status = 0;
1281 uint32_t irq_mask = INTR_STATUS0__DMA_CMD_COMP;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001282
Jason Robertsce082592010-05-13 15:57:33 +01001283 setup_ecc_for_xfer(denali, false, true);
David Woodhouseaadff492010-05-13 16:12:43 +01001284 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001285
1286 pci_dma_sync_single_for_device(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1287
1288 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001289 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001290
1291 /* wait for operation to complete */
1292 irq_status = wait_for_irq(denali, irq_mask);
1293
1294 pci_dma_sync_single_for_cpu(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1295
David Woodhouseaadff492010-05-13 16:12:43 +01001296 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001297
1298 memcpy(buf, denali->buf.buf, mtd->writesize);
1299 memcpy(chip->oob_poi, denali->buf.buf + mtd->writesize, mtd->oobsize);
1300
1301 return 0;
1302}
1303
1304static uint8_t denali_read_byte(struct mtd_info *mtd)
1305{
1306 struct denali_nand_info *denali = mtd_to_denali(mtd);
1307 uint8_t result = 0xff;
1308
1309 if (denali->buf.head < denali->buf.tail)
Jason Robertsce082592010-05-13 15:57:33 +01001310 result = denali->buf.buf[denali->buf.head++];
Jason Robertsce082592010-05-13 15:57:33 +01001311
1312#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001313 printk(KERN_INFO "read byte -> 0x%02x\n", result);
Jason Robertsce082592010-05-13 15:57:33 +01001314#endif
1315 return result;
1316}
1317
1318static void denali_select_chip(struct mtd_info *mtd, int chip)
1319{
1320 struct denali_nand_info *denali = mtd_to_denali(mtd);
1321#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001322 printk(KERN_INFO "denali select chip %d\n", chip);
Jason Robertsce082592010-05-13 15:57:33 +01001323#endif
1324 spin_lock_irq(&denali->irq_lock);
1325 denali->flash_bank = chip;
1326 spin_unlock_irq(&denali->irq_lock);
1327}
1328
1329static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip)
1330{
1331 struct denali_nand_info *denali = mtd_to_denali(mtd);
1332 int status = denali->status;
1333 denali->status = 0;
1334
1335#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001336 printk(KERN_INFO "waitfunc %d\n", status);
Jason Robertsce082592010-05-13 15:57:33 +01001337#endif
1338 return status;
1339}
1340
1341static void denali_erase(struct mtd_info *mtd, int page)
1342{
1343 struct denali_nand_info *denali = mtd_to_denali(mtd);
1344
1345 uint32_t cmd = 0x0, irq_status = 0;
1346
1347#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001348 printk(KERN_INFO "erase page: %d\n", page);
Jason Robertsce082592010-05-13 15:57:33 +01001349#endif
1350 /* clear interrupts */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001351 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001352
1353 /* setup page read request for access type */
1354 cmd = MODE_10 | BANK(denali->flash_bank) | page;
1355 index_addr(denali, (uint32_t)cmd, 0x1);
1356
1357 /* wait for erase to complete or failure to occur */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001358 irq_status = wait_for_irq(denali, INTR_STATUS0__ERASE_COMP |
Jason Robertsce082592010-05-13 15:57:33 +01001359 INTR_STATUS0__ERASE_FAIL);
1360
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001361 denali->status = (irq_status & INTR_STATUS0__ERASE_FAIL) ?
1362 NAND_STATUS_FAIL : PASS;
Jason Robertsce082592010-05-13 15:57:33 +01001363}
1364
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001365static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col,
Jason Robertsce082592010-05-13 15:57:33 +01001366 int page)
1367{
1368 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001369 uint32_t addr, id;
1370 int i;
Jason Robertsce082592010-05-13 15:57:33 +01001371
1372#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001373 printk(KERN_INFO "cmdfunc: 0x%x %d %d\n", cmd, col, page);
Jason Robertsce082592010-05-13 15:57:33 +01001374#endif
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001375 switch (cmd) {
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001376 case NAND_CMD_PAGEPROG:
1377 break;
1378 case NAND_CMD_STATUS:
1379 read_status(denali);
1380 break;
1381 case NAND_CMD_READID:
1382 reset_buf(denali);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001383 /*sometimes ManufactureId read from register is not right
1384 * e.g. some of Micron MT29F32G08QAA MLC NAND chips
1385 * So here we send READID cmd to NAND insteand
1386 * */
1387 addr = (uint32_t)MODE_11 | BANK(denali->flash_bank);
1388 index_addr(denali, (uint32_t)addr | 0, 0x90);
1389 index_addr(denali, (uint32_t)addr | 1, 0);
1390 for (i = 0; i < 5; i++) {
1391 index_addr_read_data(denali,
1392 (uint32_t)addr | 2,
1393 &id);
1394 write_byte_to_buf(denali, id);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001395 }
1396 break;
1397 case NAND_CMD_READ0:
1398 case NAND_CMD_SEQIN:
1399 denali->page = page;
1400 break;
1401 case NAND_CMD_RESET:
1402 reset_bank(denali);
1403 break;
1404 case NAND_CMD_READOOB:
1405 /* TODO: Read OOB data */
1406 break;
1407 default:
1408 printk(KERN_ERR ": unsupported command"
1409 " received 0x%x\n", cmd);
1410 break;
Jason Robertsce082592010-05-13 15:57:33 +01001411 }
1412}
1413
1414/* stubs for ECC functions not used by the NAND core */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001415static int denali_ecc_calculate(struct mtd_info *mtd, const uint8_t *data,
Jason Robertsce082592010-05-13 15:57:33 +01001416 uint8_t *ecc_code)
1417{
1418 printk(KERN_ERR "denali_ecc_calculate called unexpectedly\n");
1419 BUG();
1420 return -EIO;
1421}
1422
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001423static int denali_ecc_correct(struct mtd_info *mtd, uint8_t *data,
Jason Robertsce082592010-05-13 15:57:33 +01001424 uint8_t *read_ecc, uint8_t *calc_ecc)
1425{
1426 printk(KERN_ERR "denali_ecc_correct called unexpectedly\n");
1427 BUG();
1428 return -EIO;
1429}
1430
1431static void denali_ecc_hwctl(struct mtd_info *mtd, int mode)
1432{
1433 printk(KERN_ERR "denali_ecc_hwctl called unexpectedly\n");
1434 BUG();
1435}
1436/* end NAND core entry points */
1437
1438/* Initialization code to bring the device up to a known good state */
1439static void denali_hw_init(struct denali_nand_info *denali)
1440{
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001441 /* tell driver how many bit controller will skip before
1442 * writing ECC code in OOB, this register may be already
1443 * set by firmware. So we read this value out.
1444 * if this value is 0, just let it be.
1445 * */
1446 denali->bbtskipbytes = ioread32(denali->flash_reg +
1447 SPARE_AREA_SKIP_BYTES);
Jason Robertsce082592010-05-13 15:57:33 +01001448 denali_irq_init(denali);
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001449 denali_nand_reset(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001450 denali_write32(0x0F, denali->flash_reg + RB_PIN_ENABLED);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001451 denali_write32(CHIP_EN_DONT_CARE__FLAG,
1452 denali->flash_reg + CHIP_ENABLE_DONT_CARE);
Jason Robertsce082592010-05-13 15:57:33 +01001453
1454 denali_write32(0x0, denali->flash_reg + SPARE_AREA_SKIP_BYTES);
1455 denali_write32(0xffff, denali->flash_reg + SPARE_AREA_MARKER);
1456
1457 /* Should set value for these registers when init */
1458 denali_write32(0, denali->flash_reg + TWO_ROW_ADDR_CYCLES);
1459 denali_write32(1, denali->flash_reg + ECC_ENABLE);
1460}
1461
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001462/* Althogh controller spec said SLC ECC is forceb to be 4bit,
1463 * but denali controller in MRST only support 15bit and 8bit ECC
1464 * correction
1465 * */
1466#define ECC_8BITS 14
1467static struct nand_ecclayout nand_8bit_oob = {
1468 .eccbytes = 14,
Jason Robertsce082592010-05-13 15:57:33 +01001469};
1470
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001471#define ECC_15BITS 26
1472static struct nand_ecclayout nand_15bit_oob = {
1473 .eccbytes = 26,
Jason Robertsce082592010-05-13 15:57:33 +01001474};
1475
1476static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1477static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1478
1479static struct nand_bbt_descr bbt_main_descr = {
1480 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1481 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1482 .offs = 8,
1483 .len = 4,
1484 .veroffs = 12,
1485 .maxblocks = 4,
1486 .pattern = bbt_pattern,
1487};
1488
1489static struct nand_bbt_descr bbt_mirror_descr = {
1490 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1491 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1492 .offs = 8,
1493 .len = 4,
1494 .veroffs = 12,
1495 .maxblocks = 4,
1496 .pattern = mirror_pattern,
1497};
1498
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001499/* initialize driver data structures */
Jason Robertsce082592010-05-13 15:57:33 +01001500void denali_drv_init(struct denali_nand_info *denali)
1501{
1502 denali->idx = 0;
1503
1504 /* setup interrupt handler */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001505 /* the completion object will be used to notify
Jason Robertsce082592010-05-13 15:57:33 +01001506 * the callee that the interrupt is done */
1507 init_completion(&denali->complete);
1508
1509 /* the spinlock will be used to synchronize the ISR
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001510 * with any element that might be access shared
Jason Robertsce082592010-05-13 15:57:33 +01001511 * data (interrupt status) */
1512 spin_lock_init(&denali->irq_lock);
1513
1514 /* indicate that MTD has not selected a valid bank yet */
1515 denali->flash_bank = CHIP_SELECT_INVALID;
1516
1517 /* initialize our irq_status variable to indicate no interrupts */
1518 denali->irq_status = 0;
1519}
1520
1521/* driver entry point */
1522static int denali_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
1523{
1524 int ret = -ENODEV;
1525 resource_size_t csr_base, mem_base;
1526 unsigned long csr_len, mem_len;
1527 struct denali_nand_info *denali;
1528
1529 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
1530 __FILE__, __LINE__, __func__);
1531
1532 denali = kzalloc(sizeof(*denali), GFP_KERNEL);
1533 if (!denali)
1534 return -ENOMEM;
1535
1536 ret = pci_enable_device(dev);
1537 if (ret) {
1538 printk(KERN_ERR "Spectra: pci_enable_device failed.\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001539 goto failed_alloc_memery;
Jason Robertsce082592010-05-13 15:57:33 +01001540 }
1541
1542 if (id->driver_data == INTEL_CE4100) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001543 /* Due to a silicon limitation, we can only support
1544 * ONFI timing mode 1 and below.
1545 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001546 if (onfi_timing_mode < -1 || onfi_timing_mode > 1) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001547 printk(KERN_ERR "Intel CE4100 only supports"
1548 " ONFI timing mode 1 or below\n");
Jason Robertsce082592010-05-13 15:57:33 +01001549 ret = -EINVAL;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001550 goto failed_enable_dev;
Jason Robertsce082592010-05-13 15:57:33 +01001551 }
1552 denali->platform = INTEL_CE4100;
1553 mem_base = pci_resource_start(dev, 0);
1554 mem_len = pci_resource_len(dev, 1);
1555 csr_base = pci_resource_start(dev, 1);
1556 csr_len = pci_resource_len(dev, 1);
1557 } else {
1558 denali->platform = INTEL_MRST;
1559 csr_base = pci_resource_start(dev, 0);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001560 csr_len = pci_resource_len(dev, 0);
Jason Robertsce082592010-05-13 15:57:33 +01001561 mem_base = pci_resource_start(dev, 1);
1562 mem_len = pci_resource_len(dev, 1);
1563 if (!mem_len) {
1564 mem_base = csr_base + csr_len;
1565 mem_len = csr_len;
1566 nand_dbg_print(NAND_DBG_WARN,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001567 "Spectra: No second"
1568 " BAR for PCI device;"
1569 " assuming %08Lx\n",
Jason Robertsce082592010-05-13 15:57:33 +01001570 (uint64_t)csr_base);
1571 }
1572 }
1573
1574 /* Is 32-bit DMA supported? */
1575 ret = pci_set_dma_mask(dev, DMA_BIT_MASK(32));
1576
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001577 if (ret) {
Jason Robertsce082592010-05-13 15:57:33 +01001578 printk(KERN_ERR "Spectra: no usable DMA configuration\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001579 goto failed_enable_dev;
Jason Robertsce082592010-05-13 15:57:33 +01001580 }
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001581 denali->buf.dma_buf =
1582 pci_map_single(dev, denali->buf.buf,
1583 DENALI_BUF_SIZE,
1584 PCI_DMA_BIDIRECTIONAL);
Jason Robertsce082592010-05-13 15:57:33 +01001585
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001586 if (pci_dma_mapping_error(dev, denali->buf.dma_buf)) {
Jason Robertsce082592010-05-13 15:57:33 +01001587 printk(KERN_ERR "Spectra: failed to map DMA buffer\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001588 goto failed_enable_dev;
Jason Robertsce082592010-05-13 15:57:33 +01001589 }
1590
1591 pci_set_master(dev);
1592 denali->dev = dev;
1593
1594 ret = pci_request_regions(dev, DENALI_NAND_NAME);
1595 if (ret) {
1596 printk(KERN_ERR "Spectra: Unable to request memory regions\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001597 goto failed_dma_map;
Jason Robertsce082592010-05-13 15:57:33 +01001598 }
1599
1600 denali->flash_reg = ioremap_nocache(csr_base, csr_len);
1601 if (!denali->flash_reg) {
1602 printk(KERN_ERR "Spectra: Unable to remap memory region\n");
1603 ret = -ENOMEM;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001604 goto failed_req_regions;
Jason Robertsce082592010-05-13 15:57:33 +01001605 }
1606 nand_dbg_print(NAND_DBG_DEBUG, "Spectra: CSR 0x%08Lx -> 0x%p (0x%lx)\n",
1607 (uint64_t)csr_base, denali->flash_reg, csr_len);
1608
1609 denali->flash_mem = ioremap_nocache(mem_base, mem_len);
1610 if (!denali->flash_mem) {
1611 printk(KERN_ERR "Spectra: ioremap_nocache failed!");
Jason Robertsce082592010-05-13 15:57:33 +01001612 ret = -ENOMEM;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001613 goto failed_remap_reg;
Jason Robertsce082592010-05-13 15:57:33 +01001614 }
1615
1616 nand_dbg_print(NAND_DBG_WARN,
1617 "Spectra: Remapped flash base address: "
1618 "0x%p, len: %ld\n",
1619 denali->flash_mem, csr_len);
1620
1621 denali_hw_init(denali);
1622 denali_drv_init(denali);
1623
1624 nand_dbg_print(NAND_DBG_DEBUG, "Spectra: IRQ %d\n", dev->irq);
1625 if (request_irq(dev->irq, denali_isr, IRQF_SHARED,
1626 DENALI_NAND_NAME, denali)) {
1627 printk(KERN_ERR "Spectra: Unable to allocate IRQ\n");
1628 ret = -ENODEV;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001629 goto failed_remap_mem;
Jason Robertsce082592010-05-13 15:57:33 +01001630 }
1631
1632 /* now that our ISR is registered, we can enable interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001633 denali_set_intr_modes(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001634
1635 pci_set_drvdata(dev, denali);
1636
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001637 denali_nand_timing_set(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001638
1639 nand_dbg_print(NAND_DBG_DEBUG, "Dump timing register values:"
1640 "acc_clks: %d, re_2_we: %d, we_2_re: %d,"
1641 "addr_2_data: %d, rdwr_en_lo_cnt: %d, "
1642 "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n",
1643 ioread32(denali->flash_reg + ACC_CLKS),
1644 ioread32(denali->flash_reg + RE_2_WE),
1645 ioread32(denali->flash_reg + WE_2_RE),
1646 ioread32(denali->flash_reg + ADDR_2_DATA),
1647 ioread32(denali->flash_reg + RDWR_EN_LO_CNT),
1648 ioread32(denali->flash_reg + RDWR_EN_HI_CNT),
1649 ioread32(denali->flash_reg + CS_SETUP_CNT));
1650
1651 denali->mtd.name = "Denali NAND";
1652 denali->mtd.owner = THIS_MODULE;
1653 denali->mtd.priv = &denali->nand;
1654
1655 /* register the driver with the NAND core subsystem */
1656 denali->nand.select_chip = denali_select_chip;
1657 denali->nand.cmdfunc = denali_cmdfunc;
1658 denali->nand.read_byte = denali_read_byte;
1659 denali->nand.waitfunc = denali_waitfunc;
1660
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001661 /* scan for NAND devices attached to the controller
Jason Robertsce082592010-05-13 15:57:33 +01001662 * this is the first stage in a two step process to register
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001663 * with the nand subsystem */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001664 if (nand_scan_ident(&denali->mtd, LLD_MAX_FLASH_BANKS, NULL)) {
Jason Robertsce082592010-05-13 15:57:33 +01001665 ret = -ENXIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001666 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001667 }
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001668
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001669 /* MTD supported page sizes vary by kernel. We validate our
1670 * kernel supports the device here.
1671 */
1672 if (denali->mtd.writesize > NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE) {
1673 ret = -ENODEV;
1674 printk(KERN_ERR "Spectra: device size not supported by this "
1675 "version of MTD.");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001676 goto failed_req_irq;
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001677 }
1678
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001679 /* support for multi nand
1680 * MTD known nothing about multi nand,
1681 * so we should tell it the real pagesize
1682 * and anything necessery
1683 */
1684 denali->devnum = ioread32(denali->flash_reg + DEVICES_CONNECTED);
1685 denali->nand.chipsize <<= (denali->devnum - 1);
1686 denali->nand.page_shift += (denali->devnum - 1);
1687 denali->nand.pagemask = (denali->nand.chipsize >>
1688 denali->nand.page_shift) - 1;
1689 denali->nand.bbt_erase_shift += (denali->devnum - 1);
1690 denali->nand.phys_erase_shift = denali->nand.bbt_erase_shift;
1691 denali->nand.chip_shift += (denali->devnum - 1);
1692 denali->mtd.writesize <<= (denali->devnum - 1);
1693 denali->mtd.oobsize <<= (denali->devnum - 1);
1694 denali->mtd.erasesize <<= (denali->devnum - 1);
1695 denali->mtd.size = denali->nand.numchips * denali->nand.chipsize;
1696 denali->bbtskipbytes *= denali->devnum;
1697
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001698 /* second stage of the NAND scan
1699 * this stage requires information regarding ECC and
1700 * bad block management. */
Jason Robertsce082592010-05-13 15:57:33 +01001701
1702 /* Bad block management */
1703 denali->nand.bbt_td = &bbt_main_descr;
1704 denali->nand.bbt_md = &bbt_mirror_descr;
1705
1706 /* skip the scan for now until we have OOB read and write support */
1707 denali->nand.options |= NAND_USE_FLASH_BBT | NAND_SKIP_BBTSCAN;
1708 denali->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
1709
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001710 /* Denali Controller only support 15bit and 8bit ECC in MRST,
1711 * so just let controller do 15bit ECC for MLC and 8bit ECC for
1712 * SLC if possible.
1713 * */
1714 if (denali->nand.cellinfo & 0xc &&
1715 (denali->mtd.oobsize > (denali->bbtskipbytes +
1716 ECC_15BITS * (denali->mtd.writesize /
1717 ECC_SECTOR_SIZE)))) {
1718 /* if MLC OOB size is large enough, use 15bit ECC*/
1719 denali->nand.ecc.layout = &nand_15bit_oob;
1720 denali->nand.ecc.bytes = ECC_15BITS;
1721 denali_write32(15, denali->flash_reg + ECC_CORRECTION);
1722 } else if (denali->mtd.oobsize < (denali->bbtskipbytes +
1723 ECC_8BITS * (denali->mtd.writesize /
1724 ECC_SECTOR_SIZE))) {
1725 printk(KERN_ERR "Your NAND chip OOB is not large enough to"
1726 " contain 8bit ECC correction codes");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001727 goto failed_req_irq;
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001728 } else {
1729 denali->nand.ecc.layout = &nand_8bit_oob;
1730 denali->nand.ecc.bytes = ECC_8BITS;
1731 denali_write32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +01001732 }
1733
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001734 denali->nand.ecc.bytes *= denali->devnum;
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001735 denali->nand.ecc.layout->eccbytes *=
1736 denali->mtd.writesize / ECC_SECTOR_SIZE;
1737 denali->nand.ecc.layout->oobfree[0].offset =
1738 denali->bbtskipbytes + denali->nand.ecc.layout->eccbytes;
1739 denali->nand.ecc.layout->oobfree[0].length =
1740 denali->mtd.oobsize - denali->nand.ecc.layout->eccbytes -
1741 denali->bbtskipbytes;
1742
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001743 /* Let driver know the total blocks number and
1744 * how many blocks contained by each nand chip.
1745 * blksperchip will help driver to know how many
1746 * blocks is taken by FW.
1747 * */
1748 denali->totalblks = denali->mtd.size >>
1749 denali->nand.phys_erase_shift;
1750 denali->blksperchip = denali->totalblks / denali->nand.numchips;
1751
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001752 /* These functions are required by the NAND core framework, otherwise,
1753 * the NAND core will assert. However, we don't need them, so we'll stub
1754 * them out. */
Jason Robertsce082592010-05-13 15:57:33 +01001755 denali->nand.ecc.calculate = denali_ecc_calculate;
1756 denali->nand.ecc.correct = denali_ecc_correct;
1757 denali->nand.ecc.hwctl = denali_ecc_hwctl;
1758
1759 /* override the default read operations */
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001760 denali->nand.ecc.size = ECC_SECTOR_SIZE * denali->devnum;
Jason Robertsce082592010-05-13 15:57:33 +01001761 denali->nand.ecc.read_page = denali_read_page;
1762 denali->nand.ecc.read_page_raw = denali_read_page_raw;
1763 denali->nand.ecc.write_page = denali_write_page;
1764 denali->nand.ecc.write_page_raw = denali_write_page_raw;
1765 denali->nand.ecc.read_oob = denali_read_oob;
1766 denali->nand.ecc.write_oob = denali_write_oob;
1767 denali->nand.erase_cmd = denali_erase;
1768
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001769 if (nand_scan_tail(&denali->mtd)) {
Jason Robertsce082592010-05-13 15:57:33 +01001770 ret = -ENXIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001771 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001772 }
1773
1774 ret = add_mtd_device(&denali->mtd);
1775 if (ret) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001776 printk(KERN_ERR "Spectra: Failed to register"
1777 " MTD device: %d\n", ret);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001778 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001779 }
1780 return 0;
1781
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001782failed_req_irq:
Jason Robertsce082592010-05-13 15:57:33 +01001783 denali_irq_cleanup(dev->irq, denali);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001784failed_remap_mem:
Jason Robertsce082592010-05-13 15:57:33 +01001785 iounmap(denali->flash_mem);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001786failed_remap_reg:
1787 iounmap(denali->flash_reg);
1788failed_req_regions:
Jason Robertsce082592010-05-13 15:57:33 +01001789 pci_release_regions(dev);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001790failed_dma_map:
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001791 pci_unmap_single(dev, denali->buf.dma_buf, DENALI_BUF_SIZE,
Jason Robertsce082592010-05-13 15:57:33 +01001792 PCI_DMA_BIDIRECTIONAL);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001793failed_enable_dev:
1794 pci_disable_device(dev);
1795failed_alloc_memery:
Jason Robertsce082592010-05-13 15:57:33 +01001796 kfree(denali);
1797 return ret;
1798}
1799
1800/* driver exit point */
1801static void denali_pci_remove(struct pci_dev *dev)
1802{
1803 struct denali_nand_info *denali = pci_get_drvdata(dev);
1804
1805 nand_dbg_print(NAND_DBG_WARN, "%s, Line %d, Function: %s\n",
1806 __FILE__, __LINE__, __func__);
1807
1808 nand_release(&denali->mtd);
1809 del_mtd_device(&denali->mtd);
1810
1811 denali_irq_cleanup(dev->irq, denali);
1812
1813 iounmap(denali->flash_reg);
1814 iounmap(denali->flash_mem);
1815 pci_release_regions(dev);
1816 pci_disable_device(dev);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001817 pci_unmap_single(dev, denali->buf.dma_buf, DENALI_BUF_SIZE,
Jason Robertsce082592010-05-13 15:57:33 +01001818 PCI_DMA_BIDIRECTIONAL);
1819 pci_set_drvdata(dev, NULL);
1820 kfree(denali);
1821}
1822
1823MODULE_DEVICE_TABLE(pci, denali_pci_ids);
1824
1825static struct pci_driver denali_pci_driver = {
1826 .name = DENALI_NAND_NAME,
1827 .id_table = denali_pci_ids,
1828 .probe = denali_pci_probe,
1829 .remove = denali_pci_remove,
1830};
1831
1832static int __devinit denali_init(void)
1833{
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001834 printk(KERN_INFO "Spectra MTD driver built on %s @ %s\n",
1835 __DATE__, __TIME__);
Jason Robertsce082592010-05-13 15:57:33 +01001836 return pci_register_driver(&denali_pci_driver);
1837}
1838
1839/* Free memory */
1840static void __devexit denali_exit(void)
1841{
1842 pci_unregister_driver(&denali_pci_driver);
1843}
1844
1845module_init(denali_init);
1846module_exit(denali_exit);