2 Common Flash Interface probe code.
3 (C) 2000 Red Hat. GPL'd.
6 #include <linux/module.h>
7 #include <linux/types.h>
8 #include <linux/kernel.h>
9 #include <linux/init.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>
24 static void print_cfi_ident(struct cfi_ident
*);
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
);
35 /* only needed for short periods, so this is rather simple */
36 #define xip_disable() local_irq_disable()
38 #define xip_allowed(base, map) \
40 (void) map_read(map, base); \
45 #define xip_enable(base, map, cfi) \
47 cfi_qry_mode_off(base, map, cfi); \
48 xip_allowed(base, map); \
51 #define xip_disable_qry(base, map, cfi) \
54 cfi_qry_mode_on(base, map, cfi); \
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)
67 in: interleave,type,mode
68 ret: table index, <0 for error
71 static int __xipram
cfi_probe_chip(struct map_info
*map
, __u32 base
,
72 unsigned long *chip_map
, struct cfi_private
*cfi
)
76 if ((base
+ 0) >= map
->size
) {
78 "Probe at base[0x00](0x%08lx) past the end of the map(0x%08lx)\n",
79 (unsigned long)base
, map
->size
-1);
82 if ((base
+ 0xff) >= map
->size
) {
84 "Probe at base[0x55](0x%08lx) past the end of the map(0x%08lx)\n",
85 (unsigned long)base
+ 0x55, map
->size
-1);
90 if (!cfi_qry_mode_on(base
, map
, cfi
)) {
91 xip_enable(base
, map
, cfi
);
96 /* This is the first time we're called. Set up the CFI
97 stuff accordingly and return */
98 return cfi_chip_setup(map
, cfi
);
101 /* Check each previous chip to see if it's an alias */
102 for (i
=0; i
< (base
>> cfi
->chipshift
); i
++) {
104 if(!test_bit(i
, chip_map
)) {
105 /* Skip location; no valid chip at this address */
108 start
= i
<< cfi
->chipshift
;
109 /* This chip should be in read mode if it's one
110 we've already touched. */
111 if (cfi_qry_present(map
, start
, cfi
)) {
112 /* Eep. This chip also had the QRY marker.
113 * Is it an alias for the new one? */
114 cfi_qry_mode_off(start
, map
, cfi
);
116 /* If the QRY marker goes away, it's an alias */
117 if (!cfi_qry_present(map
, start
, cfi
)) {
118 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
);
123 /* Yes, it's actually got QRY for data. Most
124 * 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 */
127 cfi_qry_mode_off(base
, map
, cfi
);
129 if (cfi_qry_present(map
, base
, cfi
)) {
130 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
);
138 /* 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 */
143 /* Put it back into Read Mode */
144 cfi_qry_mode_off(base
, map
, cfi
);
145 xip_allowed(base
, map
);
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
,
154 static int __xipram
cfi_chip_setup(struct map_info
*map
,
155 struct cfi_private
*cfi
)
157 int ofs_factor
= cfi
->interleave
*cfi
->device_type
;
159 int num_erase_regions
= cfi_read_query(map
, base
+ (0x10 + 28)*ofs_factor
);
161 int addr_unlock1
= 0x555, addr_unlock2
= 0x2AA;
163 xip_enable(base
, map
, cfi
);
165 printk("Number of erase regions: %d\n", num_erase_regions
);
167 if (!num_erase_regions
)
170 cfi
->cfiq
= kmalloc(sizeof(struct cfi_ident
) + num_erase_regions
* 4, GFP_KERNEL
);
172 printk(KERN_WARNING
"%s: kmalloc failed for CFI ident structure\n", map
->name
);
176 memset(cfi
->cfiq
,0,sizeof(struct cfi_ident
));
178 cfi
->cfi_mode
= CFI_MODE_CFI
;
180 cfi
->sector_erase_cmd
= CMD(0x30);
182 /* Read the CFI info structure */
183 xip_disable_qry(base
, map
, cfi
);
184 for (i
=0; i
<(sizeof(struct cfi_ident
) + num_erase_regions
* 4); i
++)
185 ((unsigned char *)cfi
->cfiq
)[i
] = cfi_read_query(map
,base
+ (0x10 + i
)*ofs_factor
);
187 /* Do any necessary byteswapping */
188 cfi
->cfiq
->P_ID
= le16_to_cpu(cfi
->cfiq
->P_ID
);
190 cfi
->cfiq
->P_ADR
= le16_to_cpu(cfi
->cfiq
->P_ADR
);
191 cfi
->cfiq
->A_ID
= le16_to_cpu(cfi
->cfiq
->A_ID
);
192 cfi
->cfiq
->A_ADR
= le16_to_cpu(cfi
->cfiq
->A_ADR
);
193 cfi
->cfiq
->InterfaceDesc
= le16_to_cpu(cfi
->cfiq
->InterfaceDesc
);
194 cfi
->cfiq
->MaxBufWriteSize
= le16_to_cpu(cfi
->cfiq
->MaxBufWriteSize
);
197 /* Dump the information therein */
198 print_cfi_ident(cfi
->cfiq
);
201 for (i
=0; i
<cfi
->cfiq
->NumEraseRegions
; i
++) {
202 cfi
->cfiq
->EraseRegionInfo
[i
] = le32_to_cpu(cfi
->cfiq
->EraseRegionInfo
[i
]);
205 printk(" Erase Region #%d: BlockSize 0x%4.4X bytes, %d blocks\n",
206 i
, (cfi
->cfiq
->EraseRegionInfo
[i
] >> 8) & ~0xff,
207 (cfi
->cfiq
->EraseRegionInfo
[i
] & 0xffff) + 1);
211 if (cfi
->cfiq
->P_ID
== P_ID_SST_OLD
) {
212 addr_unlock1
= 0x5555;
213 addr_unlock2
= 0x2AAA;
217 * Note we put the device back into Read Mode BEFORE going into Auto
218 * Select Mode, as some devices support nesting of modes, others
219 * don't. This way should always work.
220 * On cmdset 0001 the writes of 0xaa and 0x55 are not needed, and
221 * so should be treated as nops or illegal (and so put the device
222 * back into Read Mode, which is a nop in this case).
224 cfi_send_gen_cmd(0xf0, 0, base
, map
, cfi
, cfi
->device_type
, NULL
);
225 cfi_send_gen_cmd(0xaa, addr_unlock1
, base
, map
, cfi
, cfi
->device_type
, NULL
);
226 cfi_send_gen_cmd(0x55, addr_unlock2
, base
, map
, cfi
, cfi
->device_type
, NULL
);
227 cfi_send_gen_cmd(0x90, addr_unlock1
, base
, map
, cfi
, cfi
->device_type
, NULL
);
228 cfi
->mfr
= cfi_read_query16(map
, base
);
229 cfi
->id
= cfi_read_query16(map
, base
+ ofs_factor
);
231 /* Get AMD/Spansion extended JEDEC ID */
232 if (cfi
->mfr
== CFI_MFR_AMD
&& (cfi
->id
& 0xff) == 0x7e)
233 cfi
->id
= cfi_read_query(map
, base
+ 0xe * ofs_factor
) << 8 |
234 cfi_read_query(map
, base
+ 0xf * ofs_factor
);
236 /* Put it back into Read Mode */
237 cfi_qry_mode_off(base
, map
, cfi
);
238 xip_allowed(base
, map
);
240 printk(KERN_INFO
"%s: Found %d x%d devices at 0x%x in %d-bit bank. Manufacturer ID %#08x Chip ID %#08x\n",
241 map
->name
, cfi
->interleave
, cfi
->device_type
*8, base
,
242 map
->bankwidth
*8, cfi
->mfr
, cfi
->id
);
248 static char *vendorname(__u16 vendor
)
255 return "Intel/Sharp Extended";
258 return "AMD/Fujitsu Standard";
261 return "Intel/Sharp Standard";
264 return "AMD/Fujitsu Extended";
267 return "Winbond Standard";
270 return "ST Advanced";
272 case P_ID_MITSUBISHI_STD
:
273 return "Mitsubishi Standard";
275 case P_ID_MITSUBISHI_EXT
:
276 return "Mitsubishi Extended";
279 return "SST Page Write";
282 return "SST 39VF160x/39VF320x";
284 case P_ID_INTEL_PERFORMANCE
:
285 return "Intel Performance Code";
287 case P_ID_INTEL_DATA
:
291 return "Not Allowed / Reserved for Future Use";
299 static void print_cfi_ident(struct cfi_ident
*cfip
)
302 if (cfip
->qry
[0] != 'Q' || cfip
->qry
[1] != 'R' || cfip
->qry
[2] != 'Y') {
303 printk("Invalid CFI ident structure.\n");
307 printk("Primary Vendor Command Set: %4.4X (%s)\n", cfip
->P_ID
, vendorname(cfip
->P_ID
));
309 printk("Primary Algorithm Table at %4.4X\n", cfip
->P_ADR
);
311 printk("No Primary Algorithm Table\n");
313 printk("Alternative Vendor Command Set: %4.4X (%s)\n", cfip
->A_ID
, vendorname(cfip
->A_ID
));
315 printk("Alternate Algorithm Table at %4.4X\n", cfip
->A_ADR
);
317 printk("No Alternate Algorithm Table\n");
320 printk("Vcc Minimum: %2d.%d V\n", cfip
->VccMin
>> 4, cfip
->VccMin
& 0xf);
321 printk("Vcc Maximum: %2d.%d V\n", cfip
->VccMax
>> 4, cfip
->VccMax
& 0xf);
323 printk("Vpp Minimum: %2d.%d V\n", cfip
->VppMin
>> 4, cfip
->VppMin
& 0xf);
324 printk("Vpp Maximum: %2d.%d V\n", cfip
->VppMax
>> 4, cfip
->VppMax
& 0xf);
327 printk("No Vpp line\n");
329 printk("Typical byte/word write timeout: %d µs\n", 1<<cfip
->WordWriteTimeoutTyp
);
330 printk("Maximum byte/word write timeout: %d µs\n", (1<<cfip
->WordWriteTimeoutMax
) * (1<<cfip
->WordWriteTimeoutTyp
));
332 if (cfip
->BufWriteTimeoutTyp
|| cfip
->BufWriteTimeoutMax
) {
333 printk("Typical full buffer write timeout: %d µs\n", 1<<cfip
->BufWriteTimeoutTyp
);
334 printk("Maximum full buffer write timeout: %d µs\n", (1<<cfip
->BufWriteTimeoutMax
) * (1<<cfip
->BufWriteTimeoutTyp
));
337 printk("Full buffer write not supported\n");
339 printk("Typical block erase timeout: %d ms\n", 1<<cfip
->BlockEraseTimeoutTyp
);
340 printk("Maximum block erase timeout: %d ms\n", (1<<cfip
->BlockEraseTimeoutMax
) * (1<<cfip
->BlockEraseTimeoutTyp
));
341 if (cfip
->ChipEraseTimeoutTyp
|| cfip
->ChipEraseTimeoutMax
) {
342 printk("Typical chip erase timeout: %d ms\n", 1<<cfip
->ChipEraseTimeoutTyp
);
343 printk("Maximum chip erase timeout: %d ms\n", (1<<cfip
->ChipEraseTimeoutMax
) * (1<<cfip
->ChipEraseTimeoutTyp
));
346 printk("Chip erase not supported\n");
348 printk("Device size: 0x%X bytes (%d MiB)\n", 1 << cfip
->DevSize
, 1<< (cfip
->DevSize
- 20));
349 printk("Flash Device Interface description: 0x%4.4X\n", cfip
->InterfaceDesc
);
350 switch(cfip
->InterfaceDesc
) {
351 case CFI_INTERFACE_X8_ASYNC
:
352 printk(" - x8-only asynchronous interface\n");
355 case CFI_INTERFACE_X16_ASYNC
:
356 printk(" - x16-only asynchronous interface\n");
359 case CFI_INTERFACE_X8_BY_X16_ASYNC
:
360 printk(" - supports x8 and x16 via BYTE# with asynchronous interface\n");
363 case CFI_INTERFACE_X32_ASYNC
:
364 printk(" - x32-only asynchronous interface\n");
367 case CFI_INTERFACE_X16_BY_X32_ASYNC
:
368 printk(" - supports x16 and x32 via Word# with asynchronous interface\n");
371 case CFI_INTERFACE_NOT_ALLOWED
:
372 printk(" - Not Allowed / Reserved\n");
376 printk(" - Unknown\n");
380 printk("Max. bytes in buffer write: 0x%x\n", 1<< cfip
->MaxBufWriteSize
);
381 printk("Number of Erase Block Regions: %d\n", cfip
->NumEraseRegions
);
384 #endif /* DEBUG_CFI */
386 static struct chip_probe cfi_chip_probe
= {
388 .probe_chip
= cfi_probe_chip
391 struct mtd_info
*cfi_probe(struct map_info
*map
)
394 * Just use the generic probe stuff to call our CFI-specific
395 * chip_probe routine in all the possible permutations, etc.
397 return mtd_do_chip_probe(map
, &cfi_chip_probe
);
400 static struct mtd_chip_driver cfi_chipdrv
= {
403 .module
= THIS_MODULE
406 static int __init
cfi_probe_init(void)
408 register_mtd_chip_driver(&cfi_chipdrv
);
412 static void __exit
cfi_probe_exit(void)
414 unregister_mtd_chip_driver(&cfi_chipdrv
);
417 module_init(cfi_probe_init
);
418 module_exit(cfi_probe_exit
);
420 MODULE_LICENSE("GPL");
421 MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org> et al.");
422 MODULE_DESCRIPTION("Probe code for CFI-compliant flash chips");