blob: 25d354e9448ec73ff14ec635e6de40df481597f5 [file] [log] [blame]
Linus Walleij6c009ab2010-09-13 00:35:22 +02001/*
Linus Walleij6c009ab2010-09-13 00:35:22 +02002 * ST Microelectronics
3 * Flexible Static Memory Controller (FSMC)
4 * Driver for NAND portions
5 *
6 * Copyright © 2010 ST Microelectronics
7 * Vipin Kumar <vipin.kumar@st.com>
8 * Ashish Priyadarshi
9 *
Boris Brezillon187c54482018-02-05 23:02:02 +010010 * Based on drivers/mtd/nand/nomadik_nand.c (removed in v3.8)
Boris Brezillon7b6afee2018-02-05 23:02:03 +010011 * Copyright © 2007 STMicroelectronics Pvt. Ltd.
12 * Copyright © 2009 Alessandro Rubini
Linus Walleij6c009ab2010-09-13 00:35:22 +020013 *
14 * This file is licensed under the terms of the GNU General Public
15 * License version 2. This program is licensed "as is" without any
16 * warranty of any kind, whether express or implied.
17 */
18
19#include <linux/clk.h>
Vipin Kumar4774fb02012-03-14 11:47:18 +053020#include <linux/completion.h>
21#include <linux/dmaengine.h>
22#include <linux/dma-direction.h>
23#include <linux/dma-mapping.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020024#include <linux/err.h>
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/resource.h>
28#include <linux/sched.h>
29#include <linux/types.h>
30#include <linux/mtd/mtd.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020031#include <linux/mtd/rawnand.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020032#include <linux/mtd/nand_ecc.h>
33#include <linux/platform_device.h>
Stefan Roeseeea62812012-03-16 10:19:31 +010034#include <linux/of.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020035#include <linux/mtd/partitions.h>
36#include <linux/io.h>
37#include <linux/slab.h>
Linus Walleij593cd872010-11-29 13:52:19 +010038#include <linux/amba/bus.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020039#include <mtd/mtd-abi.h>
40
Linus Walleij4404d7d2016-12-18 12:34:55 +010041/* fsmc controller registers for NOR flash */
42#define CTRL 0x0
43 /* ctrl register definitions */
44 #define BANK_ENABLE (1 << 0)
45 #define MUXED (1 << 1)
46 #define NOR_DEV (2 << 2)
47 #define WIDTH_8 (0 << 4)
48 #define WIDTH_16 (1 << 4)
49 #define RSTPWRDWN (1 << 6)
50 #define WPROT (1 << 7)
51 #define WRT_ENABLE (1 << 12)
52 #define WAIT_ENB (1 << 13)
53
54#define CTRL_TIM 0x4
55 /* ctrl_tim register definitions */
56
57#define FSMC_NOR_BANK_SZ 0x8
58#define FSMC_NOR_REG_SIZE 0x40
59
60#define FSMC_NOR_REG(base, bank, reg) (base + \
61 FSMC_NOR_BANK_SZ * (bank) + \
62 reg)
63
64/* fsmc controller registers for NAND flash */
Boris Brezillon8f3931e2018-07-09 22:09:34 +020065#define FSMC_PC 0x00
Linus Walleij4404d7d2016-12-18 12:34:55 +010066 /* pc register definitions */
67 #define FSMC_RESET (1 << 0)
68 #define FSMC_WAITON (1 << 1)
69 #define FSMC_ENABLE (1 << 2)
70 #define FSMC_DEVTYPE_NAND (1 << 3)
71 #define FSMC_DEVWID_8 (0 << 4)
72 #define FSMC_DEVWID_16 (1 << 4)
73 #define FSMC_ECCEN (1 << 6)
74 #define FSMC_ECCPLEN_512 (0 << 7)
75 #define FSMC_ECCPLEN_256 (1 << 7)
76 #define FSMC_TCLR_1 (1)
77 #define FSMC_TCLR_SHIFT (9)
78 #define FSMC_TCLR_MASK (0xF)
79 #define FSMC_TAR_1 (1)
80 #define FSMC_TAR_SHIFT (13)
81 #define FSMC_TAR_MASK (0xF)
82#define STS 0x04
83 /* sts register definitions */
84 #define FSMC_CODE_RDY (1 << 15)
85#define COMM 0x08
86 /* comm register definitions */
87 #define FSMC_TSET_0 0
88 #define FSMC_TSET_SHIFT 0
89 #define FSMC_TSET_MASK 0xFF
90 #define FSMC_TWAIT_6 6
91 #define FSMC_TWAIT_SHIFT 8
92 #define FSMC_TWAIT_MASK 0xFF
93 #define FSMC_THOLD_4 4
94 #define FSMC_THOLD_SHIFT 16
95 #define FSMC_THOLD_MASK 0xFF
96 #define FSMC_THIZ_1 1
97 #define FSMC_THIZ_SHIFT 24
98 #define FSMC_THIZ_MASK 0xFF
99#define ATTRIB 0x0C
100#define IOATA 0x10
101#define ECC1 0x14
102#define ECC2 0x18
103#define ECC3 0x1C
104#define FSMC_NAND_BANK_SZ 0x20
105
Linus Walleij4404d7d2016-12-18 12:34:55 +0100106#define FSMC_BUSY_WAIT_TIMEOUT (1 * HZ)
107
108struct fsmc_nand_timings {
109 uint8_t tclr;
110 uint8_t tar;
111 uint8_t thiz;
112 uint8_t thold;
113 uint8_t twait;
114 uint8_t tset;
115};
116
117enum access_mode {
118 USE_DMA_ACCESS = 1,
119 USE_WORD_ACCESS,
120};
121
122/**
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100123 * struct fsmc_nand_data - structure for FSMC NAND device state
124 *
125 * @pid: Part ID on the AMBA PrimeCell format
126 * @mtd: MTD info for a NAND flash.
127 * @nand: Chip related info for a NAND flash.
128 * @partitions: Partition info for a NAND Flash.
129 * @nr_partitions: Total number of partition of a NAND flash.
130 *
131 * @bank: Bank number for probed device.
132 * @clk: Clock structure for FSMC.
133 *
134 * @read_dma_chan: DMA channel for read access
135 * @write_dma_chan: DMA channel for write access to NAND
136 * @dma_access_complete: Completion structure
137 *
138 * @data_pa: NAND Physical port for Data.
139 * @data_va: NAND port for Data.
140 * @cmd_va: NAND port for Command.
141 * @addr_va: NAND port for Address.
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100142 * @regs_va: Registers base address for a given bank.
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100143 */
144struct fsmc_nand_data {
145 u32 pid;
146 struct nand_chip nand;
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100147
148 unsigned int bank;
149 struct device *dev;
150 enum access_mode mode;
151 struct clk *clk;
152
153 /* DMA related objects */
154 struct dma_chan *read_dma_chan;
155 struct dma_chan *write_dma_chan;
156 struct completion dma_access_complete;
157
158 struct fsmc_nand_timings *dev_timings;
159
160 dma_addr_t data_pa;
161 void __iomem *data_va;
162 void __iomem *cmd_va;
163 void __iomem *addr_va;
164 void __iomem *regs_va;
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100165};
166
Boris Brezillon22b46952016-02-03 20:01:42 +0100167static int fsmc_ecc1_ooblayout_ecc(struct mtd_info *mtd, int section,
168 struct mtd_oob_region *oobregion)
169{
170 struct nand_chip *chip = mtd_to_nand(mtd);
171
172 if (section >= chip->ecc.steps)
173 return -ERANGE;
174
175 oobregion->offset = (section * 16) + 2;
176 oobregion->length = 3;
177
178 return 0;
179}
180
181static int fsmc_ecc1_ooblayout_free(struct mtd_info *mtd, int section,
182 struct mtd_oob_region *oobregion)
183{
184 struct nand_chip *chip = mtd_to_nand(mtd);
185
186 if (section >= chip->ecc.steps)
187 return -ERANGE;
188
189 oobregion->offset = (section * 16) + 8;
190
191 if (section < chip->ecc.steps - 1)
192 oobregion->length = 8;
193 else
194 oobregion->length = mtd->oobsize - oobregion->offset;
195
196 return 0;
197}
198
199static const struct mtd_ooblayout_ops fsmc_ecc1_ooblayout_ops = {
200 .ecc = fsmc_ecc1_ooblayout_ecc,
201 .free = fsmc_ecc1_ooblayout_free,
202};
203
Boris Brezillon04a123a2016-02-09 15:01:21 +0100204/*
205 * ECC placement definitions in oobfree type format.
206 * There are 13 bytes of ecc for every 512 byte block and it has to be read
207 * consecutively and immediately after the 512 byte data block for hardware to
208 * generate the error bit offsets in 512 byte data.
209 */
Boris Brezillon22b46952016-02-03 20:01:42 +0100210static int fsmc_ecc4_ooblayout_ecc(struct mtd_info *mtd, int section,
211 struct mtd_oob_region *oobregion)
212{
213 struct nand_chip *chip = mtd_to_nand(mtd);
214
215 if (section >= chip->ecc.steps)
216 return -ERANGE;
217
218 oobregion->length = chip->ecc.bytes;
219
220 if (!section && mtd->writesize <= 512)
221 oobregion->offset = 0;
222 else
223 oobregion->offset = (section * 16) + 2;
224
225 return 0;
226}
227
228static int fsmc_ecc4_ooblayout_free(struct mtd_info *mtd, int section,
229 struct mtd_oob_region *oobregion)
230{
231 struct nand_chip *chip = mtd_to_nand(mtd);
232
233 if (section >= chip->ecc.steps)
234 return -ERANGE;
235
236 oobregion->offset = (section * 16) + 15;
237
238 if (section < chip->ecc.steps - 1)
239 oobregion->length = 3;
240 else
241 oobregion->length = mtd->oobsize - oobregion->offset;
242
243 return 0;
244}
245
246static const struct mtd_ooblayout_ops fsmc_ecc4_ooblayout_ops = {
247 .ecc = fsmc_ecc4_ooblayout_ecc,
248 .free = fsmc_ecc4_ooblayout_free,
249};
250
Boris BREZILLON277af422015-12-10 08:59:46 +0100251static inline struct fsmc_nand_data *mtd_to_fsmc(struct mtd_info *mtd)
252{
Boris BREZILLONbdf3a552015-12-10 09:00:05 +0100253 return container_of(mtd_to_nand(mtd), struct fsmc_nand_data, nand);
Boris BREZILLON277af422015-12-10 08:59:46 +0100254}
255
Linus Walleij6c009ab2010-09-13 00:35:22 +0200256/*
Linus Walleij6c009ab2010-09-13 00:35:22 +0200257 * fsmc_nand_setup - FSMC (Flexible Static Memory Controller) init routine
258 *
259 * This routine initializes timing parameters related to NAND memory access in
260 * FSMC registers
261 */
Thomas Petazzoni6335b502017-04-29 10:52:34 +0200262static void fsmc_nand_setup(struct fsmc_nand_data *host,
Thomas Petazzoni1debdb92017-04-29 10:52:36 +0200263 struct fsmc_nand_timings *tims)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200264{
265 uint32_t value = FSMC_DEVTYPE_NAND | FSMC_ENABLE | FSMC_WAITON;
Vipin Kumare2f6bce2012-03-14 11:47:14 +0530266 uint32_t tclr, tar, thiz, thold, twait, tset;
Vipin Kumare2f6bce2012-03-14 11:47:14 +0530267
268 tclr = (tims->tclr & FSMC_TCLR_MASK) << FSMC_TCLR_SHIFT;
269 tar = (tims->tar & FSMC_TAR_MASK) << FSMC_TAR_SHIFT;
270 thiz = (tims->thiz & FSMC_THIZ_MASK) << FSMC_THIZ_SHIFT;
271 thold = (tims->thold & FSMC_THOLD_MASK) << FSMC_THOLD_SHIFT;
272 twait = (tims->twait & FSMC_TWAIT_MASK) << FSMC_TWAIT_SHIFT;
273 tset = (tims->tset & FSMC_TSET_MASK) << FSMC_TSET_SHIFT;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200274
Thomas Petazzoni6335b502017-04-29 10:52:34 +0200275 if (host->nand.options & NAND_BUSWIDTH_16)
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200276 writel_relaxed(value | FSMC_DEVWID_16,
277 host->regs_va + FSMC_PC);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200278 else
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200279 writel_relaxed(value | FSMC_DEVWID_8, host->regs_va + FSMC_PC);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200280
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200281 writel_relaxed(readl(host->regs_va + FSMC_PC) | tclr | tar,
282 host->regs_va + FSMC_PC);
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100283 writel_relaxed(thiz | thold | twait | tset, host->regs_va + COMM);
284 writel_relaxed(thiz | thold | twait | tset, host->regs_va + ATTRIB);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200285}
286
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200287static int fsmc_calc_timings(struct fsmc_nand_data *host,
288 const struct nand_sdr_timings *sdrt,
289 struct fsmc_nand_timings *tims)
290{
291 unsigned long hclk = clk_get_rate(host->clk);
292 unsigned long hclkn = NSEC_PER_SEC / hclk;
293 uint32_t thiz, thold, twait, tset;
294
295 if (sdrt->tRC_min < 30000)
296 return -EOPNOTSUPP;
297
298 tims->tar = DIV_ROUND_UP(sdrt->tAR_min / 1000, hclkn) - 1;
299 if (tims->tar > FSMC_TAR_MASK)
300 tims->tar = FSMC_TAR_MASK;
301 tims->tclr = DIV_ROUND_UP(sdrt->tCLR_min / 1000, hclkn) - 1;
302 if (tims->tclr > FSMC_TCLR_MASK)
303 tims->tclr = FSMC_TCLR_MASK;
304
305 thiz = sdrt->tCS_min - sdrt->tWP_min;
306 tims->thiz = DIV_ROUND_UP(thiz / 1000, hclkn);
307
308 thold = sdrt->tDH_min;
309 if (thold < sdrt->tCH_min)
310 thold = sdrt->tCH_min;
311 if (thold < sdrt->tCLH_min)
312 thold = sdrt->tCLH_min;
313 if (thold < sdrt->tWH_min)
314 thold = sdrt->tWH_min;
315 if (thold < sdrt->tALH_min)
316 thold = sdrt->tALH_min;
317 if (thold < sdrt->tREH_min)
318 thold = sdrt->tREH_min;
319 tims->thold = DIV_ROUND_UP(thold / 1000, hclkn);
320 if (tims->thold == 0)
321 tims->thold = 1;
322 else if (tims->thold > FSMC_THOLD_MASK)
323 tims->thold = FSMC_THOLD_MASK;
324
325 twait = max(sdrt->tRP_min, sdrt->tWP_min);
326 tims->twait = DIV_ROUND_UP(twait / 1000, hclkn) - 1;
327 if (tims->twait == 0)
328 tims->twait = 1;
329 else if (tims->twait > FSMC_TWAIT_MASK)
330 tims->twait = FSMC_TWAIT_MASK;
331
332 tset = max(sdrt->tCS_min - sdrt->tWP_min,
333 sdrt->tCEA_max - sdrt->tREA_max);
334 tims->tset = DIV_ROUND_UP(tset / 1000, hclkn) - 1;
335 if (tims->tset == 0)
336 tims->tset = 1;
337 else if (tims->tset > FSMC_TSET_MASK)
338 tims->tset = FSMC_TSET_MASK;
339
340 return 0;
341}
342
Boris Brezillon104e4422017-03-16 09:35:58 +0100343static int fsmc_setup_data_interface(struct mtd_info *mtd, int csline,
344 const struct nand_data_interface *conf)
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200345{
346 struct nand_chip *nand = mtd_to_nand(mtd);
347 struct fsmc_nand_data *host = nand_get_controller_data(nand);
348 struct fsmc_nand_timings tims;
349 const struct nand_sdr_timings *sdrt;
350 int ret;
351
352 sdrt = nand_get_sdr_timings(conf);
353 if (IS_ERR(sdrt))
354 return PTR_ERR(sdrt);
355
356 ret = fsmc_calc_timings(host, sdrt, &tims);
357 if (ret)
358 return ret;
359
Boris Brezillon104e4422017-03-16 09:35:58 +0100360 if (csline == NAND_DATA_IFACE_CHECK_ONLY)
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200361 return 0;
362
363 fsmc_nand_setup(host, &tims);
364
365 return 0;
366}
367
Linus Walleij6c009ab2010-09-13 00:35:22 +0200368/*
369 * fsmc_enable_hwecc - Enables Hardware ECC through FSMC registers
370 */
371static void fsmc_enable_hwecc(struct mtd_info *mtd, int mode)
372{
Boris BREZILLON277af422015-12-10 08:59:46 +0100373 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200374
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200375 writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCPLEN_256,
376 host->regs_va + FSMC_PC);
377 writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCEN,
378 host->regs_va + FSMC_PC);
379 writel_relaxed(readl(host->regs_va + FSMC_PC) | FSMC_ECCEN,
380 host->regs_va + FSMC_PC);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200381}
382
383/*
384 * fsmc_read_hwecc_ecc4 - Hardware ECC calculator for ecc4 option supported by
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300385 * FSMC. ECC is 13 bytes for 512 bytes of data (supports error correction up to
Linus Walleij6c009ab2010-09-13 00:35:22 +0200386 * max of 8-bits)
387 */
388static int fsmc_read_hwecc_ecc4(struct mtd_info *mtd, const uint8_t *data,
389 uint8_t *ecc)
390{
Boris BREZILLON277af422015-12-10 08:59:46 +0100391 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200392 uint32_t ecc_tmp;
393 unsigned long deadline = jiffies + FSMC_BUSY_WAIT_TIMEOUT;
394
395 do {
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100396 if (readl_relaxed(host->regs_va + STS) & FSMC_CODE_RDY)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200397 break;
398 else
399 cond_resched();
400 } while (!time_after_eq(jiffies, deadline));
401
Vipin Kumar712c4ad2012-03-14 11:47:16 +0530402 if (time_after_eq(jiffies, deadline)) {
403 dev_err(host->dev, "calculate ecc timed out\n");
404 return -ETIMEDOUT;
405 }
406
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100407 ecc_tmp = readl_relaxed(host->regs_va + ECC1);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200408 ecc[0] = (uint8_t) (ecc_tmp >> 0);
409 ecc[1] = (uint8_t) (ecc_tmp >> 8);
410 ecc[2] = (uint8_t) (ecc_tmp >> 16);
411 ecc[3] = (uint8_t) (ecc_tmp >> 24);
412
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100413 ecc_tmp = readl_relaxed(host->regs_va + ECC2);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200414 ecc[4] = (uint8_t) (ecc_tmp >> 0);
415 ecc[5] = (uint8_t) (ecc_tmp >> 8);
416 ecc[6] = (uint8_t) (ecc_tmp >> 16);
417 ecc[7] = (uint8_t) (ecc_tmp >> 24);
418
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100419 ecc_tmp = readl_relaxed(host->regs_va + ECC3);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200420 ecc[8] = (uint8_t) (ecc_tmp >> 0);
421 ecc[9] = (uint8_t) (ecc_tmp >> 8);
422 ecc[10] = (uint8_t) (ecc_tmp >> 16);
423 ecc[11] = (uint8_t) (ecc_tmp >> 24);
424
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100425 ecc_tmp = readl_relaxed(host->regs_va + STS);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200426 ecc[12] = (uint8_t) (ecc_tmp >> 16);
427
428 return 0;
429}
430
431/*
432 * fsmc_read_hwecc_ecc1 - Hardware ECC calculator for ecc1 option supported by
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300433 * FSMC. ECC is 3 bytes for 512 bytes of data (supports error correction up to
Linus Walleij6c009ab2010-09-13 00:35:22 +0200434 * max of 1-bit)
435 */
436static int fsmc_read_hwecc_ecc1(struct mtd_info *mtd, const uint8_t *data,
437 uint8_t *ecc)
438{
Boris BREZILLON277af422015-12-10 08:59:46 +0100439 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200440 uint32_t ecc_tmp;
441
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100442 ecc_tmp = readl_relaxed(host->regs_va + ECC1);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200443 ecc[0] = (uint8_t) (ecc_tmp >> 0);
444 ecc[1] = (uint8_t) (ecc_tmp >> 8);
445 ecc[2] = (uint8_t) (ecc_tmp >> 16);
446
447 return 0;
448}
449
Vipin Kumar519300c2012-03-07 17:00:49 +0530450/* Count the number of 0's in buff upto a max of max_bits */
451static int count_written_bits(uint8_t *buff, int size, int max_bits)
452{
453 int k, written_bits = 0;
454
455 for (k = 0; k < size; k++) {
456 written_bits += hweight8(~buff[k]);
457 if (written_bits > max_bits)
458 break;
459 }
460
461 return written_bits;
462}
463
Vipin Kumar4774fb02012-03-14 11:47:18 +0530464static void dma_complete(void *param)
465{
466 struct fsmc_nand_data *host = param;
467
468 complete(&host->dma_access_complete);
469}
470
471static int dma_xfer(struct fsmc_nand_data *host, void *buffer, int len,
472 enum dma_data_direction direction)
473{
474 struct dma_chan *chan;
475 struct dma_device *dma_dev;
476 struct dma_async_tx_descriptor *tx;
477 dma_addr_t dma_dst, dma_src, dma_addr;
478 dma_cookie_t cookie;
479 unsigned long flags = DMA_CTRL_ACK | DMA_PREP_INTERRUPT;
480 int ret;
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400481 unsigned long time_left;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530482
483 if (direction == DMA_TO_DEVICE)
484 chan = host->write_dma_chan;
485 else if (direction == DMA_FROM_DEVICE)
486 chan = host->read_dma_chan;
487 else
488 return -EINVAL;
489
490 dma_dev = chan->device;
491 dma_addr = dma_map_single(dma_dev->dev, buffer, len, direction);
492
493 if (direction == DMA_TO_DEVICE) {
494 dma_src = dma_addr;
495 dma_dst = host->data_pa;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530496 } else {
497 dma_src = host->data_pa;
498 dma_dst = dma_addr;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530499 }
500
501 tx = dma_dev->device_prep_dma_memcpy(chan, dma_dst, dma_src,
502 len, flags);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530503 if (!tx) {
504 dev_err(host->dev, "device_prep_dma_memcpy error\n");
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000505 ret = -EIO;
506 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530507 }
508
509 tx->callback = dma_complete;
510 tx->callback_param = host;
511 cookie = tx->tx_submit(tx);
512
513 ret = dma_submit_error(cookie);
514 if (ret) {
515 dev_err(host->dev, "dma_submit_error %d\n", cookie);
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000516 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530517 }
518
519 dma_async_issue_pending(chan);
520
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400521 time_left =
Vipin Kumar928aa2a2012-10-09 16:14:48 +0530522 wait_for_completion_timeout(&host->dma_access_complete,
Vipin Kumar4774fb02012-03-14 11:47:18 +0530523 msecs_to_jiffies(3000));
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400524 if (time_left == 0) {
Vinod Koulb177ea32014-10-11 21:10:32 +0530525 dmaengine_terminate_all(chan);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530526 dev_err(host->dev, "wait_for_completion_timeout\n");
Nicholas Mc Guire0bda3e12015-03-13 07:54:45 -0400527 ret = -ETIMEDOUT;
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000528 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530529 }
530
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000531 ret = 0;
532
533unmap_dma:
534 dma_unmap_single(dma_dev->dev, dma_addr, len, direction);
535
536 return ret;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530537}
538
Linus Walleij6c009ab2010-09-13 00:35:22 +0200539/*
Vipin Kumar604e7542012-03-14 11:47:17 +0530540 * fsmc_write_buf - write buffer to chip
541 * @mtd: MTD device structure
542 * @buf: data buffer
543 * @len: number of bytes to write
544 */
545static void fsmc_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
546{
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100547 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar604e7542012-03-14 11:47:17 +0530548 int i;
Vipin Kumar604e7542012-03-14 11:47:17 +0530549
Boris Brezillonf55824c2018-07-09 22:09:35 +0200550 if (IS_ALIGNED((uintptr_t)buf, sizeof(uint32_t)) &&
Vipin Kumar604e7542012-03-14 11:47:17 +0530551 IS_ALIGNED(len, sizeof(uint32_t))) {
552 uint32_t *p = (uint32_t *)buf;
553 len = len >> 2;
554 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100555 writel_relaxed(p[i], host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530556 } else {
557 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100558 writeb_relaxed(buf[i], host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530559 }
560}
561
562/*
563 * fsmc_read_buf - read chip data into buffer
564 * @mtd: MTD device structure
565 * @buf: buffer to store date
566 * @len: number of bytes to read
567 */
568static void fsmc_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
569{
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100570 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar604e7542012-03-14 11:47:17 +0530571 int i;
Vipin Kumar604e7542012-03-14 11:47:17 +0530572
Boris Brezillonf55824c2018-07-09 22:09:35 +0200573 if (IS_ALIGNED((uintptr_t)buf, sizeof(uint32_t)) &&
Vipin Kumar604e7542012-03-14 11:47:17 +0530574 IS_ALIGNED(len, sizeof(uint32_t))) {
575 uint32_t *p = (uint32_t *)buf;
576 len = len >> 2;
577 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100578 p[i] = readl_relaxed(host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530579 } else {
580 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100581 buf[i] = readb_relaxed(host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530582 }
583}
584
585/*
Vipin Kumar4774fb02012-03-14 11:47:18 +0530586 * fsmc_read_buf_dma - read chip data into buffer
587 * @mtd: MTD device structure
588 * @buf: buffer to store date
589 * @len: number of bytes to read
590 */
591static void fsmc_read_buf_dma(struct mtd_info *mtd, uint8_t *buf, int len)
592{
Boris BREZILLON277af422015-12-10 08:59:46 +0100593 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530594
Vipin Kumar4774fb02012-03-14 11:47:18 +0530595 dma_xfer(host, buf, len, DMA_FROM_DEVICE);
596}
597
598/*
599 * fsmc_write_buf_dma - write buffer to chip
600 * @mtd: MTD device structure
601 * @buf: data buffer
602 * @len: number of bytes to write
603 */
604static void fsmc_write_buf_dma(struct mtd_info *mtd, const uint8_t *buf,
605 int len)
606{
Boris BREZILLON277af422015-12-10 08:59:46 +0100607 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530608
Vipin Kumar4774fb02012-03-14 11:47:18 +0530609 dma_xfer(host, (void *)buf, len, DMA_TO_DEVICE);
610}
611
Miquel Raynal4da712e2018-02-16 15:22:48 +0100612/* fsmc_select_chip - assert or deassert nCE */
613static void fsmc_select_chip(struct mtd_info *mtd, int chipnr)
614{
615 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
616 u32 pc;
617
618 /* Support only one CS */
619 if (chipnr > 0)
620 return;
621
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200622 pc = readl(host->regs_va + FSMC_PC);
Miquel Raynal4da712e2018-02-16 15:22:48 +0100623 if (chipnr < 0)
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200624 writel_relaxed(pc & ~FSMC_ENABLE, host->regs_va + FSMC_PC);
Miquel Raynal4da712e2018-02-16 15:22:48 +0100625 else
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200626 writel_relaxed(pc | FSMC_ENABLE, host->regs_va + FSMC_PC);
Miquel Raynal4da712e2018-02-16 15:22:48 +0100627
628 /* nCE line must be asserted before starting any operation */
629 mb();
630}
631
632/*
633 * fsmc_exec_op - hook called by the core to execute NAND operations
634 *
635 * This controller is simple enough and thus does not need to use the parser
636 * provided by the core, instead, handle every situation here.
637 */
638static int fsmc_exec_op(struct nand_chip *chip, const struct nand_operation *op,
639 bool check_only)
640{
641 struct mtd_info *mtd = nand_to_mtd(chip);
642 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
643 const struct nand_op_instr *instr = NULL;
644 int ret = 0;
645 unsigned int op_id;
646 int i;
647
648 pr_debug("Executing operation [%d instructions]:\n", op->ninstrs);
649 for (op_id = 0; op_id < op->ninstrs; op_id++) {
650 instr = &op->instrs[op_id];
651
652 switch (instr->type) {
653 case NAND_OP_CMD_INSTR:
654 pr_debug(" ->CMD [0x%02x]\n",
655 instr->ctx.cmd.opcode);
656
657 writeb_relaxed(instr->ctx.cmd.opcode, host->cmd_va);
658 break;
659
660 case NAND_OP_ADDR_INSTR:
661 pr_debug(" ->ADDR [%d cyc]",
662 instr->ctx.addr.naddrs);
663
664 for (i = 0; i < instr->ctx.addr.naddrs; i++)
665 writeb_relaxed(instr->ctx.addr.addrs[i],
666 host->addr_va);
667 break;
668
669 case NAND_OP_DATA_IN_INSTR:
670 pr_debug(" ->DATA_IN [%d B%s]\n", instr->ctx.data.len,
671 instr->ctx.data.force_8bit ?
672 ", force 8-bit" : "");
673
674 if (host->mode == USE_DMA_ACCESS)
675 fsmc_read_buf_dma(mtd, instr->ctx.data.buf.in,
676 instr->ctx.data.len);
677 else
678 fsmc_read_buf(mtd, instr->ctx.data.buf.in,
679 instr->ctx.data.len);
680 break;
681
682 case NAND_OP_DATA_OUT_INSTR:
683 pr_debug(" ->DATA_OUT [%d B%s]\n", instr->ctx.data.len,
684 instr->ctx.data.force_8bit ?
685 ", force 8-bit" : "");
686
687 if (host->mode == USE_DMA_ACCESS)
688 fsmc_write_buf_dma(mtd, instr->ctx.data.buf.out,
689 instr->ctx.data.len);
690 else
691 fsmc_write_buf(mtd, instr->ctx.data.buf.out,
692 instr->ctx.data.len);
693 break;
694
695 case NAND_OP_WAITRDY_INSTR:
696 pr_debug(" ->WAITRDY [max %d ms]\n",
697 instr->ctx.waitrdy.timeout_ms);
698
699 ret = nand_soft_waitrdy(chip,
700 instr->ctx.waitrdy.timeout_ms);
701 break;
702 }
703 }
704
705 return ret;
706}
707
Vipin Kumar4774fb02012-03-14 11:47:18 +0530708/*
Linus Walleij6c009ab2010-09-13 00:35:22 +0200709 * fsmc_read_page_hwecc
710 * @mtd: mtd info structure
711 * @chip: nand chip info structure
712 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -0700713 * @oob_required: caller expects OOB data read to chip->oob_poi
Linus Walleij6c009ab2010-09-13 00:35:22 +0200714 * @page: page number to read
715 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300716 * This routine is needed for fsmc version 8 as reading from NAND chip has to be
Linus Walleij6c009ab2010-09-13 00:35:22 +0200717 * performed in a strict sequence as follows:
718 * data(512 byte) -> ecc(13 byte)
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300719 * After this read, fsmc hardware generates and reports error data bits(up to a
Linus Walleij6c009ab2010-09-13 00:35:22 +0200720 * max of 8 bits)
721 */
722static int fsmc_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
Brian Norris1fbb9382012-05-02 10:14:55 -0700723 uint8_t *buf, int oob_required, int page)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200724{
Linus Walleij6c009ab2010-09-13 00:35:22 +0200725 int i, j, s, stat, eccsize = chip->ecc.size;
726 int eccbytes = chip->ecc.bytes;
727 int eccsteps = chip->ecc.steps;
728 uint8_t *p = buf;
Masahiro Yamadac0313b92017-12-05 17:47:16 +0900729 uint8_t *ecc_calc = chip->ecc.calc_buf;
730 uint8_t *ecc_code = chip->ecc.code_buf;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200731 int off, len, group = 0;
732 /*
733 * ecc_oob is intentionally taken as uint16_t. In 16bit devices, we
734 * end up reading 14 bytes (7 words) from oob. The local array is
735 * to maintain word alignment
736 */
737 uint16_t ecc_oob[7];
738 uint8_t *oob = (uint8_t *)&ecc_oob[0];
Mike Dunn3f91e942012-04-25 12:06:09 -0700739 unsigned int max_bitflips = 0;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200740
741 for (i = 0, s = 0; s < eccsteps; s++, i += eccbytes, p += eccsize) {
Boris Brezillon97d90da2017-11-30 18:01:29 +0100742 nand_read_page_op(chip, page, s * eccsize, NULL, 0);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200743 chip->ecc.hwctl(mtd, NAND_ECC_READ);
Boris Brezillon79e1ca32018-07-18 10:28:14 +0200744 nand_read_data_op(chip, p, eccsize, false);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200745
746 for (j = 0; j < eccbytes;) {
Boris Brezillon04a123a2016-02-09 15:01:21 +0100747 struct mtd_oob_region oobregion;
748 int ret;
749
750 ret = mtd_ooblayout_ecc(mtd, group++, &oobregion);
751 if (ret)
752 return ret;
753
754 off = oobregion.offset;
755 len = oobregion.length;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200756
757 /*
Vipin Kumar4cbe1bf02012-03-14 11:47:09 +0530758 * length is intentionally kept a higher multiple of 2
759 * to read at least 13 bytes even in case of 16 bit NAND
760 * devices
761 */
Vipin Kumaraea686b2012-03-14 11:47:10 +0530762 if (chip->options & NAND_BUSWIDTH_16)
763 len = roundup(len, 2);
764
Boris Brezillon97d90da2017-11-30 18:01:29 +0100765 nand_read_oob_op(chip, page, off, oob + j, len);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200766 j += len;
767 }
768
Vipin Kumar519300c2012-03-07 17:00:49 +0530769 memcpy(&ecc_code[i], oob, chip->ecc.bytes);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200770 chip->ecc.calculate(mtd, p, &ecc_calc[i]);
771
772 stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -0700773 if (stat < 0) {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200774 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -0700775 } else {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200776 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -0700777 max_bitflips = max_t(unsigned int, max_bitflips, stat);
778 }
Linus Walleij6c009ab2010-09-13 00:35:22 +0200779 }
780
Mike Dunn3f91e942012-04-25 12:06:09 -0700781 return max_bitflips;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200782}
783
784/*
Armando Visconti753e0132012-03-07 17:00:54 +0530785 * fsmc_bch8_correct_data
Linus Walleij6c009ab2010-09-13 00:35:22 +0200786 * @mtd: mtd info structure
787 * @dat: buffer of read data
788 * @read_ecc: ecc read from device spare area
789 * @calc_ecc: ecc calculated from read data
790 *
791 * calc_ecc is a 104 bit information containing maximum of 8 error
792 * offset informations of 13 bits each in 512 bytes of read data.
793 */
Armando Visconti753e0132012-03-07 17:00:54 +0530794static int fsmc_bch8_correct_data(struct mtd_info *mtd, uint8_t *dat,
Linus Walleij6c009ab2010-09-13 00:35:22 +0200795 uint8_t *read_ecc, uint8_t *calc_ecc)
796{
Boris BREZILLON4bd4ebc2015-12-01 12:03:04 +0100797 struct nand_chip *chip = mtd_to_nand(mtd);
Boris BREZILLON277af422015-12-10 08:59:46 +0100798 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Armando Viscontia612c2a2012-03-07 17:00:53 +0530799 uint32_t err_idx[8];
Linus Walleij6c009ab2010-09-13 00:35:22 +0200800 uint32_t num_err, i;
Armando Visconti753e0132012-03-07 17:00:54 +0530801 uint32_t ecc1, ecc2, ecc3, ecc4;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200802
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100803 num_err = (readl_relaxed(host->regs_va + STS) >> 10) & 0xF;
Vipin Kumar519300c2012-03-07 17:00:49 +0530804
805 /* no bit flipping */
806 if (likely(num_err == 0))
807 return 0;
808
809 /* too many errors */
810 if (unlikely(num_err > 8)) {
811 /*
812 * This is a temporary erase check. A newly erased page read
813 * would result in an ecc error because the oob data is also
814 * erased to FF and the calculated ecc for an FF data is not
815 * FF..FF.
816 * This is a workaround to skip performing correction in case
817 * data is FF..FF
818 *
819 * Logic:
820 * For every page, each bit written as 0 is counted until these
821 * number of bits are greater than 8 (the maximum correction
822 * capability of FSMC for each 512 + 13 bytes)
823 */
824
825 int bits_ecc = count_written_bits(read_ecc, chip->ecc.bytes, 8);
826 int bits_data = count_written_bits(dat, chip->ecc.size, 8);
827
828 if ((bits_ecc + bits_data) <= 8) {
829 if (bits_data)
830 memset(dat, 0xff, chip->ecc.size);
831 return bits_data;
832 }
833
834 return -EBADMSG;
835 }
836
Linus Walleij6c009ab2010-09-13 00:35:22 +0200837 /*
838 * ------------------- calc_ecc[] bit wise -----------|--13 bits--|
839 * |---idx[7]--|--.....-----|---idx[2]--||---idx[1]--||---idx[0]--|
840 *
841 * calc_ecc is a 104 bit information containing maximum of 8 error
842 * offset informations of 13 bits each. calc_ecc is copied into a
843 * uint64_t array and error offset indexes are populated in err_idx
844 * array
845 */
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100846 ecc1 = readl_relaxed(host->regs_va + ECC1);
847 ecc2 = readl_relaxed(host->regs_va + ECC2);
848 ecc3 = readl_relaxed(host->regs_va + ECC3);
849 ecc4 = readl_relaxed(host->regs_va + STS);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200850
Armando Visconti753e0132012-03-07 17:00:54 +0530851 err_idx[0] = (ecc1 >> 0) & 0x1FFF;
852 err_idx[1] = (ecc1 >> 13) & 0x1FFF;
853 err_idx[2] = (((ecc2 >> 0) & 0x7F) << 6) | ((ecc1 >> 26) & 0x3F);
854 err_idx[3] = (ecc2 >> 7) & 0x1FFF;
855 err_idx[4] = (((ecc3 >> 0) & 0x1) << 12) | ((ecc2 >> 20) & 0xFFF);
856 err_idx[5] = (ecc3 >> 1) & 0x1FFF;
857 err_idx[6] = (ecc3 >> 14) & 0x1FFF;
858 err_idx[7] = (((ecc4 >> 16) & 0xFF) << 5) | ((ecc3 >> 27) & 0x1F);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200859
860 i = 0;
861 while (num_err--) {
862 change_bit(0, (unsigned long *)&err_idx[i]);
863 change_bit(1, (unsigned long *)&err_idx[i]);
864
Vipin Kumarb533f8d2012-03-14 11:47:11 +0530865 if (err_idx[i] < chip->ecc.size * 8) {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200866 change_bit(err_idx[i], (unsigned long *)dat);
867 i++;
868 }
869 }
870 return i;
871}
872
Vipin Kumar4774fb02012-03-14 11:47:18 +0530873static bool filter(struct dma_chan *chan, void *slave)
874{
875 chan->private = slave;
876 return true;
877}
878
Bill Pemberton06f25512012-11-19 13:23:07 -0500879static int fsmc_nand_probe_config_dt(struct platform_device *pdev,
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100880 struct fsmc_nand_data *host,
881 struct nand_chip *nand)
Stefan Roeseeea62812012-03-16 10:19:31 +0100882{
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100883 struct device_node *np = pdev->dev.of_node;
Stefan Roeseeea62812012-03-16 10:19:31 +0100884 u32 val;
Stefan Roese62b57f42015-03-19 14:34:29 +0100885 int ret;
Stefan Roeseeea62812012-03-16 10:19:31 +0100886
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100887 nand->options = 0;
Thomas Petazzoniee568742017-03-21 11:03:53 +0100888
Stefan Roeseeea62812012-03-16 10:19:31 +0100889 if (!of_property_read_u32(np, "bank-width", &val)) {
890 if (val == 2) {
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100891 nand->options |= NAND_BUSWIDTH_16;
Stefan Roeseeea62812012-03-16 10:19:31 +0100892 } else if (val != 1) {
893 dev_err(&pdev->dev, "invalid bank-width %u\n", val);
894 return -EINVAL;
895 }
896 }
Thomas Petazzoniee568742017-03-21 11:03:53 +0100897
Stefan Roeseeea62812012-03-16 10:19:31 +0100898 if (of_get_property(np, "nand-skip-bbtscan", NULL))
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100899 nand->options |= NAND_SKIP_BBTSCAN;
Stefan Roeseeea62812012-03-16 10:19:31 +0100900
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100901 host->dev_timings = devm_kzalloc(&pdev->dev,
902 sizeof(*host->dev_timings), GFP_KERNEL);
903 if (!host->dev_timings)
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200904 return -ENOMEM;
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100905 ret = of_property_read_u8_array(np, "timings", (u8 *)host->dev_timings,
906 sizeof(*host->dev_timings));
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200907 if (ret)
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100908 host->dev_timings = NULL;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200909
910 /* Set default NAND bank to 0 */
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100911 host->bank = 0;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200912 if (!of_property_read_u32(np, "bank", &val)) {
913 if (val > 3) {
914 dev_err(&pdev->dev, "invalid bank %u\n", val);
915 return -EINVAL;
916 }
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100917 host->bank = val;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200918 }
Stefan Roeseeea62812012-03-16 10:19:31 +0100919 return 0;
920}
Stefan Roeseeea62812012-03-16 10:19:31 +0100921
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200922static int fsmc_nand_attach_chip(struct nand_chip *nand)
923{
924 struct mtd_info *mtd = nand_to_mtd(nand);
925 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
926
927 if (AMBA_REV_BITS(host->pid) >= 8) {
928 switch (mtd->oobsize) {
929 case 16:
930 case 64:
931 case 128:
932 case 224:
933 case 256:
934 break;
935 default:
936 dev_warn(host->dev,
937 "No oob scheme defined for oobsize %d\n",
938 mtd->oobsize);
939 return -EINVAL;
940 }
941
942 mtd_set_ooblayout(mtd, &fsmc_ecc4_ooblayout_ops);
943
944 return 0;
945 }
946
947 switch (nand->ecc.mode) {
948 case NAND_ECC_HW:
949 dev_info(host->dev, "Using 1-bit HW ECC scheme\n");
950 nand->ecc.calculate = fsmc_read_hwecc_ecc1;
951 nand->ecc.correct = nand_correct_data;
952 nand->ecc.bytes = 3;
953 nand->ecc.strength = 1;
954 break;
955
956 case NAND_ECC_SOFT:
957 if (nand->ecc.algo == NAND_ECC_BCH) {
958 dev_info(host->dev,
959 "Using 4-bit SW BCH ECC scheme\n");
960 break;
961 }
962
963 case NAND_ECC_ON_DIE:
964 break;
965
966 default:
967 dev_err(host->dev, "Unsupported ECC mode!\n");
968 return -ENOTSUPP;
969 }
970
971 /*
972 * Don't set layout for BCH4 SW ECC. This will be
973 * generated later in nand_bch_init() later.
974 */
975 if (nand->ecc.mode == NAND_ECC_HW) {
976 switch (mtd->oobsize) {
977 case 16:
978 case 64:
979 case 128:
980 mtd_set_ooblayout(mtd,
981 &fsmc_ecc1_ooblayout_ops);
982 break;
983 default:
984 dev_warn(host->dev,
985 "No oob scheme defined for oobsize %d\n",
986 mtd->oobsize);
987 return -EINVAL;
988 }
989 }
990
991 return 0;
992}
993
994static const struct nand_controller_ops fsmc_nand_controller_ops = {
995 .attach_chip = fsmc_nand_attach_chip,
996};
997
Linus Walleij6c009ab2010-09-13 00:35:22 +0200998/*
999 * fsmc_nand_probe - Probe function
1000 * @pdev: platform device structure
1001 */
1002static int __init fsmc_nand_probe(struct platform_device *pdev)
1003{
Linus Walleij6c009ab2010-09-13 00:35:22 +02001004 struct fsmc_nand_data *host;
1005 struct mtd_info *mtd;
1006 struct nand_chip *nand;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001007 struct resource *res;
Miquel Raynal4df6ed42018-02-16 15:22:47 +01001008 void __iomem *base;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301009 dma_cap_mask_t mask;
Linus Walleij4ad916b2010-11-29 13:52:06 +01001010 int ret = 0;
Linus Walleij593cd872010-11-29 13:52:19 +01001011 u32 pid;
1012 int i;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001013
Linus Walleij6c009ab2010-09-13 00:35:22 +02001014 /* Allocate memory for the device structure (and zero it) */
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301015 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
Jingoo Hand9a21ae2013-12-26 12:16:38 +09001016 if (!host)
Linus Walleij6c009ab2010-09-13 00:35:22 +02001017 return -ENOMEM;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001018
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +01001019 nand = &host->nand;
1020
1021 ret = fsmc_nand_probe_config_dt(pdev, host, nand);
1022 if (ret)
1023 return ret;
1024
Linus Walleij6c009ab2010-09-13 00:35:22 +02001025 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_data");
Thierry Redingb0de7742013-01-21 11:09:12 +01001026 host->data_va = devm_ioremap_resource(&pdev->dev, res);
1027 if (IS_ERR(host->data_va))
1028 return PTR_ERR(host->data_va);
Stefan Roesecbf29b82015-10-02 12:40:20 +02001029
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001030 host->data_pa = (dma_addr_t)res->start;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001031
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001032 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_addr");
Thierry Redingb0de7742013-01-21 11:09:12 +01001033 host->addr_va = devm_ioremap_resource(&pdev->dev, res);
1034 if (IS_ERR(host->addr_va))
1035 return PTR_ERR(host->addr_va);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001036
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001037 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_cmd");
Thierry Redingb0de7742013-01-21 11:09:12 +01001038 host->cmd_va = devm_ioremap_resource(&pdev->dev, res);
1039 if (IS_ERR(host->cmd_va))
1040 return PTR_ERR(host->cmd_va);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001041
1042 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "fsmc_regs");
Miquel Raynal4df6ed42018-02-16 15:22:47 +01001043 base = devm_ioremap_resource(&pdev->dev, res);
1044 if (IS_ERR(base))
1045 return PTR_ERR(base);
1046
1047 host->regs_va = base + FSMC_NOR_REG_SIZE +
1048 (host->bank * FSMC_NAND_BANK_SZ);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001049
Thomas Petazzonifb8ed2c2017-03-21 11:04:03 +01001050 host->clk = devm_clk_get(&pdev->dev, NULL);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001051 if (IS_ERR(host->clk)) {
1052 dev_err(&pdev->dev, "failed to fetch block clock\n");
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301053 return PTR_ERR(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001054 }
1055
Viresh Kumare25da1c2012-04-17 17:07:57 +05301056 ret = clk_prepare_enable(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001057 if (ret)
Thomas Petazzonifb8ed2c2017-03-21 11:04:03 +01001058 return ret;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001059
Linus Walleij593cd872010-11-29 13:52:19 +01001060 /*
1061 * This device ID is actually a common AMBA ID as used on the
1062 * AMBA PrimeCell bus. However it is not a PrimeCell.
1063 */
1064 for (pid = 0, i = 0; i < 4; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +01001065 pid |= (readl(base + resource_size(res) - 0x20 + 4 * i) & 255) << (i * 8);
Linus Walleij593cd872010-11-29 13:52:19 +01001066 host->pid = pid;
1067 dev_info(&pdev->dev, "FSMC device partno %03x, manufacturer %02x, "
1068 "revision %02x, config %02x\n",
1069 AMBA_PART_BITS(pid), AMBA_MANF_BITS(pid),
1070 AMBA_REV_BITS(pid), AMBA_CONFIG_BITS(pid));
1071
Vipin Kumar712c4ad2012-03-14 11:47:16 +05301072 host->dev = &pdev->dev;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301073
1074 if (host->mode == USE_DMA_ACCESS)
1075 init_completion(&host->dma_access_complete);
1076
Linus Walleij6c009ab2010-09-13 00:35:22 +02001077 /* Link all private pointers */
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001078 mtd = nand_to_mtd(&host->nand);
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001079 nand_set_controller_data(nand, host);
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +01001080 nand_set_flash_node(nand, pdev->dev.of_node);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001081
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001082 mtd->dev.parent = &pdev->dev;
Miquel Raynal4da712e2018-02-16 15:22:48 +01001083 nand->exec_op = fsmc_exec_op;
1084 nand->select_chip = fsmc_select_chip;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001085 nand->chip_delay = 30;
1086
Stefan Roesee278fc72015-10-19 08:40:13 +02001087 /*
1088 * Setup default ECC mode. nand_dt_init() called from nand_scan_ident()
1089 * can overwrite this value if the DT provides a different value.
1090 */
Linus Walleij6c009ab2010-09-13 00:35:22 +02001091 nand->ecc.mode = NAND_ECC_HW;
1092 nand->ecc.hwctl = fsmc_enable_hwecc;
1093 nand->ecc.size = 512;
Vipin Kumar467e6e72012-03-14 11:47:12 +05301094 nand->badblockbits = 7;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001095
Miquel Raynal4da712e2018-02-16 15:22:48 +01001096 if (host->mode == USE_DMA_ACCESS) {
Vipin Kumar4774fb02012-03-14 11:47:18 +05301097 dma_cap_zero(mask);
1098 dma_cap_set(DMA_MEMCPY, mask);
Thomas Petazzonifeb1e572017-03-21 11:03:59 +01001099 host->read_dma_chan = dma_request_channel(mask, filter, NULL);
Vipin Kumar4774fb02012-03-14 11:47:18 +05301100 if (!host->read_dma_chan) {
1101 dev_err(&pdev->dev, "Unable to get read dma channel\n");
Miquel Raynal43fab012018-04-21 20:00:36 +02001102 goto disable_clk;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301103 }
Thomas Petazzonifeb1e572017-03-21 11:03:59 +01001104 host->write_dma_chan = dma_request_channel(mask, filter, NULL);
Vipin Kumar4774fb02012-03-14 11:47:18 +05301105 if (!host->write_dma_chan) {
1106 dev_err(&pdev->dev, "Unable to get write dma channel\n");
Miquel Raynal43fab012018-04-21 20:00:36 +02001107 goto release_dma_read_chan;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301108 }
Vipin Kumar604e7542012-03-14 11:47:17 +05301109 }
1110
Thomas Petazzonid9fb0792017-04-29 10:52:35 +02001111 if (host->dev_timings)
1112 fsmc_nand_setup(host, host->dev_timings);
1113 else
1114 nand->setup_data_interface = fsmc_setup_data_interface;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001115
Linus Walleij593cd872010-11-29 13:52:19 +01001116 if (AMBA_REV_BITS(host->pid) >= 8) {
Linus Walleij6c009ab2010-09-13 00:35:22 +02001117 nand->ecc.read_page = fsmc_read_page_hwecc;
1118 nand->ecc.calculate = fsmc_read_hwecc_ecc4;
Armando Visconti753e0132012-03-07 17:00:54 +05301119 nand->ecc.correct = fsmc_bch8_correct_data;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001120 nand->ecc.bytes = 13;
Mike Dunn6a918ba2012-03-11 14:21:11 -07001121 nand->ecc.strength = 8;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001122 }
1123
1124 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001125 * Scan to find existence of the device
Linus Walleij6c009ab2010-09-13 00:35:22 +02001126 */
Miquel Raynal3bbddfa2018-07-20 17:14:59 +02001127 nand->dummy_controller.ops = &fsmc_nand_controller_ops;
Boris Brezillon00ad3782018-09-06 14:05:14 +02001128 ret = nand_scan(nand, 1);
Masahiro Yamadaad5678e2016-11-04 19:43:00 +09001129 if (ret)
Miquel Raynal43fab012018-04-21 20:00:36 +02001130 goto release_dma_write_chan;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001131
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001132 mtd->name = "nand";
Thomas Petazzoniede29a02017-03-21 11:04:00 +01001133 ret = mtd_device_register(mtd, NULL, 0);
Jamie Iles99335d02011-05-23 10:23:23 +01001134 if (ret)
Miquel Raynal682cae22018-04-21 20:00:37 +02001135 goto cleanup_nand;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001136
1137 platform_set_drvdata(pdev, host);
1138 dev_info(&pdev->dev, "FSMC NAND driver registration successful\n");
Miquel Raynal43fab012018-04-21 20:00:36 +02001139
Linus Walleij6c009ab2010-09-13 00:35:22 +02001140 return 0;
1141
Miquel Raynal682cae22018-04-21 20:00:37 +02001142cleanup_nand:
1143 nand_cleanup(nand);
Miquel Raynal43fab012018-04-21 20:00:36 +02001144release_dma_write_chan:
Vipin Kumar4774fb02012-03-14 11:47:18 +05301145 if (host->mode == USE_DMA_ACCESS)
1146 dma_release_channel(host->write_dma_chan);
Miquel Raynal43fab012018-04-21 20:00:36 +02001147release_dma_read_chan:
Vipin Kumar4774fb02012-03-14 11:47:18 +05301148 if (host->mode == USE_DMA_ACCESS)
1149 dma_release_channel(host->read_dma_chan);
Miquel Raynal43fab012018-04-21 20:00:36 +02001150disable_clk:
Viresh Kumare25da1c2012-04-17 17:07:57 +05301151 clk_disable_unprepare(host->clk);
Miquel Raynal43fab012018-04-21 20:00:36 +02001152
Linus Walleij6c009ab2010-09-13 00:35:22 +02001153 return ret;
1154}
1155
1156/*
1157 * Clean up routine
1158 */
1159static int fsmc_nand_remove(struct platform_device *pdev)
1160{
1161 struct fsmc_nand_data *host = platform_get_drvdata(pdev);
1162
Linus Walleij6c009ab2010-09-13 00:35:22 +02001163 if (host) {
Boris Brezillon59ac2762018-09-06 14:05:15 +02001164 nand_release(&host->nand);
Vipin Kumar4774fb02012-03-14 11:47:18 +05301165
1166 if (host->mode == USE_DMA_ACCESS) {
1167 dma_release_channel(host->write_dma_chan);
1168 dma_release_channel(host->read_dma_chan);
1169 }
Viresh Kumare25da1c2012-04-17 17:07:57 +05301170 clk_disable_unprepare(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001171 }
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301172
Linus Walleij6c009ab2010-09-13 00:35:22 +02001173 return 0;
1174}
1175
Jingoo Han80ce4dd2013-03-26 15:53:48 +09001176#ifdef CONFIG_PM_SLEEP
Linus Walleij6c009ab2010-09-13 00:35:22 +02001177static int fsmc_nand_suspend(struct device *dev)
1178{
1179 struct fsmc_nand_data *host = dev_get_drvdata(dev);
1180 if (host)
Viresh Kumare25da1c2012-04-17 17:07:57 +05301181 clk_disable_unprepare(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001182 return 0;
1183}
1184
1185static int fsmc_nand_resume(struct device *dev)
1186{
1187 struct fsmc_nand_data *host = dev_get_drvdata(dev);
Shiraz Hashimf63acb72012-03-14 11:47:13 +05301188 if (host) {
Viresh Kumare25da1c2012-04-17 17:07:57 +05301189 clk_prepare_enable(host->clk);
Thomas Petazzonid9fb0792017-04-29 10:52:35 +02001190 if (host->dev_timings)
1191 fsmc_nand_setup(host, host->dev_timings);
Shiraz Hashimf63acb72012-03-14 11:47:13 +05301192 }
Linus Walleij6c009ab2010-09-13 00:35:22 +02001193 return 0;
1194}
Jingoo Han80ce4dd2013-03-26 15:53:48 +09001195#endif
Linus Walleij6c009ab2010-09-13 00:35:22 +02001196
Shiraz Hashimf63acb72012-03-14 11:47:13 +05301197static SIMPLE_DEV_PM_OPS(fsmc_nand_pm_ops, fsmc_nand_suspend, fsmc_nand_resume);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001198
Stefan Roeseeea62812012-03-16 10:19:31 +01001199static const struct of_device_id fsmc_nand_id_table[] = {
1200 { .compatible = "st,spear600-fsmc-nand" },
Linus Walleijba785202013-01-05 22:28:32 +01001201 { .compatible = "stericsson,fsmc-nand" },
Stefan Roeseeea62812012-03-16 10:19:31 +01001202 {}
1203};
1204MODULE_DEVICE_TABLE(of, fsmc_nand_id_table);
Stefan Roeseeea62812012-03-16 10:19:31 +01001205
Linus Walleij6c009ab2010-09-13 00:35:22 +02001206static struct platform_driver fsmc_nand_driver = {
1207 .remove = fsmc_nand_remove,
1208 .driver = {
Linus Walleij6c009ab2010-09-13 00:35:22 +02001209 .name = "fsmc-nand",
Thomas Petazzoni33575b22017-03-21 11:04:05 +01001210 .of_match_table = fsmc_nand_id_table,
Linus Walleij6c009ab2010-09-13 00:35:22 +02001211 .pm = &fsmc_nand_pm_ops,
Linus Walleij6c009ab2010-09-13 00:35:22 +02001212 },
1213};
1214
Jingoo Han307d2a512013-03-05 13:30:36 +09001215module_platform_driver_probe(fsmc_nand_driver, fsmc_nand_probe);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001216
1217MODULE_LICENSE("GPL");
1218MODULE_AUTHOR("Vipin Kumar <vipin.kumar@st.com>, Ashish Priyadarshi");
1219MODULE_DESCRIPTION("NAND driver for SPEAr Platforms");