Lines Matching refs:reg_gpcr
38 uintptr_t reg_gpcr; member
362 volatile uint8_t *reg_gpcr = (uint8_t *)(gpio_config->reg_gpcr + pin); in gpio_ite_configure() local
378 *reg_gpcr = GPCR_PORT_PIN_MODE_TRISTATE; in gpio_ite_configure()
383 if (*reg_gpcr != GPCR_PORT_PIN_MODE_TRISTATE) { in gpio_ite_configure()
385 *reg_gpcr = GPCR_PORT_PIN_MODE_INPUT; in gpio_ite_configure()
437 *reg_gpcr = (*reg_gpcr | GPCR_PORT_PIN_MODE_OUTPUT) & in gpio_ite_configure()
440 *reg_gpcr = (*reg_gpcr | GPCR_PORT_PIN_MODE_INPUT) & in gpio_ite_configure()
446 *reg_gpcr = (*reg_gpcr | GPCR_PORT_PIN_MODE_PULLUP) & in gpio_ite_configure()
449 *reg_gpcr = (*reg_gpcr | GPCR_PORT_PIN_MODE_PULLDOWN) & in gpio_ite_configure()
453 *reg_gpcr &= ~(GPCR_PORT_PIN_MODE_PULLUP | in gpio_ite_configure()
468 volatile uint8_t *reg_gpcr = (uint8_t *)(gpio_config->reg_gpcr + pin); in gpio_ite_get_config() local
500 if (*reg_gpcr & GPCR_PORT_PIN_MODE_OUTPUT) { in gpio_ite_get_config()
511 if (*reg_gpcr & GPCR_PORT_PIN_MODE_INPUT) { in gpio_ite_get_config()
515 if (*reg_gpcr & GPCR_PORT_PIN_MODE_PULLUP) { in gpio_ite_get_config()
519 if (*reg_gpcr & GPCR_PORT_PIN_MODE_PULLDOWN) { in gpio_ite_get_config()
698 .reg_gpcr = DT_INST_REG_ADDR_BY_IDX(inst, 1), \