summaryrefslogtreecommitdiff
path: root/board/it8380dev/gpio.inc
blob: 5091fdb3ef3d3d084d07b7005771640d6d5aa409 (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
/* -*- 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.
 */

GPIO(H_LED0,   A, 0, GPIO_ODR_HIGH)
GPIO(H_LED1,   A, 1, GPIO_ODR_HIGH)
GPIO(H_LED2,   A, 2, GPIO_ODR_HIGH)
GPIO(H_LED3,   A, 3, GPIO_ODR_HIGH)
GPIO(H_LED4,   A, 4, GPIO_ODR_HIGH)
GPIO(H_LED5,   A, 5, GPIO_ODR_HIGH)
GPIO(H_LED6,   A, 6, GPIO_ODR_HIGH)
GPIO(L_LED0,   I, 0, GPIO_ODR_HIGH)
GPIO(L_LED1,   I, 1, GPIO_ODR_HIGH)
GPIO(L_LED2,   I, 2, GPIO_ODR_HIGH)
GPIO(L_LED3,   I, 3, GPIO_ODR_HIGH)
GPIO(L_LED4,   I, 4, GPIO_ODR_HIGH)
GPIO(L_LED5,   I, 5, GPIO_ODR_HIGH)
GPIO(L_LED6,   I, 6, GPIO_ODR_HIGH)
GPIO(BUSY_LED, J, 0, GPIO_OUT_LOW)
GPIO(GOOD_LED, J, 1, GPIO_OUT_HIGH)
GPIO(FAIL_LED, J, 2, GPIO_OUT_LOW)
GPIO(SW1,      E, 0, GPIO_INPUT)
GPIO(SW2,      E, 1, GPIO_INPUT | GPIO_PULL_DOWN)
GPIO(SW3,      E, 2, GPIO_INPUT | GPIO_PULL_DOWN)
GPIO(SW4,      E, 3, GPIO_INPUT | GPIO_PULL_DOWN)
GPIO(START_SW, E, 4, GPIO_INT_FALLING, test_interrupt)

/* Unimplemented signals which we need to emulate for now */
UNIMPLEMENTED(ENTERING_RW)

ALTERNATE(B, 0x03, 1, MODULE_UART, GPIO_PULL_UP) /* UART0 */