blob: 6cde9814c4f9b246c5d3a987ffd7363c0706c086 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +02002/*
3 * Copyright (c) 2014-2015, Antmicro Ltd <www.antmicro.com>
4 * Copyright (c) 2015, AW-SOM Technologies <www.aw-som.com>
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +02005 */
6
Hans de Goede466a3182015-08-15 11:59:25 +02007#include <asm/arch/clock.h>
8#include <asm/io.h>
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +02009#include <common.h>
10#include <config.h>
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020011#include <nand.h>
Miquel Raynal8eef8f32018-02-28 20:51:55 +010012#include <linux/ctype.h>
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020013
14/* registers */
15#define NFC_CTL 0x00000000
16#define NFC_ST 0x00000004
17#define NFC_INT 0x00000008
18#define NFC_TIMING_CTL 0x0000000C
19#define NFC_TIMING_CFG 0x00000010
20#define NFC_ADDR_LOW 0x00000014
21#define NFC_ADDR_HIGH 0x00000018
22#define NFC_SECTOR_NUM 0x0000001C
23#define NFC_CNT 0x00000020
24#define NFC_CMD 0x00000024
25#define NFC_RCMD_SET 0x00000028
26#define NFC_WCMD_SET 0x0000002C
27#define NFC_IO_DATA 0x00000030
28#define NFC_ECC_CTL 0x00000034
29#define NFC_ECC_ST 0x00000038
30#define NFC_DEBUG 0x0000003C
31#define NFC_ECC_CNT0 0x00000040
32#define NFC_ECC_CNT1 0x00000044
33#define NFC_ECC_CNT2 0x00000048
34#define NFC_ECC_CNT3 0x0000004C
35#define NFC_USER_DATA_BASE 0x00000050
36#define NFC_EFNAND_STATUS 0x00000090
37#define NFC_SPARE_AREA 0x000000A0
38#define NFC_PATTERN_ID 0x000000A4
39#define NFC_RAM0_BASE 0x00000400
40#define NFC_RAM1_BASE 0x00000800
41
42#define NFC_CTL_EN (1 << 0)
43#define NFC_CTL_RESET (1 << 1)
44#define NFC_CTL_RAM_METHOD (1 << 14)
Hans de Goedef8511202015-08-15 20:05:13 +020045#define NFC_CTL_PAGE_SIZE_MASK (0xf << 8)
46#define NFC_CTL_PAGE_SIZE(a) ((fls(a) - 11) << 8)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020047
48
49#define NFC_ECC_EN (1 << 0)
50#define NFC_ECC_PIPELINE (1 << 3)
51#define NFC_ECC_EXCEPTION (1 << 4)
52#define NFC_ECC_BLOCK_SIZE (1 << 5)
53#define NFC_ECC_RANDOM_EN (1 << 9)
54#define NFC_ECC_RANDOM_DIRECTION (1 << 10)
55
56
57#define NFC_ADDR_NUM_OFFSET 16
Miquel Raynala450de72018-02-28 20:51:46 +010058#define NFC_SEND_ADDR (1 << 19)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020059#define NFC_ACCESS_DIR (1 << 20)
60#define NFC_DATA_TRANS (1 << 21)
61#define NFC_SEND_CMD1 (1 << 22)
62#define NFC_WAIT_FLAG (1 << 23)
63#define NFC_SEND_CMD2 (1 << 24)
64#define NFC_SEQ (1 << 25)
65#define NFC_DATA_SWAP_METHOD (1 << 26)
66#define NFC_ROW_AUTO_INC (1 << 27)
67#define NFC_SEND_CMD3 (1 << 28)
68#define NFC_SEND_CMD4 (1 << 29)
Boris Brezillon87cc16c2016-06-06 10:17:01 +020069#define NFC_RAW_CMD (0 << 30)
Miquel Raynal8eef8f32018-02-28 20:51:55 +010070#define NFC_ECC_CMD (1 << 30)
Boris Brezillon87cc16c2016-06-06 10:17:01 +020071#define NFC_PAGE_CMD (2 << 30)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020072
Boris Brezillon353f3d02015-08-29 12:29:38 +020073#define NFC_ST_CMD_INT_FLAG (1 << 1)
74#define NFC_ST_DMA_INT_FLAG (1 << 2)
Miquel Raynal8eef8f32018-02-28 20:51:55 +010075#define NFC_ST_CMD_FIFO_STAT (1 << 3)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020076
77#define NFC_READ_CMD_OFFSET 0
78#define NFC_RANDOM_READ_CMD0_OFFSET 8
79#define NFC_RANDOM_READ_CMD1_OFFSET 16
80
81#define NFC_CMD_RNDOUTSTART 0xE0
82#define NFC_CMD_RNDOUT 0x05
83#define NFC_CMD_READSTART 0x30
84
Boris Brezillon87cc16c2016-06-06 10:17:01 +020085struct nfc_config {
86 int page_size;
87 int ecc_strength;
88 int ecc_size;
89 int addr_cycles;
90 int nseeds;
91 bool randomize;
Boris Brezillon601361f2016-06-06 10:17:02 +020092 bool valid;
Boris Brezillon87cc16c2016-06-06 10:17:01 +020093};
94
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020095/* minimal "boot0" style NAND support for Allwinner A20 */
96
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +020097/* random seed used by linux */
98const uint16_t random_seed[128] = {
99 0x2b75, 0x0bd0, 0x5ca3, 0x62d1, 0x1c93, 0x07e9, 0x2162, 0x3a72,
100 0x0d67, 0x67f9, 0x1be7, 0x077d, 0x032f, 0x0dac, 0x2716, 0x2436,
101 0x7922, 0x1510, 0x3860, 0x5287, 0x480f, 0x4252, 0x1789, 0x5a2d,
102 0x2a49, 0x5e10, 0x437f, 0x4b4e, 0x2f45, 0x216e, 0x5cb7, 0x7130,
103 0x2a3f, 0x60e4, 0x4dc9, 0x0ef0, 0x0f52, 0x1bb9, 0x6211, 0x7a56,
104 0x226d, 0x4ea7, 0x6f36, 0x3692, 0x38bf, 0x0c62, 0x05eb, 0x4c55,
105 0x60f4, 0x728c, 0x3b6f, 0x2037, 0x7f69, 0x0936, 0x651a, 0x4ceb,
106 0x6218, 0x79f3, 0x383f, 0x18d9, 0x4f05, 0x5c82, 0x2912, 0x6f17,
107 0x6856, 0x5938, 0x1007, 0x61ab, 0x3e7f, 0x57c2, 0x542f, 0x4f62,
108 0x7454, 0x2eac, 0x7739, 0x42d4, 0x2f90, 0x435a, 0x2e52, 0x2064,
109 0x637c, 0x66ad, 0x2c90, 0x0bad, 0x759c, 0x0029, 0x0986, 0x7126,
110 0x1ca7, 0x1605, 0x386a, 0x27f5, 0x1380, 0x6d75, 0x24c3, 0x0f8e,
111 0x2b7a, 0x1418, 0x1fd1, 0x7dc1, 0x2d8e, 0x43af, 0x2267, 0x7da3,
112 0x4e3d, 0x1338, 0x50db, 0x454d, 0x764d, 0x40a3, 0x42e6, 0x262b,
113 0x2d2e, 0x1aea, 0x2e17, 0x173d, 0x3a6e, 0x71bf, 0x25f9, 0x0a5d,
114 0x7c57, 0x0fbe, 0x46ce, 0x4939, 0x6b17, 0x37bb, 0x3e91, 0x76db,
115};
116
Boris Brezillondbd87102016-06-06 10:17:00 +0200117#define DEFAULT_TIMEOUT_US 100000
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200118
119static int check_value_inner(int offset, int expected_bits,
Boris Brezillondbd87102016-06-06 10:17:00 +0200120 int timeout_us, int negation)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200121{
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200122 do {
123 int val = readl(offset) & expected_bits;
124 if (negation ? !val : val)
125 return 1;
Boris Brezillondbd87102016-06-06 10:17:00 +0200126 udelay(1);
127 } while (--timeout_us);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200128
129 return 0;
130}
131
132static inline int check_value(int offset, int expected_bits,
Boris Brezillondbd87102016-06-06 10:17:00 +0200133 int timeout_us)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200134{
Boris Brezillondbd87102016-06-06 10:17:00 +0200135 return check_value_inner(offset, expected_bits, timeout_us, 0);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200136}
137
138static inline int check_value_negated(int offset, int unexpected_bits,
Boris Brezillondbd87102016-06-06 10:17:00 +0200139 int timeout_us)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200140{
Boris Brezillondbd87102016-06-06 10:17:00 +0200141 return check_value_inner(offset, unexpected_bits, timeout_us, 1);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200142}
143
Miquel Raynalb242ee92018-02-28 20:51:48 +0100144static int nand_wait_cmd_fifo_empty(void)
145{
146 if (!check_value_negated(SUNXI_NFC_BASE + NFC_ST, NFC_ST_CMD_FIFO_STAT,
147 DEFAULT_TIMEOUT_US)) {
148 printf("nand: timeout waiting for empty cmd FIFO\n");
149 return -ETIMEDOUT;
150 }
151
152 return 0;
153}
154
Miquel Raynalb0b98ca2018-02-28 20:51:47 +0100155static int nand_wait_int(void)
156{
157 if (!check_value(SUNXI_NFC_BASE + NFC_ST, NFC_ST_CMD_INT_FLAG,
158 DEFAULT_TIMEOUT_US)) {
159 printf("nand: timeout waiting for interruption\n");
160 return -ETIMEDOUT;
161 }
162
163 return 0;
164}
165
Miquel Raynal6852f482018-02-28 20:51:50 +0100166static int nand_exec_cmd(u32 cmd)
167{
168 int ret;
169
170 ret = nand_wait_cmd_fifo_empty();
171 if (ret)
172 return ret;
173
174 writel(NFC_ST_CMD_INT_FLAG, SUNXI_NFC_BASE + NFC_ST);
175 writel(cmd, SUNXI_NFC_BASE + NFC_CMD);
176
177 return nand_wait_int();
178}
179
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200180void nand_init(void)
181{
182 uint32_t val;
183
Hans de Goede5ed52f62015-08-15 11:55:26 +0200184 board_nand_init();
185
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200186 val = readl(SUNXI_NFC_BASE + NFC_CTL);
187 /* enable and reset CTL */
188 writel(val | NFC_CTL_EN | NFC_CTL_RESET,
189 SUNXI_NFC_BASE + NFC_CTL);
190
191 if (!check_value_negated(SUNXI_NFC_BASE + NFC_CTL,
Boris Brezillondbd87102016-06-06 10:17:00 +0200192 NFC_CTL_RESET, DEFAULT_TIMEOUT_US)) {
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200193 printf("Couldn't initialize nand\n");
194 }
Hans de Goede7c7fbfb2015-08-15 11:38:33 +0200195
196 /* reset NAND */
Miquel Raynal6852f482018-02-28 20:51:50 +0100197 nand_exec_cmd(NFC_SEND_CMD1 | NFC_WAIT_FLAG | NAND_CMD_RESET);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200198}
199
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200200static void nand_apply_config(const struct nfc_config *conf)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200201{
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200202 u32 val;
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200203
Miquel Raynalb242ee92018-02-28 20:51:48 +0100204 nand_wait_cmd_fifo_empty();
205
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200206 val = readl(SUNXI_NFC_BASE + NFC_CTL);
207 val &= ~NFC_CTL_PAGE_SIZE_MASK;
208 writel(val | NFC_CTL_RAM_METHOD | NFC_CTL_PAGE_SIZE(conf->page_size),
209 SUNXI_NFC_BASE + NFC_CTL);
210 writel(conf->ecc_size, SUNXI_NFC_BASE + NFC_CNT);
211 writel(conf->page_size, SUNXI_NFC_BASE + NFC_SPARE_AREA);
212}
213
214static int nand_load_page(const struct nfc_config *conf, u32 offs)
215{
216 int page = offs / conf->page_size;
217
218 writel((NFC_CMD_RNDOUTSTART << NFC_RANDOM_READ_CMD1_OFFSET) |
219 (NFC_CMD_RNDOUT << NFC_RANDOM_READ_CMD0_OFFSET) |
220 (NFC_CMD_READSTART << NFC_READ_CMD_OFFSET),
221 SUNXI_NFC_BASE + NFC_RCMD_SET);
222 writel(((page & 0xFFFF) << 16), SUNXI_NFC_BASE + NFC_ADDR_LOW);
223 writel((page >> 16) & 0xFF, SUNXI_NFC_BASE + NFC_ADDR_HIGH);
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200224
Miquel Raynal6852f482018-02-28 20:51:50 +0100225 return nand_exec_cmd(NFC_SEND_CMD1 | NFC_SEND_CMD2 | NFC_RAW_CMD |
226 NFC_SEND_ADDR | NFC_WAIT_FLAG |
227 ((conf->addr_cycles - 1) << NFC_ADDR_NUM_OFFSET));
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200228}
229
Miquel Raynal4f800042018-02-28 20:51:52 +0100230static int nand_change_column(u16 column)
Boris Brezillon601361f2016-06-06 10:17:02 +0200231{
Miquel Raynal010ea022018-02-28 20:51:51 +0100232 int ret;
233
Boris Brezillon601361f2016-06-06 10:17:02 +0200234 writel((NFC_CMD_RNDOUTSTART << NFC_RANDOM_READ_CMD1_OFFSET) |
235 (NFC_CMD_RNDOUT << NFC_RANDOM_READ_CMD0_OFFSET) |
236 (NFC_CMD_RNDOUTSTART << NFC_READ_CMD_OFFSET),
237 SUNXI_NFC_BASE + NFC_RCMD_SET);
Miquel Raynal4f800042018-02-28 20:51:52 +0100238 writel(column, SUNXI_NFC_BASE + NFC_ADDR_LOW);
Boris Brezillon601361f2016-06-06 10:17:02 +0200239
Miquel Raynal010ea022018-02-28 20:51:51 +0100240 ret = nand_exec_cmd(NFC_SEND_CMD1 | NFC_SEND_CMD2 | NFC_RAW_CMD |
241 (1 << NFC_ADDR_NUM_OFFSET) | NFC_SEND_ADDR |
242 NFC_CMD_RNDOUT);
243 if (ret)
244 return ret;
245
246 /* Ensure tCCS has passed before reading data */
247 udelay(1);
248
249 return 0;
Boris Brezillon601361f2016-06-06 10:17:02 +0200250}
251
Miquel Raynal298e7a62018-02-28 20:51:54 +0100252static const int ecc_bytes[] = {32, 46, 54, 60, 74, 88, 102, 110, 116};
253
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200254static int nand_read_page(const struct nfc_config *conf, u32 offs,
255 void *dest, int len)
256{
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200257 int nsectors = len / conf->ecc_size;
Maxime Ripardcccddf52017-02-27 18:22:00 +0100258 u16 rand_seed = 0;
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100259 int oob_chunk_sz = ecc_bytes[conf->ecc_strength];
260 int page = offs / conf->page_size;
261 u32 ecc_st;
262 int i;
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200263
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200264 if (offs % conf->page_size || len % conf->ecc_size ||
265 len > conf->page_size || len < 0)
266 return -EINVAL;
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200267
Maxime Ripardcccddf52017-02-27 18:22:00 +0100268 /* Choose correct seed if randomized */
269 if (conf->randomize)
270 rand_seed = random_seed[page % conf->nseeds];
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200271
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100272 /* Retrieve data from SRAM (PIO) */
273 for (i = 0; i < nsectors; i++) {
274 int data_off = i * conf->ecc_size;
275 int oob_off = conf->page_size + (i * oob_chunk_sz);
276 u8 *data = dest + data_off;
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200277
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100278 /* Clear ECC status and restart ECC engine */
279 writel(0, SUNXI_NFC_BASE + NFC_ECC_ST);
280 writel((rand_seed << 16) | (conf->ecc_strength << 12) |
281 (conf->randomize ? NFC_ECC_RANDOM_EN : 0) |
282 (conf->ecc_size == 512 ? NFC_ECC_BLOCK_SIZE : 0) |
283 NFC_ECC_EN | NFC_ECC_EXCEPTION,
284 SUNXI_NFC_BASE + NFC_ECC_CTL);
Hans de Goede4de74a42015-08-15 12:32:24 +0200285
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100286 /* Move the data in SRAM */
287 nand_change_column(data_off);
288 writel(conf->ecc_size, SUNXI_NFC_BASE + NFC_CNT);
289 nand_exec_cmd(NFC_DATA_TRANS);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200290
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100291 /*
292 * Let the ECC engine consume the ECC bytes and possibly correct
293 * the data.
294 */
295 nand_change_column(oob_off);
296 nand_exec_cmd(NFC_DATA_TRANS | NFC_ECC_CMD);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200297
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100298 /* Get the ECC status */
299 ecc_st = readl(SUNXI_NFC_BASE + NFC_ECC_ST);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200300
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100301 /* ECC error detected. */
302 if (ecc_st & 0xffff)
303 return -EIO;
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200304
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100305 /*
306 * Return 1 if the first chunk is empty (needed for
307 * configuration detection).
308 */
309 if (!i && (ecc_st & 0x10000))
310 return 1;
Hans de Goede4de74a42015-08-15 12:32:24 +0200311
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100312 /* Retrieve the data from SRAM */
313 memcpy_fromio(data, SUNXI_NFC_BASE + NFC_RAM0_BASE,
314 conf->ecc_size);
Hans de Goedea44f40e2015-08-15 20:51:53 +0200315
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100316 /* Stop the ECC engine */
317 writel(readl(SUNXI_NFC_BASE + NFC_ECC_CTL) & ~NFC_ECC_EN,
318 SUNXI_NFC_BASE + NFC_ECC_CTL);
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200319
Miquel Raynal8eef8f32018-02-28 20:51:55 +0100320 if (data_off + conf->ecc_size >= len)
321 break;
322 }
323
324 return 0;
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200325}
326
Boris Brezillon601361f2016-06-06 10:17:02 +0200327static int nand_max_ecc_strength(struct nfc_config *conf)
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200328{
Boris Brezillon601361f2016-06-06 10:17:02 +0200329 int max_oobsize, max_ecc_bytes;
330 int nsectors = conf->page_size / conf->ecc_size;
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200331 int i;
332
Boris Brezillon601361f2016-06-06 10:17:02 +0200333 /*
334 * ECC strength is limited by the size of the OOB area which is
335 * correlated with the page size.
336 */
337 switch (conf->page_size) {
338 case 2048:
339 max_oobsize = 64;
340 break;
341 case 4096:
342 max_oobsize = 256;
343 break;
344 case 8192:
345 max_oobsize = 640;
346 break;
347 case 16384:
348 max_oobsize = 1664;
349 break;
350 default:
351 return -EINVAL;
352 }
353
354 max_ecc_bytes = max_oobsize / nsectors;
355
356 for (i = 0; i < ARRAY_SIZE(ecc_bytes); i++) {
357 if (ecc_bytes[i] > max_ecc_bytes)
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200358 break;
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200359 }
360
Boris Brezillon601361f2016-06-06 10:17:02 +0200361 if (!i)
362 return -EINVAL;
Boris Brezillon87cc16c2016-06-06 10:17:01 +0200363
Boris Brezillon601361f2016-06-06 10:17:02 +0200364 return i - 1;
365}
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200366
Boris Brezillon601361f2016-06-06 10:17:02 +0200367static int nand_detect_ecc_config(struct nfc_config *conf, u32 offs,
368 void *dest)
369{
370 /* NAND with pages > 4k will likely require 1k sector size. */
371 int min_ecc_size = conf->page_size > 4096 ? 1024 : 512;
372 int page = offs / conf->page_size;
373 int ret;
Hans de Goedef8511202015-08-15 20:05:13 +0200374
Boris Brezillon601361f2016-06-06 10:17:02 +0200375 /*
376 * In most cases, 1k sectors are preferred over 512b ones, start
377 * testing this config first.
378 */
379 for (conf->ecc_size = 1024; conf->ecc_size >= min_ecc_size;
380 conf->ecc_size >>= 1) {
381 int max_ecc_strength = nand_max_ecc_strength(conf);
382
383 nand_apply_config(conf);
384
385 /*
386 * We are starting from the maximum ECC strength because
387 * most of the time NAND vendors provide an OOB area that
388 * barely meets the ECC requirements.
389 */
390 for (conf->ecc_strength = max_ecc_strength;
391 conf->ecc_strength >= 0;
392 conf->ecc_strength--) {
393 conf->randomize = false;
Miquel Raynal4f800042018-02-28 20:51:52 +0100394 if (nand_change_column(0))
Boris Brezillon601361f2016-06-06 10:17:02 +0200395 return -EIO;
396
397 /*
398 * Only read the first sector to speedup detection.
399 */
400 ret = nand_read_page(conf, offs, dest, conf->ecc_size);
401 if (!ret) {
402 return 0;
403 } else if (ret > 0) {
404 /*
405 * If page is empty we can't deduce anything
406 * about the ECC config => stop the detection.
407 */
408 return -EINVAL;
409 }
410
411 conf->randomize = true;
412 conf->nseeds = ARRAY_SIZE(random_seed);
413 do {
Miquel Raynal4f800042018-02-28 20:51:52 +0100414 if (nand_change_column(0))
Boris Brezillon601361f2016-06-06 10:17:02 +0200415 return -EIO;
416
417 if (!nand_read_page(conf, offs, dest,
418 conf->ecc_size))
419 return 0;
420
421 /*
422 * Find the next ->nseeds value that would
423 * change the randomizer seed for the page
424 * we're trying to read.
425 */
426 while (conf->nseeds >= 16) {
427 int seed = page % conf->nseeds;
428
429 conf->nseeds >>= 1;
430 if (seed != page % conf->nseeds)
431 break;
432 }
433 } while (conf->nseeds >= 16);
434 }
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200435 }
Hans de Goedea44f40e2015-08-15 20:51:53 +0200436
Boris Brezillon601361f2016-06-06 10:17:02 +0200437 return -EINVAL;
Hans de Goedea44f40e2015-08-15 20:51:53 +0200438}
439
Boris Brezillon601361f2016-06-06 10:17:02 +0200440static int nand_detect_config(struct nfc_config *conf, u32 offs, void *dest)
Hans de Goedea44f40e2015-08-15 20:51:53 +0200441{
Boris Brezillon601361f2016-06-06 10:17:02 +0200442 if (conf->valid)
443 return 0;
Hans de Goede01c69ed2015-08-15 21:23:08 +0200444
Boris Brezillon601361f2016-06-06 10:17:02 +0200445 /*
446 * Modern NANDs are more likely than legacy ones, so we start testing
447 * with 5 address cycles.
448 */
449 for (conf->addr_cycles = 5;
450 conf->addr_cycles >= 4;
451 conf->addr_cycles--) {
452 int max_page_size = conf->addr_cycles == 4 ? 2048 : 16384;
453
454 /*
455 * Ignoring 1k pages cause I'm not even sure this case exist
456 * in the real world.
457 */
458 for (conf->page_size = 2048; conf->page_size <= max_page_size;
459 conf->page_size <<= 1) {
460 if (nand_load_page(conf, offs))
461 return -1;
462
463 if (!nand_detect_ecc_config(conf, offs, dest)) {
464 conf->valid = true;
Hans de Goede01c69ed2015-08-15 21:23:08 +0200465 return 0;
466 }
Hans de Goede01c69ed2015-08-15 21:23:08 +0200467 }
Hans de Goede01c69ed2015-08-15 21:23:08 +0200468 }
469
Boris Brezillon601361f2016-06-06 10:17:02 +0200470 return -EINVAL;
Hans de Goedea44f40e2015-08-15 20:51:53 +0200471}
472
Boris Brezillon601361f2016-06-06 10:17:02 +0200473static int nand_read_buffer(struct nfc_config *conf, uint32_t offs,
474 unsigned int size, void *dest)
475{
Miquel Raynale8595032018-02-28 20:51:45 +0100476 int first_seed = 0, page, ret;
Boris Brezillon601361f2016-06-06 10:17:02 +0200477
478 size = ALIGN(size, conf->page_size);
479 page = offs / conf->page_size;
Miquel Raynale8595032018-02-28 20:51:45 +0100480 if (conf->randomize)
481 first_seed = page % conf->nseeds;
Boris Brezillon601361f2016-06-06 10:17:02 +0200482
483 for (; size; size -= conf->page_size) {
484 if (nand_load_page(conf, offs))
485 return -1;
486
487 ret = nand_read_page(conf, offs, dest, conf->page_size);
488 /*
489 * The ->nseeds value should be equal to the number of pages
490 * in an eraseblock. Since we don't know this information in
491 * advance we might have picked a wrong value.
492 */
493 if (ret < 0 && conf->randomize) {
494 int cur_seed = page % conf->nseeds;
495
496 /*
497 * We already tried all the seed values => we are
498 * facing a real corruption.
499 */
500 if (cur_seed < first_seed)
501 return -EIO;
502
503 /* Try to adjust ->nseeds and read the page again... */
504 conf->nseeds = cur_seed;
505
Miquel Raynal4f800042018-02-28 20:51:52 +0100506 if (nand_change_column(0))
Boris Brezillon601361f2016-06-06 10:17:02 +0200507 return -EIO;
508
509 /* ... it still fails => it's a real corruption. */
510 if (nand_read_page(conf, offs, dest, conf->page_size))
511 return -EIO;
512 } else if (ret && conf->randomize) {
513 memset(dest, 0xff, conf->page_size);
514 }
515
516 page++;
517 offs += conf->page_size;
518 dest += conf->page_size;
519 }
520
521 return 0;
522}
523
Hans de Goedea44f40e2015-08-15 20:51:53 +0200524int nand_spl_load_image(uint32_t offs, unsigned int size, void *dest)
525{
Boris Brezillon601361f2016-06-06 10:17:02 +0200526 static struct nfc_config conf = { };
527 int ret;
528
529 ret = nand_detect_config(&conf, offs, dest);
530 if (ret)
531 return ret;
532
533 return nand_read_buffer(&conf, offs, size, dest);
Piotr Zierhoffer4ac391c2015-07-23 14:33:02 +0200534}
535
Hans de Goede466a3182015-08-15 11:59:25 +0200536void nand_deselect(void)
537{
538 struct sunxi_ccm_reg *const ccm =
539 (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
540
541 clrbits_le32(&ccm->ahb_gate0, (CLK_GATE_OPEN << AHB_GATE_OFFSET_NAND0));
542#ifdef CONFIG_MACH_SUN9I
543 clrbits_le32(&ccm->ahb_gate1, (1 << AHB_GATE_OFFSET_DMA));
544#else
545 clrbits_le32(&ccm->ahb_gate0, (1 << AHB_GATE_OFFSET_DMA));
546#endif
547 clrbits_le32(&ccm->nand0_clk_cfg, CCM_NAND_CTRL_ENABLE | AHB_DIV_1);
548}