summaryrefslogtreecommitdiff
path: root/src/i810_reg.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2006-11-30 15:56:52 -0800
committerEric Anholt <eric@anholt.net>2006-11-30 15:57:02 -0800
commit8c44556408601db2be799b5ac5c4da1d92886d31 (patch)
treebb1d80fa64ffe194d3763c927fbda925ba5bc3db /src/i810_reg.h
parent28401b25cc5c1afb272e506cef196ba3a1258bd3 (diff)
Preserve some GPIO bits that the docs tell us to.
Diffstat (limited to 'src/i810_reg.h')
-rw-r--r--src/i810_reg.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/i810_reg.h b/src/i810_reg.h
index e9319344..7312f8a4 100644
--- a/src/i810_reg.h
+++ b/src/i810_reg.h
@@ -281,12 +281,14 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# define GPIO_CLOCK_VAL_MASK (1 << 2)
# define GPIO_CLOCK_VAL_OUT (1 << 3)
# define GPIO_CLOCK_VAL_IN (1 << 4)
+# define GPIO_CLOCK_PULLUP_DISABLE (1 << 5)
# define GPIO_DATA_DIR_MASK (1 << 8)
# define GPIO_DATA_DIR_IN (0 << 9)
# define GPIO_DATA_DIR_OUT (1 << 9)
# define GPIO_DATA_VAL_MASK (1 << 10)
# define GPIO_DATA_VAL_OUT (1 << 11)
# define GPIO_DATA_VAL_IN (1 << 12)
+# define GPIO_DATA_PULLUP_DISABLE (1 << 13)
/* p317, 319
*/