blob: 7caedaa5b9e59d3db96339100ab659e1bb6bcd99 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Boris Brezillon01389b62016-06-08 10:30:18 +02002/*
3 * Copyright (C) 2017 Free Electrons
4 * Copyright (C) 2017 NextThing Co
5 *
6 * Author: Boris Brezillon <boris.brezillon@free-electrons.com>
Boris Brezillon01389b62016-06-08 10:30:18 +02007 */
8
Boris Brezillon78f34822016-05-27 14:36:36 +02009#include <linux/sizes.h>
Boris Brezillon626994e2016-05-27 10:15:03 +020010#include <linux/slab.h>
11
Boris Brezillon348d56a2018-09-07 00:38:48 +020012#include "internals.h"
13
Boris Brezillon626994e2016-05-27 10:15:03 +020014#define NAND_HYNIX_CMD_SET_PARAMS 0x36
15#define NAND_HYNIX_CMD_APPLY_PARAMS 0x16
16
17#define NAND_HYNIX_1XNM_RR_REPEAT 8
18
19/**
20 * struct hynix_read_retry - read-retry data
21 * @nregs: number of register to set when applying a new read-retry mode
22 * @regs: register offsets (NAND chip dependent)
23 * @values: array of values to set in registers. The array size is equal to
24 * (nregs * nmodes)
25 */
26struct hynix_read_retry {
27 int nregs;
28 const u8 *regs;
Gustavo A. R. Silva49f1c332020-02-26 16:27:22 -060029 u8 values[];
Boris Brezillon626994e2016-05-27 10:15:03 +020030};
31
32/**
33 * struct hynix_nand - private Hynix NAND struct
34 * @nand_technology: manufacturing process expressed in picometer
35 * @read_retry: read-retry information
36 */
37struct hynix_nand {
38 const struct hynix_read_retry *read_retry;
39};
40
41/**
42 * struct hynix_read_retry_otp - structure describing how the read-retry OTP
43 * area
44 * @nregs: number of hynix private registers to set before reading the reading
45 * the OTP area
46 * @regs: registers that should be configured
47 * @values: values that should be set in regs
48 * @page: the address to pass to the READ_PAGE command. Depends on the NAND
49 * chip
50 * @size: size of the read-retry OTP section
51 */
52struct hynix_read_retry_otp {
53 int nregs;
54 const u8 *regs;
55 const u8 *values;
56 int page;
57 int size;
58};
Boris Brezillon01389b62016-06-08 10:30:18 +020059
Boris Brezillon78f34822016-05-27 14:36:36 +020060static bool hynix_nand_has_valid_jedecid(struct nand_chip *chip)
Boris Brezillon01389b62016-06-08 10:30:18 +020061{
Boris Brezillon97d90da2017-11-30 18:01:29 +010062 u8 jedecid[5] = { };
63 int ret;
64
65 ret = nand_readid_op(chip, 0x40, jedecid, sizeof(jedecid));
66 if (ret)
67 return false;
68
69 return !strncmp("JEDEC", jedecid, sizeof(jedecid));
70}
71
72static int hynix_nand_cmd_op(struct nand_chip *chip, u8 cmd)
73{
Boris Brezillonf2abfeb2018-11-11 08:55:23 +010074 if (nand_has_exec_op(chip)) {
Miquel Raynal8878b122017-11-09 14:16:45 +010075 struct nand_op_instr instrs[] = {
76 NAND_OP_CMD(cmd, 0),
77 };
Boris Brezillonae2294b2018-11-11 08:55:15 +010078 struct nand_operation op = NAND_OPERATION(chip->cur_cs, instrs);
Miquel Raynal8878b122017-11-09 14:16:45 +010079
80 return nand_exec_op(chip, &op);
81 }
82
Boris Brezillonbf6065c2018-09-07 00:38:36 +020083 chip->legacy.cmdfunc(chip, cmd, -1, -1);
Boris Brezillon01389b62016-06-08 10:30:18 +020084
Boris Brezillon97d90da2017-11-30 18:01:29 +010085 return 0;
86}
87
88static int hynix_nand_reg_write_op(struct nand_chip *chip, u8 addr, u8 val)
89{
Boris Brezillon97d90da2017-11-30 18:01:29 +010090 u16 column = ((u16)addr << 8) | addr;
91
Boris Brezillonf2abfeb2018-11-11 08:55:23 +010092 if (nand_has_exec_op(chip)) {
Boris Brezillon20366e12018-07-04 16:08:58 +020093 struct nand_op_instr instrs[] = {
94 NAND_OP_ADDR(1, &addr, 0),
95 NAND_OP_8BIT_DATA_OUT(1, &val, 0),
96 };
Boris Brezillonae2294b2018-11-11 08:55:15 +010097 struct nand_operation op = NAND_OPERATION(chip->cur_cs, instrs);
Boris Brezillon20366e12018-07-04 16:08:58 +020098
99 return nand_exec_op(chip, &op);
100 }
101
Boris Brezillonbf6065c2018-09-07 00:38:36 +0200102 chip->legacy.cmdfunc(chip, NAND_CMD_NONE, column, -1);
Boris Brezillon716bbba2018-09-07 00:38:35 +0200103 chip->legacy.write_byte(chip, val);
Boris Brezillon97d90da2017-11-30 18:01:29 +0100104
105 return 0;
Boris Brezillon78f34822016-05-27 14:36:36 +0200106}
Boris Brezillon01389b62016-06-08 10:30:18 +0200107
Boris Brezillon2e7f1ce2018-09-06 14:05:32 +0200108static int hynix_nand_setup_read_retry(struct nand_chip *chip, int retry_mode)
Boris Brezillon626994e2016-05-27 10:15:03 +0200109{
Boris Brezillon626994e2016-05-27 10:15:03 +0200110 struct hynix_nand *hynix = nand_get_manufacturer_data(chip);
111 const u8 *values;
Boris Brezillon97d90da2017-11-30 18:01:29 +0100112 int i, ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200113
114 values = hynix->read_retry->values +
115 (retry_mode * hynix->read_retry->nregs);
116
117 /* Enter 'Set Hynix Parameters' mode */
Boris Brezillon97d90da2017-11-30 18:01:29 +0100118 ret = hynix_nand_cmd_op(chip, NAND_HYNIX_CMD_SET_PARAMS);
119 if (ret)
120 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200121
122 /*
123 * Configure the NAND in the requested read-retry mode.
124 * This is done by setting pre-defined values in internal NAND
125 * registers.
126 *
127 * The set of registers is NAND specific, and the values are either
128 * predefined or extracted from an OTP area on the NAND (values are
129 * probably tweaked at production in this case).
130 */
131 for (i = 0; i < hynix->read_retry->nregs; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +0100132 ret = hynix_nand_reg_write_op(chip, hynix->read_retry->regs[i],
133 values[i]);
134 if (ret)
135 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200136 }
137
138 /* Apply the new settings. */
Boris Brezillon97d90da2017-11-30 18:01:29 +0100139 return hynix_nand_cmd_op(chip, NAND_HYNIX_CMD_APPLY_PARAMS);
Boris Brezillon626994e2016-05-27 10:15:03 +0200140}
141
142/**
143 * hynix_get_majority - get the value that is occurring the most in a given
144 * set of values
145 * @in: the array of values to test
146 * @repeat: the size of the in array
147 * @out: pointer used to store the output value
148 *
149 * This function implements the 'majority check' logic that is supposed to
150 * overcome the unreliability of MLC NANDs when reading the OTP area storing
151 * the read-retry parameters.
152 *
153 * It's based on a pretty simple assumption: if we repeat the same value
154 * several times and then take the one that is occurring the most, we should
155 * find the correct value.
156 * Let's hope this dummy algorithm prevents us from losing the read-retry
157 * parameters.
158 */
159static int hynix_get_majority(const u8 *in, int repeat, u8 *out)
160{
161 int i, j, half = repeat / 2;
162
163 /*
164 * We only test the first half of the in array because we must ensure
165 * that the value is at least occurring repeat / 2 times.
166 *
167 * This loop is suboptimal since we may count the occurrences of the
168 * same value several time, but we are doing that on small sets, which
169 * makes it acceptable.
170 */
171 for (i = 0; i < half; i++) {
172 int cnt = 0;
173 u8 val = in[i];
174
175 /* Count all values that are matching the one at index i. */
176 for (j = i + 1; j < repeat; j++) {
177 if (in[j] == val)
178 cnt++;
179 }
180
181 /* We found a value occurring more than repeat / 2. */
182 if (cnt > half) {
183 *out = val;
184 return 0;
185 }
186 }
187
188 return -EIO;
189}
190
191static int hynix_read_rr_otp(struct nand_chip *chip,
192 const struct hynix_read_retry_otp *info,
193 void *buf)
194{
Boris Brezillon97d90da2017-11-30 18:01:29 +0100195 int i, ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200196
Boris Brezillon97d90da2017-11-30 18:01:29 +0100197 ret = nand_reset_op(chip);
198 if (ret)
199 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200200
Boris Brezillon97d90da2017-11-30 18:01:29 +0100201 ret = hynix_nand_cmd_op(chip, NAND_HYNIX_CMD_SET_PARAMS);
202 if (ret)
203 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200204
205 for (i = 0; i < info->nregs; i++) {
Boris Brezillon97d90da2017-11-30 18:01:29 +0100206 ret = hynix_nand_reg_write_op(chip, info->regs[i],
207 info->values[i]);
208 if (ret)
209 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200210 }
211
Boris Brezillon97d90da2017-11-30 18:01:29 +0100212 ret = hynix_nand_cmd_op(chip, NAND_HYNIX_CMD_APPLY_PARAMS);
213 if (ret)
214 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200215
216 /* Sequence to enter OTP mode? */
Boris Brezillon97d90da2017-11-30 18:01:29 +0100217 ret = hynix_nand_cmd_op(chip, 0x17);
218 if (ret)
219 return ret;
220
221 ret = hynix_nand_cmd_op(chip, 0x4);
222 if (ret)
223 return ret;
224
225 ret = hynix_nand_cmd_op(chip, 0x19);
226 if (ret)
227 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200228
229 /* Now read the page */
Boris Brezillon97d90da2017-11-30 18:01:29 +0100230 ret = nand_read_page_op(chip, info->page, 0, buf, info->size);
231 if (ret)
232 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200233
234 /* Put everything back to normal */
Boris Brezillon97d90da2017-11-30 18:01:29 +0100235 ret = nand_reset_op(chip);
236 if (ret)
237 return ret;
Boris Brezillon626994e2016-05-27 10:15:03 +0200238
Boris Brezillon97d90da2017-11-30 18:01:29 +0100239 ret = hynix_nand_cmd_op(chip, NAND_HYNIX_CMD_SET_PARAMS);
240 if (ret)
241 return ret;
242
243 ret = hynix_nand_reg_write_op(chip, 0x38, 0);
244 if (ret)
245 return ret;
246
247 ret = hynix_nand_cmd_op(chip, NAND_HYNIX_CMD_APPLY_PARAMS);
248 if (ret)
249 return ret;
250
251 return nand_read_page_op(chip, 0, 0, NULL, 0);
Boris Brezillon626994e2016-05-27 10:15:03 +0200252}
253
254#define NAND_HYNIX_1XNM_RR_COUNT_OFFS 0
255#define NAND_HYNIX_1XNM_RR_REG_COUNT_OFFS 8
256#define NAND_HYNIX_1XNM_RR_SET_OFFS(x, setsize, inv) \
257 (16 + ((((x) * 2) + ((inv) ? 1 : 0)) * (setsize)))
258
259static int hynix_mlc_1xnm_rr_value(const u8 *buf, int nmodes, int nregs,
260 int mode, int reg, bool inv, u8 *val)
261{
262 u8 tmp[NAND_HYNIX_1XNM_RR_REPEAT];
263 int val_offs = (mode * nregs) + reg;
264 int set_size = nmodes * nregs;
265 int i, ret;
266
267 for (i = 0; i < NAND_HYNIX_1XNM_RR_REPEAT; i++) {
268 int set_offs = NAND_HYNIX_1XNM_RR_SET_OFFS(i, set_size, inv);
269
270 tmp[i] = buf[val_offs + set_offs];
271 }
272
273 ret = hynix_get_majority(tmp, NAND_HYNIX_1XNM_RR_REPEAT, val);
274 if (ret)
275 return ret;
276
277 if (inv)
278 *val = ~*val;
279
280 return 0;
281}
282
283static u8 hynix_1xnm_mlc_read_retry_regs[] = {
284 0xcc, 0xbf, 0xaa, 0xab, 0xcd, 0xad, 0xae, 0xaf
285};
286
287static int hynix_mlc_1xnm_rr_init(struct nand_chip *chip,
288 const struct hynix_read_retry_otp *info)
289{
290 struct hynix_nand *hynix = nand_get_manufacturer_data(chip);
291 struct hynix_read_retry *rr = NULL;
292 int ret, i, j;
293 u8 nregs, nmodes;
294 u8 *buf;
295
296 buf = kmalloc(info->size, GFP_KERNEL);
297 if (!buf)
298 return -ENOMEM;
299
300 ret = hynix_read_rr_otp(chip, info, buf);
301 if (ret)
302 goto out;
303
304 ret = hynix_get_majority(buf, NAND_HYNIX_1XNM_RR_REPEAT,
305 &nmodes);
306 if (ret)
307 goto out;
308
309 ret = hynix_get_majority(buf + NAND_HYNIX_1XNM_RR_REPEAT,
310 NAND_HYNIX_1XNM_RR_REPEAT,
311 &nregs);
312 if (ret)
313 goto out;
314
315 rr = kzalloc(sizeof(*rr) + (nregs * nmodes), GFP_KERNEL);
Dan Carpenter4ca8c1d2017-03-22 12:01:45 +0300316 if (!rr) {
317 ret = -ENOMEM;
Boris Brezillon626994e2016-05-27 10:15:03 +0200318 goto out;
Dan Carpenter4ca8c1d2017-03-22 12:01:45 +0300319 }
Boris Brezillon626994e2016-05-27 10:15:03 +0200320
321 for (i = 0; i < nmodes; i++) {
322 for (j = 0; j < nregs; j++) {
323 u8 *val = rr->values + (i * nregs);
324
325 ret = hynix_mlc_1xnm_rr_value(buf, nmodes, nregs, i, j,
326 false, val);
327 if (!ret)
328 continue;
329
330 ret = hynix_mlc_1xnm_rr_value(buf, nmodes, nregs, i, j,
331 true, val);
332 if (ret)
333 goto out;
334 }
335 }
336
337 rr->nregs = nregs;
338 rr->regs = hynix_1xnm_mlc_read_retry_regs;
339 hynix->read_retry = rr;
340 chip->setup_read_retry = hynix_nand_setup_read_retry;
341 chip->read_retries = nmodes;
342
343out:
344 kfree(buf);
345
346 if (ret)
347 kfree(rr);
348
349 return ret;
350}
351
352static const u8 hynix_mlc_1xnm_rr_otp_regs[] = { 0x38 };
353static const u8 hynix_mlc_1xnm_rr_otp_values[] = { 0x52 };
354
355static const struct hynix_read_retry_otp hynix_mlc_1xnm_rr_otps[] = {
356 {
357 .nregs = ARRAY_SIZE(hynix_mlc_1xnm_rr_otp_regs),
358 .regs = hynix_mlc_1xnm_rr_otp_regs,
359 .values = hynix_mlc_1xnm_rr_otp_values,
360 .page = 0x21f,
361 .size = 784
362 },
363 {
364 .nregs = ARRAY_SIZE(hynix_mlc_1xnm_rr_otp_regs),
365 .regs = hynix_mlc_1xnm_rr_otp_regs,
366 .values = hynix_mlc_1xnm_rr_otp_values,
367 .page = 0x200,
368 .size = 528,
369 },
370};
371
372static int hynix_nand_rr_init(struct nand_chip *chip)
373{
374 int i, ret = 0;
375 bool valid_jedecid;
376
377 valid_jedecid = hynix_nand_has_valid_jedecid(chip);
378
379 /*
380 * We only support read-retry for 1xnm NANDs, and those NANDs all
381 * expose a valid JEDEC ID.
382 */
383 if (valid_jedecid) {
384 u8 nand_tech = chip->id.data[5] >> 4;
385
386 /* 1xnm technology */
387 if (nand_tech == 4) {
388 for (i = 0; i < ARRAY_SIZE(hynix_mlc_1xnm_rr_otps);
389 i++) {
390 /*
391 * FIXME: Hynix recommend to copy the
392 * read-retry OTP area into a normal page.
393 */
394 ret = hynix_mlc_1xnm_rr_init(chip,
395 hynix_mlc_1xnm_rr_otps);
396 if (!ret)
397 break;
398 }
399 }
400 }
401
402 if (ret)
403 pr_warn("failed to initialize read-retry infrastructure");
404
405 return 0;
406}
407
Boris Brezillon78f34822016-05-27 14:36:36 +0200408static void hynix_nand_extract_oobsize(struct nand_chip *chip,
409 bool valid_jedecid)
410{
411 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon629a4422018-10-25 17:10:37 +0200412 struct nand_memory_organization *memorg;
Boris Brezillon78f34822016-05-27 14:36:36 +0200413 u8 oobsize;
414
Boris Brezillon629a4422018-10-25 17:10:37 +0200415 memorg = nanddev_get_memorg(&chip->base);
416
Boris Brezillon78f34822016-05-27 14:36:36 +0200417 oobsize = ((chip->id.data[3] >> 2) & 0x3) |
418 ((chip->id.data[3] >> 4) & 0x4);
419
420 if (valid_jedecid) {
421 switch (oobsize) {
422 case 0:
Boris Brezillon629a4422018-10-25 17:10:37 +0200423 memorg->oobsize = 2048;
Boris Brezillon78f34822016-05-27 14:36:36 +0200424 break;
425 case 1:
Boris Brezillon629a4422018-10-25 17:10:37 +0200426 memorg->oobsize = 1664;
Boris Brezillon78f34822016-05-27 14:36:36 +0200427 break;
428 case 2:
Boris Brezillon629a4422018-10-25 17:10:37 +0200429 memorg->oobsize = 1024;
Boris Brezillon78f34822016-05-27 14:36:36 +0200430 break;
431 case 3:
Boris Brezillon629a4422018-10-25 17:10:37 +0200432 memorg->oobsize = 640;
Boris Brezillon78f34822016-05-27 14:36:36 +0200433 break;
434 default:
435 /*
436 * We should never reach this case, but if that
437 * happens, this probably means Hynix decided to use
438 * a different extended ID format, and we should find
439 * a way to support it.
440 */
441 WARN(1, "Invalid OOB size");
442 break;
443 }
444 } else {
445 switch (oobsize) {
Boris Brezillon01389b62016-06-08 10:30:18 +0200446 case 0:
Boris Brezillon629a4422018-10-25 17:10:37 +0200447 memorg->oobsize = 128;
Boris Brezillon01389b62016-06-08 10:30:18 +0200448 break;
449 case 1:
Boris Brezillon629a4422018-10-25 17:10:37 +0200450 memorg->oobsize = 224;
Boris Brezillon01389b62016-06-08 10:30:18 +0200451 break;
452 case 2:
Boris Brezillon629a4422018-10-25 17:10:37 +0200453 memorg->oobsize = 448;
Boris Brezillon01389b62016-06-08 10:30:18 +0200454 break;
455 case 3:
Boris Brezillon629a4422018-10-25 17:10:37 +0200456 memorg->oobsize = 64;
Boris Brezillon01389b62016-06-08 10:30:18 +0200457 break;
458 case 4:
Boris Brezillon629a4422018-10-25 17:10:37 +0200459 memorg->oobsize = 32;
Boris Brezillon01389b62016-06-08 10:30:18 +0200460 break;
461 case 5:
Boris Brezillon629a4422018-10-25 17:10:37 +0200462 memorg->oobsize = 16;
Boris Brezillon01389b62016-06-08 10:30:18 +0200463 break;
Boris Brezillon78f34822016-05-27 14:36:36 +0200464 case 6:
Boris Brezillon629a4422018-10-25 17:10:37 +0200465 memorg->oobsize = 640;
Boris Brezillon01389b62016-06-08 10:30:18 +0200466 break;
Boris Brezillon78f34822016-05-27 14:36:36 +0200467 default:
468 /*
469 * We should never reach this case, but if that
470 * happens, this probably means Hynix decided to use
471 * a different extended ID format, and we should find
472 * a way to support it.
473 */
474 WARN(1, "Invalid OOB size");
475 break;
Boris Brezillon01389b62016-06-08 10:30:18 +0200476 }
Martin Blumenstingl16c4fba2018-06-24 22:53:55 +0200477
478 /*
479 * The datasheet of H27UCG8T2BTR mentions that the "Redundant
480 * Area Size" is encoded "per 8KB" (page size). This chip uses
481 * a page size of 16KiB. The datasheet mentions an OOB size of
482 * 1.280 bytes, but the OOB size encoded in the ID bytes (using
483 * the existing logic above) is 640 bytes.
484 * Update the OOB size for this chip by taking the value
485 * determined above and scaling it to the actual page size (so
486 * the actual OOB size for this chip is: 640 * 16k / 8k).
487 */
488 if (chip->id.data[1] == 0xde)
Boris Brezillon629a4422018-10-25 17:10:37 +0200489 memorg->oobsize *= memorg->pagesize / SZ_8K;
Boris Brezillon01389b62016-06-08 10:30:18 +0200490 }
Boris Brezillon629a4422018-10-25 17:10:37 +0200491
492 mtd->oobsize = memorg->oobsize;
Boris Brezillon01389b62016-06-08 10:30:18 +0200493}
494
Boris Brezillon78f34822016-05-27 14:36:36 +0200495static void hynix_nand_extract_ecc_requirements(struct nand_chip *chip,
496 bool valid_jedecid)
497{
498 u8 ecc_level = (chip->id.data[4] >> 4) & 0x7;
499
500 if (valid_jedecid) {
501 /* Reference: H27UCG8T2E datasheet */
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100502 chip->base.eccreq.step_size = 1024;
Boris Brezillon78f34822016-05-27 14:36:36 +0200503
504 switch (ecc_level) {
505 case 0:
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100506 chip->base.eccreq.step_size = 0;
507 chip->base.eccreq.strength = 0;
Boris Brezillon78f34822016-05-27 14:36:36 +0200508 break;
509 case 1:
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100510 chip->base.eccreq.strength = 4;
Boris Brezillon78f34822016-05-27 14:36:36 +0200511 break;
512 case 2:
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100513 chip->base.eccreq.strength = 24;
Boris Brezillon78f34822016-05-27 14:36:36 +0200514 break;
515 case 3:
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100516 chip->base.eccreq.strength = 32;
Boris Brezillon78f34822016-05-27 14:36:36 +0200517 break;
518 case 4:
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100519 chip->base.eccreq.strength = 40;
Boris Brezillon78f34822016-05-27 14:36:36 +0200520 break;
521 case 5:
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100522 chip->base.eccreq.strength = 50;
Boris Brezillon78f34822016-05-27 14:36:36 +0200523 break;
524 case 6:
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100525 chip->base.eccreq.strength = 60;
Boris Brezillon78f34822016-05-27 14:36:36 +0200526 break;
527 default:
528 /*
529 * We should never reach this case, but if that
530 * happens, this probably means Hynix decided to use
531 * a different extended ID format, and we should find
532 * a way to support it.
533 */
534 WARN(1, "Invalid ECC requirements");
535 }
536 } else {
537 /*
538 * The ECC requirements field meaning depends on the
539 * NAND technology.
540 */
Martin Blumenstinglfd213b52017-08-05 14:16:24 +0200541 u8 nand_tech = chip->id.data[5] & 0x7;
Boris Brezillon78f34822016-05-27 14:36:36 +0200542
543 if (nand_tech < 3) {
544 /* > 26nm, reference: H27UBG8T2A datasheet */
545 if (ecc_level < 5) {
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100546 chip->base.eccreq.step_size = 512;
547 chip->base.eccreq.strength = 1 << ecc_level;
Boris Brezillon78f34822016-05-27 14:36:36 +0200548 } else if (ecc_level < 7) {
549 if (ecc_level == 5)
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100550 chip->base.eccreq.step_size = 2048;
Boris Brezillon78f34822016-05-27 14:36:36 +0200551 else
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100552 chip->base.eccreq.step_size = 1024;
553 chip->base.eccreq.strength = 24;
Boris Brezillon78f34822016-05-27 14:36:36 +0200554 } else {
555 /*
556 * We should never reach this case, but if that
557 * happens, this probably means Hynix decided
558 * to use a different extended ID format, and
559 * we should find a way to support it.
560 */
561 WARN(1, "Invalid ECC requirements");
562 }
563 } else {
564 /* <= 26nm, reference: H27UBG8T2B datasheet */
565 if (!ecc_level) {
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100566 chip->base.eccreq.step_size = 0;
567 chip->base.eccreq.strength = 0;
Boris Brezillon78f34822016-05-27 14:36:36 +0200568 } else if (ecc_level < 5) {
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100569 chip->base.eccreq.step_size = 512;
570 chip->base.eccreq.strength = 1 << (ecc_level - 1);
Boris Brezillon78f34822016-05-27 14:36:36 +0200571 } else {
Boris Brezillon6a1b66d2018-11-04 16:09:42 +0100572 chip->base.eccreq.step_size = 1024;
573 chip->base.eccreq.strength = 24 +
Boris Brezillon78f34822016-05-27 14:36:36 +0200574 (8 * (ecc_level - 5));
575 }
576 }
577 }
578}
579
580static void hynix_nand_extract_scrambling_requirements(struct nand_chip *chip,
581 bool valid_jedecid)
582{
583 u8 nand_tech;
584
585 /* We need scrambling on all TLC NANDs*/
Boris Brezillon29815162018-10-25 17:16:47 +0200586 if (nanddev_bits_per_cell(&chip->base) > 2)
Boris Brezillon78f34822016-05-27 14:36:36 +0200587 chip->options |= NAND_NEED_SCRAMBLING;
588
589 /* And on MLC NANDs with sub-3xnm process */
590 if (valid_jedecid) {
591 nand_tech = chip->id.data[5] >> 4;
592
593 /* < 3xnm */
594 if (nand_tech > 0)
595 chip->options |= NAND_NEED_SCRAMBLING;
596 } else {
Martin Blumenstinglfd213b52017-08-05 14:16:24 +0200597 nand_tech = chip->id.data[5] & 0x7;
Boris Brezillon78f34822016-05-27 14:36:36 +0200598
599 /* < 32nm */
600 if (nand_tech > 2)
601 chip->options |= NAND_NEED_SCRAMBLING;
602 }
603}
604
605static void hynix_nand_decode_id(struct nand_chip *chip)
606{
607 struct mtd_info *mtd = nand_to_mtd(chip);
Boris Brezillon629a4422018-10-25 17:10:37 +0200608 struct nand_memory_organization *memorg;
Boris Brezillon78f34822016-05-27 14:36:36 +0200609 bool valid_jedecid;
610 u8 tmp;
611
Boris Brezillon629a4422018-10-25 17:10:37 +0200612 memorg = nanddev_get_memorg(&chip->base);
613
Boris Brezillon78f34822016-05-27 14:36:36 +0200614 /*
615 * Exclude all SLC NANDs from this advanced detection scheme.
616 * According to the ranges defined in several datasheets, it might
617 * appear that even SLC NANDs could fall in this extended ID scheme.
618 * If that the case rework the test to let SLC NANDs go through the
619 * detection process.
620 */
621 if (chip->id.len < 6 || nand_is_slc(chip)) {
622 nand_decode_ext_id(chip);
623 return;
624 }
625
626 /* Extract pagesize */
Boris Brezillon629a4422018-10-25 17:10:37 +0200627 memorg->pagesize = 2048 << (chip->id.data[3] & 0x03);
628 mtd->writesize = memorg->pagesize;
Boris Brezillon78f34822016-05-27 14:36:36 +0200629
630 tmp = (chip->id.data[3] >> 4) & 0x3;
631 /*
632 * When bit7 is set that means we start counting at 1MiB, otherwise
633 * we start counting at 128KiB and shift this value the content of
634 * ID[3][4:5].
635 * The only exception is when ID[3][4:5] == 3 and ID[3][7] == 0, in
636 * this case the erasesize is set to 768KiB.
637 */
Boris Brezillon629a4422018-10-25 17:10:37 +0200638 if (chip->id.data[3] & 0x80) {
639 memorg->pages_per_eraseblock = (SZ_1M << tmp) /
640 memorg->pagesize;
Boris Brezillon78f34822016-05-27 14:36:36 +0200641 mtd->erasesize = SZ_1M << tmp;
Boris Brezillon629a4422018-10-25 17:10:37 +0200642 } else if (tmp == 3) {
643 memorg->pages_per_eraseblock = (SZ_512K + SZ_256K) /
644 memorg->pagesize;
Boris Brezillon78f34822016-05-27 14:36:36 +0200645 mtd->erasesize = SZ_512K + SZ_256K;
Boris Brezillon629a4422018-10-25 17:10:37 +0200646 } else {
647 memorg->pages_per_eraseblock = (SZ_128K << tmp) /
648 memorg->pagesize;
Boris Brezillon78f34822016-05-27 14:36:36 +0200649 mtd->erasesize = SZ_128K << tmp;
Boris Brezillon629a4422018-10-25 17:10:37 +0200650 }
Boris Brezillon78f34822016-05-27 14:36:36 +0200651
652 /*
653 * Modern Toggle DDR NANDs have a valid JEDECID even though they are
654 * not exposing a valid JEDEC parameter table.
655 * These NANDs use a different NAND ID scheme.
656 */
657 valid_jedecid = hynix_nand_has_valid_jedecid(chip);
658
659 hynix_nand_extract_oobsize(chip, valid_jedecid);
660 hynix_nand_extract_ecc_requirements(chip, valid_jedecid);
661 hynix_nand_extract_scrambling_requirements(chip, valid_jedecid);
662}
663
Boris Brezillon626994e2016-05-27 10:15:03 +0200664static void hynix_nand_cleanup(struct nand_chip *chip)
665{
666 struct hynix_nand *hynix = nand_get_manufacturer_data(chip);
667
668 if (!hynix)
669 return;
670
671 kfree(hynix->read_retry);
672 kfree(hynix);
673 nand_set_manufacturer_data(chip, NULL);
674}
675
Boris Brezillon01389b62016-06-08 10:30:18 +0200676static int hynix_nand_init(struct nand_chip *chip)
677{
Boris Brezillon626994e2016-05-27 10:15:03 +0200678 struct hynix_nand *hynix;
679 int ret;
680
Boris Brezillon01389b62016-06-08 10:30:18 +0200681 if (!nand_is_slc(chip))
Frieder Schrempf04649ec2019-04-17 12:36:34 +0000682 chip->options |= NAND_BBM_LASTPAGE;
Boris Brezillon01389b62016-06-08 10:30:18 +0200683 else
Frieder Schrempfbb592542019-04-17 12:36:36 +0000684 chip->options |= NAND_BBM_FIRSTPAGE | NAND_BBM_SECONDPAGE;
Boris Brezillon01389b62016-06-08 10:30:18 +0200685
Boris Brezillon626994e2016-05-27 10:15:03 +0200686 hynix = kzalloc(sizeof(*hynix), GFP_KERNEL);
687 if (!hynix)
688 return -ENOMEM;
689
690 nand_set_manufacturer_data(chip, hynix);
691
692 ret = hynix_nand_rr_init(chip);
693 if (ret)
694 hynix_nand_cleanup(chip);
695
696 return ret;
Boris Brezillon01389b62016-06-08 10:30:18 +0200697}
698
699const struct nand_manufacturer_ops hynix_nand_manuf_ops = {
700 .detect = hynix_nand_decode_id,
701 .init = hynix_nand_init,
Boris Brezillon626994e2016-05-27 10:15:03 +0200702 .cleanup = hynix_nand_cleanup,
Boris Brezillon01389b62016-06-08 10:30:18 +0200703};