blob: 4ab9d89eae569c7270324f293afa5de5a1fefe9c [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
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800135/* Certain operations for the denali NAND controller use
136 * an indexed mode to read/write data. The operation is
137 * performed by writing the address value of the command
138 * to the device memory followed by the data. This function
139 * abstracts this common operation.
Jason Robertsce082592010-05-13 15:57:33 +0100140*/
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800141static void index_addr(struct denali_nand_info *denali,
142 uint32_t address, uint32_t data)
Jason Robertsce082592010-05-13 15:57:33 +0100143{
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800144 iowrite32(address, denali->flash_mem);
145 iowrite32(data, denali->flash_mem + 0x10);
Jason Robertsce082592010-05-13 15:57:33 +0100146}
147
148/* Perform an indexed read of the device */
149static void index_addr_read_data(struct denali_nand_info *denali,
150 uint32_t address, uint32_t *pdata)
151{
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800152 iowrite32(address, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100153 *pdata = ioread32(denali->flash_mem + 0x10);
154}
155
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800156/* We need to buffer some data for some of the NAND core routines.
Jason Robertsce082592010-05-13 15:57:33 +0100157 * The operations manage buffering that data. */
158static void reset_buf(struct denali_nand_info *denali)
159{
160 denali->buf.head = denali->buf.tail = 0;
161}
162
163static void write_byte_to_buf(struct denali_nand_info *denali, uint8_t byte)
164{
165 BUG_ON(denali->buf.tail >= sizeof(denali->buf.buf));
166 denali->buf.buf[denali->buf.tail++] = byte;
167}
168
169/* reads the status of the device */
170static void read_status(struct denali_nand_info *denali)
171{
172 uint32_t cmd = 0x0;
173
174 /* initialize the data buffer to store status */
175 reset_buf(denali);
176
177 /* initiate a device status read */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800178 cmd = MODE_11 | BANK(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100179 index_addr(denali, cmd | COMMAND_CYCLE, 0x70);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800180 iowrite32(cmd | STATUS_CYCLE, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100181
182 /* update buffer with status value */
183 write_byte_to_buf(denali, ioread32(denali->flash_mem + 0x10));
184
185#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800186 printk(KERN_INFO "device reporting status value of 0x%2x\n",
187 denali->buf.buf[0]);
Jason Robertsce082592010-05-13 15:57:33 +0100188#endif
189}
190
191/* resets a specific device connected to the core */
192static void reset_bank(struct denali_nand_info *denali)
193{
194 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800195 uint32_t irq_mask = reset_complete[denali->flash_bank] |
Jason Robertsce082592010-05-13 15:57:33 +0100196 operation_timeout[denali->flash_bank];
197 int bank = 0;
198
199 clear_interrupts(denali);
200
201 bank = device_reset_banks[denali->flash_bank];
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800202 iowrite32(bank, denali->flash_reg + DEVICE_RESET);
Jason Robertsce082592010-05-13 15:57:33 +0100203
204 irq_status = wait_for_irq(denali, irq_mask);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800205
Jason Robertsce082592010-05-13 15:57:33 +0100206 if (irq_status & operation_timeout[denali->flash_bank])
Jason Robertsce082592010-05-13 15:57:33 +0100207 printk(KERN_ERR "reset bank failed.\n");
Jason Robertsce082592010-05-13 15:57:33 +0100208}
209
210/* Reset the flash controller */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800211static uint16_t denali_nand_reset(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100212{
213 uint32_t i;
214
215 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
216 __FILE__, __LINE__, __func__);
217
218 for (i = 0 ; i < LLD_MAX_FLASH_BANKS; i++)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800219 iowrite32(reset_complete[i] | operation_timeout[i],
Jason Robertsce082592010-05-13 15:57:33 +0100220 denali->flash_reg + intr_status_addresses[i]);
221
222 for (i = 0 ; i < LLD_MAX_FLASH_BANKS; i++) {
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800223 iowrite32(device_reset_banks[i],
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800224 denali->flash_reg + DEVICE_RESET);
225 while (!(ioread32(denali->flash_reg +
226 intr_status_addresses[i]) &
Jason Robertsce082592010-05-13 15:57:33 +0100227 (reset_complete[i] | operation_timeout[i])))
228 ;
229 if (ioread32(denali->flash_reg + intr_status_addresses[i]) &
230 operation_timeout[i])
231 nand_dbg_print(NAND_DBG_WARN,
232 "NAND Reset operation timed out on bank %d\n", i);
233 }
234
235 for (i = 0; i < LLD_MAX_FLASH_BANKS; i++)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800236 iowrite32(reset_complete[i] | operation_timeout[i],
Jason Robertsce082592010-05-13 15:57:33 +0100237 denali->flash_reg + intr_status_addresses[i]);
238
239 return PASS;
240}
241
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800242/* this routine calculates the ONFI timing values for a given mode and
243 * programs the clocking register accordingly. The mode is determined by
244 * the get_onfi_nand_para routine.
Jason Robertsce082592010-05-13 15:57:33 +0100245 */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800246static void nand_onfi_timing_set(struct denali_nand_info *denali,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800247 uint16_t mode)
Jason Robertsce082592010-05-13 15:57:33 +0100248{
249 uint16_t Trea[6] = {40, 30, 25, 20, 20, 16};
250 uint16_t Trp[6] = {50, 25, 17, 15, 12, 10};
251 uint16_t Treh[6] = {30, 15, 15, 10, 10, 7};
252 uint16_t Trc[6] = {100, 50, 35, 30, 25, 20};
253 uint16_t Trhoh[6] = {0, 15, 15, 15, 15, 15};
254 uint16_t Trloh[6] = {0, 0, 0, 0, 5, 5};
255 uint16_t Tcea[6] = {100, 45, 30, 25, 25, 25};
256 uint16_t Tadl[6] = {200, 100, 100, 100, 70, 70};
257 uint16_t Trhw[6] = {200, 100, 100, 100, 100, 100};
258 uint16_t Trhz[6] = {200, 100, 100, 100, 100, 100};
259 uint16_t Twhr[6] = {120, 80, 80, 60, 60, 60};
260 uint16_t Tcs[6] = {70, 35, 25, 25, 20, 15};
261
262 uint16_t TclsRising = 1;
263 uint16_t data_invalid_rhoh, data_invalid_rloh, data_invalid;
264 uint16_t dv_window = 0;
265 uint16_t en_lo, en_hi;
266 uint16_t acc_clks;
267 uint16_t addr_2_data, re_2_we, re_2_re, we_2_re, cs_cnt;
268
269 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
270 __FILE__, __LINE__, __func__);
271
272 en_lo = CEIL_DIV(Trp[mode], CLK_X);
273 en_hi = CEIL_DIV(Treh[mode], CLK_X);
274#if ONFI_BLOOM_TIME
275 if ((en_hi * CLK_X) < (Treh[mode] + 2))
276 en_hi++;
277#endif
278
279 if ((en_lo + en_hi) * CLK_X < Trc[mode])
280 en_lo += CEIL_DIV((Trc[mode] - (en_lo + en_hi) * CLK_X), CLK_X);
281
282 if ((en_lo + en_hi) < CLK_MULTI)
283 en_lo += CLK_MULTI - en_lo - en_hi;
284
285 while (dv_window < 8) {
286 data_invalid_rhoh = en_lo * CLK_X + Trhoh[mode];
287
288 data_invalid_rloh = (en_lo + en_hi) * CLK_X + Trloh[mode];
289
290 data_invalid =
291 data_invalid_rhoh <
292 data_invalid_rloh ? data_invalid_rhoh : data_invalid_rloh;
293
294 dv_window = data_invalid - Trea[mode];
295
296 if (dv_window < 8)
297 en_lo++;
298 }
299
300 acc_clks = CEIL_DIV(Trea[mode], CLK_X);
301
302 while (((acc_clks * CLK_X) - Trea[mode]) < 3)
303 acc_clks++;
304
305 if ((data_invalid - acc_clks * CLK_X) < 2)
306 nand_dbg_print(NAND_DBG_WARN, "%s, Line %d: Warning!\n",
307 __FILE__, __LINE__);
308
309 addr_2_data = CEIL_DIV(Tadl[mode], CLK_X);
310 re_2_we = CEIL_DIV(Trhw[mode], CLK_X);
311 re_2_re = CEIL_DIV(Trhz[mode], CLK_X);
312 we_2_re = CEIL_DIV(Twhr[mode], CLK_X);
313 cs_cnt = CEIL_DIV((Tcs[mode] - Trp[mode]), CLK_X);
314 if (!TclsRising)
315 cs_cnt = CEIL_DIV(Tcs[mode], CLK_X);
316 if (cs_cnt == 0)
317 cs_cnt = 1;
318
319 if (Tcea[mode]) {
320 while (((cs_cnt * CLK_X) + Trea[mode]) < Tcea[mode])
321 cs_cnt++;
322 }
323
324#if MODE5_WORKAROUND
325 if (mode == 5)
326 acc_clks = 5;
327#endif
328
329 /* Sighting 3462430: Temporary hack for MT29F128G08CJABAWP:B */
330 if ((ioread32(denali->flash_reg + MANUFACTURER_ID) == 0) &&
331 (ioread32(denali->flash_reg + DEVICE_ID) == 0x88))
332 acc_clks = 6;
333
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800334 iowrite32(acc_clks, denali->flash_reg + ACC_CLKS);
335 iowrite32(re_2_we, denali->flash_reg + RE_2_WE);
336 iowrite32(re_2_re, denali->flash_reg + RE_2_RE);
337 iowrite32(we_2_re, denali->flash_reg + WE_2_RE);
338 iowrite32(addr_2_data, denali->flash_reg + ADDR_2_DATA);
339 iowrite32(en_lo, denali->flash_reg + RDWR_EN_LO_CNT);
340 iowrite32(en_hi, denali->flash_reg + RDWR_EN_HI_CNT);
341 iowrite32(cs_cnt, denali->flash_reg + CS_SETUP_CNT);
Jason Robertsce082592010-05-13 15:57:33 +0100342}
343
Jason Robertsce082592010-05-13 15:57:33 +0100344/* queries the NAND device to see what ONFI modes it supports. */
345static uint16_t get_onfi_nand_para(struct denali_nand_info *denali)
346{
347 int i;
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800348 /* we needn't to do a reset here because driver has already
349 * reset all the banks before
350 * */
Jason Robertsce082592010-05-13 15:57:33 +0100351 if (!(ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
352 ONFI_TIMING_MODE__VALUE))
353 return FAIL;
354
355 for (i = 5; i > 0; i--) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800356 if (ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
357 (0x01 << i))
Jason Robertsce082592010-05-13 15:57:33 +0100358 break;
359 }
360
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800361 nand_onfi_timing_set(denali, i);
Jason Robertsce082592010-05-13 15:57:33 +0100362
363 /* By now, all the ONFI devices we know support the page cache */
364 /* rw feature. So here we enable the pipeline_rw_ahead feature */
365 /* iowrite32(1, denali->flash_reg + CACHE_WRITE_ENABLE); */
366 /* iowrite32(1, denali->flash_reg + CACHE_READ_ENABLE); */
367
368 return PASS;
369}
370
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800371static void get_samsung_nand_para(struct denali_nand_info *denali,
372 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100373{
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800374 if (device_id == 0xd3) { /* Samsung K9WAG08U1A */
Jason Robertsce082592010-05-13 15:57:33 +0100375 /* Set timing register values according to datasheet */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800376 iowrite32(5, denali->flash_reg + ACC_CLKS);
377 iowrite32(20, denali->flash_reg + RE_2_WE);
378 iowrite32(12, denali->flash_reg + WE_2_RE);
379 iowrite32(14, denali->flash_reg + ADDR_2_DATA);
380 iowrite32(3, denali->flash_reg + RDWR_EN_LO_CNT);
381 iowrite32(2, denali->flash_reg + RDWR_EN_HI_CNT);
382 iowrite32(2, denali->flash_reg + CS_SETUP_CNT);
Jason Robertsce082592010-05-13 15:57:33 +0100383 }
Jason Robertsce082592010-05-13 15:57:33 +0100384}
385
386static void get_toshiba_nand_para(struct denali_nand_info *denali)
387{
Jason Robertsce082592010-05-13 15:57:33 +0100388 uint32_t tmp;
389
390 /* Workaround to fix a controller bug which reports a wrong */
391 /* spare area size for some kind of Toshiba NAND device */
392 if ((ioread32(denali->flash_reg + DEVICE_MAIN_AREA_SIZE) == 4096) &&
393 (ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE) == 64)) {
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800394 iowrite32(216, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Jason Robertsce082592010-05-13 15:57:33 +0100395 tmp = ioread32(denali->flash_reg + DEVICES_CONNECTED) *
396 ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800397 iowrite32(tmp,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800398 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
Jason Robertsce082592010-05-13 15:57:33 +0100399#if SUPPORT_15BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800400 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100401#elif SUPPORT_8BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800402 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100403#endif
404 }
Jason Robertsce082592010-05-13 15:57:33 +0100405}
406
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800407static void get_hynix_nand_para(struct denali_nand_info *denali,
408 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100409{
Jason Robertsce082592010-05-13 15:57:33 +0100410 uint32_t main_size, spare_size;
411
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800412 switch (device_id) {
Jason Robertsce082592010-05-13 15:57:33 +0100413 case 0xD5: /* Hynix H27UAG8T2A, H27UBG8U5A or H27UCG8VFA */
414 case 0xD7: /* Hynix H27UDG8VEM, H27UCG8UDM or H27UCG8V5A */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800415 iowrite32(128, denali->flash_reg + PAGES_PER_BLOCK);
416 iowrite32(4096, denali->flash_reg + DEVICE_MAIN_AREA_SIZE);
417 iowrite32(224, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800418 main_size = 4096 *
419 ioread32(denali->flash_reg + DEVICES_CONNECTED);
420 spare_size = 224 *
421 ioread32(denali->flash_reg + DEVICES_CONNECTED);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800422 iowrite32(main_size,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800423 denali->flash_reg + LOGICAL_PAGE_DATA_SIZE);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800424 iowrite32(spare_size,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800425 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800426 iowrite32(0, denali->flash_reg + DEVICE_WIDTH);
Jason Robertsce082592010-05-13 15:57:33 +0100427#if SUPPORT_15BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800428 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100429#elif SUPPORT_8BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800430 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100431#endif
Jason Robertsce082592010-05-13 15:57:33 +0100432 break;
433 default:
434 nand_dbg_print(NAND_DBG_WARN,
435 "Spectra: Unknown Hynix NAND (Device ID: 0x%x)."
436 "Will use default parameter values instead.\n",
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800437 device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100438 }
439}
440
441/* determines how many NAND chips are connected to the controller. Note for
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800442 Intel CE4100 devices we don't support more than one device.
Jason Robertsce082592010-05-13 15:57:33 +0100443 */
444static void find_valid_banks(struct denali_nand_info *denali)
445{
446 uint32_t id[LLD_MAX_FLASH_BANKS];
447 int i;
448
449 denali->total_used_banks = 1;
450 for (i = 0; i < LLD_MAX_FLASH_BANKS; i++) {
451 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 0), 0x90);
452 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 1), 0);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800453 index_addr_read_data(denali,
454 (uint32_t)(MODE_11 | (i << 24) | 2), &id[i]);
Jason Robertsce082592010-05-13 15:57:33 +0100455
456 nand_dbg_print(NAND_DBG_DEBUG,
457 "Return 1st ID for bank[%d]: %x\n", i, id[i]);
458
459 if (i == 0) {
460 if (!(id[i] & 0x0ff))
461 break; /* WTF? */
462 } else {
463 if ((id[i] & 0x0ff) == (id[0] & 0x0ff))
464 denali->total_used_banks++;
465 else
466 break;
467 }
468 }
469
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800470 if (denali->platform == INTEL_CE4100) {
Jason Robertsce082592010-05-13 15:57:33 +0100471 /* Platform limitations of the CE4100 device limit
472 * users to a single chip solution for NAND.
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800473 * Multichip support is not enabled.
474 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800475 if (denali->total_used_banks != 1) {
Jason Robertsce082592010-05-13 15:57:33 +0100476 printk(KERN_ERR "Sorry, Intel CE4100 only supports "
477 "a single NAND device.\n");
478 BUG();
479 }
480 }
481 nand_dbg_print(NAND_DBG_DEBUG,
482 "denali->total_used_banks: %d\n", denali->total_used_banks);
483}
484
485static void detect_partition_feature(struct denali_nand_info *denali)
486{
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800487 /* For MRST platform, denali->fwblks represent the
488 * number of blocks firmware is taken,
489 * FW is in protect partition and MTD driver has no
490 * permission to access it. So let driver know how many
491 * blocks it can't touch.
492 * */
Jason Robertsce082592010-05-13 15:57:33 +0100493 if (ioread32(denali->flash_reg + FEATURES) & FEATURES__PARTITION) {
494 if ((ioread32(denali->flash_reg + PERM_SRC_ID_1) &
495 PERM_SRC_ID_1__SRCID) == SPECTRA_PARTITION_ID) {
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800496 denali->fwblks =
Jason Robertsce082592010-05-13 15:57:33 +0100497 ((ioread32(denali->flash_reg + MIN_MAX_BANK_1) &
498 MIN_MAX_BANK_1__MIN_VALUE) *
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800499 denali->blksperchip)
Jason Robertsce082592010-05-13 15:57:33 +0100500 +
501 (ioread32(denali->flash_reg + MIN_BLK_ADDR_1) &
502 MIN_BLK_ADDR_1__VALUE);
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800503 } else
504 denali->fwblks = SPECTRA_START_BLOCK;
505 } else
506 denali->fwblks = SPECTRA_START_BLOCK;
Jason Robertsce082592010-05-13 15:57:33 +0100507}
508
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800509static uint16_t denali_nand_timing_set(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100510{
511 uint16_t status = PASS;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800512 uint32_t id_bytes[5], addr;
513 uint8_t i, maf_id, device_id;
Jason Robertsce082592010-05-13 15:57:33 +0100514
515 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
516 __FILE__, __LINE__, __func__);
517
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800518 /* Use read id method to get device ID and other
519 * params. For some NAND chips, controller can't
520 * report the correct device ID by reading from
521 * DEVICE_ID register
522 * */
523 addr = (uint32_t)MODE_11 | BANK(denali->flash_bank);
524 index_addr(denali, (uint32_t)addr | 0, 0x90);
525 index_addr(denali, (uint32_t)addr | 1, 0);
526 for (i = 0; i < 5; i++)
527 index_addr_read_data(denali, addr | 2, &id_bytes[i]);
528 maf_id = id_bytes[0];
529 device_id = id_bytes[1];
Jason Robertsce082592010-05-13 15:57:33 +0100530
531 if (ioread32(denali->flash_reg + ONFI_DEVICE_NO_OF_LUNS) &
532 ONFI_DEVICE_NO_OF_LUNS__ONFI_DEVICE) { /* ONFI 1.0 NAND */
533 if (FAIL == get_onfi_nand_para(denali))
534 return FAIL;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800535 } else if (maf_id == 0xEC) { /* Samsung NAND */
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800536 get_samsung_nand_para(denali, device_id);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800537 } else if (maf_id == 0x98) { /* Toshiba NAND */
Jason Robertsce082592010-05-13 15:57:33 +0100538 get_toshiba_nand_para(denali);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800539 } else if (maf_id == 0xAD) { /* Hynix NAND */
540 get_hynix_nand_para(denali, device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100541 }
542
543 nand_dbg_print(NAND_DBG_DEBUG, "Dump timing register values:"
544 "acc_clks: %d, re_2_we: %d, we_2_re: %d,"
545 "addr_2_data: %d, rdwr_en_lo_cnt: %d, "
546 "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n",
547 ioread32(denali->flash_reg + ACC_CLKS),
548 ioread32(denali->flash_reg + RE_2_WE),
549 ioread32(denali->flash_reg + WE_2_RE),
550 ioread32(denali->flash_reg + ADDR_2_DATA),
551 ioread32(denali->flash_reg + RDWR_EN_LO_CNT),
552 ioread32(denali->flash_reg + RDWR_EN_HI_CNT),
553 ioread32(denali->flash_reg + CS_SETUP_CNT));
554
Jason Robertsce082592010-05-13 15:57:33 +0100555 find_valid_banks(denali);
556
557 detect_partition_feature(denali);
558
Jason Robertsce082592010-05-13 15:57:33 +0100559 /* If the user specified to override the default timings
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800560 * with a specific ONFI mode, we apply those changes here.
Jason Robertsce082592010-05-13 15:57:33 +0100561 */
562 if (onfi_timing_mode != NAND_DEFAULT_TIMINGS)
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800563 nand_onfi_timing_set(denali, onfi_timing_mode);
Jason Robertsce082592010-05-13 15:57:33 +0100564
565 return status;
566}
567
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800568static void denali_set_intr_modes(struct denali_nand_info *denali,
Jason Robertsce082592010-05-13 15:57:33 +0100569 uint16_t INT_ENABLE)
570{
571 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
572 __FILE__, __LINE__, __func__);
573
574 if (INT_ENABLE)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800575 iowrite32(1, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100576 else
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800577 iowrite32(0, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100578}
579
580/* validation function to verify that the controlling software is making
581 a valid request
582 */
583static inline bool is_flash_bank_valid(int flash_bank)
584{
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800585 return (flash_bank >= 0 && flash_bank < 4);
Jason Robertsce082592010-05-13 15:57:33 +0100586}
587
588static void denali_irq_init(struct denali_nand_info *denali)
589{
590 uint32_t int_mask = 0;
591
592 /* Disable global interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800593 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100594
595 int_mask = DENALI_IRQ_ALL;
596
597 /* Clear all status bits */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800598 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS0);
599 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS1);
600 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS2);
601 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS3);
Jason Robertsce082592010-05-13 15:57:33 +0100602
603 denali_irq_enable(denali, int_mask);
604}
605
606static void denali_irq_cleanup(int irqnum, struct denali_nand_info *denali)
607{
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800608 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100609 free_irq(irqnum, denali);
610}
611
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800612static void denali_irq_enable(struct denali_nand_info *denali,
613 uint32_t int_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100614{
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800615 iowrite32(int_mask, denali->flash_reg + INTR_EN0);
616 iowrite32(int_mask, denali->flash_reg + INTR_EN1);
617 iowrite32(int_mask, denali->flash_reg + INTR_EN2);
618 iowrite32(int_mask, denali->flash_reg + INTR_EN3);
Jason Robertsce082592010-05-13 15:57:33 +0100619}
620
621/* This function only returns when an interrupt that this driver cares about
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800622 * occurs. This is to reduce the overhead of servicing interrupts
Jason Robertsce082592010-05-13 15:57:33 +0100623 */
624static inline uint32_t denali_irq_detected(struct denali_nand_info *denali)
625{
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800626 return read_interrupt_status(denali) & DENALI_IRQ_ALL;
Jason Robertsce082592010-05-13 15:57:33 +0100627}
628
629/* Interrupts are cleared by writing a 1 to the appropriate status bit */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800630static inline void clear_interrupt(struct denali_nand_info *denali,
631 uint32_t irq_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100632{
633 uint32_t intr_status_reg = 0;
634
635 intr_status_reg = intr_status_addresses[denali->flash_bank];
636
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800637 iowrite32(irq_mask, denali->flash_reg + intr_status_reg);
Jason Robertsce082592010-05-13 15:57:33 +0100638}
639
640static void clear_interrupts(struct denali_nand_info *denali)
641{
642 uint32_t status = 0x0;
643 spin_lock_irq(&denali->irq_lock);
644
645 status = read_interrupt_status(denali);
646
647#if DEBUG_DENALI
648 denali->irq_debug_array[denali->idx++] = 0x30000000 | status;
649 denali->idx %= 32;
650#endif
651
652 denali->irq_status = 0x0;
653 spin_unlock_irq(&denali->irq_lock);
654}
655
656static uint32_t read_interrupt_status(struct denali_nand_info *denali)
657{
658 uint32_t intr_status_reg = 0;
659
660 intr_status_reg = intr_status_addresses[denali->flash_bank];
661
662 return ioread32(denali->flash_reg + intr_status_reg);
663}
664
665#if DEBUG_DENALI
666static void print_irq_log(struct denali_nand_info *denali)
667{
668 int i = 0;
669
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800670 printk(KERN_INFO "ISR debug log index = %X\n", denali->idx);
Jason Robertsce082592010-05-13 15:57:33 +0100671 for (i = 0; i < 32; i++)
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800672 printk(KERN_INFO "%08X: %08X\n", i, denali->irq_debug_array[i]);
Jason Robertsce082592010-05-13 15:57:33 +0100673}
674#endif
675
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800676/* This is the interrupt service routine. It handles all interrupts
677 * sent to this device. Note that on CE4100, this is a shared
678 * interrupt.
Jason Robertsce082592010-05-13 15:57:33 +0100679 */
680static irqreturn_t denali_isr(int irq, void *dev_id)
681{
682 struct denali_nand_info *denali = dev_id;
683 uint32_t irq_status = 0x0;
684 irqreturn_t result = IRQ_NONE;
685
686 spin_lock(&denali->irq_lock);
687
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800688 /* check to see if a valid NAND chip has
689 * been selected.
Jason Robertsce082592010-05-13 15:57:33 +0100690 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800691 if (is_flash_bank_valid(denali->flash_bank)) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800692 /* check to see if controller generated
Jason Robertsce082592010-05-13 15:57:33 +0100693 * the interrupt, since this is a shared interrupt */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800694 irq_status = denali_irq_detected(denali);
695 if (irq_status != 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100696#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800697 denali->irq_debug_array[denali->idx++] =
698 0x10000000 | irq_status;
Jason Robertsce082592010-05-13 15:57:33 +0100699 denali->idx %= 32;
700
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800701 printk(KERN_INFO "IRQ status = 0x%04x\n", irq_status);
Jason Robertsce082592010-05-13 15:57:33 +0100702#endif
703 /* handle interrupt */
704 /* first acknowledge it */
705 clear_interrupt(denali, irq_status);
706 /* store the status in the device context for someone
707 to read */
708 denali->irq_status |= irq_status;
709 /* notify anyone who cares that it happened */
710 complete(&denali->complete);
711 /* tell the OS that we've handled this */
712 result = IRQ_HANDLED;
713 }
714 }
715 spin_unlock(&denali->irq_lock);
716 return result;
717}
718#define BANK(x) ((x) << 24)
719
720static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask)
721{
722 unsigned long comp_res = 0;
723 uint32_t intr_status = 0;
724 bool retry = false;
725 unsigned long timeout = msecs_to_jiffies(1000);
726
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800727 do {
Jason Robertsce082592010-05-13 15:57:33 +0100728#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800729 printk(KERN_INFO "waiting for 0x%x\n", irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100730#endif
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800731 comp_res =
732 wait_for_completion_timeout(&denali->complete, timeout);
Jason Robertsce082592010-05-13 15:57:33 +0100733 spin_lock_irq(&denali->irq_lock);
734 intr_status = denali->irq_status;
735
736#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800737 denali->irq_debug_array[denali->idx++] =
738 0x20000000 | (irq_mask << 16) | intr_status;
Jason Robertsce082592010-05-13 15:57:33 +0100739 denali->idx %= 32;
740#endif
741
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800742 if (intr_status & irq_mask) {
Jason Robertsce082592010-05-13 15:57:33 +0100743 denali->irq_status &= ~irq_mask;
744 spin_unlock_irq(&denali->irq_lock);
745#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800746 if (retry)
747 printk(KERN_INFO "status on retry = 0x%x\n",
748 intr_status);
Jason Robertsce082592010-05-13 15:57:33 +0100749#endif
750 /* our interrupt was detected */
751 break;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800752 } else {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800753 /* these are not the interrupts you are looking for -
754 * need to wait again */
Jason Robertsce082592010-05-13 15:57:33 +0100755 spin_unlock_irq(&denali->irq_lock);
756#if DEBUG_DENALI
757 print_irq_log(denali);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800758 printk(KERN_INFO "received irq nobody cared:"
759 " irq_status = 0x%x, irq_mask = 0x%x,"
760 " timeout = %ld\n", intr_status,
761 irq_mask, comp_res);
Jason Robertsce082592010-05-13 15:57:33 +0100762#endif
763 retry = true;
764 }
765 } while (comp_res != 0);
766
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800767 if (comp_res == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100768 /* timeout */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800769 printk(KERN_ERR "timeout occurred, status = 0x%x, mask = 0x%x\n",
770 intr_status, irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100771
772 intr_status = 0;
773 }
774 return intr_status;
775}
776
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800777/* This helper function setups the registers for ECC and whether or not
Jason Robertsce082592010-05-13 15:57:33 +0100778 the spare area will be transfered. */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800779static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en,
Jason Robertsce082592010-05-13 15:57:33 +0100780 bool transfer_spare)
781{
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800782 int ecc_en_flag = 0, transfer_spare_flag = 0;
Jason Robertsce082592010-05-13 15:57:33 +0100783
784 /* set ECC, transfer spare bits if needed */
785 ecc_en_flag = ecc_en ? ECC_ENABLE__FLAG : 0;
786 transfer_spare_flag = transfer_spare ? TRANSFER_SPARE_REG__FLAG : 0;
787
788 /* Enable spare area/ECC per user's request. */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800789 iowrite32(ecc_en_flag, denali->flash_reg + ECC_ENABLE);
790 iowrite32(transfer_spare_flag,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800791 denali->flash_reg + TRANSFER_SPARE_REG);
Jason Robertsce082592010-05-13 15:57:33 +0100792}
793
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800794/* sends a pipeline command operation to the controller. See the Denali NAND
795 controller's user guide for more information (section 4.2.3.6).
Jason Robertsce082592010-05-13 15:57:33 +0100796 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800797static int denali_send_pipeline_cmd(struct denali_nand_info *denali,
798 bool ecc_en,
799 bool transfer_spare,
800 int access_type,
801 int op)
Jason Robertsce082592010-05-13 15:57:33 +0100802{
803 int status = PASS;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800804 uint32_t addr = 0x0, cmd = 0x0, page_count = 1, irq_status = 0,
Jason Robertsce082592010-05-13 15:57:33 +0100805 irq_mask = 0;
806
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800807 if (op == DENALI_READ)
808 irq_mask = INTR_STATUS0__LOAD_COMP;
809 else if (op == DENALI_WRITE)
810 irq_mask = 0;
811 else
812 BUG();
Jason Robertsce082592010-05-13 15:57:33 +0100813
814 setup_ecc_for_xfer(denali, ecc_en, transfer_spare);
815
816#if DEBUG_DENALI
817 spin_lock_irq(&denali->irq_lock);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800818 denali->irq_debug_array[denali->idx++] =
819 0x40000000 | ioread32(denali->flash_reg + ECC_ENABLE) |
820 (access_type << 4);
Jason Robertsce082592010-05-13 15:57:33 +0100821 denali->idx %= 32;
822 spin_unlock_irq(&denali->irq_lock);
823#endif
824
825
826 /* clear interrupts */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800827 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +0100828
829 addr = BANK(denali->flash_bank) | denali->page;
830
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800831 if (op == DENALI_WRITE && access_type != SPARE_ACCESS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800832 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800833 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800834 } else if (op == DENALI_WRITE && access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100835 /* read spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800836 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100837 index_addr(denali, (uint32_t)cmd, access_type);
838
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800839 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800840 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800841 } else if (op == DENALI_READ) {
Jason Robertsce082592010-05-13 15:57:33 +0100842 /* setup page read request for access type */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800843 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100844 index_addr(denali, (uint32_t)cmd, access_type);
845
846 /* page 33 of the NAND controller spec indicates we should not
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800847 use the pipeline commands in Spare area only mode. So we
Jason Robertsce082592010-05-13 15:57:33 +0100848 don't.
849 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800850 if (access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100851 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800852 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800853 } else {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800854 index_addr(denali, (uint32_t)cmd,
855 0x2000 | op | page_count);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800856
857 /* wait for command to be accepted
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800858 * can always use status0 bit as the
859 * mask is identical for each
Jason Robertsce082592010-05-13 15:57:33 +0100860 * bank. */
861 irq_status = wait_for_irq(denali, irq_mask);
862
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800863 if (irq_status == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100864 printk(KERN_ERR "cmd, page, addr on timeout "
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800865 "(0x%x, 0x%x, 0x%x)\n", cmd,
866 denali->page, addr);
Jason Robertsce082592010-05-13 15:57:33 +0100867 status = FAIL;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800868 } else {
Jason Robertsce082592010-05-13 15:57:33 +0100869 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800870 iowrite32(cmd, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100871 }
872 }
873 }
874 return status;
875}
876
877/* helper function that simply writes a buffer to the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800878static int write_data_to_flash_mem(struct denali_nand_info *denali,
879 const uint8_t *buf,
880 int len)
Jason Robertsce082592010-05-13 15:57:33 +0100881{
882 uint32_t i = 0, *buf32;
883
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800884 /* verify that the len is a multiple of 4. see comment in
885 * read_data_from_flash_mem() */
Jason Robertsce082592010-05-13 15:57:33 +0100886 BUG_ON((len % 4) != 0);
887
888 /* write the data to the flash memory */
889 buf32 = (uint32_t *)buf;
890 for (i = 0; i < len / 4; i++)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800891 iowrite32(*buf32++, denali->flash_mem + 0x10);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800892 return i*4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100893}
894
895/* helper function that simply reads a buffer from the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800896static int read_data_from_flash_mem(struct denali_nand_info *denali,
897 uint8_t *buf,
898 int len)
Jason Robertsce082592010-05-13 15:57:33 +0100899{
900 uint32_t i = 0, *buf32;
901
902 /* we assume that len will be a multiple of 4, if not
903 * it would be nice to know about it ASAP rather than
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800904 * have random failures...
905 * This assumption is based on the fact that this
906 * function is designed to be used to read flash pages,
Jason Robertsce082592010-05-13 15:57:33 +0100907 * which are typically multiples of 4...
908 */
909
910 BUG_ON((len % 4) != 0);
911
912 /* transfer the data from the flash */
913 buf32 = (uint32_t *)buf;
914 for (i = 0; i < len / 4; i++)
Jason Robertsce082592010-05-13 15:57:33 +0100915 *buf32++ = ioread32(denali->flash_mem + 0x10);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800916 return i*4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100917}
918
919/* writes OOB data to the device */
920static int write_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
921{
922 struct denali_nand_info *denali = mtd_to_denali(mtd);
923 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800924 uint32_t irq_mask = INTR_STATUS0__PROGRAM_COMP |
Jason Robertsce082592010-05-13 15:57:33 +0100925 INTR_STATUS0__PROGRAM_FAIL;
926 int status = 0;
927
928 denali->page = page;
929
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800930 if (denali_send_pipeline_cmd(denali, false, false, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800931 DENALI_WRITE) == PASS) {
Jason Robertsce082592010-05-13 15:57:33 +0100932 write_data_to_flash_mem(denali, buf, mtd->oobsize);
933
934#if DEBUG_DENALI
935 spin_lock_irq(&denali->irq_lock);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800936 denali->irq_debug_array[denali->idx++] =
937 0x80000000 | mtd->oobsize;
Jason Robertsce082592010-05-13 15:57:33 +0100938 denali->idx %= 32;
939 spin_unlock_irq(&denali->irq_lock);
940#endif
941
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800942
Jason Robertsce082592010-05-13 15:57:33 +0100943 /* wait for operation to complete */
944 irq_status = wait_for_irq(denali, irq_mask);
945
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800946 if (irq_status == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100947 printk(KERN_ERR "OOB write failed\n");
948 status = -EIO;
949 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800950 } else {
Jason Robertsce082592010-05-13 15:57:33 +0100951 printk(KERN_ERR "unable to send pipeline command\n");
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800952 status = -EIO;
Jason Robertsce082592010-05-13 15:57:33 +0100953 }
954 return status;
955}
956
957/* reads OOB data from the device */
958static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
959{
960 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800961 uint32_t irq_mask = INTR_STATUS0__LOAD_COMP,
962 irq_status = 0, addr = 0x0, cmd = 0x0;
Jason Robertsce082592010-05-13 15:57:33 +0100963
964 denali->page = page;
965
966#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +0800967 printk(KERN_INFO "read_oob %d\n", page);
Jason Robertsce082592010-05-13 15:57:33 +0100968#endif
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800969 if (denali_send_pipeline_cmd(denali, false, true, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800970 DENALI_READ) == PASS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800971 read_data_from_flash_mem(denali, buf, mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +0100972
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800973 /* wait for command to be accepted
Jason Robertsce082592010-05-13 15:57:33 +0100974 * can always use status0 bit as the mask is identical for each
975 * bank. */
976 irq_status = wait_for_irq(denali, irq_mask);
977
978 if (irq_status == 0)
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800979 printk(KERN_ERR "page on OOB timeout %d\n",
980 denali->page);
Jason Robertsce082592010-05-13 15:57:33 +0100981
982 /* We set the device back to MAIN_ACCESS here as I observed
983 * instability with the controller if you do a block erase
984 * and the last transaction was a SPARE_ACCESS. Block erase
985 * is reliable (according to the MTD test infrastructure)
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800986 * if you are in MAIN_ACCESS.
Jason Robertsce082592010-05-13 15:57:33 +0100987 */
988 addr = BANK(denali->flash_bank) | denali->page;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800989 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100990 index_addr(denali, (uint32_t)cmd, MAIN_ACCESS);
991
992#if DEBUG_DENALI
993 spin_lock_irq(&denali->irq_lock);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800994 denali->irq_debug_array[denali->idx++] =
995 0x60000000 | mtd->oobsize;
Jason Robertsce082592010-05-13 15:57:33 +0100996 denali->idx %= 32;
997 spin_unlock_irq(&denali->irq_lock);
998#endif
999 }
1000}
1001
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001002/* this function examines buffers to see if they contain data that
Jason Robertsce082592010-05-13 15:57:33 +01001003 * indicate that the buffer is part of an erased region of flash.
1004 */
1005bool is_erased(uint8_t *buf, int len)
1006{
1007 int i = 0;
1008 for (i = 0; i < len; i++)
Jason Robertsce082592010-05-13 15:57:33 +01001009 if (buf[i] != 0xFF)
Jason Robertsce082592010-05-13 15:57:33 +01001010 return false;
Jason Robertsce082592010-05-13 15:57:33 +01001011 return true;
1012}
1013#define ECC_SECTOR_SIZE 512
1014
1015#define ECC_SECTOR(x) (((x) & ECC_ERROR_ADDRESS__SECTOR_NR) >> 12)
1016#define ECC_BYTE(x) (((x) & ECC_ERROR_ADDRESS__OFFSET))
1017#define ECC_CORRECTION_VALUE(x) ((x) & ERR_CORRECTION_INFO__BYTEMASK)
1018#define ECC_ERROR_CORRECTABLE(x) (!((x) & ERR_CORRECTION_INFO))
1019#define ECC_ERR_DEVICE(x) ((x) & ERR_CORRECTION_INFO__DEVICE_NR >> 8)
1020#define ECC_LAST_ERR(x) ((x) & ERR_CORRECTION_INFO__LAST_ERR_INFO)
1021
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001022static bool handle_ecc(struct denali_nand_info *denali, uint8_t *buf,
Jason Robertsce082592010-05-13 15:57:33 +01001023 uint8_t *oobbuf, uint32_t irq_status)
1024{
1025 bool check_erased_page = false;
1026
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001027 if (irq_status & INTR_STATUS0__ECC_ERR) {
Jason Robertsce082592010-05-13 15:57:33 +01001028 /* read the ECC errors. we'll ignore them for now */
1029 uint32_t err_address = 0, err_correction_info = 0;
1030 uint32_t err_byte = 0, err_sector = 0, err_device = 0;
1031 uint32_t err_correction_value = 0;
1032
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001033 do {
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001034 err_address = ioread32(denali->flash_reg +
Jason Robertsce082592010-05-13 15:57:33 +01001035 ECC_ERROR_ADDRESS);
1036 err_sector = ECC_SECTOR(err_address);
1037 err_byte = ECC_BYTE(err_address);
1038
1039
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001040 err_correction_info = ioread32(denali->flash_reg +
Jason Robertsce082592010-05-13 15:57:33 +01001041 ERR_CORRECTION_INFO);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001042 err_correction_value =
Jason Robertsce082592010-05-13 15:57:33 +01001043 ECC_CORRECTION_VALUE(err_correction_info);
1044 err_device = ECC_ERR_DEVICE(err_correction_info);
1045
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001046 if (ECC_ERROR_CORRECTABLE(err_correction_info)) {
Jason Robertsce082592010-05-13 15:57:33 +01001047 /* offset in our buffer is computed as:
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001048 sector number * sector size + offset in
Jason Robertsce082592010-05-13 15:57:33 +01001049 sector
1050 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001051 int offset = err_sector * ECC_SECTOR_SIZE +
Jason Robertsce082592010-05-13 15:57:33 +01001052 err_byte;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001053 if (offset < denali->mtd.writesize) {
Jason Robertsce082592010-05-13 15:57:33 +01001054 /* correct the ECC error */
1055 buf[offset] ^= err_correction_value;
1056 denali->mtd.ecc_stats.corrected++;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001057 } else {
Jason Robertsce082592010-05-13 15:57:33 +01001058 /* bummer, couldn't correct the error */
1059 printk(KERN_ERR "ECC offset invalid\n");
1060 denali->mtd.ecc_stats.failed++;
1061 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001062 } else {
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001063 /* if the error is not correctable, need to
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001064 * look at the page to see if it is an erased
1065 * page. if so, then it's not a real ECC error
1066 * */
Jason Robertsce082592010-05-13 15:57:33 +01001067 check_erased_page = true;
1068 }
1069
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001070#if DEBUG_DENALI
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001071 printk(KERN_INFO "Detected ECC error in page %d:"
1072 " err_addr = 0x%08x, info to fix is"
1073 " 0x%08x\n", denali->page, err_address,
1074 err_correction_info);
Jason Robertsce082592010-05-13 15:57:33 +01001075#endif
1076 } while (!ECC_LAST_ERR(err_correction_info));
1077 }
1078 return check_erased_page;
1079}
1080
1081/* programs the controller to either enable/disable DMA transfers */
David Woodhouseaadff492010-05-13 16:12:43 +01001082static void denali_enable_dma(struct denali_nand_info *denali, bool en)
Jason Robertsce082592010-05-13 15:57:33 +01001083{
1084 uint32_t reg_val = 0x0;
1085
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001086 if (en)
1087 reg_val = DMA_ENABLE__FLAG;
Jason Robertsce082592010-05-13 15:57:33 +01001088
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001089 iowrite32(reg_val, denali->flash_reg + DMA_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +01001090 ioread32(denali->flash_reg + DMA_ENABLE);
1091}
1092
1093/* setups the HW to perform the data DMA */
David Woodhouseaadff492010-05-13 16:12:43 +01001094static void denali_setup_dma(struct denali_nand_info *denali, int op)
Jason Robertsce082592010-05-13 15:57:33 +01001095{
1096 uint32_t mode = 0x0;
1097 const int page_count = 1;
1098 dma_addr_t addr = denali->buf.dma_buf;
1099
1100 mode = MODE_10 | BANK(denali->flash_bank);
1101
1102 /* DMA is a four step process */
1103
1104 /* 1. setup transfer type and # of pages */
1105 index_addr(denali, mode | denali->page, 0x2000 | op | page_count);
1106
1107 /* 2. set memory high address bits 23:8 */
1108 index_addr(denali, mode | ((uint16_t)(addr >> 16) << 8), 0x2200);
1109
1110 /* 3. set memory low address bits 23:8 */
1111 index_addr(denali, mode | ((uint16_t)addr << 8), 0x2300);
1112
1113 /* 4. interrupt when complete, burst len = 64 bytes*/
1114 index_addr(denali, mode | 0x14000, 0x2400);
1115}
1116
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001117/* writes a page. user specifies type, and this function handles the
Jason Robertsce082592010-05-13 15:57:33 +01001118 configuration details. */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001119static void write_page(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001120 const uint8_t *buf, bool raw_xfer)
1121{
1122 struct denali_nand_info *denali = mtd_to_denali(mtd);
1123 struct pci_dev *pci_dev = denali->dev;
1124
1125 dma_addr_t addr = denali->buf.dma_buf;
1126 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1127
1128 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001129 uint32_t irq_mask = INTR_STATUS0__DMA_CMD_COMP |
Jason Robertsce082592010-05-13 15:57:33 +01001130 INTR_STATUS0__PROGRAM_FAIL;
1131
1132 /* if it is a raw xfer, we want to disable ecc, and send
1133 * the spare area.
1134 * !raw_xfer - enable ecc
1135 * raw_xfer - transfer spare
1136 */
1137 setup_ecc_for_xfer(denali, !raw_xfer, raw_xfer);
1138
1139 /* copy buffer into DMA buffer */
1140 memcpy(denali->buf.buf, buf, mtd->writesize);
1141
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001142 if (raw_xfer) {
Jason Robertsce082592010-05-13 15:57:33 +01001143 /* transfer the data to the spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001144 memcpy(denali->buf.buf + mtd->writesize,
1145 chip->oob_poi,
1146 mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +01001147 }
1148
1149 pci_dma_sync_single_for_device(pci_dev, addr, size, PCI_DMA_TODEVICE);
1150
1151 clear_interrupts(denali);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001152 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001153
David Woodhouseaadff492010-05-13 16:12:43 +01001154 denali_setup_dma(denali, DENALI_WRITE);
Jason Robertsce082592010-05-13 15:57:33 +01001155
1156 /* wait for operation to complete */
1157 irq_status = wait_for_irq(denali, irq_mask);
1158
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001159 if (irq_status == 0) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001160 printk(KERN_ERR "timeout on write_page"
1161 " (type = %d)\n", raw_xfer);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001162 denali->status =
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001163 (irq_status & INTR_STATUS0__PROGRAM_FAIL) ?
1164 NAND_STATUS_FAIL : PASS;
Jason Robertsce082592010-05-13 15:57:33 +01001165 }
1166
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001167 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001168 pci_dma_sync_single_for_cpu(pci_dev, addr, size, PCI_DMA_TODEVICE);
1169}
1170
1171/* NAND core entry points */
1172
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001173/* this is the callback that the NAND core calls to write a page. Since
1174 writing a page with ECC or without is similar, all the work is done
Jason Robertsce082592010-05-13 15:57:33 +01001175 by write_page above. */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001176static void denali_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001177 const uint8_t *buf)
1178{
1179 /* for regular page writes, we let HW handle all the ECC
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001180 * data written to the device. */
Jason Robertsce082592010-05-13 15:57:33 +01001181 write_page(mtd, chip, buf, false);
1182}
1183
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001184/* This is the callback that the NAND core calls to write a page without ECC.
Jason Robertsce082592010-05-13 15:57:33 +01001185 raw access is similiar to ECC page writes, so all the work is done in the
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001186 write_page() function above.
Jason Robertsce082592010-05-13 15:57:33 +01001187 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001188static void denali_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001189 const uint8_t *buf)
1190{
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001191 /* for raw page writes, we want to disable ECC and simply write
Jason Robertsce082592010-05-13 15:57:33 +01001192 whatever data is in the buffer. */
1193 write_page(mtd, chip, buf, true);
1194}
1195
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001196static int denali_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001197 int page)
1198{
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001199 return write_oob_data(mtd, chip->oob_poi, page);
Jason Robertsce082592010-05-13 15:57:33 +01001200}
1201
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001202static int denali_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001203 int page, int sndcmd)
1204{
1205 read_oob_data(mtd, chip->oob_poi, page);
1206
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001207 return 0; /* notify NAND core to send command to
1208 NAND device. */
Jason Robertsce082592010-05-13 15:57:33 +01001209}
1210
1211static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip,
1212 uint8_t *buf, int page)
1213{
1214 struct denali_nand_info *denali = mtd_to_denali(mtd);
1215 struct pci_dev *pci_dev = denali->dev;
1216
1217 dma_addr_t addr = denali->buf.dma_buf;
1218 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1219
1220 uint32_t irq_status = 0;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001221 uint32_t irq_mask = INTR_STATUS0__ECC_TRANSACTION_DONE |
Jason Robertsce082592010-05-13 15:57:33 +01001222 INTR_STATUS0__ECC_ERR;
1223 bool check_erased_page = false;
1224
1225 setup_ecc_for_xfer(denali, true, false);
1226
David Woodhouseaadff492010-05-13 16:12:43 +01001227 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001228 pci_dma_sync_single_for_device(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1229
1230 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001231 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001232
1233 /* wait for operation to complete */
1234 irq_status = wait_for_irq(denali, irq_mask);
1235
1236 pci_dma_sync_single_for_cpu(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1237
1238 memcpy(buf, denali->buf.buf, mtd->writesize);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001239
Jason Robertsce082592010-05-13 15:57:33 +01001240 check_erased_page = handle_ecc(denali, buf, chip->oob_poi, irq_status);
David Woodhouseaadff492010-05-13 16:12:43 +01001241 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001242
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001243 if (check_erased_page) {
Jason Robertsce082592010-05-13 15:57:33 +01001244 read_oob_data(&denali->mtd, chip->oob_poi, denali->page);
1245
1246 /* check ECC failures that may have occurred on erased pages */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001247 if (check_erased_page) {
Jason Robertsce082592010-05-13 15:57:33 +01001248 if (!is_erased(buf, denali->mtd.writesize))
Jason Robertsce082592010-05-13 15:57:33 +01001249 denali->mtd.ecc_stats.failed++;
Jason Robertsce082592010-05-13 15:57:33 +01001250 if (!is_erased(buf, denali->mtd.oobsize))
Jason Robertsce082592010-05-13 15:57:33 +01001251 denali->mtd.ecc_stats.failed++;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001252 }
Jason Robertsce082592010-05-13 15:57:33 +01001253 }
1254 return 0;
1255}
1256
1257static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
1258 uint8_t *buf, int page)
1259{
1260 struct denali_nand_info *denali = mtd_to_denali(mtd);
1261 struct pci_dev *pci_dev = denali->dev;
1262
1263 dma_addr_t addr = denali->buf.dma_buf;
1264 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1265
1266 uint32_t irq_status = 0;
1267 uint32_t irq_mask = INTR_STATUS0__DMA_CMD_COMP;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001268
Jason Robertsce082592010-05-13 15:57:33 +01001269 setup_ecc_for_xfer(denali, false, true);
David Woodhouseaadff492010-05-13 16:12:43 +01001270 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001271
1272 pci_dma_sync_single_for_device(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1273
1274 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001275 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001276
1277 /* wait for operation to complete */
1278 irq_status = wait_for_irq(denali, irq_mask);
1279
1280 pci_dma_sync_single_for_cpu(pci_dev, addr, size, PCI_DMA_FROMDEVICE);
1281
David Woodhouseaadff492010-05-13 16:12:43 +01001282 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001283
1284 memcpy(buf, denali->buf.buf, mtd->writesize);
1285 memcpy(chip->oob_poi, denali->buf.buf + mtd->writesize, mtd->oobsize);
1286
1287 return 0;
1288}
1289
1290static uint8_t denali_read_byte(struct mtd_info *mtd)
1291{
1292 struct denali_nand_info *denali = mtd_to_denali(mtd);
1293 uint8_t result = 0xff;
1294
1295 if (denali->buf.head < denali->buf.tail)
Jason Robertsce082592010-05-13 15:57:33 +01001296 result = denali->buf.buf[denali->buf.head++];
Jason Robertsce082592010-05-13 15:57:33 +01001297
1298#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001299 printk(KERN_INFO "read byte -> 0x%02x\n", result);
Jason Robertsce082592010-05-13 15:57:33 +01001300#endif
1301 return result;
1302}
1303
1304static void denali_select_chip(struct mtd_info *mtd, int chip)
1305{
1306 struct denali_nand_info *denali = mtd_to_denali(mtd);
1307#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001308 printk(KERN_INFO "denali select chip %d\n", chip);
Jason Robertsce082592010-05-13 15:57:33 +01001309#endif
1310 spin_lock_irq(&denali->irq_lock);
1311 denali->flash_bank = chip;
1312 spin_unlock_irq(&denali->irq_lock);
1313}
1314
1315static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip)
1316{
1317 struct denali_nand_info *denali = mtd_to_denali(mtd);
1318 int status = denali->status;
1319 denali->status = 0;
1320
1321#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001322 printk(KERN_INFO "waitfunc %d\n", status);
Jason Robertsce082592010-05-13 15:57:33 +01001323#endif
1324 return status;
1325}
1326
1327static void denali_erase(struct mtd_info *mtd, int page)
1328{
1329 struct denali_nand_info *denali = mtd_to_denali(mtd);
1330
1331 uint32_t cmd = 0x0, irq_status = 0;
1332
1333#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001334 printk(KERN_INFO "erase page: %d\n", page);
Jason Robertsce082592010-05-13 15:57:33 +01001335#endif
1336 /* clear interrupts */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001337 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001338
1339 /* setup page read request for access type */
1340 cmd = MODE_10 | BANK(denali->flash_bank) | page;
1341 index_addr(denali, (uint32_t)cmd, 0x1);
1342
1343 /* wait for erase to complete or failure to occur */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001344 irq_status = wait_for_irq(denali, INTR_STATUS0__ERASE_COMP |
Jason Robertsce082592010-05-13 15:57:33 +01001345 INTR_STATUS0__ERASE_FAIL);
1346
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001347 denali->status = (irq_status & INTR_STATUS0__ERASE_FAIL) ?
1348 NAND_STATUS_FAIL : PASS;
Jason Robertsce082592010-05-13 15:57:33 +01001349}
1350
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001351static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col,
Jason Robertsce082592010-05-13 15:57:33 +01001352 int page)
1353{
1354 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001355 uint32_t addr, id;
1356 int i;
Jason Robertsce082592010-05-13 15:57:33 +01001357
1358#if DEBUG_DENALI
Chuanxiao Dongbf1806d2010-07-27 10:48:34 +08001359 printk(KERN_INFO "cmdfunc: 0x%x %d %d\n", cmd, col, page);
Jason Robertsce082592010-05-13 15:57:33 +01001360#endif
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001361 switch (cmd) {
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001362 case NAND_CMD_PAGEPROG:
1363 break;
1364 case NAND_CMD_STATUS:
1365 read_status(denali);
1366 break;
1367 case NAND_CMD_READID:
1368 reset_buf(denali);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001369 /*sometimes ManufactureId read from register is not right
1370 * e.g. some of Micron MT29F32G08QAA MLC NAND chips
1371 * So here we send READID cmd to NAND insteand
1372 * */
1373 addr = (uint32_t)MODE_11 | BANK(denali->flash_bank);
1374 index_addr(denali, (uint32_t)addr | 0, 0x90);
1375 index_addr(denali, (uint32_t)addr | 1, 0);
1376 for (i = 0; i < 5; i++) {
1377 index_addr_read_data(denali,
1378 (uint32_t)addr | 2,
1379 &id);
1380 write_byte_to_buf(denali, id);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001381 }
1382 break;
1383 case NAND_CMD_READ0:
1384 case NAND_CMD_SEQIN:
1385 denali->page = page;
1386 break;
1387 case NAND_CMD_RESET:
1388 reset_bank(denali);
1389 break;
1390 case NAND_CMD_READOOB:
1391 /* TODO: Read OOB data */
1392 break;
1393 default:
1394 printk(KERN_ERR ": unsupported command"
1395 " received 0x%x\n", cmd);
1396 break;
Jason Robertsce082592010-05-13 15:57:33 +01001397 }
1398}
1399
1400/* stubs for ECC functions not used by the NAND core */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001401static int denali_ecc_calculate(struct mtd_info *mtd, const uint8_t *data,
Jason Robertsce082592010-05-13 15:57:33 +01001402 uint8_t *ecc_code)
1403{
1404 printk(KERN_ERR "denali_ecc_calculate called unexpectedly\n");
1405 BUG();
1406 return -EIO;
1407}
1408
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001409static int denali_ecc_correct(struct mtd_info *mtd, uint8_t *data,
Jason Robertsce082592010-05-13 15:57:33 +01001410 uint8_t *read_ecc, uint8_t *calc_ecc)
1411{
1412 printk(KERN_ERR "denali_ecc_correct called unexpectedly\n");
1413 BUG();
1414 return -EIO;
1415}
1416
1417static void denali_ecc_hwctl(struct mtd_info *mtd, int mode)
1418{
1419 printk(KERN_ERR "denali_ecc_hwctl called unexpectedly\n");
1420 BUG();
1421}
1422/* end NAND core entry points */
1423
1424/* Initialization code to bring the device up to a known good state */
1425static void denali_hw_init(struct denali_nand_info *denali)
1426{
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001427 /* tell driver how many bit controller will skip before
1428 * writing ECC code in OOB, this register may be already
1429 * set by firmware. So we read this value out.
1430 * if this value is 0, just let it be.
1431 * */
1432 denali->bbtskipbytes = ioread32(denali->flash_reg +
1433 SPARE_AREA_SKIP_BYTES);
Jason Robertsce082592010-05-13 15:57:33 +01001434 denali_irq_init(denali);
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001435 denali_nand_reset(denali);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001436 iowrite32(0x0F, denali->flash_reg + RB_PIN_ENABLED);
1437 iowrite32(CHIP_EN_DONT_CARE__FLAG,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001438 denali->flash_reg + CHIP_ENABLE_DONT_CARE);
Jason Robertsce082592010-05-13 15:57:33 +01001439
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001440 iowrite32(0x0, denali->flash_reg + SPARE_AREA_SKIP_BYTES);
1441 iowrite32(0xffff, denali->flash_reg + SPARE_AREA_MARKER);
Jason Robertsce082592010-05-13 15:57:33 +01001442
1443 /* Should set value for these registers when init */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001444 iowrite32(0, denali->flash_reg + TWO_ROW_ADDR_CYCLES);
1445 iowrite32(1, denali->flash_reg + ECC_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +01001446}
1447
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001448/* Althogh controller spec said SLC ECC is forceb to be 4bit,
1449 * but denali controller in MRST only support 15bit and 8bit ECC
1450 * correction
1451 * */
1452#define ECC_8BITS 14
1453static struct nand_ecclayout nand_8bit_oob = {
1454 .eccbytes = 14,
Jason Robertsce082592010-05-13 15:57:33 +01001455};
1456
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001457#define ECC_15BITS 26
1458static struct nand_ecclayout nand_15bit_oob = {
1459 .eccbytes = 26,
Jason Robertsce082592010-05-13 15:57:33 +01001460};
1461
1462static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1463static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1464
1465static struct nand_bbt_descr bbt_main_descr = {
1466 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1467 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1468 .offs = 8,
1469 .len = 4,
1470 .veroffs = 12,
1471 .maxblocks = 4,
1472 .pattern = bbt_pattern,
1473};
1474
1475static struct nand_bbt_descr bbt_mirror_descr = {
1476 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1477 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1478 .offs = 8,
1479 .len = 4,
1480 .veroffs = 12,
1481 .maxblocks = 4,
1482 .pattern = mirror_pattern,
1483};
1484
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001485/* initialize driver data structures */
Jason Robertsce082592010-05-13 15:57:33 +01001486void denali_drv_init(struct denali_nand_info *denali)
1487{
1488 denali->idx = 0;
1489
1490 /* setup interrupt handler */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001491 /* the completion object will be used to notify
Jason Robertsce082592010-05-13 15:57:33 +01001492 * the callee that the interrupt is done */
1493 init_completion(&denali->complete);
1494
1495 /* the spinlock will be used to synchronize the ISR
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001496 * with any element that might be access shared
Jason Robertsce082592010-05-13 15:57:33 +01001497 * data (interrupt status) */
1498 spin_lock_init(&denali->irq_lock);
1499
1500 /* indicate that MTD has not selected a valid bank yet */
1501 denali->flash_bank = CHIP_SELECT_INVALID;
1502
1503 /* initialize our irq_status variable to indicate no interrupts */
1504 denali->irq_status = 0;
1505}
1506
1507/* driver entry point */
1508static int denali_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
1509{
1510 int ret = -ENODEV;
1511 resource_size_t csr_base, mem_base;
1512 unsigned long csr_len, mem_len;
1513 struct denali_nand_info *denali;
1514
1515 nand_dbg_print(NAND_DBG_TRACE, "%s, Line %d, Function: %s\n",
1516 __FILE__, __LINE__, __func__);
1517
1518 denali = kzalloc(sizeof(*denali), GFP_KERNEL);
1519 if (!denali)
1520 return -ENOMEM;
1521
1522 ret = pci_enable_device(dev);
1523 if (ret) {
1524 printk(KERN_ERR "Spectra: pci_enable_device failed.\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001525 goto failed_alloc_memery;
Jason Robertsce082592010-05-13 15:57:33 +01001526 }
1527
1528 if (id->driver_data == INTEL_CE4100) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001529 /* Due to a silicon limitation, we can only support
1530 * ONFI timing mode 1 and below.
1531 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001532 if (onfi_timing_mode < -1 || onfi_timing_mode > 1) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001533 printk(KERN_ERR "Intel CE4100 only supports"
1534 " ONFI timing mode 1 or below\n");
Jason Robertsce082592010-05-13 15:57:33 +01001535 ret = -EINVAL;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001536 goto failed_enable_dev;
Jason Robertsce082592010-05-13 15:57:33 +01001537 }
1538 denali->platform = INTEL_CE4100;
1539 mem_base = pci_resource_start(dev, 0);
1540 mem_len = pci_resource_len(dev, 1);
1541 csr_base = pci_resource_start(dev, 1);
1542 csr_len = pci_resource_len(dev, 1);
1543 } else {
1544 denali->platform = INTEL_MRST;
1545 csr_base = pci_resource_start(dev, 0);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001546 csr_len = pci_resource_len(dev, 0);
Jason Robertsce082592010-05-13 15:57:33 +01001547 mem_base = pci_resource_start(dev, 1);
1548 mem_len = pci_resource_len(dev, 1);
1549 if (!mem_len) {
1550 mem_base = csr_base + csr_len;
1551 mem_len = csr_len;
1552 nand_dbg_print(NAND_DBG_WARN,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001553 "Spectra: No second"
1554 " BAR for PCI device;"
1555 " assuming %08Lx\n",
Jason Robertsce082592010-05-13 15:57:33 +01001556 (uint64_t)csr_base);
1557 }
1558 }
1559
1560 /* Is 32-bit DMA supported? */
1561 ret = pci_set_dma_mask(dev, DMA_BIT_MASK(32));
1562
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001563 if (ret) {
Jason Robertsce082592010-05-13 15:57:33 +01001564 printk(KERN_ERR "Spectra: no usable DMA configuration\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001565 goto failed_enable_dev;
Jason Robertsce082592010-05-13 15:57:33 +01001566 }
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001567 denali->buf.dma_buf =
1568 pci_map_single(dev, denali->buf.buf,
1569 DENALI_BUF_SIZE,
1570 PCI_DMA_BIDIRECTIONAL);
Jason Robertsce082592010-05-13 15:57:33 +01001571
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001572 if (pci_dma_mapping_error(dev, denali->buf.dma_buf)) {
Jason Robertsce082592010-05-13 15:57:33 +01001573 printk(KERN_ERR "Spectra: failed to map DMA buffer\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001574 goto failed_enable_dev;
Jason Robertsce082592010-05-13 15:57:33 +01001575 }
1576
1577 pci_set_master(dev);
1578 denali->dev = dev;
1579
1580 ret = pci_request_regions(dev, DENALI_NAND_NAME);
1581 if (ret) {
1582 printk(KERN_ERR "Spectra: Unable to request memory regions\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001583 goto failed_dma_map;
Jason Robertsce082592010-05-13 15:57:33 +01001584 }
1585
1586 denali->flash_reg = ioremap_nocache(csr_base, csr_len);
1587 if (!denali->flash_reg) {
1588 printk(KERN_ERR "Spectra: Unable to remap memory region\n");
1589 ret = -ENOMEM;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001590 goto failed_req_regions;
Jason Robertsce082592010-05-13 15:57:33 +01001591 }
1592 nand_dbg_print(NAND_DBG_DEBUG, "Spectra: CSR 0x%08Lx -> 0x%p (0x%lx)\n",
1593 (uint64_t)csr_base, denali->flash_reg, csr_len);
1594
1595 denali->flash_mem = ioremap_nocache(mem_base, mem_len);
1596 if (!denali->flash_mem) {
1597 printk(KERN_ERR "Spectra: ioremap_nocache failed!");
Jason Robertsce082592010-05-13 15:57:33 +01001598 ret = -ENOMEM;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001599 goto failed_remap_reg;
Jason Robertsce082592010-05-13 15:57:33 +01001600 }
1601
1602 nand_dbg_print(NAND_DBG_WARN,
1603 "Spectra: Remapped flash base address: "
1604 "0x%p, len: %ld\n",
1605 denali->flash_mem, csr_len);
1606
1607 denali_hw_init(denali);
1608 denali_drv_init(denali);
1609
1610 nand_dbg_print(NAND_DBG_DEBUG, "Spectra: IRQ %d\n", dev->irq);
1611 if (request_irq(dev->irq, denali_isr, IRQF_SHARED,
1612 DENALI_NAND_NAME, denali)) {
1613 printk(KERN_ERR "Spectra: Unable to allocate IRQ\n");
1614 ret = -ENODEV;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001615 goto failed_remap_mem;
Jason Robertsce082592010-05-13 15:57:33 +01001616 }
1617
1618 /* now that our ISR is registered, we can enable interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001619 denali_set_intr_modes(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001620
1621 pci_set_drvdata(dev, denali);
1622
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001623 denali_nand_timing_set(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001624
1625 nand_dbg_print(NAND_DBG_DEBUG, "Dump timing register values:"
1626 "acc_clks: %d, re_2_we: %d, we_2_re: %d,"
1627 "addr_2_data: %d, rdwr_en_lo_cnt: %d, "
1628 "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n",
1629 ioread32(denali->flash_reg + ACC_CLKS),
1630 ioread32(denali->flash_reg + RE_2_WE),
1631 ioread32(denali->flash_reg + WE_2_RE),
1632 ioread32(denali->flash_reg + ADDR_2_DATA),
1633 ioread32(denali->flash_reg + RDWR_EN_LO_CNT),
1634 ioread32(denali->flash_reg + RDWR_EN_HI_CNT),
1635 ioread32(denali->flash_reg + CS_SETUP_CNT));
1636
1637 denali->mtd.name = "Denali NAND";
1638 denali->mtd.owner = THIS_MODULE;
1639 denali->mtd.priv = &denali->nand;
1640
1641 /* register the driver with the NAND core subsystem */
1642 denali->nand.select_chip = denali_select_chip;
1643 denali->nand.cmdfunc = denali_cmdfunc;
1644 denali->nand.read_byte = denali_read_byte;
1645 denali->nand.waitfunc = denali_waitfunc;
1646
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001647 /* scan for NAND devices attached to the controller
Jason Robertsce082592010-05-13 15:57:33 +01001648 * this is the first stage in a two step process to register
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001649 * with the nand subsystem */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001650 if (nand_scan_ident(&denali->mtd, LLD_MAX_FLASH_BANKS, NULL)) {
Jason Robertsce082592010-05-13 15:57:33 +01001651 ret = -ENXIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001652 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001653 }
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001654
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001655 /* MTD supported page sizes vary by kernel. We validate our
1656 * kernel supports the device here.
1657 */
1658 if (denali->mtd.writesize > NAND_MAX_PAGESIZE + NAND_MAX_OOBSIZE) {
1659 ret = -ENODEV;
1660 printk(KERN_ERR "Spectra: device size not supported by this "
1661 "version of MTD.");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001662 goto failed_req_irq;
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001663 }
1664
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001665 /* support for multi nand
1666 * MTD known nothing about multi nand,
1667 * so we should tell it the real pagesize
1668 * and anything necessery
1669 */
1670 denali->devnum = ioread32(denali->flash_reg + DEVICES_CONNECTED);
1671 denali->nand.chipsize <<= (denali->devnum - 1);
1672 denali->nand.page_shift += (denali->devnum - 1);
1673 denali->nand.pagemask = (denali->nand.chipsize >>
1674 denali->nand.page_shift) - 1;
1675 denali->nand.bbt_erase_shift += (denali->devnum - 1);
1676 denali->nand.phys_erase_shift = denali->nand.bbt_erase_shift;
1677 denali->nand.chip_shift += (denali->devnum - 1);
1678 denali->mtd.writesize <<= (denali->devnum - 1);
1679 denali->mtd.oobsize <<= (denali->devnum - 1);
1680 denali->mtd.erasesize <<= (denali->devnum - 1);
1681 denali->mtd.size = denali->nand.numchips * denali->nand.chipsize;
1682 denali->bbtskipbytes *= denali->devnum;
1683
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001684 /* second stage of the NAND scan
1685 * this stage requires information regarding ECC and
1686 * bad block management. */
Jason Robertsce082592010-05-13 15:57:33 +01001687
1688 /* Bad block management */
1689 denali->nand.bbt_td = &bbt_main_descr;
1690 denali->nand.bbt_md = &bbt_mirror_descr;
1691
1692 /* skip the scan for now until we have OOB read and write support */
1693 denali->nand.options |= NAND_USE_FLASH_BBT | NAND_SKIP_BBTSCAN;
1694 denali->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
1695
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001696 /* Denali Controller only support 15bit and 8bit ECC in MRST,
1697 * so just let controller do 15bit ECC for MLC and 8bit ECC for
1698 * SLC if possible.
1699 * */
1700 if (denali->nand.cellinfo & 0xc &&
1701 (denali->mtd.oobsize > (denali->bbtskipbytes +
1702 ECC_15BITS * (denali->mtd.writesize /
1703 ECC_SECTOR_SIZE)))) {
1704 /* if MLC OOB size is large enough, use 15bit ECC*/
1705 denali->nand.ecc.layout = &nand_15bit_oob;
1706 denali->nand.ecc.bytes = ECC_15BITS;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001707 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001708 } else if (denali->mtd.oobsize < (denali->bbtskipbytes +
1709 ECC_8BITS * (denali->mtd.writesize /
1710 ECC_SECTOR_SIZE))) {
1711 printk(KERN_ERR "Your NAND chip OOB is not large enough to"
1712 " contain 8bit ECC correction codes");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001713 goto failed_req_irq;
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001714 } else {
1715 denali->nand.ecc.layout = &nand_8bit_oob;
1716 denali->nand.ecc.bytes = ECC_8BITS;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001717 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +01001718 }
1719
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001720 denali->nand.ecc.bytes *= denali->devnum;
Chuanxiao Dongdb9a3212010-08-06 18:02:03 +08001721 denali->nand.ecc.layout->eccbytes *=
1722 denali->mtd.writesize / ECC_SECTOR_SIZE;
1723 denali->nand.ecc.layout->oobfree[0].offset =
1724 denali->bbtskipbytes + denali->nand.ecc.layout->eccbytes;
1725 denali->nand.ecc.layout->oobfree[0].length =
1726 denali->mtd.oobsize - denali->nand.ecc.layout->eccbytes -
1727 denali->bbtskipbytes;
1728
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001729 /* Let driver know the total blocks number and
1730 * how many blocks contained by each nand chip.
1731 * blksperchip will help driver to know how many
1732 * blocks is taken by FW.
1733 * */
1734 denali->totalblks = denali->mtd.size >>
1735 denali->nand.phys_erase_shift;
1736 denali->blksperchip = denali->totalblks / denali->nand.numchips;
1737
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001738 /* These functions are required by the NAND core framework, otherwise,
1739 * the NAND core will assert. However, we don't need them, so we'll stub
1740 * them out. */
Jason Robertsce082592010-05-13 15:57:33 +01001741 denali->nand.ecc.calculate = denali_ecc_calculate;
1742 denali->nand.ecc.correct = denali_ecc_correct;
1743 denali->nand.ecc.hwctl = denali_ecc_hwctl;
1744
1745 /* override the default read operations */
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001746 denali->nand.ecc.size = ECC_SECTOR_SIZE * denali->devnum;
Jason Robertsce082592010-05-13 15:57:33 +01001747 denali->nand.ecc.read_page = denali_read_page;
1748 denali->nand.ecc.read_page_raw = denali_read_page_raw;
1749 denali->nand.ecc.write_page = denali_write_page;
1750 denali->nand.ecc.write_page_raw = denali_write_page_raw;
1751 denali->nand.ecc.read_oob = denali_read_oob;
1752 denali->nand.ecc.write_oob = denali_write_oob;
1753 denali->nand.erase_cmd = denali_erase;
1754
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001755 if (nand_scan_tail(&denali->mtd)) {
Jason Robertsce082592010-05-13 15:57:33 +01001756 ret = -ENXIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001757 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001758 }
1759
1760 ret = add_mtd_device(&denali->mtd);
1761 if (ret) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001762 printk(KERN_ERR "Spectra: Failed to register"
1763 " MTD device: %d\n", ret);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001764 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001765 }
1766 return 0;
1767
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001768failed_req_irq:
Jason Robertsce082592010-05-13 15:57:33 +01001769 denali_irq_cleanup(dev->irq, denali);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001770failed_remap_mem:
Jason Robertsce082592010-05-13 15:57:33 +01001771 iounmap(denali->flash_mem);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001772failed_remap_reg:
1773 iounmap(denali->flash_reg);
1774failed_req_regions:
Jason Robertsce082592010-05-13 15:57:33 +01001775 pci_release_regions(dev);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001776failed_dma_map:
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001777 pci_unmap_single(dev, denali->buf.dma_buf, DENALI_BUF_SIZE,
Jason Robertsce082592010-05-13 15:57:33 +01001778 PCI_DMA_BIDIRECTIONAL);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001779failed_enable_dev:
1780 pci_disable_device(dev);
1781failed_alloc_memery:
Jason Robertsce082592010-05-13 15:57:33 +01001782 kfree(denali);
1783 return ret;
1784}
1785
1786/* driver exit point */
1787static void denali_pci_remove(struct pci_dev *dev)
1788{
1789 struct denali_nand_info *denali = pci_get_drvdata(dev);
1790
1791 nand_dbg_print(NAND_DBG_WARN, "%s, Line %d, Function: %s\n",
1792 __FILE__, __LINE__, __func__);
1793
1794 nand_release(&denali->mtd);
1795 del_mtd_device(&denali->mtd);
1796
1797 denali_irq_cleanup(dev->irq, denali);
1798
1799 iounmap(denali->flash_reg);
1800 iounmap(denali->flash_mem);
1801 pci_release_regions(dev);
1802 pci_disable_device(dev);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001803 pci_unmap_single(dev, denali->buf.dma_buf, DENALI_BUF_SIZE,
Jason Robertsce082592010-05-13 15:57:33 +01001804 PCI_DMA_BIDIRECTIONAL);
1805 pci_set_drvdata(dev, NULL);
1806 kfree(denali);
1807}
1808
1809MODULE_DEVICE_TABLE(pci, denali_pci_ids);
1810
1811static struct pci_driver denali_pci_driver = {
1812 .name = DENALI_NAND_NAME,
1813 .id_table = denali_pci_ids,
1814 .probe = denali_pci_probe,
1815 .remove = denali_pci_remove,
1816};
1817
1818static int __devinit denali_init(void)
1819{
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001820 printk(KERN_INFO "Spectra MTD driver built on %s @ %s\n",
1821 __DATE__, __TIME__);
Jason Robertsce082592010-05-13 15:57:33 +01001822 return pci_register_driver(&denali_pci_driver);
1823}
1824
1825/* Free memory */
1826static void __devexit denali_exit(void)
1827{
1828 pci_unregister_driver(&denali_pci_driver);
1829}
1830
1831module_init(denali_init);
1832module_exit(denali_exit);