summaryrefslogtreecommitdiffstats
path: root/pysystemmgr/obmc
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2016-09-21 09:17:05 -0400
committerPatrick Williams <patrick@stwcx.xyz>2016-09-23 20:18:45 +0000
commita7ac805b407617f7a83eb152ff823f44d243a9b2 (patch)
tree354902fc7ea17f448c5dc0221b9cc081b5ee9d3d /pysystemmgr/obmc
parent7e5ec46d3f67e2447145e6399995ac554a61f152 (diff)
downloadtalos-skeleton-a7ac805b407617f7a83eb152ff823f44d243a9b2.tar.gz
talos-skeleton-a7ac805b407617f7a83eb152ff823f44d243a9b2.zip
configs: Remove gpio code from config files
Move to a new obmc.system module. Change-Id: Ie02a4b2c14cfcf272d8823d44fb9d7c03b796c87 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'pysystemmgr/obmc')
-rw-r--r--pysystemmgr/obmc/system/__init__.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/pysystemmgr/obmc/system/__init__.py b/pysystemmgr/obmc/system/__init__.py
new file mode 100644
index 0000000..8799b69
--- /dev/null
+++ b/pysystemmgr/obmc/system/__init__.py
@@ -0,0 +1,9 @@
+GPIO_BASE = 320
+
+def convertGpio(name):
+ name = name.upper()
+ c = name[0:1]
+ offset = int(name[1:])
+ a = ord(c)-65
+ base = a*8+GPIO_BASE
+ return base+offset
OpenPOWER on IntegriCloud