Lines Matching refs:chip_readb
41 uint8_t tmp1 = chip_readb(flash, dst) & 0x40; in toggle_ready_jedec_common()
45 uint8_t tmp2 = chip_readb(flash, dst) & 0x40; in toggle_ready_jedec_common()
81 uint8_t tmp = chip_readb(flash, dst) & 0x80; in data_polling_jedec()
136 uint32_t man_id = chip_readb(flash, bios + 0x00); in probe_jedec_29gl()
137 uint32_t dev_id = (chip_readb(flash, bios + 0x01) << 16) | in probe_jedec_29gl()
138 (chip_readb(flash, bios + 0x0E) << 8) | in probe_jedec_29gl()
139 (chip_readb(flash, bios + 0x0F) << 0); in probe_jedec_29gl()
149 uint32_t flashcontent1 = chip_readb(flash, bios + 0x00); // FIXME: Continuation loop in probe_jedec_29gl()
150 uint32_t flashcontent2 = (chip_readb(flash, bios + 0x01) << 16) | in probe_jedec_29gl()
151 (chip_readb(flash, bios + 0x0E) << 8) | in probe_jedec_29gl()
152 (chip_readb(flash, bios + 0x0F) << 0); in probe_jedec_29gl()
226 id1 = chip_readb(flash, bios + (0x00 << shifted)); in probe_jedec()
227 id2 = chip_readb(flash, bios + (0x01 << shifted)); in probe_jedec()
234 id1 = chip_readb(flash, bios + 0x100); in probe_jedec()
239 id2 = chip_readb(flash, bios + 0x101); in probe_jedec()
260 flashcontent1 = chip_readb(flash, bios + (0x00 << shifted)); in probe_jedec()
261 flashcontent2 = chip_readb(flash, bios + (0x01 << shifted)); in probe_jedec()
266 flashcontent1 |= chip_readb(flash, bios + 0x100); in probe_jedec()
270 flashcontent2 |= chip_readb(flash, bios + 0x101); in probe_jedec()
366 if (chip_readb(flash, dst) == *src) in write_byte_program_jedec_common()