mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
Our existing GPIO macros use port# / gpio#, but the concept of different GPIO ports does not exist on the mec1322. Therefore, add new GPIO macros for chips which do not have distinct GPIO ports. BUG=None BRANCH=None TEST=make buildall -j Change-Id: Ibda97c6563ad447d16dab39ecadab43ccb25174b Signed-off-by: Steven Jian <steven.jian@intel.com> Reviewed-on: https://chromium-review.googlesource.com/262841 Reviewed-by: Anton Staaf <robotboy@chromium.org>
23 lines
818 B
C
23 lines
818 B
C
/* -*- 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.
|
|
*/
|
|
|
|
/* Recovery signal from DOWN button */
|
|
GPIO(RECOVERY_L, PIN(D, 1), GPIO_PULL_UP)
|
|
GPIO(DEBUG_LED, PIN(A, 7), GPIO_OUT_LOW)
|
|
|
|
/*
|
|
* Signals which aren't implemented on BDS but we'll emulate anyway, to
|
|
* make it more convenient to debug other code.
|
|
*/
|
|
UNIMPLEMENTED(WP) /* Write protect input */
|
|
UNIMPLEMENTED(ENTERING_RW) /* EC entering RW code */
|
|
|
|
ALTERNATE(PIN_MASK(A, 0x03), 1, MODULE_UART, 0) /* UART0 */
|
|
ALTERNATE(PIN_MASK(G, 0x40), 3, MODULE_I2C, 0) /* I2C5 SCL */
|
|
ALTERNATE(PIN_MASK(G, 0x80), 3, GPIO_OPEN_DRAIN, 0) /* I2C5 SDA */
|
|
ALTERNATE(PIN_MASK(B, 0x03), 1, MODULE_UART, 0) /* UART1 */
|