Home
last modified time | relevance | path

Searched refs:GPIO_PIN_PA (Results 1 – 9 of 9) sorted by relevance

/linux-3.4.99/arch/avr32/boards/merisc/
Dsetup.c149 .sda_pin = GPIO_PIN_PA(6),
150 .scl_pin = GPIO_PIN_PA(7),
222 at32_select_gpio(GPIO_PIN_PA(24), AT32_GPIOF_PULLUP); in detect_merisc_board_id()
223 at32_select_gpio(GPIO_PIN_PA(25), AT32_GPIOF_PULLUP); in detect_merisc_board_id()
224 at32_select_gpio(GPIO_PIN_PA(26), AT32_GPIOF_PULLUP); in detect_merisc_board_id()
225 at32_select_gpio(GPIO_PIN_PA(27), AT32_GPIOF_PULLUP); in detect_merisc_board_id()
227 merisc_board_id = !gpio_get_value(GPIO_PIN_PA(24)) + in detect_merisc_board_id()
228 !gpio_get_value(GPIO_PIN_PA(25)) * 2 + in detect_merisc_board_id()
229 !gpio_get_value(GPIO_PIN_PA(26)) * 4 + in detect_merisc_board_id()
230 !gpio_get_value(GPIO_PIN_PA(27)) * 8; in detect_merisc_board_id()
[all …]
/linux-3.4.99/arch/avr32/boards/atngw100/
Dmrmt.c39 #define PIN_LCD_BL GPIO_PIN_PA(28)
41 #define PIN_LCD_DISP GPIO_PIN_PA(31)
42 #define PIN_AC97_RST_N GPIO_PIN_PA(30)
50 #define PIN_ZB_RST_N GPIO_PIN_PA(21)
51 #define PIN_BT_RST GPIO_PIN_PA(22)
52 #define PIN_LED_SYS GPIO_PIN_PA(16)
53 #define PIN_LED_A GPIO_PIN_PA(19)
Dsetup.c206 { .name = "sys", .gpio = GPIO_PIN_PA(16), .active_low = 1,
209 { .name = "a", .gpio = GPIO_PIN_PA(19), .active_low = 1, },
227 .sda_pin = GPIO_PIN_PA(6),
228 .scl_pin = GPIO_PIN_PA(7),
/linux-3.4.99/arch/avr32/boards/mimc200/
Dsetup.c116 .detect_pin = GPIO_PIN_PA(26),
117 .wp_pin = GPIO_PIN_PA(27),
185 .sda_pin = GPIO_PIN_PA(6),
186 .scl_pin = GPIO_PIN_PA(7),
/linux-3.4.99/arch/avr32/boards/hammerhead/
Dsetup.c173 .sda_pin = GPIO_PIN_PA(6),
174 .scl_pin = GPIO_PIN_PA(7),
190 .reset_pin = GPIO_PIN_PA(16),
Dflash.c220 at32_select_gpio(GPIO_PIN_PA(8), AT32_GPIOF_OUTPUT); in hammerhead_usbh_init()
/linux-3.4.99/arch/avr32/boards/favr-32/
Dsetup.c237 .gpio_on = GPIO_PIN_PA(28),
/linux-3.4.99/arch/avr32/mach-at32ap/
Dat32ap700x.c1196 { GPIO_PIN_PA(3), GPIO_PIN_PA(4), in at32_spi_setup_slaves()
1197 GPIO_PIN_PA(5), GPIO_PIN_PA(20) }, in at32_spi_setup_slaves()
1199 GPIO_PIN_PB(4), GPIO_PIN_PA(27) }, in at32_spi_setup_slaves()
/linux-3.4.99/arch/avr32/mach-at32ap/include/mach/
Dat32ap700x.h27 #define GPIO_PIN_PA(N) (GPIO_PIOA_BASE + (N)) macro