Home
last modified time | relevance | path

Searched refs:GPIO_PORT_SHIFT (Results 1 – 3 of 3) sorted by relevance

/arch/arm/plat-mxc/include/mach/
Diomux-v3.h115 #define GPIO_PORT_SHIFT 5 macro
116 #define GPIO_PORT_MASK (0x7 << GPIO_PORT_SHIFT)
118 #define GPIO_PORTA (0 << GPIO_PORT_SHIFT)
119 #define GPIO_PORTB (1 << GPIO_PORT_SHIFT)
120 #define GPIO_PORTC (2 << GPIO_PORT_SHIFT)
121 #define GPIO_PORTD (3 << GPIO_PORT_SHIFT)
122 #define GPIO_PORTE (4 << GPIO_PORT_SHIFT)
123 #define GPIO_PORTF (5 << GPIO_PORT_SHIFT)
Diomux-v1.h50 #define GPIO_PORT_SHIFT 5 macro
51 #define GPIO_PORT_MASK (0x7 << GPIO_PORT_SHIFT)
53 #define GPIO_PORTA (0 << GPIO_PORT_SHIFT)
54 #define GPIO_PORTB (1 << GPIO_PORT_SHIFT)
55 #define GPIO_PORTC (2 << GPIO_PORT_SHIFT)
56 #define GPIO_PORTD (3 << GPIO_PORT_SHIFT)
57 #define GPIO_PORTE (4 << GPIO_PORT_SHIFT)
58 #define GPIO_PORTF (5 << GPIO_PORT_SHIFT)
/arch/arm/plat-mxc/
Diomux-v1.c127 unsigned int port = (gpio_mode & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT; in mxc_gpio_mode()