Lines Matching refs:pin

260 void sedi_gpio_config_pin(IN sedi_gpio_t gpio_device, IN uint32_t pin,  in sedi_gpio_config_pin()  argument
264 uint8_t port = pin >> GPIO_PORT_SHIFT_BITS; in sedi_gpio_config_pin()
265 uint8_t offset = pin & GPIO_PORT_MASK; in sedi_gpio_config_pin()
298 void sedi_gpio_write_pin(IN sedi_gpio_t gpio_device, IN uint32_t pin, in sedi_gpio_write_pin() argument
301 uint8_t port = pin >> GPIO_PORT_SHIFT_BITS; in sedi_gpio_write_pin()
302 uint8_t offset = pin & GPIO_PORT_MASK; in sedi_gpio_write_pin()
334 sedi_gpio_pin_state_t sedi_gpio_read_pin(IN sedi_gpio_t gpio_device, IN uint32_t pin) in sedi_gpio_read_pin() argument
336 uint8_t port = pin >> GPIO_PORT_SHIFT_BITS; in sedi_gpio_read_pin()
337 uint8_t offset = pin & GPIO_PORT_MASK; in sedi_gpio_read_pin()
361 void sedi_gpio_toggle_pin(IN sedi_gpio_t gpio_device, IN uint32_t pin) in sedi_gpio_toggle_pin() argument
363 uint8_t port = pin >> GPIO_PORT_SHIFT_BITS; in sedi_gpio_toggle_pin()
364 uint8_t offset = pin & GPIO_PORT_MASK; in sedi_gpio_toggle_pin()
412 void sedi_gpio_enable_interrupt(IN sedi_gpio_t gpio_device, IN uint32_t pin, bool enable) in sedi_gpio_enable_interrupt() argument
416 uint8_t port = pin >> GPIO_PORT_SHIFT_BITS; in sedi_gpio_enable_interrupt()
417 uint8_t offset = pin & GPIO_PORT_MASK; in sedi_gpio_enable_interrupt()
426 void sedi_gpio_enable_wakeup(IN sedi_gpio_t gpio_device, IN uint32_t pin, bool enable) in sedi_gpio_enable_wakeup() argument
430 uint8_t port = pin >> GPIO_PORT_SHIFT_BITS; in sedi_gpio_enable_wakeup()
431 uint8_t offset = pin & GPIO_PORT_MASK; in sedi_gpio_enable_wakeup()