summaryrefslogtreecommitdiff
path: root/board/host/gpio.inc
diff options
context:
space:
mode:
authorSteven Jian <steven.jian@intel.com>2015-04-01 01:25:42 +0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-05-27 03:58:16 +0000
commit937cc8a64e5971def21303e7a19a4ad9553e0ace (patch)
tree321543152e0c4d61e686ca7b92edd0d027bb168b /board/host/gpio.inc
parente216906c9327655d71b8758b7f11c2f744e55018 (diff)
downloadchrome-ec-937cc8a64e5971def21303e7a19a4ad9553e0ace.tar.gz
mec1322: Simplify GPIO lists
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>
Diffstat (limited to 'board/host/gpio.inc')
-rw-r--r--board/host/gpio.inc26
1 files changed, 13 insertions, 13 deletions
diff --git a/board/host/gpio.inc b/board/host/gpio.inc
index 5a69bb5848..8a9c3ae1a5 100644
--- a/board/host/gpio.inc
+++ b/board/host/gpio.inc
@@ -5,19 +5,19 @@
* found in the LICENSE file.
*/
-GPIO_INT(LID_OPEN, 0, 0, GPIO_INT_BOTH, lid_interrupt)
-GPIO_INT(POWER_BUTTON_L, 0, 0, GPIO_INT_BOTH, power_button_interrupt)
-GPIO_INT(AC_PRESENT, 0, 0, GPIO_INT_BOTH, extpower_interrupt)
-GPIO_INT(BUTTON_VOLUME_DOWN_L, 0, 0, GPIO_INT_BOTH, button_interrupt)
-GPIO_INT(BUTTON_VOLUME_UP, 0, 0, GPIO_INT_BOTH, button_interrupt)
-GPIO_INT(CHARGE_DONE, 0, 0, GPIO_INT_BOTH, inductive_charging_interrupt)
+GPIO_INT(LID_OPEN, PIN(0, 0), GPIO_INT_BOTH, lid_interrupt)
+GPIO_INT(POWER_BUTTON_L, PIN(0, 0), GPIO_INT_BOTH, power_button_interrupt)
+GPIO_INT(AC_PRESENT, PIN(0, 0), GPIO_INT_BOTH, extpower_interrupt)
+GPIO_INT(BUTTON_VOLUME_DOWN_L, PIN(0, 0), GPIO_INT_BOTH, button_interrupt)
+GPIO_INT(BUTTON_VOLUME_UP, PIN(0, 0), GPIO_INT_BOTH, button_interrupt)
+GPIO_INT(CHARGE_DONE, PIN(0, 0), GPIO_INT_BOTH, inductive_charging_interrupt)
-GPIO(EC_INT, 0, 0, 0)
-GPIO(WP, 0, 0, 0)
-GPIO(ENTERING_RW, 0, 0, 0)
-GPIO(PCH_BKLTEN, 0, 0, 0)
-GPIO(ENABLE_BACKLIGHT, 0, 0, 0)
+GPIO(EC_INT, PIN(0, 0), 0)
+GPIO(WP, PIN(0, 0), 0)
+GPIO(ENTERING_RW, PIN(0, 0), 0)
+GPIO(PCH_BKLTEN, PIN(0, 0), 0)
+GPIO(ENABLE_BACKLIGHT, PIN(0, 0), 0)
/* Inductive charging */
-GPIO(CHARGE_EN, 0, 0, 0)
-GPIO(BASE_CHG_VDD_EN, 0, 0, 0)
+GPIO(CHARGE_EN, PIN(0, 0), 0)
+GPIO(BASE_CHG_VDD_EN, PIN(0, 0), 0)