sys/dev/i2c/tcakp.c
115
static int tcakp_write(struct tcakp_softc *, uint8_t, uint8_t);
sys/dev/i2c/tcakp.c
191
tcakp_write(sc, TCA_INT_STAT, stat);
sys/dev/i2c/tcakp.c
215
tcakp_write(sc, TCA_KEY_LCK_EC, KEY_LCK_EC_K_LCK_EN);
sys/dev/i2c/tcakp.c
217
tcakp_write(sc, TCA_KP_GPIO1, (mask >> 0) & 0xff);
sys/dev/i2c/tcakp.c
218
tcakp_write(sc, TCA_KP_GPIO2, (mask >> 8) & 0xff);
sys/dev/i2c/tcakp.c
219
tcakp_write(sc, TCA_KP_GPIO3, (mask >> 16) & 0xff);
sys/dev/i2c/tcakp.c
221
tcakp_write(sc, TCA_DEBOUNCE_DIS1, (mask >> 0) & 0xff);
sys/dev/i2c/tcakp.c
222
tcakp_write(sc, TCA_DEBOUNCE_DIS2, (mask >> 8) & 0xff);
sys/dev/i2c/tcakp.c
223
tcakp_write(sc, TCA_DEBOUNCE_DIS3, (mask >> 16) & 0xff);
sys/dev/i2c/tcakp.c
225
tcakp_write(sc, TCA_CFG, CFG_INT_CFG | CFG_KE_IEN);
sys/dev/i2c/tcakp.c
228
tcakp_write(sc, TCA_INT_STAT, val);
sys/dev/i2c/tcakp.c
278
tcakp_write(sc, TCA_KEY_LCK_EC, 0);
sys/dev/i2c/tcakp.c
281
tcakp_write(sc, TCA_KEY_LCK_EC, KEY_LCK_EC_K_LCK_EN);