summaryrefslogtreecommitdiff
path: root/tegra_pmx_board_parser.py
diff options
context:
space:
mode:
authorStephen Warren <swarren@nvidia.com>2014-03-06 13:06:31 -0700
committerStephen Warren <swarren@nvidia.com>2014-04-22 16:18:35 -0600
commit2577ab08c5a84229580c83a0cd00a03328eba89b (patch)
treead04beb34ad4e3f65564316b6a9d8ac585298095 /tegra_pmx_board_parser.py
parent16495973b3f18b575ed20773c788be642ffceb63 (diff)
downloadtegra-pinmux-scripts-2577ab08c5a84229580c83a0cd00a03328eba89b.tar.gz
Initial set of scripts
A set of scripts to generate Linux kernel and U-Boot pinmux drivers and board pinmux configuration tables. Also included are scripts to convert existing Linux kernel pinmux drivers and NV-internal spreadsheets to the internal data representation. SoC configuration files are included for Tegra30, Tegra114, and Tegra124. Board configuration files are included for Jetson TK1 and Venice2. configs/tegra30.soc configs/tegra114.soc configs/tegra124.soc SoC pin definitions configs/jetson-tk1.board configs/venice2.board Board configurations soc-to-kernel-pinctrl-driver.py soc-to-uboot-driver.py Generate Linux kernel and U-Boot pinmux drivers board-to-kernel-dt.py board-to-uboot.py Generate board configuration tables for the Linux kernel (DT) and U-Boot. kernel-pinctrl-driver-to-soc.py Convert an existing Linux kernel pinmux driver to the internal representation of an SoC used by this project. csv-to-board-tegra124-xlsx.py Convert an NV-internal board configuration spreadsheet to the internal representation of a board configuration used by this project. tegra_pmx_board_parser.py tegra_pmx_parser_utils.py tegra_pmx_soc_parser.py tegra_pmx_utils.py Internal Python modules used to parse the internal data representations, and various other utilities. Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'tegra_pmx_board_parser.py')
-rw-r--r--tegra_pmx_board_parser.py72
1 files changed, 72 insertions, 0 deletions
diff --git a/tegra_pmx_board_parser.py b/tegra_pmx_board_parser.py
new file mode 100644
index 0000000..352bbe0
--- /dev/null
+++ b/tegra_pmx_board_parser.py
@@ -0,0 +1,72 @@
+# Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+import os.path
+import tegra_pmx_soc_parser
+from tegra_pmx_parser_utils import *
+
+script_dir = os.path.dirname(os.path.abspath(__file__))
+configs_dir = os.path.join(script_dir, 'configs')
+
+class PinConfig(ReprDictObj):
+ def __init__(self, soc, data):
+ fields = ('fullname', 'mux', 'gpio_init', 'pull', 'tri', 'e_inp', 'od')
+ if soc.has_rcv_sel:
+ fields += ('rcv_sel', )
+ for i, field in enumerate(fields):
+ self.__setattr__(field, data[i])
+ self.gpio_pin = soc.gpio_or_pin_by_fullname(self.fullname)
+
+class Board(TopLevelParsedObj):
+ def __init__(self, name, data):
+ TopLevelParsedObj.__init__(self, name, (), data)
+
+ self.varname = name.lower().replace('-', '_')
+ self.definename = name.upper().replace('-', '_')
+
+ self.soc = tegra_pmx_soc_parser.load_soc(data['soc'])
+
+ self._pincfgs = []
+ for num, pindata in enumerate(data['pins']):
+ pincfg = PinConfig(self.soc, pindata)
+ self._pincfgs.append(pincfg)
+
+ # FIXME: fill this in...
+ self.drvcfg = []
+
+ self._generate_derived_data()
+
+ def _generate_derived_data(self):
+ self._pincfgs_by_num = sorted(self._pincfgs, key=lambda pincfg: pincfg.gpio_pin.sort_by_num_key())
+
+ def pincfgs_by_conf_order(self):
+ return self._pincfgs
+
+ def pincfgs_by_num(self):
+ return self._pincfgs_by_num
+
+def load_board(boardname):
+ fn = os.path.join(configs_dir, boardname + '.board')
+ d = {}
+ with open(fn) as f:
+ code = compile(f.read(), fn, 'exec')
+ exec(code, globals(), d)
+
+ return Board(boardname, d)