blob: e63e6749429a29c282323ebc7c5d5949ef284616 [file] [log] [blame]
Thomas Gleixner1f948b42005-11-07 11:15:37 +00001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Common Flash Interface probe code.
3 (C) 2000 Red Hat. GPL'd.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004*/
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#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>
15
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>
20
Thomas Gleixner1f948b42005-11-07 11:15:37 +000021//#define DEBUG_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#ifdef DEBUG_CFI
24static void print_cfi_ident(struct cfi_ident *);
25#endif
26
27static int cfi_probe_chip(struct map_info *map, __u32 base,
28 unsigned long *chip_map, struct cfi_private *cfi);
29static int cfi_chip_setup(struct map_info *map, struct cfi_private *cfi);
30
31struct mtd_info *cfi_probe(struct map_info *map);
32
33#ifdef CONFIG_MTD_XIP
34
35/* only needed for short periods, so this is rather simple */
36#define xip_disable() local_irq_disable()
37
38#define xip_allowed(base, map) \
39do { \
40 (void) map_read(map, base); \
Paulius Zaleckasca5c23c2008-02-27 01:42:39 +020041 xip_iprefetch(); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 local_irq_enable(); \
43} while (0)
44
45#define xip_enable(base, map, cfi) \
46do { \
David Woodhousec314dfd2008-08-07 11:55:07 +010047 cfi_qry_mode_off(base, map, cfi); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 xip_allowed(base, map); \
49} while (0)
50
51#define xip_disable_qry(base, map, cfi) \
52do { \
53 xip_disable(); \
David Woodhousec314dfd2008-08-07 11:55:07 +010054 cfi_qry_mode_on(base, map, cfi); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070055} while (0)
56
57#else
58
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)
63
64#endif
65
66/* check for QRY.
67 in: interleave,type,mode
68 ret: table index, <0 for error
69 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static int __xipram cfi_probe_chip(struct map_info *map, __u32 base,
72 unsigned long *chip_map, struct cfi_private *cfi)
73{
74 int i;
Thomas Gleixner1f948b42005-11-07 11:15:37 +000075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if ((base + 0) >= map->size) {
77 printk(KERN_NOTICE
78 "Probe at base[0x00](0x%08lx) past the end of the map(0x%08lx)\n",
79 (unsigned long)base, map->size -1);
80 return 0;
81 }
82 if ((base + 0xff) >= map->size) {
83 printk(KERN_NOTICE
84 "Probe at base[0x55](0x%08lx) past the end of the map(0x%08lx)\n",
85 (unsigned long)base + 0x55, map->size -1);
86 return 0;
87 }
88
89 xip_disable();
David Woodhousec314dfd2008-08-07 11:55:07 +010090 if (!cfi_qry_mode_on(base, map, cfi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 xip_enable(base, map, cfi);
92 return 0;
93 }
94
95 if (!cfi->numchips) {
Thomas Gleixner1f948b42005-11-07 11:15:37 +000096 /* This is the first time we're called. Set up the CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 stuff accordingly and return */
98 return cfi_chip_setup(map, cfi);
99 }
100
101 /* Check each previous chip to see if it's an alias */
102 for (i=0; i < (base >> cfi->chipshift); i++) {
103 unsigned long start;
104 if(!test_bit(i, chip_map)) {
105 /* Skip location; no valid chip at this address */
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000106 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108 start = i << cfi->chipshift;
109 /* This chip should be in read mode if it's one
110 we've already touched. */
David Woodhousec314dfd2008-08-07 11:55:07 +0100111 if (cfi_qry_present(map, start, cfi)) {
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000112 /* Eep. This chip also had the QRY marker.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * Is it an alias for the new one? */
David Woodhousec314dfd2008-08-07 11:55:07 +0100114 cfi_qry_mode_off(start, map, cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 /* If the QRY marker goes away, it's an alias */
David Woodhousec314dfd2008-08-07 11:55:07 +0100117 if (!cfi_qry_present(map, start, cfi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 xip_allowed(base, map);
119 printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",
120 map->name, base, start);
121 return 0;
122 }
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000123 /* Yes, it's actually got QRY for data. Most
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * unfortunate. Stick the new chip in read mode
125 * too and if it's the same, assume it's an alias. */
126 /* FIXME: Use other modes to do a proper check */
David Woodhousec314dfd2008-08-07 11:55:07 +0100127 cfi_qry_mode_off(base, map, cfi);
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000128
David Woodhousec314dfd2008-08-07 11:55:07 +0100129 if (cfi_qry_present(map, base, cfi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 xip_allowed(base, map);
131 printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",
132 map->name, base, start);
133 return 0;
134 }
135 }
136 }
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* OK, if we got to here, then none of the previous chips appear to
139 be aliases for the current one. */
140 set_bit((base >> cfi->chipshift), chip_map); /* Update chip map */
141 cfi->numchips++;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* Put it back into Read Mode */
David Woodhousec314dfd2008-08-07 11:55:07 +0100144 cfi_qry_mode_off(base, map, cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 xip_allowed(base, map);
146
147 printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank\n",
148 map->name, cfi->interleave, cfi->device_type*8, base,
149 map->bankwidth*8);
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return 1;
152}
153
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000154static int __xipram cfi_chip_setup(struct map_info *map,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct cfi_private *cfi)
156{
157 int ofs_factor = cfi->interleave*cfi->device_type;
158 __u32 base = 0;
159 int num_erase_regions = cfi_read_query(map, base + (0x10 + 28)*ofs_factor);
160 int i;
161
162 xip_enable(base, map, cfi);
163#ifdef DEBUG_CFI
164 printk("Number of erase regions: %d\n", num_erase_regions);
165#endif
166 if (!num_erase_regions)
167 return 0;
168
169 cfi->cfiq = kmalloc(sizeof(struct cfi_ident) + num_erase_regions * 4, GFP_KERNEL);
170 if (!cfi->cfiq) {
171 printk(KERN_WARNING "%s: kmalloc failed for CFI ident structure\n", map->name);
172 return 0;
173 }
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000174
175 memset(cfi->cfiq,0,sizeof(struct cfi_ident));
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 cfi->cfi_mode = CFI_MODE_CFI;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* Read the CFI info structure */
180 xip_disable_qry(base, map, cfi);
181 for (i=0; i<(sizeof(struct cfi_ident) + num_erase_regions * 4); i++)
182 ((unsigned char *)cfi->cfiq)[i] = cfi_read_query(map,base + (0x10 + i)*ofs_factor);
183
184 /* Note we put the device back into Read Mode BEFORE going into Auto
185 * Select Mode, as some devices support nesting of modes, others
186 * don't. This way should always work.
187 * On cmdset 0001 the writes of 0xaa and 0x55 are not needed, and
188 * so should be treated as nops or illegal (and so put the device
189 * back into Read Mode, which is a nop in this case).
190 */
191 cfi_send_gen_cmd(0xf0, 0, base, map, cfi, cfi->device_type, NULL);
192 cfi_send_gen_cmd(0xaa, 0x555, base, map, cfi, cfi->device_type, NULL);
193 cfi_send_gen_cmd(0x55, 0x2aa, base, map, cfi, cfi->device_type, NULL);
194 cfi_send_gen_cmd(0x90, 0x555, base, map, cfi, cfi->device_type, NULL);
Todd Poynor987d2402005-11-15 23:28:20 +0000195 cfi->mfr = cfi_read_query16(map, base);
196 cfi->id = cfi_read_query16(map, base + ofs_factor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Trent Piephofecb8862008-03-30 21:19:29 -0700198 /* Get AMD/Spansion extended JEDEC ID */
199 if (cfi->mfr == CFI_MFR_AMD && (cfi->id & 0xff) == 0x7e)
200 cfi->id = cfi_read_query(map, base + 0xe * ofs_factor) << 8 |
201 cfi_read_query(map, base + 0xf * ofs_factor);
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* Put it back into Read Mode */
David Woodhousec314dfd2008-08-07 11:55:07 +0100204 cfi_qry_mode_off(base, map, cfi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 xip_allowed(base, map);
206
207 /* Do any necessary byteswapping */
208 cfi->cfiq->P_ID = le16_to_cpu(cfi->cfiq->P_ID);
209
210 cfi->cfiq->P_ADR = le16_to_cpu(cfi->cfiq->P_ADR);
211 cfi->cfiq->A_ID = le16_to_cpu(cfi->cfiq->A_ID);
212 cfi->cfiq->A_ADR = le16_to_cpu(cfi->cfiq->A_ADR);
213 cfi->cfiq->InterfaceDesc = le16_to_cpu(cfi->cfiq->InterfaceDesc);
214 cfi->cfiq->MaxBufWriteSize = le16_to_cpu(cfi->cfiq->MaxBufWriteSize);
215
216#ifdef DEBUG_CFI
217 /* Dump the information therein */
218 print_cfi_ident(cfi->cfiq);
219#endif
220
221 for (i=0; i<cfi->cfiq->NumEraseRegions; i++) {
222 cfi->cfiq->EraseRegionInfo[i] = le32_to_cpu(cfi->cfiq->EraseRegionInfo[i]);
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000223
224#ifdef DEBUG_CFI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 printk(" Erase Region #%d: BlockSize 0x%4.4X bytes, %d blocks\n",
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000226 i, (cfi->cfiq->EraseRegionInfo[i] >> 8) & ~0xff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 (cfi->cfiq->EraseRegionInfo[i] & 0xffff) + 1);
228#endif
229 }
230
231 printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank\n",
232 map->name, cfi->interleave, cfi->device_type*8, base,
233 map->bankwidth*8);
234
235 return 1;
236}
237
238#ifdef DEBUG_CFI
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000239static char *vendorname(__u16 vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 switch (vendor) {
242 case P_ID_NONE:
243 return "None";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 case P_ID_INTEL_EXT:
246 return "Intel/Sharp Extended";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 case P_ID_AMD_STD:
249 return "AMD/Fujitsu Standard";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 case P_ID_INTEL_STD:
252 return "Intel/Sharp Standard";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 case P_ID_AMD_EXT:
255 return "AMD/Fujitsu Extended";
256
257 case P_ID_WINBOND:
258 return "Winbond Standard";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 case P_ID_ST_ADV:
261 return "ST Advanced";
262
263 case P_ID_MITSUBISHI_STD:
264 return "Mitsubishi Standard";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 case P_ID_MITSUBISHI_EXT:
267 return "Mitsubishi Extended";
268
269 case P_ID_SST_PAGE:
270 return "SST Page Write";
271
272 case P_ID_INTEL_PERFORMANCE:
273 return "Intel Performance Code";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 case P_ID_INTEL_DATA:
276 return "Intel Data";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 case P_ID_RESERVED:
279 return "Not Allowed / Reserved for Future Use";
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 default:
282 return "Unknown";
283 }
284}
285
286
287static void print_cfi_ident(struct cfi_ident *cfip)
288{
289#if 0
290 if (cfip->qry[0] != 'Q' || cfip->qry[1] != 'R' || cfip->qry[2] != 'Y') {
291 printk("Invalid CFI ident structure.\n");
292 return;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000293 }
294#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 printk("Primary Vendor Command Set: %4.4X (%s)\n", cfip->P_ID, vendorname(cfip->P_ID));
296 if (cfip->P_ADR)
297 printk("Primary Algorithm Table at %4.4X\n", cfip->P_ADR);
298 else
299 printk("No Primary Algorithm Table\n");
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 printk("Alternative Vendor Command Set: %4.4X (%s)\n", cfip->A_ID, vendorname(cfip->A_ID));
302 if (cfip->A_ADR)
303 printk("Alternate Algorithm Table at %4.4X\n", cfip->A_ADR);
304 else
305 printk("No Alternate Algorithm Table\n");
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000306
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 printk("Vcc Minimum: %2d.%d V\n", cfip->VccMin >> 4, cfip->VccMin & 0xf);
309 printk("Vcc Maximum: %2d.%d V\n", cfip->VccMax >> 4, cfip->VccMax & 0xf);
310 if (cfip->VppMin) {
311 printk("Vpp Minimum: %2d.%d V\n", cfip->VppMin >> 4, cfip->VppMin & 0xf);
312 printk("Vpp Maximum: %2d.%d V\n", cfip->VppMax >> 4, cfip->VppMax & 0xf);
313 }
314 else
315 printk("No Vpp line\n");
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000316
David Woodhouse151e7652006-05-14 01:51:54 +0100317 printk("Typical byte/word write timeout: %d µs\n", 1<<cfip->WordWriteTimeoutTyp);
318 printk("Maximum byte/word write timeout: %d µs\n", (1<<cfip->WordWriteTimeoutMax) * (1<<cfip->WordWriteTimeoutTyp));
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (cfip->BufWriteTimeoutTyp || cfip->BufWriteTimeoutMax) {
David Woodhouse151e7652006-05-14 01:51:54 +0100321 printk("Typical full buffer write timeout: %d µs\n", 1<<cfip->BufWriteTimeoutTyp);
322 printk("Maximum full buffer write timeout: %d µs\n", (1<<cfip->BufWriteTimeoutMax) * (1<<cfip->BufWriteTimeoutTyp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 else
325 printk("Full buffer write not supported\n");
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 printk("Typical block erase timeout: %d ms\n", 1<<cfip->BlockEraseTimeoutTyp);
328 printk("Maximum block erase timeout: %d ms\n", (1<<cfip->BlockEraseTimeoutMax) * (1<<cfip->BlockEraseTimeoutTyp));
329 if (cfip->ChipEraseTimeoutTyp || cfip->ChipEraseTimeoutMax) {
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000330 printk("Typical chip erase timeout: %d ms\n", 1<<cfip->ChipEraseTimeoutTyp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 printk("Maximum chip erase timeout: %d ms\n", (1<<cfip->ChipEraseTimeoutMax) * (1<<cfip->ChipEraseTimeoutTyp));
332 }
333 else
334 printk("Chip erase not supported\n");
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 printk("Device size: 0x%X bytes (%d MiB)\n", 1 << cfip->DevSize, 1<< (cfip->DevSize - 20));
337 printk("Flash Device Interface description: 0x%4.4X\n", cfip->InterfaceDesc);
338 switch(cfip->InterfaceDesc) {
Bartlomiej Siekade7921f2007-11-26 18:55:18 +0100339 case CFI_INTERFACE_X8_ASYNC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 printk(" - x8-only asynchronous interface\n");
341 break;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000342
Bartlomiej Siekade7921f2007-11-26 18:55:18 +0100343 case CFI_INTERFACE_X16_ASYNC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 printk(" - x16-only asynchronous interface\n");
345 break;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000346
Bartlomiej Siekade7921f2007-11-26 18:55:18 +0100347 case CFI_INTERFACE_X8_BY_X16_ASYNC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 printk(" - supports x8 and x16 via BYTE# with asynchronous interface\n");
349 break;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000350
Bartlomiej Siekade7921f2007-11-26 18:55:18 +0100351 case CFI_INTERFACE_X32_ASYNC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 printk(" - x32-only asynchronous interface\n");
353 break;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000354
Bartlomiej Siekade7921f2007-11-26 18:55:18 +0100355 case CFI_INTERFACE_X16_BY_X32_ASYNC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 printk(" - supports x16 and x32 via Word# with asynchronous interface\n");
357 break;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000358
Bartlomiej Siekade7921f2007-11-26 18:55:18 +0100359 case CFI_INTERFACE_NOT_ALLOWED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 printk(" - Not Allowed / Reserved\n");
361 break;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 default:
364 printk(" - Unknown\n");
365 break;
366 }
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 printk("Max. bytes in buffer write: 0x%x\n", 1<< cfip->MaxBufWriteSize);
369 printk("Number of Erase Block Regions: %d\n", cfip->NumEraseRegions);
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372#endif /* DEBUG_CFI */
373
374static struct chip_probe cfi_chip_probe = {
375 .name = "CFI",
376 .probe_chip = cfi_probe_chip
377};
378
379struct mtd_info *cfi_probe(struct map_info *map)
380{
381 /*
382 * Just use the generic probe stuff to call our CFI-specific
383 * chip_probe routine in all the possible permutations, etc.
384 */
385 return mtd_do_chip_probe(map, &cfi_chip_probe);
386}
387
388static struct mtd_chip_driver cfi_chipdrv = {
389 .probe = cfi_probe,
390 .name = "cfi_probe",
391 .module = THIS_MODULE
392};
393
Adrian Bunk2b9175c2005-11-29 14:49:38 +0000394static int __init cfi_probe_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 register_mtd_chip_driver(&cfi_chipdrv);
397 return 0;
398}
399
400static void __exit cfi_probe_exit(void)
401{
402 unregister_mtd_chip_driver(&cfi_chipdrv);
403}
404
405module_init(cfi_probe_init);
406module_exit(cfi_probe_exit);
407
408MODULE_LICENSE("GPL");
409MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org> et al.");
410MODULE_DESCRIPTION("Probe code for CFI-compliant flash chips");