/* -*- 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(SOC1V8_XPSHOLD, A, 3, GPIO_INT_BOTH, power_signal_interrupt) GPIO(LID_OPEN, C, 13, GPIO_INT_BOTH, lid_interrupt) GPIO(SUSPEND_L, C, 7, GPIO_KB_INPUT, 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_L, B, 3, GPIO_ODR_HIGH, NULL) GPIO(CHARGER_EN, B, 2, GPIO_OUT_LOW, NULL) GPIO(EC_INT, B, 9, GPIO_ODR_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(LED_POWER_L, A, 2, GPIO_OUT_HIGH, NULL) /* PWR_LED1 */ GPIO(PMIC_PWRON_L, A, 12, GPIO_OUT_HIGH, NULL) GPIO(PMIC_RESET, A, 15, GPIO_OUT_LOW, 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(PWR_LED0, B, 10, GPIO_OUT_LOW, NULL) GPIO(BAT_LED0, B, 11, GPIO_OUT_LOW, NULL) GPIO(BAT_LED1, A, 8, GPIO_OUT_LOW, NULL) GPIO(CHARGING, A, 11, GPIO_OUT_LOW, NULL) GPIO(EC_BL_OVERRIDE, H, 1, GPIO_ODR_HIGH, NULL) GPIO(PMIC_THERM_L, A, 1, GPIO_ODR_HIGH, NULL) GPIO(PMIC_WARM_RESET_L, C, 3, GPIO_ODR_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)