Lines Matching full:jedec
78 /* newer chips report JEDEC manufacturer and device IDs; chip
714 /* JEDEC id has a high byte of zero plus three data bytes:
769 uint32_t jedec; in jedec_probe() local
773 /* JEDEC also defines an optional "extended device information" in jedec_probe()
783 pr_debug("%s: error %d reading JEDEC ID\n", in jedec_probe()
790 jedec = id[0]; in jedec_probe()
791 jedec = jedec << 8; in jedec_probe()
792 jedec |= id[1]; in jedec_probe()
793 jedec = jedec << 8; in jedec_probe()
794 jedec |= id[2]; in jedec_probe()
799 if (info->jedec_id == jedec) { in jedec_probe()
829 dev_warn(&spi->dev, "JEDEC id %06x not handled\n", jedec); in jedec_probe()
834 * Detect and initialize DataFlash device, using JEDEC IDs on newer chips
853 * Try to detect dataflash by JEDEC ID. in dataflash_probe()