summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Schnelle <svens@stackframe.org>2011-04-12 18:18:12 +0000
committerSven Schnelle <svens@stackframe.org>2011-04-12 18:18:12 +0000
commitae08c56d6c43b9e5f2896164615a6c96562345df (patch)
treebc8a18c7c86fd7041d5a32ffbf9bef5c253387b8
parent484281b90f92b0ae4e226a090edecc026b37529c (diff)
downloadcoreboot-ae08c56d6c43b9e5f2896164615a6c96562345df.tar.gz
coreboot-ae08c56d6c43b9e5f2896164615a6c96562345df.tar.bz2
coreboot-ae08c56d6c43b9e5f2896164615a6c96562345df.zip
PC87384: add GPIO defines
Signed-off-by: Sven Schnelle <svens@stackframe.org> Acked-by: Sven Schnelle <svens@stackframe.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6489 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--src/superio/nsc/pc87384/pc87384.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/superio/nsc/pc87384/pc87384.h b/src/superio/nsc/pc87384/pc87384.h
index fe573b7773cf..823b8884894d 100644
--- a/src/superio/nsc/pc87384/pc87384.h
+++ b/src/superio/nsc/pc87384/pc87384.h
@@ -25,4 +25,15 @@
#define PC87384_SP2 0x02
#define PC87384_SP1 0x03
#define PC87384_GPIO 0x07
+
+#define PC87384_GPIO_PIN_OE 0x01
+#define PC87384_GPIO_PIN_TYPE_PUSH_PULL 0x02
+#define PC87384_GPIO_PIN_PULLUP 0x04
+#define PC87384_GPIO_PIN_LOCK 0x08
+#define PC87384_GPIO_PIN_TRIG_LEVEL 0x10
+#define PC87384_GPIO_PIN_TRIG_LOW 0x20
+#define PC87384_GPIO_PIN_DEBOUNCE 0x40
+
+#define PC87384_GPIO_PIN_TRIGGERS_IRQ 0x01
+
#endif