blob: ea69ac6e6d7a9e46d9d564469735a89862ca8c96 [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 Brezillon858838b2018-09-06 14:05:33 +0200343static int fsmc_setup_data_interface(struct nand_chip *nand, int csline,
Boris Brezillon104e4422017-03-16 09:35:58 +0100344 const struct nand_data_interface *conf)
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200345{
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200346 struct fsmc_nand_data *host = nand_get_controller_data(nand);
347 struct fsmc_nand_timings tims;
348 const struct nand_sdr_timings *sdrt;
349 int ret;
350
351 sdrt = nand_get_sdr_timings(conf);
352 if (IS_ERR(sdrt))
353 return PTR_ERR(sdrt);
354
355 ret = fsmc_calc_timings(host, sdrt, &tims);
356 if (ret)
357 return ret;
358
Boris Brezillon104e4422017-03-16 09:35:58 +0100359 if (csline == NAND_DATA_IFACE_CHECK_ONLY)
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200360 return 0;
361
362 fsmc_nand_setup(host, &tims);
363
364 return 0;
365}
366
Linus Walleij6c009ab2010-09-13 00:35:22 +0200367/*
368 * fsmc_enable_hwecc - Enables Hardware ECC through FSMC registers
369 */
Boris Brezillonec476362018-09-06 14:05:17 +0200370static void fsmc_enable_hwecc(struct nand_chip *chip, int mode)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200371{
Boris Brezillonec476362018-09-06 14:05:17 +0200372 struct fsmc_nand_data *host = mtd_to_fsmc(nand_to_mtd(chip));
Linus Walleij6c009ab2010-09-13 00:35:22 +0200373
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200374 writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCPLEN_256,
375 host->regs_va + FSMC_PC);
376 writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCEN,
377 host->regs_va + FSMC_PC);
378 writel_relaxed(readl(host->regs_va + FSMC_PC) | FSMC_ECCEN,
379 host->regs_va + FSMC_PC);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200380}
381
382/*
383 * fsmc_read_hwecc_ecc4 - Hardware ECC calculator for ecc4 option supported by
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300384 * FSMC. ECC is 13 bytes for 512 bytes of data (supports error correction up to
Linus Walleij6c009ab2010-09-13 00:35:22 +0200385 * max of 8-bits)
386 */
Boris Brezillonaf37d2c2018-09-06 14:05:18 +0200387static int fsmc_read_hwecc_ecc4(struct nand_chip *chip, const uint8_t *data,
Linus Walleij6c009ab2010-09-13 00:35:22 +0200388 uint8_t *ecc)
389{
Boris Brezillonaf37d2c2018-09-06 14:05:18 +0200390 struct fsmc_nand_data *host = mtd_to_fsmc(nand_to_mtd(chip));
Linus Walleij6c009ab2010-09-13 00:35:22 +0200391 uint32_t ecc_tmp;
392 unsigned long deadline = jiffies + FSMC_BUSY_WAIT_TIMEOUT;
393
394 do {
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100395 if (readl_relaxed(host->regs_va + STS) & FSMC_CODE_RDY)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200396 break;
397 else
398 cond_resched();
399 } while (!time_after_eq(jiffies, deadline));
400
Vipin Kumar712c4ad2012-03-14 11:47:16 +0530401 if (time_after_eq(jiffies, deadline)) {
402 dev_err(host->dev, "calculate ecc timed out\n");
403 return -ETIMEDOUT;
404 }
405
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100406 ecc_tmp = readl_relaxed(host->regs_va + ECC1);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200407 ecc[0] = (uint8_t) (ecc_tmp >> 0);
408 ecc[1] = (uint8_t) (ecc_tmp >> 8);
409 ecc[2] = (uint8_t) (ecc_tmp >> 16);
410 ecc[3] = (uint8_t) (ecc_tmp >> 24);
411
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100412 ecc_tmp = readl_relaxed(host->regs_va + ECC2);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200413 ecc[4] = (uint8_t) (ecc_tmp >> 0);
414 ecc[5] = (uint8_t) (ecc_tmp >> 8);
415 ecc[6] = (uint8_t) (ecc_tmp >> 16);
416 ecc[7] = (uint8_t) (ecc_tmp >> 24);
417
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100418 ecc_tmp = readl_relaxed(host->regs_va + ECC3);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200419 ecc[8] = (uint8_t) (ecc_tmp >> 0);
420 ecc[9] = (uint8_t) (ecc_tmp >> 8);
421 ecc[10] = (uint8_t) (ecc_tmp >> 16);
422 ecc[11] = (uint8_t) (ecc_tmp >> 24);
423
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100424 ecc_tmp = readl_relaxed(host->regs_va + STS);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200425 ecc[12] = (uint8_t) (ecc_tmp >> 16);
426
427 return 0;
428}
429
430/*
431 * fsmc_read_hwecc_ecc1 - Hardware ECC calculator for ecc1 option supported by
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300432 * FSMC. ECC is 3 bytes for 512 bytes of data (supports error correction up to
Linus Walleij6c009ab2010-09-13 00:35:22 +0200433 * max of 1-bit)
434 */
Boris Brezillonaf37d2c2018-09-06 14:05:18 +0200435static int fsmc_read_hwecc_ecc1(struct nand_chip *chip, const uint8_t *data,
Linus Walleij6c009ab2010-09-13 00:35:22 +0200436 uint8_t *ecc)
437{
Boris Brezillonaf37d2c2018-09-06 14:05:18 +0200438 struct fsmc_nand_data *host = mtd_to_fsmc(nand_to_mtd(chip));
Linus Walleij6c009ab2010-09-13 00:35:22 +0200439 uint32_t ecc_tmp;
440
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100441 ecc_tmp = readl_relaxed(host->regs_va + ECC1);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200442 ecc[0] = (uint8_t) (ecc_tmp >> 0);
443 ecc[1] = (uint8_t) (ecc_tmp >> 8);
444 ecc[2] = (uint8_t) (ecc_tmp >> 16);
445
446 return 0;
447}
448
Vipin Kumar519300c2012-03-07 17:00:49 +0530449/* Count the number of 0's in buff upto a max of max_bits */
450static int count_written_bits(uint8_t *buff, int size, int max_bits)
451{
452 int k, written_bits = 0;
453
454 for (k = 0; k < size; k++) {
455 written_bits += hweight8(~buff[k]);
456 if (written_bits > max_bits)
457 break;
458 }
459
460 return written_bits;
461}
462
Vipin Kumar4774fb02012-03-14 11:47:18 +0530463static void dma_complete(void *param)
464{
465 struct fsmc_nand_data *host = param;
466
467 complete(&host->dma_access_complete);
468}
469
470static int dma_xfer(struct fsmc_nand_data *host, void *buffer, int len,
471 enum dma_data_direction direction)
472{
473 struct dma_chan *chan;
474 struct dma_device *dma_dev;
475 struct dma_async_tx_descriptor *tx;
476 dma_addr_t dma_dst, dma_src, dma_addr;
477 dma_cookie_t cookie;
478 unsigned long flags = DMA_CTRL_ACK | DMA_PREP_INTERRUPT;
479 int ret;
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400480 unsigned long time_left;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530481
482 if (direction == DMA_TO_DEVICE)
483 chan = host->write_dma_chan;
484 else if (direction == DMA_FROM_DEVICE)
485 chan = host->read_dma_chan;
486 else
487 return -EINVAL;
488
489 dma_dev = chan->device;
490 dma_addr = dma_map_single(dma_dev->dev, buffer, len, direction);
491
492 if (direction == DMA_TO_DEVICE) {
493 dma_src = dma_addr;
494 dma_dst = host->data_pa;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530495 } else {
496 dma_src = host->data_pa;
497 dma_dst = dma_addr;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530498 }
499
500 tx = dma_dev->device_prep_dma_memcpy(chan, dma_dst, dma_src,
501 len, flags);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530502 if (!tx) {
503 dev_err(host->dev, "device_prep_dma_memcpy error\n");
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000504 ret = -EIO;
505 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530506 }
507
508 tx->callback = dma_complete;
509 tx->callback_param = host;
510 cookie = tx->tx_submit(tx);
511
512 ret = dma_submit_error(cookie);
513 if (ret) {
514 dev_err(host->dev, "dma_submit_error %d\n", cookie);
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000515 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530516 }
517
518 dma_async_issue_pending(chan);
519
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400520 time_left =
Vipin Kumar928aa2a2012-10-09 16:14:48 +0530521 wait_for_completion_timeout(&host->dma_access_complete,
Vipin Kumar4774fb02012-03-14 11:47:18 +0530522 msecs_to_jiffies(3000));
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400523 if (time_left == 0) {
Vinod Koulb177ea32014-10-11 21:10:32 +0530524 dmaengine_terminate_all(chan);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530525 dev_err(host->dev, "wait_for_completion_timeout\n");
Nicholas Mc Guire0bda3e12015-03-13 07:54:45 -0400526 ret = -ETIMEDOUT;
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000527 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530528 }
529
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000530 ret = 0;
531
532unmap_dma:
533 dma_unmap_single(dma_dev->dev, dma_addr, len, direction);
534
535 return ret;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530536}
537
Linus Walleij6c009ab2010-09-13 00:35:22 +0200538/*
Vipin Kumar604e7542012-03-14 11:47:17 +0530539 * fsmc_write_buf - write buffer to chip
540 * @mtd: MTD device structure
541 * @buf: data buffer
542 * @len: number of bytes to write
543 */
544static void fsmc_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
545{
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100546 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar604e7542012-03-14 11:47:17 +0530547 int i;
Vipin Kumar604e7542012-03-14 11:47:17 +0530548
Boris Brezillonf55824c2018-07-09 22:09:35 +0200549 if (IS_ALIGNED((uintptr_t)buf, sizeof(uint32_t)) &&
Vipin Kumar604e7542012-03-14 11:47:17 +0530550 IS_ALIGNED(len, sizeof(uint32_t))) {
551 uint32_t *p = (uint32_t *)buf;
552 len = len >> 2;
553 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100554 writel_relaxed(p[i], host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530555 } else {
556 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100557 writeb_relaxed(buf[i], host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530558 }
559}
560
561/*
562 * fsmc_read_buf - read chip data into buffer
563 * @mtd: MTD device structure
564 * @buf: buffer to store date
565 * @len: number of bytes to read
566 */
567static void fsmc_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
568{
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100569 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar604e7542012-03-14 11:47:17 +0530570 int i;
Vipin Kumar604e7542012-03-14 11:47:17 +0530571
Boris Brezillonf55824c2018-07-09 22:09:35 +0200572 if (IS_ALIGNED((uintptr_t)buf, sizeof(uint32_t)) &&
Vipin Kumar604e7542012-03-14 11:47:17 +0530573 IS_ALIGNED(len, sizeof(uint32_t))) {
574 uint32_t *p = (uint32_t *)buf;
575 len = len >> 2;
576 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100577 p[i] = readl_relaxed(host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530578 } else {
579 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100580 buf[i] = readb_relaxed(host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530581 }
582}
583
584/*
Vipin Kumar4774fb02012-03-14 11:47:18 +0530585 * fsmc_read_buf_dma - read chip data into buffer
586 * @mtd: MTD device structure
587 * @buf: buffer to store date
588 * @len: number of bytes to read
589 */
590static void fsmc_read_buf_dma(struct mtd_info *mtd, uint8_t *buf, int len)
591{
Boris BREZILLON277af422015-12-10 08:59:46 +0100592 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530593
Vipin Kumar4774fb02012-03-14 11:47:18 +0530594 dma_xfer(host, buf, len, DMA_FROM_DEVICE);
595}
596
597/*
598 * fsmc_write_buf_dma - write buffer to chip
599 * @mtd: MTD device structure
600 * @buf: data buffer
601 * @len: number of bytes to write
602 */
603static void fsmc_write_buf_dma(struct mtd_info *mtd, const uint8_t *buf,
604 int len)
605{
Boris BREZILLON277af422015-12-10 08:59:46 +0100606 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530607
Vipin Kumar4774fb02012-03-14 11:47:18 +0530608 dma_xfer(host, (void *)buf, len, DMA_TO_DEVICE);
609}
610
Miquel Raynal4da712e2018-02-16 15:22:48 +0100611/* fsmc_select_chip - assert or deassert nCE */
Boris Brezillon550b9fc2018-11-11 08:55:17 +0100612static void fsmc_ce_ctrl(struct fsmc_nand_data *host, bool assert)
Miquel Raynal4da712e2018-02-16 15:22:48 +0100613{
Boris Brezillon550b9fc2018-11-11 08:55:17 +0100614 u32 pc = readl(host->regs_va + FSMC_PC);
Miquel Raynal4da712e2018-02-16 15:22:48 +0100615
Boris Brezillon550b9fc2018-11-11 08:55:17 +0100616 if (!assert)
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200617 writel_relaxed(pc & ~FSMC_ENABLE, host->regs_va + FSMC_PC);
Miquel Raynal4da712e2018-02-16 15:22:48 +0100618 else
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200619 writel_relaxed(pc | FSMC_ENABLE, host->regs_va + FSMC_PC);
Miquel Raynal4da712e2018-02-16 15:22:48 +0100620
Boris Brezillon550b9fc2018-11-11 08:55:17 +0100621 /*
622 * nCE line changes must be applied before returning from this
623 * function.
624 */
Miquel Raynal4da712e2018-02-16 15:22:48 +0100625 mb();
626}
627
628/*
629 * fsmc_exec_op - hook called by the core to execute NAND operations
630 *
631 * This controller is simple enough and thus does not need to use the parser
632 * provided by the core, instead, handle every situation here.
633 */
634static int fsmc_exec_op(struct nand_chip *chip, const struct nand_operation *op,
635 bool check_only)
636{
637 struct mtd_info *mtd = nand_to_mtd(chip);
638 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
639 const struct nand_op_instr *instr = NULL;
640 int ret = 0;
641 unsigned int op_id;
642 int i;
643
644 pr_debug("Executing operation [%d instructions]:\n", op->ninstrs);
Boris Brezillon550b9fc2018-11-11 08:55:17 +0100645
646 fsmc_ce_ctrl(host, true);
647
Miquel Raynal4da712e2018-02-16 15:22:48 +0100648 for (op_id = 0; op_id < op->ninstrs; op_id++) {
649 instr = &op->instrs[op_id];
650
651 switch (instr->type) {
652 case NAND_OP_CMD_INSTR:
653 pr_debug(" ->CMD [0x%02x]\n",
654 instr->ctx.cmd.opcode);
655
656 writeb_relaxed(instr->ctx.cmd.opcode, host->cmd_va);
657 break;
658
659 case NAND_OP_ADDR_INSTR:
660 pr_debug(" ->ADDR [%d cyc]",
661 instr->ctx.addr.naddrs);
662
663 for (i = 0; i < instr->ctx.addr.naddrs; i++)
664 writeb_relaxed(instr->ctx.addr.addrs[i],
665 host->addr_va);
666 break;
667
668 case NAND_OP_DATA_IN_INSTR:
669 pr_debug(" ->DATA_IN [%d B%s]\n", instr->ctx.data.len,
670 instr->ctx.data.force_8bit ?
671 ", force 8-bit" : "");
672
673 if (host->mode == USE_DMA_ACCESS)
674 fsmc_read_buf_dma(mtd, instr->ctx.data.buf.in,
675 instr->ctx.data.len);
676 else
677 fsmc_read_buf(mtd, instr->ctx.data.buf.in,
678 instr->ctx.data.len);
679 break;
680
681 case NAND_OP_DATA_OUT_INSTR:
682 pr_debug(" ->DATA_OUT [%d B%s]\n", instr->ctx.data.len,
683 instr->ctx.data.force_8bit ?
684 ", force 8-bit" : "");
685
686 if (host->mode == USE_DMA_ACCESS)
687 fsmc_write_buf_dma(mtd, instr->ctx.data.buf.out,
688 instr->ctx.data.len);
689 else
690 fsmc_write_buf(mtd, instr->ctx.data.buf.out,
691 instr->ctx.data.len);
692 break;
693
694 case NAND_OP_WAITRDY_INSTR:
695 pr_debug(" ->WAITRDY [max %d ms]\n",
696 instr->ctx.waitrdy.timeout_ms);
697
698 ret = nand_soft_waitrdy(chip,
699 instr->ctx.waitrdy.timeout_ms);
700 break;
701 }
702 }
703
Boris Brezillon550b9fc2018-11-11 08:55:17 +0100704 fsmc_ce_ctrl(host, false);
705
Miquel Raynal4da712e2018-02-16 15:22:48 +0100706 return ret;
707}
708
Vipin Kumar4774fb02012-03-14 11:47:18 +0530709/*
Linus Walleij6c009ab2010-09-13 00:35:22 +0200710 * fsmc_read_page_hwecc
Linus Walleij6c009ab2010-09-13 00:35:22 +0200711 * @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 */
Boris Brezillonb9761682018-09-06 14:05:20 +0200722static int fsmc_read_page_hwecc(struct nand_chip *chip, uint8_t *buf,
723 int oob_required, int page)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200724{
Boris Brezillonb9761682018-09-06 14:05:20 +0200725 struct mtd_info *mtd = nand_to_mtd(chip);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200726 int i, j, s, stat, eccsize = chip->ecc.size;
727 int eccbytes = chip->ecc.bytes;
728 int eccsteps = chip->ecc.steps;
729 uint8_t *p = buf;
Masahiro Yamadac0313b92017-12-05 17:47:16 +0900730 uint8_t *ecc_calc = chip->ecc.calc_buf;
731 uint8_t *ecc_code = chip->ecc.code_buf;
Gustavo A. R. Silva41d6f0d2018-10-10 17:58:58 +0200732 int off, len, ret, group = 0;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200733 /*
734 * ecc_oob is intentionally taken as uint16_t. In 16bit devices, we
735 * end up reading 14 bytes (7 words) from oob. The local array is
736 * to maintain word alignment
737 */
738 uint16_t ecc_oob[7];
739 uint8_t *oob = (uint8_t *)&ecc_oob[0];
Mike Dunn3f91e942012-04-25 12:06:09 -0700740 unsigned int max_bitflips = 0;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200741
742 for (i = 0, s = 0; s < eccsteps; s++, i += eccbytes, p += eccsize) {
Boris Brezillon97d90da2017-11-30 18:01:29 +0100743 nand_read_page_op(chip, page, s * eccsize, NULL, 0);
Boris Brezillonec476362018-09-06 14:05:17 +0200744 chip->ecc.hwctl(chip, NAND_ECC_READ);
Gustavo A. R. Silva41d6f0d2018-10-10 17:58:58 +0200745 ret = nand_read_data_op(chip, p, eccsize, false);
746 if (ret)
747 return ret;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200748
749 for (j = 0; j < eccbytes;) {
Boris Brezillon04a123a2016-02-09 15:01:21 +0100750 struct mtd_oob_region oobregion;
Boris Brezillon04a123a2016-02-09 15:01:21 +0100751
752 ret = mtd_ooblayout_ecc(mtd, group++, &oobregion);
753 if (ret)
754 return ret;
755
756 off = oobregion.offset;
757 len = oobregion.length;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200758
759 /*
Vipin Kumar4cbe1bf02012-03-14 11:47:09 +0530760 * length is intentionally kept a higher multiple of 2
761 * to read at least 13 bytes even in case of 16 bit NAND
762 * devices
763 */
Vipin Kumaraea686b2012-03-14 11:47:10 +0530764 if (chip->options & NAND_BUSWIDTH_16)
765 len = roundup(len, 2);
766
Boris Brezillon97d90da2017-11-30 18:01:29 +0100767 nand_read_oob_op(chip, page, off, oob + j, len);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200768 j += len;
769 }
770
Vipin Kumar519300c2012-03-07 17:00:49 +0530771 memcpy(&ecc_code[i], oob, chip->ecc.bytes);
Boris Brezillonaf37d2c2018-09-06 14:05:18 +0200772 chip->ecc.calculate(chip, p, &ecc_calc[i]);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200773
Boris Brezillon00da2ea2018-09-06 14:05:19 +0200774 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -0700775 if (stat < 0) {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200776 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -0700777 } else {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200778 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -0700779 max_bitflips = max_t(unsigned int, max_bitflips, stat);
780 }
Linus Walleij6c009ab2010-09-13 00:35:22 +0200781 }
782
Mike Dunn3f91e942012-04-25 12:06:09 -0700783 return max_bitflips;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200784}
785
786/*
Armando Visconti753e0132012-03-07 17:00:54 +0530787 * fsmc_bch8_correct_data
Linus Walleij6c009ab2010-09-13 00:35:22 +0200788 * @mtd: mtd info structure
789 * @dat: buffer of read data
790 * @read_ecc: ecc read from device spare area
791 * @calc_ecc: ecc calculated from read data
792 *
793 * calc_ecc is a 104 bit information containing maximum of 8 error
794 * offset informations of 13 bits each in 512 bytes of read data.
795 */
Boris Brezillon00da2ea2018-09-06 14:05:19 +0200796static int fsmc_bch8_correct_data(struct nand_chip *chip, uint8_t *dat,
797 uint8_t *read_ecc, uint8_t *calc_ecc)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200798{
Boris Brezillon00da2ea2018-09-06 14:05:19 +0200799 struct fsmc_nand_data *host = mtd_to_fsmc(nand_to_mtd(chip));
Armando Viscontia612c2a2012-03-07 17:00:53 +0530800 uint32_t err_idx[8];
Linus Walleij6c009ab2010-09-13 00:35:22 +0200801 uint32_t num_err, i;
Armando Visconti753e0132012-03-07 17:00:54 +0530802 uint32_t ecc1, ecc2, ecc3, ecc4;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200803
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100804 num_err = (readl_relaxed(host->regs_va + STS) >> 10) & 0xF;
Vipin Kumar519300c2012-03-07 17:00:49 +0530805
806 /* no bit flipping */
807 if (likely(num_err == 0))
808 return 0;
809
810 /* too many errors */
811 if (unlikely(num_err > 8)) {
812 /*
813 * This is a temporary erase check. A newly erased page read
814 * would result in an ecc error because the oob data is also
815 * erased to FF and the calculated ecc for an FF data is not
816 * FF..FF.
817 * This is a workaround to skip performing correction in case
818 * data is FF..FF
819 *
820 * Logic:
821 * For every page, each bit written as 0 is counted until these
822 * number of bits are greater than 8 (the maximum correction
823 * capability of FSMC for each 512 + 13 bytes)
824 */
825
826 int bits_ecc = count_written_bits(read_ecc, chip->ecc.bytes, 8);
827 int bits_data = count_written_bits(dat, chip->ecc.size, 8);
828
829 if ((bits_ecc + bits_data) <= 8) {
830 if (bits_data)
831 memset(dat, 0xff, chip->ecc.size);
832 return bits_data;
833 }
834
835 return -EBADMSG;
836 }
837
Linus Walleij6c009ab2010-09-13 00:35:22 +0200838 /*
839 * ------------------- calc_ecc[] bit wise -----------|--13 bits--|
840 * |---idx[7]--|--.....-----|---idx[2]--||---idx[1]--||---idx[0]--|
841 *
842 * calc_ecc is a 104 bit information containing maximum of 8 error
843 * offset informations of 13 bits each. calc_ecc is copied into a
844 * uint64_t array and error offset indexes are populated in err_idx
845 * array
846 */
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100847 ecc1 = readl_relaxed(host->regs_va + ECC1);
848 ecc2 = readl_relaxed(host->regs_va + ECC2);
849 ecc3 = readl_relaxed(host->regs_va + ECC3);
850 ecc4 = readl_relaxed(host->regs_va + STS);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200851
Armando Visconti753e0132012-03-07 17:00:54 +0530852 err_idx[0] = (ecc1 >> 0) & 0x1FFF;
853 err_idx[1] = (ecc1 >> 13) & 0x1FFF;
854 err_idx[2] = (((ecc2 >> 0) & 0x7F) << 6) | ((ecc1 >> 26) & 0x3F);
855 err_idx[3] = (ecc2 >> 7) & 0x1FFF;
856 err_idx[4] = (((ecc3 >> 0) & 0x1) << 12) | ((ecc2 >> 20) & 0xFFF);
857 err_idx[5] = (ecc3 >> 1) & 0x1FFF;
858 err_idx[6] = (ecc3 >> 14) & 0x1FFF;
859 err_idx[7] = (((ecc4 >> 16) & 0xFF) << 5) | ((ecc3 >> 27) & 0x1F);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200860
861 i = 0;
862 while (num_err--) {
863 change_bit(0, (unsigned long *)&err_idx[i]);
864 change_bit(1, (unsigned long *)&err_idx[i]);
865
Vipin Kumarb533f8d2012-03-14 11:47:11 +0530866 if (err_idx[i] < chip->ecc.size * 8) {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200867 change_bit(err_idx[i], (unsigned long *)dat);
868 i++;
869 }
870 }
871 return i;
872}
873
Vipin Kumar4774fb02012-03-14 11:47:18 +0530874static bool filter(struct dma_chan *chan, void *slave)
875{
876 chan->private = slave;
877 return true;
878}
879
Bill Pemberton06f25512012-11-19 13:23:07 -0500880static int fsmc_nand_probe_config_dt(struct platform_device *pdev,
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100881 struct fsmc_nand_data *host,
882 struct nand_chip *nand)
Stefan Roeseeea62812012-03-16 10:19:31 +0100883{
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100884 struct device_node *np = pdev->dev.of_node;
Stefan Roeseeea62812012-03-16 10:19:31 +0100885 u32 val;
Stefan Roese62b57f42015-03-19 14:34:29 +0100886 int ret;
Stefan Roeseeea62812012-03-16 10:19:31 +0100887
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100888 nand->options = 0;
Thomas Petazzoniee568742017-03-21 11:03:53 +0100889
Stefan Roeseeea62812012-03-16 10:19:31 +0100890 if (!of_property_read_u32(np, "bank-width", &val)) {
891 if (val == 2) {
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100892 nand->options |= NAND_BUSWIDTH_16;
Stefan Roeseeea62812012-03-16 10:19:31 +0100893 } else if (val != 1) {
894 dev_err(&pdev->dev, "invalid bank-width %u\n", val);
895 return -EINVAL;
896 }
897 }
Thomas Petazzoniee568742017-03-21 11:03:53 +0100898
Stefan Roeseeea62812012-03-16 10:19:31 +0100899 if (of_get_property(np, "nand-skip-bbtscan", NULL))
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100900 nand->options |= NAND_SKIP_BBTSCAN;
Stefan Roeseeea62812012-03-16 10:19:31 +0100901
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100902 host->dev_timings = devm_kzalloc(&pdev->dev,
903 sizeof(*host->dev_timings), GFP_KERNEL);
904 if (!host->dev_timings)
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200905 return -ENOMEM;
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100906 ret = of_property_read_u8_array(np, "timings", (u8 *)host->dev_timings,
907 sizeof(*host->dev_timings));
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200908 if (ret)
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100909 host->dev_timings = NULL;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200910
911 /* Set default NAND bank to 0 */
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100912 host->bank = 0;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200913 if (!of_property_read_u32(np, "bank", &val)) {
914 if (val > 3) {
915 dev_err(&pdev->dev, "invalid bank %u\n", val);
916 return -EINVAL;
917 }
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100918 host->bank = val;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200919 }
Stefan Roeseeea62812012-03-16 10:19:31 +0100920 return 0;
921}
Stefan Roeseeea62812012-03-16 10:19:31 +0100922
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200923static int fsmc_nand_attach_chip(struct nand_chip *nand)
924{
925 struct mtd_info *mtd = nand_to_mtd(nand);
926 struct fsmc_nand_data *host = mtd_to_fsmc(mtd);
927
928 if (AMBA_REV_BITS(host->pid) >= 8) {
929 switch (mtd->oobsize) {
930 case 16:
931 case 64:
932 case 128:
933 case 224:
934 case 256:
935 break;
936 default:
937 dev_warn(host->dev,
938 "No oob scheme defined for oobsize %d\n",
939 mtd->oobsize);
940 return -EINVAL;
941 }
942
943 mtd_set_ooblayout(mtd, &fsmc_ecc4_ooblayout_ops);
944
945 return 0;
946 }
947
948 switch (nand->ecc.mode) {
949 case NAND_ECC_HW:
950 dev_info(host->dev, "Using 1-bit HW ECC scheme\n");
951 nand->ecc.calculate = fsmc_read_hwecc_ecc1;
952 nand->ecc.correct = nand_correct_data;
953 nand->ecc.bytes = 3;
954 nand->ecc.strength = 1;
Boris Brezillon309600c2018-09-04 16:23:28 +0200955 nand->ecc.options |= NAND_ECC_SOFT_HAMMING_SM_ORDER;
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200956 break;
957
958 case NAND_ECC_SOFT:
959 if (nand->ecc.algo == NAND_ECC_BCH) {
960 dev_info(host->dev,
961 "Using 4-bit SW BCH ECC scheme\n");
962 break;
963 }
964
965 case NAND_ECC_ON_DIE:
966 break;
967
968 default:
969 dev_err(host->dev, "Unsupported ECC mode!\n");
970 return -ENOTSUPP;
971 }
972
973 /*
974 * Don't set layout for BCH4 SW ECC. This will be
975 * generated later in nand_bch_init() later.
976 */
977 if (nand->ecc.mode == NAND_ECC_HW) {
978 switch (mtd->oobsize) {
979 case 16:
980 case 64:
981 case 128:
982 mtd_set_ooblayout(mtd,
983 &fsmc_ecc1_ooblayout_ops);
984 break;
985 default:
986 dev_warn(host->dev,
987 "No oob scheme defined for oobsize %d\n",
988 mtd->oobsize);
989 return -EINVAL;
990 }
991 }
992
993 return 0;
994}
995
996static const struct nand_controller_ops fsmc_nand_controller_ops = {
997 .attach_chip = fsmc_nand_attach_chip,
998};
999
Linus Walleij6c009ab2010-09-13 00:35:22 +02001000/*
1001 * fsmc_nand_probe - Probe function
1002 * @pdev: platform device structure
1003 */
1004static int __init fsmc_nand_probe(struct platform_device *pdev)
1005{
Linus Walleij6c009ab2010-09-13 00:35:22 +02001006 struct fsmc_nand_data *host;
1007 struct mtd_info *mtd;
1008 struct nand_chip *nand;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001009 struct resource *res;
Miquel Raynal4df6ed42018-02-16 15:22:47 +01001010 void __iomem *base;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301011 dma_cap_mask_t mask;
Linus Walleij4ad916b2010-11-29 13:52:06 +01001012 int ret = 0;
Linus Walleij593cd872010-11-29 13:52:19 +01001013 u32 pid;
1014 int i;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001015
Linus Walleij6c009ab2010-09-13 00:35:22 +02001016 /* Allocate memory for the device structure (and zero it) */
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301017 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
Jingoo Hand9a21ae2013-12-26 12:16:38 +09001018 if (!host)
Linus Walleij6c009ab2010-09-13 00:35:22 +02001019 return -ENOMEM;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001020
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +01001021 nand = &host->nand;
1022
1023 ret = fsmc_nand_probe_config_dt(pdev, host, nand);
1024 if (ret)
1025 return ret;
1026
Linus Walleij6c009ab2010-09-13 00:35:22 +02001027 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_data");
Thierry Redingb0de7742013-01-21 11:09:12 +01001028 host->data_va = devm_ioremap_resource(&pdev->dev, res);
1029 if (IS_ERR(host->data_va))
1030 return PTR_ERR(host->data_va);
Stefan Roesecbf29b82015-10-02 12:40:20 +02001031
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001032 host->data_pa = (dma_addr_t)res->start;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001033
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001034 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_addr");
Thierry Redingb0de7742013-01-21 11:09:12 +01001035 host->addr_va = devm_ioremap_resource(&pdev->dev, res);
1036 if (IS_ERR(host->addr_va))
1037 return PTR_ERR(host->addr_va);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001038
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001039 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_cmd");
Thierry Redingb0de7742013-01-21 11:09:12 +01001040 host->cmd_va = devm_ioremap_resource(&pdev->dev, res);
1041 if (IS_ERR(host->cmd_va))
1042 return PTR_ERR(host->cmd_va);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001043
1044 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "fsmc_regs");
Miquel Raynal4df6ed42018-02-16 15:22:47 +01001045 base = devm_ioremap_resource(&pdev->dev, res);
1046 if (IS_ERR(base))
1047 return PTR_ERR(base);
1048
1049 host->regs_va = base + FSMC_NOR_REG_SIZE +
1050 (host->bank * FSMC_NAND_BANK_SZ);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001051
Thomas Petazzonifb8ed2c2017-03-21 11:04:03 +01001052 host->clk = devm_clk_get(&pdev->dev, NULL);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001053 if (IS_ERR(host->clk)) {
1054 dev_err(&pdev->dev, "failed to fetch block clock\n");
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301055 return PTR_ERR(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001056 }
1057
Viresh Kumare25da1c2012-04-17 17:07:57 +05301058 ret = clk_prepare_enable(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001059 if (ret)
Thomas Petazzonifb8ed2c2017-03-21 11:04:03 +01001060 return ret;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001061
Linus Walleij593cd872010-11-29 13:52:19 +01001062 /*
1063 * This device ID is actually a common AMBA ID as used on the
1064 * AMBA PrimeCell bus. However it is not a PrimeCell.
1065 */
1066 for (pid = 0, i = 0; i < 4; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +01001067 pid |= (readl(base + resource_size(res) - 0x20 + 4 * i) & 255) << (i * 8);
Linus Walleij593cd872010-11-29 13:52:19 +01001068 host->pid = pid;
1069 dev_info(&pdev->dev, "FSMC device partno %03x, manufacturer %02x, "
1070 "revision %02x, config %02x\n",
1071 AMBA_PART_BITS(pid), AMBA_MANF_BITS(pid),
1072 AMBA_REV_BITS(pid), AMBA_CONFIG_BITS(pid));
1073
Vipin Kumar712c4ad2012-03-14 11:47:16 +05301074 host->dev = &pdev->dev;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301075
1076 if (host->mode == USE_DMA_ACCESS)
1077 init_completion(&host->dma_access_complete);
1078
Linus Walleij6c009ab2010-09-13 00:35:22 +02001079 /* Link all private pointers */
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001080 mtd = nand_to_mtd(&host->nand);
Boris BREZILLONd699ed22015-12-10 09:00:41 +01001081 nand_set_controller_data(nand, host);
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +01001082 nand_set_flash_node(nand, pdev->dev.of_node);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001083
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001084 mtd->dev.parent = &pdev->dev;
Miquel Raynal4da712e2018-02-16 15:22:48 +01001085 nand->exec_op = fsmc_exec_op;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001086
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");