blob: b95e33a842015d8f826961a58134e4e369fa00ea [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 */
Chuanxiao5bac3ac2010-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);
Chuanxiao5bac3ac2010-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
340static void get_toshiba_nand_para(struct denali_nand_info *denali)
341{
Masahiro Yamada43914a22014-09-09 11:01:51 +0900342 /*
343 * Workaround to fix a controller bug which reports a wrong
344 * spare area size for some kind of Toshiba NAND device
345 */
Jason Robertsce082592010-05-13 15:57:33 +0100346 if ((ioread32(denali->flash_reg + DEVICE_MAIN_AREA_SIZE) == 4096) &&
Masahiro Yamadae713ddd2017-03-23 05:07:24 +0900347 (ioread32(denali->flash_reg + DEVICE_SPARE_AREA_SIZE) == 64))
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800348 iowrite32(216, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Jason Robertsce082592010-05-13 15:57:33 +0100349}
350
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800351static void get_hynix_nand_para(struct denali_nand_info *denali,
352 uint8_t device_id)
Jason Robertsce082592010-05-13 15:57:33 +0100353{
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800354 switch (device_id) {
Jason Robertsce082592010-05-13 15:57:33 +0100355 case 0xD5: /* Hynix H27UAG8T2A, H27UBG8U5A or H27UCG8VFA */
356 case 0xD7: /* Hynix H27UDG8VEM, H27UCG8UDM or H27UCG8V5A */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800357 iowrite32(128, denali->flash_reg + PAGES_PER_BLOCK);
358 iowrite32(4096, denali->flash_reg + DEVICE_MAIN_AREA_SIZE);
359 iowrite32(224, denali->flash_reg + DEVICE_SPARE_AREA_SIZE);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800360 iowrite32(0, denali->flash_reg + DEVICE_WIDTH);
Jason Robertsce082592010-05-13 15:57:33 +0100361 break;
362 default:
Jamie Iles84457942011-05-06 15:28:55 +0100363 dev_warn(denali->dev,
Masahiro Yamada789ccf12016-11-09 13:35:24 +0900364 "Unknown Hynix NAND (Device ID: 0x%x).\n"
Masahiro Yamada81254502014-09-16 20:04:25 +0900365 "Will use default parameter values instead.\n",
366 device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100367 }
368}
369
Masahiro Yamada43914a22014-09-09 11:01:51 +0900370/*
371 * determines how many NAND chips are connected to the controller. Note for
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800372 * Intel CE4100 devices we don't support more than one device.
Jason Robertsce082592010-05-13 15:57:33 +0100373 */
374static void find_valid_banks(struct denali_nand_info *denali)
375{
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100376 uint32_t id[denali->max_banks];
Jason Robertsce082592010-05-13 15:57:33 +0100377 int i;
378
379 denali->total_used_banks = 1;
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100380 for (i = 0; i < denali->max_banks; i++) {
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900381 index_addr(denali, MODE_11 | (i << 24) | 0, 0x90);
382 index_addr(denali, MODE_11 | (i << 24) | 1, 0);
Masahiro Yamada81254502014-09-16 20:04:25 +0900383 index_addr_read_data(denali, MODE_11 | (i << 24) | 2, &id[i]);
Jason Robertsce082592010-05-13 15:57:33 +0100384
Jamie Iles84457942011-05-06 15:28:55 +0100385 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100386 "Return 1st ID for bank[%d]: %x\n", i, id[i]);
387
388 if (i == 0) {
389 if (!(id[i] & 0x0ff))
390 break; /* WTF? */
391 } else {
392 if ((id[i] & 0x0ff) == (id[0] & 0x0ff))
393 denali->total_used_banks++;
394 else
395 break;
396 }
397 }
398
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800399 if (denali->platform == INTEL_CE4100) {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900400 /*
401 * Platform limitations of the CE4100 device limit
Jason Robertsce082592010-05-13 15:57:33 +0100402 * users to a single chip solution for NAND.
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800403 * Multichip support is not enabled.
404 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800405 if (denali->total_used_banks != 1) {
Jamie Iles84457942011-05-06 15:28:55 +0100406 dev_err(denali->dev,
Masahiro Yamada81254502014-09-16 20:04:25 +0900407 "Sorry, Intel CE4100 only supports a single NAND device.\n");
Jason Robertsce082592010-05-13 15:57:33 +0100408 BUG();
409 }
410 }
Jamie Iles84457942011-05-06 15:28:55 +0100411 dev_dbg(denali->dev,
Jason Robertsce082592010-05-13 15:57:33 +0100412 "denali->total_used_banks: %d\n", denali->total_used_banks);
413}
414
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100415/*
416 * Use the configuration feature register to determine the maximum number of
417 * banks that the hardware supports.
418 */
419static void detect_max_banks(struct denali_nand_info *denali)
420{
421 uint32_t features = ioread32(denali->flash_reg + FEATURES);
Graham Moore271707b2015-07-21 09:39:31 -0500422 /*
423 * Read the revision register, so we can calculate the max_banks
424 * properly: the encoding changed from rev 5.0 to 5.1
425 */
426 u32 revision = MAKE_COMPARABLE_REVISION(
427 ioread32(denali->flash_reg + REVISION));
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100428
Graham Moore271707b2015-07-21 09:39:31 -0500429 if (revision < REVISION_5_1)
430 denali->max_banks = 2 << (features & FEATURES__N_BANKS);
431 else
432 denali->max_banks = 1 << (features & FEATURES__N_BANKS);
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100433}
434
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800435static uint16_t denali_nand_timing_set(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +0100436{
437 uint16_t status = PASS;
grmoore@altera.comd68a5c32014-06-23 14:21:10 -0500438 uint32_t id_bytes[8], addr;
Masahiro Yamada93e3c8a2014-09-09 11:01:54 +0900439 uint8_t maf_id, device_id;
440 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100441
Masahiro Yamada43914a22014-09-09 11:01:51 +0900442 /*
443 * Use read id method to get device ID and other params.
444 * For some NAND chips, controller can't report the correct
445 * device ID by reading from DEVICE_ID register
446 */
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900447 addr = MODE_11 | BANK(denali->flash_bank);
448 index_addr(denali, addr | 0, 0x90);
449 index_addr(denali, addr | 1, 0);
grmoore@altera.comd68a5c32014-06-23 14:21:10 -0500450 for (i = 0; i < 8; i++)
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800451 index_addr_read_data(denali, addr | 2, &id_bytes[i]);
452 maf_id = id_bytes[0];
453 device_id = id_bytes[1];
Jason Robertsce082592010-05-13 15:57:33 +0100454
455 if (ioread32(denali->flash_reg + ONFI_DEVICE_NO_OF_LUNS) &
456 ONFI_DEVICE_NO_OF_LUNS__ONFI_DEVICE) { /* ONFI 1.0 NAND */
457 if (FAIL == get_onfi_nand_para(denali))
458 return FAIL;
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800459 } else if (maf_id == 0xEC) { /* Samsung NAND */
Chuanxiao Dong4c03bbd2010-08-06 15:45:19 +0800460 get_samsung_nand_para(denali, device_id);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800461 } else if (maf_id == 0x98) { /* Toshiba NAND */
Jason Robertsce082592010-05-13 15:57:33 +0100462 get_toshiba_nand_para(denali);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +0800463 } else if (maf_id == 0xAD) { /* Hynix NAND */
464 get_hynix_nand_para(denali, device_id);
Jason Robertsce082592010-05-13 15:57:33 +0100465 }
466
Jamie Iles84457942011-05-06 15:28:55 +0100467 dev_info(denali->dev,
Masahiro Yamada81254502014-09-16 20:04:25 +0900468 "Dump timing register values:\n"
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800469 "acc_clks: %d, re_2_we: %d, re_2_re: %d\n"
470 "we_2_re: %d, addr_2_data: %d, rdwr_en_lo_cnt: %d\n"
Jason Robertsce082592010-05-13 15:57:33 +0100471 "rdwr_en_hi_cnt: %d, cs_setup_cnt: %d\n",
472 ioread32(denali->flash_reg + ACC_CLKS),
473 ioread32(denali->flash_reg + RE_2_WE),
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +0800474 ioread32(denali->flash_reg + RE_2_RE),
Jason Robertsce082592010-05-13 15:57:33 +0100475 ioread32(denali->flash_reg + WE_2_RE),
476 ioread32(denali->flash_reg + ADDR_2_DATA),
477 ioread32(denali->flash_reg + RDWR_EN_LO_CNT),
478 ioread32(denali->flash_reg + RDWR_EN_HI_CNT),
479 ioread32(denali->flash_reg + CS_SETUP_CNT));
480
Jason Robertsce082592010-05-13 15:57:33 +0100481 find_valid_banks(denali);
482
Masahiro Yamada43914a22014-09-09 11:01:51 +0900483 /*
484 * If the user specified to override the default timings
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800485 * with a specific ONFI mode, we apply those changes here.
Jason Robertsce082592010-05-13 15:57:33 +0100486 */
487 if (onfi_timing_mode != NAND_DEFAULT_TIMINGS)
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800488 nand_onfi_timing_set(denali, onfi_timing_mode);
Jason Robertsce082592010-05-13 15:57:33 +0100489
490 return status;
491}
492
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800493static void denali_set_intr_modes(struct denali_nand_info *denali,
Jason Robertsce082592010-05-13 15:57:33 +0100494 uint16_t INT_ENABLE)
495{
Jason Robertsce082592010-05-13 15:57:33 +0100496 if (INT_ENABLE)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800497 iowrite32(1, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100498 else
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800499 iowrite32(0, denali->flash_reg + GLOBAL_INT_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100500}
501
Masahiro Yamada43914a22014-09-09 11:01:51 +0900502/*
503 * validation function to verify that the controlling software is making
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800504 * a valid request
Jason Robertsce082592010-05-13 15:57:33 +0100505 */
506static inline bool is_flash_bank_valid(int flash_bank)
507{
Masahiro Yamada7d14ecd2014-09-16 20:04:24 +0900508 return flash_bank >= 0 && flash_bank < 4;
Jason Robertsce082592010-05-13 15:57:33 +0100509}
510
511static void denali_irq_init(struct denali_nand_info *denali)
512{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900513 uint32_t int_mask;
Jamie Iles9589bf52011-05-06 15:28:56 +0100514 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100515
516 /* Disable global interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800517 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100518
519 int_mask = DENALI_IRQ_ALL;
520
521 /* Clear all status bits */
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100522 for (i = 0; i < denali->max_banks; ++i)
Jamie Iles9589bf52011-05-06 15:28:56 +0100523 iowrite32(0xFFFF, denali->flash_reg + INTR_STATUS(i));
Jason Robertsce082592010-05-13 15:57:33 +0100524
525 denali_irq_enable(denali, int_mask);
526}
527
528static void denali_irq_cleanup(int irqnum, struct denali_nand_info *denali)
529{
Chuanxiao Dongeda936e2010-07-27 14:17:37 +0800530 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100531}
532
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800533static void denali_irq_enable(struct denali_nand_info *denali,
534 uint32_t int_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100535{
Jamie Iles9589bf52011-05-06 15:28:56 +0100536 int i;
537
Jamie Ilesc89eeda2011-05-06 15:28:57 +0100538 for (i = 0; i < denali->max_banks; ++i)
Jamie Iles9589bf52011-05-06 15:28:56 +0100539 iowrite32(int_mask, denali->flash_reg + INTR_EN(i));
Jason Robertsce082592010-05-13 15:57:33 +0100540}
541
Masahiro Yamada43914a22014-09-09 11:01:51 +0900542/*
543 * This function only returns when an interrupt that this driver cares about
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800544 * occurs. This is to reduce the overhead of servicing interrupts
Jason Robertsce082592010-05-13 15:57:33 +0100545 */
546static inline uint32_t denali_irq_detected(struct denali_nand_info *denali)
547{
Chuanxiao Donga99d1792010-07-27 11:32:21 +0800548 return read_interrupt_status(denali) & DENALI_IRQ_ALL;
Jason Robertsce082592010-05-13 15:57:33 +0100549}
550
551/* Interrupts are cleared by writing a 1 to the appropriate status bit */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800552static inline void clear_interrupt(struct denali_nand_info *denali,
553 uint32_t irq_mask)
Jason Robertsce082592010-05-13 15:57:33 +0100554{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900555 uint32_t intr_status_reg;
Jason Robertsce082592010-05-13 15:57:33 +0100556
Jamie Iles9589bf52011-05-06 15:28:56 +0100557 intr_status_reg = INTR_STATUS(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100558
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800559 iowrite32(irq_mask, denali->flash_reg + intr_status_reg);
Jason Robertsce082592010-05-13 15:57:33 +0100560}
561
562static void clear_interrupts(struct denali_nand_info *denali)
563{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900564 uint32_t status;
565
Jason Robertsce082592010-05-13 15:57:33 +0100566 spin_lock_irq(&denali->irq_lock);
567
568 status = read_interrupt_status(denali);
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800569 clear_interrupt(denali, status);
Jason Robertsce082592010-05-13 15:57:33 +0100570
Jason Robertsce082592010-05-13 15:57:33 +0100571 denali->irq_status = 0x0;
572 spin_unlock_irq(&denali->irq_lock);
573}
574
575static uint32_t read_interrupt_status(struct denali_nand_info *denali)
576{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900577 uint32_t intr_status_reg;
Jason Robertsce082592010-05-13 15:57:33 +0100578
Jamie Iles9589bf52011-05-06 15:28:56 +0100579 intr_status_reg = INTR_STATUS(denali->flash_bank);
Jason Robertsce082592010-05-13 15:57:33 +0100580
581 return ioread32(denali->flash_reg + intr_status_reg);
582}
583
Masahiro Yamada43914a22014-09-09 11:01:51 +0900584/*
585 * This is the interrupt service routine. It handles all interrupts
586 * sent to this device. Note that on CE4100, this is a shared interrupt.
Jason Robertsce082592010-05-13 15:57:33 +0100587 */
588static irqreturn_t denali_isr(int irq, void *dev_id)
589{
590 struct denali_nand_info *denali = dev_id;
Masahiro Yamada5637b692014-09-09 11:01:52 +0900591 uint32_t irq_status;
Jason Robertsce082592010-05-13 15:57:33 +0100592 irqreturn_t result = IRQ_NONE;
593
594 spin_lock(&denali->irq_lock);
595
Masahiro Yamada43914a22014-09-09 11:01:51 +0900596 /* check to see if a valid NAND chip has been selected. */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800597 if (is_flash_bank_valid(denali->flash_bank)) {
Masahiro Yamada43914a22014-09-09 11:01:51 +0900598 /*
599 * check to see if controller generated the interrupt,
600 * since this is a shared interrupt
601 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800602 irq_status = denali_irq_detected(denali);
603 if (irq_status != 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100604 /* handle interrupt */
605 /* first acknowledge it */
606 clear_interrupt(denali, irq_status);
Masahiro Yamada43914a22014-09-09 11:01:51 +0900607 /*
608 * store the status in the device context for someone
609 * to read
610 */
Jason Robertsce082592010-05-13 15:57:33 +0100611 denali->irq_status |= irq_status;
612 /* notify anyone who cares that it happened */
613 complete(&denali->complete);
614 /* tell the OS that we've handled this */
615 result = IRQ_HANDLED;
616 }
617 }
618 spin_unlock(&denali->irq_lock);
619 return result;
620}
Jason Robertsce082592010-05-13 15:57:33 +0100621
622static uint32_t wait_for_irq(struct denali_nand_info *denali, uint32_t irq_mask)
623{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900624 unsigned long comp_res;
625 uint32_t intr_status;
Jason Robertsce082592010-05-13 15:57:33 +0100626 unsigned long timeout = msecs_to_jiffies(1000);
627
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800628 do {
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800629 comp_res =
630 wait_for_completion_timeout(&denali->complete, timeout);
Jason Robertsce082592010-05-13 15:57:33 +0100631 spin_lock_irq(&denali->irq_lock);
632 intr_status = denali->irq_status;
633
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800634 if (intr_status & irq_mask) {
Jason Robertsce082592010-05-13 15:57:33 +0100635 denali->irq_status &= ~irq_mask;
636 spin_unlock_irq(&denali->irq_lock);
Jason Robertsce082592010-05-13 15:57:33 +0100637 /* our interrupt was detected */
638 break;
Jason Robertsce082592010-05-13 15:57:33 +0100639 }
Masahiro Yamada81254502014-09-16 20:04:25 +0900640
641 /*
642 * these are not the interrupts you are looking for -
643 * need to wait again
644 */
645 spin_unlock_irq(&denali->irq_lock);
Jason Robertsce082592010-05-13 15:57:33 +0100646 } while (comp_res != 0);
647
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800648 if (comp_res == 0) {
Jason Robertsce082592010-05-13 15:57:33 +0100649 /* timeout */
Dinh Nguyen2a0a2882012-09-27 10:58:05 -0600650 pr_err("timeout occurred, status = 0x%x, mask = 0x%x\n",
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800651 intr_status, irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +0100652
653 intr_status = 0;
654 }
655 return intr_status;
656}
657
Masahiro Yamada43914a22014-09-09 11:01:51 +0900658/*
659 * This helper function setups the registers for ECC and whether or not
660 * the spare area will be transferred.
661 */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800662static void setup_ecc_for_xfer(struct denali_nand_info *denali, bool ecc_en,
Jason Robertsce082592010-05-13 15:57:33 +0100663 bool transfer_spare)
664{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900665 int ecc_en_flag, transfer_spare_flag;
Jason Robertsce082592010-05-13 15:57:33 +0100666
667 /* set ECC, transfer spare bits if needed */
668 ecc_en_flag = ecc_en ? ECC_ENABLE__FLAG : 0;
669 transfer_spare_flag = transfer_spare ? TRANSFER_SPARE_REG__FLAG : 0;
670
671 /* Enable spare area/ECC per user's request. */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800672 iowrite32(ecc_en_flag, denali->flash_reg + ECC_ENABLE);
Masahiro Yamada81254502014-09-16 20:04:25 +0900673 iowrite32(transfer_spare_flag, denali->flash_reg + TRANSFER_SPARE_REG);
Jason Robertsce082592010-05-13 15:57:33 +0100674}
675
Masahiro Yamada43914a22014-09-09 11:01:51 +0900676/*
677 * sends a pipeline command operation to the controller. See the Denali NAND
Chuanxiao Dongb292c342010-08-11 17:46:00 +0800678 * controller's user guide for more information (section 4.2.3.6).
Jason Robertsce082592010-05-13 15:57:33 +0100679 */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800680static int denali_send_pipeline_cmd(struct denali_nand_info *denali,
Masahiro Yamada81254502014-09-16 20:04:25 +0900681 bool ecc_en, bool transfer_spare,
682 int access_type, int op)
Jason Robertsce082592010-05-13 15:57:33 +0100683{
684 int status = PASS;
Masahiro Yamada8927ad32017-03-30 15:45:49 +0900685 uint32_t addr, cmd;
Jason Robertsce082592010-05-13 15:57:33 +0100686
687 setup_ecc_for_xfer(denali, ecc_en, transfer_spare);
688
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800689 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +0100690
691 addr = BANK(denali->flash_bank) | denali->page;
692
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800693 if (op == DENALI_WRITE && access_type != SPARE_ACCESS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800694 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800695 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800696 } else if (op == DENALI_WRITE && access_type == SPARE_ACCESS) {
Jason Robertsce082592010-05-13 15:57:33 +0100697 /* read spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800698 cmd = MODE_10 | addr;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900699 index_addr(denali, cmd, access_type);
Jason Robertsce082592010-05-13 15:57:33 +0100700
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800701 cmd = MODE_01 | addr;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800702 iowrite32(cmd, denali->flash_mem);
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800703 } else if (op == DENALI_READ) {
Jason Robertsce082592010-05-13 15:57:33 +0100704 /* setup page read request for access type */
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800705 cmd = MODE_10 | addr;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900706 index_addr(denali, cmd, access_type);
Jason Robertsce082592010-05-13 15:57:33 +0100707
Masahiro Yamada8927ad32017-03-30 15:45:49 +0900708 cmd = MODE_01 | addr;
709 iowrite32(cmd, denali->flash_mem);
Jason Robertsce082592010-05-13 15:57:33 +0100710 }
711 return status;
712}
713
714/* helper function that simply writes a buffer to the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800715static int write_data_to_flash_mem(struct denali_nand_info *denali,
Masahiro Yamada81254502014-09-16 20:04:25 +0900716 const uint8_t *buf, int len)
Jason Robertsce082592010-05-13 15:57:33 +0100717{
Masahiro Yamada93e3c8a2014-09-09 11:01:54 +0900718 uint32_t *buf32;
719 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100720
Masahiro Yamada43914a22014-09-09 11:01:51 +0900721 /*
722 * verify that the len is a multiple of 4.
723 * see comment in read_data_from_flash_mem()
724 */
Jason Robertsce082592010-05-13 15:57:33 +0100725 BUG_ON((len % 4) != 0);
726
727 /* write the data to the flash memory */
728 buf32 = (uint32_t *)buf;
729 for (i = 0; i < len / 4; i++)
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +0800730 iowrite32(*buf32++, denali->flash_mem + 0x10);
Masahiro Yamada81254502014-09-16 20:04:25 +0900731 return i * 4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100732}
733
734/* helper function that simply reads a buffer from the flash */
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800735static int read_data_from_flash_mem(struct denali_nand_info *denali,
Masahiro Yamada81254502014-09-16 20:04:25 +0900736 uint8_t *buf, int len)
Jason Robertsce082592010-05-13 15:57:33 +0100737{
Masahiro Yamada93e3c8a2014-09-09 11:01:54 +0900738 uint32_t *buf32;
739 int i;
Jason Robertsce082592010-05-13 15:57:33 +0100740
Masahiro Yamada43914a22014-09-09 11:01:51 +0900741 /*
742 * we assume that len will be a multiple of 4, if not it would be nice
743 * to know about it ASAP rather than have random failures...
744 * This assumption is based on the fact that this function is designed
745 * to be used to read flash pages, which are typically multiples of 4.
Jason Robertsce082592010-05-13 15:57:33 +0100746 */
Jason Robertsce082592010-05-13 15:57:33 +0100747 BUG_ON((len % 4) != 0);
748
749 /* transfer the data from the flash */
750 buf32 = (uint32_t *)buf;
751 for (i = 0; i < len / 4; i++)
Jason Robertsce082592010-05-13 15:57:33 +0100752 *buf32++ = ioread32(denali->flash_mem + 0x10);
Masahiro Yamada81254502014-09-16 20:04:25 +0900753 return i * 4; /* intent is to return the number of bytes read */
Jason Robertsce082592010-05-13 15:57:33 +0100754}
755
756/* writes OOB data to the device */
757static int write_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
758{
759 struct denali_nand_info *denali = mtd_to_denali(mtd);
Masahiro Yamada5637b692014-09-09 11:01:52 +0900760 uint32_t irq_status;
Masahiro Yamada1aded582017-03-23 05:07:06 +0900761 uint32_t irq_mask = INTR__PROGRAM_COMP | INTR__PROGRAM_FAIL;
Jason Robertsce082592010-05-13 15:57:33 +0100762 int status = 0;
763
764 denali->page = page;
765
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800766 if (denali_send_pipeline_cmd(denali, false, false, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800767 DENALI_WRITE) == PASS) {
Jason Robertsce082592010-05-13 15:57:33 +0100768 write_data_to_flash_mem(denali, buf, mtd->oobsize);
769
Jason Robertsce082592010-05-13 15:57:33 +0100770 /* wait for operation to complete */
771 irq_status = wait_for_irq(denali, irq_mask);
772
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800773 if (irq_status == 0) {
Jamie Iles84457942011-05-06 15:28:55 +0100774 dev_err(denali->dev, "OOB write failed\n");
Jason Robertsce082592010-05-13 15:57:33 +0100775 status = -EIO;
776 }
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800777 } else {
Jamie Iles84457942011-05-06 15:28:55 +0100778 dev_err(denali->dev, "unable to send pipeline command\n");
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800779 status = -EIO;
Jason Robertsce082592010-05-13 15:57:33 +0100780 }
781 return status;
782}
783
784/* reads OOB data from the device */
785static void read_oob_data(struct mtd_info *mtd, uint8_t *buf, int page)
786{
787 struct denali_nand_info *denali = mtd_to_denali(mtd);
Masahiro Yamada1aded582017-03-23 05:07:06 +0900788 uint32_t irq_mask = INTR__LOAD_COMP;
Masahiro Yamada5637b692014-09-09 11:01:52 +0900789 uint32_t irq_status, addr, cmd;
Jason Robertsce082592010-05-13 15:57:33 +0100790
791 denali->page = page;
792
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800793 if (denali_send_pipeline_cmd(denali, false, true, SPARE_ACCESS,
Chuanxiao Dong345b1d32010-07-27 10:41:53 +0800794 DENALI_READ) == PASS) {
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800795 read_data_from_flash_mem(denali, buf, mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +0100796
Masahiro Yamada43914a22014-09-09 11:01:51 +0900797 /*
798 * wait for command to be accepted
799 * can always use status0 bit as the
800 * mask is identical for each bank.
801 */
Jason Robertsce082592010-05-13 15:57:33 +0100802 irq_status = wait_for_irq(denali, irq_mask);
803
804 if (irq_status == 0)
Jamie Iles84457942011-05-06 15:28:55 +0100805 dev_err(denali->dev, "page on OOB timeout %d\n",
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +0800806 denali->page);
Jason Robertsce082592010-05-13 15:57:33 +0100807
Masahiro Yamada43914a22014-09-09 11:01:51 +0900808 /*
809 * We set the device back to MAIN_ACCESS here as I observed
Jason Robertsce082592010-05-13 15:57:33 +0100810 * instability with the controller if you do a block erase
811 * and the last transaction was a SPARE_ACCESS. Block erase
812 * is reliable (according to the MTD test infrastructure)
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800813 * if you are in MAIN_ACCESS.
Jason Robertsce082592010-05-13 15:57:33 +0100814 */
815 addr = BANK(denali->flash_bank) | denali->page;
Chuanxiao5bac3ac2010-08-05 23:06:04 +0800816 cmd = MODE_10 | addr;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900817 index_addr(denali, cmd, MAIN_ACCESS);
Jason Robertsce082592010-05-13 15:57:33 +0100818 }
819}
820
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900821static int denali_check_erased_page(struct mtd_info *mtd,
822 struct nand_chip *chip, uint8_t *buf,
823 unsigned long uncor_ecc_flags,
824 unsigned int max_bitflips)
Jason Robertsce082592010-05-13 15:57:33 +0100825{
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900826 uint8_t *ecc_code = chip->buffers->ecccode;
827 int ecc_steps = chip->ecc.steps;
828 int ecc_size = chip->ecc.size;
829 int ecc_bytes = chip->ecc.bytes;
830 int i, ret, stat;
Masahiro Yamada81254502014-09-16 20:04:25 +0900831
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900832 ret = mtd_ooblayout_get_eccbytes(mtd, ecc_code, chip->oob_poi, 0,
833 chip->ecc.total);
834 if (ret)
835 return ret;
836
837 for (i = 0; i < ecc_steps; i++) {
838 if (!(uncor_ecc_flags & BIT(i)))
839 continue;
840
841 stat = nand_check_erased_ecc_chunk(buf, ecc_size,
842 ecc_code, ecc_bytes,
843 NULL, 0,
844 chip->ecc.strength);
845 if (stat < 0) {
846 mtd->ecc_stats.failed++;
847 } else {
848 mtd->ecc_stats.corrected += stat;
849 max_bitflips = max_t(unsigned int, max_bitflips, stat);
850 }
851
852 buf += ecc_size;
853 ecc_code += ecc_bytes;
854 }
855
856 return max_bitflips;
Jason Robertsce082592010-05-13 15:57:33 +0100857}
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900858
Masahiro Yamada24715c72017-03-30 15:45:52 +0900859static int denali_hw_ecc_fixup(struct mtd_info *mtd,
860 struct denali_nand_info *denali,
861 unsigned long *uncor_ecc_flags)
862{
863 struct nand_chip *chip = mtd_to_nand(mtd);
864 int bank = denali->flash_bank;
865 uint32_t ecc_cor;
866 unsigned int max_bitflips;
867
868 ecc_cor = ioread32(denali->flash_reg + ECC_COR_INFO(bank));
869 ecc_cor >>= ECC_COR_INFO__SHIFT(bank);
870
871 if (ecc_cor & ECC_COR_INFO__UNCOR_ERR) {
872 /*
873 * This flag is set when uncorrectable error occurs at least in
874 * one ECC sector. We can not know "how many sectors", or
875 * "which sector(s)". We need erase-page check for all sectors.
876 */
877 *uncor_ecc_flags = GENMASK(chip->ecc.steps - 1, 0);
878 return 0;
879 }
880
881 max_bitflips = ecc_cor & ECC_COR_INFO__MAX_ERRORS;
882
883 /*
884 * The register holds the maximum of per-sector corrected bitflips.
885 * This is suitable for the return value of the ->read_page() callback.
886 * Unfortunately, we can not know the total number of corrected bits in
887 * the page. Increase the stats by max_bitflips. (compromised solution)
888 */
889 mtd->ecc_stats.corrected += max_bitflips;
890
891 return max_bitflips;
892}
893
Jason Robertsce082592010-05-13 15:57:33 +0100894#define ECC_SECTOR_SIZE 512
895
896#define ECC_SECTOR(x) (((x) & ECC_ERROR_ADDRESS__SECTOR_NR) >> 12)
897#define ECC_BYTE(x) (((x) & ECC_ERROR_ADDRESS__OFFSET))
898#define ECC_CORRECTION_VALUE(x) ((x) & ERR_CORRECTION_INFO__BYTEMASK)
Masahiro Yamada20d48592017-03-30 15:45:50 +0900899#define ECC_ERROR_UNCORRECTABLE(x) ((x) & ERR_CORRECTION_INFO__ERROR_TYPE)
Chuanxiao Dong8ae61eb2010-08-10 00:07:01 +0800900#define ECC_ERR_DEVICE(x) (((x) & ERR_CORRECTION_INFO__DEVICE_NR) >> 8)
Jason Robertsce082592010-05-13 15:57:33 +0100901#define ECC_LAST_ERR(x) ((x) & ERR_CORRECTION_INFO__LAST_ERR_INFO)
902
Masahiro Yamada24715c72017-03-30 15:45:52 +0900903static int denali_sw_ecc_fixup(struct mtd_info *mtd,
904 struct denali_nand_info *denali,
905 unsigned long *uncor_ecc_flags, uint8_t *buf)
Jason Robertsce082592010-05-13 15:57:33 +0100906{
Mike Dunn3f91e942012-04-25 12:06:09 -0700907 unsigned int bitflips = 0;
Masahiro Yamada20d48592017-03-30 15:45:50 +0900908 unsigned int max_bitflips = 0;
909 uint32_t err_addr, err_cor_info;
910 unsigned int err_byte, err_sector, err_device;
911 uint8_t err_cor_value;
912 unsigned int prev_sector = 0;
Jason Robertsce082592010-05-13 15:57:33 +0100913
Masahiro Yamada20d48592017-03-30 15:45:50 +0900914 /* read the ECC errors. we'll ignore them for now */
915 denali_set_intr_modes(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +0100916
Masahiro Yamada20d48592017-03-30 15:45:50 +0900917 do {
918 err_addr = ioread32(denali->flash_reg + ECC_ERROR_ADDRESS);
919 err_sector = ECC_SECTOR(err_addr);
920 err_byte = ECC_BYTE(err_addr);
Jason Robertsce082592010-05-13 15:57:33 +0100921
Masahiro Yamada20d48592017-03-30 15:45:50 +0900922 err_cor_info = ioread32(denali->flash_reg + ERR_CORRECTION_INFO);
923 err_cor_value = ECC_CORRECTION_VALUE(err_cor_info);
924 err_device = ECC_ERR_DEVICE(err_cor_info);
Jason Robertsce082592010-05-13 15:57:33 +0100925
Masahiro Yamada20d48592017-03-30 15:45:50 +0900926 /* reset the bitflip counter when crossing ECC sector */
927 if (err_sector != prev_sector)
928 bitflips = 0;
Masahiro Yamada81254502014-09-16 20:04:25 +0900929
Masahiro Yamada20d48592017-03-30 15:45:50 +0900930 if (ECC_ERROR_UNCORRECTABLE(err_cor_info)) {
931 /*
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900932 * Check later if this is a real ECC error, or
933 * an erased sector.
Masahiro Yamada20d48592017-03-30 15:45:50 +0900934 */
Masahiro Yamadad29109b2017-03-30 15:45:51 +0900935 *uncor_ecc_flags |= BIT(err_sector);
Masahiro Yamada20d48592017-03-30 15:45:50 +0900936 } else if (err_byte < ECC_SECTOR_SIZE) {
937 /*
938 * If err_byte is larger than ECC_SECTOR_SIZE, means error
939 * happened in OOB, so we ignore it. It's no need for
940 * us to correct it err_device is represented the NAND
941 * error bits are happened in if there are more than
942 * one NAND connected.
943 */
944 int offset;
945 unsigned int flips_in_byte;
946
947 offset = (err_sector * ECC_SECTOR_SIZE + err_byte) *
948 denali->devnum + err_device;
949
950 /* correct the ECC error */
951 flips_in_byte = hweight8(buf[offset] ^ err_cor_value);
952 buf[offset] ^= err_cor_value;
953 mtd->ecc_stats.corrected += flips_in_byte;
954 bitflips += flips_in_byte;
955
956 max_bitflips = max(max_bitflips, bitflips);
957 }
958
959 prev_sector = err_sector;
960 } while (!ECC_LAST_ERR(err_cor_info));
961
962 /*
963 * Once handle all ecc errors, controller will trigger a
964 * ECC_TRANSACTION_DONE interrupt, so here just wait for
965 * a while for this interrupt
966 */
967 while (!(read_interrupt_status(denali) & INTR__ECC_TRANSACTION_DONE))
968 cpu_relax();
969 clear_interrupts(denali);
970 denali_set_intr_modes(denali, true);
971
972 return max_bitflips;
Jason Robertsce082592010-05-13 15:57:33 +0100973}
974
975/* programs the controller to either enable/disable DMA transfers */
David Woodhouseaadff492010-05-13 16:12:43 +0100976static void denali_enable_dma(struct denali_nand_info *denali, bool en)
Jason Robertsce082592010-05-13 15:57:33 +0100977{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900978 iowrite32(en ? DMA_ENABLE__FLAG : 0, denali->flash_reg + DMA_ENABLE);
Jason Robertsce082592010-05-13 15:57:33 +0100979 ioread32(denali->flash_reg + DMA_ENABLE);
980}
981
982/* setups the HW to perform the data DMA */
David Woodhouseaadff492010-05-13 16:12:43 +0100983static void denali_setup_dma(struct denali_nand_info *denali, int op)
Jason Robertsce082592010-05-13 15:57:33 +0100984{
Masahiro Yamada5637b692014-09-09 11:01:52 +0900985 uint32_t mode;
Jason Robertsce082592010-05-13 15:57:33 +0100986 const int page_count = 1;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900987 uint32_t addr = denali->buf.dma_buf;
Jason Robertsce082592010-05-13 15:57:33 +0100988
989 mode = MODE_10 | BANK(denali->flash_bank);
990
991 /* DMA is a four step process */
992
993 /* 1. setup transfer type and # of pages */
994 index_addr(denali, mode | denali->page, 0x2000 | op | page_count);
995
996 /* 2. set memory high address bits 23:8 */
Masahiro Yamada3157d1e2014-09-09 11:01:53 +0900997 index_addr(denali, mode | ((addr >> 16) << 8), 0x2200);
Jason Robertsce082592010-05-13 15:57:33 +0100998
999 /* 3. set memory low address bits 23:8 */
Graham Moore7c272ac2015-01-09 09:32:35 -06001000 index_addr(denali, mode | ((addr & 0xffff) << 8), 0x2300);
Jason Robertsce082592010-05-13 15:57:33 +01001001
Masahiro Yamada43914a22014-09-09 11:01:51 +09001002 /* 4. interrupt when complete, burst len = 64 bytes */
Jason Robertsce082592010-05-13 15:57:33 +01001003 index_addr(denali, mode | 0x14000, 0x2400);
1004}
1005
Masahiro Yamada43914a22014-09-09 11:01:51 +09001006/*
1007 * writes a page. user specifies type, and this function handles the
1008 * configuration details.
1009 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001010static int write_page(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001011 const uint8_t *buf, bool raw_xfer)
1012{
1013 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001014 dma_addr_t addr = denali->buf.dma_buf;
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001015 size_t size = mtd->writesize + mtd->oobsize;
Masahiro Yamada5637b692014-09-09 11:01:52 +09001016 uint32_t irq_status;
Masahiro Yamada1aded582017-03-23 05:07:06 +09001017 uint32_t irq_mask = INTR__DMA_CMD_COMP | INTR__PROGRAM_FAIL;
Jason Robertsce082592010-05-13 15:57:33 +01001018
Masahiro Yamada43914a22014-09-09 11:01:51 +09001019 /*
1020 * if it is a raw xfer, we want to disable ecc and send the spare area.
Jason Robertsce082592010-05-13 15:57:33 +01001021 * !raw_xfer - enable ecc
1022 * raw_xfer - transfer spare
1023 */
1024 setup_ecc_for_xfer(denali, !raw_xfer, raw_xfer);
1025
1026 /* copy buffer into DMA buffer */
1027 memcpy(denali->buf.buf, buf, mtd->writesize);
1028
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001029 if (raw_xfer) {
Jason Robertsce082592010-05-13 15:57:33 +01001030 /* transfer the data to the spare area */
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001031 memcpy(denali->buf.buf + mtd->writesize,
1032 chip->oob_poi,
1033 mtd->oobsize);
Jason Robertsce082592010-05-13 15:57:33 +01001034 }
1035
Jamie Iles84457942011-05-06 15:28:55 +01001036 dma_sync_single_for_device(denali->dev, addr, size, DMA_TO_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001037
1038 clear_interrupts(denali);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001039 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001040
David Woodhouseaadff492010-05-13 16:12:43 +01001041 denali_setup_dma(denali, DENALI_WRITE);
Jason Robertsce082592010-05-13 15:57:33 +01001042
1043 /* wait for operation to complete */
1044 irq_status = wait_for_irq(denali, irq_mask);
1045
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001046 if (irq_status == 0) {
Masahiro Yamada81254502014-09-16 20:04:25 +09001047 dev_err(denali->dev, "timeout on write_page (type = %d)\n",
1048 raw_xfer);
Brian Norrisc115add2014-07-21 19:07:31 -07001049 denali->status = NAND_STATUS_FAIL;
Jason Robertsce082592010-05-13 15:57:33 +01001050 }
1051
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001052 denali_enable_dma(denali, false);
Jamie Iles84457942011-05-06 15:28:55 +01001053 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_TO_DEVICE);
Josh Wufdbad98d2012-06-25 18:07:45 +08001054
1055 return 0;
Jason Robertsce082592010-05-13 15:57:33 +01001056}
1057
1058/* NAND core entry points */
1059
Masahiro Yamada43914a22014-09-09 11:01:51 +09001060/*
1061 * this is the callback that the NAND core calls to write a page. Since
Chuanxiao Dongb292c342010-08-11 17:46:00 +08001062 * writing a page with ECC or without is similar, all the work is done
1063 * by write_page above.
Masahiro Yamada43914a22014-09-09 11:01:51 +09001064 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001065static int denali_write_page(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001066 const uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001067{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001068 /*
1069 * for regular page writes, we let HW handle all the ECC
1070 * data written to the device.
1071 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001072 return write_page(mtd, chip, buf, false);
Jason Robertsce082592010-05-13 15:57:33 +01001073}
1074
Masahiro Yamada43914a22014-09-09 11:01:51 +09001075/*
1076 * This is the callback that the NAND core calls to write a page without ECC.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001077 * raw access is similar to ECC page writes, so all the work is done in the
Chuanxiao Dongb292c342010-08-11 17:46:00 +08001078 * write_page() function above.
Jason Robertsce082592010-05-13 15:57:33 +01001079 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001080static int denali_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Boris BREZILLON45aaeff2015-10-13 11:22:18 +02001081 const uint8_t *buf, int oob_required,
1082 int page)
Jason Robertsce082592010-05-13 15:57:33 +01001083{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001084 /*
1085 * for raw page writes, we want to disable ECC and simply write
1086 * whatever data is in the buffer.
1087 */
Josh Wufdbad98d2012-06-25 18:07:45 +08001088 return write_page(mtd, chip, buf, true);
Jason Robertsce082592010-05-13 15:57:33 +01001089}
1090
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001091static int denali_write_oob(struct mtd_info *mtd, struct nand_chip *chip,
Jason Robertsce082592010-05-13 15:57:33 +01001092 int page)
1093{
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001094 return write_oob_data(mtd, chip->oob_poi, page);
Jason Robertsce082592010-05-13 15:57:33 +01001095}
1096
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001097static int denali_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001098 int page)
Jason Robertsce082592010-05-13 15:57:33 +01001099{
1100 read_oob_data(mtd, chip->oob_poi, page);
1101
Shmulik Ladkani5c2ffb12012-05-09 13:06:35 +03001102 return 0;
Jason Robertsce082592010-05-13 15:57:33 +01001103}
1104
1105static int denali_read_page(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001106 uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001107{
1108 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001109 dma_addr_t addr = denali->buf.dma_buf;
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001110 size_t size = mtd->writesize + mtd->oobsize;
Masahiro Yamada5637b692014-09-09 11:01:52 +09001111 uint32_t irq_status;
Masahiro Yamada24715c72017-03-30 15:45:52 +09001112 uint32_t irq_mask = denali->caps & DENALI_CAP_HW_ECC_FIXUP ?
1113 INTR__DMA_CMD_COMP | INTR__ECC_UNCOR_ERR :
1114 INTR__ECC_TRANSACTION_DONE | INTR__ECC_ERR;
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001115 unsigned long uncor_ecc_flags = 0;
1116 int stat = 0;
Jason Robertsce082592010-05-13 15:57:33 +01001117
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001118 if (page != denali->page) {
Masahiro Yamada81254502014-09-16 20:04:25 +09001119 dev_err(denali->dev,
1120 "IN %s: page %d is not equal to denali->page %d",
1121 __func__, page, denali->page);
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001122 BUG();
1123 }
1124
Jason Robertsce082592010-05-13 15:57:33 +01001125 setup_ecc_for_xfer(denali, true, false);
1126
David Woodhouseaadff492010-05-13 16:12:43 +01001127 denali_enable_dma(denali, true);
Jamie Iles84457942011-05-06 15:28:55 +01001128 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001129
1130 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001131 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001132
1133 /* wait for operation to complete */
1134 irq_status = wait_for_irq(denali, irq_mask);
1135
Jamie Iles84457942011-05-06 15:28:55 +01001136 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001137
1138 memcpy(buf, denali->buf.buf, mtd->writesize);
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001139
Masahiro Yamada24715c72017-03-30 15:45:52 +09001140 if (denali->caps & DENALI_CAP_HW_ECC_FIXUP)
1141 stat = denali_hw_ecc_fixup(mtd, denali, &uncor_ecc_flags);
1142 else if (irq_status & INTR__ECC_ERR)
1143 stat = denali_sw_ecc_fixup(mtd, denali, &uncor_ecc_flags, buf);
David Woodhouseaadff492010-05-13 16:12:43 +01001144 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001145
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001146 if (stat < 0)
1147 return stat;
1148
1149 if (uncor_ecc_flags) {
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001150 read_oob_data(mtd, chip->oob_poi, denali->page);
Jason Robertsce082592010-05-13 15:57:33 +01001151
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001152 stat = denali_check_erased_page(mtd, chip, buf,
1153 uncor_ecc_flags, stat);
Jason Robertsce082592010-05-13 15:57:33 +01001154 }
Masahiro Yamadad29109b2017-03-30 15:45:51 +09001155
1156 return stat;
Jason Robertsce082592010-05-13 15:57:33 +01001157}
1158
1159static int denali_read_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -07001160 uint8_t *buf, int oob_required, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001161{
1162 struct denali_nand_info *denali = mtd_to_denali(mtd);
Jason Robertsce082592010-05-13 15:57:33 +01001163 dma_addr_t addr = denali->buf.dma_buf;
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001164 size_t size = mtd->writesize + mtd->oobsize;
Masahiro Yamada1aded582017-03-23 05:07:06 +09001165 uint32_t irq_mask = INTR__DMA_CMD_COMP;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001166
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001167 if (page != denali->page) {
Masahiro Yamada81254502014-09-16 20:04:25 +09001168 dev_err(denali->dev,
1169 "IN %s: page %d is not equal to denali->page %d",
1170 __func__, page, denali->page);
Chuanxiao Dong7d8a26f2010-08-11 18:19:23 +08001171 BUG();
1172 }
1173
Jason Robertsce082592010-05-13 15:57:33 +01001174 setup_ecc_for_xfer(denali, false, true);
David Woodhouseaadff492010-05-13 16:12:43 +01001175 denali_enable_dma(denali, true);
Jason Robertsce082592010-05-13 15:57:33 +01001176
Jamie Iles84457942011-05-06 15:28:55 +01001177 dma_sync_single_for_device(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001178
1179 clear_interrupts(denali);
David Woodhouseaadff492010-05-13 16:12:43 +01001180 denali_setup_dma(denali, DENALI_READ);
Jason Robertsce082592010-05-13 15:57:33 +01001181
1182 /* wait for operation to complete */
Brian Norrisba5f2bc2014-09-19 09:37:19 -07001183 wait_for_irq(denali, irq_mask);
Jason Robertsce082592010-05-13 15:57:33 +01001184
Jamie Iles84457942011-05-06 15:28:55 +01001185 dma_sync_single_for_cpu(denali->dev, addr, size, DMA_FROM_DEVICE);
Jason Robertsce082592010-05-13 15:57:33 +01001186
David Woodhouseaadff492010-05-13 16:12:43 +01001187 denali_enable_dma(denali, false);
Jason Robertsce082592010-05-13 15:57:33 +01001188
1189 memcpy(buf, denali->buf.buf, mtd->writesize);
1190 memcpy(chip->oob_poi, denali->buf.buf + mtd->writesize, mtd->oobsize);
1191
1192 return 0;
1193}
1194
1195static uint8_t denali_read_byte(struct mtd_info *mtd)
1196{
1197 struct denali_nand_info *denali = mtd_to_denali(mtd);
1198 uint8_t result = 0xff;
1199
1200 if (denali->buf.head < denali->buf.tail)
Jason Robertsce082592010-05-13 15:57:33 +01001201 result = denali->buf.buf[denali->buf.head++];
Jason Robertsce082592010-05-13 15:57:33 +01001202
Jason Robertsce082592010-05-13 15:57:33 +01001203 return result;
1204}
1205
1206static void denali_select_chip(struct mtd_info *mtd, int chip)
1207{
1208 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dong7cfffac2010-08-10 00:16:51 +08001209
Jason Robertsce082592010-05-13 15:57:33 +01001210 spin_lock_irq(&denali->irq_lock);
1211 denali->flash_bank = chip;
1212 spin_unlock_irq(&denali->irq_lock);
1213}
1214
1215static int denali_waitfunc(struct mtd_info *mtd, struct nand_chip *chip)
1216{
1217 struct denali_nand_info *denali = mtd_to_denali(mtd);
1218 int status = denali->status;
Masahiro Yamada81254502014-09-16 20:04:25 +09001219
Jason Robertsce082592010-05-13 15:57:33 +01001220 denali->status = 0;
1221
Jason Robertsce082592010-05-13 15:57:33 +01001222 return status;
1223}
1224
Brian Norris49c50b92014-05-06 16:02:19 -07001225static int denali_erase(struct mtd_info *mtd, int page)
Jason Robertsce082592010-05-13 15:57:33 +01001226{
1227 struct denali_nand_info *denali = mtd_to_denali(mtd);
1228
Masahiro Yamada5637b692014-09-09 11:01:52 +09001229 uint32_t cmd, irq_status;
Jason Robertsce082592010-05-13 15:57:33 +01001230
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001231 clear_interrupts(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001232
1233 /* setup page read request for access type */
1234 cmd = MODE_10 | BANK(denali->flash_bank) | page;
Masahiro Yamada3157d1e2014-09-09 11:01:53 +09001235 index_addr(denali, cmd, 0x1);
Jason Robertsce082592010-05-13 15:57:33 +01001236
1237 /* wait for erase to complete or failure to occur */
Masahiro Yamada1aded582017-03-23 05:07:06 +09001238 irq_status = wait_for_irq(denali, INTR__ERASE_COMP | INTR__ERASE_FAIL);
Jason Robertsce082592010-05-13 15:57:33 +01001239
Masahiro Yamada1aded582017-03-23 05:07:06 +09001240 return irq_status & INTR__ERASE_FAIL ? NAND_STATUS_FAIL : PASS;
Jason Robertsce082592010-05-13 15:57:33 +01001241}
1242
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001243static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col,
Jason Robertsce082592010-05-13 15:57:33 +01001244 int page)
1245{
1246 struct denali_nand_info *denali = mtd_to_denali(mtd);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001247 uint32_t addr, id;
1248 int i;
Jason Robertsce082592010-05-13 15:57:33 +01001249
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001250 switch (cmd) {
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001251 case NAND_CMD_PAGEPROG:
1252 break;
1253 case NAND_CMD_STATUS:
1254 read_status(denali);
1255 break;
1256 case NAND_CMD_READID:
Florian Fainelli42af8b52010-08-30 18:32:20 +02001257 case NAND_CMD_PARAM:
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001258 reset_buf(denali);
Masahiro Yamada43914a22014-09-09 11:01:51 +09001259 /*
1260 * sometimes ManufactureId read from register is not right
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001261 * e.g. some of Micron MT29F32G08QAA MLC NAND chips
1262 * So here we send READID cmd to NAND insteand
Masahiro Yamada43914a22014-09-09 11:01:51 +09001263 */
Masahiro Yamada3157d1e2014-09-09 11:01:53 +09001264 addr = MODE_11 | BANK(denali->flash_bank);
1265 index_addr(denali, addr | 0, 0x90);
Enrico Jorns9c07d092015-09-18 10:02:41 +02001266 index_addr(denali, addr | 1, col);
grmoore@altera.comd68a5c32014-06-23 14:21:10 -05001267 for (i = 0; i < 8; i++) {
Masahiro Yamada81254502014-09-16 20:04:25 +09001268 index_addr_read_data(denali, addr | 2, &id);
Chuanxiao Dongef41e1b2010-08-06 00:48:49 +08001269 write_byte_to_buf(denali, id);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001270 }
1271 break;
1272 case NAND_CMD_READ0:
1273 case NAND_CMD_SEQIN:
1274 denali->page = page;
1275 break;
1276 case NAND_CMD_RESET:
1277 reset_bank(denali);
1278 break;
1279 case NAND_CMD_READOOB:
1280 /* TODO: Read OOB data */
1281 break;
1282 default:
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001283 pr_err(": unsupported command received 0x%x\n", cmd);
Chuanxiao Donga99d1792010-07-27 11:32:21 +08001284 break;
Jason Robertsce082592010-05-13 15:57:33 +01001285 }
1286}
Jason Robertsce082592010-05-13 15:57:33 +01001287/* end NAND core entry points */
1288
1289/* Initialization code to bring the device up to a known good state */
1290static void denali_hw_init(struct denali_nand_info *denali)
1291{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001292 /*
1293 * tell driver how many bit controller will skip before
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001294 * writing ECC code in OOB, this register may be already
1295 * set by firmware. So we read this value out.
1296 * if this value is 0, just let it be.
Masahiro Yamada43914a22014-09-09 11:01:51 +09001297 */
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001298 denali->bbtskipbytes = ioread32(denali->flash_reg +
1299 SPARE_AREA_SKIP_BYTES);
Jamie Ilesbc27ede2011-06-06 17:11:34 +01001300 detect_max_banks(denali);
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001301 denali_nand_reset(denali);
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001302 iowrite32(0x0F, denali->flash_reg + RB_PIN_ENABLED);
1303 iowrite32(CHIP_EN_DONT_CARE__FLAG,
Chuanxiao Dongbdca6da2010-07-27 11:28:09 +08001304 denali->flash_reg + CHIP_ENABLE_DONT_CARE);
Jason Robertsce082592010-05-13 15:57:33 +01001305
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001306 iowrite32(0xffff, denali->flash_reg + SPARE_AREA_MARKER);
Jason Robertsce082592010-05-13 15:57:33 +01001307
1308 /* Should set value for these registers when init */
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001309 iowrite32(0, denali->flash_reg + TWO_ROW_ADDR_CYCLES);
1310 iowrite32(1, denali->flash_reg + ECC_ENABLE);
Chuanxiao Dong5eab6aaa2010-08-12 10:07:18 +08001311 denali_nand_timing_set(denali);
1312 denali_irq_init(denali);
Jason Robertsce082592010-05-13 15:57:33 +01001313}
1314
Masahiro Yamada43914a22014-09-09 11:01:51 +09001315/*
1316 * Althogh controller spec said SLC ECC is forceb to be 4bit,
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001317 * but denali controller in MRST only support 15bit and 8bit ECC
1318 * correction
Masahiro Yamada43914a22014-09-09 11:01:51 +09001319 */
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001320#define ECC_8BITS 14
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001321#define ECC_15BITS 26
Boris Brezillon14fad622016-02-03 20:00:11 +01001322
1323static int denali_ooblayout_ecc(struct mtd_info *mtd, int section,
1324 struct mtd_oob_region *oobregion)
1325{
1326 struct denali_nand_info *denali = mtd_to_denali(mtd);
1327 struct nand_chip *chip = mtd_to_nand(mtd);
1328
1329 if (section)
1330 return -ERANGE;
1331
1332 oobregion->offset = denali->bbtskipbytes;
1333 oobregion->length = chip->ecc.total;
1334
1335 return 0;
1336}
1337
1338static int denali_ooblayout_free(struct mtd_info *mtd, int section,
1339 struct mtd_oob_region *oobregion)
1340{
1341 struct denali_nand_info *denali = mtd_to_denali(mtd);
1342 struct nand_chip *chip = mtd_to_nand(mtd);
1343
1344 if (section)
1345 return -ERANGE;
1346
1347 oobregion->offset = chip->ecc.total + denali->bbtskipbytes;
1348 oobregion->length = mtd->oobsize - oobregion->offset;
1349
1350 return 0;
1351}
1352
1353static const struct mtd_ooblayout_ops denali_ooblayout_ops = {
1354 .ecc = denali_ooblayout_ecc,
1355 .free = denali_ooblayout_free,
Jason Robertsce082592010-05-13 15:57:33 +01001356};
1357
1358static uint8_t bbt_pattern[] = {'B', 'b', 't', '0' };
1359static uint8_t mirror_pattern[] = {'1', 't', 'b', 'B' };
1360
1361static struct nand_bbt_descr bbt_main_descr = {
1362 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1363 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1364 .offs = 8,
1365 .len = 4,
1366 .veroffs = 12,
1367 .maxblocks = 4,
1368 .pattern = bbt_pattern,
1369};
1370
1371static struct nand_bbt_descr bbt_mirror_descr = {
1372 .options = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE | NAND_BBT_WRITE
1373 | NAND_BBT_2BIT | NAND_BBT_VERSION | NAND_BBT_PERCHIP,
1374 .offs = 8,
1375 .len = 4,
1376 .veroffs = 12,
1377 .maxblocks = 4,
1378 .pattern = mirror_pattern,
1379};
1380
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02001381/* initialize driver data structures */
Brian Norris8c519432013-08-10 22:57:30 -07001382static void denali_drv_init(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001383{
Masahiro Yamada43914a22014-09-09 11:01:51 +09001384 /*
1385 * the completion object will be used to notify
1386 * the callee that the interrupt is done
1387 */
Jason Robertsce082592010-05-13 15:57:33 +01001388 init_completion(&denali->complete);
1389
Masahiro Yamada43914a22014-09-09 11:01:51 +09001390 /*
1391 * the spinlock will be used to synchronize the ISR with any
1392 * element that might be access shared data (interrupt status)
1393 */
Jason Robertsce082592010-05-13 15:57:33 +01001394 spin_lock_init(&denali->irq_lock);
1395
1396 /* indicate that MTD has not selected a valid bank yet */
1397 denali->flash_bank = CHIP_SELECT_INVALID;
1398
1399 /* initialize our irq_status variable to indicate no interrupts */
1400 denali->irq_status = 0;
1401}
1402
Masahiro Yamadae93c1642017-03-23 05:07:21 +09001403static int denali_multidev_fixup(struct denali_nand_info *denali)
Masahiro Yamada6da27b42017-03-23 05:07:20 +09001404{
1405 struct nand_chip *chip = &denali->nand;
1406 struct mtd_info *mtd = nand_to_mtd(chip);
1407
1408 /*
1409 * Support for multi device:
1410 * When the IP configuration is x16 capable and two x8 chips are
1411 * connected in parallel, DEVICES_CONNECTED should be set to 2.
1412 * In this case, the core framework knows nothing about this fact,
1413 * so we should tell it the _logical_ pagesize and anything necessary.
1414 */
1415 denali->devnum = ioread32(denali->flash_reg + DEVICES_CONNECTED);
1416
Masahiro Yamadacc5d8032017-03-23 05:07:22 +09001417 /*
1418 * On some SoCs, DEVICES_CONNECTED is not auto-detected.
1419 * For those, DEVICES_CONNECTED is left to 0. Set 1 if it is the case.
1420 */
1421 if (denali->devnum == 0) {
1422 denali->devnum = 1;
1423 iowrite32(1, denali->flash_reg + DEVICES_CONNECTED);
1424 }
1425
Masahiro Yamadae93c1642017-03-23 05:07:21 +09001426 if (denali->devnum == 1)
1427 return 0;
1428
1429 if (denali->devnum != 2) {
1430 dev_err(denali->dev, "unsupported number of devices %d\n",
1431 denali->devnum);
1432 return -EINVAL;
1433 }
1434
1435 /* 2 chips in parallel */
1436 mtd->size <<= 1;
1437 mtd->erasesize <<= 1;
1438 mtd->writesize <<= 1;
1439 mtd->oobsize <<= 1;
1440 chip->chipsize <<= 1;
1441 chip->page_shift += 1;
1442 chip->phys_erase_shift += 1;
1443 chip->bbt_erase_shift += 1;
1444 chip->chip_shift += 1;
1445 chip->pagemask <<= 1;
1446 chip->ecc.size <<= 1;
1447 chip->ecc.bytes <<= 1;
1448 chip->ecc.strength <<= 1;
1449 denali->bbtskipbytes <<= 1;
1450
1451 return 0;
Masahiro Yamada6da27b42017-03-23 05:07:20 +09001452}
1453
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001454int denali_init(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001455{
Masahiro Yamada1394a722017-03-23 05:07:17 +09001456 struct nand_chip *chip = &denali->nand;
1457 struct mtd_info *mtd = nand_to_mtd(chip);
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001458 int ret;
Jason Robertsce082592010-05-13 15:57:33 +01001459
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001460 if (denali->platform == INTEL_CE4100) {
Masahiro Yamada43914a22014-09-09 11:01:51 +09001461 /*
1462 * Due to a silicon limitation, we can only support
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001463 * ONFI timing mode 1 and below.
1464 */
Chuanxiao Dong345b1d32010-07-27 10:41:53 +08001465 if (onfi_timing_mode < -1 || onfi_timing_mode > 1) {
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001466 pr_err("Intel CE4100 only supports ONFI timing mode 1 or below\n");
1467 return -EINVAL;
Jason Robertsce082592010-05-13 15:57:33 +01001468 }
1469 }
1470
Huang Shijiee07caa32013-12-21 00:02:28 +08001471 /* allocate a temporary buffer for nand_scan_ident() */
1472 denali->buf.buf = devm_kzalloc(denali->dev, PAGE_SIZE,
1473 GFP_DMA | GFP_KERNEL);
1474 if (!denali->buf.buf)
1475 return -ENOMEM;
Jason Robertsce082592010-05-13 15:57:33 +01001476
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001477 mtd->dev.parent = denali->dev;
Jason Robertsce082592010-05-13 15:57:33 +01001478 denali_hw_init(denali);
1479 denali_drv_init(denali);
1480
Masahiro Yamada7ebb8d02016-11-09 13:35:27 +09001481 /* Request IRQ after all the hardware initialization is finished */
1482 ret = devm_request_irq(denali->dev, denali->irq, denali_isr,
1483 IRQF_SHARED, DENALI_NAND_NAME, denali);
1484 if (ret) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001485 dev_err(denali->dev, "Unable to request IRQ\n");
Masahiro Yamada7ebb8d02016-11-09 13:35:27 +09001486 return ret;
Jason Robertsce082592010-05-13 15:57:33 +01001487 }
1488
1489 /* now that our ISR is registered, we can enable interrupts */
Chuanxiao Dongeda936e2010-07-27 14:17:37 +08001490 denali_set_intr_modes(denali, true);
Masahiro Yamada63757d42017-03-23 05:07:18 +09001491 nand_set_flash_node(chip, denali->dev->of_node);
Masahiro Yamada8aabdf32017-03-30 15:45:48 +09001492 /* Fallback to the default name if DT did not give "label" property */
1493 if (!mtd->name)
1494 mtd->name = "denali-nand";
Jason Robertsce082592010-05-13 15:57:33 +01001495
1496 /* register the driver with the NAND core subsystem */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001497 chip->select_chip = denali_select_chip;
1498 chip->cmdfunc = denali_cmdfunc;
1499 chip->read_byte = denali_read_byte;
1500 chip->waitfunc = denali_waitfunc;
Jason Robertsce082592010-05-13 15:57:33 +01001501
Masahiro Yamada43914a22014-09-09 11:01:51 +09001502 /*
1503 * scan for NAND devices attached to the controller
Jason Robertsce082592010-05-13 15:57:33 +01001504 * this is the first stage in a two step process to register
Masahiro Yamada43914a22014-09-09 11:01:51 +09001505 * with the nand subsystem
1506 */
Masahiro Yamadaa227d4e2016-11-09 13:35:28 +09001507 ret = nand_scan_ident(mtd, denali->max_banks, NULL);
1508 if (ret)
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001509 goto failed_req_irq;
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001510
Huang Shijiee07caa32013-12-21 00:02:28 +08001511 /* allocate the right size buffer now */
1512 devm_kfree(denali->dev, denali->buf.buf);
1513 denali->buf.buf = devm_kzalloc(denali->dev,
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001514 mtd->writesize + mtd->oobsize,
Huang Shijiee07caa32013-12-21 00:02:28 +08001515 GFP_KERNEL);
1516 if (!denali->buf.buf) {
1517 ret = -ENOMEM;
1518 goto failed_req_irq;
1519 }
1520
1521 /* Is 32-bit DMA supported? */
1522 ret = dma_set_mask(denali->dev, DMA_BIT_MASK(32));
1523 if (ret) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001524 dev_err(denali->dev, "No usable DMA configuration\n");
Huang Shijiee07caa32013-12-21 00:02:28 +08001525 goto failed_req_irq;
1526 }
1527
1528 denali->buf.dma_buf = dma_map_single(denali->dev, denali->buf.buf,
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001529 mtd->writesize + mtd->oobsize,
Huang Shijiee07caa32013-12-21 00:02:28 +08001530 DMA_BIDIRECTIONAL);
1531 if (dma_mapping_error(denali->dev, denali->buf.dma_buf)) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001532 dev_err(denali->dev, "Failed to map DMA buffer\n");
Huang Shijiee07caa32013-12-21 00:02:28 +08001533 ret = -EIO;
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001534 goto failed_req_irq;
Chuanxiao.Dong664065242010-08-06 18:48:21 +08001535 }
1536
Masahiro Yamada43914a22014-09-09 11:01:51 +09001537 /*
Masahiro Yamada43914a22014-09-09 11:01:51 +09001538 * second stage of the NAND scan
Chuanxiao5bac3ac2010-08-05 23:06:04 +08001539 * this stage requires information regarding ECC and
Masahiro Yamada43914a22014-09-09 11:01:51 +09001540 * bad block management.
1541 */
Jason Robertsce082592010-05-13 15:57:33 +01001542
1543 /* Bad block management */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001544 chip->bbt_td = &bbt_main_descr;
1545 chip->bbt_md = &bbt_mirror_descr;
Jason Robertsce082592010-05-13 15:57:33 +01001546
1547 /* skip the scan for now until we have OOB read and write support */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001548 chip->bbt_options |= NAND_BBT_USE_FLASH;
1549 chip->options |= NAND_SKIP_BBTSCAN;
1550 chip->ecc.mode = NAND_ECC_HW_SYNDROME;
Jason Robertsce082592010-05-13 15:57:33 +01001551
Graham Moored99d7282015-01-14 09:38:50 -06001552 /* no subpage writes on denali */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001553 chip->options |= NAND_NO_SUBPAGE_WRITE;
Graham Moored99d7282015-01-14 09:38:50 -06001554
Masahiro Yamada43914a22014-09-09 11:01:51 +09001555 /*
1556 * Denali Controller only support 15bit and 8bit ECC in MRST,
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001557 * so just let controller do 15bit ECC for MLC and 8bit ECC for
1558 * SLC if possible.
1559 * */
Masahiro Yamada1394a722017-03-23 05:07:17 +09001560 if (!nand_is_slc(chip) &&
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001561 (mtd->oobsize > (denali->bbtskipbytes +
1562 ECC_15BITS * (mtd->writesize /
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001563 ECC_SECTOR_SIZE)))) {
1564 /* if MLC OOB size is large enough, use 15bit ECC*/
Masahiro Yamada1394a722017-03-23 05:07:17 +09001565 chip->ecc.strength = 15;
1566 chip->ecc.bytes = ECC_15BITS;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001567 iowrite32(15, denali->flash_reg + ECC_CORRECTION);
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001568 } else if (mtd->oobsize < (denali->bbtskipbytes +
1569 ECC_8BITS * (mtd->writesize /
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001570 ECC_SECTOR_SIZE))) {
Masahiro Yamada81254502014-09-16 20:04:25 +09001571 pr_err("Your NAND chip OOB is not large enough to contain 8bit ECC correction codes");
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001572 goto failed_req_irq;
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001573 } else {
Masahiro Yamada1394a722017-03-23 05:07:17 +09001574 chip->ecc.strength = 8;
1575 chip->ecc.bytes = ECC_8BITS;
Chuanxiao Dong24c3fa32010-08-09 23:59:23 +08001576 iowrite32(8, denali->flash_reg + ECC_CORRECTION);
Jason Robertsce082592010-05-13 15:57:33 +01001577 }
1578
Boris Brezillon14fad622016-02-03 20:00:11 +01001579 mtd_set_ooblayout(mtd, &denali_ooblayout_ops);
Chuanxiao Dongdb9a32102010-08-06 18:02:03 +08001580
Jason Robertsce082592010-05-13 15:57:33 +01001581 /* override the default read operations */
Masahiro Yamada6da27b42017-03-23 05:07:20 +09001582 chip->ecc.size = ECC_SECTOR_SIZE;
Masahiro Yamada1394a722017-03-23 05:07:17 +09001583 chip->ecc.read_page = denali_read_page;
1584 chip->ecc.read_page_raw = denali_read_page_raw;
1585 chip->ecc.write_page = denali_write_page;
1586 chip->ecc.write_page_raw = denali_write_page_raw;
1587 chip->ecc.read_oob = denali_read_oob;
1588 chip->ecc.write_oob = denali_write_oob;
1589 chip->erase = denali_erase;
Jason Robertsce082592010-05-13 15:57:33 +01001590
Masahiro Yamadae93c1642017-03-23 05:07:21 +09001591 ret = denali_multidev_fixup(denali);
1592 if (ret)
1593 goto failed_req_irq;
Masahiro Yamada6da27b42017-03-23 05:07:20 +09001594
Masahiro Yamadaa227d4e2016-11-09 13:35:28 +09001595 ret = nand_scan_tail(mtd);
1596 if (ret)
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001597 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001598
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001599 ret = mtd_device_register(mtd, NULL, 0);
Jason Robertsce082592010-05-13 15:57:33 +01001600 if (ret) {
Masahiro Yamada789ccf12016-11-09 13:35:24 +09001601 dev_err(denali->dev, "Failed to register MTD: %d\n", ret);
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001602 goto failed_req_irq;
Jason Robertsce082592010-05-13 15:57:33 +01001603 }
1604 return 0;
1605
Chuanxiao Dong5c0eb902010-08-09 18:37:00 +08001606failed_req_irq:
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001607 denali_irq_cleanup(denali->irq, denali);
1608
Jason Robertsce082592010-05-13 15:57:33 +01001609 return ret;
1610}
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001611EXPORT_SYMBOL(denali_init);
Jason Robertsce082592010-05-13 15:57:33 +01001612
1613/* driver exit point */
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001614void denali_remove(struct denali_nand_info *denali)
Jason Robertsce082592010-05-13 15:57:33 +01001615{
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001616 struct mtd_info *mtd = nand_to_mtd(&denali->nand);
Boris BREZILLON320092a2015-12-11 15:02:34 +01001617 /*
1618 * Pre-compute DMA buffer size to avoid any problems in case
1619 * nand_release() ever changes in a way that mtd->writesize and
1620 * mtd->oobsize are not reliable after this call.
1621 */
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001622 int bufsize = mtd->writesize + mtd->oobsize;
Boris BREZILLON320092a2015-12-11 15:02:34 +01001623
Boris BREZILLON442f201b2015-12-11 15:06:00 +01001624 nand_release(mtd);
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001625 denali_irq_cleanup(denali->irq, denali);
Boris BREZILLON320092a2015-12-11 15:02:34 +01001626 dma_unmap_single(denali->dev, denali->buf.dma_buf, bufsize,
Masahiro Yamada81254502014-09-16 20:04:25 +09001627 DMA_BIDIRECTIONAL);
Jason Robertsce082592010-05-13 15:57:33 +01001628}
Dinh Nguyen2a0a2882012-09-27 10:58:05 -06001629EXPORT_SYMBOL(denali_remove);