GPIO_BIT
#define GPIO_BIT(x) BIT(GPIO_OFFSET(x) >> 1)
#define GPIO_BIT(x) BIT(GPIO_OFFSET(x))
#define GPIO_BIT(gpio) ((gpio) & (GPIO_PER_BANK - 1))
#define GPIO_BIT(gpio) ((gpio) & (MAX_GPIO_PER_BANK - 1))
#define GPIO_BIT(x) ((x) % 8)
#define GPIO_BIT(x) ((x) & 0x7)