Merge branch 'parisc-4.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller...
[sfrench/cifs-2.6.git] / drivers / mtd / nand / raw / brcmnand / brcmnand.c
1 /*
2  * Copyright © 2010-2015 Broadcom Corporation
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  */
13
14 #include <linux/clk.h>
15 #include <linux/version.h>
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/delay.h>
19 #include <linux/device.h>
20 #include <linux/platform_device.h>
21 #include <linux/err.h>
22 #include <linux/completion.h>
23 #include <linux/interrupt.h>
24 #include <linux/spinlock.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/ioport.h>
27 #include <linux/bug.h>
28 #include <linux/kernel.h>
29 #include <linux/bitops.h>
30 #include <linux/mm.h>
31 #include <linux/mtd/mtd.h>
32 #include <linux/mtd/rawnand.h>
33 #include <linux/mtd/partitions.h>
34 #include <linux/of.h>
35 #include <linux/of_platform.h>
36 #include <linux/slab.h>
37 #include <linux/list.h>
38 #include <linux/log2.h>
39
40 #include "brcmnand.h"
41
42 /*
43  * This flag controls if WP stays on between erase/write commands to mitigate
44  * flash corruption due to power glitches. Values:
45  * 0: NAND_WP is not used or not available
46  * 1: NAND_WP is set by default, cleared for erase/write operations
47  * 2: NAND_WP is always cleared
48  */
49 static int wp_on = 1;
50 module_param(wp_on, int, 0444);
51
52 /***********************************************************************
53  * Definitions
54  ***********************************************************************/
55
56 #define DRV_NAME                        "brcmnand"
57
58 #define CMD_NULL                        0x00
59 #define CMD_PAGE_READ                   0x01
60 #define CMD_SPARE_AREA_READ             0x02
61 #define CMD_STATUS_READ                 0x03
62 #define CMD_PROGRAM_PAGE                0x04
63 #define CMD_PROGRAM_SPARE_AREA          0x05
64 #define CMD_COPY_BACK                   0x06
65 #define CMD_DEVICE_ID_READ              0x07
66 #define CMD_BLOCK_ERASE                 0x08
67 #define CMD_FLASH_RESET                 0x09
68 #define CMD_BLOCKS_LOCK                 0x0a
69 #define CMD_BLOCKS_LOCK_DOWN            0x0b
70 #define CMD_BLOCKS_UNLOCK               0x0c
71 #define CMD_READ_BLOCKS_LOCK_STATUS     0x0d
72 #define CMD_PARAMETER_READ              0x0e
73 #define CMD_PARAMETER_CHANGE_COL        0x0f
74 #define CMD_LOW_LEVEL_OP                0x10
75
76 struct brcm_nand_dma_desc {
77         u32 next_desc;
78         u32 next_desc_ext;
79         u32 cmd_irq;
80         u32 dram_addr;
81         u32 dram_addr_ext;
82         u32 tfr_len;
83         u32 total_len;
84         u32 flash_addr;
85         u32 flash_addr_ext;
86         u32 cs;
87         u32 pad2[5];
88         u32 status_valid;
89 } __packed;
90
91 /* Bitfields for brcm_nand_dma_desc::status_valid */
92 #define FLASH_DMA_ECC_ERROR     (1 << 8)
93 #define FLASH_DMA_CORR_ERROR    (1 << 9)
94
95 /* 512B flash cache in the NAND controller HW */
96 #define FC_SHIFT                9U
97 #define FC_BYTES                512U
98 #define FC_WORDS                (FC_BYTES >> 2)
99
100 #define BRCMNAND_MIN_PAGESIZE   512
101 #define BRCMNAND_MIN_BLOCKSIZE  (8 * 1024)
102 #define BRCMNAND_MIN_DEVSIZE    (4ULL * 1024 * 1024)
103
104 #define NAND_CTRL_RDY                   (INTFC_CTLR_READY | INTFC_FLASH_READY)
105 #define NAND_POLL_STATUS_TIMEOUT_MS     100
106
107 /* Controller feature flags */
108 enum {
109         BRCMNAND_HAS_1K_SECTORS                 = BIT(0),
110         BRCMNAND_HAS_PREFETCH                   = BIT(1),
111         BRCMNAND_HAS_CACHE_MODE                 = BIT(2),
112         BRCMNAND_HAS_WP                         = BIT(3),
113 };
114
115 struct brcmnand_controller {
116         struct device           *dev;
117         struct nand_controller  controller;
118         void __iomem            *nand_base;
119         void __iomem            *nand_fc; /* flash cache */
120         void __iomem            *flash_dma_base;
121         unsigned int            irq;
122         unsigned int            dma_irq;
123         int                     nand_version;
124
125         /* Some SoCs provide custom interrupt status register(s) */
126         struct brcmnand_soc     *soc;
127
128         /* Some SoCs have a gateable clock for the controller */
129         struct clk              *clk;
130
131         int                     cmd_pending;
132         bool                    dma_pending;
133         struct completion       done;
134         struct completion       dma_done;
135
136         /* List of NAND hosts (one for each chip-select) */
137         struct list_head host_list;
138
139         struct brcm_nand_dma_desc *dma_desc;
140         dma_addr_t              dma_pa;
141
142         /* in-memory cache of the FLASH_CACHE, used only for some commands */
143         u8                      flash_cache[FC_BYTES];
144
145         /* Controller revision details */
146         const u16               *reg_offsets;
147         unsigned int            reg_spacing; /* between CS1, CS2, ... regs */
148         const u8                *cs_offsets; /* within each chip-select */
149         const u8                *cs0_offsets; /* within CS0, if different */
150         unsigned int            max_block_size;
151         const unsigned int      *block_sizes;
152         unsigned int            max_page_size;
153         const unsigned int      *page_sizes;
154         unsigned int            max_oob;
155         u32                     features;
156
157         /* for low-power standby/resume only */
158         u32                     nand_cs_nand_select;
159         u32                     nand_cs_nand_xor;
160         u32                     corr_stat_threshold;
161         u32                     flash_dma_mode;
162 };
163
164 struct brcmnand_cfg {
165         u64                     device_size;
166         unsigned int            block_size;
167         unsigned int            page_size;
168         unsigned int            spare_area_size;
169         unsigned int            device_width;
170         unsigned int            col_adr_bytes;
171         unsigned int            blk_adr_bytes;
172         unsigned int            ful_adr_bytes;
173         unsigned int            sector_size_1k;
174         unsigned int            ecc_level;
175         /* use for low-power standby/resume only */
176         u32                     acc_control;
177         u32                     config;
178         u32                     config_ext;
179         u32                     timing_1;
180         u32                     timing_2;
181 };
182
183 struct brcmnand_host {
184         struct list_head        node;
185
186         struct nand_chip        chip;
187         struct platform_device  *pdev;
188         int                     cs;
189
190         unsigned int            last_cmd;
191         unsigned int            last_byte;
192         u64                     last_addr;
193         struct brcmnand_cfg     hwcfg;
194         struct brcmnand_controller *ctrl;
195 };
196
197 enum brcmnand_reg {
198         BRCMNAND_CMD_START = 0,
199         BRCMNAND_CMD_EXT_ADDRESS,
200         BRCMNAND_CMD_ADDRESS,
201         BRCMNAND_INTFC_STATUS,
202         BRCMNAND_CS_SELECT,
203         BRCMNAND_CS_XOR,
204         BRCMNAND_LL_OP,
205         BRCMNAND_CS0_BASE,
206         BRCMNAND_CS1_BASE,              /* CS1 regs, if non-contiguous */
207         BRCMNAND_CORR_THRESHOLD,
208         BRCMNAND_CORR_THRESHOLD_EXT,
209         BRCMNAND_UNCORR_COUNT,
210         BRCMNAND_CORR_COUNT,
211         BRCMNAND_CORR_EXT_ADDR,
212         BRCMNAND_CORR_ADDR,
213         BRCMNAND_UNCORR_EXT_ADDR,
214         BRCMNAND_UNCORR_ADDR,
215         BRCMNAND_SEMAPHORE,
216         BRCMNAND_ID,
217         BRCMNAND_ID_EXT,
218         BRCMNAND_LL_RDATA,
219         BRCMNAND_OOB_READ_BASE,
220         BRCMNAND_OOB_READ_10_BASE,      /* offset 0x10, if non-contiguous */
221         BRCMNAND_OOB_WRITE_BASE,
222         BRCMNAND_OOB_WRITE_10_BASE,     /* offset 0x10, if non-contiguous */
223         BRCMNAND_FC_BASE,
224 };
225
226 /* BRCMNAND v4.0 */
227 static const u16 brcmnand_regs_v40[] = {
228         [BRCMNAND_CMD_START]            =  0x04,
229         [BRCMNAND_CMD_EXT_ADDRESS]      =  0x08,
230         [BRCMNAND_CMD_ADDRESS]          =  0x0c,
231         [BRCMNAND_INTFC_STATUS]         =  0x6c,
232         [BRCMNAND_CS_SELECT]            =  0x14,
233         [BRCMNAND_CS_XOR]               =  0x18,
234         [BRCMNAND_LL_OP]                = 0x178,
235         [BRCMNAND_CS0_BASE]             =  0x40,
236         [BRCMNAND_CS1_BASE]             =  0xd0,
237         [BRCMNAND_CORR_THRESHOLD]       =  0x84,
238         [BRCMNAND_CORR_THRESHOLD_EXT]   =     0,
239         [BRCMNAND_UNCORR_COUNT]         =     0,
240         [BRCMNAND_CORR_COUNT]           =     0,
241         [BRCMNAND_CORR_EXT_ADDR]        =  0x70,
242         [BRCMNAND_CORR_ADDR]            =  0x74,
243         [BRCMNAND_UNCORR_EXT_ADDR]      =  0x78,
244         [BRCMNAND_UNCORR_ADDR]          =  0x7c,
245         [BRCMNAND_SEMAPHORE]            =  0x58,
246         [BRCMNAND_ID]                   =  0x60,
247         [BRCMNAND_ID_EXT]               =  0x64,
248         [BRCMNAND_LL_RDATA]             = 0x17c,
249         [BRCMNAND_OOB_READ_BASE]        =  0x20,
250         [BRCMNAND_OOB_READ_10_BASE]     = 0x130,
251         [BRCMNAND_OOB_WRITE_BASE]       =  0x30,
252         [BRCMNAND_OOB_WRITE_10_BASE]    =     0,
253         [BRCMNAND_FC_BASE]              = 0x200,
254 };
255
256 /* BRCMNAND v5.0 */
257 static const u16 brcmnand_regs_v50[] = {
258         [BRCMNAND_CMD_START]            =  0x04,
259         [BRCMNAND_CMD_EXT_ADDRESS]      =  0x08,
260         [BRCMNAND_CMD_ADDRESS]          =  0x0c,
261         [BRCMNAND_INTFC_STATUS]         =  0x6c,
262         [BRCMNAND_CS_SELECT]            =  0x14,
263         [BRCMNAND_CS_XOR]               =  0x18,
264         [BRCMNAND_LL_OP]                = 0x178,
265         [BRCMNAND_CS0_BASE]             =  0x40,
266         [BRCMNAND_CS1_BASE]             =  0xd0,
267         [BRCMNAND_CORR_THRESHOLD]       =  0x84,
268         [BRCMNAND_CORR_THRESHOLD_EXT]   =     0,
269         [BRCMNAND_UNCORR_COUNT]         =     0,
270         [BRCMNAND_CORR_COUNT]           =     0,
271         [BRCMNAND_CORR_EXT_ADDR]        =  0x70,
272         [BRCMNAND_CORR_ADDR]            =  0x74,
273         [BRCMNAND_UNCORR_EXT_ADDR]      =  0x78,
274         [BRCMNAND_UNCORR_ADDR]          =  0x7c,
275         [BRCMNAND_SEMAPHORE]            =  0x58,
276         [BRCMNAND_ID]                   =  0x60,
277         [BRCMNAND_ID_EXT]               =  0x64,
278         [BRCMNAND_LL_RDATA]             = 0x17c,
279         [BRCMNAND_OOB_READ_BASE]        =  0x20,
280         [BRCMNAND_OOB_READ_10_BASE]     = 0x130,
281         [BRCMNAND_OOB_WRITE_BASE]       =  0x30,
282         [BRCMNAND_OOB_WRITE_10_BASE]    = 0x140,
283         [BRCMNAND_FC_BASE]              = 0x200,
284 };
285
286 /* BRCMNAND v6.0 - v7.1 */
287 static const u16 brcmnand_regs_v60[] = {
288         [BRCMNAND_CMD_START]            =  0x04,
289         [BRCMNAND_CMD_EXT_ADDRESS]      =  0x08,
290         [BRCMNAND_CMD_ADDRESS]          =  0x0c,
291         [BRCMNAND_INTFC_STATUS]         =  0x14,
292         [BRCMNAND_CS_SELECT]            =  0x18,
293         [BRCMNAND_CS_XOR]               =  0x1c,
294         [BRCMNAND_LL_OP]                =  0x20,
295         [BRCMNAND_CS0_BASE]             =  0x50,
296         [BRCMNAND_CS1_BASE]             =     0,
297         [BRCMNAND_CORR_THRESHOLD]       =  0xc0,
298         [BRCMNAND_CORR_THRESHOLD_EXT]   =  0xc4,
299         [BRCMNAND_UNCORR_COUNT]         =  0xfc,
300         [BRCMNAND_CORR_COUNT]           = 0x100,
301         [BRCMNAND_CORR_EXT_ADDR]        = 0x10c,
302         [BRCMNAND_CORR_ADDR]            = 0x110,
303         [BRCMNAND_UNCORR_EXT_ADDR]      = 0x114,
304         [BRCMNAND_UNCORR_ADDR]          = 0x118,
305         [BRCMNAND_SEMAPHORE]            = 0x150,
306         [BRCMNAND_ID]                   = 0x194,
307         [BRCMNAND_ID_EXT]               = 0x198,
308         [BRCMNAND_LL_RDATA]             = 0x19c,
309         [BRCMNAND_OOB_READ_BASE]        = 0x200,
310         [BRCMNAND_OOB_READ_10_BASE]     =     0,
311         [BRCMNAND_OOB_WRITE_BASE]       = 0x280,
312         [BRCMNAND_OOB_WRITE_10_BASE]    =     0,
313         [BRCMNAND_FC_BASE]              = 0x400,
314 };
315
316 /* BRCMNAND v7.1 */
317 static const u16 brcmnand_regs_v71[] = {
318         [BRCMNAND_CMD_START]            =  0x04,
319         [BRCMNAND_CMD_EXT_ADDRESS]      =  0x08,
320         [BRCMNAND_CMD_ADDRESS]          =  0x0c,
321         [BRCMNAND_INTFC_STATUS]         =  0x14,
322         [BRCMNAND_CS_SELECT]            =  0x18,
323         [BRCMNAND_CS_XOR]               =  0x1c,
324         [BRCMNAND_LL_OP]                =  0x20,
325         [BRCMNAND_CS0_BASE]             =  0x50,
326         [BRCMNAND_CS1_BASE]             =     0,
327         [BRCMNAND_CORR_THRESHOLD]       =  0xdc,
328         [BRCMNAND_CORR_THRESHOLD_EXT]   =  0xe0,
329         [BRCMNAND_UNCORR_COUNT]         =  0xfc,
330         [BRCMNAND_CORR_COUNT]           = 0x100,
331         [BRCMNAND_CORR_EXT_ADDR]        = 0x10c,
332         [BRCMNAND_CORR_ADDR]            = 0x110,
333         [BRCMNAND_UNCORR_EXT_ADDR]      = 0x114,
334         [BRCMNAND_UNCORR_ADDR]          = 0x118,
335         [BRCMNAND_SEMAPHORE]            = 0x150,
336         [BRCMNAND_ID]                   = 0x194,
337         [BRCMNAND_ID_EXT]               = 0x198,
338         [BRCMNAND_LL_RDATA]             = 0x19c,
339         [BRCMNAND_OOB_READ_BASE]        = 0x200,
340         [BRCMNAND_OOB_READ_10_BASE]     =     0,
341         [BRCMNAND_OOB_WRITE_BASE]       = 0x280,
342         [BRCMNAND_OOB_WRITE_10_BASE]    =     0,
343         [BRCMNAND_FC_BASE]              = 0x400,
344 };
345
346 /* BRCMNAND v7.2 */
347 static const u16 brcmnand_regs_v72[] = {
348         [BRCMNAND_CMD_START]            =  0x04,
349         [BRCMNAND_CMD_EXT_ADDRESS]      =  0x08,
350         [BRCMNAND_CMD_ADDRESS]          =  0x0c,
351         [BRCMNAND_INTFC_STATUS]         =  0x14,
352         [BRCMNAND_CS_SELECT]            =  0x18,
353         [BRCMNAND_CS_XOR]               =  0x1c,
354         [BRCMNAND_LL_OP]                =  0x20,
355         [BRCMNAND_CS0_BASE]             =  0x50,
356         [BRCMNAND_CS1_BASE]             =     0,
357         [BRCMNAND_CORR_THRESHOLD]       =  0xdc,
358         [BRCMNAND_CORR_THRESHOLD_EXT]   =  0xe0,
359         [BRCMNAND_UNCORR_COUNT]         =  0xfc,
360         [BRCMNAND_CORR_COUNT]           = 0x100,
361         [BRCMNAND_CORR_EXT_ADDR]        = 0x10c,
362         [BRCMNAND_CORR_ADDR]            = 0x110,
363         [BRCMNAND_UNCORR_EXT_ADDR]      = 0x114,
364         [BRCMNAND_UNCORR_ADDR]          = 0x118,
365         [BRCMNAND_SEMAPHORE]            = 0x150,
366         [BRCMNAND_ID]                   = 0x194,
367         [BRCMNAND_ID_EXT]               = 0x198,
368         [BRCMNAND_LL_RDATA]             = 0x19c,
369         [BRCMNAND_OOB_READ_BASE]        = 0x200,
370         [BRCMNAND_OOB_READ_10_BASE]     =     0,
371         [BRCMNAND_OOB_WRITE_BASE]       = 0x400,
372         [BRCMNAND_OOB_WRITE_10_BASE]    =     0,
373         [BRCMNAND_FC_BASE]              = 0x600,
374 };
375
376 enum brcmnand_cs_reg {
377         BRCMNAND_CS_CFG_EXT = 0,
378         BRCMNAND_CS_CFG,
379         BRCMNAND_CS_ACC_CONTROL,
380         BRCMNAND_CS_TIMING1,
381         BRCMNAND_CS_TIMING2,
382 };
383
384 /* Per chip-select offsets for v7.1 */
385 static const u8 brcmnand_cs_offsets_v71[] = {
386         [BRCMNAND_CS_ACC_CONTROL]       = 0x00,
387         [BRCMNAND_CS_CFG_EXT]           = 0x04,
388         [BRCMNAND_CS_CFG]               = 0x08,
389         [BRCMNAND_CS_TIMING1]           = 0x0c,
390         [BRCMNAND_CS_TIMING2]           = 0x10,
391 };
392
393 /* Per chip-select offsets for pre v7.1, except CS0 on <= v5.0 */
394 static const u8 brcmnand_cs_offsets[] = {
395         [BRCMNAND_CS_ACC_CONTROL]       = 0x00,
396         [BRCMNAND_CS_CFG_EXT]           = 0x04,
397         [BRCMNAND_CS_CFG]               = 0x04,
398         [BRCMNAND_CS_TIMING1]           = 0x08,
399         [BRCMNAND_CS_TIMING2]           = 0x0c,
400 };
401
402 /* Per chip-select offset for <= v5.0 on CS0 only */
403 static const u8 brcmnand_cs_offsets_cs0[] = {
404         [BRCMNAND_CS_ACC_CONTROL]       = 0x00,
405         [BRCMNAND_CS_CFG_EXT]           = 0x08,
406         [BRCMNAND_CS_CFG]               = 0x08,
407         [BRCMNAND_CS_TIMING1]           = 0x10,
408         [BRCMNAND_CS_TIMING2]           = 0x14,
409 };
410
411 /*
412  * Bitfields for the CFG and CFG_EXT registers. Pre-v7.1 controllers only had
413  * one config register, but once the bitfields overflowed, newer controllers
414  * (v7.1 and newer) added a CFG_EXT register and shuffled a few fields around.
415  */
416 enum {
417         CFG_BLK_ADR_BYTES_SHIFT         = 8,
418         CFG_COL_ADR_BYTES_SHIFT         = 12,
419         CFG_FUL_ADR_BYTES_SHIFT         = 16,
420         CFG_BUS_WIDTH_SHIFT             = 23,
421         CFG_BUS_WIDTH                   = BIT(CFG_BUS_WIDTH_SHIFT),
422         CFG_DEVICE_SIZE_SHIFT           = 24,
423
424         /* Only for pre-v7.1 (with no CFG_EXT register) */
425         CFG_PAGE_SIZE_SHIFT             = 20,
426         CFG_BLK_SIZE_SHIFT              = 28,
427
428         /* Only for v7.1+ (with CFG_EXT register) */
429         CFG_EXT_PAGE_SIZE_SHIFT         = 0,
430         CFG_EXT_BLK_SIZE_SHIFT          = 4,
431 };
432
433 /* BRCMNAND_INTFC_STATUS */
434 enum {
435         INTFC_FLASH_STATUS              = GENMASK(7, 0),
436
437         INTFC_ERASED                    = BIT(27),
438         INTFC_OOB_VALID                 = BIT(28),
439         INTFC_CACHE_VALID               = BIT(29),
440         INTFC_FLASH_READY               = BIT(30),
441         INTFC_CTLR_READY                = BIT(31),
442 };
443
444 static inline u32 nand_readreg(struct brcmnand_controller *ctrl, u32 offs)
445 {
446         return brcmnand_readl(ctrl->nand_base + offs);
447 }
448
449 static inline void nand_writereg(struct brcmnand_controller *ctrl, u32 offs,
450                                  u32 val)
451 {
452         brcmnand_writel(val, ctrl->nand_base + offs);
453 }
454
455 static int brcmnand_revision_init(struct brcmnand_controller *ctrl)
456 {
457         static const unsigned int block_sizes_v6[] = { 8, 16, 128, 256, 512, 1024, 2048, 0 };
458         static const unsigned int block_sizes_v4[] = { 16, 128, 8, 512, 256, 1024, 2048, 0 };
459         static const unsigned int page_sizes[] = { 512, 2048, 4096, 8192, 0 };
460
461         ctrl->nand_version = nand_readreg(ctrl, 0) & 0xffff;
462
463         /* Only support v4.0+? */
464         if (ctrl->nand_version < 0x0400) {
465                 dev_err(ctrl->dev, "version %#x not supported\n",
466                         ctrl->nand_version);
467                 return -ENODEV;
468         }
469
470         /* Register offsets */
471         if (ctrl->nand_version >= 0x0702)
472                 ctrl->reg_offsets = brcmnand_regs_v72;
473         else if (ctrl->nand_version >= 0x0701)
474                 ctrl->reg_offsets = brcmnand_regs_v71;
475         else if (ctrl->nand_version >= 0x0600)
476                 ctrl->reg_offsets = brcmnand_regs_v60;
477         else if (ctrl->nand_version >= 0x0500)
478                 ctrl->reg_offsets = brcmnand_regs_v50;
479         else if (ctrl->nand_version >= 0x0400)
480                 ctrl->reg_offsets = brcmnand_regs_v40;
481
482         /* Chip-select stride */
483         if (ctrl->nand_version >= 0x0701)
484                 ctrl->reg_spacing = 0x14;
485         else
486                 ctrl->reg_spacing = 0x10;
487
488         /* Per chip-select registers */
489         if (ctrl->nand_version >= 0x0701) {
490                 ctrl->cs_offsets = brcmnand_cs_offsets_v71;
491         } else {
492                 ctrl->cs_offsets = brcmnand_cs_offsets;
493
494                 /* v5.0 and earlier has a different CS0 offset layout */
495                 if (ctrl->nand_version <= 0x0500)
496                         ctrl->cs0_offsets = brcmnand_cs_offsets_cs0;
497         }
498
499         /* Page / block sizes */
500         if (ctrl->nand_version >= 0x0701) {
501                 /* >= v7.1 use nice power-of-2 values! */
502                 ctrl->max_page_size = 16 * 1024;
503                 ctrl->max_block_size = 2 * 1024 * 1024;
504         } else {
505                 ctrl->page_sizes = page_sizes;
506                 if (ctrl->nand_version >= 0x0600)
507                         ctrl->block_sizes = block_sizes_v6;
508                 else
509                         ctrl->block_sizes = block_sizes_v4;
510
511                 if (ctrl->nand_version < 0x0400) {
512                         ctrl->max_page_size = 4096;
513                         ctrl->max_block_size = 512 * 1024;
514                 }
515         }
516
517         /* Maximum spare area sector size (per 512B) */
518         if (ctrl->nand_version >= 0x0702)
519                 ctrl->max_oob = 128;
520         else if (ctrl->nand_version >= 0x0600)
521                 ctrl->max_oob = 64;
522         else if (ctrl->nand_version >= 0x0500)
523                 ctrl->max_oob = 32;
524         else
525                 ctrl->max_oob = 16;
526
527         /* v6.0 and newer (except v6.1) have prefetch support */
528         if (ctrl->nand_version >= 0x0600 && ctrl->nand_version != 0x0601)
529                 ctrl->features |= BRCMNAND_HAS_PREFETCH;
530
531         /*
532          * v6.x has cache mode, but it's implemented differently. Ignore it for
533          * now.
534          */
535         if (ctrl->nand_version >= 0x0700)
536                 ctrl->features |= BRCMNAND_HAS_CACHE_MODE;
537
538         if (ctrl->nand_version >= 0x0500)
539                 ctrl->features |= BRCMNAND_HAS_1K_SECTORS;
540
541         if (ctrl->nand_version >= 0x0700)
542                 ctrl->features |= BRCMNAND_HAS_WP;
543         else if (of_property_read_bool(ctrl->dev->of_node, "brcm,nand-has-wp"))
544                 ctrl->features |= BRCMNAND_HAS_WP;
545
546         return 0;
547 }
548
549 static inline u32 brcmnand_read_reg(struct brcmnand_controller *ctrl,
550                 enum brcmnand_reg reg)
551 {
552         u16 offs = ctrl->reg_offsets[reg];
553
554         if (offs)
555                 return nand_readreg(ctrl, offs);
556         else
557                 return 0;
558 }
559
560 static inline void brcmnand_write_reg(struct brcmnand_controller *ctrl,
561                                       enum brcmnand_reg reg, u32 val)
562 {
563         u16 offs = ctrl->reg_offsets[reg];
564
565         if (offs)
566                 nand_writereg(ctrl, offs, val);
567 }
568
569 static inline void brcmnand_rmw_reg(struct brcmnand_controller *ctrl,
570                                     enum brcmnand_reg reg, u32 mask, unsigned
571                                     int shift, u32 val)
572 {
573         u32 tmp = brcmnand_read_reg(ctrl, reg);
574
575         tmp &= ~mask;
576         tmp |= val << shift;
577         brcmnand_write_reg(ctrl, reg, tmp);
578 }
579
580 static inline u32 brcmnand_read_fc(struct brcmnand_controller *ctrl, int word)
581 {
582         return __raw_readl(ctrl->nand_fc + word * 4);
583 }
584
585 static inline void brcmnand_write_fc(struct brcmnand_controller *ctrl,
586                                      int word, u32 val)
587 {
588         __raw_writel(val, ctrl->nand_fc + word * 4);
589 }
590
591 static inline u16 brcmnand_cs_offset(struct brcmnand_controller *ctrl, int cs,
592                                      enum brcmnand_cs_reg reg)
593 {
594         u16 offs_cs0 = ctrl->reg_offsets[BRCMNAND_CS0_BASE];
595         u16 offs_cs1 = ctrl->reg_offsets[BRCMNAND_CS1_BASE];
596         u8 cs_offs;
597
598         if (cs == 0 && ctrl->cs0_offsets)
599                 cs_offs = ctrl->cs0_offsets[reg];
600         else
601                 cs_offs = ctrl->cs_offsets[reg];
602
603         if (cs && offs_cs1)
604                 return offs_cs1 + (cs - 1) * ctrl->reg_spacing + cs_offs;
605
606         return offs_cs0 + cs * ctrl->reg_spacing + cs_offs;
607 }
608
609 static inline u32 brcmnand_count_corrected(struct brcmnand_controller *ctrl)
610 {
611         if (ctrl->nand_version < 0x0600)
612                 return 1;
613         return brcmnand_read_reg(ctrl, BRCMNAND_CORR_COUNT);
614 }
615
616 static void brcmnand_wr_corr_thresh(struct brcmnand_host *host, u8 val)
617 {
618         struct brcmnand_controller *ctrl = host->ctrl;
619         unsigned int shift = 0, bits;
620         enum brcmnand_reg reg = BRCMNAND_CORR_THRESHOLD;
621         int cs = host->cs;
622
623         if (ctrl->nand_version >= 0x0702)
624                 bits = 7;
625         else if (ctrl->nand_version >= 0x0600)
626                 bits = 6;
627         else if (ctrl->nand_version >= 0x0500)
628                 bits = 5;
629         else
630                 bits = 4;
631
632         if (ctrl->nand_version >= 0x0702) {
633                 if (cs >= 4)
634                         reg = BRCMNAND_CORR_THRESHOLD_EXT;
635                 shift = (cs % 4) * bits;
636         } else if (ctrl->nand_version >= 0x0600) {
637                 if (cs >= 5)
638                         reg = BRCMNAND_CORR_THRESHOLD_EXT;
639                 shift = (cs % 5) * bits;
640         }
641         brcmnand_rmw_reg(ctrl, reg, (bits - 1) << shift, shift, val);
642 }
643
644 static inline int brcmnand_cmd_shift(struct brcmnand_controller *ctrl)
645 {
646         if (ctrl->nand_version < 0x0602)
647                 return 24;
648         return 0;
649 }
650
651 /***********************************************************************
652  * NAND ACC CONTROL bitfield
653  *
654  * Some bits have remained constant throughout hardware revision, while
655  * others have shifted around.
656  ***********************************************************************/
657
658 /* Constant for all versions (where supported) */
659 enum {
660         /* See BRCMNAND_HAS_CACHE_MODE */
661         ACC_CONTROL_CACHE_MODE                          = BIT(22),
662
663         /* See BRCMNAND_HAS_PREFETCH */
664         ACC_CONTROL_PREFETCH                            = BIT(23),
665
666         ACC_CONTROL_PAGE_HIT                            = BIT(24),
667         ACC_CONTROL_WR_PREEMPT                          = BIT(25),
668         ACC_CONTROL_PARTIAL_PAGE                        = BIT(26),
669         ACC_CONTROL_RD_ERASED                           = BIT(27),
670         ACC_CONTROL_FAST_PGM_RDIN                       = BIT(28),
671         ACC_CONTROL_WR_ECC                              = BIT(30),
672         ACC_CONTROL_RD_ECC                              = BIT(31),
673 };
674
675 static inline u32 brcmnand_spare_area_mask(struct brcmnand_controller *ctrl)
676 {
677         if (ctrl->nand_version >= 0x0702)
678                 return GENMASK(7, 0);
679         else if (ctrl->nand_version >= 0x0600)
680                 return GENMASK(6, 0);
681         else
682                 return GENMASK(5, 0);
683 }
684
685 #define NAND_ACC_CONTROL_ECC_SHIFT      16
686 #define NAND_ACC_CONTROL_ECC_EXT_SHIFT  13
687
688 static inline u32 brcmnand_ecc_level_mask(struct brcmnand_controller *ctrl)
689 {
690         u32 mask = (ctrl->nand_version >= 0x0600) ? 0x1f : 0x0f;
691
692         mask <<= NAND_ACC_CONTROL_ECC_SHIFT;
693
694         /* v7.2 includes additional ECC levels */
695         if (ctrl->nand_version >= 0x0702)
696                 mask |= 0x7 << NAND_ACC_CONTROL_ECC_EXT_SHIFT;
697
698         return mask;
699 }
700
701 static void brcmnand_set_ecc_enabled(struct brcmnand_host *host, int en)
702 {
703         struct brcmnand_controller *ctrl = host->ctrl;
704         u16 offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_ACC_CONTROL);
705         u32 acc_control = nand_readreg(ctrl, offs);
706         u32 ecc_flags = ACC_CONTROL_WR_ECC | ACC_CONTROL_RD_ECC;
707
708         if (en) {
709                 acc_control |= ecc_flags; /* enable RD/WR ECC */
710                 acc_control |= host->hwcfg.ecc_level
711                                << NAND_ACC_CONTROL_ECC_SHIFT;
712         } else {
713                 acc_control &= ~ecc_flags; /* disable RD/WR ECC */
714                 acc_control &= ~brcmnand_ecc_level_mask(ctrl);
715         }
716
717         nand_writereg(ctrl, offs, acc_control);
718 }
719
720 static inline int brcmnand_sector_1k_shift(struct brcmnand_controller *ctrl)
721 {
722         if (ctrl->nand_version >= 0x0702)
723                 return 9;
724         else if (ctrl->nand_version >= 0x0600)
725                 return 7;
726         else if (ctrl->nand_version >= 0x0500)
727                 return 6;
728         else
729                 return -1;
730 }
731
732 static int brcmnand_get_sector_size_1k(struct brcmnand_host *host)
733 {
734         struct brcmnand_controller *ctrl = host->ctrl;
735         int shift = brcmnand_sector_1k_shift(ctrl);
736         u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs,
737                                                   BRCMNAND_CS_ACC_CONTROL);
738
739         if (shift < 0)
740                 return 0;
741
742         return (nand_readreg(ctrl, acc_control_offs) >> shift) & 0x1;
743 }
744
745 static void brcmnand_set_sector_size_1k(struct brcmnand_host *host, int val)
746 {
747         struct brcmnand_controller *ctrl = host->ctrl;
748         int shift = brcmnand_sector_1k_shift(ctrl);
749         u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs,
750                                                   BRCMNAND_CS_ACC_CONTROL);
751         u32 tmp;
752
753         if (shift < 0)
754                 return;
755
756         tmp = nand_readreg(ctrl, acc_control_offs);
757         tmp &= ~(1 << shift);
758         tmp |= (!!val) << shift;
759         nand_writereg(ctrl, acc_control_offs, tmp);
760 }
761
762 /***********************************************************************
763  * CS_NAND_SELECT
764  ***********************************************************************/
765
766 enum {
767         CS_SELECT_NAND_WP                       = BIT(29),
768         CS_SELECT_AUTO_DEVICE_ID_CFG            = BIT(30),
769 };
770
771 static int bcmnand_ctrl_poll_status(struct brcmnand_controller *ctrl,
772                                     u32 mask, u32 expected_val,
773                                     unsigned long timeout_ms)
774 {
775         unsigned long limit;
776         u32 val;
777
778         if (!timeout_ms)
779                 timeout_ms = NAND_POLL_STATUS_TIMEOUT_MS;
780
781         limit = jiffies + msecs_to_jiffies(timeout_ms);
782         do {
783                 val = brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS);
784                 if ((val & mask) == expected_val)
785                         return 0;
786
787                 cpu_relax();
788         } while (time_after(limit, jiffies));
789
790         dev_warn(ctrl->dev, "timeout on status poll (expected %x got %x)\n",
791                  expected_val, val & mask);
792
793         return -ETIMEDOUT;
794 }
795
796 static inline void brcmnand_set_wp(struct brcmnand_controller *ctrl, bool en)
797 {
798         u32 val = en ? CS_SELECT_NAND_WP : 0;
799
800         brcmnand_rmw_reg(ctrl, BRCMNAND_CS_SELECT, CS_SELECT_NAND_WP, 0, val);
801 }
802
803 /***********************************************************************
804  * Flash DMA
805  ***********************************************************************/
806
807 enum flash_dma_reg {
808         FLASH_DMA_REVISION              = 0x00,
809         FLASH_DMA_FIRST_DESC            = 0x04,
810         FLASH_DMA_FIRST_DESC_EXT        = 0x08,
811         FLASH_DMA_CTRL                  = 0x0c,
812         FLASH_DMA_MODE                  = 0x10,
813         FLASH_DMA_STATUS                = 0x14,
814         FLASH_DMA_INTERRUPT_DESC        = 0x18,
815         FLASH_DMA_INTERRUPT_DESC_EXT    = 0x1c,
816         FLASH_DMA_ERROR_STATUS          = 0x20,
817         FLASH_DMA_CURRENT_DESC          = 0x24,
818         FLASH_DMA_CURRENT_DESC_EXT      = 0x28,
819 };
820
821 static inline bool has_flash_dma(struct brcmnand_controller *ctrl)
822 {
823         return ctrl->flash_dma_base;
824 }
825
826 static inline bool flash_dma_buf_ok(const void *buf)
827 {
828         return buf && !is_vmalloc_addr(buf) &&
829                 likely(IS_ALIGNED((uintptr_t)buf, 4));
830 }
831
832 static inline void flash_dma_writel(struct brcmnand_controller *ctrl, u8 offs,
833                                     u32 val)
834 {
835         brcmnand_writel(val, ctrl->flash_dma_base + offs);
836 }
837
838 static inline u32 flash_dma_readl(struct brcmnand_controller *ctrl, u8 offs)
839 {
840         return brcmnand_readl(ctrl->flash_dma_base + offs);
841 }
842
843 /* Low-level operation types: command, address, write, or read */
844 enum brcmnand_llop_type {
845         LL_OP_CMD,
846         LL_OP_ADDR,
847         LL_OP_WR,
848         LL_OP_RD,
849 };
850
851 /***********************************************************************
852  * Internal support functions
853  ***********************************************************************/
854
855 static inline bool is_hamming_ecc(struct brcmnand_controller *ctrl,
856                                   struct brcmnand_cfg *cfg)
857 {
858         if (ctrl->nand_version <= 0x0701)
859                 return cfg->sector_size_1k == 0 && cfg->spare_area_size == 16 &&
860                         cfg->ecc_level == 15;
861         else
862                 return cfg->sector_size_1k == 0 && ((cfg->spare_area_size == 16 &&
863                         cfg->ecc_level == 15) ||
864                         (cfg->spare_area_size == 28 && cfg->ecc_level == 16));
865 }
866
867 /*
868  * Set mtd->ooblayout to the appropriate mtd_ooblayout_ops given
869  * the layout/configuration.
870  * Returns -ERRCODE on failure.
871  */
872 static int brcmnand_hamming_ooblayout_ecc(struct mtd_info *mtd, int section,
873                                           struct mtd_oob_region *oobregion)
874 {
875         struct nand_chip *chip = mtd_to_nand(mtd);
876         struct brcmnand_host *host = nand_get_controller_data(chip);
877         struct brcmnand_cfg *cfg = &host->hwcfg;
878         int sas = cfg->spare_area_size << cfg->sector_size_1k;
879         int sectors = cfg->page_size / (512 << cfg->sector_size_1k);
880
881         if (section >= sectors)
882                 return -ERANGE;
883
884         oobregion->offset = (section * sas) + 6;
885         oobregion->length = 3;
886
887         return 0;
888 }
889
890 static int brcmnand_hamming_ooblayout_free(struct mtd_info *mtd, int section,
891                                            struct mtd_oob_region *oobregion)
892 {
893         struct nand_chip *chip = mtd_to_nand(mtd);
894         struct brcmnand_host *host = nand_get_controller_data(chip);
895         struct brcmnand_cfg *cfg = &host->hwcfg;
896         int sas = cfg->spare_area_size << cfg->sector_size_1k;
897         int sectors = cfg->page_size / (512 << cfg->sector_size_1k);
898
899         if (section >= sectors * 2)
900                 return -ERANGE;
901
902         oobregion->offset = (section / 2) * sas;
903
904         if (section & 1) {
905                 oobregion->offset += 9;
906                 oobregion->length = 7;
907         } else {
908                 oobregion->length = 6;
909
910                 /* First sector of each page may have BBI */
911                 if (!section) {
912                         /*
913                          * Small-page NAND use byte 6 for BBI while large-page
914                          * NAND use byte 0.
915                          */
916                         if (cfg->page_size > 512)
917                                 oobregion->offset++;
918                         oobregion->length--;
919                 }
920         }
921
922         return 0;
923 }
924
925 static const struct mtd_ooblayout_ops brcmnand_hamming_ooblayout_ops = {
926         .ecc = brcmnand_hamming_ooblayout_ecc,
927         .free = brcmnand_hamming_ooblayout_free,
928 };
929
930 static int brcmnand_bch_ooblayout_ecc(struct mtd_info *mtd, int section,
931                                       struct mtd_oob_region *oobregion)
932 {
933         struct nand_chip *chip = mtd_to_nand(mtd);
934         struct brcmnand_host *host = nand_get_controller_data(chip);
935         struct brcmnand_cfg *cfg = &host->hwcfg;
936         int sas = cfg->spare_area_size << cfg->sector_size_1k;
937         int sectors = cfg->page_size / (512 << cfg->sector_size_1k);
938
939         if (section >= sectors)
940                 return -ERANGE;
941
942         oobregion->offset = (section * (sas + 1)) - chip->ecc.bytes;
943         oobregion->length = chip->ecc.bytes;
944
945         return 0;
946 }
947
948 static int brcmnand_bch_ooblayout_free_lp(struct mtd_info *mtd, int section,
949                                           struct mtd_oob_region *oobregion)
950 {
951         struct nand_chip *chip = mtd_to_nand(mtd);
952         struct brcmnand_host *host = nand_get_controller_data(chip);
953         struct brcmnand_cfg *cfg = &host->hwcfg;
954         int sas = cfg->spare_area_size << cfg->sector_size_1k;
955         int sectors = cfg->page_size / (512 << cfg->sector_size_1k);
956
957         if (section >= sectors)
958                 return -ERANGE;
959
960         if (sas <= chip->ecc.bytes)
961                 return 0;
962
963         oobregion->offset = section * sas;
964         oobregion->length = sas - chip->ecc.bytes;
965
966         if (!section) {
967                 oobregion->offset++;
968                 oobregion->length--;
969         }
970
971         return 0;
972 }
973
974 static int brcmnand_bch_ooblayout_free_sp(struct mtd_info *mtd, int section,
975                                           struct mtd_oob_region *oobregion)
976 {
977         struct nand_chip *chip = mtd_to_nand(mtd);
978         struct brcmnand_host *host = nand_get_controller_data(chip);
979         struct brcmnand_cfg *cfg = &host->hwcfg;
980         int sas = cfg->spare_area_size << cfg->sector_size_1k;
981
982         if (section > 1 || sas - chip->ecc.bytes < 6 ||
983             (section && sas - chip->ecc.bytes == 6))
984                 return -ERANGE;
985
986         if (!section) {
987                 oobregion->offset = 0;
988                 oobregion->length = 5;
989         } else {
990                 oobregion->offset = 6;
991                 oobregion->length = sas - chip->ecc.bytes - 6;
992         }
993
994         return 0;
995 }
996
997 static const struct mtd_ooblayout_ops brcmnand_bch_lp_ooblayout_ops = {
998         .ecc = brcmnand_bch_ooblayout_ecc,
999         .free = brcmnand_bch_ooblayout_free_lp,
1000 };
1001
1002 static const struct mtd_ooblayout_ops brcmnand_bch_sp_ooblayout_ops = {
1003         .ecc = brcmnand_bch_ooblayout_ecc,
1004         .free = brcmnand_bch_ooblayout_free_sp,
1005 };
1006
1007 static int brcmstb_choose_ecc_layout(struct brcmnand_host *host)
1008 {
1009         struct brcmnand_cfg *p = &host->hwcfg;
1010         struct mtd_info *mtd = nand_to_mtd(&host->chip);
1011         struct nand_ecc_ctrl *ecc = &host->chip.ecc;
1012         unsigned int ecc_level = p->ecc_level;
1013         int sas = p->spare_area_size << p->sector_size_1k;
1014         int sectors = p->page_size / (512 << p->sector_size_1k);
1015
1016         if (p->sector_size_1k)
1017                 ecc_level <<= 1;
1018
1019         if (is_hamming_ecc(host->ctrl, p)) {
1020                 ecc->bytes = 3 * sectors;
1021                 mtd_set_ooblayout(mtd, &brcmnand_hamming_ooblayout_ops);
1022                 return 0;
1023         }
1024
1025         /*
1026          * CONTROLLER_VERSION:
1027          *   < v5.0: ECC_REQ = ceil(BCH_T * 13/8)
1028          *  >= v5.0: ECC_REQ = ceil(BCH_T * 14/8)
1029          * But we will just be conservative.
1030          */
1031         ecc->bytes = DIV_ROUND_UP(ecc_level * 14, 8);
1032         if (p->page_size == 512)
1033                 mtd_set_ooblayout(mtd, &brcmnand_bch_sp_ooblayout_ops);
1034         else
1035                 mtd_set_ooblayout(mtd, &brcmnand_bch_lp_ooblayout_ops);
1036
1037         if (ecc->bytes >= sas) {
1038                 dev_err(&host->pdev->dev,
1039                         "error: ECC too large for OOB (ECC bytes %d, spare sector %d)\n",
1040                         ecc->bytes, sas);
1041                 return -EINVAL;
1042         }
1043
1044         return 0;
1045 }
1046
1047 static void brcmnand_wp(struct mtd_info *mtd, int wp)
1048 {
1049         struct nand_chip *chip = mtd_to_nand(mtd);
1050         struct brcmnand_host *host = nand_get_controller_data(chip);
1051         struct brcmnand_controller *ctrl = host->ctrl;
1052
1053         if ((ctrl->features & BRCMNAND_HAS_WP) && wp_on == 1) {
1054                 static int old_wp = -1;
1055                 int ret;
1056
1057                 if (old_wp != wp) {
1058                         dev_dbg(ctrl->dev, "WP %s\n", wp ? "on" : "off");
1059                         old_wp = wp;
1060                 }
1061
1062                 /*
1063                  * make sure ctrl/flash ready before and after
1064                  * changing state of #WP pin
1065                  */
1066                 ret = bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY |
1067                                                NAND_STATUS_READY,
1068                                                NAND_CTRL_RDY |
1069                                                NAND_STATUS_READY, 0);
1070                 if (ret)
1071                         return;
1072
1073                 brcmnand_set_wp(ctrl, wp);
1074                 nand_status_op(chip, NULL);
1075                 /* NAND_STATUS_WP 0x00 = protected, 0x80 = not protected */
1076                 ret = bcmnand_ctrl_poll_status(ctrl,
1077                                                NAND_CTRL_RDY |
1078                                                NAND_STATUS_READY |
1079                                                NAND_STATUS_WP,
1080                                                NAND_CTRL_RDY |
1081                                                NAND_STATUS_READY |
1082                                                (wp ? 0 : NAND_STATUS_WP), 0);
1083
1084                 if (ret)
1085                         dev_err_ratelimited(&host->pdev->dev,
1086                                             "nand #WP expected %s\n",
1087                                             wp ? "on" : "off");
1088         }
1089 }
1090
1091 /* Helper functions for reading and writing OOB registers */
1092 static inline u8 oob_reg_read(struct brcmnand_controller *ctrl, u32 offs)
1093 {
1094         u16 offset0, offset10, reg_offs;
1095
1096         offset0 = ctrl->reg_offsets[BRCMNAND_OOB_READ_BASE];
1097         offset10 = ctrl->reg_offsets[BRCMNAND_OOB_READ_10_BASE];
1098
1099         if (offs >= ctrl->max_oob)
1100                 return 0x77;
1101
1102         if (offs >= 16 && offset10)
1103                 reg_offs = offset10 + ((offs - 0x10) & ~0x03);
1104         else
1105                 reg_offs = offset0 + (offs & ~0x03);
1106
1107         return nand_readreg(ctrl, reg_offs) >> (24 - ((offs & 0x03) << 3));
1108 }
1109
1110 static inline void oob_reg_write(struct brcmnand_controller *ctrl, u32 offs,
1111                                  u32 data)
1112 {
1113         u16 offset0, offset10, reg_offs;
1114
1115         offset0 = ctrl->reg_offsets[BRCMNAND_OOB_WRITE_BASE];
1116         offset10 = ctrl->reg_offsets[BRCMNAND_OOB_WRITE_10_BASE];
1117
1118         if (offs >= ctrl->max_oob)
1119                 return;
1120
1121         if (offs >= 16 && offset10)
1122                 reg_offs = offset10 + ((offs - 0x10) & ~0x03);
1123         else
1124                 reg_offs = offset0 + (offs & ~0x03);
1125
1126         nand_writereg(ctrl, reg_offs, data);
1127 }
1128
1129 /*
1130  * read_oob_from_regs - read data from OOB registers
1131  * @ctrl: NAND controller
1132  * @i: sub-page sector index
1133  * @oob: buffer to read to
1134  * @sas: spare area sector size (i.e., OOB size per FLASH_CACHE)
1135  * @sector_1k: 1 for 1KiB sectors, 0 for 512B, other values are illegal
1136  */
1137 static int read_oob_from_regs(struct brcmnand_controller *ctrl, int i, u8 *oob,
1138                               int sas, int sector_1k)
1139 {
1140         int tbytes = sas << sector_1k;
1141         int j;
1142
1143         /* Adjust OOB values for 1K sector size */
1144         if (sector_1k && (i & 0x01))
1145                 tbytes = max(0, tbytes - (int)ctrl->max_oob);
1146         tbytes = min_t(int, tbytes, ctrl->max_oob);
1147
1148         for (j = 0; j < tbytes; j++)
1149                 oob[j] = oob_reg_read(ctrl, j);
1150         return tbytes;
1151 }
1152
1153 /*
1154  * write_oob_to_regs - write data to OOB registers
1155  * @i: sub-page sector index
1156  * @oob: buffer to write from
1157  * @sas: spare area sector size (i.e., OOB size per FLASH_CACHE)
1158  * @sector_1k: 1 for 1KiB sectors, 0 for 512B, other values are illegal
1159  */
1160 static int write_oob_to_regs(struct brcmnand_controller *ctrl, int i,
1161                              const u8 *oob, int sas, int sector_1k)
1162 {
1163         int tbytes = sas << sector_1k;
1164         int j;
1165
1166         /* Adjust OOB values for 1K sector size */
1167         if (sector_1k && (i & 0x01))
1168                 tbytes = max(0, tbytes - (int)ctrl->max_oob);
1169         tbytes = min_t(int, tbytes, ctrl->max_oob);
1170
1171         for (j = 0; j < tbytes; j += 4)
1172                 oob_reg_write(ctrl, j,
1173                                 (oob[j + 0] << 24) |
1174                                 (oob[j + 1] << 16) |
1175                                 (oob[j + 2] <<  8) |
1176                                 (oob[j + 3] <<  0));
1177         return tbytes;
1178 }
1179
1180 static irqreturn_t brcmnand_ctlrdy_irq(int irq, void *data)
1181 {
1182         struct brcmnand_controller *ctrl = data;
1183
1184         /* Discard all NAND_CTLRDY interrupts during DMA */
1185         if (ctrl->dma_pending)
1186                 return IRQ_HANDLED;
1187
1188         complete(&ctrl->done);
1189         return IRQ_HANDLED;
1190 }
1191
1192 /* Handle SoC-specific interrupt hardware */
1193 static irqreturn_t brcmnand_irq(int irq, void *data)
1194 {
1195         struct brcmnand_controller *ctrl = data;
1196
1197         if (ctrl->soc->ctlrdy_ack(ctrl->soc))
1198                 return brcmnand_ctlrdy_irq(irq, data);
1199
1200         return IRQ_NONE;
1201 }
1202
1203 static irqreturn_t brcmnand_dma_irq(int irq, void *data)
1204 {
1205         struct brcmnand_controller *ctrl = data;
1206
1207         complete(&ctrl->dma_done);
1208
1209         return IRQ_HANDLED;
1210 }
1211
1212 static void brcmnand_send_cmd(struct brcmnand_host *host, int cmd)
1213 {
1214         struct brcmnand_controller *ctrl = host->ctrl;
1215         int ret;
1216
1217         dev_dbg(ctrl->dev, "send native cmd %d addr_lo 0x%x\n", cmd,
1218                 brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS));
1219         BUG_ON(ctrl->cmd_pending != 0);
1220         ctrl->cmd_pending = cmd;
1221
1222         ret = bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY, NAND_CTRL_RDY, 0);
1223         WARN_ON(ret);
1224
1225         mb(); /* flush previous writes */
1226         brcmnand_write_reg(ctrl, BRCMNAND_CMD_START,
1227                            cmd << brcmnand_cmd_shift(ctrl));
1228 }
1229
1230 /***********************************************************************
1231  * NAND MTD API: read/program/erase
1232  ***********************************************************************/
1233
1234 static void brcmnand_cmd_ctrl(struct nand_chip *chip, int dat,
1235                               unsigned int ctrl)
1236 {
1237         /* intentionally left blank */
1238 }
1239
1240 static int brcmnand_waitfunc(struct nand_chip *chip)
1241 {
1242         struct brcmnand_host *host = nand_get_controller_data(chip);
1243         struct brcmnand_controller *ctrl = host->ctrl;
1244         unsigned long timeo = msecs_to_jiffies(100);
1245
1246         dev_dbg(ctrl->dev, "wait on native cmd %d\n", ctrl->cmd_pending);
1247         if (ctrl->cmd_pending &&
1248                         wait_for_completion_timeout(&ctrl->done, timeo) <= 0) {
1249                 u32 cmd = brcmnand_read_reg(ctrl, BRCMNAND_CMD_START)
1250                                         >> brcmnand_cmd_shift(ctrl);
1251
1252                 dev_err_ratelimited(ctrl->dev,
1253                         "timeout waiting for command %#02x\n", cmd);
1254                 dev_err_ratelimited(ctrl->dev, "intfc status %08x\n",
1255                         brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS));
1256         }
1257         ctrl->cmd_pending = 0;
1258         return brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS) &
1259                                  INTFC_FLASH_STATUS;
1260 }
1261
1262 enum {
1263         LLOP_RE                         = BIT(16),
1264         LLOP_WE                         = BIT(17),
1265         LLOP_ALE                        = BIT(18),
1266         LLOP_CLE                        = BIT(19),
1267         LLOP_RETURN_IDLE                = BIT(31),
1268
1269         LLOP_DATA_MASK                  = GENMASK(15, 0),
1270 };
1271
1272 static int brcmnand_low_level_op(struct brcmnand_host *host,
1273                                  enum brcmnand_llop_type type, u32 data,
1274                                  bool last_op)
1275 {
1276         struct nand_chip *chip = &host->chip;
1277         struct brcmnand_controller *ctrl = host->ctrl;
1278         u32 tmp;
1279
1280         tmp = data & LLOP_DATA_MASK;
1281         switch (type) {
1282         case LL_OP_CMD:
1283                 tmp |= LLOP_WE | LLOP_CLE;
1284                 break;
1285         case LL_OP_ADDR:
1286                 /* WE | ALE */
1287                 tmp |= LLOP_WE | LLOP_ALE;
1288                 break;
1289         case LL_OP_WR:
1290                 /* WE */
1291                 tmp |= LLOP_WE;
1292                 break;
1293         case LL_OP_RD:
1294                 /* RE */
1295                 tmp |= LLOP_RE;
1296                 break;
1297         }
1298         if (last_op)
1299                 /* RETURN_IDLE */
1300                 tmp |= LLOP_RETURN_IDLE;
1301
1302         dev_dbg(ctrl->dev, "ll_op cmd %#x\n", tmp);
1303
1304         brcmnand_write_reg(ctrl, BRCMNAND_LL_OP, tmp);
1305         (void)brcmnand_read_reg(ctrl, BRCMNAND_LL_OP);
1306
1307         brcmnand_send_cmd(host, CMD_LOW_LEVEL_OP);
1308         return brcmnand_waitfunc(chip);
1309 }
1310
1311 static void brcmnand_cmdfunc(struct nand_chip *chip, unsigned command,
1312                              int column, int page_addr)
1313 {
1314         struct mtd_info *mtd = nand_to_mtd(chip);
1315         struct brcmnand_host *host = nand_get_controller_data(chip);
1316         struct brcmnand_controller *ctrl = host->ctrl;
1317         u64 addr = (u64)page_addr << chip->page_shift;
1318         int native_cmd = 0;
1319
1320         if (command == NAND_CMD_READID || command == NAND_CMD_PARAM ||
1321                         command == NAND_CMD_RNDOUT)
1322                 addr = (u64)column;
1323         /* Avoid propagating a negative, don't-care address */
1324         else if (page_addr < 0)
1325                 addr = 0;
1326
1327         dev_dbg(ctrl->dev, "cmd 0x%x addr 0x%llx\n", command,
1328                 (unsigned long long)addr);
1329
1330         host->last_cmd = command;
1331         host->last_byte = 0;
1332         host->last_addr = addr;
1333
1334         switch (command) {
1335         case NAND_CMD_RESET:
1336                 native_cmd = CMD_FLASH_RESET;
1337                 break;
1338         case NAND_CMD_STATUS:
1339                 native_cmd = CMD_STATUS_READ;
1340                 break;
1341         case NAND_CMD_READID:
1342                 native_cmd = CMD_DEVICE_ID_READ;
1343                 break;
1344         case NAND_CMD_READOOB:
1345                 native_cmd = CMD_SPARE_AREA_READ;
1346                 break;
1347         case NAND_CMD_ERASE1:
1348                 native_cmd = CMD_BLOCK_ERASE;
1349                 brcmnand_wp(mtd, 0);
1350                 break;
1351         case NAND_CMD_PARAM:
1352                 native_cmd = CMD_PARAMETER_READ;
1353                 break;
1354         case NAND_CMD_SET_FEATURES:
1355         case NAND_CMD_GET_FEATURES:
1356                 brcmnand_low_level_op(host, LL_OP_CMD, command, false);
1357                 brcmnand_low_level_op(host, LL_OP_ADDR, column, false);
1358                 break;
1359         case NAND_CMD_RNDOUT:
1360                 native_cmd = CMD_PARAMETER_CHANGE_COL;
1361                 addr &= ~((u64)(FC_BYTES - 1));
1362                 /*
1363                  * HW quirk: PARAMETER_CHANGE_COL requires SECTOR_SIZE_1K=0
1364                  * NB: hwcfg.sector_size_1k may not be initialized yet
1365                  */
1366                 if (brcmnand_get_sector_size_1k(host)) {
1367                         host->hwcfg.sector_size_1k =
1368                                 brcmnand_get_sector_size_1k(host);
1369                         brcmnand_set_sector_size_1k(host, 0);
1370                 }
1371                 break;
1372         }
1373
1374         if (!native_cmd)
1375                 return;
1376
1377         brcmnand_write_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS,
1378                 (host->cs << 16) | ((addr >> 32) & 0xffff));
1379         (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS);
1380         brcmnand_write_reg(ctrl, BRCMNAND_CMD_ADDRESS, lower_32_bits(addr));
1381         (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS);
1382
1383         brcmnand_send_cmd(host, native_cmd);
1384         brcmnand_waitfunc(chip);
1385
1386         if (native_cmd == CMD_PARAMETER_READ ||
1387                         native_cmd == CMD_PARAMETER_CHANGE_COL) {
1388                 /* Copy flash cache word-wise */
1389                 u32 *flash_cache = (u32 *)ctrl->flash_cache;
1390                 int i;
1391
1392                 brcmnand_soc_data_bus_prepare(ctrl->soc, true);
1393
1394                 /*
1395                  * Must cache the FLASH_CACHE now, since changes in
1396                  * SECTOR_SIZE_1K may invalidate it
1397                  */
1398                 for (i = 0; i < FC_WORDS; i++)
1399                         /*
1400                          * Flash cache is big endian for parameter pages, at
1401                          * least on STB SoCs
1402                          */
1403                         flash_cache[i] = be32_to_cpu(brcmnand_read_fc(ctrl, i));
1404
1405                 brcmnand_soc_data_bus_unprepare(ctrl->soc, true);
1406
1407                 /* Cleanup from HW quirk: restore SECTOR_SIZE_1K */
1408                 if (host->hwcfg.sector_size_1k)
1409                         brcmnand_set_sector_size_1k(host,
1410                                                     host->hwcfg.sector_size_1k);
1411         }
1412
1413         /* Re-enable protection is necessary only after erase */
1414         if (command == NAND_CMD_ERASE1)
1415                 brcmnand_wp(mtd, 1);
1416 }
1417
1418 static uint8_t brcmnand_read_byte(struct nand_chip *chip)
1419 {
1420         struct brcmnand_host *host = nand_get_controller_data(chip);
1421         struct brcmnand_controller *ctrl = host->ctrl;
1422         uint8_t ret = 0;
1423         int addr, offs;
1424
1425         switch (host->last_cmd) {
1426         case NAND_CMD_READID:
1427                 if (host->last_byte < 4)
1428                         ret = brcmnand_read_reg(ctrl, BRCMNAND_ID) >>
1429                                 (24 - (host->last_byte << 3));
1430                 else if (host->last_byte < 8)
1431                         ret = brcmnand_read_reg(ctrl, BRCMNAND_ID_EXT) >>
1432                                 (56 - (host->last_byte << 3));
1433                 break;
1434
1435         case NAND_CMD_READOOB:
1436                 ret = oob_reg_read(ctrl, host->last_byte);
1437                 break;
1438
1439         case NAND_CMD_STATUS:
1440                 ret = brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS) &
1441                                         INTFC_FLASH_STATUS;
1442                 if (wp_on) /* hide WP status */
1443                         ret |= NAND_STATUS_WP;
1444                 break;
1445
1446         case NAND_CMD_PARAM:
1447         case NAND_CMD_RNDOUT:
1448                 addr = host->last_addr + host->last_byte;
1449                 offs = addr & (FC_BYTES - 1);
1450
1451                 /* At FC_BYTES boundary, switch to next column */
1452                 if (host->last_byte > 0 && offs == 0)
1453                         nand_change_read_column_op(chip, addr, NULL, 0, false);
1454
1455                 ret = ctrl->flash_cache[offs];
1456                 break;
1457         case NAND_CMD_GET_FEATURES:
1458                 if (host->last_byte >= ONFI_SUBFEATURE_PARAM_LEN) {
1459                         ret = 0;
1460                 } else {
1461                         bool last = host->last_byte ==
1462                                 ONFI_SUBFEATURE_PARAM_LEN - 1;
1463                         brcmnand_low_level_op(host, LL_OP_RD, 0, last);
1464                         ret = brcmnand_read_reg(ctrl, BRCMNAND_LL_RDATA) & 0xff;
1465                 }
1466         }
1467
1468         dev_dbg(ctrl->dev, "read byte = 0x%02x\n", ret);
1469         host->last_byte++;
1470
1471         return ret;
1472 }
1473
1474 static void brcmnand_read_buf(struct nand_chip *chip, uint8_t *buf, int len)
1475 {
1476         int i;
1477
1478         for (i = 0; i < len; i++, buf++)
1479                 *buf = brcmnand_read_byte(chip);
1480 }
1481
1482 static void brcmnand_write_buf(struct nand_chip *chip, const uint8_t *buf,
1483                                int len)
1484 {
1485         int i;
1486         struct brcmnand_host *host = nand_get_controller_data(chip);
1487
1488         switch (host->last_cmd) {
1489         case NAND_CMD_SET_FEATURES:
1490                 for (i = 0; i < len; i++)
1491                         brcmnand_low_level_op(host, LL_OP_WR, buf[i],
1492                                                   (i + 1) == len);
1493                 break;
1494         default:
1495                 BUG();
1496                 break;
1497         }
1498 }
1499
1500 /**
1501  * Construct a FLASH_DMA descriptor as part of a linked list. You must know the
1502  * following ahead of time:
1503  *  - Is this descriptor the beginning or end of a linked list?
1504  *  - What is the (DMA) address of the next descriptor in the linked list?
1505  */
1506 static int brcmnand_fill_dma_desc(struct brcmnand_host *host,
1507                                   struct brcm_nand_dma_desc *desc, u64 addr,
1508                                   dma_addr_t buf, u32 len, u8 dma_cmd,
1509                                   bool begin, bool end,
1510                                   dma_addr_t next_desc)
1511 {
1512         memset(desc, 0, sizeof(*desc));
1513         /* Descriptors are written in native byte order (wordwise) */
1514         desc->next_desc = lower_32_bits(next_desc);
1515         desc->next_desc_ext = upper_32_bits(next_desc);
1516         desc->cmd_irq = (dma_cmd << 24) |
1517                 (end ? (0x03 << 8) : 0) | /* IRQ | STOP */
1518                 (!!begin) | ((!!end) << 1); /* head, tail */
1519 #ifdef CONFIG_CPU_BIG_ENDIAN
1520         desc->cmd_irq |= 0x01 << 12;
1521 #endif
1522         desc->dram_addr = lower_32_bits(buf);
1523         desc->dram_addr_ext = upper_32_bits(buf);
1524         desc->tfr_len = len;
1525         desc->total_len = len;
1526         desc->flash_addr = lower_32_bits(addr);
1527         desc->flash_addr_ext = upper_32_bits(addr);
1528         desc->cs = host->cs;
1529         desc->status_valid = 0x01;
1530         return 0;
1531 }
1532
1533 /**
1534  * Kick the FLASH_DMA engine, with a given DMA descriptor
1535  */
1536 static void brcmnand_dma_run(struct brcmnand_host *host, dma_addr_t desc)
1537 {
1538         struct brcmnand_controller *ctrl = host->ctrl;
1539         unsigned long timeo = msecs_to_jiffies(100);
1540
1541         flash_dma_writel(ctrl, FLASH_DMA_FIRST_DESC, lower_32_bits(desc));
1542         (void)flash_dma_readl(ctrl, FLASH_DMA_FIRST_DESC);
1543         flash_dma_writel(ctrl, FLASH_DMA_FIRST_DESC_EXT, upper_32_bits(desc));
1544         (void)flash_dma_readl(ctrl, FLASH_DMA_FIRST_DESC_EXT);
1545
1546         /* Start FLASH_DMA engine */
1547         ctrl->dma_pending = true;
1548         mb(); /* flush previous writes */
1549         flash_dma_writel(ctrl, FLASH_DMA_CTRL, 0x03); /* wake | run */
1550
1551         if (wait_for_completion_timeout(&ctrl->dma_done, timeo) <= 0) {
1552                 dev_err(ctrl->dev,
1553                                 "timeout waiting for DMA; status %#x, error status %#x\n",
1554                                 flash_dma_readl(ctrl, FLASH_DMA_STATUS),
1555                                 flash_dma_readl(ctrl, FLASH_DMA_ERROR_STATUS));
1556         }
1557         ctrl->dma_pending = false;
1558         flash_dma_writel(ctrl, FLASH_DMA_CTRL, 0); /* force stop */
1559 }
1560
1561 static int brcmnand_dma_trans(struct brcmnand_host *host, u64 addr, u32 *buf,
1562                               u32 len, u8 dma_cmd)
1563 {
1564         struct brcmnand_controller *ctrl = host->ctrl;
1565         dma_addr_t buf_pa;
1566         int dir = dma_cmd == CMD_PAGE_READ ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1567
1568         buf_pa = dma_map_single(ctrl->dev, buf, len, dir);
1569         if (dma_mapping_error(ctrl->dev, buf_pa)) {
1570                 dev_err(ctrl->dev, "unable to map buffer for DMA\n");
1571                 return -ENOMEM;
1572         }
1573
1574         brcmnand_fill_dma_desc(host, ctrl->dma_desc, addr, buf_pa, len,
1575                                    dma_cmd, true, true, 0);
1576
1577         brcmnand_dma_run(host, ctrl->dma_pa);
1578
1579         dma_unmap_single(ctrl->dev, buf_pa, len, dir);
1580
1581         if (ctrl->dma_desc->status_valid & FLASH_DMA_ECC_ERROR)
1582                 return -EBADMSG;
1583         else if (ctrl->dma_desc->status_valid & FLASH_DMA_CORR_ERROR)
1584                 return -EUCLEAN;
1585
1586         return 0;
1587 }
1588
1589 /*
1590  * Assumes proper CS is already set
1591  */
1592 static int brcmnand_read_by_pio(struct mtd_info *mtd, struct nand_chip *chip,
1593                                 u64 addr, unsigned int trans, u32 *buf,
1594                                 u8 *oob, u64 *err_addr)
1595 {
1596         struct brcmnand_host *host = nand_get_controller_data(chip);
1597         struct brcmnand_controller *ctrl = host->ctrl;
1598         int i, j, ret = 0;
1599
1600         /* Clear error addresses */
1601         brcmnand_write_reg(ctrl, BRCMNAND_UNCORR_ADDR, 0);
1602         brcmnand_write_reg(ctrl, BRCMNAND_CORR_ADDR, 0);
1603         brcmnand_write_reg(ctrl, BRCMNAND_UNCORR_EXT_ADDR, 0);
1604         brcmnand_write_reg(ctrl, BRCMNAND_CORR_EXT_ADDR, 0);
1605
1606         brcmnand_write_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS,
1607                         (host->cs << 16) | ((addr >> 32) & 0xffff));
1608         (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS);
1609
1610         for (i = 0; i < trans; i++, addr += FC_BYTES) {
1611                 brcmnand_write_reg(ctrl, BRCMNAND_CMD_ADDRESS,
1612                                    lower_32_bits(addr));
1613                 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS);
1614                 /* SPARE_AREA_READ does not use ECC, so just use PAGE_READ */
1615                 brcmnand_send_cmd(host, CMD_PAGE_READ);
1616                 brcmnand_waitfunc(chip);
1617
1618                 if (likely(buf)) {
1619                         brcmnand_soc_data_bus_prepare(ctrl->soc, false);
1620
1621                         for (j = 0; j < FC_WORDS; j++, buf++)
1622                                 *buf = brcmnand_read_fc(ctrl, j);
1623
1624                         brcmnand_soc_data_bus_unprepare(ctrl->soc, false);
1625                 }
1626
1627                 if (oob)
1628                         oob += read_oob_from_regs(ctrl, i, oob,
1629                                         mtd->oobsize / trans,
1630                                         host->hwcfg.sector_size_1k);
1631
1632                 if (!ret) {
1633                         *err_addr = brcmnand_read_reg(ctrl,
1634                                         BRCMNAND_UNCORR_ADDR) |
1635                                 ((u64)(brcmnand_read_reg(ctrl,
1636                                                 BRCMNAND_UNCORR_EXT_ADDR)
1637                                         & 0xffff) << 32);
1638                         if (*err_addr)
1639                                 ret = -EBADMSG;
1640                 }
1641
1642                 if (!ret) {
1643                         *err_addr = brcmnand_read_reg(ctrl,
1644                                         BRCMNAND_CORR_ADDR) |
1645                                 ((u64)(brcmnand_read_reg(ctrl,
1646                                                 BRCMNAND_CORR_EXT_ADDR)
1647                                         & 0xffff) << 32);
1648                         if (*err_addr)
1649                                 ret = -EUCLEAN;
1650                 }
1651         }
1652
1653         return ret;
1654 }
1655
1656 /*
1657  * Check a page to see if it is erased (w/ bitflips) after an uncorrectable ECC
1658  * error
1659  *
1660  * Because the HW ECC signals an ECC error if an erase paged has even a single
1661  * bitflip, we must check each ECC error to see if it is actually an erased
1662  * page with bitflips, not a truly corrupted page.
1663  *
1664  * On a real error, return a negative error code (-EBADMSG for ECC error), and
1665  * buf will contain raw data.
1666  * Otherwise, buf gets filled with 0xffs and return the maximum number of
1667  * bitflips-per-ECC-sector to the caller.
1668  *
1669  */
1670 static int brcmstb_nand_verify_erased_page(struct mtd_info *mtd,
1671                   struct nand_chip *chip, void *buf, u64 addr)
1672 {
1673         int i, sas;
1674         void *oob = chip->oob_poi;
1675         int bitflips = 0;
1676         int page = addr >> chip->page_shift;
1677         int ret;
1678
1679         if (!buf) {
1680                 buf = chip->data_buf;
1681                 /* Invalidate page cache */
1682                 chip->pagebuf = -1;
1683         }
1684
1685         sas = mtd->oobsize / chip->ecc.steps;
1686
1687         /* read without ecc for verification */
1688         ret = chip->ecc.read_page_raw(chip, buf, true, page);
1689         if (ret)
1690                 return ret;
1691
1692         for (i = 0; i < chip->ecc.steps; i++, oob += sas) {
1693                 ret = nand_check_erased_ecc_chunk(buf, chip->ecc.size,
1694                                                   oob, sas, NULL, 0,
1695                                                   chip->ecc.strength);
1696                 if (ret < 0)
1697                         return ret;
1698
1699                 bitflips = max(bitflips, ret);
1700         }
1701
1702         return bitflips;
1703 }
1704
1705 static int brcmnand_read(struct mtd_info *mtd, struct nand_chip *chip,
1706                          u64 addr, unsigned int trans, u32 *buf, u8 *oob)
1707 {
1708         struct brcmnand_host *host = nand_get_controller_data(chip);
1709         struct brcmnand_controller *ctrl = host->ctrl;
1710         u64 err_addr = 0;
1711         int err;
1712         bool retry = true;
1713
1714         dev_dbg(ctrl->dev, "read %llx -> %p\n", (unsigned long long)addr, buf);
1715
1716 try_dmaread:
1717         brcmnand_write_reg(ctrl, BRCMNAND_UNCORR_COUNT, 0);
1718
1719         if (has_flash_dma(ctrl) && !oob && flash_dma_buf_ok(buf)) {
1720                 err = brcmnand_dma_trans(host, addr, buf, trans * FC_BYTES,
1721                                              CMD_PAGE_READ);
1722                 if (err) {
1723                         if (mtd_is_bitflip_or_eccerr(err))
1724                                 err_addr = addr;
1725                         else
1726                                 return -EIO;
1727                 }
1728         } else {
1729                 if (oob)
1730                         memset(oob, 0x99, mtd->oobsize);
1731
1732                 err = brcmnand_read_by_pio(mtd, chip, addr, trans, buf,
1733                                                oob, &err_addr);
1734         }
1735
1736         if (mtd_is_eccerr(err)) {
1737                 /*
1738                  * On controller version and 7.0, 7.1 , DMA read after a
1739                  * prior PIO read that reported uncorrectable error,
1740                  * the DMA engine captures this error following DMA read
1741                  * cleared only on subsequent DMA read, so just retry once
1742                  * to clear a possible false error reported for current DMA
1743                  * read
1744                  */
1745                 if ((ctrl->nand_version == 0x0700) ||
1746                     (ctrl->nand_version == 0x0701)) {
1747                         if (retry) {
1748                                 retry = false;
1749                                 goto try_dmaread;
1750                         }
1751                 }
1752
1753                 /*
1754                  * Controller version 7.2 has hw encoder to detect erased page
1755                  * bitflips, apply sw verification for older controllers only
1756                  */
1757                 if (ctrl->nand_version < 0x0702) {
1758                         err = brcmstb_nand_verify_erased_page(mtd, chip, buf,
1759                                                               addr);
1760                         /* erased page bitflips corrected */
1761                         if (err >= 0)
1762                                 return err;
1763                 }
1764
1765                 dev_dbg(ctrl->dev, "uncorrectable error at 0x%llx\n",
1766                         (unsigned long long)err_addr);
1767                 mtd->ecc_stats.failed++;
1768                 /* NAND layer expects zero on ECC errors */
1769                 return 0;
1770         }
1771
1772         if (mtd_is_bitflip(err)) {
1773                 unsigned int corrected = brcmnand_count_corrected(ctrl);
1774
1775                 dev_dbg(ctrl->dev, "corrected error at 0x%llx\n",
1776                         (unsigned long long)err_addr);
1777                 mtd->ecc_stats.corrected += corrected;
1778                 /* Always exceed the software-imposed threshold */
1779                 return max(mtd->bitflip_threshold, corrected);
1780         }
1781
1782         return 0;
1783 }
1784
1785 static int brcmnand_read_page(struct nand_chip *chip, uint8_t *buf,
1786                               int oob_required, int page)
1787 {
1788         struct mtd_info *mtd = nand_to_mtd(chip);
1789         struct brcmnand_host *host = nand_get_controller_data(chip);
1790         u8 *oob = oob_required ? (u8 *)chip->oob_poi : NULL;
1791
1792         nand_read_page_op(chip, page, 0, NULL, 0);
1793
1794         return brcmnand_read(mtd, chip, host->last_addr,
1795                         mtd->writesize >> FC_SHIFT, (u32 *)buf, oob);
1796 }
1797
1798 static int brcmnand_read_page_raw(struct nand_chip *chip, uint8_t *buf,
1799                                   int oob_required, int page)
1800 {
1801         struct brcmnand_host *host = nand_get_controller_data(chip);
1802         struct mtd_info *mtd = nand_to_mtd(chip);
1803         u8 *oob = oob_required ? (u8 *)chip->oob_poi : NULL;
1804         int ret;
1805
1806         nand_read_page_op(chip, page, 0, NULL, 0);
1807
1808         brcmnand_set_ecc_enabled(host, 0);
1809         ret = brcmnand_read(mtd, chip, host->last_addr,
1810                         mtd->writesize >> FC_SHIFT, (u32 *)buf, oob);
1811         brcmnand_set_ecc_enabled(host, 1);
1812         return ret;
1813 }
1814
1815 static int brcmnand_read_oob(struct nand_chip *chip, int page)
1816 {
1817         struct mtd_info *mtd = nand_to_mtd(chip);
1818
1819         return brcmnand_read(mtd, chip, (u64)page << chip->page_shift,
1820                         mtd->writesize >> FC_SHIFT,
1821                         NULL, (u8 *)chip->oob_poi);
1822 }
1823
1824 static int brcmnand_read_oob_raw(struct nand_chip *chip, int page)
1825 {
1826         struct mtd_info *mtd = nand_to_mtd(chip);
1827         struct brcmnand_host *host = nand_get_controller_data(chip);
1828
1829         brcmnand_set_ecc_enabled(host, 0);
1830         brcmnand_read(mtd, chip, (u64)page << chip->page_shift,
1831                 mtd->writesize >> FC_SHIFT,
1832                 NULL, (u8 *)chip->oob_poi);
1833         brcmnand_set_ecc_enabled(host, 1);
1834         return 0;
1835 }
1836
1837 static int brcmnand_write(struct mtd_info *mtd, struct nand_chip *chip,
1838                           u64 addr, const u32 *buf, u8 *oob)
1839 {
1840         struct brcmnand_host *host = nand_get_controller_data(chip);
1841         struct brcmnand_controller *ctrl = host->ctrl;
1842         unsigned int i, j, trans = mtd->writesize >> FC_SHIFT;
1843         int status, ret = 0;
1844
1845         dev_dbg(ctrl->dev, "write %llx <- %p\n", (unsigned long long)addr, buf);
1846
1847         if (unlikely((unsigned long)buf & 0x03)) {
1848                 dev_warn(ctrl->dev, "unaligned buffer: %p\n", buf);
1849                 buf = (u32 *)((unsigned long)buf & ~0x03);
1850         }
1851
1852         brcmnand_wp(mtd, 0);
1853
1854         for (i = 0; i < ctrl->max_oob; i += 4)
1855                 oob_reg_write(ctrl, i, 0xffffffff);
1856
1857         if (has_flash_dma(ctrl) && !oob && flash_dma_buf_ok(buf)) {
1858                 if (brcmnand_dma_trans(host, addr, (u32 *)buf,
1859                                         mtd->writesize, CMD_PROGRAM_PAGE))
1860                         ret = -EIO;
1861                 goto out;
1862         }
1863
1864         brcmnand_write_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS,
1865                         (host->cs << 16) | ((addr >> 32) & 0xffff));
1866         (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS);
1867
1868         for (i = 0; i < trans; i++, addr += FC_BYTES) {
1869                 /* full address MUST be set before populating FC */
1870                 brcmnand_write_reg(ctrl, BRCMNAND_CMD_ADDRESS,
1871                                    lower_32_bits(addr));
1872                 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS);
1873
1874                 if (buf) {
1875                         brcmnand_soc_data_bus_prepare(ctrl->soc, false);
1876
1877                         for (j = 0; j < FC_WORDS; j++, buf++)
1878                                 brcmnand_write_fc(ctrl, j, *buf);
1879
1880                         brcmnand_soc_data_bus_unprepare(ctrl->soc, false);
1881                 } else if (oob) {
1882                         for (j = 0; j < FC_WORDS; j++)
1883                                 brcmnand_write_fc(ctrl, j, 0xffffffff);
1884                 }
1885
1886                 if (oob) {
1887                         oob += write_oob_to_regs(ctrl, i, oob,
1888                                         mtd->oobsize / trans,
1889                                         host->hwcfg.sector_size_1k);
1890                 }
1891
1892                 /* we cannot use SPARE_AREA_PROGRAM when PARTIAL_PAGE_EN=0 */
1893                 brcmnand_send_cmd(host, CMD_PROGRAM_PAGE);
1894                 status = brcmnand_waitfunc(chip);
1895
1896                 if (status & NAND_STATUS_FAIL) {
1897                         dev_info(ctrl->dev, "program failed at %llx\n",
1898                                 (unsigned long long)addr);
1899                         ret = -EIO;
1900                         goto out;
1901                 }
1902         }
1903 out:
1904         brcmnand_wp(mtd, 1);
1905         return ret;
1906 }
1907
1908 static int brcmnand_write_page(struct nand_chip *chip, const uint8_t *buf,
1909                                int oob_required, int page)
1910 {
1911         struct mtd_info *mtd = nand_to_mtd(chip);
1912         struct brcmnand_host *host = nand_get_controller_data(chip);
1913         void *oob = oob_required ? chip->oob_poi : NULL;
1914
1915         nand_prog_page_begin_op(chip, page, 0, NULL, 0);
1916         brcmnand_write(mtd, chip, host->last_addr, (const u32 *)buf, oob);
1917
1918         return nand_prog_page_end_op(chip);
1919 }
1920
1921 static int brcmnand_write_page_raw(struct nand_chip *chip, const uint8_t *buf,
1922                                    int oob_required, int page)
1923 {
1924         struct mtd_info *mtd = nand_to_mtd(chip);
1925         struct brcmnand_host *host = nand_get_controller_data(chip);
1926         void *oob = oob_required ? chip->oob_poi : NULL;
1927
1928         nand_prog_page_begin_op(chip, page, 0, NULL, 0);
1929         brcmnand_set_ecc_enabled(host, 0);
1930         brcmnand_write(mtd, chip, host->last_addr, (const u32 *)buf, oob);
1931         brcmnand_set_ecc_enabled(host, 1);
1932
1933         return nand_prog_page_end_op(chip);
1934 }
1935
1936 static int brcmnand_write_oob(struct nand_chip *chip, int page)
1937 {
1938         return brcmnand_write(nand_to_mtd(chip), chip,
1939                               (u64)page << chip->page_shift, NULL,
1940                               chip->oob_poi);
1941 }
1942
1943 static int brcmnand_write_oob_raw(struct nand_chip *chip, int page)
1944 {
1945         struct mtd_info *mtd = nand_to_mtd(chip);
1946         struct brcmnand_host *host = nand_get_controller_data(chip);
1947         int ret;
1948
1949         brcmnand_set_ecc_enabled(host, 0);
1950         ret = brcmnand_write(mtd, chip, (u64)page << chip->page_shift, NULL,
1951                                  (u8 *)chip->oob_poi);
1952         brcmnand_set_ecc_enabled(host, 1);
1953
1954         return ret;
1955 }
1956
1957 /***********************************************************************
1958  * Per-CS setup (1 NAND device)
1959  ***********************************************************************/
1960
1961 static int brcmnand_set_cfg(struct brcmnand_host *host,
1962                             struct brcmnand_cfg *cfg)
1963 {
1964         struct brcmnand_controller *ctrl = host->ctrl;
1965         struct nand_chip *chip = &host->chip;
1966         u16 cfg_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_CFG);
1967         u16 cfg_ext_offs = brcmnand_cs_offset(ctrl, host->cs,
1968                         BRCMNAND_CS_CFG_EXT);
1969         u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs,
1970                         BRCMNAND_CS_ACC_CONTROL);
1971         u8 block_size = 0, page_size = 0, device_size = 0;
1972         u32 tmp;
1973
1974         if (ctrl->block_sizes) {
1975                 int i, found;
1976
1977                 for (i = 0, found = 0; ctrl->block_sizes[i]; i++)
1978                         if (ctrl->block_sizes[i] * 1024 == cfg->block_size) {
1979                                 block_size = i;
1980                                 found = 1;
1981                         }
1982                 if (!found) {
1983                         dev_warn(ctrl->dev, "invalid block size %u\n",
1984                                         cfg->block_size);
1985                         return -EINVAL;
1986                 }
1987         } else {
1988                 block_size = ffs(cfg->block_size) - ffs(BRCMNAND_MIN_BLOCKSIZE);
1989         }
1990
1991         if (cfg->block_size < BRCMNAND_MIN_BLOCKSIZE || (ctrl->max_block_size &&
1992                                 cfg->block_size > ctrl->max_block_size)) {
1993                 dev_warn(ctrl->dev, "invalid block size %u\n",
1994                                 cfg->block_size);
1995                 block_size = 0;
1996         }
1997
1998         if (ctrl->page_sizes) {
1999                 int i, found;
2000
2001                 for (i = 0, found = 0; ctrl->page_sizes[i]; i++)
2002                         if (ctrl->page_sizes[i] == cfg->page_size) {
2003                                 page_size = i;
2004                                 found = 1;
2005                         }
2006                 if (!found) {
2007                         dev_warn(ctrl->dev, "invalid page size %u\n",
2008                                         cfg->page_size);
2009                         return -EINVAL;
2010                 }
2011         } else {
2012                 page_size = ffs(cfg->page_size) - ffs(BRCMNAND_MIN_PAGESIZE);
2013         }
2014
2015         if (cfg->page_size < BRCMNAND_MIN_PAGESIZE || (ctrl->max_page_size &&
2016                                 cfg->page_size > ctrl->max_page_size)) {
2017                 dev_warn(ctrl->dev, "invalid page size %u\n", cfg->page_size);
2018                 return -EINVAL;
2019         }
2020
2021         if (fls64(cfg->device_size) < fls64(BRCMNAND_MIN_DEVSIZE)) {
2022                 dev_warn(ctrl->dev, "invalid device size 0x%llx\n",
2023                         (unsigned long long)cfg->device_size);
2024                 return -EINVAL;
2025         }
2026         device_size = fls64(cfg->device_size) - fls64(BRCMNAND_MIN_DEVSIZE);
2027
2028         tmp = (cfg->blk_adr_bytes << CFG_BLK_ADR_BYTES_SHIFT) |
2029                 (cfg->col_adr_bytes << CFG_COL_ADR_BYTES_SHIFT) |
2030                 (cfg->ful_adr_bytes << CFG_FUL_ADR_BYTES_SHIFT) |
2031                 (!!(cfg->device_width == 16) << CFG_BUS_WIDTH_SHIFT) |
2032                 (device_size << CFG_DEVICE_SIZE_SHIFT);
2033         if (cfg_offs == cfg_ext_offs) {
2034                 tmp |= (page_size << CFG_PAGE_SIZE_SHIFT) |
2035                        (block_size << CFG_BLK_SIZE_SHIFT);
2036                 nand_writereg(ctrl, cfg_offs, tmp);
2037         } else {
2038                 nand_writereg(ctrl, cfg_offs, tmp);
2039                 tmp = (page_size << CFG_EXT_PAGE_SIZE_SHIFT) |
2040                       (block_size << CFG_EXT_BLK_SIZE_SHIFT);
2041                 nand_writereg(ctrl, cfg_ext_offs, tmp);
2042         }
2043
2044         tmp = nand_readreg(ctrl, acc_control_offs);
2045         tmp &= ~brcmnand_ecc_level_mask(ctrl);
2046         tmp |= cfg->ecc_level << NAND_ACC_CONTROL_ECC_SHIFT;
2047         tmp &= ~brcmnand_spare_area_mask(ctrl);
2048         tmp |= cfg->spare_area_size;
2049         nand_writereg(ctrl, acc_control_offs, tmp);
2050
2051         brcmnand_set_sector_size_1k(host, cfg->sector_size_1k);
2052
2053         /* threshold = ceil(BCH-level * 0.75) */
2054         brcmnand_wr_corr_thresh(host, DIV_ROUND_UP(chip->ecc.strength * 3, 4));
2055
2056         return 0;
2057 }
2058
2059 static void brcmnand_print_cfg(struct brcmnand_host *host,
2060                                char *buf, struct brcmnand_cfg *cfg)
2061 {
2062         buf += sprintf(buf,
2063                 "%lluMiB total, %uKiB blocks, %u%s pages, %uB OOB, %u-bit",
2064                 (unsigned long long)cfg->device_size >> 20,
2065                 cfg->block_size >> 10,
2066                 cfg->page_size >= 1024 ? cfg->page_size >> 10 : cfg->page_size,
2067                 cfg->page_size >= 1024 ? "KiB" : "B",
2068                 cfg->spare_area_size, cfg->device_width);
2069
2070         /* Account for Hamming ECC and for BCH 512B vs 1KiB sectors */
2071         if (is_hamming_ecc(host->ctrl, cfg))
2072                 sprintf(buf, ", Hamming ECC");
2073         else if (cfg->sector_size_1k)
2074                 sprintf(buf, ", BCH-%u (1KiB sector)", cfg->ecc_level << 1);
2075         else
2076                 sprintf(buf, ", BCH-%u", cfg->ecc_level);
2077 }
2078
2079 /*
2080  * Minimum number of bytes to address a page. Calculated as:
2081  *     roundup(log2(size / page-size) / 8)
2082  *
2083  * NB: the following does not "round up" for non-power-of-2 'size'; but this is
2084  *     OK because many other things will break if 'size' is irregular...
2085  */
2086 static inline int get_blk_adr_bytes(u64 size, u32 writesize)
2087 {
2088         return ALIGN(ilog2(size) - ilog2(writesize), 8) >> 3;
2089 }
2090
2091 static int brcmnand_setup_dev(struct brcmnand_host *host)
2092 {
2093         struct mtd_info *mtd = nand_to_mtd(&host->chip);
2094         struct nand_chip *chip = &host->chip;
2095         struct brcmnand_controller *ctrl = host->ctrl;
2096         struct brcmnand_cfg *cfg = &host->hwcfg;
2097         char msg[128];
2098         u32 offs, tmp, oob_sector;
2099         int ret;
2100
2101         memset(cfg, 0, sizeof(*cfg));
2102
2103         ret = of_property_read_u32(nand_get_flash_node(chip),
2104                                    "brcm,nand-oob-sector-size",
2105                                    &oob_sector);
2106         if (ret) {
2107                 /* Use detected size */
2108                 cfg->spare_area_size = mtd->oobsize /
2109                                         (mtd->writesize >> FC_SHIFT);
2110         } else {
2111                 cfg->spare_area_size = oob_sector;
2112         }
2113         if (cfg->spare_area_size > ctrl->max_oob)
2114                 cfg->spare_area_size = ctrl->max_oob;
2115         /*
2116          * Set oobsize to be consistent with controller's spare_area_size, as
2117          * the rest is inaccessible.
2118          */
2119         mtd->oobsize = cfg->spare_area_size * (mtd->writesize >> FC_SHIFT);
2120
2121         cfg->device_size = mtd->size;
2122         cfg->block_size = mtd->erasesize;
2123         cfg->page_size = mtd->writesize;
2124         cfg->device_width = (chip->options & NAND_BUSWIDTH_16) ? 16 : 8;
2125         cfg->col_adr_bytes = 2;
2126         cfg->blk_adr_bytes = get_blk_adr_bytes(mtd->size, mtd->writesize);
2127
2128         if (chip->ecc.mode != NAND_ECC_HW) {
2129                 dev_err(ctrl->dev, "only HW ECC supported; selected: %d\n",
2130                         chip->ecc.mode);
2131                 return -EINVAL;
2132         }
2133
2134         if (chip->ecc.algo == NAND_ECC_UNKNOWN) {
2135                 if (chip->ecc.strength == 1 && chip->ecc.size == 512)
2136                         /* Default to Hamming for 1-bit ECC, if unspecified */
2137                         chip->ecc.algo = NAND_ECC_HAMMING;
2138                 else
2139                         /* Otherwise, BCH */
2140                         chip->ecc.algo = NAND_ECC_BCH;
2141         }
2142
2143         if (chip->ecc.algo == NAND_ECC_HAMMING && (chip->ecc.strength != 1 ||
2144                                                    chip->ecc.size != 512)) {
2145                 dev_err(ctrl->dev, "invalid Hamming params: %d bits per %d bytes\n",
2146                         chip->ecc.strength, chip->ecc.size);
2147                 return -EINVAL;
2148         }
2149
2150         switch (chip->ecc.size) {
2151         case 512:
2152                 if (chip->ecc.algo == NAND_ECC_HAMMING)
2153                         cfg->ecc_level = 15;
2154                 else
2155                         cfg->ecc_level = chip->ecc.strength;
2156                 cfg->sector_size_1k = 0;
2157                 break;
2158         case 1024:
2159                 if (!(ctrl->features & BRCMNAND_HAS_1K_SECTORS)) {
2160                         dev_err(ctrl->dev, "1KB sectors not supported\n");
2161                         return -EINVAL;
2162                 }
2163                 if (chip->ecc.strength & 0x1) {
2164                         dev_err(ctrl->dev,
2165                                 "odd ECC not supported with 1KB sectors\n");
2166                         return -EINVAL;
2167                 }
2168
2169                 cfg->ecc_level = chip->ecc.strength >> 1;
2170                 cfg->sector_size_1k = 1;
2171                 break;
2172         default:
2173                 dev_err(ctrl->dev, "unsupported ECC size: %d\n",
2174                         chip->ecc.size);
2175                 return -EINVAL;
2176         }
2177
2178         cfg->ful_adr_bytes = cfg->blk_adr_bytes;
2179         if (mtd->writesize > 512)
2180                 cfg->ful_adr_bytes += cfg->col_adr_bytes;
2181         else
2182                 cfg->ful_adr_bytes += 1;
2183
2184         ret = brcmnand_set_cfg(host, cfg);
2185         if (ret)
2186                 return ret;
2187
2188         brcmnand_set_ecc_enabled(host, 1);
2189
2190         brcmnand_print_cfg(host, msg, cfg);
2191         dev_info(ctrl->dev, "detected %s\n", msg);
2192
2193         /* Configure ACC_CONTROL */
2194         offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_ACC_CONTROL);
2195         tmp = nand_readreg(ctrl, offs);
2196         tmp &= ~ACC_CONTROL_PARTIAL_PAGE;
2197         tmp &= ~ACC_CONTROL_RD_ERASED;
2198
2199         /* We need to turn on Read from erased paged protected by ECC */
2200         if (ctrl->nand_version >= 0x0702)
2201                 tmp |= ACC_CONTROL_RD_ERASED;
2202         tmp &= ~ACC_CONTROL_FAST_PGM_RDIN;
2203         if (ctrl->features & BRCMNAND_HAS_PREFETCH)
2204                 tmp &= ~ACC_CONTROL_PREFETCH;
2205
2206         nand_writereg(ctrl, offs, tmp);
2207
2208         return 0;
2209 }
2210
2211 static int brcmnand_attach_chip(struct nand_chip *chip)
2212 {
2213         struct mtd_info *mtd = nand_to_mtd(chip);
2214         struct brcmnand_host *host = nand_get_controller_data(chip);
2215         int ret;
2216
2217         chip->options |= NAND_NO_SUBPAGE_WRITE;
2218         /*
2219          * Avoid (for instance) kmap()'d buffers from JFFS2, which we can't DMA
2220          * to/from, and have nand_base pass us a bounce buffer instead, as
2221          * needed.
2222          */
2223         chip->options |= NAND_USE_BOUNCE_BUFFER;
2224
2225         if (chip->bbt_options & NAND_BBT_USE_FLASH)
2226                 chip->bbt_options |= NAND_BBT_NO_OOB;
2227
2228         if (brcmnand_setup_dev(host))
2229                 return -ENXIO;
2230
2231         chip->ecc.size = host->hwcfg.sector_size_1k ? 1024 : 512;
2232
2233         /* only use our internal HW threshold */
2234         mtd->bitflip_threshold = 1;
2235
2236         ret = brcmstb_choose_ecc_layout(host);
2237
2238         return ret;
2239 }
2240
2241 static const struct nand_controller_ops brcmnand_controller_ops = {
2242         .attach_chip = brcmnand_attach_chip,
2243 };
2244
2245 static int brcmnand_init_cs(struct brcmnand_host *host, struct device_node *dn)
2246 {
2247         struct brcmnand_controller *ctrl = host->ctrl;
2248         struct platform_device *pdev = host->pdev;
2249         struct mtd_info *mtd;
2250         struct nand_chip *chip;
2251         int ret;
2252         u16 cfg_offs;
2253
2254         ret = of_property_read_u32(dn, "reg", &host->cs);
2255         if (ret) {
2256                 dev_err(&pdev->dev, "can't get chip-select\n");
2257                 return -ENXIO;
2258         }
2259
2260         mtd = nand_to_mtd(&host->chip);
2261         chip = &host->chip;
2262
2263         nand_set_flash_node(chip, dn);
2264         nand_set_controller_data(chip, host);
2265         mtd->name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "brcmnand.%d",
2266                                    host->cs);
2267         if (!mtd->name)
2268                 return -ENOMEM;
2269
2270         mtd->owner = THIS_MODULE;
2271         mtd->dev.parent = &pdev->dev;
2272
2273         chip->legacy.cmd_ctrl = brcmnand_cmd_ctrl;
2274         chip->legacy.cmdfunc = brcmnand_cmdfunc;
2275         chip->legacy.waitfunc = brcmnand_waitfunc;
2276         chip->legacy.read_byte = brcmnand_read_byte;
2277         chip->legacy.read_buf = brcmnand_read_buf;
2278         chip->legacy.write_buf = brcmnand_write_buf;
2279
2280         chip->ecc.mode = NAND_ECC_HW;
2281         chip->ecc.read_page = brcmnand_read_page;
2282         chip->ecc.write_page = brcmnand_write_page;
2283         chip->ecc.read_page_raw = brcmnand_read_page_raw;
2284         chip->ecc.write_page_raw = brcmnand_write_page_raw;
2285         chip->ecc.write_oob_raw = brcmnand_write_oob_raw;
2286         chip->ecc.read_oob_raw = brcmnand_read_oob_raw;
2287         chip->ecc.read_oob = brcmnand_read_oob;
2288         chip->ecc.write_oob = brcmnand_write_oob;
2289
2290         chip->controller = &ctrl->controller;
2291
2292         /*
2293          * The bootloader might have configured 16bit mode but
2294          * NAND READID command only works in 8bit mode. We force
2295          * 8bit mode here to ensure that NAND READID commands works.
2296          */
2297         cfg_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_CFG);
2298         nand_writereg(ctrl, cfg_offs,
2299                       nand_readreg(ctrl, cfg_offs) & ~CFG_BUS_WIDTH);
2300
2301         ret = nand_scan(chip, 1);
2302         if (ret)
2303                 return ret;
2304
2305         ret = mtd_device_register(mtd, NULL, 0);
2306         if (ret)
2307                 nand_cleanup(chip);
2308
2309         return ret;
2310 }
2311
2312 static void brcmnand_save_restore_cs_config(struct brcmnand_host *host,
2313                                             int restore)
2314 {
2315         struct brcmnand_controller *ctrl = host->ctrl;
2316         u16 cfg_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_CFG);
2317         u16 cfg_ext_offs = brcmnand_cs_offset(ctrl, host->cs,
2318                         BRCMNAND_CS_CFG_EXT);
2319         u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs,
2320                         BRCMNAND_CS_ACC_CONTROL);
2321         u16 t1_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_TIMING1);
2322         u16 t2_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_TIMING2);
2323
2324         if (restore) {
2325                 nand_writereg(ctrl, cfg_offs, host->hwcfg.config);
2326                 if (cfg_offs != cfg_ext_offs)
2327                         nand_writereg(ctrl, cfg_ext_offs,
2328                                       host->hwcfg.config_ext);
2329                 nand_writereg(ctrl, acc_control_offs, host->hwcfg.acc_control);
2330                 nand_writereg(ctrl, t1_offs, host->hwcfg.timing_1);
2331                 nand_writereg(ctrl, t2_offs, host->hwcfg.timing_2);
2332         } else {
2333                 host->hwcfg.config = nand_readreg(ctrl, cfg_offs);
2334                 if (cfg_offs != cfg_ext_offs)
2335                         host->hwcfg.config_ext =
2336                                 nand_readreg(ctrl, cfg_ext_offs);
2337                 host->hwcfg.acc_control = nand_readreg(ctrl, acc_control_offs);
2338                 host->hwcfg.timing_1 = nand_readreg(ctrl, t1_offs);
2339                 host->hwcfg.timing_2 = nand_readreg(ctrl, t2_offs);
2340         }
2341 }
2342
2343 static int brcmnand_suspend(struct device *dev)
2344 {
2345         struct brcmnand_controller *ctrl = dev_get_drvdata(dev);
2346         struct brcmnand_host *host;
2347
2348         list_for_each_entry(host, &ctrl->host_list, node)
2349                 brcmnand_save_restore_cs_config(host, 0);
2350
2351         ctrl->nand_cs_nand_select = brcmnand_read_reg(ctrl, BRCMNAND_CS_SELECT);
2352         ctrl->nand_cs_nand_xor = brcmnand_read_reg(ctrl, BRCMNAND_CS_XOR);
2353         ctrl->corr_stat_threshold =
2354                 brcmnand_read_reg(ctrl, BRCMNAND_CORR_THRESHOLD);
2355
2356         if (has_flash_dma(ctrl))
2357                 ctrl->flash_dma_mode = flash_dma_readl(ctrl, FLASH_DMA_MODE);
2358
2359         return 0;
2360 }
2361
2362 static int brcmnand_resume(struct device *dev)
2363 {
2364         struct brcmnand_controller *ctrl = dev_get_drvdata(dev);
2365         struct brcmnand_host *host;
2366
2367         if (has_flash_dma(ctrl)) {
2368                 flash_dma_writel(ctrl, FLASH_DMA_MODE, ctrl->flash_dma_mode);
2369                 flash_dma_writel(ctrl, FLASH_DMA_ERROR_STATUS, 0);
2370         }
2371
2372         brcmnand_write_reg(ctrl, BRCMNAND_CS_SELECT, ctrl->nand_cs_nand_select);
2373         brcmnand_write_reg(ctrl, BRCMNAND_CS_XOR, ctrl->nand_cs_nand_xor);
2374         brcmnand_write_reg(ctrl, BRCMNAND_CORR_THRESHOLD,
2375                         ctrl->corr_stat_threshold);
2376         if (ctrl->soc) {
2377                 /* Clear/re-enable interrupt */
2378                 ctrl->soc->ctlrdy_ack(ctrl->soc);
2379                 ctrl->soc->ctlrdy_set_enabled(ctrl->soc, true);
2380         }
2381
2382         list_for_each_entry(host, &ctrl->host_list, node) {
2383                 struct nand_chip *chip = &host->chip;
2384
2385                 brcmnand_save_restore_cs_config(host, 1);
2386
2387                 /* Reset the chip, required by some chips after power-up */
2388                 nand_reset_op(chip);
2389         }
2390
2391         return 0;
2392 }
2393
2394 const struct dev_pm_ops brcmnand_pm_ops = {
2395         .suspend                = brcmnand_suspend,
2396         .resume                 = brcmnand_resume,
2397 };
2398 EXPORT_SYMBOL_GPL(brcmnand_pm_ops);
2399
2400 static const struct of_device_id brcmnand_of_match[] = {
2401         { .compatible = "brcm,brcmnand-v4.0" },
2402         { .compatible = "brcm,brcmnand-v5.0" },
2403         { .compatible = "brcm,brcmnand-v6.0" },
2404         { .compatible = "brcm,brcmnand-v6.1" },
2405         { .compatible = "brcm,brcmnand-v6.2" },
2406         { .compatible = "brcm,brcmnand-v7.0" },
2407         { .compatible = "brcm,brcmnand-v7.1" },
2408         { .compatible = "brcm,brcmnand-v7.2" },
2409         {},
2410 };
2411 MODULE_DEVICE_TABLE(of, brcmnand_of_match);
2412
2413 /***********************************************************************
2414  * Platform driver setup (per controller)
2415  ***********************************************************************/
2416
2417 int brcmnand_probe(struct platform_device *pdev, struct brcmnand_soc *soc)
2418 {
2419         struct device *dev = &pdev->dev;
2420         struct device_node *dn = dev->of_node, *child;
2421         struct brcmnand_controller *ctrl;
2422         struct resource *res;
2423         int ret;
2424
2425         /* We only support device-tree instantiation */
2426         if (!dn)
2427                 return -ENODEV;
2428
2429         if (!of_match_node(brcmnand_of_match, dn))
2430                 return -ENODEV;
2431
2432         ctrl = devm_kzalloc(dev, sizeof(*ctrl), GFP_KERNEL);
2433         if (!ctrl)
2434                 return -ENOMEM;
2435
2436         dev_set_drvdata(dev, ctrl);
2437         ctrl->dev = dev;
2438
2439         init_completion(&ctrl->done);
2440         init_completion(&ctrl->dma_done);
2441         nand_controller_init(&ctrl->controller);
2442         ctrl->controller.ops = &brcmnand_controller_ops;
2443         INIT_LIST_HEAD(&ctrl->host_list);
2444
2445         /* NAND register range */
2446         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2447         ctrl->nand_base = devm_ioremap_resource(dev, res);
2448         if (IS_ERR(ctrl->nand_base))
2449                 return PTR_ERR(ctrl->nand_base);
2450
2451         /* Enable clock before using NAND registers */
2452         ctrl->clk = devm_clk_get(dev, "nand");
2453         if (!IS_ERR(ctrl->clk)) {
2454                 ret = clk_prepare_enable(ctrl->clk);
2455                 if (ret)
2456                         return ret;
2457         } else {
2458                 ret = PTR_ERR(ctrl->clk);
2459                 if (ret == -EPROBE_DEFER)
2460                         return ret;
2461
2462                 ctrl->clk = NULL;
2463         }
2464
2465         /* Initialize NAND revision */
2466         ret = brcmnand_revision_init(ctrl);
2467         if (ret)
2468                 goto err;
2469
2470         /*
2471          * Most chips have this cache at a fixed offset within 'nand' block.
2472          * Some must specify this region separately.
2473          */
2474         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand-cache");
2475         if (res) {
2476                 ctrl->nand_fc = devm_ioremap_resource(dev, res);
2477                 if (IS_ERR(ctrl->nand_fc)) {
2478                         ret = PTR_ERR(ctrl->nand_fc);
2479                         goto err;
2480                 }
2481         } else {
2482                 ctrl->nand_fc = ctrl->nand_base +
2483                                 ctrl->reg_offsets[BRCMNAND_FC_BASE];
2484         }
2485
2486         /* FLASH_DMA */
2487         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "flash-dma");
2488         if (res) {
2489                 ctrl->flash_dma_base = devm_ioremap_resource(dev, res);
2490                 if (IS_ERR(ctrl->flash_dma_base)) {
2491                         ret = PTR_ERR(ctrl->flash_dma_base);
2492                         goto err;
2493                 }
2494
2495                 flash_dma_writel(ctrl, FLASH_DMA_MODE, 1); /* linked-list */
2496                 flash_dma_writel(ctrl, FLASH_DMA_ERROR_STATUS, 0);
2497
2498                 /* Allocate descriptor(s) */
2499                 ctrl->dma_desc = dmam_alloc_coherent(dev,
2500                                                      sizeof(*ctrl->dma_desc),
2501                                                      &ctrl->dma_pa, GFP_KERNEL);
2502                 if (!ctrl->dma_desc) {
2503                         ret = -ENOMEM;
2504                         goto err;
2505                 }
2506
2507                 ctrl->dma_irq = platform_get_irq(pdev, 1);
2508                 if ((int)ctrl->dma_irq < 0) {
2509                         dev_err(dev, "missing FLASH_DMA IRQ\n");
2510                         ret = -ENODEV;
2511                         goto err;
2512                 }
2513
2514                 ret = devm_request_irq(dev, ctrl->dma_irq,
2515                                 brcmnand_dma_irq, 0, DRV_NAME,
2516                                 ctrl);
2517                 if (ret < 0) {
2518                         dev_err(dev, "can't allocate IRQ %d: error %d\n",
2519                                         ctrl->dma_irq, ret);
2520                         goto err;
2521                 }
2522
2523                 dev_info(dev, "enabling FLASH_DMA\n");
2524         }
2525
2526         /* Disable automatic device ID config, direct addressing */
2527         brcmnand_rmw_reg(ctrl, BRCMNAND_CS_SELECT,
2528                          CS_SELECT_AUTO_DEVICE_ID_CFG | 0xff, 0, 0);
2529         /* Disable XOR addressing */
2530         brcmnand_rmw_reg(ctrl, BRCMNAND_CS_XOR, 0xff, 0, 0);
2531
2532         if (ctrl->features & BRCMNAND_HAS_WP) {
2533                 /* Permanently disable write protection */
2534                 if (wp_on == 2)
2535                         brcmnand_set_wp(ctrl, false);
2536         } else {
2537                 wp_on = 0;
2538         }
2539
2540         /* IRQ */
2541         ctrl->irq = platform_get_irq(pdev, 0);
2542         if ((int)ctrl->irq < 0) {
2543                 dev_err(dev, "no IRQ defined\n");
2544                 ret = -ENODEV;
2545                 goto err;
2546         }
2547
2548         /*
2549          * Some SoCs integrate this controller (e.g., its interrupt bits) in
2550          * interesting ways
2551          */
2552         if (soc) {
2553                 ctrl->soc = soc;
2554
2555                 ret = devm_request_irq(dev, ctrl->irq, brcmnand_irq, 0,
2556                                        DRV_NAME, ctrl);
2557
2558                 /* Enable interrupt */
2559                 ctrl->soc->ctlrdy_ack(ctrl->soc);
2560                 ctrl->soc->ctlrdy_set_enabled(ctrl->soc, true);
2561         } else {
2562                 /* Use standard interrupt infrastructure */
2563                 ret = devm_request_irq(dev, ctrl->irq, brcmnand_ctlrdy_irq, 0,
2564                                        DRV_NAME, ctrl);
2565         }
2566         if (ret < 0) {
2567                 dev_err(dev, "can't allocate IRQ %d: error %d\n",
2568                         ctrl->irq, ret);
2569                 goto err;
2570         }
2571
2572         for_each_available_child_of_node(dn, child) {
2573                 if (of_device_is_compatible(child, "brcm,nandcs")) {
2574                         struct brcmnand_host *host;
2575
2576                         host = devm_kzalloc(dev, sizeof(*host), GFP_KERNEL);
2577                         if (!host) {
2578                                 of_node_put(child);
2579                                 ret = -ENOMEM;
2580                                 goto err;
2581                         }
2582                         host->pdev = pdev;
2583                         host->ctrl = ctrl;
2584
2585                         ret = brcmnand_init_cs(host, child);
2586                         if (ret) {
2587                                 devm_kfree(dev, host);
2588                                 continue; /* Try all chip-selects */
2589                         }
2590
2591                         list_add_tail(&host->node, &ctrl->host_list);
2592                 }
2593         }
2594
2595         /* No chip-selects could initialize properly */
2596         if (list_empty(&ctrl->host_list)) {
2597                 ret = -ENODEV;
2598                 goto err;
2599         }
2600
2601         return 0;
2602
2603 err:
2604         clk_disable_unprepare(ctrl->clk);
2605         return ret;
2606
2607 }
2608 EXPORT_SYMBOL_GPL(brcmnand_probe);
2609
2610 int brcmnand_remove(struct platform_device *pdev)
2611 {
2612         struct brcmnand_controller *ctrl = dev_get_drvdata(&pdev->dev);
2613         struct brcmnand_host *host;
2614
2615         list_for_each_entry(host, &ctrl->host_list, node)
2616                 nand_release(&host->chip);
2617
2618         clk_disable_unprepare(ctrl->clk);
2619
2620         dev_set_drvdata(&pdev->dev, NULL);
2621
2622         return 0;
2623 }
2624 EXPORT_SYMBOL_GPL(brcmnand_remove);
2625
2626 MODULE_LICENSE("GPL v2");
2627 MODULE_AUTHOR("Kevin Cernekee");
2628 MODULE_AUTHOR("Brian Norris");
2629 MODULE_DESCRIPTION("NAND driver for Broadcom chips");
2630 MODULE_ALIAS("platform:brcmnand");