Lines Matching full:jedec
63 * newer chips report JEDEC manufacturer and device IDs; chip
453 * JEDEC id has a high byte of zero plus three data bytes:
513 uint32_t jedec; in jedec_probe() local
519 * JEDEC also defines an optional "extended device information" in jedec_probe()
529 printf("dataflash: error %d reading JEDEC ID\n", tmp); in jedec_probe()
535 jedec = id[0]; in jedec_probe()
536 jedec = jedec << 8; in jedec_probe()
537 jedec |= id[1]; in jedec_probe()
538 jedec = jedec << 8; in jedec_probe()
539 jedec |= id[2]; in jedec_probe()
544 if (info->jedec_id == jedec) { in jedec_probe()
570 printf("dataflash: JEDEC id %06x not handled\n", jedec); in jedec_probe()
575 * Detect and initialize DataFlash device, using JEDEC IDs on newer chips
604 * Try to detect dataflash by JEDEC ID. in spi_dataflash_probe()