summaryrefslogtreecommitdiff
path: root/board/veyron/gpio.inc
blob: 97a323c65ea8940fbb8086be0866ff002c9f2648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* -*- mode:c -*-
 *
 * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Inputs with interrupt handlers are first for efficiency */
GPIO(POWER_BUTTON_L, B, 5,  GPIO_INT_BOTH,                power_button_interrupt)
GPIO(SOC_POWER_GOOD, A, 3,  GPIO_INT_BOTH ,               power_signal_interrupt)
GPIO(LID_OPEN,       C, 13, GPIO_INT_BOTH,                lid_interrupt)
GPIO(SUSPEND_L,      C, 7,  GPIO_INT_BOTH,                power_signal_interrupt)
GPIO(SPI1_NSS,       A, 4,  GPIO_INT_BOTH | GPIO_PULL_UP, spi_event)
GPIO(AC_PRESENT,     A, 0,  GPIO_INT_BOTH,                extpower_interrupt)

/* Keyboard inputs */
GPIO(KB_IN00, C, 8,  GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)
GPIO(KB_IN01, C, 9,  GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)
GPIO(KB_IN02, C, 10, GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)
GPIO(KB_IN03, C, 11, GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)
GPIO(KB_IN04, C, 12, GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)
GPIO(KB_IN05, C, 14, GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)
GPIO(KB_IN06, C, 15, GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)
GPIO(KB_IN07, D, 2,  GPIO_KB_INPUT, keyboard_raw_gpio_interrupt)

/* Other inputs */
GPIO(WP_L, B, 4, GPIO_INPUT, NULL)

/* Outputs */
GPIO(AP_RESET_H,        B, 3,  GPIO_OUT_HIGH,  NULL)
GPIO(EC_INT,            B, 9,  GPIO_OUT_HIGH,  NULL)
GPIO(ENTERING_RW,       H, 0,  GPIO_OUT_LOW,   NULL)
GPIO(I2C1_SCL,          B, 6,  GPIO_ODR_HIGH,  NULL)
GPIO(I2C1_SDA,          B, 7,  GPIO_ODR_HIGH,  NULL)
GPIO(PMIC_PWRON_L,      A, 12, GPIO_OUT_HIGH,  NULL)
GPIO(KB_OUT00,          B, 0,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT01,          B, 8,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT02,          B, 12, GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT03,          B, 13, GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT04,          B, 14, GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT05,          B, 15, GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT06,          C, 0,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT07,          C, 1,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT08,          C, 2,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT09,          B, 1,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT10,          C, 5,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT11,          C, 4,  GPIO_KB_OUTPUT, NULL)
GPIO(KB_OUT12,          A, 13, GPIO_KB_OUTPUT, NULL)
GPIO(BAT_LED0,          B, 11, GPIO_OUT_LOW,   NULL)
GPIO(BAT_LED1,          A, 11, GPIO_OUT_LOW,   NULL)
GPIO(EC_BL_OVERRIDE,    H, 1,  GPIO_OUT_HIGH,  NULL)
GPIO(PMIC_THERM_H,      B, 10, GPIO_OUT_LOW,  NULL)
GPIO(PMIC_WARM_RESET_L, C, 3,  GPIO_OUT_HIGH,  NULL)
GPIO(PMIC_USB_CTRL1_H,  C, 6,  GPIO_OUT_HIGH,  NULL)

ALTERNATE(A, 0x00f0, GPIO_ALT_SPI,   MODULE_SPI,  GPIO_DEFAULT)
ALTERNATE(A, 0x0600, GPIO_ALT_USART, MODULE_UART, GPIO_DEFAULT)
ALTERNATE(B, 0x00c0, GPIO_ALT_I2C,   MODULE_I2C,  GPIO_DEFAULT)