blob: 7133a33b4ad36809d9d38e10f921072637a4c372 [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>
Jason Robertsce082592010-05-13 15:57:33 +010024#include <linux/mtd/mtd.h>
25#include <linux/module.h>
26
27#include "denali.h"
28
29MODULE_LICENSE("GPL");
30
Masahiro Yamada43914a22014-09-09 11:01:51 +090031/*
32 * We define a module parameter that allows the user to override
Jason Robertsce082592010-05-13 15:57:33 +010033 * the hardware and decide what timing mode should be used.
34 */
35#define NAND_DEFAULT_TIMINGS -1
36
37static int onfi_timing_mode = NAND_DEFAULT_TIMINGS;
38module_param(onfi_timing_mode, int, S_IRUGO);
Masahiro Yamada81254502014-09-16 20:04:25 +090039MODULE_PARM_DESC(onfi_timing_mode,
40 "Overrides default ONFI setting. -1 indicates use default timings");
Jason Robertsce082592010-05-13 15:57:33 +010041
42#define DENALI_NAND_NAME "denali-nand"
43
Masahiro Yamada43914a22014-09-09 11:01:51 +090044/*
45 * We define a macro here that combines all interrupts this driver uses into
46 * a single constant value, for convenience.
47 */
Masahiro Yamada1aded582017-03-23 05:07:06 +090048#define DENALI_IRQ_ALL (INTR__DMA_CMD_COMP | \
49 INTR__ECC_TRANSACTION_DONE | \
50 INTR__ECC_ERR | \
51 INTR__PROGRAM_FAIL | \
52 INTR__LOAD_COMP | \
53 INTR__PROGRAM_COMP | \
54 INTR__TIME_OUT | \
55 INTR__ERASE_FAIL | \
56 INTR__RST_COMP | \
57 INTR__ERASE_COMP)
Jason Robertsce082592010-05-13 15:57:33 +010058
Masahiro Yamada43914a22014-09-09 11:01:51 +090059/*
60 * indicates whether or not the internal value for the flash bank is
61 * valid or not
62 */
Chuanxiao5bac3acf2010-08-05 23:06:04 +080063#define CHIP_SELECT_INVALID -1
Jason Robertsce082592010-05-13 15:57:33 +010064
Masahiro Yamada43914a22014-09-09 11:01:51 +090065/*
66 * This macro divides two integers and rounds fractional values up
67 * to the nearest integer value.
68 */
Jason Robertsce082592010-05-13 15:57:33 +010069#define CEIL_DIV(X, Y) (((X)%(Y)) ? ((X)/(Y)+1) : ((X)/(Y)))
70
Masahiro Yamada43914a22014-09-09 11:01:51 +090071/*
72 * this macro allows us to convert from an MTD structure to our own
Jason Robertsce082592010-05-13 15:57:33 +010073 * device context (denali) structure.
74 */
Boris BREZILLON442f201b2015-12-11 15:06:00 +010075static inline struct denali_nand_info *mtd_to_denali(struct mtd_info *mtd)
76{
77 return container_of(mtd_to_nand(mtd), struct denali_nand_info, nand);
78}
Jason Robertsce082592010-05-13 15:57:33 +010079
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
87
88#define DENALI_READ 0
89#define DENALI_WRITE 0x100
90
Masahiro Yamada43914a22014-09-09 11:01:51 +090091/*
92 * this is a helper macro that allows us to
93 * format the bank into the proper bits for the controller
94 */
Jason Robertsce082592010-05-13 15:57:33 +010095#define BANK(x) ((x) << 24)
96
Jason Robertsce082592010-05-13 15:57:33 +010097/* forward declarations */
98static void clear_interrupts(struct denali_nand_info *denali);
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +080099static uint32_t wait_for_irq(struct denali_nand_info *denali,
100 uint32_t irq_mask);
101static void denali_irq_enable(struct denali_nand_info *denali,
102 uint32_t int_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100103static uint32_t read_interrupt_status(struct denali_nand_info *denali);
104
Masahiro Yamada43914a22014-09-09 11:01:51 +0900105/*
106 * Certain operations for the denali NAND controller use an indexed mode to
107 * read/write data. The operation is performed by writing the address value
108 * of the command to the device memory followed by the data. This function
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800109 * abstracts this common operation.
Masahiro Yamada43914a22014-09-09 11:01:51 +0900110 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800111static void index_addr(struct denali_nand_info *denali,
112 uint32_t address, uint32_t data)
Jason Robertsce082592010-05-13 15:57:33 +0100113{
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800114 iowrite32(address, denali->flash_mem);
115 iowrite32(data, denali->flash_mem + 0x10);
Jason Robertsce082592010-05-13 15:57:33 +0100116}
117
118/* Perform an indexed read of the device */
119static void index_addr_read_data(struct denali_nand_info *denali,
120 uint32_t address, uint32_t *pdata)
121{
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800122 iowrite32(address, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100123 *pdata = ioread32(denali->flash_mem + 0x10);
124}
125
Masahiro Yamada43914a22014-09-09 11:01:51 +0900126/*
127 * We need to buffer some data for some of the NAND core routines.
128 * The operations manage buffering that data.
129 */
Jason Robertsce082592010-05-13 15:57:33 +0100130static void reset_buf(struct denali_nand_info *denali)
131{
132 denali->buf.head = denali->buf.tail = 0;
133}
134
135static void write_byte_to_buf(struct denali_nand_info *denali, uint8_t byte)
136{
Jason Robertsce082592010-05-13 15:57:33 +0100137 denali->buf.buf[denali->buf.tail++] = byte;
138}
139
140/* reads the status of the device */
141static void read_status(struct denali_nand_info *denali)
142{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900143 uint32_t cmd;
Jason Robertsce082592010-05-13 15:57:33 +0100144
145 /* initialize the data buffer to store status */
146 reset_buf(denali);
147
Chuanxiao Dongf0bc0c72010-08-11 17:14:59 +0800148 cmd = ioread32(denali->flash_reg + WRITE_PROTECT);
149 if (cmd)
150 write_byte_to_buf(denali, NAND_STATUS_WP);
151 else
152 write_byte_to_buf(denali, 0);
Jason Robertsce082592010-05-13 15:57:33 +0100153}
154
155/* resets a specific device connected to the core */
156static void reset_bank(struct denali_nand_info *denali)
157{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900158 uint32_t irq_status;
Masahiro Yamada1aded582017-03-23 05:07:06 +0900159 uint32_t irq_mask = INTR__RST_COMP | INTR__TIME_OUT;
Jason Robertsce082592010-05-13 15:57:33 +0100160
161 clear_interrupts(denali);
162
Jamie Iles9589bf52011-05-06 15:28:56 +0100163 iowrite32(1 << denali->flash_bank, denali->flash_reg + DEVICE_RESET);
Jason Robertsce082592010-05-13 15:57:33 +0100164
165 irq_status = wait_for_irq(denali, irq_mask);
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800166
Masahiro Yamada1aded582017-03-23 05:07:06 +0900167 if (irq_status & INTR__TIME_OUT)
Jamie Iles84457942011-05-06 15:28:55 +0100168 dev_err(denali->dev, "reset bank failed.\n");
Jason Robertsce082592010-05-13 15:57:33 +0100169}
170
171/* Reset the flash controller */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800172static uint16_t denali_nand_reset(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100173{
Masahiro Yamada93e3c8a2014-09-09 11:01:54 +0900174 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100175
Masahiro Yamada81254502014-09-16 20:04:25 +0900176 for (i = 0; i < denali->max_banks; i++)
Masahiro Yamada1aded582017-03-23 05:07:06 +0900177 iowrite32(INTR__RST_COMP | INTR__TIME_OUT,
Jamie Iles9589bf52011-05-06 15:28:56 +0100178 denali->flash_reg + INTR_STATUS(i));
Jason Robertsce082592010-05-13 15:57:33 +0100179
Masahiro Yamada81254502014-09-16 20:04:25 +0900180 for (i = 0; i < denali->max_banks; i++) {
Jamie Iles9589bf52011-05-06 15:28:56 +0100181 iowrite32(1 << i, denali->flash_reg + DEVICE_RESET);
Masahiro Yamada81254502014-09-16 20:04:25 +0900182 while (!(ioread32(denali->flash_reg + INTR_STATUS(i)) &
Masahiro Yamada1aded582017-03-23 05:07:06 +0900183 (INTR__RST_COMP | INTR__TIME_OUT)))
Chuanxiao Dong628bfd412010-08-11 17:53:29 +0800184 cpu_relax();
Jamie Iles9589bf52011-05-06 15:28:56 +0100185 if (ioread32(denali->flash_reg + INTR_STATUS(i)) &
Masahiro Yamada1aded582017-03-23 05:07:06 +0900186 INTR__TIME_OUT)
Jamie Iles84457942011-05-06 15:28:55 +0100187 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100188 "NAND Reset operation timed out on bank %d\n", i);
189 }
190
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100191 for (i = 0; i < denali->max_banks; i++)
Masahiro Yamada1aded582017-03-23 05:07:06 +0900192 iowrite32(INTR__RST_COMP | INTR__TIME_OUT,
Masahiro Yamada81254502014-09-16 20:04:25 +0900193 denali->flash_reg + INTR_STATUS(i));
Jason Robertsce082592010-05-13 15:57:33 +0100194
195 return PASS;
196}
197
Masahiro Yamada43914a22014-09-09 11:01:51 +0900198/*
199 * this routine calculates the ONFI timing values for a given mode and
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800200 * programs the clocking register accordingly. The mode is determined by
201 * the get_onfi_nand_para routine.
Jason Robertsce082592010-05-13 15:57:33 +0100202 */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800203static void nand_onfi_timing_set(struct denali_nand_info *denali,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800204 uint16_t mode)
Jason Robertsce082592010-05-13 15:57:33 +0100205{
206 uint16_t Trea[6] = {40, 30, 25, 20, 20, 16};
207 uint16_t Trp[6] = {50, 25, 17, 15, 12, 10};
208 uint16_t Treh[6] = {30, 15, 15, 10, 10, 7};
209 uint16_t Trc[6] = {100, 50, 35, 30, 25, 20};
210 uint16_t Trhoh[6] = {0, 15, 15, 15, 15, 15};
211 uint16_t Trloh[6] = {0, 0, 0, 0, 5, 5};
212 uint16_t Tcea[6] = {100, 45, 30, 25, 25, 25};
213 uint16_t Tadl[6] = {200, 100, 100, 100, 70, 70};
214 uint16_t Trhw[6] = {200, 100, 100, 100, 100, 100};
215 uint16_t Trhz[6] = {200, 100, 100, 100, 100, 100};
216 uint16_t Twhr[6] = {120, 80, 80, 60, 60, 60};
217 uint16_t Tcs[6] = {70, 35, 25, 25, 20, 15};
218
Jason Robertsce082592010-05-13 15:57:33 +0100219 uint16_t data_invalid_rhoh, data_invalid_rloh, data_invalid;
220 uint16_t dv_window = 0;
221 uint16_t en_lo, en_hi;
222 uint16_t acc_clks;
223 uint16_t addr_2_data, re_2_we, re_2_re, we_2_re, cs_cnt;
224
Jason Robertsce082592010-05-13 15:57:33 +0100225 en_lo = CEIL_DIV(Trp[mode], CLK_X);
226 en_hi = CEIL_DIV(Treh[mode], CLK_X);
227#if ONFI_BLOOM_TIME
228 if ((en_hi * CLK_X) < (Treh[mode] + 2))
229 en_hi++;
230#endif
231
232 if ((en_lo + en_hi) * CLK_X < Trc[mode])
233 en_lo += CEIL_DIV((Trc[mode] - (en_lo + en_hi) * CLK_X), CLK_X);
234
235 if ((en_lo + en_hi) < CLK_MULTI)
236 en_lo += CLK_MULTI - en_lo - en_hi;
237
238 while (dv_window < 8) {
239 data_invalid_rhoh = en_lo * CLK_X + Trhoh[mode];
240
241 data_invalid_rloh = (en_lo + en_hi) * CLK_X + Trloh[mode];
242
Masahiro Yamada81254502014-09-16 20:04:25 +0900243 data_invalid = data_invalid_rhoh < data_invalid_rloh ?
244 data_invalid_rhoh : data_invalid_rloh;
Jason Robertsce082592010-05-13 15:57:33 +0100245
246 dv_window = data_invalid - Trea[mode];
247
248 if (dv_window < 8)
249 en_lo++;
250 }
251
252 acc_clks = CEIL_DIV(Trea[mode], CLK_X);
253
Masahiro Yamada7d14ecd2014-09-16 20:04:24 +0900254 while (acc_clks * CLK_X - Trea[mode] < 3)
Jason Robertsce082592010-05-13 15:57:33 +0100255 acc_clks++;
256
Masahiro Yamada7d14ecd2014-09-16 20:04:24 +0900257 if (data_invalid - acc_clks * CLK_X < 2)
Jamie Iles84457942011-05-06 15:28:55 +0100258 dev_warn(denali->dev, "%s, Line %d: Warning!\n",
Masahiro Yamada81254502014-09-16 20:04:25 +0900259 __FILE__, __LINE__);
Jason Robertsce082592010-05-13 15:57:33 +0100260
261 addr_2_data = CEIL_DIV(Tadl[mode], CLK_X);
262 re_2_we = CEIL_DIV(Trhw[mode], CLK_X);
263 re_2_re = CEIL_DIV(Trhz[mode], CLK_X);
264 we_2_re = CEIL_DIV(Twhr[mode], CLK_X);
265 cs_cnt = CEIL_DIV((Tcs[mode] - Trp[mode]), CLK_X);
Jason Robertsce082592010-05-13 15:57:33 +0100266 if (cs_cnt == 0)
267 cs_cnt = 1;
268
269 if (Tcea[mode]) {
Masahiro Yamada7d14ecd2014-09-16 20:04:24 +0900270 while (cs_cnt * CLK_X + Trea[mode] < Tcea[mode])
Jason Robertsce082592010-05-13 15:57:33 +0100271 cs_cnt++;
272 }
273
274#if MODE5_WORKAROUND
275 if (mode == 5)
276 acc_clks = 5;
277#endif
278
279 /* Sighting 3462430: Temporary hack for MT29F128G08CJABAWP:B */
Masahiro Yamada7d14ecd2014-09-16 20:04:24 +0900280 if (ioread32(denali->flash_reg + MANUFACTURER_ID) == 0 &&
281 ioread32(denali->flash_reg + DEVICE_ID) == 0x88)
Jason Robertsce082592010-05-13 15:57:33 +0100282 acc_clks = 6;
283
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800284 iowrite32(acc_clks, denali->flash_reg + ACC_CLKS);
285 iowrite32(re_2_we, denali->flash_reg + RE_2_WE);
286 iowrite32(re_2_re, denali->flash_reg + RE_2_RE);
287 iowrite32(we_2_re, denali->flash_reg + WE_2_RE);
288 iowrite32(addr_2_data, denali->flash_reg + ADDR_2_DATA);
289 iowrite32(en_lo, denali->flash_reg + RDWR_EN_LO_CNT);
290 iowrite32(en_hi, denali->flash_reg + RDWR_EN_HI_CNT);
291 iowrite32(cs_cnt, denali->flash_reg + CS_SETUP_CNT);
Jason Robertsce082592010-05-13 15:57:33 +0100292}
293
Jason Robertsce082592010-05-13 15:57:33 +0100294/* queries the NAND device to see what ONFI modes it supports. */
295static uint16_t get_onfi_nand_para(struct denali_nand_info *denali)
296{
297 int i;
Masahiro Yamada43914a22014-09-09 11:01:51 +0900298
299 /*
300 * we needn't to do a reset here because driver has already
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800301 * reset all the banks before
Masahiro Yamada43914a22014-09-09 11:01:51 +0900302 */
Jason Robertsce082592010-05-13 15:57:33 +0100303 if (!(ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
304 ONFI_TIMING_MODE__VALUE))
305 return FAIL;
306
307 for (i = 5; i > 0; i--) {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800308 if (ioread32(denali->flash_reg + ONFI_TIMING_MODE) &
309 (0x01 << i))
Jason Robertsce082592010-05-13 15:57:33 +0100310 break;
311 }
312
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800313 nand_onfi_timing_set(denali, i);
Jason Robertsce082592010-05-13 15:57:33 +0100314
Masahiro Yamada43914a22014-09-09 11:01:51 +0900315 /*
316 * By now, all the ONFI devices we know support the page cache
317 * rw feature. So here we enable the pipeline_rw_ahead feature
318 */
Jason Robertsce082592010-05-13 15:57:33 +0100319 /* iowrite32(1, denali->flash_reg + CACHE_WRITE_ENABLE); */
320 /* iowrite32(1, denali->flash_reg + CACHE_READ_ENABLE); */
321
322 return PASS;
323}
324
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800325static void get_samsung_nand_para(struct denali_nand_info *denali,
326 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100327{
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800328 if (device_id == 0xd3) { /* Samsung K9WAG08U1A */
Jason Robertsce082592010-05-13 15:57:33 +0100329 /* Set timing register values according to datasheet */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800330 iowrite32(5, denali->flash_reg + ACC_CLKS);
331 iowrite32(20, denali->flash_reg + RE_2_WE);
332 iowrite32(12, denali->flash_reg + WE_2_RE);
333 iowrite32(14, denali->flash_reg + ADDR_2_DATA);
334 iowrite32(3, denali->flash_reg + RDWR_EN_LO_CNT);
335 iowrite32(2, denali->flash_reg + RDWR_EN_HI_CNT);
336 iowrite32(2, denali->flash_reg + CS_SETUP_CNT);
Jason Robertsce082592010-05-13 15:57:33 +0100337 }
Jason Robertsce082592010-05-13 15:57:33 +0100338}
339
Masahiro Yamada43914a22014-09-09 11:01:51 +0900340/*
341 * determines how many NAND chips are connected to the controller. Note for
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800342 * Intel CE4100 devices we don't support more than one device.
Jason Robertsce082592010-05-13 15:57:33 +0100343 */
344static void find_valid_banks(struct denali_nand_info *denali)
345{
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100346 uint32_t id[denali->max_banks];
Jason Robertsce082592010-05-13 15:57:33 +0100347 int i;
348
349 denali->total_used_banks = 1;
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100350 for (i = 0; i < denali->max_banks; i++) {
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900351 index_addr(denali, MODE_11 | (i << 24) | 0, 0x90);
352 index_addr(denali, MODE_11 | (i << 24) | 1, 0);
Masahiro Yamada81254502014-09-16 20:04:25 +0900353 index_addr_read_data(denali, MODE_11 | (i << 24) | 2, &id[i]);
Jason Robertsce082592010-05-13 15:57:33 +0100354
Jamie Iles84457942011-05-06 15:28:55 +0100355 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100356 "Return 1st ID for bank[%d]: %x\n", i, id[i]);
357
358 if (i == 0) {
359 if (!(id[i] & 0x0ff))
360 break; /* WTF? */
361 } else {
362 if ((id[i] & 0x0ff) == (id[0] & 0x0ff))
363 denali->total_used_banks++;
364 else
365 break;
366 }
367 }
368
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800369 if (denali->platform == INTEL_CE4100) {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900370 /*
371 * Platform limitations of the CE4100 device limit
Jason Robertsce082592010-05-13 15:57:33 +0100372 * users to a single chip solution for NAND.
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800373 * Multichip support is not enabled.
374 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800375 if (denali->total_used_banks != 1) {
Jamie Iles84457942011-05-06 15:28:55 +0100376 dev_err(denali->dev,
Masahiro Yamada81254502014-09-16 20:04:25 +0900377 "Sorry, Intel CE4100 only supports a single NAND device.\n");
Jason Robertsce082592010-05-13 15:57:33 +0100378 BUG();
379 }
380 }
Jamie Iles84457942011-05-06 15:28:55 +0100381 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100382 "denali->total_used_banks: %d\n", denali->total_used_banks);
383}
384
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100385/*
386 * Use the configuration feature register to determine the maximum number of
387 * banks that the hardware supports.
388 */
389static void detect_max_banks(struct denali_nand_info *denali)
390{
391 uint32_t features = ioread32(denali->flash_reg + FEATURES);
392
Masahiro Yamadae7beeee2017-03-30 15:45:57 +0900393 denali->max_banks = 1 << (features & FEATURES__N_BANKS);
394
395 /* the encoding changed from rev 5.0 to 5.1 */
396 if (denali->revision < 0x0501)
397 denali->max_banks <<= 1;
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100398}
399
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800400static uint16_t denali_nand_timing_set(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100401{
402 uint16_t status = PASS;
grmoore@altera.comd68a5c32014-06-23 14:21:10 -0500403 uint32_t id_bytes[8], addr;
Masahiro Yamada93e3c8a2014-09-09 11:01:54 +0900404 uint8_t maf_id, device_id;
405 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100406
Masahiro Yamada43914a22014-09-09 11:01:51 +0900407 /*
408 * Use read id method to get device ID and other params.
409 * For some NAND chips, controller can't report the correct
410 * device ID by reading from DEVICE_ID register
411 */
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900412 addr = MODE_11 | BANK(denali->flash_bank);
413 index_addr(denali, addr | 0, 0x90);
414 index_addr(denali, addr | 1, 0);
grmoore@altera.comd68a5c32014-06-23 14:21:10 -0500415 for (i = 0; i < 8; i++)
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800416 index_addr_read_data(denali, addr | 2, &id_bytes[i]);
417 maf_id = id_bytes[0];
418 device_id = id_bytes[1];
Jason Robertsce082592010-05-13 15:57:33 +0100419
420 if (ioread32(denali->flash_reg + ONFI_DEVICE_NO_OF_LUNS) &
421 ONFI_DEVICE_NO_OF_LUNS__ONFI_DEVICE) { /* ONFI 1.0 NAND */
422 if (FAIL == get_onfi_nand_para(denali))
423 return FAIL;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800424 } else if (maf_id == 0xEC) { /* Samsung NAND */
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800425 get_samsung_nand_para(denali, device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100426 }
427
Jamie Iles84457942011-05-06 15:28:55 +0100428 dev_info(denali->dev,
Masahiro Yamada81254502014-09-16 20:04:25 +0900429 "Dump timing register values:\n"
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800430 "acc_clks: %d, re_2_we: %d, re_2_re: %d\n"
431 "we_2_re: %d, addr_2_data: %d, rdwr_en_lo_cnt: %d\n"
Jason Robertsce082592010-05-13 15:57:33 +0100432 "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n",
433 ioread32(denali->flash_reg + ACC_CLKS),
434 ioread32(denali->flash_reg + RE_2_WE),
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800435 ioread32(denali->flash_reg + RE_2_RE),
Jason Robertsce082592010-05-13 15:57:33 +0100436 ioread32(denali->flash_reg + WE_2_RE),
437 ioread32(denali->flash_reg + ADDR_2_DATA),
438 ioread32(denali->flash_reg + RDWR_EN_LO_CNT),
439 ioread32(denali->flash_reg + RDWR_EN_HI_CNT),
440 ioread32(denali->flash_reg + CS_SETUP_CNT));
441
Jason Robertsce082592010-05-13 15:57:33 +0100442 find_valid_banks(denali);
443
Masahiro Yamada43914a22014-09-09 11:01:51 +0900444 /*
445 * If the user specified to override the default timings
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800446 * with a specific ONFI mode, we apply those changes here.
Jason Robertsce082592010-05-13 15:57:33 +0100447 */
448 if (onfi_timing_mode != NAND_DEFAULT_TIMINGS)
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800449 nand_onfi_timing_set(denali, onfi_timing_mode);
Jason Robertsce082592010-05-13 15:57:33 +0100450
451 return status;
452}
453
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800454static void denali_set_intr_modes(struct denali_nand_info *denali,
Jason Robertsce082592010-05-13 15:57:33 +0100455 uint16_t INT_ENABLE)
456{
Jason Robertsce082592010-05-13 15:57:33 +0100457 if (INT_ENABLE)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800458 iowrite32(1, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100459 else
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800460 iowrite32(0, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100461}
462
Masahiro Yamada43914a22014-09-09 11:01:51 +0900463/*
464 * validation function to verify that the controlling software is making
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800465 * a valid request
Jason Robertsce082592010-05-13 15:57:33 +0100466 */
467static inline bool is_flash_bank_valid(int flash_bank)
468{
Masahiro Yamada7d14ecd2014-09-16 20:04:24 +0900469 return flash_bank >= 0 && flash_bank < 4;
Jason Robertsce082592010-05-13 15:57:33 +0100470}
471
472static void denali_irq_init(struct denali_nand_info *denali)
473{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900474 uint32_t int_mask;
Jamie Iles9589bf52011-05-06 15:28:56 +0100475 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100476
477 /* Disable global interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800478 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100479
480 int_mask = DENALI_IRQ_ALL;
481
482 /* Clear all status bits */
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100483 for (i = 0; i < denali->max_banks; ++i)
Jamie Iles9589bf52011-05-06 15:28:56 +0100484 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS(i));
Jason Robertsce082592010-05-13 15:57:33 +0100485
486 denali_irq_enable(denali, int_mask);
487}
488
489static void denali_irq_cleanup(int irqnum, struct denali_nand_info *denali)
490{
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800491 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100492}
493
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800494static void denali_irq_enable(struct denali_nand_info *denali,
495 uint32_t int_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100496{
Jamie Iles9589bf52011-05-06 15:28:56 +0100497 int i;
498
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100499 for (i = 0; i < denali->max_banks; ++i)
Jamie Iles9589bf52011-05-06 15:28:56 +0100500 iowrite32(int_mask, denali->flash_reg + INTR_EN(i));
Jason Robertsce082592010-05-13 15:57:33 +0100501}
502
Masahiro Yamada43914a22014-09-09 11:01:51 +0900503/*
504 * This function only returns when an interrupt that this driver cares about
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800505 * occurs. This is to reduce the overhead of servicing interrupts
Jason Robertsce082592010-05-13 15:57:33 +0100506 */
507static inline uint32_t denali_irq_detected(struct denali_nand_info *denali)
508{
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800509 return read_interrupt_status(denali) & DENALI_IRQ_ALL;
Jason Robertsce082592010-05-13 15:57:33 +0100510}
511
512/* Interrupts are cleared by writing a 1 to the appropriate status bit */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800513static inline void clear_interrupt(struct denali_nand_info *denali,
514 uint32_t irq_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100515{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900516 uint32_t intr_status_reg;
Jason Robertsce082592010-05-13 15:57:33 +0100517
Jamie Iles9589bf52011-05-06 15:28:56 +0100518 intr_status_reg = INTR_STATUS(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100519
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800520 iowrite32(irq_mask, denali->flash_reg + intr_status_reg);
Jason Robertsce082592010-05-13 15:57:33 +0100521}
522
523static void clear_interrupts(struct denali_nand_info *denali)
524{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900525 uint32_t status;
526
Jason Robertsce082592010-05-13 15:57:33 +0100527 spin_lock_irq(&denali->irq_lock);
528
529 status = read_interrupt_status(denali);
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800530 clear_interrupt(denali, status);
Jason Robertsce082592010-05-13 15:57:33 +0100531
Jason Robertsce082592010-05-13 15:57:33 +0100532 denali->irq_status = 0x0;
533 spin_unlock_irq(&denali->irq_lock);
534}
535
536static uint32_t read_interrupt_status(struct denali_nand_info *denali)
537{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900538 uint32_t intr_status_reg;
Jason Robertsce082592010-05-13 15:57:33 +0100539
Jamie Iles9589bf52011-05-06 15:28:56 +0100540 intr_status_reg = INTR_STATUS(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100541
542 return ioread32(denali->flash_reg + intr_status_reg);
543}
544
Masahiro Yamada43914a22014-09-09 11:01:51 +0900545/*
546 * This is the interrupt service routine. It handles all interrupts
547 * sent to this device. Note that on CE4100, this is a shared interrupt.
Jason Robertsce082592010-05-13 15:57:33 +0100548 */
549static irqreturn_t denali_isr(int irq, void *dev_id)
550{
551 struct denali_nand_info *denali = dev_id;
Masahiro Yamada5637b692014-09-09 11:01:52 +0900552 uint32_t irq_status;
Jason Robertsce082592010-05-13 15:57:33 +0100553 irqreturn_t result = IRQ_NONE;
554
555 spin_lock(&denali->irq_lock);
556
Masahiro Yamada43914a22014-09-09 11:01:51 +0900557 /* check to see if a valid NAND chip has been selected. */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800558 if (is_flash_bank_valid(denali->flash_bank)) {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900559 /*
560 * check to see if controller generated the interrupt,
561 * since this is a shared interrupt
562 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800563 irq_status = denali_irq_detected(denali);
564 if (irq_status != 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100565 /* handle interrupt */
566 /* first acknowledge it */
567 clear_interrupt(denali, irq_status);
Masahiro Yamada43914a22014-09-09 11:01:51 +0900568 /*
569 * store the status in the device context for someone
570 * to read
571 */
Jason Robertsce082592010-05-13 15:57:33 +0100572 denali->irq_status |= irq_status;
573 /* notify anyone who cares that it happened */
574 complete(&denali->complete);
575 /* tell the OS that we've handled this */
576 result = IRQ_HANDLED;
577 }
578 }
579 spin_unlock(&denali->irq_lock);
580 return result;
581}
Jason Robertsce082592010-05-13 15:57:33 +0100582
583static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask)
584{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900585 unsigned long comp_res;
586 uint32_t intr_status;
Jason Robertsce082592010-05-13 15:57:33 +0100587 unsigned long timeout = msecs_to_jiffies(1000);
588
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800589 do {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800590 comp_res =
591 wait_for_completion_timeout(&denali->complete, timeout);
Jason Robertsce082592010-05-13 15:57:33 +0100592 spin_lock_irq(&denali->irq_lock);
593 intr_status = denali->irq_status;
594
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800595 if (intr_status & irq_mask) {
Jason Robertsce082592010-05-13 15:57:33 +0100596 denali->irq_status &= ~irq_mask;
597 spin_unlock_irq(&denali->irq_lock);
Jason Robertsce082592010-05-13 15:57:33 +0100598 /* our interrupt was detected */
599 break;
Jason Robertsce082592010-05-13 15:57:33 +0100600 }
Masahiro Yamada81254502014-09-16 20:04:25 +0900601
602 /*
603 * these are not the interrupts you are looking for -
604 * need to wait again
605 */
606 spin_unlock_irq(&denali->irq_lock);
Jason Robertsce082592010-05-13 15:57:33 +0100607 } while (comp_res != 0);
608
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800609 if (comp_res == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100610 /* timeout */
Dinh Nguyen2a0a2882012-09-27 10:58:05 -0600611 pr_err("timeout occurred, status = 0x%x, mask = 0x%x\n",
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800612 intr_status, irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100613
614 intr_status = 0;
615 }
616 return intr_status;
617}
618
Masahiro Yamada43914a22014-09-09 11:01:51 +0900619/*
620 * This helper function setups the registers for ECC and whether or not
621 * the spare area will be transferred.
622 */
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800623static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en,
Jason Robertsce082592010-05-13 15:57:33 +0100624 bool transfer_spare)
625{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900626 int ecc_en_flag, transfer_spare_flag;
Jason Robertsce082592010-05-13 15:57:33 +0100627
628 /* set ECC, transfer spare bits if needed */
629 ecc_en_flag = ecc_en ? ECC_ENABLE__FLAG : 0;
630 transfer_spare_flag = transfer_spare ? TRANSFER_SPARE_REG__FLAG : 0;
631
632 /* Enable spare area/ECC per user's request. */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800633 iowrite32(ecc_en_flag, denali->flash_reg + ECC_ENABLE);
Masahiro Yamada81254502014-09-16 20:04:25 +0900634 iowrite32(transfer_spare_flag, denali->flash_reg + TRANSFER_SPARE_REG);
Jason Robertsce082592010-05-13 15:57:33 +0100635}
636
Masahiro Yamada43914a22014-09-09 11:01:51 +0900637/*
638 * sends a pipeline command operation to the controller. See the Denali NAND
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800639 * controller's user guide for more information (section 4.2.3.6).
Jason Robertsce082592010-05-13 15:57:33 +0100640 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800641static int denali_send_pipeline_cmd(struct denali_nand_info *denali,
Masahiro Yamada81254502014-09-16 20:04:25 +0900642 bool ecc_en, bool transfer_spare,
643 int access_type, int op)
Jason Robertsce082592010-05-13 15:57:33 +0100644{
645 int status = PASS;
Masahiro Yamada8927ad32017-03-30 15:45:49 +0900646 uint32_t addr, cmd;
Jason Robertsce082592010-05-13 15:57:33 +0100647
648 setup_ecc_for_xfer(denali, ecc_en, transfer_spare);
649
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800650 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +0100651
652 addr = BANK(denali->flash_bank) | denali->page;
653
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800654 if (op == DENALI_WRITE && access_type != SPARE_ACCESS) {
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800655 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800656 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800657 } else if (op == DENALI_WRITE && access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100658 /* read spare area */
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800659 cmd = MODE_10 | addr;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900660 index_addr(denali, cmd, access_type);
Jason Robertsce082592010-05-13 15:57:33 +0100661
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800662 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800663 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800664 } else if (op == DENALI_READ) {
Jason Robertsce082592010-05-13 15:57:33 +0100665 /* setup page read request for access type */
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800666 cmd = MODE_10 | addr;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900667 index_addr(denali, cmd, access_type);
Jason Robertsce082592010-05-13 15:57:33 +0100668
Masahiro Yamada8927ad32017-03-30 15:45:49 +0900669 cmd = MODE_01 | addr;
670 iowrite32(cmd, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100671 }
672 return status;
673}
674
675/* helper function that simply writes a buffer to the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800676static int write_data_to_flash_mem(struct denali_nand_info *denali,
Masahiro Yamada81254502014-09-16 20:04:25 +0900677 const uint8_t *buf, int len)
Jason Robertsce082592010-05-13 15:57:33 +0100678{
Masahiro Yamada93e3c8a2014-09-09 11:01:54 +0900679 uint32_t *buf32;
680 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100681
Masahiro Yamada43914a22014-09-09 11:01:51 +0900682 /*
683 * verify that the len is a multiple of 4.
684 * see comment in read_data_from_flash_mem()
685 */
Jason Robertsce082592010-05-13 15:57:33 +0100686 BUG_ON((len % 4) != 0);
687
688 /* write the data to the flash memory */
689 buf32 = (uint32_t *)buf;
690 for (i = 0; i < len / 4; i++)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800691 iowrite32(*buf32++, denali->flash_mem + 0x10);
Masahiro Yamada81254502014-09-16 20:04:25 +0900692 return i * 4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100693}
694
695/* helper function that simply reads a buffer from the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800696static int read_data_from_flash_mem(struct denali_nand_info *denali,
Masahiro Yamada81254502014-09-16 20:04:25 +0900697 uint8_t *buf, int len)
Jason Robertsce082592010-05-13 15:57:33 +0100698{
Masahiro Yamada93e3c8a2014-09-09 11:01:54 +0900699 uint32_t *buf32;
700 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100701
Masahiro Yamada43914a22014-09-09 11:01:51 +0900702 /*
703 * we assume that len will be a multiple of 4, if not it would be nice
704 * to know about it ASAP rather than have random failures...
705 * This assumption is based on the fact that this function is designed
706 * to be used to read flash pages, which are typically multiples of 4.
Jason Robertsce082592010-05-13 15:57:33 +0100707 */
Jason Robertsce082592010-05-13 15:57:33 +0100708 BUG_ON((len % 4) != 0);
709
710 /* transfer the data from the flash */
711 buf32 = (uint32_t *)buf;
712 for (i = 0; i < len / 4; i++)
Jason Robertsce082592010-05-13 15:57:33 +0100713 *buf32++ = ioread32(denali->flash_mem + 0x10);
Masahiro Yamada81254502014-09-16 20:04:25 +0900714 return i * 4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100715}
716
717/* writes OOB data to the device */
718static int write_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
719{
720 struct denali_nand_info *denali = mtd_to_denali(mtd);
Masahiro Yamada5637b692014-09-09 11:01:52 +0900721 uint32_t irq_status;
Masahiro Yamada1aded582017-03-23 05:07:06 +0900722 uint32_t irq_mask = INTR__PROGRAM_COMP | INTR__PROGRAM_FAIL;
Jason Robertsce082592010-05-13 15:57:33 +0100723 int status = 0;
724
725 denali->page = page;
726
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800727 if (denali_send_pipeline_cmd(denali, false, false, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800728 DENALI_WRITE) == PASS) {
Jason Robertsce082592010-05-13 15:57:33 +0100729 write_data_to_flash_mem(denali, buf, mtd->oobsize);
730
Jason Robertsce082592010-05-13 15:57:33 +0100731 /* wait for operation to complete */
732 irq_status = wait_for_irq(denali, irq_mask);
733
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800734 if (irq_status == 0) {
Jamie Iles84457942011-05-06 15:28:55 +0100735 dev_err(denali->dev, "OOB write failed\n");
Jason Robertsce082592010-05-13 15:57:33 +0100736 status = -EIO;
737 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800738 } else {
Jamie Iles84457942011-05-06 15:28:55 +0100739 dev_err(denali->dev, "unable to send pipeline command\n");
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800740 status = -EIO;
Jason Robertsce082592010-05-13 15:57:33 +0100741 }
742 return status;
743}
744
745/* reads OOB data from the device */
746static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
747{
748 struct denali_nand_info *denali = mtd_to_denali(mtd);
Masahiro Yamada1aded582017-03-23 05:07:06 +0900749 uint32_t irq_mask = INTR__LOAD_COMP;
Masahiro Yamada5637b692014-09-09 11:01:52 +0900750 uint32_t irq_status, addr, cmd;
Jason Robertsce082592010-05-13 15:57:33 +0100751
752 denali->page = page;
753
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800754 if (denali_send_pipeline_cmd(denali, false, true, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800755 DENALI_READ) == PASS) {
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800756 read_data_from_flash_mem(denali, buf, mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +0100757
Masahiro Yamada43914a22014-09-09 11:01:51 +0900758 /*
759 * wait for command to be accepted
760 * can always use status0 bit as the
761 * mask is identical for each bank.
762 */
Jason Robertsce082592010-05-13 15:57:33 +0100763 irq_status = wait_for_irq(denali, irq_mask);
764
765 if (irq_status == 0)
Jamie Iles84457942011-05-06 15:28:55 +0100766 dev_err(denali->dev, "page on OOB timeout %d\n",
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800767 denali->page);
Jason Robertsce082592010-05-13 15:57:33 +0100768
Masahiro Yamada43914a22014-09-09 11:01:51 +0900769 /*
770 * We set the device back to MAIN_ACCESS here as I observed
Jason Robertsce082592010-05-13 15:57:33 +0100771 * instability with the controller if you do a block erase
772 * and the last transaction was a SPARE_ACCESS. Block erase
773 * is reliable (according to the MTD test infrastructure)
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800774 * if you are in MAIN_ACCESS.
Jason Robertsce082592010-05-13 15:57:33 +0100775 */
776 addr = BANK(denali->flash_bank) | denali->page;
Chuanxiao5bac3acf2010-08-05 23:06:04 +0800777 cmd = MODE_10 | addr;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900778 index_addr(denali, cmd, MAIN_ACCESS);
Jason Robertsce082592010-05-13 15:57:33 +0100779 }
780}
781
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900782static int denali_check_erased_page(struct mtd_info *mtd,
783 struct nand_chip *chip, uint8_t *buf,
784 unsigned long uncor_ecc_flags,
785 unsigned int max_bitflips)
Jason Robertsce082592010-05-13 15:57:33 +0100786{
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900787 uint8_t *ecc_code = chip->buffers->ecccode;
788 int ecc_steps = chip->ecc.steps;
789 int ecc_size = chip->ecc.size;
790 int ecc_bytes = chip->ecc.bytes;
791 int i, ret, stat;
Masahiro Yamada81254502014-09-16 20:04:25 +0900792
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900793 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
794 chip->ecc.total);
795 if (ret)
796 return ret;
797
798 for (i = 0; i < ecc_steps; i++) {
799 if (!(uncor_ecc_flags & BIT(i)))
800 continue;
801
802 stat = nand_check_erased_ecc_chunk(buf, ecc_size,
803 ecc_code, ecc_bytes,
804 NULL, 0,
805 chip->ecc.strength);
806 if (stat < 0) {
807 mtd->ecc_stats.failed++;
808 } else {
809 mtd->ecc_stats.corrected += stat;
810 max_bitflips = max_t(unsigned int, max_bitflips, stat);
811 }
812
813 buf += ecc_size;
814 ecc_code += ecc_bytes;
815 }
816
817 return max_bitflips;
Jason Robertsce082592010-05-13 15:57:33 +0100818}
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900819
Masahiro Yamada24715c72017-03-30 15:45:52 +0900820static int denali_hw_ecc_fixup(struct mtd_info *mtd,
821 struct denali_nand_info *denali,
822 unsigned long *uncor_ecc_flags)
823{
824 struct nand_chip *chip = mtd_to_nand(mtd);
825 int bank = denali->flash_bank;
826 uint32_t ecc_cor;
827 unsigned int max_bitflips;
828
829 ecc_cor = ioread32(denali->flash_reg + ECC_COR_INFO(bank));
830 ecc_cor >>= ECC_COR_INFO__SHIFT(bank);
831
832 if (ecc_cor & ECC_COR_INFO__UNCOR_ERR) {
833 /*
834 * This flag is set when uncorrectable error occurs at least in
835 * one ECC sector. We can not know "how many sectors", or
836 * "which sector(s)". We need erase-page check for all sectors.
837 */
838 *uncor_ecc_flags = GENMASK(chip->ecc.steps - 1, 0);
839 return 0;
840 }
841
842 max_bitflips = ecc_cor & ECC_COR_INFO__MAX_ERRORS;
843
844 /*
845 * The register holds the maximum of per-sector corrected bitflips.
846 * This is suitable for the return value of the ->read_page() callback.
847 * Unfortunately, we can not know the total number of corrected bits in
848 * the page. Increase the stats by max_bitflips. (compromised solution)
849 */
850 mtd->ecc_stats.corrected += max_bitflips;
851
852 return max_bitflips;
853}
854
Jason Robertsce082592010-05-13 15:57:33 +0100855#define ECC_SECTOR(x) (((x) & ECC_ERROR_ADDRESS__SECTOR_NR) >> 12)
856#define ECC_BYTE(x) (((x) & ECC_ERROR_ADDRESS__OFFSET))
857#define ECC_CORRECTION_VALUE(x) ((x) & ERR_CORRECTION_INFO__BYTEMASK)
Masahiro Yamada20d48592017-03-30 15:45:50 +0900858#define ECC_ERROR_UNCORRECTABLE(x) ((x) & ERR_CORRECTION_INFO__ERROR_TYPE)
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800859#define ECC_ERR_DEVICE(x) (((x) & ERR_CORRECTION_INFO__DEVICE_NR) >> 8)
Jason Robertsce082592010-05-13 15:57:33 +0100860#define ECC_LAST_ERR(x) ((x) & ERR_CORRECTION_INFO__LAST_ERR_INFO)
861
Masahiro Yamada24715c72017-03-30 15:45:52 +0900862static int denali_sw_ecc_fixup(struct mtd_info *mtd,
863 struct denali_nand_info *denali,
864 unsigned long *uncor_ecc_flags, uint8_t *buf)
Jason Robertsce082592010-05-13 15:57:33 +0100865{
Masahiro Yamada7de117f2017-06-07 20:52:12 +0900866 unsigned int ecc_size = denali->nand.ecc.size;
Mike Dunn3f91e942012-04-25 12:06:09 -0700867 unsigned int bitflips = 0;
Masahiro Yamada20d48592017-03-30 15:45:50 +0900868 unsigned int max_bitflips = 0;
869 uint32_t err_addr, err_cor_info;
870 unsigned int err_byte, err_sector, err_device;
871 uint8_t err_cor_value;
872 unsigned int prev_sector = 0;
Jason Robertsce082592010-05-13 15:57:33 +0100873
Masahiro Yamada20d48592017-03-30 15:45:50 +0900874 /* read the ECC errors. we'll ignore them for now */
875 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100876
Masahiro Yamada20d48592017-03-30 15:45:50 +0900877 do {
878 err_addr = ioread32(denali->flash_reg + ECC_ERROR_ADDRESS);
879 err_sector = ECC_SECTOR(err_addr);
880 err_byte = ECC_BYTE(err_addr);
Jason Robertsce082592010-05-13 15:57:33 +0100881
Masahiro Yamada20d48592017-03-30 15:45:50 +0900882 err_cor_info = ioread32(denali->flash_reg + ERR_CORRECTION_INFO);
883 err_cor_value = ECC_CORRECTION_VALUE(err_cor_info);
884 err_device = ECC_ERR_DEVICE(err_cor_info);
Jason Robertsce082592010-05-13 15:57:33 +0100885
Masahiro Yamada20d48592017-03-30 15:45:50 +0900886 /* reset the bitflip counter when crossing ECC sector */
887 if (err_sector != prev_sector)
888 bitflips = 0;
Masahiro Yamada81254502014-09-16 20:04:25 +0900889
Masahiro Yamada20d48592017-03-30 15:45:50 +0900890 if (ECC_ERROR_UNCORRECTABLE(err_cor_info)) {
891 /*
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900892 * Check later if this is a real ECC error, or
893 * an erased sector.
Masahiro Yamada20d48592017-03-30 15:45:50 +0900894 */
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900895 *uncor_ecc_flags |= BIT(err_sector);
Masahiro Yamada7de117f2017-06-07 20:52:12 +0900896 } else if (err_byte < ecc_size) {
Masahiro Yamada20d48592017-03-30 15:45:50 +0900897 /*
Masahiro Yamada7de117f2017-06-07 20:52:12 +0900898 * If err_byte is larger than ecc_size, means error
Masahiro Yamada20d48592017-03-30 15:45:50 +0900899 * happened in OOB, so we ignore it. It's no need for
900 * us to correct it err_device is represented the NAND
901 * error bits are happened in if there are more than
902 * one NAND connected.
903 */
904 int offset;
905 unsigned int flips_in_byte;
906
Masahiro Yamada7de117f2017-06-07 20:52:12 +0900907 offset = (err_sector * ecc_size + err_byte) *
Masahiro Yamada20d48592017-03-30 15:45:50 +0900908 denali->devnum + err_device;
909
910 /* correct the ECC error */
911 flips_in_byte = hweight8(buf[offset] ^ err_cor_value);
912 buf[offset] ^= err_cor_value;
913 mtd->ecc_stats.corrected += flips_in_byte;
914 bitflips += flips_in_byte;
915
916 max_bitflips = max(max_bitflips, bitflips);
917 }
918
919 prev_sector = err_sector;
920 } while (!ECC_LAST_ERR(err_cor_info));
921
922 /*
923 * Once handle all ecc errors, controller will trigger a
924 * ECC_TRANSACTION_DONE interrupt, so here just wait for
925 * a while for this interrupt
926 */
927 while (!(read_interrupt_status(denali) & INTR__ECC_TRANSACTION_DONE))
928 cpu_relax();
929 clear_interrupts(denali);
930 denali_set_intr_modes(denali, true);
931
932 return max_bitflips;
Jason Robertsce082592010-05-13 15:57:33 +0100933}
934
935/* programs the controller to either enable/disable DMA transfers */
David Woodhouseaadff492010-05-13 16:12:43 +0100936static void denali_enable_dma(struct denali_nand_info *denali, bool en)
Jason Robertsce082592010-05-13 15:57:33 +0100937{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900938 iowrite32(en ? DMA_ENABLE__FLAG : 0, denali->flash_reg + DMA_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100939 ioread32(denali->flash_reg + DMA_ENABLE);
940}
941
Masahiro Yamada210a2c82017-03-30 15:45:54 +0900942static void denali_setup_dma64(struct denali_nand_info *denali, int op)
943{
944 uint32_t mode;
945 const int page_count = 1;
946 uint64_t addr = denali->buf.dma_buf;
947
948 mode = MODE_10 | BANK(denali->flash_bank) | denali->page;
949
950 /* DMA is a three step process */
951
952 /*
953 * 1. setup transfer type, interrupt when complete,
954 * burst len = 64 bytes, the number of pages
955 */
956 index_addr(denali, mode, 0x01002000 | (64 << 16) | op | page_count);
957
958 /* 2. set memory low address */
959 index_addr(denali, mode, addr);
960
961 /* 3. set memory high address */
962 index_addr(denali, mode, addr >> 32);
963}
964
965static void denali_setup_dma32(struct denali_nand_info *denali, int op)
Jason Robertsce082592010-05-13 15:57:33 +0100966{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900967 uint32_t mode;
Jason Robertsce082592010-05-13 15:57:33 +0100968 const int page_count = 1;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900969 uint32_t addr = denali->buf.dma_buf;
Jason Robertsce082592010-05-13 15:57:33 +0100970
971 mode = MODE_10 | BANK(denali->flash_bank);
972
973 /* DMA is a four step process */
974
975 /* 1. setup transfer type and # of pages */
976 index_addr(denali, mode | denali->page, 0x2000 | op | page_count);
977
978 /* 2. set memory high address bits 23:8 */
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900979 index_addr(denali, mode | ((addr >> 16) << 8), 0x2200);
Jason Robertsce082592010-05-13 15:57:33 +0100980
981 /* 3. set memory low address bits 23:8 */
Graham Moore7c272ac2015-01-09 09:32:35 -0600982 index_addr(denali, mode | ((addr & 0xffff) << 8), 0x2300);
Jason Robertsce082592010-05-13 15:57:33 +0100983
Masahiro Yamada43914a22014-09-09 11:01:51 +0900984 /* 4. interrupt when complete, burst len = 64 bytes */
Jason Robertsce082592010-05-13 15:57:33 +0100985 index_addr(denali, mode | 0x14000, 0x2400);
986}
987
Masahiro Yamada210a2c82017-03-30 15:45:54 +0900988static void denali_setup_dma(struct denali_nand_info *denali, int op)
989{
990 if (denali->caps & DENALI_CAP_DMA_64BIT)
991 denali_setup_dma64(denali, op);
992 else
993 denali_setup_dma32(denali, op);
994}
995
Masahiro Yamada43914a22014-09-09 11:01:51 +0900996/*
997 * writes a page. user specifies type, and this function handles the
998 * configuration details.
999 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001000static int write_page(struct mtd_info *mtd, struct nand_chip *chip,
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001001 const uint8_t *buf, int page, bool raw_xfer)
Jason Robertsce082592010-05-13 15:57:33 +01001002{
1003 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001004 dma_addr_t addr = denali->buf.dma_buf;
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001005 size_t size = mtd->writesize + mtd->oobsize;
Masahiro Yamada5637b692014-09-09 11:01:52 +09001006 uint32_t irq_status;
Masahiro Yamada1aded582017-03-23 05:07:06 +09001007 uint32_t irq_mask = INTR__DMA_CMD_COMP | INTR__PROGRAM_FAIL;
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001008 int ret = 0;
1009
1010 denali->page = page;
Jason Robertsce082592010-05-13 15:57:33 +01001011
Masahiro Yamada43914a22014-09-09 11:01:51 +09001012 /*
1013 * if it is a raw xfer, we want to disable ecc and send the spare area.
Jason Robertsce082592010-05-13 15:57:33 +01001014 * !raw_xfer - enable ecc
1015 * raw_xfer - transfer spare
1016 */
1017 setup_ecc_for_xfer(denali, !raw_xfer, raw_xfer);
1018
1019 /* copy buffer into DMA buffer */
1020 memcpy(denali->buf.buf, buf, mtd->writesize);
1021
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001022 if (raw_xfer) {
Jason Robertsce082592010-05-13 15:57:33 +01001023 /* transfer the data to the spare area */
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001024 memcpy(denali->buf.buf + mtd->writesize,
1025 chip->oob_poi,
1026 mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +01001027 }
1028
Jamie Iles84457942011-05-06 15:28:55 +01001029 dma_sync_single_for_device(denali->dev, addr, size, DMA_TO_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001030
1031 clear_interrupts(denali);
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001032 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001033
David Woodhouseaadff492010-05-13 16:12:43 +01001034 denali_setup_dma(denali, DENALI_WRITE);
Jason Robertsce082592010-05-13 15:57:33 +01001035
1036 /* wait for operation to complete */
1037 irq_status = wait_for_irq(denali, irq_mask);
1038
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001039 if (irq_status == 0) {
Masahiro Yamada81254502014-09-16 20:04:25 +09001040 dev_err(denali->dev, "timeout on write_page (type = %d)\n",
1041 raw_xfer);
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001042 ret = -EIO;
Jason Robertsce082592010-05-13 15:57:33 +01001043 }
1044
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001045 denali_enable_dma(denali, false);
Jamie Iles84457942011-05-06 15:28:55 +01001046 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_TO_DEVICE);
Josh Wufdbad98d2012-06-25 18:07:45 +08001047
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001048 return ret;
Jason Robertsce082592010-05-13 15:57:33 +01001049}
1050
1051/* NAND core entry points */
1052
Masahiro Yamada43914a22014-09-09 11:01:51 +09001053/*
1054 * this is the callback that the NAND core calls to write a page. Since
Chuanxiao Dongb292c342010-08-11 17:46:00 +08001055 * writing a page with ECC or without is similar, all the work is done
1056 * by write_page above.
Masahiro Yamada43914a22014-09-09 11:01:51 +09001057 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001058static int denali_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001059 const uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001060{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001061 /*
1062 * for regular page writes, we let HW handle all the ECC
1063 * data written to the device.
1064 */
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001065 return write_page(mtd, chip, buf, page, false);
Jason Robertsce082592010-05-13 15:57:33 +01001066}
1067
Masahiro Yamada43914a22014-09-09 11:01:51 +09001068/*
1069 * This is the callback that the NAND core calls to write a page without ECC.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001070 * raw access is similar to ECC page writes, so all the work is done in the
Chuanxiao Dongb292c342010-08-11 17:46:00 +08001071 * write_page() function above.
Jason Robertsce082592010-05-13 15:57:33 +01001072 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001073static int denali_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001074 const uint8_t *buf, int oob_required,
1075 int page)
Jason Robertsce082592010-05-13 15:57:33 +01001076{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001077 /*
1078 * for raw page writes, we want to disable ECC and simply write
1079 * whatever data is in the buffer.
1080 */
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001081 return write_page(mtd, chip, buf, page, true);
Jason Robertsce082592010-05-13 15:57:33 +01001082}
1083
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001084static int denali_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001085 int page)
1086{
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001087 return write_oob_data(mtd, chip->oob_poi, page);
Jason Robertsce082592010-05-13 15:57:33 +01001088}
1089
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001090static int denali_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001091 int page)
Jason Robertsce082592010-05-13 15:57:33 +01001092{
1093 read_oob_data(mtd, chip->oob_poi, page);
1094
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001095 return 0;
Jason Robertsce082592010-05-13 15:57:33 +01001096}
1097
1098static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001099 uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001100{
1101 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001102 dma_addr_t addr = denali->buf.dma_buf;
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001103 size_t size = mtd->writesize + mtd->oobsize;
Masahiro Yamada5637b692014-09-09 11:01:52 +09001104 uint32_t irq_status;
Masahiro Yamada24715c72017-03-30 15:45:52 +09001105 uint32_t irq_mask = denali->caps & DENALI_CAP_HW_ECC_FIXUP ?
1106 INTR__DMA_CMD_COMP | INTR__ECC_UNCOR_ERR :
1107 INTR__ECC_TRANSACTION_DONE | INTR__ECC_ERR;
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001108 unsigned long uncor_ecc_flags = 0;
1109 int stat = 0;
Jason Robertsce082592010-05-13 15:57:33 +01001110
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001111 denali->page = page;
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001112
Jason Robertsce082592010-05-13 15:57:33 +01001113 setup_ecc_for_xfer(denali, true, false);
1114
David Woodhouseaadff492010-05-13 16:12:43 +01001115 denali_enable_dma(denali, true);
Jamie Iles84457942011-05-06 15:28:55 +01001116 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001117
1118 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001119 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001120
1121 /* wait for operation to complete */
1122 irq_status = wait_for_irq(denali, irq_mask);
1123
Jamie Iles84457942011-05-06 15:28:55 +01001124 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001125
1126 memcpy(buf, denali->buf.buf, mtd->writesize);
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001127
Masahiro Yamada24715c72017-03-30 15:45:52 +09001128 if (denali->caps & DENALI_CAP_HW_ECC_FIXUP)
1129 stat = denali_hw_ecc_fixup(mtd, denali, &uncor_ecc_flags);
1130 else if (irq_status & INTR__ECC_ERR)
1131 stat = denali_sw_ecc_fixup(mtd, denali, &uncor_ecc_flags, buf);
David Woodhouseaadff492010-05-13 16:12:43 +01001132 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001133
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001134 if (stat < 0)
1135 return stat;
1136
1137 if (uncor_ecc_flags) {
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001138 read_oob_data(mtd, chip->oob_poi, denali->page);
Jason Robertsce082592010-05-13 15:57:33 +01001139
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001140 stat = denali_check_erased_page(mtd, chip, buf,
1141 uncor_ecc_flags, stat);
Jason Robertsce082592010-05-13 15:57:33 +01001142 }
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001143
1144 return stat;
Jason Robertsce082592010-05-13 15:57:33 +01001145}
1146
1147static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001148 uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001149{
1150 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001151 dma_addr_t addr = denali->buf.dma_buf;
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001152 size_t size = mtd->writesize + mtd->oobsize;
Masahiro Yamada1aded582017-03-23 05:07:06 +09001153 uint32_t irq_mask = INTR__DMA_CMD_COMP;
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001154
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001155 denali->page = page;
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001156
Jason Robertsce082592010-05-13 15:57:33 +01001157 setup_ecc_for_xfer(denali, false, true);
David Woodhouseaadff492010-05-13 16:12:43 +01001158 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001159
Jamie Iles84457942011-05-06 15:28:55 +01001160 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001161
1162 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001163 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001164
1165 /* wait for operation to complete */
Brian Norrisba5f2bc2014-09-19 09:37:19 -07001166 wait_for_irq(denali, irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +01001167
Jamie Iles84457942011-05-06 15:28:55 +01001168 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001169
David Woodhouseaadff492010-05-13 16:12:43 +01001170 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001171
1172 memcpy(buf, denali->buf.buf, mtd->writesize);
1173 memcpy(chip->oob_poi, denali->buf.buf + mtd->writesize, mtd->oobsize);
1174
1175 return 0;
1176}
1177
1178static uint8_t denali_read_byte(struct mtd_info *mtd)
1179{
1180 struct denali_nand_info *denali = mtd_to_denali(mtd);
1181 uint8_t result = 0xff;
1182
1183 if (denali->buf.head < denali->buf.tail)
Jason Robertsce082592010-05-13 15:57:33 +01001184 result = denali->buf.buf[denali->buf.head++];
Jason Robertsce082592010-05-13 15:57:33 +01001185
Jason Robertsce082592010-05-13 15:57:33 +01001186 return result;
1187}
1188
1189static void denali_select_chip(struct mtd_info *mtd, int chip)
1190{
1191 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001192
Jason Robertsce082592010-05-13 15:57:33 +01001193 spin_lock_irq(&denali->irq_lock);
1194 denali->flash_bank = chip;
1195 spin_unlock_irq(&denali->irq_lock);
1196}
1197
1198static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip)
1199{
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001200 return 0;
Jason Robertsce082592010-05-13 15:57:33 +01001201}
1202
Brian Norris49c50b92014-05-06 16:02:19 -07001203static int denali_erase(struct mtd_info *mtd, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001204{
1205 struct denali_nand_info *denali = mtd_to_denali(mtd);
1206
Masahiro Yamada5637b692014-09-09 11:01:52 +09001207 uint32_t cmd, irq_status;
Jason Robertsce082592010-05-13 15:57:33 +01001208
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001209 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001210
1211 /* setup page read request for access type */
1212 cmd = MODE_10 | BANK(denali->flash_bank) | page;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +09001213 index_addr(denali, cmd, 0x1);
Jason Robertsce082592010-05-13 15:57:33 +01001214
1215 /* wait for erase to complete or failure to occur */
Masahiro Yamada1aded582017-03-23 05:07:06 +09001216 irq_status = wait_for_irq(denali, INTR__ERASE_COMP | INTR__ERASE_FAIL);
Jason Robertsce082592010-05-13 15:57:33 +01001217
Masahiro Yamada1aded582017-03-23 05:07:06 +09001218 return irq_status & INTR__ERASE_FAIL ? NAND_STATUS_FAIL : PASS;
Jason Robertsce082592010-05-13 15:57:33 +01001219}
1220
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001221static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col,
Jason Robertsce082592010-05-13 15:57:33 +01001222 int page)
1223{
1224 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001225 uint32_t addr, id;
1226 int i;
Jason Robertsce082592010-05-13 15:57:33 +01001227
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001228 switch (cmd) {
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001229 case NAND_CMD_STATUS:
1230 read_status(denali);
1231 break;
1232 case NAND_CMD_READID:
Florian Fainelli42af8b52010-08-30 18:32:20 +02001233 case NAND_CMD_PARAM:
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001234 reset_buf(denali);
Masahiro Yamada43914a22014-09-09 11:01:51 +09001235 /*
1236 * sometimes ManufactureId read from register is not right
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001237 * e.g. some of Micron MT29F32G08QAA MLC NAND chips
1238 * So here we send READID cmd to NAND insteand
Masahiro Yamada43914a22014-09-09 11:01:51 +09001239 */
Masahiro Yamada3157d1e2014-09-09 11:01:53 +09001240 addr = MODE_11 | BANK(denali->flash_bank);
1241 index_addr(denali, addr | 0, 0x90);
Enrico Jorns9c07d092015-09-18 10:02:41 +02001242 index_addr(denali, addr | 1, col);
grmoore@altera.comd68a5c32014-06-23 14:21:10 -05001243 for (i = 0; i < 8; i++) {
Masahiro Yamada81254502014-09-16 20:04:25 +09001244 index_addr_read_data(denali, addr | 2, &id);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001245 write_byte_to_buf(denali, id);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001246 }
1247 break;
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001248 case NAND_CMD_RESET:
1249 reset_bank(denali);
1250 break;
1251 case NAND_CMD_READOOB:
1252 /* TODO: Read OOB data */
1253 break;
1254 default:
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001255 pr_err(": unsupported command received 0x%x\n", cmd);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001256 break;
Jason Robertsce082592010-05-13 15:57:33 +01001257 }
1258}
Jason Robertsce082592010-05-13 15:57:33 +01001259/* end NAND core entry points */
1260
1261/* Initialization code to bring the device up to a known good state */
1262static void denali_hw_init(struct denali_nand_info *denali)
1263{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001264 /*
Masahiro Yamadae7beeee2017-03-30 15:45:57 +09001265 * The REVISION register may not be reliable. Platforms are allowed to
1266 * override it.
1267 */
1268 if (!denali->revision)
1269 denali->revision =
1270 swab16(ioread32(denali->flash_reg + REVISION));
1271
1272 /*
Masahiro Yamada43914a22014-09-09 11:01:51 +09001273 * tell driver how many bit controller will skip before
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001274 * writing ECC code in OOB, this register may be already
1275 * set by firmware. So we read this value out.
1276 * if this value is 0, just let it be.
Masahiro Yamada43914a22014-09-09 11:01:51 +09001277 */
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001278 denali->bbtskipbytes = ioread32(denali->flash_reg +
1279 SPARE_AREA_SKIP_BYTES);
Jamie Ilesbc27ede2011-06-06 17:11:34 +01001280 detect_max_banks(denali);
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001281 denali_nand_reset(denali);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001282 iowrite32(0x0F, denali->flash_reg + RB_PIN_ENABLED);
1283 iowrite32(CHIP_EN_DONT_CARE__FLAG,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001284 denali->flash_reg + CHIP_ENABLE_DONT_CARE);
Jason Robertsce082592010-05-13 15:57:33 +01001285
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001286 iowrite32(0xffff, denali->flash_reg + SPARE_AREA_MARKER);
Jason Robertsce082592010-05-13 15:57:33 +01001287
1288 /* Should set value for these registers when init */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001289 iowrite32(0, denali->flash_reg + TWO_ROW_ADDR_CYCLES);
1290 iowrite32(1, denali->flash_reg + ECC_ENABLE);
Chuanxiao Dong5eab6aaa2010-08-12 10:07:18 +08001291 denali_nand_timing_set(denali);
1292 denali_irq_init(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001293}
1294
Masahiro Yamada7de117f2017-06-07 20:52:12 +09001295int denali_calc_ecc_bytes(int step_size, int strength)
1296{
1297 /* BCH code. Denali requires ecc.bytes to be multiple of 2 */
1298 return DIV_ROUND_UP(strength * fls(step_size * 8), 16) * 2;
1299}
1300EXPORT_SYMBOL(denali_calc_ecc_bytes);
1301
1302static int denali_ecc_setup(struct mtd_info *mtd, struct nand_chip *chip,
1303 struct denali_nand_info *denali)
1304{
1305 int oobavail = mtd->oobsize - denali->bbtskipbytes;
1306 int ret;
1307
1308 /*
1309 * If .size and .strength are already set (usually by DT),
1310 * check if they are supported by this controller.
1311 */
1312 if (chip->ecc.size && chip->ecc.strength)
1313 return nand_check_ecc_caps(chip, denali->ecc_caps, oobavail);
1314
1315 /*
1316 * We want .size and .strength closest to the chip's requirement
1317 * unless NAND_ECC_MAXIMIZE is requested.
1318 */
1319 if (!(chip->ecc.options & NAND_ECC_MAXIMIZE)) {
1320 ret = nand_match_ecc_req(chip, denali->ecc_caps, oobavail);
1321 if (!ret)
1322 return 0;
1323 }
1324
1325 /* Max ECC strength is the last thing we can do */
1326 return nand_maximize_ecc(chip, denali->ecc_caps, oobavail);
1327}
Boris Brezillon14fad622016-02-03 20:00:11 +01001328
1329static int denali_ooblayout_ecc(struct mtd_info *mtd, int section,
1330 struct mtd_oob_region *oobregion)
1331{
1332 struct denali_nand_info *denali = mtd_to_denali(mtd);
1333 struct nand_chip *chip = mtd_to_nand(mtd);
1334
1335 if (section)
1336 return -ERANGE;
1337
1338 oobregion->offset = denali->bbtskipbytes;
1339 oobregion->length = chip->ecc.total;
1340
1341 return 0;
1342}
1343
1344static int denali_ooblayout_free(struct mtd_info *mtd, int section,
1345 struct mtd_oob_region *oobregion)
1346{
1347 struct denali_nand_info *denali = mtd_to_denali(mtd);
1348 struct nand_chip *chip = mtd_to_nand(mtd);
1349
1350 if (section)
1351 return -ERANGE;
1352
1353 oobregion->offset = chip->ecc.total + denali->bbtskipbytes;
1354 oobregion->length = mtd->oobsize - oobregion->offset;
1355
1356 return 0;
1357}
1358
1359static const struct mtd_ooblayout_ops denali_ooblayout_ops = {
1360 .ecc = denali_ooblayout_ecc,
1361 .free = denali_ooblayout_free,
Jason Robertsce082592010-05-13 15:57:33 +01001362};
1363
1364static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1365static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1366
1367static struct nand_bbt_descr bbt_main_descr = {
1368 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1369 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1370 .offs = 8,
1371 .len = 4,
1372 .veroffs = 12,
1373 .maxblocks = 4,
1374 .pattern = bbt_pattern,
1375};
1376
1377static struct nand_bbt_descr bbt_mirror_descr = {
1378 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1379 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1380 .offs = 8,
1381 .len = 4,
1382 .veroffs = 12,
1383 .maxblocks = 4,
1384 .pattern = mirror_pattern,
1385};
1386
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001387/* initialize driver data structures */
Brian Norris8c519432013-08-10 22:57:30 -07001388static void denali_drv_init(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001389{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001390 /*
1391 * the completion object will be used to notify
1392 * the callee that the interrupt is done
1393 */
Jason Robertsce082592010-05-13 15:57:33 +01001394 init_completion(&denali->complete);
1395
Masahiro Yamada43914a22014-09-09 11:01:51 +09001396 /*
1397 * the spinlock will be used to synchronize the ISR with any
1398 * element that might be access shared data (interrupt status)
1399 */
Jason Robertsce082592010-05-13 15:57:33 +01001400 spin_lock_init(&denali->irq_lock);
1401
1402 /* indicate that MTD has not selected a valid bank yet */
1403 denali->flash_bank = CHIP_SELECT_INVALID;
1404
1405 /* initialize our irq_status variable to indicate no interrupts */
1406 denali->irq_status = 0;
1407}
1408
Masahiro Yamadae93c1642017-03-23 05:07:21 +09001409static int denali_multidev_fixup(struct denali_nand_info *denali)
Masahiro Yamada6da27b42017-03-23 05:07:20 +09001410{
1411 struct nand_chip *chip = &denali->nand;
1412 struct mtd_info *mtd = nand_to_mtd(chip);
1413
1414 /*
1415 * Support for multi device:
1416 * When the IP configuration is x16 capable and two x8 chips are
1417 * connected in parallel, DEVICES_CONNECTED should be set to 2.
1418 * In this case, the core framework knows nothing about this fact,
1419 * so we should tell it the _logical_ pagesize and anything necessary.
1420 */
1421 denali->devnum = ioread32(denali->flash_reg + DEVICES_CONNECTED);
1422
Masahiro Yamadacc5d8032017-03-23 05:07:22 +09001423 /*
1424 * On some SoCs, DEVICES_CONNECTED is not auto-detected.
1425 * For those, DEVICES_CONNECTED is left to 0. Set 1 if it is the case.
1426 */
1427 if (denali->devnum == 0) {
1428 denali->devnum = 1;
1429 iowrite32(1, denali->flash_reg + DEVICES_CONNECTED);
1430 }
1431
Masahiro Yamadae93c1642017-03-23 05:07:21 +09001432 if (denali->devnum == 1)
1433 return 0;
1434
1435 if (denali->devnum != 2) {
1436 dev_err(denali->dev, "unsupported number of devices %d\n",
1437 denali->devnum);
1438 return -EINVAL;
1439 }
1440
1441 /* 2 chips in parallel */
1442 mtd->size <<= 1;
1443 mtd->erasesize <<= 1;
1444 mtd->writesize <<= 1;
1445 mtd->oobsize <<= 1;
1446 chip->chipsize <<= 1;
1447 chip->page_shift += 1;
1448 chip->phys_erase_shift += 1;
1449 chip->bbt_erase_shift += 1;
1450 chip->chip_shift += 1;
1451 chip->pagemask <<= 1;
1452 chip->ecc.size <<= 1;
1453 chip->ecc.bytes <<= 1;
1454 chip->ecc.strength <<= 1;
1455 denali->bbtskipbytes <<= 1;
1456
1457 return 0;
Masahiro Yamada6da27b42017-03-23 05:07:20 +09001458}
1459
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001460int denali_init(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001461{
Masahiro Yamada1394a722017-03-23 05:07:17 +09001462 struct nand_chip *chip = &denali->nand;
1463 struct mtd_info *mtd = nand_to_mtd(chip);
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001464 int ret;
Jason Robertsce082592010-05-13 15:57:33 +01001465
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001466 if (denali->platform == INTEL_CE4100) {
Masahiro Yamada43914a22014-09-09 11:01:51 +09001467 /*
1468 * Due to a silicon limitation, we can only support
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001469 * ONFI timing mode 1 and below.
1470 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001471 if (onfi_timing_mode < -1 || onfi_timing_mode > 1) {
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001472 pr_err("Intel CE4100 only supports ONFI timing mode 1 or below\n");
1473 return -EINVAL;
Jason Robertsce082592010-05-13 15:57:33 +01001474 }
1475 }
1476
Huang Shijiee07caa32013-12-21 00:02:28 +08001477 /* allocate a temporary buffer for nand_scan_ident() */
1478 denali->buf.buf = devm_kzalloc(denali->dev, PAGE_SIZE,
1479 GFP_DMA | GFP_KERNEL);
1480 if (!denali->buf.buf)
1481 return -ENOMEM;
Jason Robertsce082592010-05-13 15:57:33 +01001482
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001483 mtd->dev.parent = denali->dev;
Jason Robertsce082592010-05-13 15:57:33 +01001484 denali_hw_init(denali);
1485 denali_drv_init(denali);
1486
Masahiro Yamada7ebb8d02016-11-09 13:35:27 +09001487 /* Request IRQ after all the hardware initialization is finished */
1488 ret = devm_request_irq(denali->dev, denali->irq, denali_isr,
1489 IRQF_SHARED, DENALI_NAND_NAME, denali);
1490 if (ret) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001491 dev_err(denali->dev, "Unable to request IRQ\n");
Masahiro Yamada7ebb8d02016-11-09 13:35:27 +09001492 return ret;
Jason Robertsce082592010-05-13 15:57:33 +01001493 }
1494
1495 /* now that our ISR is registered, we can enable interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001496 denali_set_intr_modes(denali, true);
Masahiro Yamada63757d42017-03-23 05:07:18 +09001497 nand_set_flash_node(chip, denali->dev->of_node);
Masahiro Yamada8aabdf32017-03-30 15:45:48 +09001498 /* Fallback to the default name if DT did not give "label" property */
1499 if (!mtd->name)
1500 mtd->name = "denali-nand";
Jason Robertsce082592010-05-13 15:57:33 +01001501
1502 /* register the driver with the NAND core subsystem */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001503 chip->select_chip = denali_select_chip;
1504 chip->cmdfunc = denali_cmdfunc;
1505 chip->read_byte = denali_read_byte;
1506 chip->waitfunc = denali_waitfunc;
Boris Brezillon4a78cc62017-05-26 17:10:15 +02001507 chip->onfi_set_features = nand_onfi_get_set_features_notsupp;
1508 chip->onfi_get_features = nand_onfi_get_set_features_notsupp;
Jason Robertsce082592010-05-13 15:57:33 +01001509
Masahiro Yamada43914a22014-09-09 11:01:51 +09001510 /*
1511 * scan for NAND devices attached to the controller
Jason Robertsce082592010-05-13 15:57:33 +01001512 * this is the first stage in a two step process to register
Masahiro Yamada43914a22014-09-09 11:01:51 +09001513 * with the nand subsystem
1514 */
Masahiro Yamadaa227d4e2016-11-09 13:35:28 +09001515 ret = nand_scan_ident(mtd, denali->max_banks, NULL);
1516 if (ret)
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001517 goto failed_req_irq;
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001518
Huang Shijiee07caa32013-12-21 00:02:28 +08001519 /* allocate the right size buffer now */
1520 devm_kfree(denali->dev, denali->buf.buf);
1521 denali->buf.buf = devm_kzalloc(denali->dev,
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001522 mtd->writesize + mtd->oobsize,
Huang Shijiee07caa32013-12-21 00:02:28 +08001523 GFP_KERNEL);
1524 if (!denali->buf.buf) {
1525 ret = -ENOMEM;
1526 goto failed_req_irq;
1527 }
1528
Masahiro Yamada210a2c82017-03-30 15:45:54 +09001529 ret = dma_set_mask(denali->dev,
1530 DMA_BIT_MASK(denali->caps & DENALI_CAP_DMA_64BIT ?
1531 64 : 32));
Huang Shijiee07caa32013-12-21 00:02:28 +08001532 if (ret) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001533 dev_err(denali->dev, "No usable DMA configuration\n");
Huang Shijiee07caa32013-12-21 00:02:28 +08001534 goto failed_req_irq;
1535 }
1536
1537 denali->buf.dma_buf = dma_map_single(denali->dev, denali->buf.buf,
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001538 mtd->writesize + mtd->oobsize,
Huang Shijiee07caa32013-12-21 00:02:28 +08001539 DMA_BIDIRECTIONAL);
1540 if (dma_mapping_error(denali->dev, denali->buf.dma_buf)) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001541 dev_err(denali->dev, "Failed to map DMA buffer\n");
Huang Shijiee07caa32013-12-21 00:02:28 +08001542 ret = -EIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001543 goto failed_req_irq;
Chuanxiao.Dong664065242010-08-06 18:48:21 +08001544 }
1545
Masahiro Yamada43914a22014-09-09 11:01:51 +09001546 /*
Masahiro Yamada43914a22014-09-09 11:01:51 +09001547 * second stage of the NAND scan
Chuanxiao5bac3acf2010-08-05 23:06:04 +08001548 * this stage requires information regarding ECC and
Masahiro Yamada43914a22014-09-09 11:01:51 +09001549 * bad block management.
1550 */
Jason Robertsce082592010-05-13 15:57:33 +01001551
1552 /* Bad block management */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001553 chip->bbt_td = &bbt_main_descr;
1554 chip->bbt_md = &bbt_mirror_descr;
Jason Robertsce082592010-05-13 15:57:33 +01001555
1556 /* skip the scan for now until we have OOB read and write support */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001557 chip->bbt_options |= NAND_BBT_USE_FLASH;
1558 chip->options |= NAND_SKIP_BBTSCAN;
1559 chip->ecc.mode = NAND_ECC_HW_SYNDROME;
Jason Robertsce082592010-05-13 15:57:33 +01001560
Graham Moored99d7282015-01-14 09:38:50 -06001561 /* no subpage writes on denali */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001562 chip->options |= NAND_NO_SUBPAGE_WRITE;
Graham Moored99d7282015-01-14 09:38:50 -06001563
Masahiro Yamada7de117f2017-06-07 20:52:12 +09001564 ret = denali_ecc_setup(mtd, chip, denali);
1565 if (ret) {
1566 dev_err(denali->dev, "Failed to setup ECC settings.\n");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001567 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001568 }
1569
Masahiro Yamada7de117f2017-06-07 20:52:12 +09001570 dev_dbg(denali->dev,
1571 "chosen ECC settings: step=%d, strength=%d, bytes=%d\n",
1572 chip->ecc.size, chip->ecc.strength, chip->ecc.bytes);
1573
1574 iowrite32(chip->ecc.strength, denali->flash_reg + ECC_CORRECTION);
Masahiro Yamada0615e7a2017-06-07 20:52:13 +09001575 iowrite32(mtd->erasesize / mtd->writesize,
1576 denali->flash_reg + PAGES_PER_BLOCK);
1577 iowrite32(chip->options & NAND_BUSWIDTH_16 ? 1 : 0,
1578 denali->flash_reg + DEVICE_WIDTH);
1579 iowrite32(mtd->writesize, denali->flash_reg + DEVICE_MAIN_AREA_SIZE);
1580 iowrite32(mtd->oobsize, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Masahiro Yamada7de117f2017-06-07 20:52:12 +09001581
1582 iowrite32(chip->ecc.size, denali->flash_reg + CFG_DATA_BLOCK_SIZE);
1583 iowrite32(chip->ecc.size, denali->flash_reg + CFG_LAST_DATA_BLOCK_SIZE);
1584 /* chip->ecc.steps is set by nand_scan_tail(); not available here */
1585 iowrite32(mtd->writesize / chip->ecc.size,
1586 denali->flash_reg + CFG_NUM_DATA_BLOCKS);
1587
Boris Brezillon14fad622016-02-03 20:00:11 +01001588 mtd_set_ooblayout(mtd, &denali_ooblayout_ops);
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001589
Masahiro Yamadab21ff822017-06-13 22:45:35 +09001590 chip->ecc.options |= NAND_ECC_CUSTOM_PAGE_ACCESS;
Masahiro Yamada1394a722017-03-23 05:07:17 +09001591 chip->ecc.read_page = denali_read_page;
1592 chip->ecc.read_page_raw = denali_read_page_raw;
1593 chip->ecc.write_page = denali_write_page;
1594 chip->ecc.write_page_raw = denali_write_page_raw;
1595 chip->ecc.read_oob = denali_read_oob;
1596 chip->ecc.write_oob = denali_write_oob;
1597 chip->erase = denali_erase;
Jason Robertsce082592010-05-13 15:57:33 +01001598
Masahiro Yamadae93c1642017-03-23 05:07:21 +09001599 ret = denali_multidev_fixup(denali);
1600 if (ret)
1601 goto failed_req_irq;
Masahiro Yamada6da27b42017-03-23 05:07:20 +09001602
Masahiro Yamadaa227d4e2016-11-09 13:35:28 +09001603 ret = nand_scan_tail(mtd);
1604 if (ret)
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001605 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001606
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001607 ret = mtd_device_register(mtd, NULL, 0);
Jason Robertsce082592010-05-13 15:57:33 +01001608 if (ret) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001609 dev_err(denali->dev, "Failed to register MTD: %d\n", ret);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001610 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001611 }
1612 return 0;
1613
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001614failed_req_irq:
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001615 denali_irq_cleanup(denali->irq, denali);
1616
Jason Robertsce082592010-05-13 15:57:33 +01001617 return ret;
1618}
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001619EXPORT_SYMBOL(denali_init);
Jason Robertsce082592010-05-13 15:57:33 +01001620
1621/* driver exit point */
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001622void denali_remove(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001623{
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001624 struct mtd_info *mtd = nand_to_mtd(&denali->nand);
Boris BREZILLON320092a2015-12-11 15:02:34 +01001625 /*
1626 * Pre-compute DMA buffer size to avoid any problems in case
1627 * nand_release() ever changes in a way that mtd->writesize and
1628 * mtd->oobsize are not reliable after this call.
1629 */
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001630 int bufsize = mtd->writesize + mtd->oobsize;
Boris BREZILLON320092a2015-12-11 15:02:34 +01001631
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001632 nand_release(mtd);
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001633 denali_irq_cleanup(denali->irq, denali);
Boris BREZILLON320092a2015-12-11 15:02:34 +01001634 dma_unmap_single(denali->dev, denali->buf.dma_buf, bufsize,
Masahiro Yamada81254502014-09-16 20:04:25 +09001635 DMA_BIDIRECTIONAL);
Jason Robertsce082592010-05-13 15:57:33 +01001636}
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001637EXPORT_SYMBOL(denali_remove);