I have sent this mail to David Woodhouse, the maintainer of MTD (memory technology devices) part. He answers > At first glance, you seem to be right -- you'll not get false matches > for 4x interleave when in fact the interleave is 2x, so we should check > for 4x first. > > Can you send your patch (and explanation) to the mailing list too, so > that others can comment on it? It's been a while since I've looked hard > at anything but the CFI probes. Thanks. And now my original mail: I have a question, concerning the flash chip helper routines linux/drivers/mtd/chips/gen_probe.c In my opinion, the searching sequence, to find the flash geometry, (cfi->device_type and cfi->interleave) must be reversed, to prevent wrong decisions. If the buswidth is given, the search should begin with the highest meaningfull interleave and the lowest device type. With the current searching order I get the following effect. I have 4 8bit flashes working on a 32 bit data bus. The Manufacture ID is 0x89, the Device ID 0xAA. The flash type is SHARP LH28F016SCT-L95 The correct values, which should be detected are: - cfi->device_type = 1 CFI_DEVICETYPE_X8 - cfi->interleave = 4 CFIDEV_INTERLEAVE_4 but the probing detected cfi->interleave = CFIDEV_INTERLEAVE_2 cfi->device_type = CFI_DEVICETYPE_X16. as valid, so that the test with the correct values, following later, will not be done. The identifier codes of this SHARP flashes can be read at offset 0 and 1 after writing 0x90 at any arbitrary address in the flash space. The unlock sequence 0xaa at cfi->addr_unlock1 = 0x555 and 0x55 at cfi->addr_unlock2 = 0x2aa seems not to be neccessary. The flashes 0 and 2 are unlocked by 0x00900090, flashes 1 and 4 not, so that 0 and 2 answers with th correct ID and 1 and 3 with 0x00. If the search order is reversed, the test with the correct values is made before the test with wrong parameters. I have attached a patch, which should prevent such wrong decisions, if the flashes are not correctly designed. Does anyone know reasons, that the search order should not be reversed? -- -------------------------------------------- Datentechnik GmbH Axel Ludszuweit D-30855 Langenhagen Tel.: +49 511 / 978197-630 Fax : +49 511 / 978197-670 http://www.keymile.com mailto:axel.ludszuweit@keymile.com