blob: 4d4f978410161e63ed3a72e448fce6959d799ddf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Routines common to all CFI-type probes.
3 * (C) 2001-2003 Red Hat, Inc.
4 * GPL'd
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7#include <linux/kernel.h>
8#include <linux/slab.h>
9#include <linux/module.h>
10#include <linux/mtd/mtd.h>
11#include <linux/mtd/map.h>
12#include <linux/mtd/cfi.h>
13#include <linux/mtd/gen_probe.h>
14
15static struct mtd_info *check_cmd_set(struct map_info *, int);
16static struct cfi_private *genprobe_ident_chips(struct map_info *map,
17 struct chip_probe *cp);
18static int genprobe_new_chip(struct map_info *map, struct chip_probe *cp,
19 struct cfi_private *cfi);
20
21struct mtd_info *mtd_do_chip_probe(struct map_info *map, struct chip_probe *cp)
22{
Sergei Shtylyovf454b432019-07-03 23:26:27 +030023 struct mtd_info *mtd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 struct cfi_private *cfi;
25
26 /* First probe the map to see if we have CFI stuff there. */
27 cfi = genprobe_ident_chips(map, cp);
Thomas Gleixner1f948b42005-11-07 11:15:37 +000028
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 if (!cfi)
30 return NULL;
31
32 map->fldrv_priv = cfi;
33 /* OK we liked it. Now find a driver for the command set it talks */
34
35 mtd = check_cmd_set(map, 1); /* First the primary cmdset */
36 if (!mtd)
37 mtd = check_cmd_set(map, 0); /* Then the secondary */
Thomas Gleixner1f948b42005-11-07 11:15:37 +000038
David Woodhouse0f5ae3d2006-05-14 01:40:50 +010039 if (mtd) {
40 if (mtd->size > map->size) {
David Woodhousef6a673b2006-05-17 22:03:10 +010041 printk(KERN_WARNING "Reducing visibility of %ldKiB chip to %ldKiB\n",
David Woodhousec9ac5972006-11-30 08:17:38 +000042 (unsigned long)mtd->size >> 10,
David Woodhouse0f5ae3d2006-05-14 01:40:50 +010043 (unsigned long)map->size >> 10);
44 mtd->size = map->size;
45 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return mtd;
David Woodhouse0f5ae3d2006-05-14 01:40:50 +010047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 printk(KERN_WARNING"gen_probe: No supported Vendor Command Set found\n");
Thomas Gleixner1f948b42005-11-07 11:15:37 +000050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 kfree(cfi->cfiq);
52 kfree(cfi);
53 map->fldrv_priv = NULL;
54 return NULL;
55}
56EXPORT_SYMBOL(mtd_do_chip_probe);
57
58
59static struct cfi_private *genprobe_ident_chips(struct map_info *map, struct chip_probe *cp)
60{
61 struct cfi_private cfi;
62 struct cfi_private *retcfi;
63 unsigned long *chip_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 int max_chips;
Christophe JAILLETdd8a2e82021-11-21 16:59:12 +010065 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 memset(&cfi, 0, sizeof(cfi));
68
Thomas Gleixner1f948b42005-11-07 11:15:37 +000069 /* Call the probetype-specific code with all permutations of
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 interleave and device type, etc. */
71 if (!genprobe_new_chip(map, cp, &cfi)) {
72 /* The probe didn't like it */
Jean Delvare3a3688b2008-07-10 13:37:08 +020073 pr_debug("%s: Found no %s device at location zero\n",
74 cp->name, map->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return NULL;
Thomas Gleixner1f948b42005-11-07 11:15:37 +000076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#if 0 /* Let the CFI probe routine do this sanity check. The Intel and AMD
79 probe routines won't ever return a broken CFI structure anyway,
80 because they make them up themselves.
81 */
82 if (cfi.cfiq->NumEraseRegions == 0) {
83 printk(KERN_WARNING "Number of erase regions is zero\n");
84 kfree(cfi.cfiq);
85 return NULL;
86 }
87#endif
88 cfi.chipshift = cfi.cfiq->DevSize;
89
90 if (cfi_interleave_is_1(&cfi)) {
91 ;
92 } else if (cfi_interleave_is_2(&cfi)) {
93 cfi.chipshift++;
94 } else if (cfi_interleave_is_4((&cfi))) {
95 cfi.chipshift += 2;
96 } else if (cfi_interleave_is_8(&cfi)) {
97 cfi.chipshift += 3;
98 } else {
99 BUG();
100 }
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 cfi.numchips = 1;
103
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000104 /*
105 * Allocate memory for bitmap of valid chips.
106 * Align bitmap storage size to full byte.
107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 max_chips = map->size >> cfi.chipshift;
David Woodhouse0f5ae3d2006-05-14 01:40:50 +0100109 if (!max_chips) {
110 printk(KERN_WARNING "NOR chip too large to fit in mapping. Attempting to cope...\n");
111 max_chips = 1;
112 }
113
Christophe JAILLETdd8a2e82021-11-21 16:59:12 +0100114 chip_map = bitmap_zalloc(max_chips, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (!chip_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 kfree(cfi.cfiq);
117 return NULL;
118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 set_bit(0, chip_map); /* Mark first chip valid */
121
122 /*
123 * Now probe for other chips, checking sensibly for aliases while
124 * we're at it. The new_chip probe above should have let the first
125 * chip in read mode.
126 */
127
128 for (i = 1; i < max_chips; i++) {
129 cp->probe_chip(map, i << cfi.chipshift, chip_map, &cfi);
130 }
131
132 /*
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000133 * Now allocate the space for the structures we need to return to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * our caller, and copy the appropriate data into them.
135 */
136
Gustavo A. R. Silva9cb76a62019-01-08 09:36:01 -0600137 retcfi = kmalloc(struct_size(retcfi, chips, cfi.numchips), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 if (!retcfi) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 kfree(cfi.cfiq);
Christophe JAILLETdd8a2e82021-11-21 16:59:12 +0100141 bitmap_free(chip_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return NULL;
143 }
144
145 memcpy(retcfi, &cfi, sizeof(cfi));
146 memset(&retcfi->chips[0], 0, sizeof(struct flchip) * cfi.numchips);
147
148 for (i = 0, j = 0; (j < cfi.numchips) && (i < max_chips); i++) {
149 if(test_bit(i, chip_map)) {
150 struct flchip *pchip = &retcfi->chips[j++];
151
152 pchip->start = (i << cfi.chipshift);
153 pchip->state = FL_READY;
154 init_waitqueue_head(&pchip->wq);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200155 mutex_init(&pchip->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157 }
158
Christophe JAILLETdd8a2e82021-11-21 16:59:12 +0100159 bitmap_free(chip_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return retcfi;
161}
162
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static int genprobe_new_chip(struct map_info *map, struct chip_probe *cp,
165 struct cfi_private *cfi)
166{
167 int min_chips = (map_bankwidth(map)/4?:1); /* At most 4-bytes wide. */
168 int max_chips = map_bankwidth(map); /* And minimum 1 */
169 int nr_chips, type;
170
Russell King6170b432005-01-24 23:49:54 +0000171 for (nr_chips = max_chips; nr_chips >= min_chips; nr_chips >>= 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 if (!cfi_interleave_supported(nr_chips))
174 continue;
175
176 cfi->interleave = nr_chips;
177
178 /* Minimum device size. Don't look for one 8-bit device
179 in a 16-bit bus, etc. */
180 type = map_bankwidth(map) / nr_chips;
181
182 for (; type <= CFI_DEVICETYPE_X32; type<<=1) {
183 cfi->device_type = type;
184
185 if (cp->probe_chip(map, 0, NULL, cfi))
186 return 1;
187 }
188 }
189 return 0;
190}
191
192typedef struct mtd_info *cfi_cmdset_fn_t(struct map_info *, int);
193
194extern cfi_cmdset_fn_t cfi_cmdset_0001;
195extern cfi_cmdset_fn_t cfi_cmdset_0002;
196extern cfi_cmdset_fn_t cfi_cmdset_0020;
197
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000198static inline struct mtd_info *cfi_cmdset_unknown(struct map_info *map,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 int primary)
200{
201 struct cfi_private *cfi = map->fldrv_priv;
202 __u16 type = primary?cfi->cfiq->P_ID:cfi->cfiq->A_ID;
David Woodhousea15bdee2006-05-08 22:35:05 +0100203#ifdef CONFIG_MODULES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 cfi_cmdset_fn_t *probe_function;
Geert Uytterhoeven48360242018-06-28 10:20:11 +0200205 char *probename;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Geert Uytterhoeven48360242018-06-28 10:20:11 +0200207 probename = kasprintf(GFP_KERNEL, "cfi_cmdset_%4.4X", type);
208 if (!probename)
209 return NULL;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000210
David Woodhouse5fc3dbc2006-05-20 02:41:34 +0100211 probe_function = __symbol_get(probename);
David Woodhousea15bdee2006-05-08 22:35:05 +0100212 if (!probe_function) {
Kees Cookf9827dd2013-07-08 06:05:12 -0700213 request_module("cfi_cmdset_%4.4X", type);
David Woodhouse5fc3dbc2006-05-20 02:41:34 +0100214 probe_function = __symbol_get(probename);
David Woodhousea15bdee2006-05-08 22:35:05 +0100215 }
Geert Uytterhoeven48360242018-06-28 10:20:11 +0200216 kfree(probename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 if (probe_function) {
219 struct mtd_info *mtd;
220
221 mtd = (*probe_function)(map, primary);
222 /* If it was happy, it'll have increased its own use count */
David Woodhousea15bdee2006-05-08 22:35:05 +0100223 symbol_put_addr(probe_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return mtd;
225 }
226#endif
David Woodhousea15bdee2006-05-08 22:35:05 +0100227 printk(KERN_NOTICE "Support for command set %04X not present\n", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 return NULL;
230}
231
232static struct mtd_info *check_cmd_set(struct map_info *map, int primary)
233{
234 struct cfi_private *cfi = map->fldrv_priv;
235 __u16 type = primary?cfi->cfiq->P_ID:cfi->cfiq->A_ID;
Thomas Gleixner1f948b42005-11-07 11:15:37 +0000236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (type == P_ID_NONE || type == P_ID_RESERVED)
238 return NULL;
239
240 switch(type){
David Woodhousea15bdee2006-05-08 22:35:05 +0100241 /* We need these for the !CONFIG_MODULES case,
242 because symbol_get() doesn't work there */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#ifdef CONFIG_MTD_CFI_INTELEXT
Guillaume LECERF58598862010-04-24 17:58:07 +0200244 case P_ID_INTEL_EXT:
245 case P_ID_INTEL_STD:
246 case P_ID_INTEL_PERFORMANCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return cfi_cmdset_0001(map, primary);
248#endif
249#ifdef CONFIG_MTD_CFI_AMDSTD
Guillaume LECERF58598862010-04-24 17:58:07 +0200250 case P_ID_AMD_STD:
Guillaume LECERF83dcd3b2010-04-24 17:58:22 +0200251 case P_ID_SST_OLD:
Guillaume LECERF80461122010-05-20 16:54:10 +0200252 case P_ID_WINBOND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return cfi_cmdset_0002(map, primary);
254#endif
255#ifdef CONFIG_MTD_CFI_STAA
Guillaume LECERF58598862010-04-24 17:58:07 +0200256 case P_ID_ST_ADV:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return cfi_cmdset_0020(map, primary);
258#endif
David Woodhousea15bdee2006-05-08 22:35:05 +0100259 default:
260 return cfi_cmdset_unknown(map, primary);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
264MODULE_LICENSE("GPL");
265MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
266MODULE_DESCRIPTION("Helper routines for flash chip probe code");