Home
last modified time | relevance | path

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

/arch/arm/mach-imx/
Diomux-v3.h102 #define GPIO_PORT_SHIFT 5 macro
103 #define GPIO_PORT_MASK (0x7 << GPIO_PORT_SHIFT)
105 #define GPIO_PORTA (0 << GPIO_PORT_SHIFT)
106 #define GPIO_PORTB (1 << GPIO_PORT_SHIFT)
107 #define GPIO_PORTC (2 << GPIO_PORT_SHIFT)
108 #define GPIO_PORTD (3 << GPIO_PORT_SHIFT)
109 #define GPIO_PORTE (4 << GPIO_PORT_SHIFT)
110 #define GPIO_PORTF (5 << GPIO_PORT_SHIFT)
Diomux-v1.h37 #define GPIO_PORT_SHIFT 5 macro
38 #define GPIO_PORT_MASK (0x7 << GPIO_PORT_SHIFT)
40 #define GPIO_PORTA (0 << GPIO_PORT_SHIFT)
41 #define GPIO_PORTB (1 << GPIO_PORT_SHIFT)
42 #define GPIO_PORTC (2 << GPIO_PORT_SHIFT)
43 #define GPIO_PORTD (3 << GPIO_PORT_SHIFT)
44 #define GPIO_PORTE (4 << GPIO_PORT_SHIFT)
45 #define GPIO_PORTF (5 << GPIO_PORT_SHIFT)
Diomux-v1.c115 unsigned int port = (gpio_mode & GPIO_PORT_MASK) >> GPIO_PORT_SHIFT; in mxc_gpio_mode()