blob: c88421a1c078df01218fefd97bea15a8333ab1a6 [file] [log] [blame]
Boris Brezillonbb696342018-11-20 10:02:34 +01001// SPDX-License-Identifier: GPL-2.0
Linus Walleij6c009ab2010-09-13 00:35:22 +02002/*
Linus Walleij6c009ab2010-09-13 00:35:22 +02003 * ST Microelectronics
4 * Flexible Static Memory Controller (FSMC)
5 * Driver for NAND portions
6 *
7 * Copyright © 2010 ST Microelectronics
8 * Vipin Kumar <vipin.kumar@st.com>
9 * Ashish Priyadarshi
10 *
Boris Brezillon187c54482018-02-05 23:02:02 +010011 * Based on drivers/mtd/nand/nomadik_nand.c (removed in v3.8)
Boris Brezillon7b6afee2018-02-05 23:02:03 +010012 * Copyright © 2007 STMicroelectronics Pvt. Ltd.
13 * Copyright © 2009 Alessandro Rubini
Linus Walleij6c009ab2010-09-13 00:35:22 +020014 */
15
16#include <linux/clk.h>
Vipin Kumar4774fb02012-03-14 11:47:18 +053017#include <linux/completion.h>
18#include <linux/dmaengine.h>
19#include <linux/dma-direction.h>
20#include <linux/dma-mapping.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020021#include <linux/err.h>
22#include <linux/init.h>
23#include <linux/module.h>
24#include <linux/resource.h>
25#include <linux/sched.h>
26#include <linux/types.h>
27#include <linux/mtd/mtd.h>
Boris Brezillond4092d72017-08-04 17:29:10 +020028#include <linux/mtd/rawnand.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020029#include <linux/mtd/nand_ecc.h>
30#include <linux/platform_device.h>
Stefan Roeseeea62812012-03-16 10:19:31 +010031#include <linux/of.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020032#include <linux/mtd/partitions.h>
33#include <linux/io.h>
34#include <linux/slab.h>
Linus Walleij593cd872010-11-29 13:52:19 +010035#include <linux/amba/bus.h>
Linus Walleij6c009ab2010-09-13 00:35:22 +020036#include <mtd/mtd-abi.h>
37
Linus Walleij4404d7d2016-12-18 12:34:55 +010038/* fsmc controller registers for NOR flash */
39#define CTRL 0x0
40 /* ctrl register definitions */
Boris Brezillonfc43f452018-11-20 10:02:35 +010041 #define BANK_ENABLE BIT(0)
42 #define MUXED BIT(1)
Linus Walleij4404d7d2016-12-18 12:34:55 +010043 #define NOR_DEV (2 << 2)
Boris Brezillonfc43f452018-11-20 10:02:35 +010044 #define WIDTH_16 BIT(4)
45 #define RSTPWRDWN BIT(6)
46 #define WPROT BIT(7)
47 #define WRT_ENABLE BIT(12)
48 #define WAIT_ENB BIT(13)
Linus Walleij4404d7d2016-12-18 12:34:55 +010049
50#define CTRL_TIM 0x4
51 /* ctrl_tim register definitions */
52
53#define FSMC_NOR_BANK_SZ 0x8
54#define FSMC_NOR_REG_SIZE 0x40
55
Boris Brezillonfc43f452018-11-20 10:02:35 +010056#define FSMC_NOR_REG(base, bank, reg) ((base) + \
57 (FSMC_NOR_BANK_SZ * (bank)) + \
58 (reg))
Linus Walleij4404d7d2016-12-18 12:34:55 +010059
60/* fsmc controller registers for NAND flash */
Boris Brezillon8f3931e2018-07-09 22:09:34 +020061#define FSMC_PC 0x00
Linus Walleij4404d7d2016-12-18 12:34:55 +010062 /* pc register definitions */
Boris Brezillonfc43f452018-11-20 10:02:35 +010063 #define FSMC_RESET BIT(0)
64 #define FSMC_WAITON BIT(1)
65 #define FSMC_ENABLE BIT(2)
66 #define FSMC_DEVTYPE_NAND BIT(3)
67 #define FSMC_DEVWID_16 BIT(4)
68 #define FSMC_ECCEN BIT(6)
69 #define FSMC_ECCPLEN_256 BIT(7)
Linus Walleij4404d7d2016-12-18 12:34:55 +010070 #define FSMC_TCLR_SHIFT (9)
71 #define FSMC_TCLR_MASK (0xF)
Linus Walleij4404d7d2016-12-18 12:34:55 +010072 #define FSMC_TAR_SHIFT (13)
73 #define FSMC_TAR_MASK (0xF)
74#define STS 0x04
75 /* sts register definitions */
Boris Brezillonfc43f452018-11-20 10:02:35 +010076 #define FSMC_CODE_RDY BIT(15)
Linus Walleij4404d7d2016-12-18 12:34:55 +010077#define COMM 0x08
78 /* comm register definitions */
Linus Walleij4404d7d2016-12-18 12:34:55 +010079 #define FSMC_TSET_SHIFT 0
80 #define FSMC_TSET_MASK 0xFF
Linus Walleij4404d7d2016-12-18 12:34:55 +010081 #define FSMC_TWAIT_SHIFT 8
82 #define FSMC_TWAIT_MASK 0xFF
Linus Walleij4404d7d2016-12-18 12:34:55 +010083 #define FSMC_THOLD_SHIFT 16
84 #define FSMC_THOLD_MASK 0xFF
Linus Walleij4404d7d2016-12-18 12:34:55 +010085 #define FSMC_THIZ_SHIFT 24
86 #define FSMC_THIZ_MASK 0xFF
87#define ATTRIB 0x0C
88#define IOATA 0x10
89#define ECC1 0x14
90#define ECC2 0x18
91#define ECC3 0x1C
92#define FSMC_NAND_BANK_SZ 0x20
93
Linus Walleij4404d7d2016-12-18 12:34:55 +010094#define FSMC_BUSY_WAIT_TIMEOUT (1 * HZ)
95
96struct fsmc_nand_timings {
Boris Brezillonfc43f452018-11-20 10:02:35 +010097 u8 tclr;
98 u8 tar;
99 u8 thiz;
100 u8 thold;
101 u8 twait;
102 u8 tset;
Linus Walleij4404d7d2016-12-18 12:34:55 +0100103};
104
105enum access_mode {
106 USE_DMA_ACCESS = 1,
107 USE_WORD_ACCESS,
108};
109
110/**
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100111 * struct fsmc_nand_data - structure for FSMC NAND device state
112 *
Boris Brezillonad711482018-11-20 10:02:33 +0100113 * @base: Inherit from the nand_controller struct
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100114 * @pid: Part ID on the AMBA PrimeCell format
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100115 * @nand: Chip related info for a NAND flash.
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100116 *
117 * @bank: Bank number for probed device.
Boris Brezillon5b47f402018-11-20 10:02:31 +0100118 * @dev: Parent device
119 * @mode: Access mode
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100120 * @clk: Clock structure for FSMC.
121 *
122 * @read_dma_chan: DMA channel for read access
123 * @write_dma_chan: DMA channel for write access to NAND
124 * @dma_access_complete: Completion structure
125 *
Boris Brezillon5b47f402018-11-20 10:02:31 +0100126 * @dev_timings: NAND timings
127 *
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100128 * @data_pa: NAND Physical port for Data.
129 * @data_va: NAND port for Data.
130 * @cmd_va: NAND port for Command.
131 * @addr_va: NAND port for Address.
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100132 * @regs_va: Registers base address for a given bank.
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100133 */
134struct fsmc_nand_data {
Boris Brezillonad711482018-11-20 10:02:33 +0100135 struct nand_controller base;
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100136 u32 pid;
137 struct nand_chip nand;
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100138
139 unsigned int bank;
140 struct device *dev;
141 enum access_mode mode;
142 struct clk *clk;
143
144 /* DMA related objects */
145 struct dma_chan *read_dma_chan;
146 struct dma_chan *write_dma_chan;
147 struct completion dma_access_complete;
148
149 struct fsmc_nand_timings *dev_timings;
150
151 dma_addr_t data_pa;
152 void __iomem *data_va;
153 void __iomem *cmd_va;
154 void __iomem *addr_va;
155 void __iomem *regs_va;
Thomas Petazzonie7cda012017-03-21 11:03:56 +0100156};
157
Boris Brezillon22b46952016-02-03 20:01:42 +0100158static int fsmc_ecc1_ooblayout_ecc(struct mtd_info *mtd, int section,
159 struct mtd_oob_region *oobregion)
160{
161 struct nand_chip *chip = mtd_to_nand(mtd);
162
163 if (section >= chip->ecc.steps)
164 return -ERANGE;
165
166 oobregion->offset = (section * 16) + 2;
167 oobregion->length = 3;
168
169 return 0;
170}
171
172static int fsmc_ecc1_ooblayout_free(struct mtd_info *mtd, int section,
173 struct mtd_oob_region *oobregion)
174{
175 struct nand_chip *chip = mtd_to_nand(mtd);
176
177 if (section >= chip->ecc.steps)
178 return -ERANGE;
179
180 oobregion->offset = (section * 16) + 8;
181
182 if (section < chip->ecc.steps - 1)
183 oobregion->length = 8;
184 else
185 oobregion->length = mtd->oobsize - oobregion->offset;
186
187 return 0;
188}
189
190static const struct mtd_ooblayout_ops fsmc_ecc1_ooblayout_ops = {
191 .ecc = fsmc_ecc1_ooblayout_ecc,
192 .free = fsmc_ecc1_ooblayout_free,
193};
194
Boris Brezillon04a123a2016-02-09 15:01:21 +0100195/*
196 * ECC placement definitions in oobfree type format.
197 * There are 13 bytes of ecc for every 512 byte block and it has to be read
198 * consecutively and immediately after the 512 byte data block for hardware to
199 * generate the error bit offsets in 512 byte data.
200 */
Boris Brezillon22b46952016-02-03 20:01:42 +0100201static int fsmc_ecc4_ooblayout_ecc(struct mtd_info *mtd, int section,
202 struct mtd_oob_region *oobregion)
203{
204 struct nand_chip *chip = mtd_to_nand(mtd);
205
206 if (section >= chip->ecc.steps)
207 return -ERANGE;
208
209 oobregion->length = chip->ecc.bytes;
210
211 if (!section && mtd->writesize <= 512)
212 oobregion->offset = 0;
213 else
214 oobregion->offset = (section * 16) + 2;
215
216 return 0;
217}
218
219static int fsmc_ecc4_ooblayout_free(struct mtd_info *mtd, int section,
220 struct mtd_oob_region *oobregion)
221{
222 struct nand_chip *chip = mtd_to_nand(mtd);
223
224 if (section >= chip->ecc.steps)
225 return -ERANGE;
226
227 oobregion->offset = (section * 16) + 15;
228
229 if (section < chip->ecc.steps - 1)
230 oobregion->length = 3;
231 else
232 oobregion->length = mtd->oobsize - oobregion->offset;
233
234 return 0;
235}
236
237static const struct mtd_ooblayout_ops fsmc_ecc4_ooblayout_ops = {
238 .ecc = fsmc_ecc4_ooblayout_ecc,
239 .free = fsmc_ecc4_ooblayout_free,
240};
241
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100242static inline struct fsmc_nand_data *nand_to_fsmc(struct nand_chip *chip)
Boris BREZILLON277af422015-12-10 08:59:46 +0100243{
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100244 return container_of(chip, struct fsmc_nand_data, nand);
Boris BREZILLON277af422015-12-10 08:59:46 +0100245}
246
Linus Walleij6c009ab2010-09-13 00:35:22 +0200247/*
Linus Walleij6c009ab2010-09-13 00:35:22 +0200248 * fsmc_nand_setup - FSMC (Flexible Static Memory Controller) init routine
249 *
250 * This routine initializes timing parameters related to NAND memory access in
251 * FSMC registers
252 */
Thomas Petazzoni6335b502017-04-29 10:52:34 +0200253static void fsmc_nand_setup(struct fsmc_nand_data *host,
Thomas Petazzoni1debdb92017-04-29 10:52:36 +0200254 struct fsmc_nand_timings *tims)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200255{
Boris Brezillonfc43f452018-11-20 10:02:35 +0100256 u32 value = FSMC_DEVTYPE_NAND | FSMC_ENABLE | FSMC_WAITON;
257 u32 tclr, tar, thiz, thold, twait, tset;
Vipin Kumare2f6bce2012-03-14 11:47:14 +0530258
259 tclr = (tims->tclr & FSMC_TCLR_MASK) << FSMC_TCLR_SHIFT;
260 tar = (tims->tar & FSMC_TAR_MASK) << FSMC_TAR_SHIFT;
261 thiz = (tims->thiz & FSMC_THIZ_MASK) << FSMC_THIZ_SHIFT;
262 thold = (tims->thold & FSMC_THOLD_MASK) << FSMC_THOLD_SHIFT;
263 twait = (tims->twait & FSMC_TWAIT_MASK) << FSMC_TWAIT_SHIFT;
264 tset = (tims->tset & FSMC_TSET_MASK) << FSMC_TSET_SHIFT;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200265
Thomas Petazzoni6335b502017-04-29 10:52:34 +0200266 if (host->nand.options & NAND_BUSWIDTH_16)
Boris Brezillonfc43f452018-11-20 10:02:35 +0100267 value |= FSMC_DEVWID_16;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200268
Boris Brezillonfc43f452018-11-20 10:02:35 +0100269 writel_relaxed(value | tclr | tar, host->regs_va + FSMC_PC);
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100270 writel_relaxed(thiz | thold | twait | tset, host->regs_va + COMM);
271 writel_relaxed(thiz | thold | twait | tset, host->regs_va + ATTRIB);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200272}
273
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200274static int fsmc_calc_timings(struct fsmc_nand_data *host,
275 const struct nand_sdr_timings *sdrt,
276 struct fsmc_nand_timings *tims)
277{
278 unsigned long hclk = clk_get_rate(host->clk);
279 unsigned long hclkn = NSEC_PER_SEC / hclk;
Boris Brezillonfc43f452018-11-20 10:02:35 +0100280 u32 thiz, thold, twait, tset;
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200281
282 if (sdrt->tRC_min < 30000)
283 return -EOPNOTSUPP;
284
285 tims->tar = DIV_ROUND_UP(sdrt->tAR_min / 1000, hclkn) - 1;
286 if (tims->tar > FSMC_TAR_MASK)
287 tims->tar = FSMC_TAR_MASK;
288 tims->tclr = DIV_ROUND_UP(sdrt->tCLR_min / 1000, hclkn) - 1;
289 if (tims->tclr > FSMC_TCLR_MASK)
290 tims->tclr = FSMC_TCLR_MASK;
291
292 thiz = sdrt->tCS_min - sdrt->tWP_min;
293 tims->thiz = DIV_ROUND_UP(thiz / 1000, hclkn);
294
295 thold = sdrt->tDH_min;
296 if (thold < sdrt->tCH_min)
297 thold = sdrt->tCH_min;
298 if (thold < sdrt->tCLH_min)
299 thold = sdrt->tCLH_min;
300 if (thold < sdrt->tWH_min)
301 thold = sdrt->tWH_min;
302 if (thold < sdrt->tALH_min)
303 thold = sdrt->tALH_min;
304 if (thold < sdrt->tREH_min)
305 thold = sdrt->tREH_min;
306 tims->thold = DIV_ROUND_UP(thold / 1000, hclkn);
307 if (tims->thold == 0)
308 tims->thold = 1;
309 else if (tims->thold > FSMC_THOLD_MASK)
310 tims->thold = FSMC_THOLD_MASK;
311
312 twait = max(sdrt->tRP_min, sdrt->tWP_min);
313 tims->twait = DIV_ROUND_UP(twait / 1000, hclkn) - 1;
314 if (tims->twait == 0)
315 tims->twait = 1;
316 else if (tims->twait > FSMC_TWAIT_MASK)
317 tims->twait = FSMC_TWAIT_MASK;
318
319 tset = max(sdrt->tCS_min - sdrt->tWP_min,
320 sdrt->tCEA_max - sdrt->tREA_max);
321 tims->tset = DIV_ROUND_UP(tset / 1000, hclkn) - 1;
322 if (tims->tset == 0)
323 tims->tset = 1;
324 else if (tims->tset > FSMC_TSET_MASK)
325 tims->tset = FSMC_TSET_MASK;
326
327 return 0;
328}
329
Miquel Raynal4c466672020-05-29 13:13:13 +0200330static int fsmc_setup_interface(struct nand_chip *nand, int csline,
331 const struct nand_interface_config *conf)
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200332{
Boris Brezillon1e809f72018-11-20 10:02:32 +0100333 struct fsmc_nand_data *host = nand_to_fsmc(nand);
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200334 struct fsmc_nand_timings tims;
335 const struct nand_sdr_timings *sdrt;
336 int ret;
337
338 sdrt = nand_get_sdr_timings(conf);
339 if (IS_ERR(sdrt))
340 return PTR_ERR(sdrt);
341
342 ret = fsmc_calc_timings(host, sdrt, &tims);
343 if (ret)
344 return ret;
345
Boris Brezillon104e4422017-03-16 09:35:58 +0100346 if (csline == NAND_DATA_IFACE_CHECK_ONLY)
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200347 return 0;
348
349 fsmc_nand_setup(host, &tims);
350
351 return 0;
352}
353
Linus Walleij6c009ab2010-09-13 00:35:22 +0200354/*
355 * fsmc_enable_hwecc - Enables Hardware ECC through FSMC registers
356 */
Boris Brezillonec476362018-09-06 14:05:17 +0200357static void fsmc_enable_hwecc(struct nand_chip *chip, int mode)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200358{
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100359 struct fsmc_nand_data *host = nand_to_fsmc(chip);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200360
Boris Brezillon8f3931e2018-07-09 22:09:34 +0200361 writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCPLEN_256,
362 host->regs_va + FSMC_PC);
363 writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCEN,
364 host->regs_va + FSMC_PC);
365 writel_relaxed(readl(host->regs_va + FSMC_PC) | FSMC_ECCEN,
366 host->regs_va + FSMC_PC);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200367}
368
369/*
370 * fsmc_read_hwecc_ecc4 - Hardware ECC calculator for ecc4 option supported by
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300371 * FSMC. ECC is 13 bytes for 512 bytes of data (supports error correction up to
Linus Walleij6c009ab2010-09-13 00:35:22 +0200372 * max of 8-bits)
373 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100374static int fsmc_read_hwecc_ecc4(struct nand_chip *chip, const u8 *data,
375 u8 *ecc)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200376{
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100377 struct fsmc_nand_data *host = nand_to_fsmc(chip);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100378 u32 ecc_tmp;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200379 unsigned long deadline = jiffies + FSMC_BUSY_WAIT_TIMEOUT;
380
381 do {
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100382 if (readl_relaxed(host->regs_va + STS) & FSMC_CODE_RDY)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200383 break;
Boris Brezillonfc43f452018-11-20 10:02:35 +0100384
385 cond_resched();
Linus Walleij6c009ab2010-09-13 00:35:22 +0200386 } while (!time_after_eq(jiffies, deadline));
387
Vipin Kumar712c4ad2012-03-14 11:47:16 +0530388 if (time_after_eq(jiffies, deadline)) {
389 dev_err(host->dev, "calculate ecc timed out\n");
390 return -ETIMEDOUT;
391 }
392
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100393 ecc_tmp = readl_relaxed(host->regs_va + ECC1);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100394 ecc[0] = ecc_tmp;
395 ecc[1] = ecc_tmp >> 8;
396 ecc[2] = ecc_tmp >> 16;
397 ecc[3] = ecc_tmp >> 24;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200398
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100399 ecc_tmp = readl_relaxed(host->regs_va + ECC2);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100400 ecc[4] = ecc_tmp;
401 ecc[5] = ecc_tmp >> 8;
402 ecc[6] = ecc_tmp >> 16;
403 ecc[7] = ecc_tmp >> 24;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200404
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100405 ecc_tmp = readl_relaxed(host->regs_va + ECC3);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100406 ecc[8] = ecc_tmp;
407 ecc[9] = ecc_tmp >> 8;
408 ecc[10] = ecc_tmp >> 16;
409 ecc[11] = ecc_tmp >> 24;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200410
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100411 ecc_tmp = readl_relaxed(host->regs_va + STS);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100412 ecc[12] = ecc_tmp >> 16;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200413
414 return 0;
415}
416
417/*
418 * fsmc_read_hwecc_ecc1 - Hardware ECC calculator for ecc1 option supported by
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300419 * FSMC. ECC is 3 bytes for 512 bytes of data (supports error correction up to
Linus Walleij6c009ab2010-09-13 00:35:22 +0200420 * max of 1-bit)
421 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100422static int fsmc_read_hwecc_ecc1(struct nand_chip *chip, const u8 *data,
423 u8 *ecc)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200424{
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100425 struct fsmc_nand_data *host = nand_to_fsmc(chip);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100426 u32 ecc_tmp;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200427
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100428 ecc_tmp = readl_relaxed(host->regs_va + ECC1);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100429 ecc[0] = ecc_tmp;
430 ecc[1] = ecc_tmp >> 8;
431 ecc[2] = ecc_tmp >> 16;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200432
433 return 0;
434}
435
Vipin Kumar519300c2012-03-07 17:00:49 +0530436/* Count the number of 0's in buff upto a max of max_bits */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100437static int count_written_bits(u8 *buff, int size, int max_bits)
Vipin Kumar519300c2012-03-07 17:00:49 +0530438{
439 int k, written_bits = 0;
440
441 for (k = 0; k < size; k++) {
442 written_bits += hweight8(~buff[k]);
443 if (written_bits > max_bits)
444 break;
445 }
446
447 return written_bits;
448}
449
Vipin Kumar4774fb02012-03-14 11:47:18 +0530450static void dma_complete(void *param)
451{
452 struct fsmc_nand_data *host = param;
453
454 complete(&host->dma_access_complete);
455}
456
457static int dma_xfer(struct fsmc_nand_data *host, void *buffer, int len,
Boris Brezillonfc43f452018-11-20 10:02:35 +0100458 enum dma_data_direction direction)
Vipin Kumar4774fb02012-03-14 11:47:18 +0530459{
460 struct dma_chan *chan;
461 struct dma_device *dma_dev;
462 struct dma_async_tx_descriptor *tx;
463 dma_addr_t dma_dst, dma_src, dma_addr;
464 dma_cookie_t cookie;
465 unsigned long flags = DMA_CTRL_ACK | DMA_PREP_INTERRUPT;
466 int ret;
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400467 unsigned long time_left;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530468
469 if (direction == DMA_TO_DEVICE)
470 chan = host->write_dma_chan;
471 else if (direction == DMA_FROM_DEVICE)
472 chan = host->read_dma_chan;
473 else
474 return -EINVAL;
475
476 dma_dev = chan->device;
477 dma_addr = dma_map_single(dma_dev->dev, buffer, len, direction);
478
479 if (direction == DMA_TO_DEVICE) {
480 dma_src = dma_addr;
481 dma_dst = host->data_pa;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530482 } else {
483 dma_src = host->data_pa;
484 dma_dst = dma_addr;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530485 }
486
487 tx = dma_dev->device_prep_dma_memcpy(chan, dma_dst, dma_src,
488 len, flags);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530489 if (!tx) {
490 dev_err(host->dev, "device_prep_dma_memcpy error\n");
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000491 ret = -EIO;
492 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530493 }
494
495 tx->callback = dma_complete;
496 tx->callback_param = host;
497 cookie = tx->tx_submit(tx);
498
499 ret = dma_submit_error(cookie);
500 if (ret) {
501 dev_err(host->dev, "dma_submit_error %d\n", cookie);
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000502 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530503 }
504
505 dma_async_issue_pending(chan);
506
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400507 time_left =
Vipin Kumar928aa2a2012-10-09 16:14:48 +0530508 wait_for_completion_timeout(&host->dma_access_complete,
Boris Brezillonfc43f452018-11-20 10:02:35 +0100509 msecs_to_jiffies(3000));
Nicholas Mc Guire818a45b2015-03-13 07:54:46 -0400510 if (time_left == 0) {
Vinod Koulb177ea32014-10-11 21:10:32 +0530511 dmaengine_terminate_all(chan);
Vipin Kumar4774fb02012-03-14 11:47:18 +0530512 dev_err(host->dev, "wait_for_completion_timeout\n");
Nicholas Mc Guire0bda3e12015-03-13 07:54:45 -0400513 ret = -ETIMEDOUT;
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000514 goto unmap_dma;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530515 }
516
Bartlomiej Zolnierkiewiczd1806a52012-11-05 10:00:14 +0000517 ret = 0;
518
519unmap_dma:
520 dma_unmap_single(dma_dev->dev, dma_addr, len, direction);
521
522 return ret;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530523}
524
Linus Walleij6c009ab2010-09-13 00:35:22 +0200525/*
Vipin Kumar604e7542012-03-14 11:47:17 +0530526 * fsmc_write_buf - write buffer to chip
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100527 * @host: FSMC NAND controller
Vipin Kumar604e7542012-03-14 11:47:17 +0530528 * @buf: data buffer
529 * @len: number of bytes to write
530 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100531static void fsmc_write_buf(struct fsmc_nand_data *host, const u8 *buf,
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100532 int len)
Vipin Kumar604e7542012-03-14 11:47:17 +0530533{
534 int i;
Vipin Kumar604e7542012-03-14 11:47:17 +0530535
Boris Brezillonfc43f452018-11-20 10:02:35 +0100536 if (IS_ALIGNED((uintptr_t)buf, sizeof(u32)) &&
537 IS_ALIGNED(len, sizeof(u32))) {
538 u32 *p = (u32 *)buf;
539
Vipin Kumar604e7542012-03-14 11:47:17 +0530540 len = len >> 2;
541 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100542 writel_relaxed(p[i], host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530543 } else {
544 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100545 writeb_relaxed(buf[i], host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530546 }
547}
548
549/*
550 * fsmc_read_buf - read chip data into buffer
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100551 * @host: FSMC NAND controller
Vipin Kumar604e7542012-03-14 11:47:17 +0530552 * @buf: buffer to store date
553 * @len: number of bytes to read
554 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100555static void fsmc_read_buf(struct fsmc_nand_data *host, u8 *buf, int len)
Vipin Kumar604e7542012-03-14 11:47:17 +0530556{
557 int i;
Vipin Kumar604e7542012-03-14 11:47:17 +0530558
Boris Brezillonfc43f452018-11-20 10:02:35 +0100559 if (IS_ALIGNED((uintptr_t)buf, sizeof(u32)) &&
560 IS_ALIGNED(len, sizeof(u32))) {
561 u32 *p = (u32 *)buf;
562
Vipin Kumar604e7542012-03-14 11:47:17 +0530563 len = len >> 2;
564 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100565 p[i] = readl_relaxed(host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530566 } else {
567 for (i = 0; i < len; i++)
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100568 buf[i] = readb_relaxed(host->data_va);
Vipin Kumar604e7542012-03-14 11:47:17 +0530569 }
570}
571
572/*
Vipin Kumar4774fb02012-03-14 11:47:18 +0530573 * fsmc_read_buf_dma - read chip data into buffer
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100574 * @host: FSMC NAND controller
Vipin Kumar4774fb02012-03-14 11:47:18 +0530575 * @buf: buffer to store date
576 * @len: number of bytes to read
577 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100578static void fsmc_read_buf_dma(struct fsmc_nand_data *host, u8 *buf,
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100579 int len)
Vipin Kumar4774fb02012-03-14 11:47:18 +0530580{
Vipin Kumar4774fb02012-03-14 11:47:18 +0530581 dma_xfer(host, buf, len, DMA_FROM_DEVICE);
582}
583
584/*
585 * fsmc_write_buf_dma - write buffer to chip
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100586 * @host: FSMC NAND controller
Vipin Kumar4774fb02012-03-14 11:47:18 +0530587 * @buf: data buffer
588 * @len: number of bytes to write
589 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100590static void fsmc_write_buf_dma(struct fsmc_nand_data *host, const u8 *buf,
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100591 int len)
Vipin Kumar4774fb02012-03-14 11:47:18 +0530592{
Vipin Kumar4774fb02012-03-14 11:47:18 +0530593 dma_xfer(host, (void *)buf, len, DMA_TO_DEVICE);
594}
595
Miquel Raynal4da712e2018-02-16 15:22:48 +0100596/*
597 * fsmc_exec_op - hook called by the core to execute NAND operations
598 *
599 * This controller is simple enough and thus does not need to use the parser
600 * provided by the core, instead, handle every situation here.
601 */
602static int fsmc_exec_op(struct nand_chip *chip, const struct nand_operation *op,
603 bool check_only)
604{
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100605 struct fsmc_nand_data *host = nand_to_fsmc(chip);
Miquel Raynal4da712e2018-02-16 15:22:48 +0100606 const struct nand_op_instr *instr = NULL;
607 int ret = 0;
608 unsigned int op_id;
609 int i;
610
Boris Brezillonce446b42020-04-18 21:42:17 +0200611 if (check_only)
612 return 0;
613
Miquel Raynal4da712e2018-02-16 15:22:48 +0100614 pr_debug("Executing operation [%d instructions]:\n", op->ninstrs);
Boris Brezillon550b9fc2018-11-11 08:55:17 +0100615
Miquel Raynal4da712e2018-02-16 15:22:48 +0100616 for (op_id = 0; op_id < op->ninstrs; op_id++) {
617 instr = &op->instrs[op_id];
618
Sascha Hauerbf828322019-05-21 09:06:31 +0200619 nand_op_trace(" ", instr);
620
Miquel Raynal4da712e2018-02-16 15:22:48 +0100621 switch (instr->type) {
622 case NAND_OP_CMD_INSTR:
Miquel Raynal4da712e2018-02-16 15:22:48 +0100623 writeb_relaxed(instr->ctx.cmd.opcode, host->cmd_va);
624 break;
625
626 case NAND_OP_ADDR_INSTR:
Miquel Raynal4da712e2018-02-16 15:22:48 +0100627 for (i = 0; i < instr->ctx.addr.naddrs; i++)
628 writeb_relaxed(instr->ctx.addr.addrs[i],
629 host->addr_va);
630 break;
631
632 case NAND_OP_DATA_IN_INSTR:
Miquel Raynal4da712e2018-02-16 15:22:48 +0100633 if (host->mode == USE_DMA_ACCESS)
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100634 fsmc_read_buf_dma(host, instr->ctx.data.buf.in,
Miquel Raynal4da712e2018-02-16 15:22:48 +0100635 instr->ctx.data.len);
636 else
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100637 fsmc_read_buf(host, instr->ctx.data.buf.in,
Miquel Raynal4da712e2018-02-16 15:22:48 +0100638 instr->ctx.data.len);
639 break;
640
641 case NAND_OP_DATA_OUT_INSTR:
Miquel Raynal4da712e2018-02-16 15:22:48 +0100642 if (host->mode == USE_DMA_ACCESS)
Boris Brezillonfc43f452018-11-20 10:02:35 +0100643 fsmc_write_buf_dma(host,
644 instr->ctx.data.buf.out,
Miquel Raynal4da712e2018-02-16 15:22:48 +0100645 instr->ctx.data.len);
646 else
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100647 fsmc_write_buf(host, instr->ctx.data.buf.out,
Miquel Raynal4da712e2018-02-16 15:22:48 +0100648 instr->ctx.data.len);
649 break;
650
651 case NAND_OP_WAITRDY_INSTR:
Miquel Raynal4da712e2018-02-16 15:22:48 +0100652 ret = nand_soft_waitrdy(chip,
653 instr->ctx.waitrdy.timeout_ms);
654 break;
655 }
656 }
657
658 return ret;
659}
660
Vipin Kumar4774fb02012-03-14 11:47:18 +0530661/*
Linus Walleij6c009ab2010-09-13 00:35:22 +0200662 * fsmc_read_page_hwecc
Linus Walleij6c009ab2010-09-13 00:35:22 +0200663 * @chip: nand chip info structure
664 * @buf: buffer to store read data
Brian Norris1fbb9382012-05-02 10:14:55 -0700665 * @oob_required: caller expects OOB data read to chip->oob_poi
Linus Walleij6c009ab2010-09-13 00:35:22 +0200666 * @page: page number to read
667 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300668 * This routine is needed for fsmc version 8 as reading from NAND chip has to be
Linus Walleij6c009ab2010-09-13 00:35:22 +0200669 * performed in a strict sequence as follows:
670 * data(512 byte) -> ecc(13 byte)
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300671 * After this read, fsmc hardware generates and reports error data bits(up to a
Linus Walleij6c009ab2010-09-13 00:35:22 +0200672 * max of 8 bits)
673 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100674static int fsmc_read_page_hwecc(struct nand_chip *chip, u8 *buf,
Boris Brezillonb9761682018-09-06 14:05:20 +0200675 int oob_required, int page)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200676{
Boris Brezillonb9761682018-09-06 14:05:20 +0200677 struct mtd_info *mtd = nand_to_mtd(chip);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200678 int i, j, s, stat, eccsize = chip->ecc.size;
679 int eccbytes = chip->ecc.bytes;
680 int eccsteps = chip->ecc.steps;
Boris Brezillonfc43f452018-11-20 10:02:35 +0100681 u8 *p = buf;
682 u8 *ecc_calc = chip->ecc.calc_buf;
683 u8 *ecc_code = chip->ecc.code_buf;
Gustavo A. R. Silva41d6f0d2018-10-10 17:58:58 +0200684 int off, len, ret, group = 0;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200685 /*
Boris Brezillonfc43f452018-11-20 10:02:35 +0100686 * ecc_oob is intentionally taken as u16. In 16bit devices, we
Linus Walleij6c009ab2010-09-13 00:35:22 +0200687 * end up reading 14 bytes (7 words) from oob. The local array is
688 * to maintain word alignment
689 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100690 u16 ecc_oob[7];
691 u8 *oob = (u8 *)&ecc_oob[0];
Mike Dunn3f91e942012-04-25 12:06:09 -0700692 unsigned int max_bitflips = 0;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200693
694 for (i = 0, s = 0; s < eccsteps; s++, i += eccbytes, p += eccsize) {
Boris Brezillon97d90da2017-11-30 18:01:29 +0100695 nand_read_page_op(chip, page, s * eccsize, NULL, 0);
Boris Brezillonec476362018-09-06 14:05:17 +0200696 chip->ecc.hwctl(chip, NAND_ECC_READ);
Miquel Raynalb451f5b2020-05-07 12:52:36 +0200697 ret = nand_read_data_op(chip, p, eccsize, false, false);
Gustavo A. R. Silva41d6f0d2018-10-10 17:58:58 +0200698 if (ret)
699 return ret;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200700
701 for (j = 0; j < eccbytes;) {
Boris Brezillon04a123a2016-02-09 15:01:21 +0100702 struct mtd_oob_region oobregion;
Boris Brezillon04a123a2016-02-09 15:01:21 +0100703
704 ret = mtd_ooblayout_ecc(mtd, group++, &oobregion);
705 if (ret)
706 return ret;
707
708 off = oobregion.offset;
709 len = oobregion.length;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200710
711 /*
Vipin Kumar4cbe1bf02012-03-14 11:47:09 +0530712 * length is intentionally kept a higher multiple of 2
713 * to read at least 13 bytes even in case of 16 bit NAND
714 * devices
715 */
Vipin Kumaraea686b2012-03-14 11:47:10 +0530716 if (chip->options & NAND_BUSWIDTH_16)
717 len = roundup(len, 2);
718
Boris Brezillon97d90da2017-11-30 18:01:29 +0100719 nand_read_oob_op(chip, page, off, oob + j, len);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200720 j += len;
721 }
722
Vipin Kumar519300c2012-03-07 17:00:49 +0530723 memcpy(&ecc_code[i], oob, chip->ecc.bytes);
Boris Brezillonaf37d2c2018-09-06 14:05:18 +0200724 chip->ecc.calculate(chip, p, &ecc_calc[i]);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200725
Boris Brezillon00da2ea2018-09-06 14:05:19 +0200726 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]);
Mike Dunn3f91e942012-04-25 12:06:09 -0700727 if (stat < 0) {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200728 mtd->ecc_stats.failed++;
Mike Dunn3f91e942012-04-25 12:06:09 -0700729 } else {
Linus Walleij6c009ab2010-09-13 00:35:22 +0200730 mtd->ecc_stats.corrected += stat;
Mike Dunn3f91e942012-04-25 12:06:09 -0700731 max_bitflips = max_t(unsigned int, max_bitflips, stat);
732 }
Linus Walleij6c009ab2010-09-13 00:35:22 +0200733 }
734
Mike Dunn3f91e942012-04-25 12:06:09 -0700735 return max_bitflips;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200736}
737
738/*
Armando Visconti753e0132012-03-07 17:00:54 +0530739 * fsmc_bch8_correct_data
Linus Walleij6c009ab2010-09-13 00:35:22 +0200740 * @mtd: mtd info structure
741 * @dat: buffer of read data
742 * @read_ecc: ecc read from device spare area
743 * @calc_ecc: ecc calculated from read data
744 *
745 * calc_ecc is a 104 bit information containing maximum of 8 error
Boris Brezillonfc43f452018-11-20 10:02:35 +0100746 * offset information of 13 bits each in 512 bytes of read data.
Linus Walleij6c009ab2010-09-13 00:35:22 +0200747 */
Boris Brezillonfc43f452018-11-20 10:02:35 +0100748static int fsmc_bch8_correct_data(struct nand_chip *chip, u8 *dat,
749 u8 *read_ecc, u8 *calc_ecc)
Linus Walleij6c009ab2010-09-13 00:35:22 +0200750{
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100751 struct fsmc_nand_data *host = nand_to_fsmc(chip);
Boris Brezillonfc43f452018-11-20 10:02:35 +0100752 u32 err_idx[8];
753 u32 num_err, i;
754 u32 ecc1, ecc2, ecc3, ecc4;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200755
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100756 num_err = (readl_relaxed(host->regs_va + STS) >> 10) & 0xF;
Vipin Kumar519300c2012-03-07 17:00:49 +0530757
758 /* no bit flipping */
759 if (likely(num_err == 0))
760 return 0;
761
762 /* too many errors */
763 if (unlikely(num_err > 8)) {
764 /*
765 * This is a temporary erase check. A newly erased page read
766 * would result in an ecc error because the oob data is also
767 * erased to FF and the calculated ecc for an FF data is not
768 * FF..FF.
769 * This is a workaround to skip performing correction in case
770 * data is FF..FF
771 *
772 * Logic:
773 * For every page, each bit written as 0 is counted until these
774 * number of bits are greater than 8 (the maximum correction
775 * capability of FSMC for each 512 + 13 bytes)
776 */
777
778 int bits_ecc = count_written_bits(read_ecc, chip->ecc.bytes, 8);
779 int bits_data = count_written_bits(dat, chip->ecc.size, 8);
780
781 if ((bits_ecc + bits_data) <= 8) {
782 if (bits_data)
783 memset(dat, 0xff, chip->ecc.size);
784 return bits_data;
785 }
786
787 return -EBADMSG;
788 }
789
Linus Walleij6c009ab2010-09-13 00:35:22 +0200790 /*
791 * ------------------- calc_ecc[] bit wise -----------|--13 bits--|
792 * |---idx[7]--|--.....-----|---idx[2]--||---idx[1]--||---idx[0]--|
793 *
794 * calc_ecc is a 104 bit information containing maximum of 8 error
Boris Brezillonfc43f452018-11-20 10:02:35 +0100795 * offset information of 13 bits each. calc_ecc is copied into a
796 * u64 array and error offset indexes are populated in err_idx
Linus Walleij6c009ab2010-09-13 00:35:22 +0200797 * array
798 */
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100799 ecc1 = readl_relaxed(host->regs_va + ECC1);
800 ecc2 = readl_relaxed(host->regs_va + ECC2);
801 ecc3 = readl_relaxed(host->regs_va + ECC3);
802 ecc4 = readl_relaxed(host->regs_va + STS);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200803
Armando Visconti753e0132012-03-07 17:00:54 +0530804 err_idx[0] = (ecc1 >> 0) & 0x1FFF;
805 err_idx[1] = (ecc1 >> 13) & 0x1FFF;
806 err_idx[2] = (((ecc2 >> 0) & 0x7F) << 6) | ((ecc1 >> 26) & 0x3F);
807 err_idx[3] = (ecc2 >> 7) & 0x1FFF;
808 err_idx[4] = (((ecc3 >> 0) & 0x1) << 12) | ((ecc2 >> 20) & 0xFFF);
809 err_idx[5] = (ecc3 >> 1) & 0x1FFF;
810 err_idx[6] = (ecc3 >> 14) & 0x1FFF;
811 err_idx[7] = (((ecc4 >> 16) & 0xFF) << 5) | ((ecc3 >> 27) & 0x1F);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200812
813 i = 0;
814 while (num_err--) {
Fenghua Yu7c26e6e2019-12-20 16:05:55 -0800815 err_idx[i] ^= 3;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200816
Vipin Kumarb533f8d2012-03-14 11:47:11 +0530817 if (err_idx[i] < chip->ecc.size * 8) {
Fenghua Yu7c26e6e2019-12-20 16:05:55 -0800818 int err = err_idx[i];
819
820 dat[err >> 3] ^= BIT(err & 7);
Linus Walleij6c009ab2010-09-13 00:35:22 +0200821 i++;
822 }
823 }
824 return i;
825}
826
Vipin Kumar4774fb02012-03-14 11:47:18 +0530827static bool filter(struct dma_chan *chan, void *slave)
828{
829 chan->private = slave;
830 return true;
831}
832
Bill Pemberton06f25512012-11-19 13:23:07 -0500833static int fsmc_nand_probe_config_dt(struct platform_device *pdev,
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100834 struct fsmc_nand_data *host,
835 struct nand_chip *nand)
Stefan Roeseeea62812012-03-16 10:19:31 +0100836{
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100837 struct device_node *np = pdev->dev.of_node;
Stefan Roeseeea62812012-03-16 10:19:31 +0100838 u32 val;
Stefan Roese62b57f42015-03-19 14:34:29 +0100839 int ret;
Stefan Roeseeea62812012-03-16 10:19:31 +0100840
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100841 nand->options = 0;
Thomas Petazzoniee568742017-03-21 11:03:53 +0100842
Stefan Roeseeea62812012-03-16 10:19:31 +0100843 if (!of_property_read_u32(np, "bank-width", &val)) {
844 if (val == 2) {
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100845 nand->options |= NAND_BUSWIDTH_16;
Stefan Roeseeea62812012-03-16 10:19:31 +0100846 } else if (val != 1) {
847 dev_err(&pdev->dev, "invalid bank-width %u\n", val);
848 return -EINVAL;
849 }
850 }
Thomas Petazzoniee568742017-03-21 11:03:53 +0100851
Stefan Roeseeea62812012-03-16 10:19:31 +0100852 if (of_get_property(np, "nand-skip-bbtscan", NULL))
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100853 nand->options |= NAND_SKIP_BBTSCAN;
Stefan Roeseeea62812012-03-16 10:19:31 +0100854
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100855 host->dev_timings = devm_kzalloc(&pdev->dev,
Boris Brezillonfc43f452018-11-20 10:02:35 +0100856 sizeof(*host->dev_timings),
857 GFP_KERNEL);
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100858 if (!host->dev_timings)
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200859 return -ENOMEM;
Boris Brezillonfc43f452018-11-20 10:02:35 +0100860
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100861 ret = of_property_read_u8_array(np, "timings", (u8 *)host->dev_timings,
Boris Brezillonfc43f452018-11-20 10:02:35 +0100862 sizeof(*host->dev_timings));
Thomas Petazzonid9fb0792017-04-29 10:52:35 +0200863 if (ret)
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100864 host->dev_timings = NULL;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200865
866 /* Set default NAND bank to 0 */
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100867 host->bank = 0;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200868 if (!of_property_read_u32(np, "bank", &val)) {
869 if (val > 3) {
870 dev_err(&pdev->dev, "invalid bank %u\n", val);
871 return -EINVAL;
872 }
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +0100873 host->bank = val;
Mian Yousaf Kaukab64ddba42013-04-29 14:07:48 +0200874 }
Stefan Roeseeea62812012-03-16 10:19:31 +0100875 return 0;
876}
Stefan Roeseeea62812012-03-16 10:19:31 +0100877
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200878static int fsmc_nand_attach_chip(struct nand_chip *nand)
879{
880 struct mtd_info *mtd = nand_to_mtd(nand);
Boris Brezillonbfc535f2018-11-20 10:02:30 +0100881 struct fsmc_nand_data *host = nand_to_fsmc(nand);
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200882
Miquel Raynal98591a62020-11-13 13:34:13 +0100883 if (nand->ecc.engine_type == NAND_ECC_ENGINE_TYPE_INVALID)
884 nand->ecc.engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST;
885
886 if (!nand->ecc.size)
887 nand->ecc.size = 512;
888
889 if (AMBA_REV_BITS(host->pid) >= 8) {
890 nand->ecc.read_page = fsmc_read_page_hwecc;
891 nand->ecc.calculate = fsmc_read_hwecc_ecc4;
892 nand->ecc.correct = fsmc_bch8_correct_data;
893 nand->ecc.bytes = 13;
894 nand->ecc.strength = 8;
895 }
896
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200897 if (AMBA_REV_BITS(host->pid) >= 8) {
898 switch (mtd->oobsize) {
899 case 16:
900 case 64:
901 case 128:
902 case 224:
903 case 256:
904 break;
905 default:
906 dev_warn(host->dev,
907 "No oob scheme defined for oobsize %d\n",
908 mtd->oobsize);
909 return -EINVAL;
910 }
911
912 mtd_set_ooblayout(mtd, &fsmc_ecc4_ooblayout_ops);
913
914 return 0;
915 }
916
Miquel Raynalbace41f2020-08-27 10:51:58 +0200917 switch (nand->ecc.engine_type) {
918 case NAND_ECC_ENGINE_TYPE_ON_HOST:
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200919 dev_info(host->dev, "Using 1-bit HW ECC scheme\n");
920 nand->ecc.calculate = fsmc_read_hwecc_ecc1;
921 nand->ecc.correct = nand_correct_data;
Miquel Raynal98591a62020-11-13 13:34:13 +0100922 nand->ecc.hwctl = fsmc_enable_hwecc;
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200923 nand->ecc.bytes = 3;
924 nand->ecc.strength = 1;
Boris Brezillon309600c2018-09-04 16:23:28 +0200925 nand->ecc.options |= NAND_ECC_SOFT_HAMMING_SM_ORDER;
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200926 break;
927
Miquel Raynalbace41f2020-08-27 10:51:58 +0200928 case NAND_ECC_ENGINE_TYPE_SOFT:
Miquel Raynale0a564a2020-08-27 10:51:50 +0200929 if (nand->ecc.algo == NAND_ECC_ALGO_BCH) {
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200930 dev_info(host->dev,
931 "Using 4-bit SW BCH ECC scheme\n");
932 break;
933 }
934
Miquel Raynalbace41f2020-08-27 10:51:58 +0200935 case NAND_ECC_ENGINE_TYPE_ON_DIE:
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200936 break;
937
938 default:
939 dev_err(host->dev, "Unsupported ECC mode!\n");
940 return -ENOTSUPP;
941 }
942
943 /*
944 * Don't set layout for BCH4 SW ECC. This will be
945 * generated later in nand_bch_init() later.
946 */
Miquel Raynalbace41f2020-08-27 10:51:58 +0200947 if (nand->ecc.engine_type == NAND_ECC_ENGINE_TYPE_ON_HOST) {
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200948 switch (mtd->oobsize) {
949 case 16:
950 case 64:
951 case 128:
952 mtd_set_ooblayout(mtd,
953 &fsmc_ecc1_ooblayout_ops);
954 break;
955 default:
956 dev_warn(host->dev,
957 "No oob scheme defined for oobsize %d\n",
958 mtd->oobsize);
959 return -EINVAL;
960 }
961 }
962
963 return 0;
964}
965
966static const struct nand_controller_ops fsmc_nand_controller_ops = {
967 .attach_chip = fsmc_nand_attach_chip,
Boris Brezillonf2abfeb2018-11-11 08:55:23 +0100968 .exec_op = fsmc_exec_op,
Miquel Raynal4c466672020-05-29 13:13:13 +0200969 .setup_interface = fsmc_setup_interface,
Miquel Raynal3bbddfa2018-07-20 17:14:59 +0200970};
971
Linus Walleijab3ab7b2019-01-26 14:10:56 +0100972/**
973 * fsmc_nand_disable() - Disables the NAND bank
974 * @host: The instance to disable
975 */
976static void fsmc_nand_disable(struct fsmc_nand_data *host)
977{
978 u32 val;
979
980 val = readl(host->regs_va + FSMC_PC);
981 val &= ~FSMC_ENABLE;
982 writel(val, host->regs_va + FSMC_PC);
983}
984
Linus Walleij6c009ab2010-09-13 00:35:22 +0200985/*
986 * fsmc_nand_probe - Probe function
987 * @pdev: platform device structure
988 */
989static int __init fsmc_nand_probe(struct platform_device *pdev)
990{
Linus Walleij6c009ab2010-09-13 00:35:22 +0200991 struct fsmc_nand_data *host;
992 struct mtd_info *mtd;
993 struct nand_chip *nand;
Linus Walleij6c009ab2010-09-13 00:35:22 +0200994 struct resource *res;
Miquel Raynal4df6ed42018-02-16 15:22:47 +0100995 void __iomem *base;
Vipin Kumar4774fb02012-03-14 11:47:18 +0530996 dma_cap_mask_t mask;
Linus Walleij4ad916b2010-11-29 13:52:06 +0100997 int ret = 0;
Linus Walleij593cd872010-11-29 13:52:19 +0100998 u32 pid;
999 int i;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001000
Linus Walleij6c009ab2010-09-13 00:35:22 +02001001 /* Allocate memory for the device structure (and zero it) */
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301002 host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL);
Jingoo Hand9a21ae2013-12-26 12:16:38 +09001003 if (!host)
Linus Walleij6c009ab2010-09-13 00:35:22 +02001004 return -ENOMEM;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001005
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +01001006 nand = &host->nand;
1007
1008 ret = fsmc_nand_probe_config_dt(pdev, host, nand);
1009 if (ret)
1010 return ret;
1011
Linus Walleij6c009ab2010-09-13 00:35:22 +02001012 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_data");
Thierry Redingb0de7742013-01-21 11:09:12 +01001013 host->data_va = devm_ioremap_resource(&pdev->dev, res);
1014 if (IS_ERR(host->data_va))
1015 return PTR_ERR(host->data_va);
Stefan Roesecbf29b82015-10-02 12:40:20 +02001016
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001017 host->data_pa = (dma_addr_t)res->start;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001018
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001019 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_addr");
Thierry Redingb0de7742013-01-21 11:09:12 +01001020 host->addr_va = devm_ioremap_resource(&pdev->dev, res);
1021 if (IS_ERR(host->addr_va))
1022 return PTR_ERR(host->addr_va);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001023
Jean-Christophe PLAGNIOL-VILLARD6d7b42a2012-10-04 15:14:16 +02001024 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_cmd");
Thierry Redingb0de7742013-01-21 11:09:12 +01001025 host->cmd_va = devm_ioremap_resource(&pdev->dev, res);
1026 if (IS_ERR(host->cmd_va))
1027 return PTR_ERR(host->cmd_va);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001028
1029 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "fsmc_regs");
Miquel Raynal4df6ed42018-02-16 15:22:47 +01001030 base = devm_ioremap_resource(&pdev->dev, res);
1031 if (IS_ERR(base))
1032 return PTR_ERR(base);
1033
1034 host->regs_va = base + FSMC_NOR_REG_SIZE +
1035 (host->bank * FSMC_NAND_BANK_SZ);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001036
Thomas Petazzonifb8ed2c2017-03-21 11:04:03 +01001037 host->clk = devm_clk_get(&pdev->dev, NULL);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001038 if (IS_ERR(host->clk)) {
1039 dev_err(&pdev->dev, "failed to fetch block clock\n");
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301040 return PTR_ERR(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001041 }
1042
Viresh Kumare25da1c2012-04-17 17:07:57 +05301043 ret = clk_prepare_enable(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001044 if (ret)
Thomas Petazzonifb8ed2c2017-03-21 11:04:03 +01001045 return ret;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001046
Linus Walleij593cd872010-11-29 13:52:19 +01001047 /*
1048 * This device ID is actually a common AMBA ID as used on the
1049 * AMBA PrimeCell bus. However it is not a PrimeCell.
1050 */
1051 for (pid = 0, i = 0; i < 4; i++)
Boris Brezillonfc43f452018-11-20 10:02:35 +01001052 pid |= (readl(base + resource_size(res) - 0x20 + 4 * i) &
1053 255) << (i * 8);
1054
Linus Walleij593cd872010-11-29 13:52:19 +01001055 host->pid = pid;
Boris Brezillonfc43f452018-11-20 10:02:35 +01001056
1057 dev_info(&pdev->dev,
1058 "FSMC device partno %03x, manufacturer %02x, revision %02x, config %02x\n",
Linus Walleij593cd872010-11-29 13:52:19 +01001059 AMBA_PART_BITS(pid), AMBA_MANF_BITS(pid),
1060 AMBA_REV_BITS(pid), AMBA_CONFIG_BITS(pid));
1061
Vipin Kumar712c4ad2012-03-14 11:47:16 +05301062 host->dev = &pdev->dev;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301063
1064 if (host->mode == USE_DMA_ACCESS)
1065 init_completion(&host->dma_access_complete);
1066
Linus Walleij6c009ab2010-09-13 00:35:22 +02001067 /* Link all private pointers */
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001068 mtd = nand_to_mtd(&host->nand);
Thomas Petazzonia1b1e1d2017-03-21 11:04:02 +01001069 nand_set_flash_node(nand, pdev->dev.of_node);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001070
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001071 mtd->dev.parent = &pdev->dev;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001072
Vipin Kumar467e6e72012-03-14 11:47:12 +05301073 nand->badblockbits = 7;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001074
Miquel Raynal4da712e2018-02-16 15:22:48 +01001075 if (host->mode == USE_DMA_ACCESS) {
Vipin Kumar4774fb02012-03-14 11:47:18 +05301076 dma_cap_zero(mask);
1077 dma_cap_set(DMA_MEMCPY, mask);
Thomas Petazzonifeb1e572017-03-21 11:03:59 +01001078 host->read_dma_chan = dma_request_channel(mask, filter, NULL);
Vipin Kumar4774fb02012-03-14 11:47:18 +05301079 if (!host->read_dma_chan) {
1080 dev_err(&pdev->dev, "Unable to get read dma channel\n");
Miquel Raynal43fab012018-04-21 20:00:36 +02001081 goto disable_clk;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301082 }
Thomas Petazzonifeb1e572017-03-21 11:03:59 +01001083 host->write_dma_chan = dma_request_channel(mask, filter, NULL);
Vipin Kumar4774fb02012-03-14 11:47:18 +05301084 if (!host->write_dma_chan) {
1085 dev_err(&pdev->dev, "Unable to get write dma channel\n");
Miquel Raynal43fab012018-04-21 20:00:36 +02001086 goto release_dma_read_chan;
Vipin Kumar4774fb02012-03-14 11:47:18 +05301087 }
Vipin Kumar604e7542012-03-14 11:47:17 +05301088 }
1089
Boris Brezillon7a08dba2018-11-11 08:55:24 +01001090 if (host->dev_timings) {
Thomas Petazzonid9fb0792017-04-29 10:52:35 +02001091 fsmc_nand_setup(host, host->dev_timings);
Boris Brezillon7a08dba2018-11-11 08:55:24 +01001092 nand->options |= NAND_KEEP_TIMINGS;
1093 }
Linus Walleij6c009ab2010-09-13 00:35:22 +02001094
Boris Brezillonad711482018-11-20 10:02:33 +01001095 nand_controller_init(&host->base);
1096 host->base.ops = &fsmc_nand_controller_ops;
1097 nand->controller = &host->base;
1098
Linus Walleij6c009ab2010-09-13 00:35:22 +02001099 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001100 * Scan to find existence of the device
Linus Walleij6c009ab2010-09-13 00:35:22 +02001101 */
Boris Brezillon00ad3782018-09-06 14:05:14 +02001102 ret = nand_scan(nand, 1);
Masahiro Yamadaad5678e2016-11-04 19:43:00 +09001103 if (ret)
Miquel Raynal43fab012018-04-21 20:00:36 +02001104 goto release_dma_write_chan;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001105
Boris BREZILLONbdf3a552015-12-10 09:00:05 +01001106 mtd->name = "nand";
Thomas Petazzoniede29a02017-03-21 11:04:00 +01001107 ret = mtd_device_register(mtd, NULL, 0);
Jamie Iles99335d02011-05-23 10:23:23 +01001108 if (ret)
Miquel Raynal682cae22018-04-21 20:00:37 +02001109 goto cleanup_nand;
Linus Walleij6c009ab2010-09-13 00:35:22 +02001110
1111 platform_set_drvdata(pdev, host);
1112 dev_info(&pdev->dev, "FSMC NAND driver registration successful\n");
Miquel Raynal43fab012018-04-21 20:00:36 +02001113
Linus Walleij6c009ab2010-09-13 00:35:22 +02001114 return 0;
1115
Miquel Raynal682cae22018-04-21 20:00:37 +02001116cleanup_nand:
1117 nand_cleanup(nand);
Miquel Raynal43fab012018-04-21 20:00:36 +02001118release_dma_write_chan:
Vipin Kumar4774fb02012-03-14 11:47:18 +05301119 if (host->mode == USE_DMA_ACCESS)
1120 dma_release_channel(host->write_dma_chan);
Miquel Raynal43fab012018-04-21 20:00:36 +02001121release_dma_read_chan:
Vipin Kumar4774fb02012-03-14 11:47:18 +05301122 if (host->mode == USE_DMA_ACCESS)
1123 dma_release_channel(host->read_dma_chan);
Miquel Raynal43fab012018-04-21 20:00:36 +02001124disable_clk:
Linus Walleijab3ab7b2019-01-26 14:10:56 +01001125 fsmc_nand_disable(host);
Viresh Kumare25da1c2012-04-17 17:07:57 +05301126 clk_disable_unprepare(host->clk);
Miquel Raynal43fab012018-04-21 20:00:36 +02001127
Linus Walleij6c009ab2010-09-13 00:35:22 +02001128 return ret;
1129}
1130
1131/*
1132 * Clean up routine
1133 */
1134static int fsmc_nand_remove(struct platform_device *pdev)
1135{
1136 struct fsmc_nand_data *host = platform_get_drvdata(pdev);
1137
Linus Walleij6c009ab2010-09-13 00:35:22 +02001138 if (host) {
Miquel Raynal9cc02f42020-05-19 14:59:50 +02001139 struct nand_chip *chip = &host->nand;
1140 int ret;
1141
1142 ret = mtd_device_unregister(nand_to_mtd(chip));
1143 WARN_ON(ret);
1144 nand_cleanup(chip);
Linus Walleijab3ab7b2019-01-26 14:10:56 +01001145 fsmc_nand_disable(host);
Vipin Kumar4774fb02012-03-14 11:47:18 +05301146
1147 if (host->mode == USE_DMA_ACCESS) {
1148 dma_release_channel(host->write_dma_chan);
1149 dma_release_channel(host->read_dma_chan);
1150 }
Viresh Kumare25da1c2012-04-17 17:07:57 +05301151 clk_disable_unprepare(host->clk);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001152 }
Vipin Kumar82b9dbe2012-03-14 11:47:15 +05301153
Linus Walleij6c009ab2010-09-13 00:35:22 +02001154 return 0;
1155}
1156
Jingoo Han80ce4dd2013-03-26 15:53:48 +09001157#ifdef CONFIG_PM_SLEEP
Linus Walleij6c009ab2010-09-13 00:35:22 +02001158static int fsmc_nand_suspend(struct device *dev)
1159{
1160 struct fsmc_nand_data *host = dev_get_drvdata(dev);
Boris Brezillonfc43f452018-11-20 10:02:35 +01001161
Linus Walleij6c009ab2010-09-13 00:35:22 +02001162 if (host)
Viresh Kumare25da1c2012-04-17 17:07:57 +05301163 clk_disable_unprepare(host->clk);
Boris Brezillonfc43f452018-11-20 10:02:35 +01001164
Linus Walleij6c009ab2010-09-13 00:35:22 +02001165 return 0;
1166}
1167
1168static int fsmc_nand_resume(struct device *dev)
1169{
1170 struct fsmc_nand_data *host = dev_get_drvdata(dev);
Boris Brezillonfc43f452018-11-20 10:02:35 +01001171
Shiraz Hashimf63acb72012-03-14 11:47:13 +05301172 if (host) {
Viresh Kumare25da1c2012-04-17 17:07:57 +05301173 clk_prepare_enable(host->clk);
Thomas Petazzonid9fb0792017-04-29 10:52:35 +02001174 if (host->dev_timings)
1175 fsmc_nand_setup(host, host->dev_timings);
Linus Walleij30c72ab2019-01-26 14:10:55 +01001176 nand_reset(&host->nand, 0);
Shiraz Hashimf63acb72012-03-14 11:47:13 +05301177 }
Boris Brezillonfc43f452018-11-20 10:02:35 +01001178
Linus Walleij6c009ab2010-09-13 00:35:22 +02001179 return 0;
1180}
Jingoo Han80ce4dd2013-03-26 15:53:48 +09001181#endif
Linus Walleij6c009ab2010-09-13 00:35:22 +02001182
Shiraz Hashimf63acb72012-03-14 11:47:13 +05301183static SIMPLE_DEV_PM_OPS(fsmc_nand_pm_ops, fsmc_nand_suspend, fsmc_nand_resume);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001184
Stefan Roeseeea62812012-03-16 10:19:31 +01001185static const struct of_device_id fsmc_nand_id_table[] = {
1186 { .compatible = "st,spear600-fsmc-nand" },
Linus Walleijba785202013-01-05 22:28:32 +01001187 { .compatible = "stericsson,fsmc-nand" },
Stefan Roeseeea62812012-03-16 10:19:31 +01001188 {}
1189};
1190MODULE_DEVICE_TABLE(of, fsmc_nand_id_table);
Stefan Roeseeea62812012-03-16 10:19:31 +01001191
Linus Walleij6c009ab2010-09-13 00:35:22 +02001192static struct platform_driver fsmc_nand_driver = {
1193 .remove = fsmc_nand_remove,
1194 .driver = {
Linus Walleij6c009ab2010-09-13 00:35:22 +02001195 .name = "fsmc-nand",
Thomas Petazzoni33575b22017-03-21 11:04:05 +01001196 .of_match_table = fsmc_nand_id_table,
Linus Walleij6c009ab2010-09-13 00:35:22 +02001197 .pm = &fsmc_nand_pm_ops,
Linus Walleij6c009ab2010-09-13 00:35:22 +02001198 },
1199};
1200
Jingoo Han307d2a512013-03-05 13:30:36 +09001201module_platform_driver_probe(fsmc_nand_driver, fsmc_nand_probe);
Linus Walleij6c009ab2010-09-13 00:35:22 +02001202
Boris Brezillonbb696342018-11-20 10:02:34 +01001203MODULE_LICENSE("GPL v2");
Linus Walleij6c009ab2010-09-13 00:35:22 +02001204MODULE_AUTHOR("Vipin Kumar <vipin.kumar@st.com>, Ashish Priyadarshi");
1205MODULE_DESCRIPTION("NAND driver for SPEAr Platforms");