Home
last modified time | relevance | path

Searched refs:chip_readb (Results 1 – 25 of 26) sorted by relevance

12

/external/flashrom/
Dsst28sf040.c33 chip_readb(flash, bios + 0x1823); in protect_28sf040()
34 chip_readb(flash, bios + 0x1820); in protect_28sf040()
35 chip_readb(flash, bios + 0x1822); in protect_28sf040()
36 chip_readb(flash, bios + 0x0418); in protect_28sf040()
37 chip_readb(flash, bios + 0x041B); in protect_28sf040()
38 chip_readb(flash, bios + 0x0419); in protect_28sf040()
39 chip_readb(flash, bios + 0x040A); in protect_28sf040()
48 chip_readb(flash, bios + 0x1823); in unprotect_28sf040()
49 chip_readb(flash, bios + 0x1820); in unprotect_28sf040()
50 chip_readb(flash, bios + 0x1822); in unprotect_28sf040()
[all …]
Djedec.c41 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()
[all …]
D82802ab.c54 id1 = chip_readb(flash, bios + (0x00 << shifted)); in probe_82802ab()
55 id2 = chip_readb(flash, bios + (0x01 << shifted)); in probe_82802ab()
71 flashcontent1 = chip_readb(flash, bios + (0x00 << shifted)); in probe_82802ab()
72 flashcontent2 = chip_readb(flash, bios + (0x01 << shifted)); in probe_82802ab()
94 while ((chip_readb(flash, bios) & 0x80) == 0) // it's busy in wait_82802ab()
97 status = chip_readb(flash, bios); in wait_82802ab()
159 mcfg = chip_readb(flash, bios + 0x3); in unlock_28f004s5()
170 bcfg = chip_readb(flash, bios + i + 2); // read block lock config in unlock_28f004s5()
212 mcfg = chip_readb(flash, bios + 0x3); in unlock_lh28f008bjt()
224 bcfg = chip_readb(flash, bios + i + 2); /* read block lock config */ in unlock_lh28f008bjt()
Den29lv640b.c47 (dst - bios), chip_readb(flash, dst), *src); in write_en29lv640b()
69 id1 = chip_readb(flash, bios + 0x200); in probe_en29lv640b()
70 id1 |= (chip_readb(flash, bios) << 8); in probe_en29lv640b()
72 id2 = chip_readb(flash, bios + 0x02); in probe_en29lv640b()
Dparallel.c75 uint8_t chip_readb(const struct flashctx *flash, const chipaddr addr) in chip_readb() function
77 return flash->mst->par.chip_readb(flash, addr); in chip_readb()
84 val = chip_readb(flash, addr); in fallback_chip_readw()
85 val |= chip_readb(flash, addr + 1) << 8; in fallback_chip_readw()
117 buf[i] = chip_readb(flash, addr + i); in fallback_chip_readn()
153 if (!mst->chip_writeb || !mst->chip_readb) { in register_par_master()
Dprintlock.c53 uint8_t state = chip_readb(flash, lockreg); in printlock_regspace2_block()
137 cur = chip_readb(flash, lockreg); in changelock_regspace2_block()
150 cur = chip_readb(flash, lockreg); in changelock_regspace2_block()
163 cur = chip_readb(flash, lockreg); in changelock_regspace2_block()
177 uint8_t old = chip_readb(flash, lockreg); in unlock_regspace2_block_generic()
Dw29ee011.c59 id1 = chip_readb(flash, bios); in probe_w29ee011()
60 id2 = chip_readb(flash, bios + 0x01); in probe_w29ee011()
Dsst_fwhub.c29 blockstatus = chip_readb(flash, registers + offset + 2); in check_sst_fwhub_block_lock()
Dinternal_par.c66 .chip_readb = internal_chip_readb,
Dnicnatsemi.c80 .chip_readb = nicnatsemi_chip_readb,
Dit8212.c66 .chip_readb = it8212_chip_readb,
Datahpt.c76 .chip_readb = atahpt_chip_readb,
Dnicintel.c69 .chip_readb = nicintel_chip_readb,
Ddrkaiser.c73 .chip_readb = drkaiser_chip_readb,
Dgfxnvidia.c98 .chip_readb = gfxnvidia_chip_readb,
Dnicrealtek.c89 .chip_readb = nicrealtek_chip_readb,
Dsatasii.c97 .chip_readb = satasii_chip_readb,
Dnic3com.c93 .chip_readb = nic3com_chip_readb,
Datapromise.c115 .chip_readb = atapromise_chip_readb,
Datavia.c137 .chip_readb = atavia_chip_readb,
Dsatamv.c90 .chip_readb = satamv_chip_readb,
Dw39.c33 val = chip_readb(flash, bios + offset); in w39_idmode_readb()
Dserprog.c596 .chip_readb = serprog_chip_readb,
/external/flashrom/include/
Dprogrammer.h452 uint8_t (*chip_readb) (const struct flashctx *flash, const chipaddr addr); member
Dflash.h587 uint8_t chip_readb(const struct flashctx *flash, const chipaddr addr);

12