blob: dc4443584cb703be0bc016c9986bd1f4a3d6aa71 [file] [log] [blame]
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001/*
2 * Copyright (C) 2013 Boris BREZILLON <b.brezillon.dev@gmail.com>
3 *
4 * Derived from:
5 * https://github.com/yuq/sunxi-nfc-mtd
6 * Copyright (C) 2013 Qiang Yu <yuq825@gmail.com>
7 *
8 * https://github.com/hno/Allwinner-Info
9 * Copyright (C) 2013 Henrik Nordström <Henrik Nordström>
10 *
11 * Copyright (C) 2013 Dmitriy B. <rzk333@gmail.com>
12 * Copyright (C) 2013 Sergey Lapin <slapin@ossfans.org>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 */
24
25#include <linux/dma-mapping.h>
26#include <linux/slab.h>
27#include <linux/module.h>
28#include <linux/moduleparam.h>
29#include <linux/platform_device.h>
30#include <linux/of.h>
31#include <linux/of_device.h>
32#include <linux/of_gpio.h>
33#include <linux/of_mtd.h>
34#include <linux/mtd/mtd.h>
35#include <linux/mtd/nand.h>
36#include <linux/mtd/partitions.h>
37#include <linux/clk.h>
38#include <linux/delay.h>
39#include <linux/dmaengine.h>
40#include <linux/gpio.h>
41#include <linux/interrupt.h>
42#include <linux/io.h>
43
44#define NFC_REG_CTL 0x0000
45#define NFC_REG_ST 0x0004
46#define NFC_REG_INT 0x0008
47#define NFC_REG_TIMING_CTL 0x000C
48#define NFC_REG_TIMING_CFG 0x0010
49#define NFC_REG_ADDR_LOW 0x0014
50#define NFC_REG_ADDR_HIGH 0x0018
51#define NFC_REG_SECTOR_NUM 0x001C
52#define NFC_REG_CNT 0x0020
53#define NFC_REG_CMD 0x0024
54#define NFC_REG_RCMD_SET 0x0028
55#define NFC_REG_WCMD_SET 0x002C
56#define NFC_REG_IO_DATA 0x0030
57#define NFC_REG_ECC_CTL 0x0034
58#define NFC_REG_ECC_ST 0x0038
59#define NFC_REG_DEBUG 0x003C
Boris BREZILLONb6a02c02015-09-16 09:46:36 +020060#define NFC_REG_ECC_ERR_CNT(x) ((0x0040 + (x)) & ~0x3)
61#define NFC_REG_USER_DATA(x) (0x0050 + ((x) * 4))
Boris BREZILLON1fef62c2014-10-21 15:08:41 +020062#define NFC_REG_SPARE_AREA 0x00A0
63#define NFC_RAM0_BASE 0x0400
64#define NFC_RAM1_BASE 0x0800
65
66/* define bit use in NFC_CTL */
67#define NFC_EN BIT(0)
68#define NFC_RESET BIT(1)
Boris BREZILLONb6a02c02015-09-16 09:46:36 +020069#define NFC_BUS_WIDTH_MSK BIT(2)
70#define NFC_BUS_WIDTH_8 (0 << 2)
71#define NFC_BUS_WIDTH_16 (1 << 2)
72#define NFC_RB_SEL_MSK BIT(3)
73#define NFC_RB_SEL(x) ((x) << 3)
74#define NFC_CE_SEL_MSK GENMASK(26, 24)
75#define NFC_CE_SEL(x) ((x) << 24)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +020076#define NFC_CE_CTL BIT(6)
Boris BREZILLONb6a02c02015-09-16 09:46:36 +020077#define NFC_PAGE_SHIFT_MSK GENMASK(11, 8)
78#define NFC_PAGE_SHIFT(x) (((x) < 10 ? 0 : (x) - 10) << 8)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +020079#define NFC_SAM BIT(12)
80#define NFC_RAM_METHOD BIT(14)
81#define NFC_DEBUG_CTL BIT(31)
82
83/* define bit use in NFC_ST */
84#define NFC_RB_B2R BIT(0)
85#define NFC_CMD_INT_FLAG BIT(1)
86#define NFC_DMA_INT_FLAG BIT(2)
87#define NFC_CMD_FIFO_STATUS BIT(3)
88#define NFC_STA BIT(4)
89#define NFC_NATCH_INT_FLAG BIT(5)
Boris BREZILLONb6a02c02015-09-16 09:46:36 +020090#define NFC_RB_STATE(x) BIT(x + 8)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +020091
92/* define bit use in NFC_INT */
93#define NFC_B2R_INT_ENABLE BIT(0)
94#define NFC_CMD_INT_ENABLE BIT(1)
95#define NFC_DMA_INT_ENABLE BIT(2)
96#define NFC_INT_MASK (NFC_B2R_INT_ENABLE | \
97 NFC_CMD_INT_ENABLE | \
98 NFC_DMA_INT_ENABLE)
99
Roy Splietd052e502015-06-26 11:00:11 +0200100/* define bit use in NFC_TIMING_CTL */
101#define NFC_TIMING_CTL_EDO BIT(8)
102
Roy Spliet9c618292015-06-26 11:00:10 +0200103/* define NFC_TIMING_CFG register layout */
104#define NFC_TIMING_CFG(tWB, tADL, tWHR, tRHW, tCAD) \
105 (((tWB) & 0x3) | (((tADL) & 0x3) << 2) | \
106 (((tWHR) & 0x3) << 4) | (((tRHW) & 0x3) << 6) | \
107 (((tCAD) & 0x7) << 8))
108
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200109/* define bit use in NFC_CMD */
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200110#define NFC_CMD_LOW_BYTE_MSK GENMASK(7, 0)
111#define NFC_CMD_HIGH_BYTE_MSK GENMASK(15, 8)
112#define NFC_CMD(x) (x)
113#define NFC_ADR_NUM_MSK GENMASK(18, 16)
114#define NFC_ADR_NUM(x) (((x) - 1) << 16)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200115#define NFC_SEND_ADR BIT(19)
116#define NFC_ACCESS_DIR BIT(20)
117#define NFC_DATA_TRANS BIT(21)
118#define NFC_SEND_CMD1 BIT(22)
119#define NFC_WAIT_FLAG BIT(23)
120#define NFC_SEND_CMD2 BIT(24)
121#define NFC_SEQ BIT(25)
122#define NFC_DATA_SWAP_METHOD BIT(26)
123#define NFC_ROW_AUTO_INC BIT(27)
124#define NFC_SEND_CMD3 BIT(28)
125#define NFC_SEND_CMD4 BIT(29)
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200126#define NFC_CMD_TYPE_MSK GENMASK(31, 30)
127#define NFC_NORMAL_OP (0 << 30)
128#define NFC_ECC_OP (1 << 30)
129#define NFC_PAGE_OP (2 << 30)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200130
131/* define bit use in NFC_RCMD_SET */
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200132#define NFC_READ_CMD_MSK GENMASK(7, 0)
133#define NFC_RND_READ_CMD0_MSK GENMASK(15, 8)
134#define NFC_RND_READ_CMD1_MSK GENMASK(23, 16)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200135
136/* define bit use in NFC_WCMD_SET */
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200137#define NFC_PROGRAM_CMD_MSK GENMASK(7, 0)
138#define NFC_RND_WRITE_CMD_MSK GENMASK(15, 8)
139#define NFC_READ_CMD0_MSK GENMASK(23, 16)
140#define NFC_READ_CMD1_MSK GENMASK(31, 24)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200141
142/* define bit use in NFC_ECC_CTL */
143#define NFC_ECC_EN BIT(0)
144#define NFC_ECC_PIPELINE BIT(3)
145#define NFC_ECC_EXCEPTION BIT(4)
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200146#define NFC_ECC_BLOCK_SIZE_MSK BIT(5)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200147#define NFC_RANDOM_EN BIT(9)
148#define NFC_RANDOM_DIRECTION BIT(10)
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200149#define NFC_ECC_MODE_MSK GENMASK(15, 12)
150#define NFC_ECC_MODE(x) ((x) << 12)
151#define NFC_RANDOM_SEED_MSK GENMASK(30, 16)
152#define NFC_RANDOM_SEED(x) ((x) << 16)
153
154/* define bit use in NFC_ECC_ST */
155#define NFC_ECC_ERR(x) BIT(x)
156#define NFC_ECC_PAT_FOUND(x) BIT(x + 16)
157#define NFC_ECC_ERR_CNT(b, x) (((x) >> ((b) * 8)) & 0xff)
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200158
Boris BREZILLON03a0e8a2015-09-14 10:41:03 +0200159/* NFC_USER_DATA helper macros */
160#define NFC_BUF_TO_USER_DATA(buf) ((buf)[0] | ((buf)[1] << 8) | \
161 ((buf)[2] << 16) | ((buf)[3] << 24))
162
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200163#define NFC_DEFAULT_TIMEOUT_MS 1000
164
165#define NFC_SRAM_SIZE 1024
166
167#define NFC_MAX_CS 7
168
169/*
170 * Ready/Busy detection type: describes the Ready/Busy detection modes
171 *
172 * @RB_NONE: no external detection available, rely on STATUS command
173 * and software timeouts
174 * @RB_NATIVE: use sunxi NAND controller Ready/Busy support. The Ready/Busy
175 * pin of the NAND flash chip must be connected to one of the
176 * native NAND R/B pins (those which can be muxed to the NAND
177 * Controller)
178 * @RB_GPIO: use a simple GPIO to handle Ready/Busy status. The Ready/Busy
179 * pin of the NAND flash chip must be connected to a GPIO capable
180 * pin.
181 */
182enum sunxi_nand_rb_type {
183 RB_NONE,
184 RB_NATIVE,
185 RB_GPIO,
186};
187
188/*
189 * Ready/Busy structure: stores information related to Ready/Busy detection
190 *
191 * @type: the Ready/Busy detection mode
192 * @info: information related to the R/B detection mode. Either a gpio
193 * id or a native R/B id (those supported by the NAND controller).
194 */
195struct sunxi_nand_rb {
196 enum sunxi_nand_rb_type type;
197 union {
198 int gpio;
199 int nativeid;
200 } info;
201};
202
203/*
204 * Chip Select structure: stores information related to NAND Chip Select
205 *
206 * @cs: the NAND CS id used to communicate with a NAND Chip
207 * @rb: the Ready/Busy description
208 */
209struct sunxi_nand_chip_sel {
210 u8 cs;
211 struct sunxi_nand_rb rb;
212};
213
214/*
215 * sunxi HW ECC infos: stores information related to HW ECC support
216 *
217 * @mode: the sunxi ECC mode field deduced from ECC requirements
218 * @layout: the OOB layout depending on the ECC requirements and the
219 * selected ECC mode
220 */
221struct sunxi_nand_hw_ecc {
222 int mode;
223 struct nand_ecclayout layout;
224};
225
226/*
227 * NAND chip structure: stores NAND chip device related information
228 *
229 * @node: used to store NAND chips into a list
230 * @nand: base NAND chip structure
231 * @mtd: base MTD structure
232 * @clk_rate: clk_rate required for this NAND chip
Roy Spliet9c618292015-06-26 11:00:10 +0200233 * @timing_cfg TIMING_CFG register value for this NAND chip
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200234 * @selected: current active CS
235 * @nsels: number of CS lines required by the NAND chip
236 * @sels: array of CS lines descriptions
237 */
238struct sunxi_nand_chip {
239 struct list_head node;
240 struct nand_chip nand;
241 struct mtd_info mtd;
242 unsigned long clk_rate;
Roy Spliet9c618292015-06-26 11:00:10 +0200243 u32 timing_cfg;
Roy Splietd052e502015-06-26 11:00:11 +0200244 u32 timing_ctl;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200245 int selected;
246 int nsels;
247 struct sunxi_nand_chip_sel sels[0];
248};
249
250static inline struct sunxi_nand_chip *to_sunxi_nand(struct nand_chip *nand)
251{
252 return container_of(nand, struct sunxi_nand_chip, nand);
253}
254
255/*
256 * NAND Controller structure: stores sunxi NAND controller information
257 *
258 * @controller: base controller structure
259 * @dev: parent device (used to print error messages)
260 * @regs: NAND controller registers
261 * @ahb_clk: NAND Controller AHB clock
262 * @mod_clk: NAND Controller mod clock
263 * @assigned_cs: bitmask describing already assigned CS lines
264 * @clk_rate: NAND controller current clock rate
265 * @chips: a list containing all the NAND chips attached to
266 * this NAND controller
267 * @complete: a completion object used to wait for NAND
268 * controller events
269 */
270struct sunxi_nfc {
271 struct nand_hw_control controller;
272 struct device *dev;
273 void __iomem *regs;
274 struct clk *ahb_clk;
275 struct clk *mod_clk;
276 unsigned long assigned_cs;
277 unsigned long clk_rate;
278 struct list_head chips;
279 struct completion complete;
280};
281
282static inline struct sunxi_nfc *to_sunxi_nfc(struct nand_hw_control *ctrl)
283{
284 return container_of(ctrl, struct sunxi_nfc, controller);
285}
286
287static irqreturn_t sunxi_nfc_interrupt(int irq, void *dev_id)
288{
289 struct sunxi_nfc *nfc = dev_id;
290 u32 st = readl(nfc->regs + NFC_REG_ST);
291 u32 ien = readl(nfc->regs + NFC_REG_INT);
292
293 if (!(ien & st))
294 return IRQ_NONE;
295
296 if ((ien & st) == ien)
297 complete(&nfc->complete);
298
299 writel(st & NFC_INT_MASK, nfc->regs + NFC_REG_ST);
300 writel(~st & ien & NFC_INT_MASK, nfc->regs + NFC_REG_INT);
301
302 return IRQ_HANDLED;
303}
304
305static int sunxi_nfc_wait_int(struct sunxi_nfc *nfc, u32 flags,
306 unsigned int timeout_ms)
307{
308 init_completion(&nfc->complete);
309
310 writel(flags, nfc->regs + NFC_REG_INT);
311
312 if (!timeout_ms)
313 timeout_ms = NFC_DEFAULT_TIMEOUT_MS;
314
315 if (!wait_for_completion_timeout(&nfc->complete,
316 msecs_to_jiffies(timeout_ms))) {
317 dev_err(nfc->dev, "wait interrupt timedout\n");
318 return -ETIMEDOUT;
319 }
320
321 return 0;
322}
323
324static int sunxi_nfc_wait_cmd_fifo_empty(struct sunxi_nfc *nfc)
325{
326 unsigned long timeout = jiffies +
327 msecs_to_jiffies(NFC_DEFAULT_TIMEOUT_MS);
328
329 do {
330 if (!(readl(nfc->regs + NFC_REG_ST) & NFC_CMD_FIFO_STATUS))
331 return 0;
332 } while (time_before(jiffies, timeout));
333
334 dev_err(nfc->dev, "wait for empty cmd FIFO timedout\n");
335 return -ETIMEDOUT;
336}
337
338static int sunxi_nfc_rst(struct sunxi_nfc *nfc)
339{
340 unsigned long timeout = jiffies +
341 msecs_to_jiffies(NFC_DEFAULT_TIMEOUT_MS);
342
343 writel(0, nfc->regs + NFC_REG_ECC_CTL);
344 writel(NFC_RESET, nfc->regs + NFC_REG_CTL);
345
346 do {
347 if (!(readl(nfc->regs + NFC_REG_CTL) & NFC_RESET))
348 return 0;
349 } while (time_before(jiffies, timeout));
350
351 dev_err(nfc->dev, "wait for NAND controller reset timedout\n");
352 return -ETIMEDOUT;
353}
354
355static int sunxi_nfc_dev_ready(struct mtd_info *mtd)
356{
357 struct nand_chip *nand = mtd->priv;
358 struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(nand);
359 struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
360 struct sunxi_nand_rb *rb;
361 unsigned long timeo = (sunxi_nand->nand.state == FL_ERASING ? 400 : 20);
362 int ret;
363
364 if (sunxi_nand->selected < 0)
365 return 0;
366
367 rb = &sunxi_nand->sels[sunxi_nand->selected].rb;
368
369 switch (rb->type) {
370 case RB_NATIVE:
371 ret = !!(readl(nfc->regs + NFC_REG_ST) &
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200372 NFC_RB_STATE(rb->info.nativeid));
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200373 if (ret)
374 break;
375
376 sunxi_nfc_wait_int(nfc, NFC_RB_B2R, timeo);
377 ret = !!(readl(nfc->regs + NFC_REG_ST) &
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200378 NFC_RB_STATE(rb->info.nativeid));
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200379 break;
380 case RB_GPIO:
381 ret = gpio_get_value(rb->info.gpio);
382 break;
383 case RB_NONE:
384 default:
385 ret = 0;
386 dev_err(nfc->dev, "cannot check R/B NAND status!\n");
387 break;
388 }
389
390 return ret;
391}
392
393static void sunxi_nfc_select_chip(struct mtd_info *mtd, int chip)
394{
395 struct nand_chip *nand = mtd->priv;
396 struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(nand);
397 struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
398 struct sunxi_nand_chip_sel *sel;
399 u32 ctl;
400
401 if (chip > 0 && chip >= sunxi_nand->nsels)
402 return;
403
404 if (chip == sunxi_nand->selected)
405 return;
406
407 ctl = readl(nfc->regs + NFC_REG_CTL) &
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200408 ~(NFC_PAGE_SHIFT_MSK | NFC_CE_SEL_MSK | NFC_RB_SEL_MSK | NFC_EN);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200409
410 if (chip >= 0) {
411 sel = &sunxi_nand->sels[chip];
412
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200413 ctl |= NFC_CE_SEL(sel->cs) | NFC_EN |
414 NFC_PAGE_SHIFT(nand->page_shift - 10);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200415 if (sel->rb.type == RB_NONE) {
416 nand->dev_ready = NULL;
417 } else {
418 nand->dev_ready = sunxi_nfc_dev_ready;
419 if (sel->rb.type == RB_NATIVE)
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200420 ctl |= NFC_RB_SEL(sel->rb.info.nativeid);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200421 }
422
423 writel(mtd->writesize, nfc->regs + NFC_REG_SPARE_AREA);
424
425 if (nfc->clk_rate != sunxi_nand->clk_rate) {
426 clk_set_rate(nfc->mod_clk, sunxi_nand->clk_rate);
427 nfc->clk_rate = sunxi_nand->clk_rate;
428 }
429 }
430
Roy Splietd052e502015-06-26 11:00:11 +0200431 writel(sunxi_nand->timing_ctl, nfc->regs + NFC_REG_TIMING_CTL);
Roy Spliet9c618292015-06-26 11:00:10 +0200432 writel(sunxi_nand->timing_cfg, nfc->regs + NFC_REG_TIMING_CFG);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200433 writel(ctl, nfc->regs + NFC_REG_CTL);
434
435 sunxi_nand->selected = chip;
436}
437
438static void sunxi_nfc_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
439{
440 struct nand_chip *nand = mtd->priv;
441 struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(nand);
442 struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
443 int ret;
444 int cnt;
445 int offs = 0;
446 u32 tmp;
447
448 while (len > offs) {
449 cnt = min(len - offs, NFC_SRAM_SIZE);
450
451 ret = sunxi_nfc_wait_cmd_fifo_empty(nfc);
452 if (ret)
453 break;
454
455 writel(cnt, nfc->regs + NFC_REG_CNT);
456 tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD;
457 writel(tmp, nfc->regs + NFC_REG_CMD);
458
459 ret = sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
460 if (ret)
461 break;
462
463 if (buf)
464 memcpy_fromio(buf + offs, nfc->regs + NFC_RAM0_BASE,
465 cnt);
466 offs += cnt;
467 }
468}
469
470static void sunxi_nfc_write_buf(struct mtd_info *mtd, const uint8_t *buf,
471 int len)
472{
473 struct nand_chip *nand = mtd->priv;
474 struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(nand);
475 struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
476 int ret;
477 int cnt;
478 int offs = 0;
479 u32 tmp;
480
481 while (len > offs) {
482 cnt = min(len - offs, NFC_SRAM_SIZE);
483
484 ret = sunxi_nfc_wait_cmd_fifo_empty(nfc);
485 if (ret)
486 break;
487
488 writel(cnt, nfc->regs + NFC_REG_CNT);
489 memcpy_toio(nfc->regs + NFC_RAM0_BASE, buf + offs, cnt);
490 tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD |
491 NFC_ACCESS_DIR;
492 writel(tmp, nfc->regs + NFC_REG_CMD);
493
494 ret = sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
495 if (ret)
496 break;
497
498 offs += cnt;
499 }
500}
501
502static uint8_t sunxi_nfc_read_byte(struct mtd_info *mtd)
503{
504 uint8_t ret;
505
506 sunxi_nfc_read_buf(mtd, &ret, 1);
507
508 return ret;
509}
510
511static void sunxi_nfc_cmd_ctrl(struct mtd_info *mtd, int dat,
512 unsigned int ctrl)
513{
514 struct nand_chip *nand = mtd->priv;
515 struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(nand);
516 struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
517 int ret;
518 u32 tmp;
519
520 ret = sunxi_nfc_wait_cmd_fifo_empty(nfc);
521 if (ret)
522 return;
523
524 if (ctrl & NAND_CTRL_CHANGE) {
525 tmp = readl(nfc->regs + NFC_REG_CTL);
526 if (ctrl & NAND_NCE)
527 tmp |= NFC_CE_CTL;
528 else
529 tmp &= ~NFC_CE_CTL;
530 writel(tmp, nfc->regs + NFC_REG_CTL);
531 }
532
533 if (dat == NAND_CMD_NONE)
534 return;
535
536 if (ctrl & NAND_CLE) {
537 writel(NFC_SEND_CMD1 | dat, nfc->regs + NFC_REG_CMD);
538 } else {
539 writel(dat, nfc->regs + NFC_REG_ADDR_LOW);
540 writel(NFC_SEND_ADR, nfc->regs + NFC_REG_CMD);
541 }
542
543 sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
544}
545
546static int sunxi_nfc_hw_ecc_read_page(struct mtd_info *mtd,
547 struct nand_chip *chip, uint8_t *buf,
548 int oob_required, int page)
549{
550 struct sunxi_nfc *nfc = to_sunxi_nfc(chip->controller);
551 struct nand_ecc_ctrl *ecc = &chip->ecc;
552 struct nand_ecclayout *layout = ecc->layout;
553 struct sunxi_nand_hw_ecc *data = ecc->priv;
554 unsigned int max_bitflips = 0;
555 int offset;
556 int ret;
557 u32 tmp;
558 int i;
559 int cnt;
560
561 tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200562 tmp &= ~(NFC_ECC_MODE_MSK | NFC_ECC_PIPELINE | NFC_ECC_BLOCK_SIZE_MSK);
563 tmp |= NFC_ECC_EN | NFC_ECC_MODE(data->mode) | NFC_ECC_EXCEPTION;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200564
565 writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
566
567 for (i = 0; i < ecc->steps; i++) {
568 if (i)
569 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, i * ecc->size, -1);
570
571 offset = mtd->writesize + layout->eccpos[i * ecc->bytes] - 4;
572
573 chip->read_buf(mtd, NULL, ecc->size);
574
575 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset, -1);
576
577 ret = sunxi_nfc_wait_cmd_fifo_empty(nfc);
578 if (ret)
579 return ret;
580
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200581 tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD | NFC_ECC_OP;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200582 writel(tmp, nfc->regs + NFC_REG_CMD);
583
584 ret = sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
585 if (ret)
586 return ret;
587
588 memcpy_fromio(buf + (i * ecc->size),
589 nfc->regs + NFC_RAM0_BASE, ecc->size);
590
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200591 if (readl(nfc->regs + NFC_REG_ECC_ST) & NFC_ECC_ERR(0)) {
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200592 mtd->ecc_stats.failed++;
593 } else {
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200594 tmp = readl(nfc->regs + NFC_REG_ECC_ERR_CNT(0));
595 mtd->ecc_stats.corrected += NFC_ECC_ERR_CNT(0, tmp);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200596 max_bitflips = max_t(unsigned int, max_bitflips, tmp);
597 }
598
599 if (oob_required) {
600 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset, -1);
601
602 ret = sunxi_nfc_wait_cmd_fifo_empty(nfc);
603 if (ret)
604 return ret;
605
606 offset -= mtd->writesize;
607 chip->read_buf(mtd, chip->oob_poi + offset,
608 ecc->bytes + 4);
609 }
610 }
611
612 if (oob_required) {
613 cnt = ecc->layout->oobfree[ecc->steps].length;
614 if (cnt > 0) {
615 offset = mtd->writesize +
616 ecc->layout->oobfree[ecc->steps].offset;
617 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset, -1);
618 offset -= mtd->writesize;
619 chip->read_buf(mtd, chip->oob_poi + offset, cnt);
620 }
621 }
622
623 tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
624 tmp &= ~NFC_ECC_EN;
625
626 writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
627
628 return max_bitflips;
629}
630
631static int sunxi_nfc_hw_ecc_write_page(struct mtd_info *mtd,
632 struct nand_chip *chip,
633 const uint8_t *buf, int oob_required)
634{
635 struct sunxi_nfc *nfc = to_sunxi_nfc(chip->controller);
636 struct nand_ecc_ctrl *ecc = &chip->ecc;
637 struct nand_ecclayout *layout = ecc->layout;
638 struct sunxi_nand_hw_ecc *data = ecc->priv;
639 int offset;
640 int ret;
641 u32 tmp;
642 int i;
643 int cnt;
644
645 tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200646 tmp &= ~(NFC_ECC_MODE_MSK | NFC_ECC_PIPELINE | NFC_ECC_BLOCK_SIZE_MSK);
647 tmp |= NFC_ECC_EN | NFC_ECC_MODE(data->mode) | NFC_ECC_EXCEPTION;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200648
649 writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
650
651 for (i = 0; i < ecc->steps; i++) {
652 if (i)
653 chip->cmdfunc(mtd, NAND_CMD_RNDIN, i * ecc->size, -1);
654
655 chip->write_buf(mtd, buf + (i * ecc->size), ecc->size);
656
657 offset = layout->eccpos[i * ecc->bytes] - 4 + mtd->writesize;
658
659 /* Fill OOB data in */
Boris BREZILLON03a0e8a2015-09-14 10:41:03 +0200660 writel(NFC_BUF_TO_USER_DATA(chip->oob_poi +
661 layout->oobfree[i].offset),
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200662 nfc->regs + NFC_REG_USER_DATA(0));
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200663
664 chip->cmdfunc(mtd, NAND_CMD_RNDIN, offset, -1);
665
666 ret = sunxi_nfc_wait_cmd_fifo_empty(nfc);
667 if (ret)
668 return ret;
669
670 tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD | NFC_ACCESS_DIR |
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200671 NFC_ECC_OP;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200672 writel(tmp, nfc->regs + NFC_REG_CMD);
673 ret = sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
674 if (ret)
675 return ret;
676 }
677
678 if (oob_required) {
679 cnt = ecc->layout->oobfree[i].length;
680 if (cnt > 0) {
681 offset = mtd->writesize +
682 ecc->layout->oobfree[i].offset;
683 chip->cmdfunc(mtd, NAND_CMD_RNDIN, offset, -1);
684 offset -= mtd->writesize;
685 chip->write_buf(mtd, chip->oob_poi + offset, cnt);
686 }
687 }
688
689 tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
690 tmp &= ~NFC_ECC_EN;
691
692 writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
693
694 return 0;
695}
696
697static int sunxi_nfc_hw_syndrome_ecc_read_page(struct mtd_info *mtd,
698 struct nand_chip *chip,
699 uint8_t *buf, int oob_required,
700 int page)
701{
702 struct sunxi_nfc *nfc = to_sunxi_nfc(chip->controller);
703 struct nand_ecc_ctrl *ecc = &chip->ecc;
704 struct sunxi_nand_hw_ecc *data = ecc->priv;
705 unsigned int max_bitflips = 0;
706 uint8_t *oob = chip->oob_poi;
707 int offset = 0;
708 int ret;
709 int cnt;
710 u32 tmp;
711 int i;
712
713 tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200714 tmp &= ~(NFC_ECC_MODE_MSK | NFC_ECC_PIPELINE | NFC_ECC_BLOCK_SIZE_MSK);
715 tmp |= NFC_ECC_EN | NFC_ECC_MODE(data->mode) | NFC_ECC_EXCEPTION;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200716
717 writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
718
719 for (i = 0; i < ecc->steps; i++) {
720 chip->read_buf(mtd, NULL, ecc->size);
721
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200722 tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD | NFC_ECC_OP;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200723 writel(tmp, nfc->regs + NFC_REG_CMD);
724
725 ret = sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
726 if (ret)
727 return ret;
728
729 memcpy_fromio(buf, nfc->regs + NFC_RAM0_BASE, ecc->size);
730 buf += ecc->size;
731 offset += ecc->size;
732
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200733 if (readl(nfc->regs + NFC_REG_ECC_ST) & NFC_ECC_ERR(0)) {
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200734 mtd->ecc_stats.failed++;
735 } else {
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200736 tmp = readl(nfc->regs + NFC_REG_ECC_ERR_CNT(0));
737 mtd->ecc_stats.corrected += NFC_ECC_ERR_CNT(0, tmp);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200738 max_bitflips = max_t(unsigned int, max_bitflips, tmp);
739 }
740
741 if (oob_required) {
742 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset, -1);
743 chip->read_buf(mtd, oob, ecc->bytes + ecc->prepad);
744 oob += ecc->bytes + ecc->prepad;
745 }
746
747 offset += ecc->bytes + ecc->prepad;
748 }
749
750 if (oob_required) {
751 cnt = mtd->oobsize - (oob - chip->oob_poi);
752 if (cnt > 0) {
753 chip->cmdfunc(mtd, NAND_CMD_RNDOUT, offset, -1);
754 chip->read_buf(mtd, oob, cnt);
755 }
756 }
757
758 writel(readl(nfc->regs + NFC_REG_ECC_CTL) & ~NFC_ECC_EN,
759 nfc->regs + NFC_REG_ECC_CTL);
760
761 return max_bitflips;
762}
763
764static int sunxi_nfc_hw_syndrome_ecc_write_page(struct mtd_info *mtd,
765 struct nand_chip *chip,
766 const uint8_t *buf,
767 int oob_required)
768{
769 struct sunxi_nfc *nfc = to_sunxi_nfc(chip->controller);
770 struct nand_ecc_ctrl *ecc = &chip->ecc;
771 struct sunxi_nand_hw_ecc *data = ecc->priv;
772 uint8_t *oob = chip->oob_poi;
773 int offset = 0;
774 int ret;
775 int cnt;
776 u32 tmp;
777 int i;
778
779 tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200780 tmp &= ~(NFC_ECC_MODE_MSK | NFC_ECC_PIPELINE | NFC_ECC_BLOCK_SIZE_MSK);
781 tmp |= NFC_ECC_EN | NFC_ECC_MODE(data->mode) | NFC_ECC_EXCEPTION;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200782
783 writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
784
785 for (i = 0; i < ecc->steps; i++) {
786 chip->write_buf(mtd, buf + (i * ecc->size), ecc->size);
787 offset += ecc->size;
788
789 /* Fill OOB data in */
Boris BREZILLON03a0e8a2015-09-14 10:41:03 +0200790 writel(NFC_BUF_TO_USER_DATA(oob),
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200791 nfc->regs + NFC_REG_USER_DATA(0));
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200792
793 tmp = NFC_DATA_TRANS | NFC_DATA_SWAP_METHOD | NFC_ACCESS_DIR |
Boris BREZILLONb6a02c02015-09-16 09:46:36 +0200794 NFC_ECC_OP;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200795 writel(tmp, nfc->regs + NFC_REG_CMD);
796
797 ret = sunxi_nfc_wait_int(nfc, NFC_CMD_INT_FLAG, 0);
798 if (ret)
799 return ret;
800
801 offset += ecc->bytes + ecc->prepad;
802 oob += ecc->bytes + ecc->prepad;
803 }
804
805 if (oob_required) {
806 cnt = mtd->oobsize - (oob - chip->oob_poi);
807 if (cnt > 0) {
808 chip->cmdfunc(mtd, NAND_CMD_RNDIN, offset, -1);
809 chip->write_buf(mtd, oob, cnt);
810 }
811 }
812
813 tmp = readl(nfc->regs + NFC_REG_ECC_CTL);
814 tmp &= ~NFC_ECC_EN;
815
816 writel(tmp, nfc->regs + NFC_REG_ECC_CTL);
817
818 return 0;
819}
820
Roy Spliet9c618292015-06-26 11:00:10 +0200821static const s32 tWB_lut[] = {6, 12, 16, 20};
822static const s32 tRHW_lut[] = {4, 8, 12, 20};
823
824static int _sunxi_nand_lookup_timing(const s32 *lut, int lut_size, u32 duration,
825 u32 clk_period)
826{
827 u32 clk_cycles = DIV_ROUND_UP(duration, clk_period);
828 int i;
829
830 for (i = 0; i < lut_size; i++) {
831 if (clk_cycles <= lut[i])
832 return i;
833 }
834
835 /* Doesn't fit */
836 return -EINVAL;
837}
838
839#define sunxi_nand_lookup_timing(l, p, c) \
840 _sunxi_nand_lookup_timing(l, ARRAY_SIZE(l), p, c)
841
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200842static int sunxi_nand_chip_set_timings(struct sunxi_nand_chip *chip,
843 const struct nand_sdr_timings *timings)
844{
Roy Spliet9c618292015-06-26 11:00:10 +0200845 struct sunxi_nfc *nfc = to_sunxi_nfc(chip->nand.controller);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200846 u32 min_clk_period = 0;
Roy Spliet9c618292015-06-26 11:00:10 +0200847 s32 tWB, tADL, tWHR, tRHW, tCAD;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200848
849 /* T1 <=> tCLS */
850 if (timings->tCLS_min > min_clk_period)
851 min_clk_period = timings->tCLS_min;
852
853 /* T2 <=> tCLH */
854 if (timings->tCLH_min > min_clk_period)
855 min_clk_period = timings->tCLH_min;
856
857 /* T3 <=> tCS */
858 if (timings->tCS_min > min_clk_period)
859 min_clk_period = timings->tCS_min;
860
861 /* T4 <=> tCH */
862 if (timings->tCH_min > min_clk_period)
863 min_clk_period = timings->tCH_min;
864
865 /* T5 <=> tWP */
866 if (timings->tWP_min > min_clk_period)
867 min_clk_period = timings->tWP_min;
868
869 /* T6 <=> tWH */
870 if (timings->tWH_min > min_clk_period)
871 min_clk_period = timings->tWH_min;
872
873 /* T7 <=> tALS */
874 if (timings->tALS_min > min_clk_period)
875 min_clk_period = timings->tALS_min;
876
877 /* T8 <=> tDS */
878 if (timings->tDS_min > min_clk_period)
879 min_clk_period = timings->tDS_min;
880
881 /* T9 <=> tDH */
882 if (timings->tDH_min > min_clk_period)
883 min_clk_period = timings->tDH_min;
884
885 /* T10 <=> tRR */
886 if (timings->tRR_min > (min_clk_period * 3))
887 min_clk_period = DIV_ROUND_UP(timings->tRR_min, 3);
888
889 /* T11 <=> tALH */
890 if (timings->tALH_min > min_clk_period)
891 min_clk_period = timings->tALH_min;
892
893 /* T12 <=> tRP */
894 if (timings->tRP_min > min_clk_period)
895 min_clk_period = timings->tRP_min;
896
897 /* T13 <=> tREH */
898 if (timings->tREH_min > min_clk_period)
899 min_clk_period = timings->tREH_min;
900
901 /* T14 <=> tRC */
902 if (timings->tRC_min > (min_clk_period * 2))
903 min_clk_period = DIV_ROUND_UP(timings->tRC_min, 2);
904
905 /* T15 <=> tWC */
906 if (timings->tWC_min > (min_clk_period * 2))
907 min_clk_period = DIV_ROUND_UP(timings->tWC_min, 2);
908
Roy Spliet9c618292015-06-26 11:00:10 +0200909 /* T16 - T19 + tCAD */
910 tWB = sunxi_nand_lookup_timing(tWB_lut, timings->tWB_max,
911 min_clk_period);
912 if (tWB < 0) {
913 dev_err(nfc->dev, "unsupported tWB\n");
914 return tWB;
915 }
916
917 tADL = DIV_ROUND_UP(timings->tADL_min, min_clk_period) >> 3;
918 if (tADL > 3) {
919 dev_err(nfc->dev, "unsupported tADL\n");
920 return -EINVAL;
921 }
922
923 tWHR = DIV_ROUND_UP(timings->tWHR_min, min_clk_period) >> 3;
924 if (tWHR > 3) {
925 dev_err(nfc->dev, "unsupported tWHR\n");
926 return -EINVAL;
927 }
928
929 tRHW = sunxi_nand_lookup_timing(tRHW_lut, timings->tRHW_min,
930 min_clk_period);
931 if (tRHW < 0) {
932 dev_err(nfc->dev, "unsupported tRHW\n");
933 return tRHW;
934 }
935
936 /*
937 * TODO: according to ONFI specs this value only applies for DDR NAND,
938 * but Allwinner seems to set this to 0x7. Mimic them for now.
939 */
940 tCAD = 0x7;
941
942 /* TODO: A83 has some more bits for CDQSS, CS, CLHZ, CCS, WC */
943 chip->timing_cfg = NFC_TIMING_CFG(tWB, tADL, tWHR, tRHW, tCAD);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200944
Roy Splietd052e502015-06-26 11:00:11 +0200945 /*
946 * ONFI specification 3.1, paragraph 4.15.2 dictates that EDO data
947 * output cycle timings shall be used if the host drives tRC less than
948 * 30 ns.
949 */
950 chip->timing_ctl = (timings->tRC_min < 30000) ? NFC_TIMING_CTL_EDO : 0;
951
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200952 /* Convert min_clk_period from picoseconds to nanoseconds */
953 min_clk_period = DIV_ROUND_UP(min_clk_period, 1000);
954
955 /*
956 * Convert min_clk_period into a clk frequency, then get the
957 * appropriate rate for the NAND controller IP given this formula
958 * (specified in the datasheet):
959 * nand clk_rate = 2 * min_clk_rate
960 */
961 chip->clk_rate = (2 * NSEC_PER_SEC) / min_clk_period;
962
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200963 return 0;
964}
965
966static int sunxi_nand_chip_init_timings(struct sunxi_nand_chip *chip,
967 struct device_node *np)
968{
969 const struct nand_sdr_timings *timings;
970 int ret;
971 int mode;
972
973 mode = onfi_get_async_timing_mode(&chip->nand);
974 if (mode == ONFI_TIMING_MODE_UNKNOWN) {
975 mode = chip->nand.onfi_timing_mode_default;
976 } else {
977 uint8_t feature[ONFI_SUBFEATURE_PARAM_LEN] = {};
Stefan Roese7eadd472015-08-28 14:45:21 +0200978 int i;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200979
980 mode = fls(mode) - 1;
981 if (mode < 0)
982 mode = 0;
983
984 feature[0] = mode;
Stefan Roese7eadd472015-08-28 14:45:21 +0200985 for (i = 0; i < chip->nsels; i++) {
986 chip->nand.select_chip(&chip->mtd, i);
987 ret = chip->nand.onfi_set_features(&chip->mtd,
988 &chip->nand,
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200989 ONFI_FEATURE_ADDR_TIMING_MODE,
990 feature);
Stefan Roese7eadd472015-08-28 14:45:21 +0200991 chip->nand.select_chip(&chip->mtd, -1);
992 if (ret)
993 return ret;
994 }
Boris BREZILLON1fef62c2014-10-21 15:08:41 +0200995 }
996
997 timings = onfi_async_timing_mode_to_sdr_timings(mode);
998 if (IS_ERR(timings))
999 return PTR_ERR(timings);
1000
1001 return sunxi_nand_chip_set_timings(chip, timings);
1002}
1003
1004static int sunxi_nand_hw_common_ecc_ctrl_init(struct mtd_info *mtd,
1005 struct nand_ecc_ctrl *ecc,
1006 struct device_node *np)
1007{
1008 static const u8 strengths[] = { 16, 24, 28, 32, 40, 48, 56, 60, 64 };
1009 struct nand_chip *nand = mtd->priv;
1010 struct sunxi_nand_chip *sunxi_nand = to_sunxi_nand(nand);
1011 struct sunxi_nfc *nfc = to_sunxi_nfc(sunxi_nand->nand.controller);
1012 struct sunxi_nand_hw_ecc *data;
1013 struct nand_ecclayout *layout;
1014 int nsectors;
1015 int ret;
1016 int i;
1017
1018 data = kzalloc(sizeof(*data), GFP_KERNEL);
1019 if (!data)
1020 return -ENOMEM;
1021
1022 /* Add ECC info retrieval from DT */
1023 for (i = 0; i < ARRAY_SIZE(strengths); i++) {
1024 if (ecc->strength <= strengths[i])
1025 break;
1026 }
1027
1028 if (i >= ARRAY_SIZE(strengths)) {
1029 dev_err(nfc->dev, "unsupported strength\n");
1030 ret = -ENOTSUPP;
1031 goto err;
1032 }
1033
1034 data->mode = i;
1035
1036 /* HW ECC always request ECC bytes for 1024 bytes blocks */
1037 ecc->bytes = DIV_ROUND_UP(ecc->strength * fls(8 * 1024), 8);
1038
1039 /* HW ECC always work with even numbers of ECC bytes */
1040 ecc->bytes = ALIGN(ecc->bytes, 2);
1041
1042 layout = &data->layout;
1043 nsectors = mtd->writesize / ecc->size;
1044
1045 if (mtd->oobsize < ((ecc->bytes + 4) * nsectors)) {
1046 ret = -EINVAL;
1047 goto err;
1048 }
1049
1050 layout->eccbytes = (ecc->bytes * nsectors);
1051
1052 ecc->layout = layout;
1053 ecc->priv = data;
1054
1055 return 0;
1056
1057err:
1058 kfree(data);
1059
1060 return ret;
1061}
1062
1063static void sunxi_nand_hw_common_ecc_ctrl_cleanup(struct nand_ecc_ctrl *ecc)
1064{
1065 kfree(ecc->priv);
1066}
1067
1068static int sunxi_nand_hw_ecc_ctrl_init(struct mtd_info *mtd,
1069 struct nand_ecc_ctrl *ecc,
1070 struct device_node *np)
1071{
1072 struct nand_ecclayout *layout;
1073 int nsectors;
1074 int i, j;
1075 int ret;
1076
1077 ret = sunxi_nand_hw_common_ecc_ctrl_init(mtd, ecc, np);
1078 if (ret)
1079 return ret;
1080
1081 ecc->read_page = sunxi_nfc_hw_ecc_read_page;
1082 ecc->write_page = sunxi_nfc_hw_ecc_write_page;
1083 layout = ecc->layout;
1084 nsectors = mtd->writesize / ecc->size;
1085
1086 for (i = 0; i < nsectors; i++) {
1087 if (i) {
1088 layout->oobfree[i].offset =
1089 layout->oobfree[i - 1].offset +
1090 layout->oobfree[i - 1].length +
1091 ecc->bytes;
1092 layout->oobfree[i].length = 4;
1093 } else {
1094 /*
1095 * The first 2 bytes are used for BB markers, hence we
1096 * only have 2 bytes available in the first user data
1097 * section.
1098 */
1099 layout->oobfree[i].length = 2;
1100 layout->oobfree[i].offset = 2;
1101 }
1102
1103 for (j = 0; j < ecc->bytes; j++)
1104 layout->eccpos[(ecc->bytes * i) + j] =
1105 layout->oobfree[i].offset +
1106 layout->oobfree[i].length + j;
1107 }
1108
1109 if (mtd->oobsize > (ecc->bytes + 4) * nsectors) {
1110 layout->oobfree[nsectors].offset =
1111 layout->oobfree[nsectors - 1].offset +
1112 layout->oobfree[nsectors - 1].length +
1113 ecc->bytes;
1114 layout->oobfree[nsectors].length = mtd->oobsize -
1115 ((ecc->bytes + 4) * nsectors);
1116 }
1117
1118 return 0;
1119}
1120
1121static int sunxi_nand_hw_syndrome_ecc_ctrl_init(struct mtd_info *mtd,
1122 struct nand_ecc_ctrl *ecc,
1123 struct device_node *np)
1124{
1125 struct nand_ecclayout *layout;
1126 int nsectors;
1127 int i;
1128 int ret;
1129
1130 ret = sunxi_nand_hw_common_ecc_ctrl_init(mtd, ecc, np);
1131 if (ret)
1132 return ret;
1133
1134 ecc->prepad = 4;
1135 ecc->read_page = sunxi_nfc_hw_syndrome_ecc_read_page;
1136 ecc->write_page = sunxi_nfc_hw_syndrome_ecc_write_page;
1137
1138 layout = ecc->layout;
1139 nsectors = mtd->writesize / ecc->size;
1140
1141 for (i = 0; i < (ecc->bytes * nsectors); i++)
1142 layout->eccpos[i] = i;
1143
1144 layout->oobfree[0].length = mtd->oobsize - i;
1145 layout->oobfree[0].offset = i;
1146
1147 return 0;
1148}
1149
1150static void sunxi_nand_ecc_cleanup(struct nand_ecc_ctrl *ecc)
1151{
1152 switch (ecc->mode) {
1153 case NAND_ECC_HW:
1154 case NAND_ECC_HW_SYNDROME:
1155 sunxi_nand_hw_common_ecc_ctrl_cleanup(ecc);
1156 break;
1157 case NAND_ECC_NONE:
1158 kfree(ecc->layout);
1159 default:
1160 break;
1161 }
1162}
1163
1164static int sunxi_nand_ecc_init(struct mtd_info *mtd, struct nand_ecc_ctrl *ecc,
1165 struct device_node *np)
1166{
1167 struct nand_chip *nand = mtd->priv;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001168 int ret;
1169
Boris BREZILLONa3d22a52015-09-02 10:30:25 +02001170 if (!ecc->size) {
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001171 ecc->size = nand->ecc_step_ds;
1172 ecc->strength = nand->ecc_strength_ds;
1173 }
1174
1175 if (!ecc->size || !ecc->strength)
1176 return -EINVAL;
1177
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001178 switch (ecc->mode) {
1179 case NAND_ECC_SOFT_BCH:
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001180 break;
1181 case NAND_ECC_HW:
1182 ret = sunxi_nand_hw_ecc_ctrl_init(mtd, ecc, np);
1183 if (ret)
1184 return ret;
1185 break;
1186 case NAND_ECC_HW_SYNDROME:
1187 ret = sunxi_nand_hw_syndrome_ecc_ctrl_init(mtd, ecc, np);
1188 if (ret)
1189 return ret;
1190 break;
1191 case NAND_ECC_NONE:
1192 ecc->layout = kzalloc(sizeof(*ecc->layout), GFP_KERNEL);
1193 if (!ecc->layout)
1194 return -ENOMEM;
1195 ecc->layout->oobfree[0].length = mtd->oobsize;
1196 case NAND_ECC_SOFT:
1197 break;
1198 default:
1199 return -EINVAL;
1200 }
1201
1202 return 0;
1203}
1204
1205static int sunxi_nand_chip_init(struct device *dev, struct sunxi_nfc *nfc,
1206 struct device_node *np)
1207{
1208 const struct nand_sdr_timings *timings;
1209 struct sunxi_nand_chip *chip;
1210 struct mtd_part_parser_data ppdata;
1211 struct mtd_info *mtd;
1212 struct nand_chip *nand;
1213 int nsels;
1214 int ret;
1215 int i;
1216 u32 tmp;
1217
1218 if (!of_get_property(np, "reg", &nsels))
1219 return -EINVAL;
1220
1221 nsels /= sizeof(u32);
1222 if (!nsels) {
1223 dev_err(dev, "invalid reg property size\n");
1224 return -EINVAL;
1225 }
1226
1227 chip = devm_kzalloc(dev,
1228 sizeof(*chip) +
1229 (nsels * sizeof(struct sunxi_nand_chip_sel)),
1230 GFP_KERNEL);
1231 if (!chip) {
1232 dev_err(dev, "could not allocate chip\n");
1233 return -ENOMEM;
1234 }
1235
1236 chip->nsels = nsels;
1237 chip->selected = -1;
1238
1239 for (i = 0; i < nsels; i++) {
1240 ret = of_property_read_u32_index(np, "reg", i, &tmp);
1241 if (ret) {
1242 dev_err(dev, "could not retrieve reg property: %d\n",
1243 ret);
1244 return ret;
1245 }
1246
1247 if (tmp > NFC_MAX_CS) {
1248 dev_err(dev,
1249 "invalid reg value: %u (max CS = 7)\n",
1250 tmp);
1251 return -EINVAL;
1252 }
1253
1254 if (test_and_set_bit(tmp, &nfc->assigned_cs)) {
1255 dev_err(dev, "CS %d already assigned\n", tmp);
1256 return -EINVAL;
1257 }
1258
1259 chip->sels[i].cs = tmp;
1260
1261 if (!of_property_read_u32_index(np, "allwinner,rb", i, &tmp) &&
1262 tmp < 2) {
1263 chip->sels[i].rb.type = RB_NATIVE;
1264 chip->sels[i].rb.info.nativeid = tmp;
1265 } else {
1266 ret = of_get_named_gpio(np, "rb-gpios", i);
1267 if (ret >= 0) {
1268 tmp = ret;
1269 chip->sels[i].rb.type = RB_GPIO;
1270 chip->sels[i].rb.info.gpio = tmp;
1271 ret = devm_gpio_request(dev, tmp, "nand-rb");
1272 if (ret)
1273 return ret;
1274
1275 ret = gpio_direction_input(tmp);
1276 if (ret)
1277 return ret;
1278 } else {
1279 chip->sels[i].rb.type = RB_NONE;
1280 }
1281 }
1282 }
1283
1284 timings = onfi_async_timing_mode_to_sdr_timings(0);
1285 if (IS_ERR(timings)) {
1286 ret = PTR_ERR(timings);
1287 dev_err(dev,
1288 "could not retrieve timings for ONFI mode 0: %d\n",
1289 ret);
1290 return ret;
1291 }
1292
1293 ret = sunxi_nand_chip_set_timings(chip, timings);
1294 if (ret) {
1295 dev_err(dev, "could not configure chip timings: %d\n", ret);
1296 return ret;
1297 }
1298
1299 nand = &chip->nand;
1300 /* Default tR value specified in the ONFI spec (chapter 4.15.1) */
1301 nand->chip_delay = 200;
1302 nand->controller = &nfc->controller;
Boris BREZILLONa3d22a52015-09-02 10:30:25 +02001303 /*
1304 * Set the ECC mode to the default value in case nothing is specified
1305 * in the DT.
1306 */
1307 nand->ecc.mode = NAND_ECC_HW;
1308 nand->flash_node = np;
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001309 nand->select_chip = sunxi_nfc_select_chip;
1310 nand->cmd_ctrl = sunxi_nfc_cmd_ctrl;
1311 nand->read_buf = sunxi_nfc_read_buf;
1312 nand->write_buf = sunxi_nfc_write_buf;
1313 nand->read_byte = sunxi_nfc_read_byte;
1314
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001315 mtd = &chip->mtd;
1316 mtd->dev.parent = dev;
1317 mtd->priv = nand;
1318 mtd->owner = THIS_MODULE;
1319
1320 ret = nand_scan_ident(mtd, nsels, NULL);
1321 if (ret)
1322 return ret;
1323
Boris BREZILLONa3d22a52015-09-02 10:30:25 +02001324 if (nand->bbt_options & NAND_BBT_USE_FLASH)
1325 nand->bbt_options |= NAND_BBT_NO_OOB;
1326
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001327 ret = sunxi_nand_chip_init_timings(chip, np);
1328 if (ret) {
1329 dev_err(dev, "could not configure chip timings: %d\n", ret);
1330 return ret;
1331 }
1332
1333 ret = sunxi_nand_ecc_init(mtd, &nand->ecc, np);
1334 if (ret) {
1335 dev_err(dev, "ECC init failed: %d\n", ret);
1336 return ret;
1337 }
1338
1339 ret = nand_scan_tail(mtd);
1340 if (ret) {
1341 dev_err(dev, "nand_scan_tail failed: %d\n", ret);
1342 return ret;
1343 }
1344
1345 ppdata.of_node = np;
1346 ret = mtd_device_parse_register(mtd, NULL, &ppdata, NULL, 0);
1347 if (ret) {
1348 dev_err(dev, "failed to register mtd device: %d\n", ret);
1349 nand_release(mtd);
1350 return ret;
1351 }
1352
1353 list_add_tail(&chip->node, &nfc->chips);
1354
1355 return 0;
1356}
1357
1358static int sunxi_nand_chips_init(struct device *dev, struct sunxi_nfc *nfc)
1359{
1360 struct device_node *np = dev->of_node;
1361 struct device_node *nand_np;
1362 int nchips = of_get_child_count(np);
1363 int ret;
1364
1365 if (nchips > 8) {
1366 dev_err(dev, "too many NAND chips: %d (max = 8)\n", nchips);
1367 return -EINVAL;
1368 }
1369
1370 for_each_child_of_node(np, nand_np) {
1371 ret = sunxi_nand_chip_init(dev, nfc, nand_np);
1372 if (ret)
1373 return ret;
1374 }
1375
1376 return 0;
1377}
1378
1379static void sunxi_nand_chips_cleanup(struct sunxi_nfc *nfc)
1380{
1381 struct sunxi_nand_chip *chip;
1382
1383 while (!list_empty(&nfc->chips)) {
1384 chip = list_first_entry(&nfc->chips, struct sunxi_nand_chip,
1385 node);
1386 nand_release(&chip->mtd);
1387 sunxi_nand_ecc_cleanup(&chip->nand.ecc);
Boris BREZILLON8e375cc2015-09-13 18:14:43 +02001388 list_del(&chip->node);
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001389 }
1390}
1391
1392static int sunxi_nfc_probe(struct platform_device *pdev)
1393{
1394 struct device *dev = &pdev->dev;
1395 struct resource *r;
1396 struct sunxi_nfc *nfc;
1397 int irq;
1398 int ret;
1399
1400 nfc = devm_kzalloc(dev, sizeof(*nfc), GFP_KERNEL);
1401 if (!nfc)
1402 return -ENOMEM;
1403
1404 nfc->dev = dev;
1405 spin_lock_init(&nfc->controller.lock);
1406 init_waitqueue_head(&nfc->controller.wq);
1407 INIT_LIST_HEAD(&nfc->chips);
1408
1409 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1410 nfc->regs = devm_ioremap_resource(dev, r);
1411 if (IS_ERR(nfc->regs))
1412 return PTR_ERR(nfc->regs);
1413
1414 irq = platform_get_irq(pdev, 0);
1415 if (irq < 0) {
1416 dev_err(dev, "failed to retrieve irq\n");
1417 return irq;
1418 }
1419
1420 nfc->ahb_clk = devm_clk_get(dev, "ahb");
1421 if (IS_ERR(nfc->ahb_clk)) {
1422 dev_err(dev, "failed to retrieve ahb clk\n");
1423 return PTR_ERR(nfc->ahb_clk);
1424 }
1425
1426 ret = clk_prepare_enable(nfc->ahb_clk);
1427 if (ret)
1428 return ret;
1429
1430 nfc->mod_clk = devm_clk_get(dev, "mod");
1431 if (IS_ERR(nfc->mod_clk)) {
1432 dev_err(dev, "failed to retrieve mod clk\n");
1433 ret = PTR_ERR(nfc->mod_clk);
1434 goto out_ahb_clk_unprepare;
1435 }
1436
1437 ret = clk_prepare_enable(nfc->mod_clk);
1438 if (ret)
1439 goto out_ahb_clk_unprepare;
1440
1441 ret = sunxi_nfc_rst(nfc);
1442 if (ret)
1443 goto out_mod_clk_unprepare;
1444
1445 writel(0, nfc->regs + NFC_REG_INT);
1446 ret = devm_request_irq(dev, irq, sunxi_nfc_interrupt,
1447 0, "sunxi-nand", nfc);
1448 if (ret)
1449 goto out_mod_clk_unprepare;
1450
1451 platform_set_drvdata(pdev, nfc);
1452
Boris BREZILLON1fef62c2014-10-21 15:08:41 +02001453 ret = sunxi_nand_chips_init(dev, nfc);
1454 if (ret) {
1455 dev_err(dev, "failed to init nand chips\n");
1456 goto out_mod_clk_unprepare;
1457 }
1458
1459 return 0;
1460
1461out_mod_clk_unprepare:
1462 clk_disable_unprepare(nfc->mod_clk);
1463out_ahb_clk_unprepare:
1464 clk_disable_unprepare(nfc->ahb_clk);
1465
1466 return ret;
1467}
1468
1469static int sunxi_nfc_remove(struct platform_device *pdev)
1470{
1471 struct sunxi_nfc *nfc = platform_get_drvdata(pdev);
1472
1473 sunxi_nand_chips_cleanup(nfc);
1474
1475 return 0;
1476}
1477
1478static const struct of_device_id sunxi_nfc_ids[] = {
1479 { .compatible = "allwinner,sun4i-a10-nand" },
1480 { /* sentinel */ }
1481};
1482MODULE_DEVICE_TABLE(of, sunxi_nfc_ids);
1483
1484static struct platform_driver sunxi_nfc_driver = {
1485 .driver = {
1486 .name = "sunxi_nand",
1487 .of_match_table = sunxi_nfc_ids,
1488 },
1489 .probe = sunxi_nfc_probe,
1490 .remove = sunxi_nfc_remove,
1491};
1492module_platform_driver(sunxi_nfc_driver);
1493
1494MODULE_LICENSE("GPL v2");
1495MODULE_AUTHOR("Boris BREZILLON");
1496MODULE_DESCRIPTION("Allwinner NAND Flash Controller driver");
1497MODULE_ALIAS("platform:sunxi_nand");