2 * Copyright (C) 2017 Free Electrons
3 * Copyright (C) 2017 NextThing Co
5 * Author: Boris Brezillon <boris.brezillon@free-electrons.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/mtd/rawnand.h>
20 static void samsung_nand_decode_id(struct nand_chip
*chip
)
22 struct mtd_info
*mtd
= nand_to_mtd(chip
);
24 /* New Samsung (6 byte ID): Samsung K9GAG08U0F (p.44) */
25 if (chip
->id
.len
== 6 && !nand_is_slc(chip
) &&
26 chip
->id
.data
[5] != 0x00) {
27 u8 extid
= chip
->id
.data
[3];
30 mtd
->writesize
= 2048 << (extid
& 0x03);
35 switch (((extid
>> 2) & 0x4) | (extid
& 0x3)) {
56 * We should never reach this case, but if that
57 * happens, this probably means Samsung decided to use
58 * a different extended ID format, and we should find
59 * a way to support it.
61 WARN(1, "Invalid OOB size value");
67 mtd
->erasesize
= (128 * 1024) <<
68 (((extid
>> 1) & 0x04) | (extid
& 0x03));
70 /* Extract ECC requirements from 5th id byte*/
71 extid
= (chip
->id
.data
[4] >> 4) & 0x07;
73 chip
->ecc_step_ds
= 512;
74 chip
->ecc_strength_ds
= 1 << extid
;
76 chip
->ecc_step_ds
= 1024;
79 chip
->ecc_strength_ds
= 24;
82 chip
->ecc_strength_ds
= 40;
85 chip
->ecc_strength_ds
= 60;
88 WARN(1, "Could not decode ECC info");
89 chip
->ecc_step_ds
= 0;
93 nand_decode_ext_id(chip
);
95 if (nand_is_slc(chip
)) {
96 switch (chip
->id
.data
[1]) {
97 /* K9F4G08U0D-S[I|C]B0(T00) */
99 chip
->ecc_step_ds
= 512;
100 chip
->ecc_strength_ds
= 1;
103 /* K9F1G08U0E 21nm chips do not support subpage write */
105 if (chip
->id
.len
> 4 &&
106 (chip
->id
.data
[4] & GENMASK(1, 0)) == 0x1)
107 chip
->options
|= NAND_NO_SUBPAGE_WRITE
;
116 static int samsung_nand_init(struct nand_chip
*chip
)
118 struct mtd_info
*mtd
= nand_to_mtd(chip
);
120 if (mtd
->writesize
> 512)
121 chip
->options
|= NAND_SAMSUNG_LP_OPTIONS
;
123 if (!nand_is_slc(chip
))
124 chip
->bbt_options
|= NAND_BBT_SCANLASTPAGE
;
126 chip
->bbt_options
|= NAND_BBT_SCAN2NDPAGE
;
131 const struct nand_manufacturer_ops samsung_nand_manuf_ops
= {
132 .detect
= samsung_nand_decode_id
,
133 .init
= samsung_nand_init
,