Linux 4.19-rc7
[linux-2.6/btrfs-unstable.git] / drivers / mtd / chips / cfi_probe.c
blobcf426956454cfb5717a48fbb9ed637f598bfd438
1 /*
2 Common Flash Interface probe code.
3 (C) 2000 Red Hat. GPL'd.
4 */
6 #include <linux/module.h>
7 #include <linux/types.h>
8 #include <linux/kernel.h>
9 #include <linux/init.h>
10 #include <asm/io.h>
11 #include <asm/byteorder.h>
12 #include <linux/errno.h>
13 #include <linux/slab.h>
14 #include <linux/interrupt.h>
16 #include <linux/mtd/xip.h>
17 #include <linux/mtd/map.h>
18 #include <linux/mtd/cfi.h>
19 #include <linux/mtd/gen_probe.h>
21 //#define DEBUG_CFI
23 #ifdef DEBUG_CFI
24 static void print_cfi_ident(struct cfi_ident *);
25 #endif
27 static int cfi_probe_chip(struct map_info *map, __u32 base,
28 unsigned long *chip_map, struct cfi_private *cfi);
29 static int cfi_chip_setup(struct map_info *map, struct cfi_private *cfi);
31 struct mtd_info *cfi_probe(struct map_info *map);
33 #ifdef CONFIG_MTD_XIP
35 /* only needed for short periods, so this is rather simple */
36 #define xip_disable() local_irq_disable()
38 #define xip_allowed(base, map) \
39 do { \
40 (void) map_read(map, base); \
41 xip_iprefetch(); \
42 local_irq_enable(); \
43 } while (0)
45 #define xip_enable(base, map, cfi) \
46 do { \
47 cfi_qry_mode_off(base, map, cfi); \
48 xip_allowed(base, map); \
49 } while (0)
51 #define xip_disable_qry(base, map, cfi) \
52 do { \
53 xip_disable(); \
54 cfi_qry_mode_on(base, map, cfi); \
55 } while (0)
57 #else
59 #define xip_disable() do { } while (0)
60 #define xip_allowed(base, map) do { } while (0)
61 #define xip_enable(base, map, cfi) do { } while (0)
62 #define xip_disable_qry(base, map, cfi) do { } while (0)
64 #endif
67 * This fixup occurs immediately after reading the CFI structure and can affect
68 * the number of chips detected, unlike cfi_fixup, which occurs after an
69 * mtd_info structure has been created for the chip.
71 struct cfi_early_fixup {
72 uint16_t mfr;
73 uint16_t id;
74 void (*fixup)(struct cfi_private *cfi);
77 static void cfi_early_fixup(struct cfi_private *cfi,
78 const struct cfi_early_fixup *fixups)
80 const struct cfi_early_fixup *f;
82 for (f = fixups; f->fixup; f++) {
83 if (((f->mfr == CFI_MFR_ANY) || (f->mfr == cfi->mfr)) &&
84 ((f->id == CFI_ID_ANY) || (f->id == cfi->id))) {
85 f->fixup(cfi);
90 /* check for QRY.
91 in: interleave,type,mode
92 ret: table index, <0 for error
95 static int __xipram cfi_probe_chip(struct map_info *map, __u32 base,
96 unsigned long *chip_map, struct cfi_private *cfi)
98 int i;
100 if ((base + 0) >= map->size) {
101 printk(KERN_NOTICE
102 "Probe at base[0x00](0x%08lx) past the end of the map(0x%08lx)\n",
103 (unsigned long)base, map->size -1);
104 return 0;
106 if ((base + 0xff) >= map->size) {
107 printk(KERN_NOTICE
108 "Probe at base[0x55](0x%08lx) past the end of the map(0x%08lx)\n",
109 (unsigned long)base + 0x55, map->size -1);
110 return 0;
113 xip_disable();
114 if (!cfi_qry_mode_on(base, map, cfi)) {
115 xip_enable(base, map, cfi);
116 return 0;
119 if (!cfi->numchips) {
120 /* This is the first time we're called. Set up the CFI
121 stuff accordingly and return */
122 return cfi_chip_setup(map, cfi);
125 /* Check each previous chip to see if it's an alias */
126 for (i=0; i < (base >> cfi->chipshift); i++) {
127 unsigned long start;
128 if(!test_bit(i, chip_map)) {
129 /* Skip location; no valid chip at this address */
130 continue;
132 start = i << cfi->chipshift;
133 /* This chip should be in read mode if it's one
134 we've already touched. */
135 if (cfi_qry_present(map, start, cfi)) {
136 /* Eep. This chip also had the QRY marker.
137 * Is it an alias for the new one? */
138 cfi_qry_mode_off(start, map, cfi);
140 /* If the QRY marker goes away, it's an alias */
141 if (!cfi_qry_present(map, start, cfi)) {
142 xip_allowed(base, map);
143 printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",
144 map->name, base, start);
145 return 0;
147 /* Yes, it's actually got QRY for data. Most
148 * unfortunate. Stick the new chip in read mode
149 * too and if it's the same, assume it's an alias. */
150 /* FIXME: Use other modes to do a proper check */
151 cfi_qry_mode_off(base, map, cfi);
153 if (cfi_qry_present(map, base, cfi)) {
154 xip_allowed(base, map);
155 printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",
156 map->name, base, start);
157 return 0;
162 /* OK, if we got to here, then none of the previous chips appear to
163 be aliases for the current one. */
164 set_bit((base >> cfi->chipshift), chip_map); /* Update chip map */
165 cfi->numchips++;
167 /* Put it back into Read Mode */
168 cfi_qry_mode_off(base, map, cfi);
169 xip_allowed(base, map);
171 printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank\n",
172 map->name, cfi->interleave, cfi->device_type*8, base,
173 map->bankwidth*8);
175 return 1;
178 static void fixup_s70gl02gs_chips(struct cfi_private *cfi)
181 * S70GL02GS flash reports a single 256 MiB chip, but is really made up
182 * of two 128 MiB chips with 1024 sectors each.
184 cfi->cfiq->DevSize = 27;
185 cfi->cfiq->EraseRegionInfo[0] = 0x20003ff;
186 pr_warn("Bad S70GL02GS CFI data; adjust to detect 2 chips\n");
189 static const struct cfi_early_fixup cfi_early_fixup_table[] = {
190 { CFI_MFR_AMD, 0x4801, fixup_s70gl02gs_chips },
191 { },
194 static int __xipram cfi_chip_setup(struct map_info *map,
195 struct cfi_private *cfi)
197 int ofs_factor = cfi->interleave*cfi->device_type;
198 __u32 base = 0;
199 int num_erase_regions = cfi_read_query(map, base + (0x10 + 28)*ofs_factor);
200 int i;
201 int addr_unlock1 = 0x555, addr_unlock2 = 0x2AA;
203 xip_enable(base, map, cfi);
204 #ifdef DEBUG_CFI
205 printk("Number of erase regions: %d\n", num_erase_regions);
206 #endif
207 if (!num_erase_regions)
208 return 0;
210 cfi->cfiq = kmalloc(sizeof(struct cfi_ident) + num_erase_regions * 4, GFP_KERNEL);
211 if (!cfi->cfiq)
212 return 0;
214 memset(cfi->cfiq,0,sizeof(struct cfi_ident));
216 cfi->cfi_mode = CFI_MODE_CFI;
218 cfi->sector_erase_cmd = CMD(0x30);
220 /* Read the CFI info structure */
221 xip_disable_qry(base, map, cfi);
222 for (i=0; i<(sizeof(struct cfi_ident) + num_erase_regions * 4); i++)
223 ((unsigned char *)cfi->cfiq)[i] = cfi_read_query(map,base + (0x10 + i)*ofs_factor);
225 /* Do any necessary byteswapping */
226 cfi->cfiq->P_ID = le16_to_cpu(cfi->cfiq->P_ID);
228 cfi->cfiq->P_ADR = le16_to_cpu(cfi->cfiq->P_ADR);
229 cfi->cfiq->A_ID = le16_to_cpu(cfi->cfiq->A_ID);
230 cfi->cfiq->A_ADR = le16_to_cpu(cfi->cfiq->A_ADR);
231 cfi->cfiq->InterfaceDesc = le16_to_cpu(cfi->cfiq->InterfaceDesc);
232 cfi->cfiq->MaxBufWriteSize = le16_to_cpu(cfi->cfiq->MaxBufWriteSize);
234 #ifdef DEBUG_CFI
235 /* Dump the information therein */
236 print_cfi_ident(cfi->cfiq);
237 #endif
239 for (i=0; i<cfi->cfiq->NumEraseRegions; i++) {
240 cfi->cfiq->EraseRegionInfo[i] = le32_to_cpu(cfi->cfiq->EraseRegionInfo[i]);
242 #ifdef DEBUG_CFI
243 printk(" Erase Region #%d: BlockSize 0x%4.4X bytes, %d blocks\n",
244 i, (cfi->cfiq->EraseRegionInfo[i] >> 8) & ~0xff,
245 (cfi->cfiq->EraseRegionInfo[i] & 0xffff) + 1);
246 #endif
249 if (cfi->cfiq->P_ID == P_ID_SST_OLD) {
250 addr_unlock1 = 0x5555;
251 addr_unlock2 = 0x2AAA;
255 * Note we put the device back into Read Mode BEFORE going into Auto
256 * Select Mode, as some devices support nesting of modes, others
257 * don't. This way should always work.
258 * On cmdset 0001 the writes of 0xaa and 0x55 are not needed, and
259 * so should be treated as nops or illegal (and so put the device
260 * back into Read Mode, which is a nop in this case).
262 cfi_send_gen_cmd(0xf0, 0, base, map, cfi, cfi->device_type, NULL);
263 cfi_send_gen_cmd(0xaa, addr_unlock1, base, map, cfi, cfi->device_type, NULL);
264 cfi_send_gen_cmd(0x55, addr_unlock2, base, map, cfi, cfi->device_type, NULL);
265 cfi_send_gen_cmd(0x90, addr_unlock1, base, map, cfi, cfi->device_type, NULL);
266 cfi->mfr = cfi_read_query16(map, base);
267 cfi->id = cfi_read_query16(map, base + ofs_factor);
269 /* Get AMD/Spansion extended JEDEC ID */
270 if (cfi->mfr == CFI_MFR_AMD && (cfi->id & 0xff) == 0x7e)
271 cfi->id = cfi_read_query(map, base + 0xe * ofs_factor) << 8 |
272 cfi_read_query(map, base + 0xf * ofs_factor);
274 /* Put it back into Read Mode */
275 cfi_qry_mode_off(base, map, cfi);
276 xip_allowed(base, map);
278 cfi_early_fixup(cfi, cfi_early_fixup_table);
280 printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank. Manufacturer ID %#08x Chip ID %#08x\n",
281 map->name, cfi->interleave, cfi->device_type*8, base,
282 map->bankwidth*8, cfi->mfr, cfi->id);
284 return 1;
287 #ifdef DEBUG_CFI
288 static char *vendorname(__u16 vendor)
290 switch (vendor) {
291 case P_ID_NONE:
292 return "None";
294 case P_ID_INTEL_EXT:
295 return "Intel/Sharp Extended";
297 case P_ID_AMD_STD:
298 return "AMD/Fujitsu Standard";
300 case P_ID_INTEL_STD:
301 return "Intel/Sharp Standard";
303 case P_ID_AMD_EXT:
304 return "AMD/Fujitsu Extended";
306 case P_ID_WINBOND:
307 return "Winbond Standard";
309 case P_ID_ST_ADV:
310 return "ST Advanced";
312 case P_ID_MITSUBISHI_STD:
313 return "Mitsubishi Standard";
315 case P_ID_MITSUBISHI_EXT:
316 return "Mitsubishi Extended";
318 case P_ID_SST_PAGE:
319 return "SST Page Write";
321 case P_ID_SST_OLD:
322 return "SST 39VF160x/39VF320x";
324 case P_ID_INTEL_PERFORMANCE:
325 return "Intel Performance Code";
327 case P_ID_INTEL_DATA:
328 return "Intel Data";
330 case P_ID_RESERVED:
331 return "Not Allowed / Reserved for Future Use";
333 default:
334 return "Unknown";
339 static void print_cfi_ident(struct cfi_ident *cfip)
341 #if 0
342 if (cfip->qry[0] != 'Q' || cfip->qry[1] != 'R' || cfip->qry[2] != 'Y') {
343 printk("Invalid CFI ident structure.\n");
344 return;
346 #endif
347 printk("Primary Vendor Command Set: %4.4X (%s)\n", cfip->P_ID, vendorname(cfip->P_ID));
348 if (cfip->P_ADR)
349 printk("Primary Algorithm Table at %4.4X\n", cfip->P_ADR);
350 else
351 printk("No Primary Algorithm Table\n");
353 printk("Alternative Vendor Command Set: %4.4X (%s)\n", cfip->A_ID, vendorname(cfip->A_ID));
354 if (cfip->A_ADR)
355 printk("Alternate Algorithm Table at %4.4X\n", cfip->A_ADR);
356 else
357 printk("No Alternate Algorithm Table\n");
360 printk("Vcc Minimum: %2d.%d V\n", cfip->VccMin >> 4, cfip->VccMin & 0xf);
361 printk("Vcc Maximum: %2d.%d V\n", cfip->VccMax >> 4, cfip->VccMax & 0xf);
362 if (cfip->VppMin) {
363 printk("Vpp Minimum: %2d.%d V\n", cfip->VppMin >> 4, cfip->VppMin & 0xf);
364 printk("Vpp Maximum: %2d.%d V\n", cfip->VppMax >> 4, cfip->VppMax & 0xf);
366 else
367 printk("No Vpp line\n");
369 printk("Typical byte/word write timeout: %d µs\n", 1<<cfip->WordWriteTimeoutTyp);
370 printk("Maximum byte/word write timeout: %d µs\n", (1<<cfip->WordWriteTimeoutMax) * (1<<cfip->WordWriteTimeoutTyp));
372 if (cfip->BufWriteTimeoutTyp || cfip->BufWriteTimeoutMax) {
373 printk("Typical full buffer write timeout: %d µs\n", 1<<cfip->BufWriteTimeoutTyp);
374 printk("Maximum full buffer write timeout: %d µs\n", (1<<cfip->BufWriteTimeoutMax) * (1<<cfip->BufWriteTimeoutTyp));
376 else
377 printk("Full buffer write not supported\n");
379 printk("Typical block erase timeout: %d ms\n", 1<<cfip->BlockEraseTimeoutTyp);
380 printk("Maximum block erase timeout: %d ms\n", (1<<cfip->BlockEraseTimeoutMax) * (1<<cfip->BlockEraseTimeoutTyp));
381 if (cfip->ChipEraseTimeoutTyp || cfip->ChipEraseTimeoutMax) {
382 printk("Typical chip erase timeout: %d ms\n", 1<<cfip->ChipEraseTimeoutTyp);
383 printk("Maximum chip erase timeout: %d ms\n", (1<<cfip->ChipEraseTimeoutMax) * (1<<cfip->ChipEraseTimeoutTyp));
385 else
386 printk("Chip erase not supported\n");
388 printk("Device size: 0x%X bytes (%d MiB)\n", 1 << cfip->DevSize, 1<< (cfip->DevSize - 20));
389 printk("Flash Device Interface description: 0x%4.4X\n", cfip->InterfaceDesc);
390 switch(cfip->InterfaceDesc) {
391 case CFI_INTERFACE_X8_ASYNC:
392 printk(" - x8-only asynchronous interface\n");
393 break;
395 case CFI_INTERFACE_X16_ASYNC:
396 printk(" - x16-only asynchronous interface\n");
397 break;
399 case CFI_INTERFACE_X8_BY_X16_ASYNC:
400 printk(" - supports x8 and x16 via BYTE# with asynchronous interface\n");
401 break;
403 case CFI_INTERFACE_X32_ASYNC:
404 printk(" - x32-only asynchronous interface\n");
405 break;
407 case CFI_INTERFACE_X16_BY_X32_ASYNC:
408 printk(" - supports x16 and x32 via Word# with asynchronous interface\n");
409 break;
411 case CFI_INTERFACE_NOT_ALLOWED:
412 printk(" - Not Allowed / Reserved\n");
413 break;
415 default:
416 printk(" - Unknown\n");
417 break;
420 printk("Max. bytes in buffer write: 0x%x\n", 1<< cfip->MaxBufWriteSize);
421 printk("Number of Erase Block Regions: %d\n", cfip->NumEraseRegions);
424 #endif /* DEBUG_CFI */
426 static struct chip_probe cfi_chip_probe = {
427 .name = "CFI",
428 .probe_chip = cfi_probe_chip
431 struct mtd_info *cfi_probe(struct map_info *map)
434 * Just use the generic probe stuff to call our CFI-specific
435 * chip_probe routine in all the possible permutations, etc.
437 return mtd_do_chip_probe(map, &cfi_chip_probe);
440 static struct mtd_chip_driver cfi_chipdrv = {
441 .probe = cfi_probe,
442 .name = "cfi_probe",
443 .module = THIS_MODULE
446 static int __init cfi_probe_init(void)
448 register_mtd_chip_driver(&cfi_chipdrv);
449 return 0;
452 static void __exit cfi_probe_exit(void)
454 unregister_mtd_chip_driver(&cfi_chipdrv);
457 module_init(cfi_probe_init);
458 module_exit(cfi_probe_exit);
460 MODULE_LICENSE("GPL");
461 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org> et al.");
462 MODULE_DESCRIPTION("Probe code for CFI-compliant flash chips");