/* * Returns the command address according to the given geometry.
*/
uint32_t cfi_build_cmd_addr(uint32_t cmd_ofs, struct map_info *map, struct cfi_private *cfi)
{ unsigned bankwidth = map_bankwidth(map); unsigned interleave = cfi_interleave(cfi); unsigned type = cfi->device_type;
uint32_t addr;
addr = (cmd_ofs * type) * interleave;
/* Modify the unlock address if we are in compatibility mode. * For 16bit devices on 8 bit busses * and 32bit devices on 16 bit busses * set the low bit of the alternating bit sequence of the address.
*/ if (((type * interleave) > bankwidth) && ((cmd_ofs & 0xff) == 0xaa))
addr |= (type >> 1)*interleave;
return addr;
}
EXPORT_SYMBOL(cfi_build_cmd_addr);
/* * Transforms the CFI command for the given geometry (bus width & interleave). * It looks too long to be inline, but in the common case it should almost all * get optimised away.
*/
map_word cfi_build_cmd(u_long cmd, struct map_info *map, struct cfi_private *cfi)
{
map_word val = { {0} }; int wordwidth, words_per_bus, chip_mode, chips_per_word; unsignedlong onecmd; int i;
/* We do it this way to give the compiler a fighting chance of optimising away all the crap for 'bankwidth' larger than an unsigned long, in the common case where that support is
disabled */ if (map_bankwidth_is_large(map)) {
wordwidth = sizeof(unsignedlong);
words_per_bus = (map_bankwidth(map)) / wordwidth; // i.e. normally 1
} else {
wordwidth = map_bankwidth(map);
words_per_bus = 1;
}
/* First, determine what the bit-pattern should be for a single
device, according to chip mode and endianness... */ switch (chip_mode) { default: BUG(); case 1:
onecmd = cmd; break; case 2:
onecmd = cpu_to_cfi16(map, cmd); break; case 4:
onecmd = cpu_to_cfi32(map, cmd); break;
}
/* Now replicate it across the size of an unsigned long, or
just to the bus width as appropriate */ switch (chips_per_word) { default: BUG(); #if BITS_PER_LONG >= 64 case 8:
onecmd |= (onecmd << (chip_mode * 32));
fallthrough; #endif case 4:
onecmd |= (onecmd << (chip_mode * 16));
fallthrough; case 2:
onecmd |= (onecmd << (chip_mode * 8));
fallthrough; case 1:
;
}
/* And finally, for the multi-word case, replicate it
in all words in the structure */ for (i=0; i < words_per_bus; i++) {
val.x[i] = onecmd;
}
return val;
}
EXPORT_SYMBOL(cfi_build_cmd);
unsignedlong cfi_merge_status(map_word val, struct map_info *map, struct cfi_private *cfi)
{ int wordwidth, words_per_bus, chip_mode, chips_per_word; unsignedlong onestat, res = 0; int i;
/* We do it this way to give the compiler a fighting chance of optimising away all the crap for 'bankwidth' larger than an unsigned long, in the common case where that support is
disabled */ if (map_bankwidth_is_large(map)) {
wordwidth = sizeof(unsignedlong);
words_per_bus = (map_bankwidth(map)) / wordwidth; // i.e. normally 1
} else {
wordwidth = map_bankwidth(map);
words_per_bus = 1;
}
onestat = val.x[0]; /* Or all status words together */ for (i=1; i < words_per_bus; i++) {
onestat |= val.x[i];
}
res = onestat; switch(chips_per_word) { default: BUG(); #if BITS_PER_LONG >= 64 case 8:
res |= (onestat >> (chip_mode * 32));
fallthrough; #endif case 4:
res |= (onestat >> (chip_mode * 16));
fallthrough; case 2:
res |= (onestat >> (chip_mode * 8));
fallthrough; case 1:
;
}
/* Last, determine what the bit-pattern should be for a single
device, according to chip mode and endianness... */ switch (chip_mode) { case 1: break; case 2:
res = cfi16_to_cpu(map, res); break; case 4:
res = cfi32_to_cpu(map, res); break; default: BUG();
} return res;
}
EXPORT_SYMBOL(cfi_merge_status);
/* * Sends a CFI command to a bank of flash for the given geometry. * * Returns the offset in flash where the command was written. * If prev_val is non-null, it will be set to the value at the command address, * before the command was written.
*/
uint32_t cfi_send_gen_cmd(u_char cmd, uint32_t cmd_addr, uint32_t base, struct map_info *map, struct cfi_private *cfi, int type, map_word *prev_val)
{
map_word val;
uint32_t addr = base + cfi_build_cmd_addr(cmd_addr, map, cfi);
val = cfi_build_cmd(cmd, map, cfi);
int cfi_varsize_frob(struct mtd_info *mtd, varsize_frob_t frob,
loff_t ofs, size_t len, void *thunk)
{ struct map_info *map = mtd->priv; struct cfi_private *cfi = map->fldrv_priv; unsignedlong adr; int chipnum, ret = 0; int i, first; struct mtd_erase_region_info *regions = mtd->eraseregions;
/* Check that both start and end of the requested erase are * aligned with the erasesize at the appropriate addresses.
*/
i = 0;
/* Skip all erase regions which are ended before the start of the requested erase. Actually, to save on the calculations, we skip to the first erase region which starts after the start of the requested erase, and then go back one.
*/
while (i < mtd->numeraseregions && ofs >= regions[i].offset)
i++;
i--;
/* OK, now i is pointing at the erase region in which this erase request starts. Check the start of the requested erase range is aligned with the erase size which is in effect here.
*/
if (ofs & (regions[i].erasesize-1)) return -EINVAL;
/* Remember the erase region we start on */
first = i;
/* Next, check that the end of the requested erase is aligned * with the erase region at that address.
*/
while (i<mtd->numeraseregions && (ofs + len) >= regions[i].offset)
i++;
/* As before, drop back one to point at the region in which the address actually falls
*/
i--;
if ((ofs + len) & (regions[i].erasesize-1)) return -EINVAL;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.