blob: 766af04d1cb37dca984f26c144d4b376ebb271d4 [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 */
Jason Robertsce082592010-05-13 15:57:33 +010019#include <linux/interrupt.h>
20#include <linux/delay.h>
Jamie Iles84457942011-05-06 15:28:55 +010021#include <linux/dma-mapping.h>
Jason Robertsce082592010-05-13 15:57:33 +010022#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/mtd/mtd.h>
26#include <linux/module.h>
27
28#include "denali.h"
29
30MODULE_LICENSE("GPL");
31
Masahiro Yamada43914a22014-09-09 11:01:51 +090032/*
33 * 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
Masahiro Yamada43914a22014-09-09 11:01:51 +090045/*
46 * We define a macro here that combines all interrupts this driver uses into
47 * a single constant value, for convenience.
48 */
Jamie Iles9589bf52011-05-06 15:28:56 +010049#define DENALI_IRQ_ALL (INTR_STATUS__DMA_CMD_COMP | \
50 INTR_STATUS__ECC_TRANSACTION_DONE | \
51 INTR_STATUS__ECC_ERR | \
52 INTR_STATUS__PROGRAM_FAIL | \
53 INTR_STATUS__LOAD_COMP | \
54 INTR_STATUS__PROGRAM_COMP | \
55 INTR_STATUS__TIME_OUT | \
56 INTR_STATUS__ERASE_FAIL | \
57 INTR_STATUS__RST_COMP | \
58 INTR_STATUS__ERASE_COMP)
Jason Robertsce082592010-05-13 15:57:33 +010059
Masahiro Yamada43914a22014-09-09 11:01:51 +090060/*
61 * indicates whether or not the internal value for the flash bank is
62 * valid or not
63 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +080064#define CHIP_SELECT_INVALID -1
Jason Robertsce082592010-05-13 15:57:33 +010065
66#define SUPPORT_8BITECC 1
67
Masahiro Yamada43914a22014-09-09 11:01:51 +090068/*
69 * This macro divides two integers and rounds fractional values up
70 * to the nearest integer value.
71 */
Jason Robertsce082592010-05-13 15:57:33 +010072#define CEIL_DIV(X, Y) (((X)%(Y)) ? ((X)/(Y)+1) : ((X)/(Y)))
73
Masahiro Yamada43914a22014-09-09 11:01:51 +090074/*
75 * this macro allows us to convert from an MTD structure to our own
Jason Robertsce082592010-05-13 15:57:33 +010076 * device context (denali) structure.
77 */
78#define mtd_to_denali(m) container_of(m, struct denali_nand_info, mtd)
79
Masahiro Yamada43914a22014-09-09 11:01:51 +090080/*
81 * These constants are defined by the driver to enable common driver
82 * configuration options.
83 */
Jason Robertsce082592010-05-13 15:57:33 +010084#define SPARE_ACCESS 0x41
85#define MAIN_ACCESS 0x42
86#define MAIN_SPARE_ACCESS 0x43
Masahiro Yamada29023302014-07-11 11:14:05 +090087#define PIPELINE_ACCESS 0x2000
Jason Robertsce082592010-05-13 15:57:33 +010088
89#define DENALI_READ 0
90#define DENALI_WRITE 0x100
91
92/* types of device accesses. We can issue commands and get status */
93#define COMMAND_CYCLE 0
94#define ADDR_CYCLE 1
95#define STATUS_CYCLE 2
96
Masahiro Yamada43914a22014-09-09 11:01:51 +090097/*
98 * this is a helper macro that allows us to
99 * format the bank into the proper bits for the controller
100 */
Jason Robertsce082592010-05-13 15:57:33 +0100101#define BANK(x) ((x) << 24)
102
Jason Robertsce082592010-05-13 15:57:33 +0100103/* forward declarations */
104static void clear_interrupts(struct denali_nand_info *denali);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800105static uint32_t wait_for_irq(struct denali_nand_info *denali,
106 uint32_t irq_mask);
107static void denali_irq_enable(struct denali_nand_info *denali,
108 uint32_t int_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100109static uint32_t read_interrupt_status(struct denali_nand_info *denali);
110
Masahiro Yamada43914a22014-09-09 11:01:51 +0900111/*
112 * Certain operations for the denali NAND controller use an indexed mode to
113 * read/write data. The operation is performed by writing the address value
114 * of the command to the device memory followed by the data. This function
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800115 * abstracts this common operation.
Masahiro Yamada43914a22014-09-09 11:01:51 +0900116 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800117static void index_addr(struct denali_nand_info *denali,
118 uint32_t address, uint32_t data)
Jason Robertsce082592010-05-13 15:57:33 +0100119{
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800120 iowrite32(address, denali->flash_mem);
121 iowrite32(data, denali->flash_mem + 0x10);
Jason Robertsce082592010-05-13 15:57:33 +0100122}
123
124/* Perform an indexed read of the device */
125static void index_addr_read_data(struct denali_nand_info *denali,
126 uint32_t address, uint32_t *pdata)
127{
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800128 iowrite32(address, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100129 *pdata = ioread32(denali->flash_mem + 0x10);
130}
131
Masahiro Yamada43914a22014-09-09 11:01:51 +0900132/*
133 * We need to buffer some data for some of the NAND core routines.
134 * The operations manage buffering that data.
135 */
Jason Robertsce082592010-05-13 15:57:33 +0100136static void reset_buf(struct denali_nand_info *denali)
137{
138 denali->buf.head = denali->buf.tail = 0;
139}
140
141static void write_byte_to_buf(struct denali_nand_info *denali, uint8_t byte)
142{
Jason Robertsce082592010-05-13 15:57:33 +0100143 denali->buf.buf[denali->buf.tail++] = byte;
144}
145
146/* reads the status of the device */
147static void read_status(struct denali_nand_info *denali)
148{
149 uint32_t cmd = 0x0;
150
151 /* initialize the data buffer to store status */
152 reset_buf(denali);
153
Chuanxiao Dongf0bc0c72010-08-11 17:14:59 +0800154 cmd = ioread32(denali->flash_reg + WRITE_PROTECT);
155 if (cmd)
156 write_byte_to_buf(denali, NAND_STATUS_WP);
157 else
158 write_byte_to_buf(denali, 0);
Jason Robertsce082592010-05-13 15:57:33 +0100159}
160
161/* resets a specific device connected to the core */
162static void reset_bank(struct denali_nand_info *denali)
163{
164 uint32_t irq_status = 0;
Jamie Iles9589bf52011-05-06 15:28:56 +0100165 uint32_t irq_mask = INTR_STATUS__RST_COMP |
166 INTR_STATUS__TIME_OUT;
Jason Robertsce082592010-05-13 15:57:33 +0100167
168 clear_interrupts(denali);
169
Jamie Iles9589bf52011-05-06 15:28:56 +0100170 iowrite32(1 << denali->flash_bank, denali->flash_reg + DEVICE_RESET);
Jason Robertsce082592010-05-13 15:57:33 +0100171
172 irq_status = wait_for_irq(denali, irq_mask);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800173
Jamie Iles9589bf52011-05-06 15:28:56 +0100174 if (irq_status & INTR_STATUS__TIME_OUT)
Jamie Iles84457942011-05-06 15:28:55 +0100175 dev_err(denali->dev, "reset bank failed.\n");
Jason Robertsce082592010-05-13 15:57:33 +0100176}
177
178/* Reset the flash controller */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800179static uint16_t denali_nand_reset(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100180{
181 uint32_t i;
182
Jamie Iles84457942011-05-06 15:28:55 +0100183 dev_dbg(denali->dev, "%s, Line %d, Function: %s\n",
Jason Robertsce082592010-05-13 15:57:33 +0100184 __FILE__, __LINE__, __func__);
185
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100186 for (i = 0 ; i < denali->max_banks; i++)
Jamie Iles9589bf52011-05-06 15:28:56 +0100187 iowrite32(INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT,
188 denali->flash_reg + INTR_STATUS(i));
Jason Robertsce082592010-05-13 15:57:33 +0100189
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100190 for (i = 0 ; i < denali->max_banks; i++) {
Jamie Iles9589bf52011-05-06 15:28:56 +0100191 iowrite32(1 << i, denali->flash_reg + DEVICE_RESET);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800192 while (!(ioread32(denali->flash_reg +
Jamie Iles9589bf52011-05-06 15:28:56 +0100193 INTR_STATUS(i)) &
194 (INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT)))
Chuanxiao Dong628bfd412010-08-11 17:53:29 +0800195 cpu_relax();
Jamie Iles9589bf52011-05-06 15:28:56 +0100196 if (ioread32(denali->flash_reg + INTR_STATUS(i)) &
197 INTR_STATUS__TIME_OUT)
Jamie Iles84457942011-05-06 15:28:55 +0100198 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100199 "NAND Reset operation timed out on bank %d\n", i);
200 }
201
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100202 for (i = 0; i < denali->max_banks; i++)
Jamie Iles9589bf52011-05-06 15:28:56 +0100203 iowrite32(INTR_STATUS__RST_COMP | INTR_STATUS__TIME_OUT,
204 denali->flash_reg + INTR_STATUS(i));
Jason Robertsce082592010-05-13 15:57:33 +0100205
206 return PASS;
207}
208
Masahiro Yamada43914a22014-09-09 11:01:51 +0900209/*
210 * this routine calculates the ONFI timing values for a given mode and
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800211 * programs the clocking register accordingly. The mode is determined by
212 * the get_onfi_nand_para routine.
Jason Robertsce082592010-05-13 15:57:33 +0100213 */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800214static void nand_onfi_timing_set(struct denali_nand_info *denali,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800215 uint16_t mode)
Jason Robertsce082592010-05-13 15:57:33 +0100216{
217 uint16_t Trea[6] = {40, 30, 25, 20, 20, 16};
218 uint16_t Trp[6] = {50, 25, 17, 15, 12, 10};
219 uint16_t Treh[6] = {30, 15, 15, 10, 10, 7};
220 uint16_t Trc[6] = {100, 50, 35, 30, 25, 20};
221 uint16_t Trhoh[6] = {0, 15, 15, 15, 15, 15};
222 uint16_t Trloh[6] = {0, 0, 0, 0, 5, 5};
223 uint16_t Tcea[6] = {100, 45, 30, 25, 25, 25};
224 uint16_t Tadl[6] = {200, 100, 100, 100, 70, 70};
225 uint16_t Trhw[6] = {200, 100, 100, 100, 100, 100};
226 uint16_t Trhz[6] = {200, 100, 100, 100, 100, 100};
227 uint16_t Twhr[6] = {120, 80, 80, 60, 60, 60};
228 uint16_t Tcs[6] = {70, 35, 25, 25, 20, 15};
229
230 uint16_t TclsRising = 1;
231 uint16_t data_invalid_rhoh, data_invalid_rloh, data_invalid;
232 uint16_t dv_window = 0;
233 uint16_t en_lo, en_hi;
234 uint16_t acc_clks;
235 uint16_t addr_2_data, re_2_we, re_2_re, we_2_re, cs_cnt;
236
Jamie Iles84457942011-05-06 15:28:55 +0100237 dev_dbg(denali->dev, "%s, Line %d, Function: %s\n",
Jason Robertsce082592010-05-13 15:57:33 +0100238 __FILE__, __LINE__, __func__);
239
240 en_lo = CEIL_DIV(Trp[mode], CLK_X);
241 en_hi = CEIL_DIV(Treh[mode], CLK_X);
242#if ONFI_BLOOM_TIME
243 if ((en_hi * CLK_X) < (Treh[mode] + 2))
244 en_hi++;
245#endif
246
247 if ((en_lo + en_hi) * CLK_X < Trc[mode])
248 en_lo += CEIL_DIV((Trc[mode] - (en_lo + en_hi) * CLK_X), CLK_X);
249
250 if ((en_lo + en_hi) < CLK_MULTI)
251 en_lo += CLK_MULTI - en_lo - en_hi;
252
253 while (dv_window < 8) {
254 data_invalid_rhoh = en_lo * CLK_X + Trhoh[mode];
255
256 data_invalid_rloh = (en_lo + en_hi) * CLK_X + Trloh[mode];
257
258 data_invalid =
259 data_invalid_rhoh <
260 data_invalid_rloh ? data_invalid_rhoh : data_invalid_rloh;
261
262 dv_window = data_invalid - Trea[mode];
263
264 if (dv_window < 8)
265 en_lo++;
266 }
267
268 acc_clks = CEIL_DIV(Trea[mode], CLK_X);
269
270 while (((acc_clks * CLK_X) - Trea[mode]) < 3)
271 acc_clks++;
272
273 if ((data_invalid - acc_clks * CLK_X) < 2)
Jamie Iles84457942011-05-06 15:28:55 +0100274 dev_warn(denali->dev, "%s, Line %d: Warning!\n",
Jason Robertsce082592010-05-13 15:57:33 +0100275 __FILE__, __LINE__);
276
277 addr_2_data = CEIL_DIV(Tadl[mode], CLK_X);
278 re_2_we = CEIL_DIV(Trhw[mode], CLK_X);
279 re_2_re = CEIL_DIV(Trhz[mode], CLK_X);
280 we_2_re = CEIL_DIV(Twhr[mode], CLK_X);
281 cs_cnt = CEIL_DIV((Tcs[mode] - Trp[mode]), CLK_X);
282 if (!TclsRising)
283 cs_cnt = CEIL_DIV(Tcs[mode], CLK_X);
284 if (cs_cnt == 0)
285 cs_cnt = 1;
286
287 if (Tcea[mode]) {
288 while (((cs_cnt * CLK_X) + Trea[mode]) < Tcea[mode])
289 cs_cnt++;
290 }
291
292#if MODE5_WORKAROUND
293 if (mode == 5)
294 acc_clks = 5;
295#endif
296
297 /* Sighting 3462430: Temporary hack for MT29F128G08CJABAWP:B */
298 if ((ioread32(denali->flash_reg + MANUFACTURER_ID) == 0) &&
299 (ioread32(denali->flash_reg + DEVICE_ID) == 0x88))
300 acc_clks = 6;
301
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800302 iowrite32(acc_clks, denali->flash_reg + ACC_CLKS);
303 iowrite32(re_2_we, denali->flash_reg + RE_2_WE);
304 iowrite32(re_2_re, denali->flash_reg + RE_2_RE);
305 iowrite32(we_2_re, denali->flash_reg + WE_2_RE);
306 iowrite32(addr_2_data, denali->flash_reg + ADDR_2_DATA);
307 iowrite32(en_lo, denali->flash_reg + RDWR_EN_LO_CNT);
308 iowrite32(en_hi, denali->flash_reg + RDWR_EN_HI_CNT);
309 iowrite32(cs_cnt, denali->flash_reg + CS_SETUP_CNT);
Jason Robertsce082592010-05-13 15:57:33 +0100310}
311
Jason Robertsce082592010-05-13 15:57:33 +0100312/* queries the NAND device to see what ONFI modes it supports. */
313static uint16_t get_onfi_nand_para(struct denali_nand_info *denali)
314{
315 int i;
Masahiro Yamada43914a22014-09-09 11:01:51 +0900316
317 /*
318 * we needn't to do a reset here because driver has already
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800319 * reset all the banks before
Masahiro Yamada43914a22014-09-09 11:01:51 +0900320 */
Jason Robertsce082592010-05-13 15:57:33 +0100321 if (!(ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
322 ONFI_TIMING_MODE__VALUE))
323 return FAIL;
324
325 for (i = 5; i > 0; i--) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800326 if (ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
327 (0x01 << i))
Jason Robertsce082592010-05-13 15:57:33 +0100328 break;
329 }
330
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800331 nand_onfi_timing_set(denali, i);
Jason Robertsce082592010-05-13 15:57:33 +0100332
Masahiro Yamada43914a22014-09-09 11:01:51 +0900333 /*
334 * By now, all the ONFI devices we know support the page cache
335 * rw feature. So here we enable the pipeline_rw_ahead feature
336 */
Jason Robertsce082592010-05-13 15:57:33 +0100337 /* iowrite32(1, denali->flash_reg + CACHE_WRITE_ENABLE); */
338 /* iowrite32(1, denali->flash_reg + CACHE_READ_ENABLE); */
339
340 return PASS;
341}
342
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800343static void get_samsung_nand_para(struct denali_nand_info *denali,
344 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100345{
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800346 if (device_id == 0xd3) { /* Samsung K9WAG08U1A */
Jason Robertsce082592010-05-13 15:57:33 +0100347 /* Set timing register values according to datasheet */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800348 iowrite32(5, denali->flash_reg + ACC_CLKS);
349 iowrite32(20, denali->flash_reg + RE_2_WE);
350 iowrite32(12, denali->flash_reg + WE_2_RE);
351 iowrite32(14, denali->flash_reg + ADDR_2_DATA);
352 iowrite32(3, denali->flash_reg + RDWR_EN_LO_CNT);
353 iowrite32(2, denali->flash_reg + RDWR_EN_HI_CNT);
354 iowrite32(2, denali->flash_reg + CS_SETUP_CNT);
Jason Robertsce082592010-05-13 15:57:33 +0100355 }
Jason Robertsce082592010-05-13 15:57:33 +0100356}
357
358static void get_toshiba_nand_para(struct denali_nand_info *denali)
359{
Jason Robertsce082592010-05-13 15:57:33 +0100360 uint32_t tmp;
361
Masahiro Yamada43914a22014-09-09 11:01:51 +0900362 /*
363 * Workaround to fix a controller bug which reports a wrong
364 * spare area size for some kind of Toshiba NAND device
365 */
Jason Robertsce082592010-05-13 15:57:33 +0100366 if ((ioread32(denali->flash_reg + DEVICE_MAIN_AREA_SIZE) == 4096) &&
367 (ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE) == 64)) {
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800368 iowrite32(216, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Jason Robertsce082592010-05-13 15:57:33 +0100369 tmp = ioread32(denali->flash_reg + DEVICES_CONNECTED) *
370 ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800371 iowrite32(tmp,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800372 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
Jason Robertsce082592010-05-13 15:57:33 +0100373#if SUPPORT_15BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800374 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100375#elif SUPPORT_8BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800376 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100377#endif
378 }
Jason Robertsce082592010-05-13 15:57:33 +0100379}
380
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800381static void get_hynix_nand_para(struct denali_nand_info *denali,
382 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100383{
Jason Robertsce082592010-05-13 15:57:33 +0100384 uint32_t main_size, spare_size;
385
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800386 switch (device_id) {
Jason Robertsce082592010-05-13 15:57:33 +0100387 case 0xD5: /* Hynix H27UAG8T2A, H27UBG8U5A or H27UCG8VFA */
388 case 0xD7: /* Hynix H27UDG8VEM, H27UCG8UDM or H27UCG8V5A */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800389 iowrite32(128, denali->flash_reg + PAGES_PER_BLOCK);
390 iowrite32(4096, denali->flash_reg + DEVICE_MAIN_AREA_SIZE);
391 iowrite32(224, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800392 main_size = 4096 *
393 ioread32(denali->flash_reg + DEVICES_CONNECTED);
394 spare_size = 224 *
395 ioread32(denali->flash_reg + DEVICES_CONNECTED);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800396 iowrite32(main_size,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800397 denali->flash_reg + LOGICAL_PAGE_DATA_SIZE);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800398 iowrite32(spare_size,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800399 denali->flash_reg + LOGICAL_PAGE_SPARE_SIZE);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800400 iowrite32(0, denali->flash_reg + DEVICE_WIDTH);
Jason Robertsce082592010-05-13 15:57:33 +0100401#if SUPPORT_15BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800402 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100403#elif SUPPORT_8BITECC
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800404 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +0100405#endif
Jason Robertsce082592010-05-13 15:57:33 +0100406 break;
407 default:
Jamie Iles84457942011-05-06 15:28:55 +0100408 dev_warn(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100409 "Spectra: Unknown Hynix NAND (Device ID: 0x%x)."
410 "Will use default parameter values instead.\n",
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800411 device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100412 }
413}
414
Masahiro Yamada43914a22014-09-09 11:01:51 +0900415/*
416 * determines how many NAND chips are connected to the controller. Note for
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800417 * Intel CE4100 devices we don't support more than one device.
Jason Robertsce082592010-05-13 15:57:33 +0100418 */
419static void find_valid_banks(struct denali_nand_info *denali)
420{
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100421 uint32_t id[denali->max_banks];
Jason Robertsce082592010-05-13 15:57:33 +0100422 int i;
423
424 denali->total_used_banks = 1;
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100425 for (i = 0; i < denali->max_banks; i++) {
Jason Robertsce082592010-05-13 15:57:33 +0100426 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 0), 0x90);
427 index_addr(denali, (uint32_t)(MODE_11 | (i << 24) | 1), 0);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800428 index_addr_read_data(denali,
429 (uint32_t)(MODE_11 | (i << 24) | 2), &id[i]);
Jason Robertsce082592010-05-13 15:57:33 +0100430
Jamie Iles84457942011-05-06 15:28:55 +0100431 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100432 "Return 1st ID for bank[%d]: %x\n", i, id[i]);
433
434 if (i == 0) {
435 if (!(id[i] & 0x0ff))
436 break; /* WTF? */
437 } else {
438 if ((id[i] & 0x0ff) == (id[0] & 0x0ff))
439 denali->total_used_banks++;
440 else
441 break;
442 }
443 }
444
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800445 if (denali->platform == INTEL_CE4100) {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900446 /*
447 * Platform limitations of the CE4100 device limit
Jason Robertsce082592010-05-13 15:57:33 +0100448 * users to a single chip solution for NAND.
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800449 * Multichip support is not enabled.
450 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800451 if (denali->total_used_banks != 1) {
Jamie Iles84457942011-05-06 15:28:55 +0100452 dev_err(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800453 "Sorry, Intel CE4100 only supports "
Jason Robertsce082592010-05-13 15:57:33 +0100454 "a single NAND device.\n");
455 BUG();
456 }
457 }
Jamie Iles84457942011-05-06 15:28:55 +0100458 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100459 "denali->total_used_banks: %d\n", denali->total_used_banks);
460}
461
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100462/*
463 * Use the configuration feature register to determine the maximum number of
464 * banks that the hardware supports.
465 */
466static void detect_max_banks(struct denali_nand_info *denali)
467{
468 uint32_t features = ioread32(denali->flash_reg + FEATURES);
469
470 denali->max_banks = 2 << (features & FEATURES__N_BANKS);
471}
472
Jason Robertsce082592010-05-13 15:57:33 +0100473static void detect_partition_feature(struct denali_nand_info *denali)
474{
Masahiro Yamada43914a22014-09-09 11:01:51 +0900475 /*
476 * For MRST platform, denali->fwblks represent the
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800477 * number of blocks firmware is taken,
478 * FW is in protect partition and MTD driver has no
479 * permission to access it. So let driver know how many
480 * blocks it can't touch.
Masahiro Yamada43914a22014-09-09 11:01:51 +0900481 */
Jason Robertsce082592010-05-13 15:57:33 +0100482 if (ioread32(denali->flash_reg + FEATURES) & FEATURES__PARTITION) {
Jamie Iles9589bf52011-05-06 15:28:56 +0100483 if ((ioread32(denali->flash_reg + PERM_SRC_ID(1)) &
484 PERM_SRC_ID__SRCID) == SPECTRA_PARTITION_ID) {
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800485 denali->fwblks =
Jamie Iles9589bf52011-05-06 15:28:56 +0100486 ((ioread32(denali->flash_reg + MIN_MAX_BANK(1)) &
487 MIN_MAX_BANK__MIN_VALUE) *
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800488 denali->blksperchip)
Jason Robertsce082592010-05-13 15:57:33 +0100489 +
Jamie Iles9589bf52011-05-06 15:28:56 +0100490 (ioread32(denali->flash_reg + MIN_BLK_ADDR(1)) &
491 MIN_BLK_ADDR__VALUE);
Chuanxiao.Dong66406522010-08-06 18:48:21 +0800492 } else
493 denali->fwblks = SPECTRA_START_BLOCK;
494 } else
495 denali->fwblks = SPECTRA_START_BLOCK;
Jason Robertsce082592010-05-13 15:57:33 +0100496}
497
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800498static uint16_t denali_nand_timing_set(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100499{
500 uint16_t status = PASS;
grmoore@altera.comd68a5c32014-06-23 14:21:10 -0500501 uint32_t id_bytes[8], addr;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800502 uint8_t i, maf_id, device_id;
Jason Robertsce082592010-05-13 15:57:33 +0100503
Jamie Iles84457942011-05-06 15:28:55 +0100504 dev_dbg(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800505 "%s, Line %d, Function: %s\n",
506 __FILE__, __LINE__, __func__);
Jason Robertsce082592010-05-13 15:57:33 +0100507
Masahiro Yamada43914a22014-09-09 11:01:51 +0900508 /*
509 * Use read id method to get device ID and other params.
510 * For some NAND chips, controller can't report the correct
511 * device ID by reading from DEVICE_ID register
512 */
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800513 addr = (uint32_t)MODE_11 | BANK(denali->flash_bank);
514 index_addr(denali, (uint32_t)addr | 0, 0x90);
515 index_addr(denali, (uint32_t)addr | 1, 0);
grmoore@altera.comd68a5c32014-06-23 14:21:10 -0500516 for (i = 0; i < 8; i++)
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800517 index_addr_read_data(denali, addr | 2, &id_bytes[i]);
518 maf_id = id_bytes[0];
519 device_id = id_bytes[1];
Jason Robertsce082592010-05-13 15:57:33 +0100520
521 if (ioread32(denali->flash_reg + ONFI_DEVICE_NO_OF_LUNS) &
522 ONFI_DEVICE_NO_OF_LUNS__ONFI_DEVICE) { /* ONFI 1.0 NAND */
523 if (FAIL == get_onfi_nand_para(denali))
524 return FAIL;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800525 } else if (maf_id == 0xEC) { /* Samsung NAND */
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800526 get_samsung_nand_para(denali, device_id);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800527 } else if (maf_id == 0x98) { /* Toshiba NAND */
Jason Robertsce082592010-05-13 15:57:33 +0100528 get_toshiba_nand_para(denali);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800529 } else if (maf_id == 0xAD) { /* Hynix NAND */
530 get_hynix_nand_para(denali, device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100531 }
532
Jamie Iles84457942011-05-06 15:28:55 +0100533 dev_info(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800534 "Dump timing register values:"
535 "acc_clks: %d, re_2_we: %d, re_2_re: %d\n"
536 "we_2_re: %d, addr_2_data: %d, rdwr_en_lo_cnt: %d\n"
Jason Robertsce082592010-05-13 15:57:33 +0100537 "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n",
538 ioread32(denali->flash_reg + ACC_CLKS),
539 ioread32(denali->flash_reg + RE_2_WE),
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800540 ioread32(denali->flash_reg + RE_2_RE),
Jason Robertsce082592010-05-13 15:57:33 +0100541 ioread32(denali->flash_reg + WE_2_RE),
542 ioread32(denali->flash_reg + ADDR_2_DATA),
543 ioread32(denali->flash_reg + RDWR_EN_LO_CNT),
544 ioread32(denali->flash_reg + RDWR_EN_HI_CNT),
545 ioread32(denali->flash_reg + CS_SETUP_CNT));
546
Jason Robertsce082592010-05-13 15:57:33 +0100547 find_valid_banks(denali);
548
549 detect_partition_feature(denali);
550
Masahiro Yamada43914a22014-09-09 11:01:51 +0900551 /*
552 * If the user specified to override the default timings
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800553 * with a specific ONFI mode, we apply those changes here.
Jason Robertsce082592010-05-13 15:57:33 +0100554 */
555 if (onfi_timing_mode != NAND_DEFAULT_TIMINGS)
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800556 nand_onfi_timing_set(denali, onfi_timing_mode);
Jason Robertsce082592010-05-13 15:57:33 +0100557
558 return status;
559}
560
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800561static void denali_set_intr_modes(struct denali_nand_info *denali,
Jason Robertsce082592010-05-13 15:57:33 +0100562 uint16_t INT_ENABLE)
563{
Jamie Iles84457942011-05-06 15:28:55 +0100564 dev_dbg(denali->dev, "%s, Line %d, Function: %s\n",
Jason Robertsce082592010-05-13 15:57:33 +0100565 __FILE__, __LINE__, __func__);
566
567 if (INT_ENABLE)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800568 iowrite32(1, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100569 else
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800570 iowrite32(0, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100571}
572
Masahiro Yamada43914a22014-09-09 11:01:51 +0900573/*
574 * validation function to verify that the controlling software is making
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800575 * a valid request
Jason Robertsce082592010-05-13 15:57:33 +0100576 */
577static inline bool is_flash_bank_valid(int flash_bank)
578{
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800579 return (flash_bank >= 0 && flash_bank < 4);
Jason Robertsce082592010-05-13 15:57:33 +0100580}
581
582static void denali_irq_init(struct denali_nand_info *denali)
583{
584 uint32_t int_mask = 0;
Jamie Iles9589bf52011-05-06 15:28:56 +0100585 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100586
587 /* Disable global interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800588 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100589
590 int_mask = DENALI_IRQ_ALL;
591
592 /* Clear all status bits */
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100593 for (i = 0; i < denali->max_banks; ++i)
Jamie Iles9589bf52011-05-06 15:28:56 +0100594 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS(i));
Jason Robertsce082592010-05-13 15:57:33 +0100595
596 denali_irq_enable(denali, int_mask);
597}
598
599static void denali_irq_cleanup(int irqnum, struct denali_nand_info *denali)
600{
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800601 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100602 free_irq(irqnum, denali);
603}
604
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800605static void denali_irq_enable(struct denali_nand_info *denali,
606 uint32_t int_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100607{
Jamie Iles9589bf52011-05-06 15:28:56 +0100608 int i;
609
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100610 for (i = 0; i < denali->max_banks; ++i)
Jamie Iles9589bf52011-05-06 15:28:56 +0100611 iowrite32(int_mask, denali->flash_reg + INTR_EN(i));
Jason Robertsce082592010-05-13 15:57:33 +0100612}
613
Masahiro Yamada43914a22014-09-09 11:01:51 +0900614/*
615 * This function only returns when an interrupt that this driver cares about
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800616 * occurs. This is to reduce the overhead of servicing interrupts
Jason Robertsce082592010-05-13 15:57:33 +0100617 */
618static inline uint32_t denali_irq_detected(struct denali_nand_info *denali)
619{
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800620 return read_interrupt_status(denali) & DENALI_IRQ_ALL;
Jason Robertsce082592010-05-13 15:57:33 +0100621}
622
623/* Interrupts are cleared by writing a 1 to the appropriate status bit */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800624static inline void clear_interrupt(struct denali_nand_info *denali,
625 uint32_t irq_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100626{
627 uint32_t intr_status_reg = 0;
628
Jamie Iles9589bf52011-05-06 15:28:56 +0100629 intr_status_reg = INTR_STATUS(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100630
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800631 iowrite32(irq_mask, denali->flash_reg + intr_status_reg);
Jason Robertsce082592010-05-13 15:57:33 +0100632}
633
634static void clear_interrupts(struct denali_nand_info *denali)
635{
636 uint32_t status = 0x0;
637 spin_lock_irq(&denali->irq_lock);
638
639 status = read_interrupt_status(denali);
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800640 clear_interrupt(denali, status);
Jason Robertsce082592010-05-13 15:57:33 +0100641
Jason Robertsce082592010-05-13 15:57:33 +0100642 denali->irq_status = 0x0;
643 spin_unlock_irq(&denali->irq_lock);
644}
645
646static uint32_t read_interrupt_status(struct denali_nand_info *denali)
647{
648 uint32_t intr_status_reg = 0;
649
Jamie Iles9589bf52011-05-06 15:28:56 +0100650 intr_status_reg = INTR_STATUS(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100651
652 return ioread32(denali->flash_reg + intr_status_reg);
653}
654
Masahiro Yamada43914a22014-09-09 11:01:51 +0900655/*
656 * This is the interrupt service routine. It handles all interrupts
657 * sent to this device. Note that on CE4100, this is a shared interrupt.
Jason Robertsce082592010-05-13 15:57:33 +0100658 */
659static irqreturn_t denali_isr(int irq, void *dev_id)
660{
661 struct denali_nand_info *denali = dev_id;
662 uint32_t irq_status = 0x0;
663 irqreturn_t result = IRQ_NONE;
664
665 spin_lock(&denali->irq_lock);
666
Masahiro Yamada43914a22014-09-09 11:01:51 +0900667 /* check to see if a valid NAND chip has been selected. */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800668 if (is_flash_bank_valid(denali->flash_bank)) {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900669 /*
670 * check to see if controller generated the interrupt,
671 * since this is a shared interrupt
672 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800673 irq_status = denali_irq_detected(denali);
674 if (irq_status != 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100675 /* handle interrupt */
676 /* first acknowledge it */
677 clear_interrupt(denali, irq_status);
Masahiro Yamada43914a22014-09-09 11:01:51 +0900678 /*
679 * store the status in the device context for someone
680 * to read
681 */
Jason Robertsce082592010-05-13 15:57:33 +0100682 denali->irq_status |= irq_status;
683 /* notify anyone who cares that it happened */
684 complete(&denali->complete);
685 /* tell the OS that we've handled this */
686 result = IRQ_HANDLED;
687 }
688 }
689 spin_unlock(&denali->irq_lock);
690 return result;
691}
692#define BANK(x) ((x) << 24)
693
694static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask)
695{
696 unsigned long comp_res = 0;
697 uint32_t intr_status = 0;
698 bool retry = false;
699 unsigned long timeout = msecs_to_jiffies(1000);
700
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800701 do {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800702 comp_res =
703 wait_for_completion_timeout(&denali->complete, timeout);
Jason Robertsce082592010-05-13 15:57:33 +0100704 spin_lock_irq(&denali->irq_lock);
705 intr_status = denali->irq_status;
706
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800707 if (intr_status & irq_mask) {
Jason Robertsce082592010-05-13 15:57:33 +0100708 denali->irq_status &= ~irq_mask;
709 spin_unlock_irq(&denali->irq_lock);
Jason Robertsce082592010-05-13 15:57:33 +0100710 /* our interrupt was detected */
711 break;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800712 } else {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900713 /*
714 * these are not the interrupts you are looking for -
715 * need to wait again
716 */
Jason Robertsce082592010-05-13 15:57:33 +0100717 spin_unlock_irq(&denali->irq_lock);
Jason Robertsce082592010-05-13 15:57:33 +0100718 retry = true;
719 }
720 } while (comp_res != 0);
721
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800722 if (comp_res == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100723 /* timeout */
Dinh Nguyen2a0a2882012-09-27 10:58:05 -0600724 pr_err("timeout occurred, status = 0x%x, mask = 0x%x\n",
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800725 intr_status, irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100726
727 intr_status = 0;
728 }
729 return intr_status;
730}
731
Masahiro Yamada43914a22014-09-09 11:01:51 +0900732/*
733 * This helper function setups the registers for ECC and whether or not
734 * the spare area will be transferred.
735 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800736static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en,
Jason Robertsce082592010-05-13 15:57:33 +0100737 bool transfer_spare)
738{
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800739 int ecc_en_flag = 0, transfer_spare_flag = 0;
Jason Robertsce082592010-05-13 15:57:33 +0100740
741 /* set ECC, transfer spare bits if needed */
742 ecc_en_flag = ecc_en ? ECC_ENABLE__FLAG : 0;
743 transfer_spare_flag = transfer_spare ? TRANSFER_SPARE_REG__FLAG : 0;
744
745 /* Enable spare area/ECC per user's request. */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800746 iowrite32(ecc_en_flag, denali->flash_reg + ECC_ENABLE);
747 iowrite32(transfer_spare_flag,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800748 denali->flash_reg + TRANSFER_SPARE_REG);
Jason Robertsce082592010-05-13 15:57:33 +0100749}
750
Masahiro Yamada43914a22014-09-09 11:01:51 +0900751/*
752 * sends a pipeline command operation to the controller. See the Denali NAND
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800753 * controller's user guide for more information (section 4.2.3.6).
Jason Robertsce082592010-05-13 15:57:33 +0100754 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800755static int denali_send_pipeline_cmd(struct denali_nand_info *denali,
756 bool ecc_en,
757 bool transfer_spare,
758 int access_type,
759 int op)
Jason Robertsce082592010-05-13 15:57:33 +0100760{
761 int status = PASS;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800762 uint32_t addr = 0x0, cmd = 0x0, page_count = 1, irq_status = 0,
Jason Robertsce082592010-05-13 15:57:33 +0100763 irq_mask = 0;
764
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800765 if (op == DENALI_READ)
Jamie Iles9589bf52011-05-06 15:28:56 +0100766 irq_mask = INTR_STATUS__LOAD_COMP;
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800767 else if (op == DENALI_WRITE)
768 irq_mask = 0;
769 else
770 BUG();
Jason Robertsce082592010-05-13 15:57:33 +0100771
772 setup_ecc_for_xfer(denali, ecc_en, transfer_spare);
773
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800774 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +0100775
776 addr = BANK(denali->flash_bank) | denali->page;
777
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800778 if (op == DENALI_WRITE && access_type != SPARE_ACCESS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800779 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800780 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800781 } else if (op == DENALI_WRITE && access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100782 /* read spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800783 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100784 index_addr(denali, (uint32_t)cmd, access_type);
785
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800786 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800787 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800788 } else if (op == DENALI_READ) {
Jason Robertsce082592010-05-13 15:57:33 +0100789 /* setup page read request for access type */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800790 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100791 index_addr(denali, (uint32_t)cmd, access_type);
792
Masahiro Yamada43914a22014-09-09 11:01:51 +0900793 /*
794 * page 33 of the NAND controller spec indicates we should not
795 * use the pipeline commands in Spare area only mode.
796 * So we don't.
Jason Robertsce082592010-05-13 15:57:33 +0100797 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800798 if (access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100799 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800800 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800801 } else {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800802 index_addr(denali, (uint32_t)cmd,
Masahiro Yamada29023302014-07-11 11:14:05 +0900803 PIPELINE_ACCESS | op | page_count);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800804
Masahiro Yamada43914a22014-09-09 11:01:51 +0900805 /*
806 * wait for command to be accepted
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800807 * can always use status0 bit as the
Masahiro Yamada43914a22014-09-09 11:01:51 +0900808 * mask is identical for each bank.
809 */
Jason Robertsce082592010-05-13 15:57:33 +0100810 irq_status = wait_for_irq(denali, irq_mask);
811
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800812 if (irq_status == 0) {
Jamie Iles84457942011-05-06 15:28:55 +0100813 dev_err(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800814 "cmd, page, addr on timeout "
815 "(0x%x, 0x%x, 0x%x)\n",
816 cmd, denali->page, addr);
Jason Robertsce082592010-05-13 15:57:33 +0100817 status = FAIL;
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800818 } else {
Jason Robertsce082592010-05-13 15:57:33 +0100819 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800820 iowrite32(cmd, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100821 }
822 }
823 }
824 return status;
825}
826
827/* helper function that simply writes a buffer to the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800828static int write_data_to_flash_mem(struct denali_nand_info *denali,
829 const uint8_t *buf,
830 int len)
Jason Robertsce082592010-05-13 15:57:33 +0100831{
832 uint32_t i = 0, *buf32;
833
Masahiro Yamada43914a22014-09-09 11:01:51 +0900834 /*
835 * verify that the len is a multiple of 4.
836 * see comment in read_data_from_flash_mem()
837 */
Jason Robertsce082592010-05-13 15:57:33 +0100838 BUG_ON((len % 4) != 0);
839
840 /* write the data to the flash memory */
841 buf32 = (uint32_t *)buf;
842 for (i = 0; i < len / 4; i++)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800843 iowrite32(*buf32++, denali->flash_mem + 0x10);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800844 return i*4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100845}
846
847/* helper function that simply reads a buffer from the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800848static int read_data_from_flash_mem(struct denali_nand_info *denali,
849 uint8_t *buf,
850 int len)
Jason Robertsce082592010-05-13 15:57:33 +0100851{
852 uint32_t i = 0, *buf32;
853
Masahiro Yamada43914a22014-09-09 11:01:51 +0900854 /*
855 * we assume that len will be a multiple of 4, if not it would be nice
856 * to know about it ASAP rather than have random failures...
857 * This assumption is based on the fact that this function is designed
858 * to be used to read flash pages, which are typically multiples of 4.
Jason Robertsce082592010-05-13 15:57:33 +0100859 */
Jason Robertsce082592010-05-13 15:57:33 +0100860 BUG_ON((len % 4) != 0);
861
862 /* transfer the data from the flash */
863 buf32 = (uint32_t *)buf;
864 for (i = 0; i < len / 4; i++)
Jason Robertsce082592010-05-13 15:57:33 +0100865 *buf32++ = ioread32(denali->flash_mem + 0x10);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800866 return i*4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100867}
868
869/* writes OOB data to the device */
870static int write_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
871{
872 struct denali_nand_info *denali = mtd_to_denali(mtd);
873 uint32_t irq_status = 0;
Jamie Iles9589bf52011-05-06 15:28:56 +0100874 uint32_t irq_mask = INTR_STATUS__PROGRAM_COMP |
875 INTR_STATUS__PROGRAM_FAIL;
Jason Robertsce082592010-05-13 15:57:33 +0100876 int status = 0;
877
878 denali->page = page;
879
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800880 if (denali_send_pipeline_cmd(denali, false, false, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800881 DENALI_WRITE) == PASS) {
Jason Robertsce082592010-05-13 15:57:33 +0100882 write_data_to_flash_mem(denali, buf, mtd->oobsize);
883
Jason Robertsce082592010-05-13 15:57:33 +0100884 /* wait for operation to complete */
885 irq_status = wait_for_irq(denali, irq_mask);
886
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800887 if (irq_status == 0) {
Jamie Iles84457942011-05-06 15:28:55 +0100888 dev_err(denali->dev, "OOB write failed\n");
Jason Robertsce082592010-05-13 15:57:33 +0100889 status = -EIO;
890 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800891 } else {
Jamie Iles84457942011-05-06 15:28:55 +0100892 dev_err(denali->dev, "unable to send pipeline command\n");
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800893 status = -EIO;
Jason Robertsce082592010-05-13 15:57:33 +0100894 }
895 return status;
896}
897
898/* reads OOB data from the device */
899static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
900{
901 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jamie Iles9589bf52011-05-06 15:28:56 +0100902 uint32_t irq_mask = INTR_STATUS__LOAD_COMP,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800903 irq_status = 0, addr = 0x0, cmd = 0x0;
Jason Robertsce082592010-05-13 15:57:33 +0100904
905 denali->page = page;
906
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800907 if (denali_send_pipeline_cmd(denali, false, true, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800908 DENALI_READ) == PASS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800909 read_data_from_flash_mem(denali, buf, mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +0100910
Masahiro Yamada43914a22014-09-09 11:01:51 +0900911 /*
912 * wait for command to be accepted
913 * can always use status0 bit as the
914 * mask is identical for each bank.
915 */
Jason Robertsce082592010-05-13 15:57:33 +0100916 irq_status = wait_for_irq(denali, irq_mask);
917
918 if (irq_status == 0)
Jamie Iles84457942011-05-06 15:28:55 +0100919 dev_err(denali->dev, "page on OOB timeout %d\n",
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800920 denali->page);
Jason Robertsce082592010-05-13 15:57:33 +0100921
Masahiro Yamada43914a22014-09-09 11:01:51 +0900922 /*
923 * We set the device back to MAIN_ACCESS here as I observed
Jason Robertsce082592010-05-13 15:57:33 +0100924 * instability with the controller if you do a block erase
925 * and the last transaction was a SPARE_ACCESS. Block erase
926 * is reliable (according to the MTD test infrastructure)
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800927 * if you are in MAIN_ACCESS.
Jason Robertsce082592010-05-13 15:57:33 +0100928 */
929 addr = BANK(denali->flash_bank) | denali->page;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800930 cmd = MODE_10 | addr;
Jason Robertsce082592010-05-13 15:57:33 +0100931 index_addr(denali, (uint32_t)cmd, MAIN_ACCESS);
Jason Robertsce082592010-05-13 15:57:33 +0100932 }
933}
934
Masahiro Yamada43914a22014-09-09 11:01:51 +0900935/*
936 * this function examines buffers to see if they contain data that
Jason Robertsce082592010-05-13 15:57:33 +0100937 * indicate that the buffer is part of an erased region of flash.
938 */
Rashika Kheria919193c2013-12-13 12:46:04 +0530939static bool is_erased(uint8_t *buf, int len)
Jason Robertsce082592010-05-13 15:57:33 +0100940{
941 int i = 0;
942 for (i = 0; i < len; i++)
Jason Robertsce082592010-05-13 15:57:33 +0100943 if (buf[i] != 0xFF)
Jason Robertsce082592010-05-13 15:57:33 +0100944 return false;
Jason Robertsce082592010-05-13 15:57:33 +0100945 return true;
946}
947#define ECC_SECTOR_SIZE 512
948
949#define ECC_SECTOR(x) (((x) & ECC_ERROR_ADDRESS__SECTOR_NR) >> 12)
950#define ECC_BYTE(x) (((x) & ECC_ERROR_ADDRESS__OFFSET))
951#define ECC_CORRECTION_VALUE(x) ((x) & ERR_CORRECTION_INFO__BYTEMASK)
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800952#define ECC_ERROR_CORRECTABLE(x) (!((x) & ERR_CORRECTION_INFO__ERROR_TYPE))
953#define ECC_ERR_DEVICE(x) (((x) & ERR_CORRECTION_INFO__DEVICE_NR) >> 8)
Jason Robertsce082592010-05-13 15:57:33 +0100954#define ECC_LAST_ERR(x) ((x) & ERR_CORRECTION_INFO__LAST_ERR_INFO)
955
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800956static bool handle_ecc(struct denali_nand_info *denali, uint8_t *buf,
Mike Dunn3f91e942012-04-25 12:06:09 -0700957 uint32_t irq_status, unsigned int *max_bitflips)
Jason Robertsce082592010-05-13 15:57:33 +0100958{
959 bool check_erased_page = false;
Mike Dunn3f91e942012-04-25 12:06:09 -0700960 unsigned int bitflips = 0;
Jason Robertsce082592010-05-13 15:57:33 +0100961
Jamie Iles9589bf52011-05-06 15:28:56 +0100962 if (irq_status & INTR_STATUS__ECC_ERR) {
Jason Robertsce082592010-05-13 15:57:33 +0100963 /* read the ECC errors. we'll ignore them for now */
964 uint32_t err_address = 0, err_correction_info = 0;
965 uint32_t err_byte = 0, err_sector = 0, err_device = 0;
966 uint32_t err_correction_value = 0;
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800967 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100968
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800969 do {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800970 err_address = ioread32(denali->flash_reg +
Jason Robertsce082592010-05-13 15:57:33 +0100971 ECC_ERROR_ADDRESS);
972 err_sector = ECC_SECTOR(err_address);
973 err_byte = ECC_BYTE(err_address);
974
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800975 err_correction_info = ioread32(denali->flash_reg +
Jason Robertsce082592010-05-13 15:57:33 +0100976 ERR_CORRECTION_INFO);
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800977 err_correction_value =
Jason Robertsce082592010-05-13 15:57:33 +0100978 ECC_CORRECTION_VALUE(err_correction_info);
979 err_device = ECC_ERR_DEVICE(err_correction_info);
980
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800981 if (ECC_ERROR_CORRECTABLE(err_correction_info)) {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900982 /*
983 * If err_byte is larger than ECC_SECTOR_SIZE,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300984 * means error happened in OOB, so we ignore
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800985 * it. It's no need for us to correct it
986 * err_device is represented the NAND error
987 * bits are happened in if there are more
988 * than one NAND connected.
Masahiro Yamada43914a22014-09-09 11:01:51 +0900989 */
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800990 if (err_byte < ECC_SECTOR_SIZE) {
991 int offset;
992 offset = (err_sector *
993 ECC_SECTOR_SIZE +
994 err_byte) *
995 denali->devnum +
996 err_device;
Jason Robertsce082592010-05-13 15:57:33 +0100997 /* correct the ECC error */
998 buf[offset] ^= err_correction_value;
999 denali->mtd.ecc_stats.corrected++;
Mike Dunn3f91e942012-04-25 12:06:09 -07001000 bitflips++;
Jason Robertsce082592010-05-13 15:57:33 +01001001 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001002 } else {
Masahiro Yamada43914a22014-09-09 11:01:51 +09001003 /*
1004 * if the error is not correctable, need to
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001005 * look at the page to see if it is an erased
1006 * page. if so, then it's not a real ECC error
Masahiro Yamada43914a22014-09-09 11:01:51 +09001007 */
Jason Robertsce082592010-05-13 15:57:33 +01001008 check_erased_page = true;
1009 }
Jason Robertsce082592010-05-13 15:57:33 +01001010 } while (!ECC_LAST_ERR(err_correction_info));
Masahiro Yamada43914a22014-09-09 11:01:51 +09001011 /*
1012 * Once handle all ecc errors, controller will triger
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +08001013 * a ECC_TRANSACTION_DONE interrupt, so here just wait
1014 * for a while for this interrupt
Masahiro Yamada43914a22014-09-09 11:01:51 +09001015 */
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +08001016 while (!(read_interrupt_status(denali) &
Jamie Iles9589bf52011-05-06 15:28:56 +01001017 INTR_STATUS__ECC_TRANSACTION_DONE))
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +08001018 cpu_relax();
1019 clear_interrupts(denali);
1020 denali_set_intr_modes(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001021 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001022 *max_bitflips = bitflips;
Jason Robertsce082592010-05-13 15:57:33 +01001023 return check_erased_page;
1024}
1025
1026/* programs the controller to either enable/disable DMA transfers */
David Woodhouseaadff492010-05-13 16:12:43 +01001027static void denali_enable_dma(struct denali_nand_info *denali, bool en)
Jason Robertsce082592010-05-13 15:57:33 +01001028{
1029 uint32_t reg_val = 0x0;
1030
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001031 if (en)
1032 reg_val = DMA_ENABLE__FLAG;
Jason Robertsce082592010-05-13 15:57:33 +01001033
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001034 iowrite32(reg_val, denali->flash_reg + DMA_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +01001035 ioread32(denali->flash_reg + DMA_ENABLE);
1036}
1037
1038/* setups the HW to perform the data DMA */
David Woodhouseaadff492010-05-13 16:12:43 +01001039static void denali_setup_dma(struct denali_nand_info *denali, int op)
Jason Robertsce082592010-05-13 15:57:33 +01001040{
1041 uint32_t mode = 0x0;
1042 const int page_count = 1;
1043 dma_addr_t addr = denali->buf.dma_buf;
1044
1045 mode = MODE_10 | BANK(denali->flash_bank);
1046
1047 /* DMA is a four step process */
1048
1049 /* 1. setup transfer type and # of pages */
1050 index_addr(denali, mode | denali->page, 0x2000 | op | page_count);
1051
1052 /* 2. set memory high address bits 23:8 */
1053 index_addr(denali, mode | ((uint16_t)(addr >> 16) << 8), 0x2200);
1054
1055 /* 3. set memory low address bits 23:8 */
1056 index_addr(denali, mode | ((uint16_t)addr << 8), 0x2300);
1057
Masahiro Yamada43914a22014-09-09 11:01:51 +09001058 /* 4. interrupt when complete, burst len = 64 bytes */
Jason Robertsce082592010-05-13 15:57:33 +01001059 index_addr(denali, mode | 0x14000, 0x2400);
1060}
1061
Masahiro Yamada43914a22014-09-09 11:01:51 +09001062/*
1063 * writes a page. user specifies type, and this function handles the
1064 * configuration details.
1065 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001066static int write_page(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001067 const uint8_t *buf, bool raw_xfer)
1068{
1069 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001070
1071 dma_addr_t addr = denali->buf.dma_buf;
1072 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1073
1074 uint32_t irq_status = 0;
Jamie Iles9589bf52011-05-06 15:28:56 +01001075 uint32_t irq_mask = INTR_STATUS__DMA_CMD_COMP |
1076 INTR_STATUS__PROGRAM_FAIL;
Jason Robertsce082592010-05-13 15:57:33 +01001077
Masahiro Yamada43914a22014-09-09 11:01:51 +09001078 /*
1079 * if it is a raw xfer, we want to disable ecc and send the spare area.
Jason Robertsce082592010-05-13 15:57:33 +01001080 * !raw_xfer - enable ecc
1081 * raw_xfer - transfer spare
1082 */
1083 setup_ecc_for_xfer(denali, !raw_xfer, raw_xfer);
1084
1085 /* copy buffer into DMA buffer */
1086 memcpy(denali->buf.buf, buf, mtd->writesize);
1087
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001088 if (raw_xfer) {
Jason Robertsce082592010-05-13 15:57:33 +01001089 /* transfer the data to the spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001090 memcpy(denali->buf.buf + mtd->writesize,
1091 chip->oob_poi,
1092 mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +01001093 }
1094
Jamie Iles84457942011-05-06 15:28:55 +01001095 dma_sync_single_for_device(denali->dev, addr, size, DMA_TO_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001096
1097 clear_interrupts(denali);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001098 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001099
David Woodhouseaadff492010-05-13 16:12:43 +01001100 denali_setup_dma(denali, DENALI_WRITE);
Jason Robertsce082592010-05-13 15:57:33 +01001101
1102 /* wait for operation to complete */
1103 irq_status = wait_for_irq(denali, irq_mask);
1104
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001105 if (irq_status == 0) {
Jamie Iles84457942011-05-06 15:28:55 +01001106 dev_err(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001107 "timeout on write_page (type = %d)\n",
1108 raw_xfer);
Brian Norrisc115add2014-07-21 19:07:31 -07001109 denali->status = NAND_STATUS_FAIL;
Jason Robertsce082592010-05-13 15:57:33 +01001110 }
1111
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001112 denali_enable_dma(denali, false);
Jamie Iles84457942011-05-06 15:28:55 +01001113 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_TO_DEVICE);
Josh Wufdbad98d2012-06-25 18:07:45 +08001114
1115 return 0;
Jason Robertsce082592010-05-13 15:57:33 +01001116}
1117
1118/* NAND core entry points */
1119
Masahiro Yamada43914a22014-09-09 11:01:51 +09001120/*
1121 * this is the callback that the NAND core calls to write a page. Since
Chuanxiao Dongb292c342010-08-11 17:46:00 +08001122 * writing a page with ECC or without is similar, all the work is done
1123 * by write_page above.
Masahiro Yamada43914a22014-09-09 11:01:51 +09001124 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001125static int denali_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001126 const uint8_t *buf, int oob_required)
Jason Robertsce082592010-05-13 15:57:33 +01001127{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001128 /*
1129 * for regular page writes, we let HW handle all the ECC
1130 * data written to the device.
1131 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001132 return write_page(mtd, chip, buf, false);
Jason Robertsce082592010-05-13 15:57:33 +01001133}
1134
Masahiro Yamada43914a22014-09-09 11:01:51 +09001135/*
1136 * This is the callback that the NAND core calls to write a page without ECC.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001137 * raw access is similar to ECC page writes, so all the work is done in the
Chuanxiao Dongb292c342010-08-11 17:46:00 +08001138 * write_page() function above.
Jason Robertsce082592010-05-13 15:57:33 +01001139 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001140static int denali_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001141 const uint8_t *buf, int oob_required)
Jason Robertsce082592010-05-13 15:57:33 +01001142{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001143 /*
1144 * for raw page writes, we want to disable ECC and simply write
1145 * whatever data is in the buffer.
1146 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001147 return write_page(mtd, chip, buf, true);
Jason Robertsce082592010-05-13 15:57:33 +01001148}
1149
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001150static int denali_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001151 int page)
1152{
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001153 return write_oob_data(mtd, chip->oob_poi, page);
Jason Robertsce082592010-05-13 15:57:33 +01001154}
1155
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001156static int denali_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001157 int page)
Jason Robertsce082592010-05-13 15:57:33 +01001158{
1159 read_oob_data(mtd, chip->oob_poi, page);
1160
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001161 return 0;
Jason Robertsce082592010-05-13 15:57:33 +01001162}
1163
1164static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001165 uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001166{
Mike Dunn3f91e942012-04-25 12:06:09 -07001167 unsigned int max_bitflips;
Jason Robertsce082592010-05-13 15:57:33 +01001168 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001169
1170 dma_addr_t addr = denali->buf.dma_buf;
1171 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1172
1173 uint32_t irq_status = 0;
Jamie Iles9589bf52011-05-06 15:28:56 +01001174 uint32_t irq_mask = INTR_STATUS__ECC_TRANSACTION_DONE |
1175 INTR_STATUS__ECC_ERR;
Jason Robertsce082592010-05-13 15:57:33 +01001176 bool check_erased_page = false;
1177
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001178 if (page != denali->page) {
Jamie Iles84457942011-05-06 15:28:55 +01001179 dev_err(denali->dev, "IN %s: page %d is not"
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001180 " equal to denali->page %d, investigate!!",
1181 __func__, page, denali->page);
1182 BUG();
1183 }
1184
Jason Robertsce082592010-05-13 15:57:33 +01001185 setup_ecc_for_xfer(denali, true, false);
1186
David Woodhouseaadff492010-05-13 16:12:43 +01001187 denali_enable_dma(denali, true);
Jamie Iles84457942011-05-06 15:28:55 +01001188 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001189
1190 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001191 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001192
1193 /* wait for operation to complete */
1194 irq_status = wait_for_irq(denali, irq_mask);
1195
Jamie Iles84457942011-05-06 15:28:55 +01001196 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001197
1198 memcpy(buf, denali->buf.buf, mtd->writesize);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001199
Mike Dunn3f91e942012-04-25 12:06:09 -07001200 check_erased_page = handle_ecc(denali, buf, irq_status, &max_bitflips);
David Woodhouseaadff492010-05-13 16:12:43 +01001201 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001202
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001203 if (check_erased_page) {
Jason Robertsce082592010-05-13 15:57:33 +01001204 read_oob_data(&denali->mtd, chip->oob_poi, denali->page);
1205
1206 /* check ECC failures that may have occurred on erased pages */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001207 if (check_erased_page) {
Jason Robertsce082592010-05-13 15:57:33 +01001208 if (!is_erased(buf, denali->mtd.writesize))
Jason Robertsce082592010-05-13 15:57:33 +01001209 denali->mtd.ecc_stats.failed++;
Jason Robertsce082592010-05-13 15:57:33 +01001210 if (!is_erased(buf, denali->mtd.oobsize))
Jason Robertsce082592010-05-13 15:57:33 +01001211 denali->mtd.ecc_stats.failed++;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001212 }
Jason Robertsce082592010-05-13 15:57:33 +01001213 }
Mike Dunn3f91e942012-04-25 12:06:09 -07001214 return max_bitflips;
Jason Robertsce082592010-05-13 15:57:33 +01001215}
1216
1217static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001218 uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001219{
1220 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001221
1222 dma_addr_t addr = denali->buf.dma_buf;
1223 size_t size = denali->mtd.writesize + denali->mtd.oobsize;
1224
1225 uint32_t irq_status = 0;
Jamie Iles9589bf52011-05-06 15:28:56 +01001226 uint32_t irq_mask = INTR_STATUS__DMA_CMD_COMP;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001227
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001228 if (page != denali->page) {
Jamie Iles84457942011-05-06 15:28:55 +01001229 dev_err(denali->dev, "IN %s: page %d is not"
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001230 " equal to denali->page %d, investigate!!",
1231 __func__, page, denali->page);
1232 BUG();
1233 }
1234
Jason Robertsce082592010-05-13 15:57:33 +01001235 setup_ecc_for_xfer(denali, false, true);
David Woodhouseaadff492010-05-13 16:12:43 +01001236 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001237
Jamie Iles84457942011-05-06 15:28:55 +01001238 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001239
1240 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001241 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001242
1243 /* wait for operation to complete */
1244 irq_status = wait_for_irq(denali, irq_mask);
1245
Jamie Iles84457942011-05-06 15:28:55 +01001246 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001247
David Woodhouseaadff492010-05-13 16:12:43 +01001248 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001249
1250 memcpy(buf, denali->buf.buf, mtd->writesize);
1251 memcpy(chip->oob_poi, denali->buf.buf + mtd->writesize, mtd->oobsize);
1252
1253 return 0;
1254}
1255
1256static uint8_t denali_read_byte(struct mtd_info *mtd)
1257{
1258 struct denali_nand_info *denali = mtd_to_denali(mtd);
1259 uint8_t result = 0xff;
1260
1261 if (denali->buf.head < denali->buf.tail)
Jason Robertsce082592010-05-13 15:57:33 +01001262 result = denali->buf.buf[denali->buf.head++];
Jason Robertsce082592010-05-13 15:57:33 +01001263
Jason Robertsce082592010-05-13 15:57:33 +01001264 return result;
1265}
1266
1267static void denali_select_chip(struct mtd_info *mtd, int chip)
1268{
1269 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001270
Jason Robertsce082592010-05-13 15:57:33 +01001271 spin_lock_irq(&denali->irq_lock);
1272 denali->flash_bank = chip;
1273 spin_unlock_irq(&denali->irq_lock);
1274}
1275
1276static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip)
1277{
1278 struct denali_nand_info *denali = mtd_to_denali(mtd);
1279 int status = denali->status;
1280 denali->status = 0;
1281
Jason Robertsce082592010-05-13 15:57:33 +01001282 return status;
1283}
1284
Brian Norris49c50b92014-05-06 16:02:19 -07001285static int denali_erase(struct mtd_info *mtd, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001286{
1287 struct denali_nand_info *denali = mtd_to_denali(mtd);
1288
1289 uint32_t cmd = 0x0, irq_status = 0;
1290
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001291 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001292
1293 /* setup page read request for access type */
1294 cmd = MODE_10 | BANK(denali->flash_bank) | page;
1295 index_addr(denali, (uint32_t)cmd, 0x1);
1296
1297 /* wait for erase to complete or failure to occur */
Jamie Iles9589bf52011-05-06 15:28:56 +01001298 irq_status = wait_for_irq(denali, INTR_STATUS__ERASE_COMP |
1299 INTR_STATUS__ERASE_FAIL);
Jason Robertsce082592010-05-13 15:57:33 +01001300
Brian Norris49c50b92014-05-06 16:02:19 -07001301 return (irq_status & INTR_STATUS__ERASE_FAIL) ? NAND_STATUS_FAIL : PASS;
Jason Robertsce082592010-05-13 15:57:33 +01001302}
1303
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001304static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col,
Jason Robertsce082592010-05-13 15:57:33 +01001305 int page)
1306{
1307 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001308 uint32_t addr, id;
1309 int i;
Jason Robertsce082592010-05-13 15:57:33 +01001310
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001311 switch (cmd) {
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001312 case NAND_CMD_PAGEPROG:
1313 break;
1314 case NAND_CMD_STATUS:
1315 read_status(denali);
1316 break;
1317 case NAND_CMD_READID:
Florian Fainelli42af8b52010-08-30 18:32:20 +02001318 case NAND_CMD_PARAM:
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001319 reset_buf(denali);
Masahiro Yamada43914a22014-09-09 11:01:51 +09001320 /*
1321 * sometimes ManufactureId read from register is not right
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001322 * e.g. some of Micron MT29F32G08QAA MLC NAND chips
1323 * So here we send READID cmd to NAND insteand
Masahiro Yamada43914a22014-09-09 11:01:51 +09001324 */
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001325 addr = (uint32_t)MODE_11 | BANK(denali->flash_bank);
1326 index_addr(denali, (uint32_t)addr | 0, 0x90);
1327 index_addr(denali, (uint32_t)addr | 1, 0);
grmoore@altera.comd68a5c32014-06-23 14:21:10 -05001328 for (i = 0; i < 8; i++) {
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001329 index_addr_read_data(denali,
1330 (uint32_t)addr | 2,
1331 &id);
1332 write_byte_to_buf(denali, id);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001333 }
1334 break;
1335 case NAND_CMD_READ0:
1336 case NAND_CMD_SEQIN:
1337 denali->page = page;
1338 break;
1339 case NAND_CMD_RESET:
1340 reset_bank(denali);
1341 break;
1342 case NAND_CMD_READOOB:
1343 /* TODO: Read OOB data */
1344 break;
1345 default:
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001346 pr_err(": unsupported command received 0x%x\n", cmd);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001347 break;
Jason Robertsce082592010-05-13 15:57:33 +01001348 }
1349}
1350
1351/* stubs for ECC functions not used by the NAND core */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001352static int denali_ecc_calculate(struct mtd_info *mtd, const uint8_t *data,
Jason Robertsce082592010-05-13 15:57:33 +01001353 uint8_t *ecc_code)
1354{
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001355 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jamie Iles84457942011-05-06 15:28:55 +01001356 dev_err(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001357 "denali_ecc_calculate called unexpectedly\n");
Jason Robertsce082592010-05-13 15:57:33 +01001358 BUG();
1359 return -EIO;
1360}
1361
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001362static int denali_ecc_correct(struct mtd_info *mtd, uint8_t *data,
Jason Robertsce082592010-05-13 15:57:33 +01001363 uint8_t *read_ecc, uint8_t *calc_ecc)
1364{
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001365 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jamie Iles84457942011-05-06 15:28:55 +01001366 dev_err(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001367 "denali_ecc_correct called unexpectedly\n");
Jason Robertsce082592010-05-13 15:57:33 +01001368 BUG();
1369 return -EIO;
1370}
1371
1372static void denali_ecc_hwctl(struct mtd_info *mtd, int mode)
1373{
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001374 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jamie Iles84457942011-05-06 15:28:55 +01001375 dev_err(denali->dev,
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001376 "denali_ecc_hwctl called unexpectedly\n");
Jason Robertsce082592010-05-13 15:57:33 +01001377 BUG();
1378}
1379/* end NAND core entry points */
1380
1381/* Initialization code to bring the device up to a known good state */
1382static void denali_hw_init(struct denali_nand_info *denali)
1383{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001384 /*
1385 * tell driver how many bit controller will skip before
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001386 * writing ECC code in OOB, this register may be already
1387 * set by firmware. So we read this value out.
1388 * if this value is 0, just let it be.
Masahiro Yamada43914a22014-09-09 11:01:51 +09001389 */
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001390 denali->bbtskipbytes = ioread32(denali->flash_reg +
1391 SPARE_AREA_SKIP_BYTES);
Jamie Ilesbc27ede2011-06-06 17:11:34 +01001392 detect_max_banks(denali);
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001393 denali_nand_reset(denali);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001394 iowrite32(0x0F, denali->flash_reg + RB_PIN_ENABLED);
1395 iowrite32(CHIP_EN_DONT_CARE__FLAG,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001396 denali->flash_reg + CHIP_ENABLE_DONT_CARE);
Jason Robertsce082592010-05-13 15:57:33 +01001397
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001398 iowrite32(0xffff, denali->flash_reg + SPARE_AREA_MARKER);
Jason Robertsce082592010-05-13 15:57:33 +01001399
1400 /* Should set value for these registers when init */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001401 iowrite32(0, denali->flash_reg + TWO_ROW_ADDR_CYCLES);
1402 iowrite32(1, denali->flash_reg + ECC_ENABLE);
Chuanxiao Dong5eab6aaa2010-08-12 10:07:18 +08001403 denali_nand_timing_set(denali);
1404 denali_irq_init(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001405}
1406
Masahiro Yamada43914a22014-09-09 11:01:51 +09001407/*
1408 * Althogh controller spec said SLC ECC is forceb to be 4bit,
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001409 * but denali controller in MRST only support 15bit and 8bit ECC
1410 * correction
Masahiro Yamada43914a22014-09-09 11:01:51 +09001411 */
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001412#define ECC_8BITS 14
1413static struct nand_ecclayout nand_8bit_oob = {
1414 .eccbytes = 14,
Jason Robertsce082592010-05-13 15:57:33 +01001415};
1416
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001417#define ECC_15BITS 26
1418static struct nand_ecclayout nand_15bit_oob = {
1419 .eccbytes = 26,
Jason Robertsce082592010-05-13 15:57:33 +01001420};
1421
1422static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1423static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1424
1425static struct nand_bbt_descr bbt_main_descr = {
1426 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1427 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1428 .offs = 8,
1429 .len = 4,
1430 .veroffs = 12,
1431 .maxblocks = 4,
1432 .pattern = bbt_pattern,
1433};
1434
1435static struct nand_bbt_descr bbt_mirror_descr = {
1436 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1437 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1438 .offs = 8,
1439 .len = 4,
1440 .veroffs = 12,
1441 .maxblocks = 4,
1442 .pattern = mirror_pattern,
1443};
1444
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001445/* initialize driver data structures */
Brian Norris8c519432013-08-10 22:57:30 -07001446static void denali_drv_init(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001447{
1448 denali->idx = 0;
1449
1450 /* setup interrupt handler */
Masahiro Yamada43914a22014-09-09 11:01:51 +09001451 /*
1452 * the completion object will be used to notify
1453 * the callee that the interrupt is done
1454 */
Jason Robertsce082592010-05-13 15:57:33 +01001455 init_completion(&denali->complete);
1456
Masahiro Yamada43914a22014-09-09 11:01:51 +09001457 /*
1458 * the spinlock will be used to synchronize the ISR with any
1459 * element that might be access shared data (interrupt status)
1460 */
Jason Robertsce082592010-05-13 15:57:33 +01001461 spin_lock_init(&denali->irq_lock);
1462
1463 /* indicate that MTD has not selected a valid bank yet */
1464 denali->flash_bank = CHIP_SELECT_INVALID;
1465
1466 /* initialize our irq_status variable to indicate no interrupts */
1467 denali->irq_status = 0;
1468}
1469
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001470int denali_init(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001471{
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001472 int ret;
Jason Robertsce082592010-05-13 15:57:33 +01001473
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001474 if (denali->platform == INTEL_CE4100) {
Masahiro Yamada43914a22014-09-09 11:01:51 +09001475 /*
1476 * Due to a silicon limitation, we can only support
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001477 * ONFI timing mode 1 and below.
1478 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001479 if (onfi_timing_mode < -1 || onfi_timing_mode > 1) {
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001480 pr_err("Intel CE4100 only supports ONFI timing mode 1 or below\n");
1481 return -EINVAL;
Jason Robertsce082592010-05-13 15:57:33 +01001482 }
1483 }
1484
Huang Shijiee07caa32013-12-21 00:02:28 +08001485 /* allocate a temporary buffer for nand_scan_ident() */
1486 denali->buf.buf = devm_kzalloc(denali->dev, PAGE_SIZE,
1487 GFP_DMA | GFP_KERNEL);
1488 if (!denali->buf.buf)
1489 return -ENOMEM;
Jason Robertsce082592010-05-13 15:57:33 +01001490
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001491 denali->mtd.dev.parent = denali->dev;
Jason Robertsce082592010-05-13 15:57:33 +01001492 denali_hw_init(denali);
1493 denali_drv_init(denali);
1494
Masahiro Yamada43914a22014-09-09 11:01:51 +09001495 /*
1496 * denali_isr register is done after all the hardware
1497 * initilization is finished
1498 */
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001499 if (request_irq(denali->irq, denali_isr, IRQF_SHARED,
Jason Robertsce082592010-05-13 15:57:33 +01001500 DENALI_NAND_NAME, denali)) {
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001501 pr_err("Spectra: Unable to allocate IRQ\n");
1502 return -ENODEV;
Jason Robertsce082592010-05-13 15:57:33 +01001503 }
1504
1505 /* now that our ISR is registered, we can enable interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001506 denali_set_intr_modes(denali, true);
Chuanxiao Dong5eab6aaa2010-08-12 10:07:18 +08001507 denali->mtd.name = "denali-nand";
Jason Robertsce082592010-05-13 15:57:33 +01001508 denali->mtd.owner = THIS_MODULE;
1509 denali->mtd.priv = &denali->nand;
1510
1511 /* register the driver with the NAND core subsystem */
1512 denali->nand.select_chip = denali_select_chip;
1513 denali->nand.cmdfunc = denali_cmdfunc;
1514 denali->nand.read_byte = denali_read_byte;
1515 denali->nand.waitfunc = denali_waitfunc;
1516
Masahiro Yamada43914a22014-09-09 11:01:51 +09001517 /*
1518 * scan for NAND devices attached to the controller
Jason Robertsce082592010-05-13 15:57:33 +01001519 * this is the first stage in a two step process to register
Masahiro Yamada43914a22014-09-09 11:01:51 +09001520 * with the nand subsystem
1521 */
Jamie Ilesc89eeda2011-05-06 15:28:57 +01001522 if (nand_scan_ident(&denali->mtd, denali->max_banks, NULL)) {
Jason Robertsce082592010-05-13 15:57:33 +01001523 ret = -ENXIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001524 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001525 }
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001526
Huang Shijiee07caa32013-12-21 00:02:28 +08001527 /* allocate the right size buffer now */
1528 devm_kfree(denali->dev, denali->buf.buf);
1529 denali->buf.buf = devm_kzalloc(denali->dev,
1530 denali->mtd.writesize + denali->mtd.oobsize,
1531 GFP_KERNEL);
1532 if (!denali->buf.buf) {
1533 ret = -ENOMEM;
1534 goto failed_req_irq;
1535 }
1536
1537 /* Is 32-bit DMA supported? */
1538 ret = dma_set_mask(denali->dev, DMA_BIT_MASK(32));
1539 if (ret) {
1540 pr_err("Spectra: no usable DMA configuration\n");
1541 goto failed_req_irq;
1542 }
1543
1544 denali->buf.dma_buf = dma_map_single(denali->dev, denali->buf.buf,
1545 denali->mtd.writesize + denali->mtd.oobsize,
1546 DMA_BIDIRECTIONAL);
1547 if (dma_mapping_error(denali->dev, denali->buf.dma_buf)) {
1548 dev_err(denali->dev, "Spectra: failed to map DMA buffer\n");
1549 ret = -EIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001550 goto failed_req_irq;
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001551 }
1552
Masahiro Yamada43914a22014-09-09 11:01:51 +09001553 /*
1554 * support for multi nand
1555 * MTD known nothing about multi nand, so we should tell it
1556 * the real pagesize and anything necessery
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001557 */
1558 denali->devnum = ioread32(denali->flash_reg + DEVICES_CONNECTED);
1559 denali->nand.chipsize <<= (denali->devnum - 1);
1560 denali->nand.page_shift += (denali->devnum - 1);
1561 denali->nand.pagemask = (denali->nand.chipsize >>
1562 denali->nand.page_shift) - 1;
1563 denali->nand.bbt_erase_shift += (denali->devnum - 1);
1564 denali->nand.phys_erase_shift = denali->nand.bbt_erase_shift;
1565 denali->nand.chip_shift += (denali->devnum - 1);
1566 denali->mtd.writesize <<= (denali->devnum - 1);
1567 denali->mtd.oobsize <<= (denali->devnum - 1);
1568 denali->mtd.erasesize <<= (denali->devnum - 1);
1569 denali->mtd.size = denali->nand.numchips * denali->nand.chipsize;
1570 denali->bbtskipbytes *= denali->devnum;
1571
Masahiro Yamada43914a22014-09-09 11:01:51 +09001572 /*
1573 * second stage of the NAND scan
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001574 * this stage requires information regarding ECC and
Masahiro Yamada43914a22014-09-09 11:01:51 +09001575 * bad block management.
1576 */
Jason Robertsce082592010-05-13 15:57:33 +01001577
1578 /* Bad block management */
1579 denali->nand.bbt_td = &bbt_main_descr;
1580 denali->nand.bbt_md = &bbt_mirror_descr;
1581
1582 /* skip the scan for now until we have OOB read and write support */
Brian Norrisbb9ebd42011-05-31 16:31:23 -07001583 denali->nand.bbt_options |= NAND_BBT_USE_FLASH;
Brian Norrisa40f7342011-05-31 16:31:22 -07001584 denali->nand.options |= NAND_SKIP_BBTSCAN;
Jason Robertsce082592010-05-13 15:57:33 +01001585 denali->nand.ecc.mode = NAND_ECC_HW_SYNDROME;
1586
Masahiro Yamada43914a22014-09-09 11:01:51 +09001587 /*
1588 * Denali Controller only support 15bit and 8bit ECC in MRST,
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001589 * so just let controller do 15bit ECC for MLC and 8bit ECC for
1590 * SLC if possible.
1591 * */
Huang Shijie1d0ed692013-09-25 14:58:10 +08001592 if (!nand_is_slc(&denali->nand) &&
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001593 (denali->mtd.oobsize > (denali->bbtskipbytes +
1594 ECC_15BITS * (denali->mtd.writesize /
1595 ECC_SECTOR_SIZE)))) {
1596 /* if MLC OOB size is large enough, use 15bit ECC*/
Mike Dunn6a918ba2012-03-11 14:21:11 -07001597 denali->nand.ecc.strength = 15;
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001598 denali->nand.ecc.layout = &nand_15bit_oob;
1599 denali->nand.ecc.bytes = ECC_15BITS;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001600 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001601 } else if (denali->mtd.oobsize < (denali->bbtskipbytes +
1602 ECC_8BITS * (denali->mtd.writesize /
1603 ECC_SECTOR_SIZE))) {
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001604 pr_err("Your NAND chip OOB is not large enough to \
1605 contain 8bit ECC correction codes");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001606 goto failed_req_irq;
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001607 } else {
Mike Dunn6a918ba2012-03-11 14:21:11 -07001608 denali->nand.ecc.strength = 8;
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001609 denali->nand.ecc.layout = &nand_8bit_oob;
1610 denali->nand.ecc.bytes = ECC_8BITS;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001611 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +01001612 }
1613
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001614 denali->nand.ecc.bytes *= denali->devnum;
Mike Dunn6a918ba2012-03-11 14:21:11 -07001615 denali->nand.ecc.strength *= denali->devnum;
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001616 denali->nand.ecc.layout->eccbytes *=
1617 denali->mtd.writesize / ECC_SECTOR_SIZE;
1618 denali->nand.ecc.layout->oobfree[0].offset =
1619 denali->bbtskipbytes + denali->nand.ecc.layout->eccbytes;
1620 denali->nand.ecc.layout->oobfree[0].length =
1621 denali->mtd.oobsize - denali->nand.ecc.layout->eccbytes -
1622 denali->bbtskipbytes;
1623
Masahiro Yamada43914a22014-09-09 11:01:51 +09001624 /*
1625 * Let driver know the total blocks number and how many blocks
1626 * contained by each nand chip. blksperchip will help driver to
1627 * know how many blocks is taken by FW.
1628 */
Chuanxiao.Dong66406522010-08-06 18:48:21 +08001629 denali->totalblks = denali->mtd.size >>
1630 denali->nand.phys_erase_shift;
1631 denali->blksperchip = denali->totalblks / denali->nand.numchips;
1632
Masahiro Yamada43914a22014-09-09 11:01:51 +09001633 /*
1634 * These functions are required by the NAND core framework, otherwise,
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001635 * the NAND core will assert. However, we don't need them, so we'll stub
Masahiro Yamada43914a22014-09-09 11:01:51 +09001636 * them out.
1637 */
Jason Robertsce082592010-05-13 15:57:33 +01001638 denali->nand.ecc.calculate = denali_ecc_calculate;
1639 denali->nand.ecc.correct = denali_ecc_correct;
1640 denali->nand.ecc.hwctl = denali_ecc_hwctl;
1641
1642 /* override the default read operations */
Chuanxiao Dong08b9ab92010-08-06 18:19:09 +08001643 denali->nand.ecc.size = ECC_SECTOR_SIZE * denali->devnum;
Jason Robertsce082592010-05-13 15:57:33 +01001644 denali->nand.ecc.read_page = denali_read_page;
1645 denali->nand.ecc.read_page_raw = denali_read_page_raw;
1646 denali->nand.ecc.write_page = denali_write_page;
1647 denali->nand.ecc.write_page_raw = denali_write_page_raw;
1648 denali->nand.ecc.read_oob = denali_read_oob;
1649 denali->nand.ecc.write_oob = denali_write_oob;
Brian Norris49c50b92014-05-06 16:02:19 -07001650 denali->nand.erase = denali_erase;
Jason Robertsce082592010-05-13 15:57:33 +01001651
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001652 if (nand_scan_tail(&denali->mtd)) {
Jason Robertsce082592010-05-13 15:57:33 +01001653 ret = -ENXIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001654 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001655 }
1656
Jamie Ilesee0e87b2011-05-23 10:23:40 +01001657 ret = mtd_device_register(&denali->mtd, NULL, 0);
Jason Robertsce082592010-05-13 15:57:33 +01001658 if (ret) {
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001659 dev_err(denali->dev, "Spectra: Failed to register MTD: %d\n",
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001660 ret);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001661 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001662 }
1663 return 0;
1664
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001665failed_req_irq:
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001666 denali_irq_cleanup(denali->irq, denali);
1667
Jason Robertsce082592010-05-13 15:57:33 +01001668 return ret;
1669}
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001670EXPORT_SYMBOL(denali_init);
Jason Robertsce082592010-05-13 15:57:33 +01001671
1672/* driver exit point */
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001673void denali_remove(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001674{
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001675 denali_irq_cleanup(denali->irq, denali);
Huang Shijiee07caa32013-12-21 00:02:28 +08001676 dma_unmap_single(denali->dev, denali->buf.dma_buf,
1677 denali->mtd.writesize + denali->mtd.oobsize,
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001678 DMA_BIDIRECTIONAL);
Jason Robertsce082592010-05-13 15:57:33 +01001679}
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001680EXPORT_SYMBOL(denali_remove);