Skip to content

Commit b1c97e2

Browse files
Aaron SierraBoris Brezillon
authored andcommitted
mtd: cfi: Support early CFI fixups
Some CFI devices need fixups that affect the number of chips detected, but the current fixup infrastructure (struct cfi_fixup and cfi_fixup()) does not cover this situation. Introduce struct cfi_early_fixup and cfi_early_fixup() to fill the void. Signed-off-by: Aaron Sierra <asierra@xes-inc.com> Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
1 parent 051529d commit b1c97e2

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

drivers/mtd/chips/cfi_probe.c

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,30 @@ do { \
6363

6464
#endif
6565

66+
/*
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.
70+
*/
71+
struct cfi_early_fixup {
72+
uint16_t mfr;
73+
uint16_t id;
74+
void (*fixup)(struct cfi_private *cfi);
75+
};
76+
77+
static void cfi_early_fixup(struct cfi_private *cfi,
78+
const struct cfi_early_fixup *fixups)
79+
{
80+
const struct cfi_early_fixup *f;
81+
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);
86+
}
87+
}
88+
}
89+
6690
/* check for QRY.
6791
in: interleave,type,mode
6892
ret: table index, <0 for error
@@ -151,6 +175,10 @@ static int __xipram cfi_probe_chip(struct map_info *map, __u32 base,
151175
return 1;
152176
}
153177

178+
static const struct cfi_early_fixup cfi_early_fixup_table[] = {
179+
{ },
180+
};
181+
154182
static int __xipram cfi_chip_setup(struct map_info *map,
155183
struct cfi_private *cfi)
156184
{
@@ -235,6 +263,8 @@ static int __xipram cfi_chip_setup(struct map_info *map,
235263
cfi_qry_mode_off(base, map, cfi);
236264
xip_allowed(base, map);
237265

266+
cfi_early_fixup(cfi, cfi_early_fixup_table);
267+
238268
printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank. Manufacturer ID %#08x Chip ID %#08x\n",
239269
map->name, cfi->interleave, cfi->device_type*8, base,
240270
map->bankwidth*8, cfi->mfr, cfi->id);

0 commit comments

Comments
 (0)