Révision | 3ab8beaadca43be24893072619ab14a213788860 (tree) |
---|---|
l'heure | 2022-07-14 06:03:37 |
Auteur | Weijie Gao <weijie.gao@medi...> |
Commiter | Daniel Schwierzeck |
nand: raw: add support for MediaTek MT7621 SoC
This patch adds NAND flash controller driver for MediaTek MT7621 SoC.
The NAND flash controller of MT7621 supports only SLC NAND flashes.
It supports 4~12 bits correction with maximum 4KB page size.
Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
@@ -526,12 +526,25 @@ config TEGRA_NAND | ||
526 | 526 | help |
527 | 527 | Enables support for NAND Flash chips on Tegra SoCs platforms. |
528 | 528 | |
529 | +config NAND_MT7621 | |
530 | + bool "Support for MediaTek MT7621 NAND flash controller" | |
531 | + depends on SOC_MT7621 | |
532 | + select SYS_NAND_SELF_INIT | |
533 | + select SPL_SYS_NAND_SELF_INIT | |
534 | + imply CMD_NAND | |
535 | + help | |
536 | + This enables NAND driver for the NAND flash controller on MediaTek | |
537 | + MT7621 platform. | |
538 | + The controller supports 4~12 bits correction per 512 bytes with a | |
539 | + maximum 4KB page size. | |
540 | + | |
529 | 541 | comment "Generic NAND options" |
530 | 542 | |
531 | 543 | config SYS_NAND_BLOCK_SIZE |
532 | 544 | hex "NAND chip eraseblock size" |
533 | 545 | depends on ARCH_SUNXI || SPL_NAND_SUPPORT || TPL_NAND_SUPPORT |
534 | - depends on !NAND_MXS && !NAND_DENALI_DT && !NAND_LPC32XX_MLC && !NAND_FSL_IFC | |
546 | + depends on !NAND_MXS && !NAND_DENALI_DT && !NAND_LPC32XX_MLC && \ | |
547 | + !NAND_FSL_IFC && !NAND_MT7621 | |
535 | 548 | help |
536 | 549 | Number of data bytes in one eraseblock for the NAND chip on the |
537 | 550 | board. This is the multiple of NAND_PAGE_SIZE and the number of |
@@ -556,7 +569,7 @@ config SYS_NAND_PAGE_SIZE | ||
556 | 569 | depends on ARCH_SUNXI || NAND_OMAP_GPMC || NAND_LPC32XX_SLC || \ |
557 | 570 | SPL_NAND_SIMPLE || (NAND_MXC && SPL_NAND_SUPPORT) || \ |
558 | 571 | (NAND_ATMEL && SPL_NAND_SUPPORT) || SPL_GENERATE_ATMEL_PMECC_HEADER |
559 | - depends on !NAND_MXS && !NAND_DENALI_DT && !NAND_LPC32XX_MLC | |
572 | + depends on !NAND_MXS && !NAND_DENALI_DT && !NAND_LPC32XX_MLC && !NAND_MT7621 | |
560 | 573 | help |
561 | 574 | Number of data bytes in one page for the NAND chip on the |
562 | 575 | board, not including the OOB area. |
@@ -72,6 +72,7 @@ obj-$(CONFIG_NAND_ZYNQ) += zynq_nand.o | ||
72 | 72 | obj-$(CONFIG_NAND_STM32_FMC2) += stm32_fmc2_nand.o |
73 | 73 | obj-$(CONFIG_CORTINA_NAND) += cortina_nand.o |
74 | 74 | obj-$(CONFIG_ROCKCHIP_NAND) += rockchip_nfc.o |
75 | +obj-$(CONFIG_NAND_MT7621) += mt7621_nand.o | |
75 | 76 | |
76 | 77 | else # minimal SPL drivers |
77 | 78 |
@@ -80,5 +81,6 @@ obj-$(CONFIG_NAND_FSL_IFC) += fsl_ifc_spl.o | ||
80 | 81 | obj-$(CONFIG_NAND_MXC) += mxc_nand_spl.o |
81 | 82 | obj-$(CONFIG_NAND_MXS) += mxs_nand_spl.o mxs_nand.o |
82 | 83 | obj-$(CONFIG_NAND_SUNXI) += sunxi_nand_spl.o |
84 | +obj-$(CONFIG_NAND_MT7621) += mt7621_nand_spl.o mt7621_nand.o | |
83 | 85 | |
84 | 86 | endif # drivers |
@@ -0,0 +1,1205 @@ | ||
1 | +// SPDX-License-Identifier: GPL-2.0 | |
2 | +/* | |
3 | + * Copyright (C) 2022 MediaTek Inc. All rights reserved. | |
4 | + * | |
5 | + * Author: Weijie Gao <weijie.gao@mediatek.com> | |
6 | + */ | |
7 | + | |
8 | +#include <log.h> | |
9 | +#include <nand.h> | |
10 | +#include <malloc.h> | |
11 | +#include <asm/addrspace.h> | |
12 | +#include <linux/io.h> | |
13 | +#include <linux/iopoll.h> | |
14 | +#include <linux/sizes.h> | |
15 | +#include <linux/bitops.h> | |
16 | +#include <linux/bitfield.h> | |
17 | +#include "mt7621_nand.h" | |
18 | + | |
19 | +/* NFI core registers */ | |
20 | +#define NFI_CNFG 0x000 | |
21 | +#define CNFG_OP_MODE GENMASK(14, 12) | |
22 | +#define CNFG_OP_CUSTOM 6 | |
23 | +#define CNFG_AUTO_FMT_EN BIT(9) | |
24 | +#define CNFG_HW_ECC_EN BIT(8) | |
25 | +#define CNFG_BYTE_RW BIT(6) | |
26 | +#define CNFG_READ_MODE BIT(1) | |
27 | + | |
28 | +#define NFI_PAGEFMT 0x004 | |
29 | +#define PAGEFMT_FDM_ECC GENMASK(15, 12) | |
30 | +#define PAGEFMT_FDM GENMASK(11, 8) | |
31 | +#define PAGEFMT_SPARE GENMASK(5, 4) | |
32 | +#define PAGEFMT_PAGE GENMASK(1, 0) | |
33 | + | |
34 | +#define NFI_CON 0x008 | |
35 | +#define CON_NFI_SEC GENMASK(15, 12) | |
36 | +#define CON_NFI_BWR BIT(9) | |
37 | +#define CON_NFI_BRD BIT(8) | |
38 | +#define CON_NFI_RST BIT(1) | |
39 | +#define CON_FIFO_FLUSH BIT(0) | |
40 | + | |
41 | +#define NFI_ACCCON 0x00c | |
42 | +#define ACCCON_POECS GENMASK(31, 28) | |
43 | +#define ACCCON_POECS_DEF 3 | |
44 | +#define ACCCON_PRECS GENMASK(27, 22) | |
45 | +#define ACCCON_PRECS_DEF 3 | |
46 | +#define ACCCON_C2R GENMASK(21, 16) | |
47 | +#define ACCCON_C2R_DEF 7 | |
48 | +#define ACCCON_W2R GENMASK(15, 12) | |
49 | +#define ACCCON_W2R_DEF 7 | |
50 | +#define ACCCON_WH GENMASK(11, 8) | |
51 | +#define ACCCON_WH_DEF 15 | |
52 | +#define ACCCON_WST GENMASK(7, 4) | |
53 | +#define ACCCON_WST_DEF 15 | |
54 | +#define ACCCON_WST_MIN 3 | |
55 | +#define ACCCON_RLT GENMASK(3, 0) | |
56 | +#define ACCCON_RLT_DEF 15 | |
57 | +#define ACCCON_RLT_MIN 3 | |
58 | + | |
59 | +#define NFI_CMD 0x020 | |
60 | + | |
61 | +#define NFI_ADDRNOB 0x030 | |
62 | +#define ADDR_ROW_NOB GENMASK(6, 4) | |
63 | +#define ADDR_COL_NOB GENMASK(2, 0) | |
64 | + | |
65 | +#define NFI_COLADDR 0x034 | |
66 | +#define NFI_ROWADDR 0x038 | |
67 | + | |
68 | +#define NFI_STRDATA 0x040 | |
69 | +#define STR_DATA BIT(0) | |
70 | + | |
71 | +#define NFI_CNRNB 0x044 | |
72 | +#define CB2R_TIME GENMASK(7, 4) | |
73 | +#define STR_CNRNB BIT(0) | |
74 | + | |
75 | +#define NFI_DATAW 0x050 | |
76 | +#define NFI_DATAR 0x054 | |
77 | + | |
78 | +#define NFI_PIO_DIRDY 0x058 | |
79 | +#define PIO_DIRDY BIT(0) | |
80 | + | |
81 | +#define NFI_STA 0x060 | |
82 | +#define STA_NFI_FSM GENMASK(19, 16) | |
83 | +#define STA_FSM_CUSTOM_DATA 14 | |
84 | +#define STA_BUSY BIT(8) | |
85 | +#define STA_ADDR BIT(1) | |
86 | +#define STA_CMD BIT(0) | |
87 | + | |
88 | +#define NFI_ADDRCNTR 0x070 | |
89 | +#define SEC_CNTR GENMASK(15, 12) | |
90 | +#define SEC_ADDR GENMASK(9, 0) | |
91 | + | |
92 | +#define NFI_CSEL 0x090 | |
93 | +#define CSEL GENMASK(1, 0) | |
94 | + | |
95 | +#define NFI_FDM0L 0x0a0 | |
96 | +#define NFI_FDML(n) (0x0a0 + ((n) << 3)) | |
97 | + | |
98 | +#define NFI_FDM0M 0x0a4 | |
99 | +#define NFI_FDMM(n) (0x0a4 + ((n) << 3)) | |
100 | + | |
101 | +#define NFI_MASTER_STA 0x210 | |
102 | +#define MAS_ADDR GENMASK(11, 9) | |
103 | +#define MAS_RD GENMASK(8, 6) | |
104 | +#define MAS_WR GENMASK(5, 3) | |
105 | +#define MAS_RDDLY GENMASK(2, 0) | |
106 | + | |
107 | +/* ECC engine registers */ | |
108 | +#define ECC_ENCCON 0x000 | |
109 | +#define ENC_EN BIT(0) | |
110 | + | |
111 | +#define ECC_ENCCNFG 0x004 | |
112 | +#define ENC_CNFG_MSG GENMASK(28, 16) | |
113 | +#define ENC_MODE GENMASK(5, 4) | |
114 | +#define ENC_MODE_NFI 1 | |
115 | +#define ENC_TNUM GENMASK(2, 0) | |
116 | + | |
117 | +#define ECC_ENCIDLE 0x00c | |
118 | +#define ENC_IDLE BIT(0) | |
119 | + | |
120 | +#define ECC_DECCON 0x100 | |
121 | +#define DEC_EN BIT(0) | |
122 | + | |
123 | +#define ECC_DECCNFG 0x104 | |
124 | +#define DEC_EMPTY_EN BIT(31) | |
125 | +#define DEC_CS GENMASK(28, 16) | |
126 | +#define DEC_CON GENMASK(13, 12) | |
127 | +#define DEC_CON_EL 2 | |
128 | +#define DEC_MODE GENMASK(5, 4) | |
129 | +#define DEC_MODE_NFI 1 | |
130 | +#define DEC_TNUM GENMASK(2, 0) | |
131 | + | |
132 | +#define ECC_DECIDLE 0x10c | |
133 | +#define DEC_IDLE BIT(1) | |
134 | + | |
135 | +#define ECC_DECENUM 0x114 | |
136 | +#define ERRNUM_S 2 | |
137 | +#define ERRNUM_M GENMASK(3, 0) | |
138 | + | |
139 | +#define ECC_DECDONE 0x118 | |
140 | +#define DEC_DONE7 BIT(7) | |
141 | +#define DEC_DONE6 BIT(6) | |
142 | +#define DEC_DONE5 BIT(5) | |
143 | +#define DEC_DONE4 BIT(4) | |
144 | +#define DEC_DONE3 BIT(3) | |
145 | +#define DEC_DONE2 BIT(2) | |
146 | +#define DEC_DONE1 BIT(1) | |
147 | +#define DEC_DONE0 BIT(0) | |
148 | + | |
149 | +#define ECC_DECEL(n) (0x11c + (n) * 4) | |
150 | +#define DEC_EL_ODD_S 16 | |
151 | +#define DEC_EL_M 0x1fff | |
152 | +#define DEC_EL_BYTE_POS_S 3 | |
153 | +#define DEC_EL_BIT_POS_M GENMASK(2, 0) | |
154 | + | |
155 | +#define ECC_FDMADDR 0x13c | |
156 | + | |
157 | +/* ENCIDLE and DECIDLE */ | |
158 | +#define ECC_IDLE BIT(0) | |
159 | + | |
160 | +#define ACCTIMING(tpoecs, tprecs, tc2r, tw2r, twh, twst, trlt) \ | |
161 | + (FIELD_PREP(ACCCON_POECS, tpoecs) | \ | |
162 | + FIELD_PREP(ACCCON_PRECS, tprecs) | \ | |
163 | + FIELD_PREP(ACCCON_C2R, tc2r) | \ | |
164 | + FIELD_PREP(ACCCON_W2R, tw2r) | \ | |
165 | + FIELD_PREP(ACCCON_WH, twh) | \ | |
166 | + FIELD_PREP(ACCCON_WST, twst) | \ | |
167 | + FIELD_PREP(ACCCON_RLT, trlt)) | |
168 | + | |
169 | +#define MASTER_STA_MASK (MAS_ADDR | MAS_RD | MAS_WR | \ | |
170 | + MAS_RDDLY) | |
171 | +#define NFI_RESET_TIMEOUT 1000000 | |
172 | +#define NFI_CORE_TIMEOUT 500000 | |
173 | +#define ECC_ENGINE_TIMEOUT 500000 | |
174 | + | |
175 | +#define ECC_SECTOR_SIZE 512 | |
176 | +#define ECC_PARITY_BITS 13 | |
177 | + | |
178 | +#define NFI_FDM_SIZE 8 | |
179 | + | |
180 | +/* Register base */ | |
181 | +#define NFI_BASE 0x1e003000 | |
182 | +#define NFI_ECC_BASE 0x1e003800 | |
183 | + | |
184 | +static struct mt7621_nfc nfc_dev; | |
185 | + | |
186 | +static const u16 mt7621_nfi_page_size[] = { SZ_512, SZ_2K, SZ_4K }; | |
187 | +static const u8 mt7621_nfi_spare_size[] = { 16, 26, 27, 28 }; | |
188 | +static const u8 mt7621_ecc_strength[] = { 4, 6, 8, 10, 12 }; | |
189 | + | |
190 | +static inline u32 nfi_read32(struct mt7621_nfc *nfc, u32 reg) | |
191 | +{ | |
192 | + return readl(nfc->nfi_regs + reg); | |
193 | +} | |
194 | + | |
195 | +static inline void nfi_write32(struct mt7621_nfc *nfc, u32 reg, u32 val) | |
196 | +{ | |
197 | + writel(val, nfc->nfi_regs + reg); | |
198 | +} | |
199 | + | |
200 | +static inline u16 nfi_read16(struct mt7621_nfc *nfc, u32 reg) | |
201 | +{ | |
202 | + return readw(nfc->nfi_regs + reg); | |
203 | +} | |
204 | + | |
205 | +static inline void nfi_write16(struct mt7621_nfc *nfc, u32 reg, u16 val) | |
206 | +{ | |
207 | + writew(val, nfc->nfi_regs + reg); | |
208 | +} | |
209 | + | |
210 | +static inline void ecc_write16(struct mt7621_nfc *nfc, u32 reg, u16 val) | |
211 | +{ | |
212 | + writew(val, nfc->ecc_regs + reg); | |
213 | +} | |
214 | + | |
215 | +static inline u32 ecc_read32(struct mt7621_nfc *nfc, u32 reg) | |
216 | +{ | |
217 | + return readl(nfc->ecc_regs + reg); | |
218 | +} | |
219 | + | |
220 | +static inline void ecc_write32(struct mt7621_nfc *nfc, u32 reg, u32 val) | |
221 | +{ | |
222 | + return writel(val, nfc->ecc_regs + reg); | |
223 | +} | |
224 | + | |
225 | +static inline u8 *oob_fdm_ptr(struct nand_chip *nand, int sect) | |
226 | +{ | |
227 | + return nand->oob_poi + sect * NFI_FDM_SIZE; | |
228 | +} | |
229 | + | |
230 | +static inline u8 *oob_ecc_ptr(struct mt7621_nfc *nfc, int sect) | |
231 | +{ | |
232 | + struct nand_chip *nand = &nfc->nand; | |
233 | + | |
234 | + return nand->oob_poi + nand->ecc.steps * NFI_FDM_SIZE + | |
235 | + sect * (nfc->spare_per_sector - NFI_FDM_SIZE); | |
236 | +} | |
237 | + | |
238 | +static inline u8 *page_data_ptr(struct nand_chip *nand, const u8 *buf, | |
239 | + int sect) | |
240 | +{ | |
241 | + return (u8 *)buf + sect * nand->ecc.size; | |
242 | +} | |
243 | + | |
244 | +static int mt7621_ecc_wait_idle(struct mt7621_nfc *nfc, u32 reg) | |
245 | +{ | |
246 | + u32 val; | |
247 | + int ret; | |
248 | + | |
249 | + ret = readw_poll_timeout(nfc->ecc_regs + reg, val, val & ECC_IDLE, | |
250 | + ECC_ENGINE_TIMEOUT); | |
251 | + if (ret) { | |
252 | + pr_warn("ECC engine timed out entering idle mode\n"); | |
253 | + return -EIO; | |
254 | + } | |
255 | + | |
256 | + return 0; | |
257 | +} | |
258 | + | |
259 | +static int mt7621_ecc_decoder_wait_done(struct mt7621_nfc *nfc, u32 sect) | |
260 | +{ | |
261 | + u32 val; | |
262 | + int ret; | |
263 | + | |
264 | + ret = readw_poll_timeout(nfc->ecc_regs + ECC_DECDONE, val, | |
265 | + val & (1 << sect), ECC_ENGINE_TIMEOUT); | |
266 | + if (ret) { | |
267 | + pr_warn("ECC decoder for sector %d timed out\n", sect); | |
268 | + return -ETIMEDOUT; | |
269 | + } | |
270 | + | |
271 | + return 0; | |
272 | +} | |
273 | + | |
274 | +static void mt7621_ecc_encoder_op(struct mt7621_nfc *nfc, bool enable) | |
275 | +{ | |
276 | + mt7621_ecc_wait_idle(nfc, ECC_ENCIDLE); | |
277 | + ecc_write16(nfc, ECC_ENCCON, enable ? ENC_EN : 0); | |
278 | +} | |
279 | + | |
280 | +static void mt7621_ecc_decoder_op(struct mt7621_nfc *nfc, bool enable) | |
281 | +{ | |
282 | + mt7621_ecc_wait_idle(nfc, ECC_DECIDLE); | |
283 | + ecc_write16(nfc, ECC_DECCON, enable ? DEC_EN : 0); | |
284 | +} | |
285 | + | |
286 | +static int mt7621_ecc_correct_check(struct mt7621_nfc *nfc, u8 *sector_buf, | |
287 | + u8 *fdm_buf, u32 sect) | |
288 | +{ | |
289 | + struct nand_chip *nand = &nfc->nand; | |
290 | + u32 decnum, num_error_bits, fdm_end_bits; | |
291 | + u32 error_locations, error_bit_loc; | |
292 | + u32 error_byte_pos, error_bit_pos; | |
293 | + int bitflips = 0; | |
294 | + u32 i; | |
295 | + | |
296 | + decnum = ecc_read32(nfc, ECC_DECENUM); | |
297 | + num_error_bits = (decnum >> (sect << ERRNUM_S)) & ERRNUM_M; | |
298 | + fdm_end_bits = (nand->ecc.size + NFI_FDM_SIZE) << 3; | |
299 | + | |
300 | + if (!num_error_bits) | |
301 | + return 0; | |
302 | + | |
303 | + if (num_error_bits == ERRNUM_M) | |
304 | + return -1; | |
305 | + | |
306 | + for (i = 0; i < num_error_bits; i++) { | |
307 | + error_locations = ecc_read32(nfc, ECC_DECEL(i / 2)); | |
308 | + error_bit_loc = (error_locations >> ((i % 2) * DEC_EL_ODD_S)) & | |
309 | + DEC_EL_M; | |
310 | + error_byte_pos = error_bit_loc >> DEC_EL_BYTE_POS_S; | |
311 | + error_bit_pos = error_bit_loc & DEC_EL_BIT_POS_M; | |
312 | + | |
313 | + if (error_bit_loc < (nand->ecc.size << 3)) { | |
314 | + if (sector_buf) { | |
315 | + sector_buf[error_byte_pos] ^= | |
316 | + (1 << error_bit_pos); | |
317 | + } | |
318 | + } else if (error_bit_loc < fdm_end_bits) { | |
319 | + if (fdm_buf) { | |
320 | + fdm_buf[error_byte_pos - nand->ecc.size] ^= | |
321 | + (1 << error_bit_pos); | |
322 | + } | |
323 | + } | |
324 | + | |
325 | + bitflips++; | |
326 | + } | |
327 | + | |
328 | + return bitflips; | |
329 | +} | |
330 | + | |
331 | +static int mt7621_nfc_wait_write_completion(struct mt7621_nfc *nfc, | |
332 | + struct nand_chip *nand) | |
333 | +{ | |
334 | + u16 val; | |
335 | + int ret; | |
336 | + | |
337 | + ret = readw_poll_timeout(nfc->nfi_regs + NFI_ADDRCNTR, val, | |
338 | + FIELD_GET(SEC_CNTR, val) >= nand->ecc.steps, | |
339 | + NFI_CORE_TIMEOUT); | |
340 | + | |
341 | + if (ret) { | |
342 | + pr_warn("NFI core write operation timed out\n"); | |
343 | + return -ETIMEDOUT; | |
344 | + } | |
345 | + | |
346 | + return ret; | |
347 | +} | |
348 | + | |
349 | +static void mt7621_nfc_hw_reset(struct mt7621_nfc *nfc) | |
350 | +{ | |
351 | + u32 val; | |
352 | + int ret; | |
353 | + | |
354 | + /* reset all registers and force the NFI master to terminate */ | |
355 | + nfi_write16(nfc, NFI_CON, CON_FIFO_FLUSH | CON_NFI_RST); | |
356 | + | |
357 | + /* wait for the master to finish the last transaction */ | |
358 | + ret = readw_poll_timeout(nfc->nfi_regs + NFI_MASTER_STA, val, | |
359 | + !(val & MASTER_STA_MASK), NFI_RESET_TIMEOUT); | |
360 | + if (ret) { | |
361 | + pr_warn("Failed to reset NFI master in %dms\n", | |
362 | + NFI_RESET_TIMEOUT); | |
363 | + } | |
364 | + | |
365 | + /* ensure any status register affected by the NFI master is reset */ | |
366 | + nfi_write16(nfc, NFI_CON, CON_FIFO_FLUSH | CON_NFI_RST); | |
367 | + nfi_write16(nfc, NFI_STRDATA, 0); | |
368 | +} | |
369 | + | |
370 | +static inline void mt7621_nfc_hw_init(struct mt7621_nfc *nfc) | |
371 | +{ | |
372 | + u32 acccon; | |
373 | + | |
374 | + /* | |
375 | + * CNRNB: nand ready/busy register | |
376 | + * ------------------------------- | |
377 | + * 7:4: timeout register for polling the NAND busy/ready signal | |
378 | + * 0 : poll the status of the busy/ready signal after [7:4]*16 cycles. | |
379 | + */ | |
380 | + nfi_write16(nfc, NFI_CNRNB, CB2R_TIME | STR_CNRNB); | |
381 | + | |
382 | + mt7621_nfc_hw_reset(nfc); | |
383 | + | |
384 | + /* Apply default access timing */ | |
385 | + acccon = ACCTIMING(ACCCON_POECS_DEF, ACCCON_PRECS_DEF, ACCCON_C2R_DEF, | |
386 | + ACCCON_W2R_DEF, ACCCON_WH_DEF, ACCCON_WST_DEF, | |
387 | + ACCCON_RLT_DEF); | |
388 | + | |
389 | + nfi_write32(nfc, NFI_ACCCON, acccon); | |
390 | +} | |
391 | + | |
392 | +static int mt7621_nfc_send_command(struct mt7621_nfc *nfc, u8 command) | |
393 | +{ | |
394 | + u32 val; | |
395 | + int ret; | |
396 | + | |
397 | + nfi_write32(nfc, NFI_CMD, command); | |
398 | + | |
399 | + ret = readl_poll_timeout(nfc->nfi_regs + NFI_STA, val, !(val & STA_CMD), | |
400 | + NFI_CORE_TIMEOUT); | |
401 | + if (ret) { | |
402 | + pr_warn("NFI core timed out entering command mode\n"); | |
403 | + return -EIO; | |
404 | + } | |
405 | + | |
406 | + return 0; | |
407 | +} | |
408 | + | |
409 | +static int mt7621_nfc_send_address_byte(struct mt7621_nfc *nfc, int addr) | |
410 | +{ | |
411 | + u32 val; | |
412 | + int ret; | |
413 | + | |
414 | + nfi_write32(nfc, NFI_COLADDR, addr); | |
415 | + nfi_write32(nfc, NFI_ROWADDR, 0); | |
416 | + nfi_write16(nfc, NFI_ADDRNOB, 1); | |
417 | + | |
418 | + ret = readl_poll_timeout(nfc->nfi_regs + NFI_STA, val, | |
419 | + !(val & STA_ADDR), NFI_CORE_TIMEOUT); | |
420 | + if (ret) { | |
421 | + pr_warn("NFI core timed out entering address mode\n"); | |
422 | + return -EIO; | |
423 | + } | |
424 | + | |
425 | + return 0; | |
426 | +} | |
427 | + | |
428 | +static void mt7621_nfc_cmd_ctrl(struct mtd_info *mtd, int dat, | |
429 | + unsigned int ctrl) | |
430 | +{ | |
431 | + struct mt7621_nfc *nfc = nand_get_controller_data(mtd_to_nand(mtd)); | |
432 | + | |
433 | + if (ctrl & NAND_ALE) { | |
434 | + mt7621_nfc_send_address_byte(nfc, dat & 0xff); | |
435 | + } else if (ctrl & NAND_CLE) { | |
436 | + mt7621_nfc_hw_reset(nfc); | |
437 | + nfi_write16(nfc, NFI_CNFG, | |
438 | + FIELD_PREP(CNFG_OP_MODE, CNFG_OP_CUSTOM)); | |
439 | + mt7621_nfc_send_command(nfc, dat); | |
440 | + } | |
441 | +} | |
442 | + | |
443 | +static int mt7621_nfc_dev_ready(struct mtd_info *mtd) | |
444 | +{ | |
445 | + struct mt7621_nfc *nfc = nand_get_controller_data(mtd_to_nand(mtd)); | |
446 | + | |
447 | + if (nfi_read32(nfc, NFI_STA) & STA_BUSY) | |
448 | + return 0; | |
449 | + | |
450 | + return 1; | |
451 | +} | |
452 | + | |
453 | +static void mt7621_nfc_select_chip(struct mtd_info *mtd, int chipnr) | |
454 | +{ | |
455 | + struct mt7621_nfc *nfc = nand_get_controller_data(mtd_to_nand(mtd)); | |
456 | + | |
457 | + nfi_write16(nfc, NFI_CSEL, 0); | |
458 | +} | |
459 | + | |
460 | +static void mt7621_nfc_wait_pio_ready(struct mt7621_nfc *nfc) | |
461 | +{ | |
462 | + int ret; | |
463 | + u16 val; | |
464 | + | |
465 | + ret = readw_poll_timeout(nfc->nfi_regs + NFI_PIO_DIRDY, val, | |
466 | + val & PIO_DIRDY, NFI_CORE_TIMEOUT); | |
467 | + if (ret < 0) | |
468 | + pr_err("NFI core PIO mode not ready\n"); | |
469 | +} | |
470 | + | |
471 | +static u32 mt7621_nfc_pio_read(struct mt7621_nfc *nfc, bool br) | |
472 | +{ | |
473 | + u32 reg, fsm; | |
474 | + | |
475 | + /* after each byte read, the NFI_STA reg is reset by the hardware */ | |
476 | + reg = nfi_read32(nfc, NFI_STA); | |
477 | + fsm = FIELD_GET(STA_NFI_FSM, reg); | |
478 | + | |
479 | + if (fsm != STA_FSM_CUSTOM_DATA) { | |
480 | + reg = nfi_read16(nfc, NFI_CNFG); | |
481 | + reg |= CNFG_READ_MODE | CNFG_BYTE_RW; | |
482 | + if (!br) | |
483 | + reg &= ~CNFG_BYTE_RW; | |
484 | + nfi_write16(nfc, NFI_CNFG, reg); | |
485 | + | |
486 | + /* | |
487 | + * set to max sector to allow the HW to continue reading over | |
488 | + * unaligned accesses | |
489 | + */ | |
490 | + nfi_write16(nfc, NFI_CON, CON_NFI_SEC | CON_NFI_BRD); | |
491 | + | |
492 | + /* trigger to fetch data */ | |
493 | + nfi_write16(nfc, NFI_STRDATA, STR_DATA); | |
494 | + } | |
495 | + | |
496 | + mt7621_nfc_wait_pio_ready(nfc); | |
497 | + | |
498 | + return nfi_read32(nfc, NFI_DATAR); | |
499 | +} | |
500 | + | |
501 | +static void mt7621_nfc_read_data(struct mt7621_nfc *nfc, u8 *buf, u32 len) | |
502 | +{ | |
503 | + while (((uintptr_t)buf & 3) && len) { | |
504 | + *buf = mt7621_nfc_pio_read(nfc, true); | |
505 | + buf++; | |
506 | + len--; | |
507 | + } | |
508 | + | |
509 | + while (len >= 4) { | |
510 | + *(u32 *)buf = mt7621_nfc_pio_read(nfc, false); | |
511 | + buf += 4; | |
512 | + len -= 4; | |
513 | + } | |
514 | + | |
515 | + while (len) { | |
516 | + *buf = mt7621_nfc_pio_read(nfc, true); | |
517 | + buf++; | |
518 | + len--; | |
519 | + } | |
520 | +} | |
521 | + | |
522 | +static void mt7621_nfc_read_data_discard(struct mt7621_nfc *nfc, u32 len) | |
523 | +{ | |
524 | + while (len >= 4) { | |
525 | + mt7621_nfc_pio_read(nfc, false); | |
526 | + len -= 4; | |
527 | + } | |
528 | + | |
529 | + while (len) { | |
530 | + mt7621_nfc_pio_read(nfc, true); | |
531 | + len--; | |
532 | + } | |
533 | +} | |
534 | + | |
535 | +static void mt7621_nfc_pio_write(struct mt7621_nfc *nfc, u32 val, bool bw) | |
536 | +{ | |
537 | + u32 reg, fsm; | |
538 | + | |
539 | + reg = nfi_read32(nfc, NFI_STA); | |
540 | + fsm = FIELD_GET(STA_NFI_FSM, reg); | |
541 | + | |
542 | + if (fsm != STA_FSM_CUSTOM_DATA) { | |
543 | + reg = nfi_read16(nfc, NFI_CNFG); | |
544 | + reg &= ~(CNFG_READ_MODE | CNFG_BYTE_RW); | |
545 | + if (bw) | |
546 | + reg |= CNFG_BYTE_RW; | |
547 | + nfi_write16(nfc, NFI_CNFG, reg); | |
548 | + | |
549 | + nfi_write16(nfc, NFI_CON, CON_NFI_SEC | CON_NFI_BWR); | |
550 | + nfi_write16(nfc, NFI_STRDATA, STR_DATA); | |
551 | + } | |
552 | + | |
553 | + mt7621_nfc_wait_pio_ready(nfc); | |
554 | + nfi_write32(nfc, NFI_DATAW, val); | |
555 | +} | |
556 | + | |
557 | +static void mt7621_nfc_write_data(struct mt7621_nfc *nfc, const u8 *buf, | |
558 | + u32 len) | |
559 | +{ | |
560 | + while (((uintptr_t)buf & 3) && len) { | |
561 | + mt7621_nfc_pio_write(nfc, *buf, true); | |
562 | + buf++; | |
563 | + len--; | |
564 | + } | |
565 | + | |
566 | + while (len >= 4) { | |
567 | + mt7621_nfc_pio_write(nfc, *(const u32 *)buf, false); | |
568 | + buf += 4; | |
569 | + len -= 4; | |
570 | + } | |
571 | + | |
572 | + while (len) { | |
573 | + mt7621_nfc_pio_write(nfc, *buf, true); | |
574 | + buf++; | |
575 | + len--; | |
576 | + } | |
577 | +} | |
578 | + | |
579 | +static void mt7621_nfc_write_data_empty(struct mt7621_nfc *nfc, u32 len) | |
580 | +{ | |
581 | + while (len >= 4) { | |
582 | + mt7621_nfc_pio_write(nfc, 0xffffffff, false); | |
583 | + len -= 4; | |
584 | + } | |
585 | + | |
586 | + while (len) { | |
587 | + mt7621_nfc_pio_write(nfc, 0xff, true); | |
588 | + len--; | |
589 | + } | |
590 | +} | |
591 | + | |
592 | +static void mt7621_nfc_write_byte(struct mtd_info *mtd, u8 byte) | |
593 | +{ | |
594 | + struct mt7621_nfc *nfc = nand_get_controller_data(mtd_to_nand(mtd)); | |
595 | + | |
596 | + mt7621_nfc_pio_write(nfc, byte, true); | |
597 | +} | |
598 | + | |
599 | +static void mt7621_nfc_write_buf(struct mtd_info *mtd, const u8 *buf, int len) | |
600 | +{ | |
601 | + struct mt7621_nfc *nfc = nand_get_controller_data(mtd_to_nand(mtd)); | |
602 | + | |
603 | + return mt7621_nfc_write_data(nfc, buf, len); | |
604 | +} | |
605 | + | |
606 | +static u8 mt7621_nfc_read_byte(struct mtd_info *mtd) | |
607 | +{ | |
608 | + struct mt7621_nfc *nfc = nand_get_controller_data(mtd_to_nand(mtd)); | |
609 | + | |
610 | + return mt7621_nfc_pio_read(nfc, true); | |
611 | +} | |
612 | + | |
613 | +static void mt7621_nfc_read_buf(struct mtd_info *mtd, u8 *buf, int len) | |
614 | +{ | |
615 | + struct mt7621_nfc *nfc = nand_get_controller_data(mtd_to_nand(mtd)); | |
616 | + | |
617 | + mt7621_nfc_read_data(nfc, buf, len); | |
618 | +} | |
619 | + | |
620 | +static int mt7621_nfc_calc_ecc_strength(struct mt7621_nfc *nfc, | |
621 | + u32 avail_ecc_bytes) | |
622 | +{ | |
623 | + struct nand_chip *nand = &nfc->nand; | |
624 | + struct mtd_info *mtd = nand_to_mtd(nand); | |
625 | + u32 strength; | |
626 | + int i; | |
627 | + | |
628 | + strength = avail_ecc_bytes * 8 / ECC_PARITY_BITS; | |
629 | + | |
630 | + /* Find the closest supported ecc strength */ | |
631 | + for (i = ARRAY_SIZE(mt7621_ecc_strength) - 1; i >= 0; i--) { | |
632 | + if (mt7621_ecc_strength[i] <= strength) | |
633 | + break; | |
634 | + } | |
635 | + | |
636 | + if (unlikely(i < 0)) { | |
637 | + pr_err("OOB size (%u) is not supported\n", mtd->oobsize); | |
638 | + return -EINVAL; | |
639 | + } | |
640 | + | |
641 | + nand->ecc.strength = mt7621_ecc_strength[i]; | |
642 | + nand->ecc.bytes = DIV_ROUND_UP(nand->ecc.strength * ECC_PARITY_BITS, 8); | |
643 | + | |
644 | + pr_debug("ECC strength adjusted to %u bits\n", nand->ecc.strength); | |
645 | + | |
646 | + return i; | |
647 | +} | |
648 | + | |
649 | +static int mt7621_nfc_set_spare_per_sector(struct mt7621_nfc *nfc) | |
650 | +{ | |
651 | + struct nand_chip *nand = &nfc->nand; | |
652 | + struct mtd_info *mtd = nand_to_mtd(nand); | |
653 | + u32 size; | |
654 | + int i; | |
655 | + | |
656 | + size = nand->ecc.bytes + NFI_FDM_SIZE; | |
657 | + | |
658 | + /* Find the closest supported spare size */ | |
659 | + for (i = 0; i < ARRAY_SIZE(mt7621_nfi_spare_size); i++) { | |
660 | + if (mt7621_nfi_spare_size[i] >= size) | |
661 | + break; | |
662 | + } | |
663 | + | |
664 | + if (unlikely(i >= ARRAY_SIZE(mt7621_nfi_spare_size))) { | |
665 | + pr_err("OOB size (%u) is not supported\n", mtd->oobsize); | |
666 | + return -EINVAL; | |
667 | + } | |
668 | + | |
669 | + nfc->spare_per_sector = mt7621_nfi_spare_size[i]; | |
670 | + | |
671 | + return i; | |
672 | +} | |
673 | + | |
674 | +static int mt7621_nfc_ecc_init(struct mt7621_nfc *nfc) | |
675 | +{ | |
676 | + struct nand_chip *nand = &nfc->nand; | |
677 | + struct mtd_info *mtd = nand_to_mtd(nand); | |
678 | + u32 avail_ecc_bytes, encode_block_size, decode_block_size; | |
679 | + u32 ecc_enccfg, ecc_deccfg; | |
680 | + int ecc_cap; | |
681 | + | |
682 | + nand->ecc.options |= NAND_ECC_CUSTOM_PAGE_ACCESS; | |
683 | + | |
684 | + nand->ecc.size = ECC_SECTOR_SIZE; | |
685 | + nand->ecc.steps = mtd->writesize / nand->ecc.size; | |
686 | + | |
687 | + avail_ecc_bytes = mtd->oobsize / nand->ecc.steps - NFI_FDM_SIZE; | |
688 | + | |
689 | + ecc_cap = mt7621_nfc_calc_ecc_strength(nfc, avail_ecc_bytes); | |
690 | + if (ecc_cap < 0) | |
691 | + return ecc_cap; | |
692 | + | |
693 | + /* Sector + FDM */ | |
694 | + encode_block_size = (nand->ecc.size + NFI_FDM_SIZE) * 8; | |
695 | + ecc_enccfg = ecc_cap | FIELD_PREP(ENC_MODE, ENC_MODE_NFI) | | |
696 | + FIELD_PREP(ENC_CNFG_MSG, encode_block_size); | |
697 | + | |
698 | + /* Sector + FDM + ECC parity bits */ | |
699 | + decode_block_size = ((nand->ecc.size + NFI_FDM_SIZE) * 8) + | |
700 | + nand->ecc.strength * ECC_PARITY_BITS; | |
701 | + ecc_deccfg = ecc_cap | FIELD_PREP(DEC_MODE, DEC_MODE_NFI) | | |
702 | + FIELD_PREP(DEC_CS, decode_block_size) | | |
703 | + FIELD_PREP(DEC_CON, DEC_CON_EL) | DEC_EMPTY_EN; | |
704 | + | |
705 | + mt7621_ecc_encoder_op(nfc, false); | |
706 | + ecc_write32(nfc, ECC_ENCCNFG, ecc_enccfg); | |
707 | + | |
708 | + mt7621_ecc_decoder_op(nfc, false); | |
709 | + ecc_write32(nfc, ECC_DECCNFG, ecc_deccfg); | |
710 | + | |
711 | + return 0; | |
712 | +} | |
713 | + | |
714 | +static int mt7621_nfc_set_page_format(struct mt7621_nfc *nfc) | |
715 | +{ | |
716 | + struct nand_chip *nand = &nfc->nand; | |
717 | + struct mtd_info *mtd = nand_to_mtd(nand); | |
718 | + int i, spare_size; | |
719 | + u32 pagefmt; | |
720 | + | |
721 | + spare_size = mt7621_nfc_set_spare_per_sector(nfc); | |
722 | + if (spare_size < 0) | |
723 | + return spare_size; | |
724 | + | |
725 | + for (i = 0; i < ARRAY_SIZE(mt7621_nfi_page_size); i++) { | |
726 | + if (mt7621_nfi_page_size[i] == mtd->writesize) | |
727 | + break; | |
728 | + } | |
729 | + | |
730 | + if (unlikely(i >= ARRAY_SIZE(mt7621_nfi_page_size))) { | |
731 | + pr_err("Page size (%u) is not supported\n", mtd->writesize); | |
732 | + return -EINVAL; | |
733 | + } | |
734 | + | |
735 | + pagefmt = FIELD_PREP(PAGEFMT_PAGE, i) | | |
736 | + FIELD_PREP(PAGEFMT_SPARE, spare_size) | | |
737 | + FIELD_PREP(PAGEFMT_FDM, NFI_FDM_SIZE) | | |
738 | + FIELD_PREP(PAGEFMT_FDM_ECC, NFI_FDM_SIZE); | |
739 | + | |
740 | + nfi_write16(nfc, NFI_PAGEFMT, pagefmt); | |
741 | + | |
742 | + return 0; | |
743 | +} | |
744 | + | |
745 | +static int mt7621_nfc_attach_chip(struct nand_chip *nand) | |
746 | +{ | |
747 | + struct mt7621_nfc *nfc = nand_get_controller_data(nand); | |
748 | + int ret; | |
749 | + | |
750 | + if (nand->options & NAND_BUSWIDTH_16) { | |
751 | + pr_err("16-bit buswidth is not supported"); | |
752 | + return -EINVAL; | |
753 | + } | |
754 | + | |
755 | + ret = mt7621_nfc_ecc_init(nfc); | |
756 | + if (ret) | |
757 | + return ret; | |
758 | + | |
759 | + return mt7621_nfc_set_page_format(nfc); | |
760 | +} | |
761 | + | |
762 | +static void mt7621_nfc_write_fdm(struct mt7621_nfc *nfc) | |
763 | +{ | |
764 | + struct nand_chip *nand = &nfc->nand; | |
765 | + u32 vall, valm; | |
766 | + u8 *oobptr; | |
767 | + int i, j; | |
768 | + | |
769 | + for (i = 0; i < nand->ecc.steps; i++) { | |
770 | + vall = 0; | |
771 | + valm = 0; | |
772 | + oobptr = oob_fdm_ptr(nand, i); | |
773 | + | |
774 | + for (j = 0; j < 4; j++) | |
775 | + vall |= (u32)oobptr[j] << (j * 8); | |
776 | + | |
777 | + for (j = 0; j < 4; j++) | |
778 | + valm |= (u32)oobptr[j + 4] << (j * 8); | |
779 | + | |
780 | + nfi_write32(nfc, NFI_FDML(i), vall); | |
781 | + nfi_write32(nfc, NFI_FDMM(i), valm); | |
782 | + } | |
783 | +} | |
784 | + | |
785 | +static void mt7621_nfc_read_sector_fdm(struct mt7621_nfc *nfc, u32 sect) | |
786 | +{ | |
787 | + struct nand_chip *nand = &nfc->nand; | |
788 | + u32 vall, valm; | |
789 | + u8 *oobptr; | |
790 | + int i; | |
791 | + | |
792 | + vall = nfi_read32(nfc, NFI_FDML(sect)); | |
793 | + valm = nfi_read32(nfc, NFI_FDMM(sect)); | |
794 | + oobptr = oob_fdm_ptr(nand, sect); | |
795 | + | |
796 | + for (i = 0; i < 4; i++) | |
797 | + oobptr[i] = (vall >> (i * 8)) & 0xff; | |
798 | + | |
799 | + for (i = 0; i < 4; i++) | |
800 | + oobptr[i + 4] = (valm >> (i * 8)) & 0xff; | |
801 | +} | |
802 | + | |
803 | +static int mt7621_nfc_read_page_hwecc(struct mtd_info *mtd, | |
804 | + struct nand_chip *nand, uint8_t *buf, | |
805 | + int oob_required, int page) | |
806 | +{ | |
807 | + struct mt7621_nfc *nfc = nand_get_controller_data(nand); | |
808 | + int bitflips = 0, ret = 0; | |
809 | + int rc, i; | |
810 | + | |
811 | + nand_read_page_op(nand, page, 0, NULL, 0); | |
812 | + | |
813 | + nfi_write16(nfc, NFI_CNFG, FIELD_PREP(CNFG_OP_MODE, CNFG_OP_CUSTOM) | | |
814 | + CNFG_READ_MODE | CNFG_AUTO_FMT_EN | CNFG_HW_ECC_EN); | |
815 | + | |
816 | + mt7621_ecc_decoder_op(nfc, true); | |
817 | + | |
818 | + nfi_write16(nfc, NFI_CON, FIELD_PREP(CON_NFI_SEC, nand->ecc.steps) | | |
819 | + CON_NFI_BRD); | |
820 | + | |
821 | + for (i = 0; i < nand->ecc.steps; i++) { | |
822 | + if (buf) | |
823 | + mt7621_nfc_read_data(nfc, page_data_ptr(nand, buf, i), | |
824 | + nand->ecc.size); | |
825 | + else | |
826 | + mt7621_nfc_read_data_discard(nfc, nand->ecc.size); | |
827 | + | |
828 | + rc = mt7621_ecc_decoder_wait_done(nfc, i); | |
829 | + | |
830 | + mt7621_nfc_read_sector_fdm(nfc, i); | |
831 | + | |
832 | + if (rc < 0) { | |
833 | + ret = -EIO; | |
834 | + continue; | |
835 | + } | |
836 | + | |
837 | + rc = mt7621_ecc_correct_check(nfc, | |
838 | + buf ? page_data_ptr(nand, buf, i) : NULL, | |
839 | + oob_fdm_ptr(nand, i), i); | |
840 | + | |
841 | + if (rc < 0) { | |
842 | + pr_warn("Uncorrectable ECC error at page %d step %d\n", | |
843 | + page, i); | |
844 | + bitflips = nand->ecc.strength + 1; | |
845 | + mtd->ecc_stats.failed++; | |
846 | + } else { | |
847 | + if (rc > bitflips) | |
848 | + bitflips = rc; | |
849 | + mtd->ecc_stats.corrected += rc; | |
850 | + } | |
851 | + } | |
852 | + | |
853 | + mt7621_ecc_decoder_op(nfc, false); | |
854 | + | |
855 | + nfi_write16(nfc, NFI_CON, 0); | |
856 | + | |
857 | + if (ret < 0) | |
858 | + return ret; | |
859 | + | |
860 | + return bitflips; | |
861 | +} | |
862 | + | |
863 | +static int mt7621_nfc_read_page_raw(struct mtd_info *mtd, | |
864 | + struct nand_chip *nand, uint8_t *buf, | |
865 | + int oob_required, int page) | |
866 | +{ | |
867 | + struct mt7621_nfc *nfc = nand_get_controller_data(nand); | |
868 | + int i; | |
869 | + | |
870 | + nand_read_page_op(nand, page, 0, NULL, 0); | |
871 | + | |
872 | + nfi_write16(nfc, NFI_CNFG, FIELD_PREP(CNFG_OP_MODE, CNFG_OP_CUSTOM) | | |
873 | + CNFG_READ_MODE); | |
874 | + | |
875 | + nfi_write16(nfc, NFI_CON, FIELD_PREP(CON_NFI_SEC, nand->ecc.steps) | | |
876 | + CON_NFI_BRD); | |
877 | + | |
878 | + for (i = 0; i < nand->ecc.steps; i++) { | |
879 | + /* Read data */ | |
880 | + if (buf) | |
881 | + mt7621_nfc_read_data(nfc, page_data_ptr(nand, buf, i), | |
882 | + nand->ecc.size); | |
883 | + else | |
884 | + mt7621_nfc_read_data_discard(nfc, nand->ecc.size); | |
885 | + | |
886 | + /* Read FDM */ | |
887 | + mt7621_nfc_read_data(nfc, oob_fdm_ptr(nand, i), NFI_FDM_SIZE); | |
888 | + | |
889 | + /* Read ECC parity data */ | |
890 | + mt7621_nfc_read_data(nfc, oob_ecc_ptr(nfc, i), | |
891 | + nfc->spare_per_sector - NFI_FDM_SIZE); | |
892 | + } | |
893 | + | |
894 | + nfi_write16(nfc, NFI_CON, 0); | |
895 | + | |
896 | + return 0; | |
897 | +} | |
898 | + | |
899 | +static int mt7621_nfc_read_oob_hwecc(struct mtd_info *mtd, | |
900 | + struct nand_chip *nand, int page) | |
901 | +{ | |
902 | + return mt7621_nfc_read_page_hwecc(mtd, nand, NULL, 1, page); | |
903 | +} | |
904 | + | |
905 | +static int mt7621_nfc_read_oob_raw(struct mtd_info *mtd, | |
906 | + struct nand_chip *nand, int page) | |
907 | +{ | |
908 | + return mt7621_nfc_read_page_raw(mtd, nand, NULL, 1, page); | |
909 | +} | |
910 | + | |
911 | +static int mt7621_nfc_check_empty_page(struct nand_chip *nand, const u8 *buf) | |
912 | +{ | |
913 | + struct mtd_info *mtd = nand_to_mtd(nand); | |
914 | + u8 *oobptr; | |
915 | + u32 i, j; | |
916 | + | |
917 | + if (buf) { | |
918 | + for (i = 0; i < mtd->writesize; i++) | |
919 | + if (buf[i] != 0xff) | |
920 | + return 0; | |
921 | + } | |
922 | + | |
923 | + for (i = 0; i < nand->ecc.steps; i++) { | |
924 | + oobptr = oob_fdm_ptr(nand, i); | |
925 | + for (j = 0; j < NFI_FDM_SIZE; j++) | |
926 | + if (oobptr[j] != 0xff) | |
927 | + return 0; | |
928 | + } | |
929 | + | |
930 | + return 1; | |
931 | +} | |
932 | + | |
933 | +static int mt7621_nfc_write_page_hwecc(struct mtd_info *mtd, | |
934 | + struct nand_chip *nand, | |
935 | + const u8 *buf, int oob_required, | |
936 | + int page) | |
937 | +{ | |
938 | + struct mt7621_nfc *nfc = nand_get_controller_data(nand); | |
939 | + | |
940 | + if (mt7621_nfc_check_empty_page(nand, buf)) { | |
941 | + /* | |
942 | + * MT7621 ECC engine always generates parity code for input | |
943 | + * pages, even for empty pages. Doing so will write back ECC | |
944 | + * parity code to the oob region, which means such pages will | |
945 | + * no longer be empty pages. | |
946 | + * | |
947 | + * To avoid this, stop write operation if current page is an | |
948 | + * empty page. | |
949 | + */ | |
950 | + return 0; | |
951 | + } | |
952 | + | |
953 | + nand_prog_page_begin_op(nand, page, 0, NULL, 0); | |
954 | + | |
955 | + nfi_write16(nfc, NFI_CNFG, FIELD_PREP(CNFG_OP_MODE, CNFG_OP_CUSTOM) | | |
956 | + CNFG_AUTO_FMT_EN | CNFG_HW_ECC_EN); | |
957 | + | |
958 | + mt7621_ecc_encoder_op(nfc, true); | |
959 | + | |
960 | + mt7621_nfc_write_fdm(nfc); | |
961 | + | |
962 | + nfi_write16(nfc, NFI_CON, FIELD_PREP(CON_NFI_SEC, nand->ecc.steps) | | |
963 | + CON_NFI_BWR); | |
964 | + | |
965 | + if (buf) | |
966 | + mt7621_nfc_write_data(nfc, buf, mtd->writesize); | |
967 | + else | |
968 | + mt7621_nfc_write_data_empty(nfc, mtd->writesize); | |
969 | + | |
970 | + mt7621_nfc_wait_write_completion(nfc, nand); | |
971 | + | |
972 | + mt7621_ecc_encoder_op(nfc, false); | |
973 | + | |
974 | + nfi_write16(nfc, NFI_CON, 0); | |
975 | + | |
976 | + return nand_prog_page_end_op(nand); | |
977 | +} | |
978 | + | |
979 | +static int mt7621_nfc_write_page_raw(struct mtd_info *mtd, | |
980 | + struct nand_chip *nand, | |
981 | + const u8 *buf, int oob_required, | |
982 | + int page) | |
983 | +{ | |
984 | + struct mt7621_nfc *nfc = nand_get_controller_data(nand); | |
985 | + int i; | |
986 | + | |
987 | + nand_prog_page_begin_op(nand, page, 0, NULL, 0); | |
988 | + | |
989 | + nfi_write16(nfc, NFI_CNFG, FIELD_PREP(CNFG_OP_MODE, CNFG_OP_CUSTOM)); | |
990 | + | |
991 | + nfi_write16(nfc, NFI_CON, FIELD_PREP(CON_NFI_SEC, nand->ecc.steps) | | |
992 | + CON_NFI_BWR); | |
993 | + | |
994 | + for (i = 0; i < nand->ecc.steps; i++) { | |
995 | + /* Write data */ | |
996 | + if (buf) | |
997 | + mt7621_nfc_write_data(nfc, page_data_ptr(nand, buf, i), | |
998 | + nand->ecc.size); | |
999 | + else | |
1000 | + mt7621_nfc_write_data_empty(nfc, nand->ecc.size); | |
1001 | + | |
1002 | + /* Write FDM */ | |
1003 | + mt7621_nfc_write_data(nfc, oob_fdm_ptr(nand, i), | |
1004 | + NFI_FDM_SIZE); | |
1005 | + | |
1006 | + /* Write dummy ECC parity data */ | |
1007 | + mt7621_nfc_write_data_empty(nfc, nfc->spare_per_sector - | |
1008 | + NFI_FDM_SIZE); | |
1009 | + } | |
1010 | + | |
1011 | + mt7621_nfc_wait_write_completion(nfc, nand); | |
1012 | + | |
1013 | + nfi_write16(nfc, NFI_CON, 0); | |
1014 | + | |
1015 | + return nand_prog_page_end_op(nand); | |
1016 | +} | |
1017 | + | |
1018 | +static int mt7621_nfc_write_oob_hwecc(struct mtd_info *mtd, | |
1019 | + struct nand_chip *nand, int page) | |
1020 | +{ | |
1021 | + return mt7621_nfc_write_page_hwecc(mtd, nand, NULL, 1, page); | |
1022 | +} | |
1023 | + | |
1024 | +static int mt7621_nfc_write_oob_raw(struct mtd_info *mtd, | |
1025 | + struct nand_chip *nand, int page) | |
1026 | +{ | |
1027 | + return mt7621_nfc_write_page_raw(mtd, nand, NULL, 1, page); | |
1028 | +} | |
1029 | + | |
1030 | +static int mt7621_nfc_ooblayout_free(struct mtd_info *mtd, int section, | |
1031 | + struct mtd_oob_region *oob_region) | |
1032 | +{ | |
1033 | + struct nand_chip *nand = mtd_to_nand(mtd); | |
1034 | + | |
1035 | + if (section >= nand->ecc.steps) | |
1036 | + return -ERANGE; | |
1037 | + | |
1038 | + oob_region->length = NFI_FDM_SIZE - 1; | |
1039 | + oob_region->offset = section * NFI_FDM_SIZE + 1; | |
1040 | + | |
1041 | + return 0; | |
1042 | +} | |
1043 | + | |
1044 | +static int mt7621_nfc_ooblayout_ecc(struct mtd_info *mtd, int section, | |
1045 | + struct mtd_oob_region *oob_region) | |
1046 | +{ | |
1047 | + struct nand_chip *nand = mtd_to_nand(mtd); | |
1048 | + | |
1049 | + if (section) | |
1050 | + return -ERANGE; | |
1051 | + | |
1052 | + oob_region->offset = NFI_FDM_SIZE * nand->ecc.steps; | |
1053 | + oob_region->length = mtd->oobsize - oob_region->offset; | |
1054 | + | |
1055 | + return 0; | |
1056 | +} | |
1057 | + | |
1058 | +static const struct mtd_ooblayout_ops mt7621_nfc_ooblayout_ops = { | |
1059 | + .rfree = mt7621_nfc_ooblayout_free, | |
1060 | + .ecc = mt7621_nfc_ooblayout_ecc, | |
1061 | +}; | |
1062 | + | |
1063 | +/* | |
1064 | + * This function will override the default one which is not supposed to be | |
1065 | + * used for ECC syndrome based pages. | |
1066 | + */ | |
1067 | +static int mt7621_nfc_block_bad(struct mtd_info *mtd, loff_t ofs) | |
1068 | +{ | |
1069 | + struct nand_chip *nand = mtd_to_nand(mtd); | |
1070 | + struct mtd_oob_ops ops; | |
1071 | + int ret, i = 0; | |
1072 | + u16 bad; | |
1073 | + | |
1074 | + memset(&ops, 0, sizeof(ops)); | |
1075 | + ops.oobbuf = (uint8_t *)&bad; | |
1076 | + ops.ooboffs = nand->badblockpos; | |
1077 | + if (nand->options & NAND_BUSWIDTH_16) { | |
1078 | + ops.ooboffs &= ~0x01; | |
1079 | + ops.ooblen = 2; | |
1080 | + } else { | |
1081 | + ops.ooblen = 1; | |
1082 | + } | |
1083 | + ops.mode = MTD_OPS_RAW; | |
1084 | + | |
1085 | + /* Read from first/last page(s) if necessary */ | |
1086 | + if (nand->bbt_options & NAND_BBT_SCANLASTPAGE) | |
1087 | + ofs += mtd->erasesize - mtd->writesize; | |
1088 | + | |
1089 | + do { | |
1090 | + ret = mtd_read_oob(mtd, ofs, &ops); | |
1091 | + if (ret) | |
1092 | + return ret; | |
1093 | + | |
1094 | + if (likely(nand->badblockbits == 8)) | |
1095 | + ret = bad != 0xFF; | |
1096 | + else | |
1097 | + ret = hweight8(bad) < nand->badblockbits; | |
1098 | + | |
1099 | + i++; | |
1100 | + ofs += mtd->writesize; | |
1101 | + } while (!ret && (nand->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2); | |
1102 | + | |
1103 | + return ret; | |
1104 | +} | |
1105 | + | |
1106 | +static void mt7621_nfc_init_chip(struct mt7621_nfc *nfc) | |
1107 | +{ | |
1108 | + struct nand_chip *nand = &nfc->nand; | |
1109 | + struct mtd_info *mtd; | |
1110 | + int ret; | |
1111 | + | |
1112 | + nand_set_controller_data(nand, nfc); | |
1113 | + | |
1114 | + nand->options |= NAND_NO_SUBPAGE_WRITE; | |
1115 | + | |
1116 | + nand->ecc.mode = NAND_ECC_HW_SYNDROME; | |
1117 | + nand->ecc.read_page = mt7621_nfc_read_page_hwecc; | |
1118 | + nand->ecc.read_page_raw = mt7621_nfc_read_page_raw; | |
1119 | + nand->ecc.write_page = mt7621_nfc_write_page_hwecc; | |
1120 | + nand->ecc.write_page_raw = mt7621_nfc_write_page_raw; | |
1121 | + nand->ecc.read_oob = mt7621_nfc_read_oob_hwecc; | |
1122 | + nand->ecc.read_oob_raw = mt7621_nfc_read_oob_raw; | |
1123 | + nand->ecc.write_oob = mt7621_nfc_write_oob_hwecc; | |
1124 | + nand->ecc.write_oob_raw = mt7621_nfc_write_oob_raw; | |
1125 | + | |
1126 | + nand->dev_ready = mt7621_nfc_dev_ready; | |
1127 | + nand->select_chip = mt7621_nfc_select_chip; | |
1128 | + nand->write_byte = mt7621_nfc_write_byte; | |
1129 | + nand->write_buf = mt7621_nfc_write_buf; | |
1130 | + nand->read_byte = mt7621_nfc_read_byte; | |
1131 | + nand->read_buf = mt7621_nfc_read_buf; | |
1132 | + nand->cmd_ctrl = mt7621_nfc_cmd_ctrl; | |
1133 | + nand->block_bad = mt7621_nfc_block_bad; | |
1134 | + | |
1135 | + mtd = nand_to_mtd(nand); | |
1136 | + mtd_set_ooblayout(mtd, &mt7621_nfc_ooblayout_ops); | |
1137 | + | |
1138 | + /* Reset NFI master */ | |
1139 | + mt7621_nfc_hw_init(nfc); | |
1140 | + | |
1141 | + ret = nand_scan_ident(mtd, 1, NULL); | |
1142 | + if (ret) | |
1143 | + return; | |
1144 | + | |
1145 | + mt7621_nfc_attach_chip(nand); | |
1146 | + | |
1147 | + ret = nand_scan_tail(mtd); | |
1148 | + if (ret) | |
1149 | + return; | |
1150 | + | |
1151 | + nand_register(0, mtd); | |
1152 | +} | |
1153 | + | |
1154 | +static void mt7621_nfc_set_regs(struct mt7621_nfc *nfc) | |
1155 | +{ | |
1156 | + nfc->nfi_regs = (void __iomem *)CKSEG1ADDR(NFI_BASE); | |
1157 | + nfc->ecc_regs = (void __iomem *)CKSEG1ADDR(NFI_ECC_BASE); | |
1158 | +} | |
1159 | + | |
1160 | +void mt7621_nfc_spl_init(struct mt7621_nfc *nfc) | |
1161 | +{ | |
1162 | + struct nand_chip *nand = &nfc->nand; | |
1163 | + | |
1164 | + mt7621_nfc_set_regs(nfc); | |
1165 | + | |
1166 | + nand_set_controller_data(nand, nfc); | |
1167 | + | |
1168 | + nand->options |= NAND_NO_SUBPAGE_WRITE; | |
1169 | + | |
1170 | + nand->ecc.mode = NAND_ECC_HW_SYNDROME; | |
1171 | + nand->ecc.read_page = mt7621_nfc_read_page_hwecc; | |
1172 | + | |
1173 | + nand->dev_ready = mt7621_nfc_dev_ready; | |
1174 | + nand->select_chip = mt7621_nfc_select_chip; | |
1175 | + nand->read_byte = mt7621_nfc_read_byte; | |
1176 | + nand->read_buf = mt7621_nfc_read_buf; | |
1177 | + nand->cmd_ctrl = mt7621_nfc_cmd_ctrl; | |
1178 | + | |
1179 | + /* Reset NFI master */ | |
1180 | + mt7621_nfc_hw_init(nfc); | |
1181 | +} | |
1182 | + | |
1183 | +int mt7621_nfc_spl_post_init(struct mt7621_nfc *nfc) | |
1184 | +{ | |
1185 | + struct nand_chip *nand = &nfc->nand; | |
1186 | + int nand_maf_id, nand_dev_id; | |
1187 | + struct nand_flash_dev *type; | |
1188 | + | |
1189 | + type = nand_get_flash_type(&nand->mtd, nand, &nand_maf_id, | |
1190 | + &nand_dev_id, NULL); | |
1191 | + | |
1192 | + if (IS_ERR(type)) | |
1193 | + return PTR_ERR(type); | |
1194 | + | |
1195 | + nand->numchips = 1; | |
1196 | + nand->mtd.size = nand->chipsize; | |
1197 | + | |
1198 | + return mt7621_nfc_attach_chip(nand); | |
1199 | +} | |
1200 | + | |
1201 | +void board_nand_init(void) | |
1202 | +{ | |
1203 | + mt7621_nfc_set_regs(&nfc_dev); | |
1204 | + mt7621_nfc_init_chip(&nfc_dev); | |
1205 | +} |
@@ -0,0 +1,29 @@ | ||
1 | +/* SPDX-License-Identifier: GPL-2.0 */ | |
2 | +/* | |
3 | + * Copyright (C) 2022 MediaTek Inc. All rights reserved. | |
4 | + * | |
5 | + * Author: Weijie Gao <weijie.gao@mediatek.com> | |
6 | + */ | |
7 | + | |
8 | +#ifndef _MT7621_NAND_H_ | |
9 | +#define _MT7621_NAND_H_ | |
10 | + | |
11 | +#include <linux/types.h> | |
12 | +#include <linux/mtd/mtd.h> | |
13 | +#include <linux/compiler.h> | |
14 | +#include <linux/mtd/rawnand.h> | |
15 | + | |
16 | +struct mt7621_nfc { | |
17 | + struct nand_chip nand; | |
18 | + | |
19 | + void __iomem *nfi_regs; | |
20 | + void __iomem *ecc_regs; | |
21 | + | |
22 | + u32 spare_per_sector; | |
23 | +}; | |
24 | + | |
25 | +/* for SPL */ | |
26 | +void mt7621_nfc_spl_init(struct mt7621_nfc *nfc); | |
27 | +int mt7621_nfc_spl_post_init(struct mt7621_nfc *nfc); | |
28 | + | |
29 | +#endif /* _MT7621_NAND_H_ */ |
@@ -0,0 +1,237 @@ | ||
1 | +// SPDX-License-Identifier: GPL-2.0 | |
2 | +/* | |
3 | + * Copyright (C) 2022 MediaTek Inc. All rights reserved. | |
4 | + * | |
5 | + * Author: Weijie Gao <weijie.gao@mediatek.com> | |
6 | + */ | |
7 | + | |
8 | +#include <image.h> | |
9 | +#include <malloc.h> | |
10 | +#include <linux/sizes.h> | |
11 | +#include <linux/delay.h> | |
12 | +#include <linux/mtd/rawnand.h> | |
13 | +#include "mt7621_nand.h" | |
14 | + | |
15 | +static struct mt7621_nfc nfc_dev; | |
16 | +static u8 *buffer; | |
17 | +static int nand_valid; | |
18 | + | |
19 | +static void nand_command_lp(struct mtd_info *mtd, unsigned int command, | |
20 | + int column, int page_addr) | |
21 | +{ | |
22 | + register struct nand_chip *chip = mtd_to_nand(mtd); | |
23 | + | |
24 | + /* Command latch cycle */ | |
25 | + chip->cmd_ctrl(mtd, command, NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE); | |
26 | + | |
27 | + if (column != -1 || page_addr != -1) { | |
28 | + int ctrl = NAND_CTRL_CHANGE | NAND_NCE | NAND_ALE; | |
29 | + | |
30 | + /* Serially input address */ | |
31 | + if (column != -1) { | |
32 | + chip->cmd_ctrl(mtd, column, ctrl); | |
33 | + ctrl &= ~NAND_CTRL_CHANGE; | |
34 | + if (command != NAND_CMD_READID) | |
35 | + chip->cmd_ctrl(mtd, column >> 8, ctrl); | |
36 | + } | |
37 | + if (page_addr != -1) { | |
38 | + chip->cmd_ctrl(mtd, page_addr, ctrl); | |
39 | + chip->cmd_ctrl(mtd, page_addr >> 8, | |
40 | + NAND_NCE | NAND_ALE); | |
41 | + if (chip->options & NAND_ROW_ADDR_3) | |
42 | + chip->cmd_ctrl(mtd, page_addr >> 16, | |
43 | + NAND_NCE | NAND_ALE); | |
44 | + } | |
45 | + } | |
46 | + chip->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE); | |
47 | + | |
48 | + /* | |
49 | + * Program and erase have their own busy handlers status, sequential | |
50 | + * in and status need no delay. | |
51 | + */ | |
52 | + switch (command) { | |
53 | + case NAND_CMD_STATUS: | |
54 | + case NAND_CMD_READID: | |
55 | + case NAND_CMD_SET_FEATURES: | |
56 | + return; | |
57 | + | |
58 | + case NAND_CMD_READ0: | |
59 | + chip->cmd_ctrl(mtd, NAND_CMD_READSTART, | |
60 | + NAND_NCE | NAND_CLE | NAND_CTRL_CHANGE); | |
61 | + chip->cmd_ctrl(mtd, NAND_CMD_NONE, | |
62 | + NAND_NCE | NAND_CTRL_CHANGE); | |
63 | + } | |
64 | + | |
65 | + /* | |
66 | + * Apply this short delay always to ensure that we do wait tWB in | |
67 | + * any case on any machine. | |
68 | + */ | |
69 | + ndelay(100); | |
70 | + | |
71 | + nand_wait_ready(mtd); | |
72 | +} | |
73 | + | |
74 | +static int nfc_read_page_hwecc(struct mtd_info *mtd, void *buf, | |
75 | + unsigned int page) | |
76 | +{ | |
77 | + struct nand_chip *chip = mtd_to_nand(mtd); | |
78 | + int ret; | |
79 | + | |
80 | + chip->cmdfunc(mtd, NAND_CMD_READ0, 0x0, page); | |
81 | + | |
82 | + ret = chip->ecc.read_page(mtd, chip, buf, 1, page); | |
83 | + if (ret < 0 || ret > chip->ecc.strength) | |
84 | + return -1; | |
85 | + | |
86 | + return 0; | |
87 | +} | |
88 | + | |
89 | +static int nfc_read_oob_hwecc(struct mtd_info *mtd, void *buf, u32 len, | |
90 | + unsigned int page) | |
91 | +{ | |
92 | + struct nand_chip *chip = mtd_to_nand(mtd); | |
93 | + int ret; | |
94 | + | |
95 | + chip->cmdfunc(mtd, NAND_CMD_READ0, 0x0, page); | |
96 | + | |
97 | + ret = chip->ecc.read_page(mtd, chip, NULL, 1, page); | |
98 | + if (ret < 0) | |
99 | + return -1; | |
100 | + | |
101 | + if (len > mtd->oobsize) | |
102 | + len = mtd->oobsize; | |
103 | + | |
104 | + memcpy(buf, chip->oob_poi, len); | |
105 | + | |
106 | + return 0; | |
107 | +} | |
108 | + | |
109 | +static int nfc_check_bad_block(struct mtd_info *mtd, unsigned int page) | |
110 | +{ | |
111 | + struct nand_chip *chip = mtd_to_nand(mtd); | |
112 | + u32 pages_per_block, i = 0; | |
113 | + int ret; | |
114 | + u8 bad; | |
115 | + | |
116 | + pages_per_block = 1 << (mtd->erasesize_shift - mtd->writesize_shift); | |
117 | + | |
118 | + /* Read from first/last page(s) if necessary */ | |
119 | + if (chip->bbt_options & NAND_BBT_SCANLASTPAGE) { | |
120 | + page += pages_per_block - 1; | |
121 | + if (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) | |
122 | + page--; | |
123 | + } | |
124 | + | |
125 | + do { | |
126 | + ret = nfc_read_oob_hwecc(mtd, &bad, 1, page); | |
127 | + if (ret) | |
128 | + return ret; | |
129 | + | |
130 | + ret = bad != 0xFF; | |
131 | + | |
132 | + i++; | |
133 | + page++; | |
134 | + } while (!ret && (chip->bbt_options & NAND_BBT_SCAN2NDPAGE) && i < 2); | |
135 | + | |
136 | + return ret; | |
137 | +} | |
138 | + | |
139 | +int nand_spl_load_image(uint32_t offs, unsigned int size, void *dest) | |
140 | +{ | |
141 | + struct mt7621_nfc *nfc = &nfc_dev; | |
142 | + struct nand_chip *chip = &nfc->nand; | |
143 | + struct mtd_info *mtd = &chip->mtd; | |
144 | + u32 addr, col, page, chksz; | |
145 | + bool check_bad = true; | |
146 | + | |
147 | + if (!nand_valid) | |
148 | + return -ENODEV; | |
149 | + | |
150 | + while (size) { | |
151 | + if (check_bad || !(offs & mtd->erasesize_mask)) { | |
152 | + addr = offs & (~mtd->erasesize_mask); | |
153 | + page = addr >> mtd->writesize_shift; | |
154 | + if (nfc_check_bad_block(mtd, page)) { | |
155 | + /* Skip bad block */ | |
156 | + if (addr >= mtd->size - mtd->erasesize) | |
157 | + return -1; | |
158 | + | |
159 | + offs += mtd->erasesize; | |
160 | + continue; | |
161 | + } | |
162 | + | |
163 | + check_bad = false; | |
164 | + } | |
165 | + | |
166 | + col = offs & mtd->writesize_mask; | |
167 | + page = offs >> mtd->writesize_shift; | |
168 | + chksz = min(mtd->writesize - col, (uint32_t)size); | |
169 | + | |
170 | + if (unlikely(chksz < mtd->writesize)) { | |
171 | + /* Not reading a full page */ | |
172 | + if (nfc_read_page_hwecc(mtd, buffer, page)) | |
173 | + return -1; | |
174 | + | |
175 | + memcpy(dest, buffer + col, chksz); | |
176 | + } else { | |
177 | + if (nfc_read_page_hwecc(mtd, dest, page)) | |
178 | + return -1; | |
179 | + } | |
180 | + | |
181 | + dest += chksz; | |
182 | + offs += chksz; | |
183 | + size -= chksz; | |
184 | + } | |
185 | + | |
186 | + return 0; | |
187 | +} | |
188 | + | |
189 | +int nand_default_bbt(struct mtd_info *mtd) | |
190 | +{ | |
191 | + return 0; | |
192 | +} | |
193 | + | |
194 | +unsigned long nand_size(void) | |
195 | +{ | |
196 | + if (!nand_valid) | |
197 | + return 0; | |
198 | + | |
199 | + /* Unlikely that NAND size > 2GBytes */ | |
200 | + if (nfc_dev.nand.chipsize <= SZ_2G) | |
201 | + return nfc_dev.nand.chipsize; | |
202 | + | |
203 | + return SZ_2G; | |
204 | +} | |
205 | + | |
206 | +void nand_deselect(void) | |
207 | +{ | |
208 | +} | |
209 | + | |
210 | +void nand_init(void) | |
211 | +{ | |
212 | + struct mtd_info *mtd; | |
213 | + struct nand_chip *chip; | |
214 | + | |
215 | + if (nand_valid) | |
216 | + return; | |
217 | + | |
218 | + mt7621_nfc_spl_init(&nfc_dev); | |
219 | + | |
220 | + chip = &nfc_dev.nand; | |
221 | + mtd = &chip->mtd; | |
222 | + chip->cmdfunc = nand_command_lp; | |
223 | + | |
224 | + if (mt7621_nfc_spl_post_init(&nfc_dev)) | |
225 | + return; | |
226 | + | |
227 | + mtd->erasesize_shift = ffs(mtd->erasesize) - 1; | |
228 | + mtd->writesize_shift = ffs(mtd->writesize) - 1; | |
229 | + mtd->erasesize_mask = (1 << mtd->erasesize_shift) - 1; | |
230 | + mtd->writesize_mask = (1 << mtd->writesize_shift) - 1; | |
231 | + | |
232 | + buffer = malloc(mtd->writesize); | |
233 | + if (!buffer) | |
234 | + return; | |
235 | + | |
236 | + nand_valid = 1; | |
237 | +} |