Lines Matching refs:GPIO
79 GPIO->ROUTE = (GPIO->ROUTE & ~_GPIO_ROUTE_SWLOCATION_MASK) in GPIO_DbgLocationSet()
84 GPIO->ROUTELOC0 = (GPIO->ROUTELOC0 & ~_GPIO_ROUTELOC0_SWVLOC_MASK) in GPIO_DbgLocationSet()
106 GPIO->P[port].CTRL = (GPIO->P[port].CTRL & ~(_GPIO_P_CTRL_DRIVEMODE_MASK)) in GPIO_DriveModeSet()
126 BUS_RegMaskedWrite(&GPIO->P[port].CTRL, in GPIO_DriveStrengthSet()
199 BUS_RegMaskedWrite(&GPIO->EXTIPSELL, in GPIO_ExtIntConfig()
207 BUS_RegMaskedWrite(&GPIO->EXTIPSELH, in GPIO_ExtIntConfig()
212 BUS_RegMaskedWrite(&GPIO->EXTIPSELH, in GPIO_ExtIntConfig()
227 BUS_RegMaskedWrite(&GPIO->EXTIPINSELL, in GPIO_ExtIntConfig()
234 BUS_RegMaskedWrite(&GPIO->EXTIPINSELH, in GPIO_ExtIntConfig()
241 BUS_RegMaskedWrite(&GPIO->EXTIPINSELH, in GPIO_ExtIntConfig()
251 BUS_RegBitWrite(&(GPIO->EXTIRISE), intNo, risingEdge); in GPIO_ExtIntConfig()
254 BUS_RegBitWrite(&(GPIO->EXTIFALL), intNo, fallingEdge); in GPIO_ExtIntConfig()
260 BUS_RegBitWrite(&(GPIO->IEN), intNo, enable); in GPIO_ExtIntConfig()
321 BUS_RegBitWrite(&(GPIO->IEN), intNo + _GPIO_IEN_EM4WU_SHIFT, enable); in GPIO_EM4WUExtIntConfig()
323 BUS_RegBitWrite(&(GPIO->IEN), intNo + _GPIO_IEN_EM4WUIEN_SHIFT, enable); in GPIO_EM4WUExtIntConfig()
325 BUS_RegBitWrite(&(GPIO->IEN), intNo + _GPIO_IEN_EM4WUIEN0_SHIFT, enable); in GPIO_EM4WUExtIntConfig()
369 BUS_RegMaskedWrite(&(GPIO->P[port].MODEL), 0xFu << (pin * 4), (uint32_t)mode << (pin * 4)); in GPIO_PinModeSet()
371 …BUS_RegMaskedWrite(&(GPIO->P[port].MODEH), 0xFu << ((pin - 8) * 4), (uint32_t)mode << ((pin - 8) *… in GPIO_PinModeSet()
402 return (GPIO_Mode_TypeDef) ((GPIO->P[port].MODEL >> (pin * 4)) & 0xF); in GPIO_PinModeGet()
404 return (GPIO_Mode_TypeDef) ((GPIO->P[port].MODEH >> ((pin - 8) * 4)) & 0xF); in GPIO_PinModeGet()
431 GPIO->EM4WUPOL &= ~pinmask; /* Set the wakeup polarity. */ in GPIO_EM4EnablePinWakeup()
432 GPIO->EM4WUPOL |= pinmask & polaritymask; in GPIO_EM4EnablePinWakeup()
435 GPIO->EXTILEVEL &= ~pinmask; in GPIO_EM4EnablePinWakeup()
436 GPIO->EXTILEVEL |= pinmask & polaritymask; in GPIO_EM4EnablePinWakeup()
438 GPIO->EM4WUEN |= pinmask; /* Enable wakeup. */ in GPIO_EM4EnablePinWakeup()
443 GPIO->CMD = GPIO_CMD_EM4WUCLR; /* Clear the wake-up logic. */ in GPIO_EM4EnablePinWakeup()