aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm
diff options
context:
space:
mode:
authorVirendra Kakade <virendra.kakade@ni.com>2021-11-23 13:34:01 -0600
committerAaron Rossetto <aaron.rossetto@ni.com>2021-12-02 06:42:09 -0800
commit6d6fc2a01dfa23627421d6b4d9efb25755be36ae (patch)
tree1c6edbfd75438f4645b0c08ae67d1df619d2a8bc /mpm/python/usrp_mpm
parent84323ef7bc2c5ba522cffe937e8ab4671f5f5658 (diff)
downloaduhd-6d6fc2a01dfa23627421d6b4d9efb25755be36ae.tar.gz
uhd-6d6fc2a01dfa23627421d6b4d9efb25755be36ae.tar.bz2
uhd-6d6fc2a01dfa23627421d6b4d9efb25755be36ae.zip
uhd: add support for max10 variants
Signed-off-by: Virendra Kakade <virendra.kakade@ni.com>
Diffstat (limited to 'mpm/python/usrp_mpm')
-rw-r--r--mpm/python/usrp_mpm/chips/max10_cpld_flash_ctrl.py20
-rw-r--r--mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py59
2 files changed, 74 insertions, 5 deletions
diff --git a/mpm/python/usrp_mpm/chips/max10_cpld_flash_ctrl.py b/mpm/python/usrp_mpm/chips/max10_cpld_flash_ctrl.py
index 392356552..388706b5a 100644
--- a/mpm/python/usrp_mpm/chips/max10_cpld_flash_ctrl.py
+++ b/mpm/python/usrp_mpm/chips/max10_cpld_flash_ctrl.py
@@ -107,11 +107,27 @@ class Max10CpldFlashCtrl():
def erase_flash_memory(self):
with self:
+ # determine M04 or M08 variant based on
+ # value encoded in the FLASH_CFM0_START_ADDR_REG
+ # register
+ start_addr = self.get_start_addr()
+ if start_addr == 0x9C00:
+ self.max10_variant = "m04"
+ elif start_addr == 0xAC00:
+ self.max10_variant = "m08"
+ else:
+ raise RuntimeError('Unknown MAX10 variant (FLASH_CFM0_START_ADDR_REG=0x{:04X})'.format(start_addr))
# check for sectors to be erased:
if self.is_memory_initialization_enabled():
- sectors = [2, 3, 4]
+ if self.max10_variant == "m04":
+ sectors = [2, 3, 4]
+ else:
+ sectors = [3, 4, 5]
else:
- sectors = [4]
+ if self.max10_variant == "m04":
+ sectors = [4]
+ else:
+ sectors = [5]
# erase each sector individually
for sector in sectors:
# start erase
diff --git a/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py b/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py
index 8920b6941..9592903b6 100644
--- a/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py
+++ b/mpm/python/usrp_mpm/periph_manager/x4xx_update_cpld.py
@@ -191,6 +191,37 @@ def jtag_cpld_update(filename, logger):
logger.trace("Done programming CPLD...")
return True
+def get_mb_compat_rev():
+ import re
+ cmd = ['eeprom-dump', 'mb']
+ output = subprocess.check_output(
+ cmd,
+ stderr=subprocess.STDOUT,
+ ).decode('utf-8')
+ expression = re.compile("^usrp_eeprom_board_info.*compat_rev: 0x([0-9A-Fa-f]+)")
+ for line in output.splitlines():
+ match = expression.match(line)
+ if match:
+ compat_rev = int(match.group(1), 16)
+ return compat_rev
+ raise AssertionError("Cannot get compat_rev from MB eeprom.: `{}'".format(output))
+
+def get_default_cpld_image_names(compat_rev):
+ """Determine the default CPLD image name based on the compat_rev"""
+ default_cpld_image_10m04 = ['cpld-x410-10m04.rpd', 'x4xx_x410_cpld_default_10m04.rpd']
+ default_cpld_image_10m08 = ['cpld-x410-10m08.rpd', 'x4xx_x410_cpld_default_10m08.rpd']
+ default_image_name_mapping = {
+ 1: default_cpld_image_10m04,
+ 2: default_cpld_image_10m04,
+ 3: default_cpld_image_10m04,
+ 4: default_cpld_image_10m04,
+ 5: default_cpld_image_10m04,
+ 6: default_cpld_image_10m04,
+ 7: default_cpld_image_10m08
+ }
+ if compat_rev not in default_image_name_mapping:
+ raise NotImplementedError("The default CPLD image name for compat_rev {} is not available".format(compat_rev))
+ return default_image_name_mapping[compat_rev]
def main():
"""
@@ -199,11 +230,21 @@ def main():
def parse_args():
"""Parse the command-line arguments"""
parser = argparse.ArgumentParser(description='Update the CPLD image on the X4xx')
+ default_image_names = get_default_cpld_image_names(get_mb_compat_rev())
+ default_image_path = "/lib/firmware/ni/" + default_image_names[0]
parser.add_argument("--file", help="Filename of CPLD image",
- default="/lib/firmware/ni/cpld-x410.rpd")
+ default=default_image_path)
+ # There are two --updater options supported by the script: "legacy" and "flash". However,
+ # the "legacy" mode requires a custom FPGA bitfile where the JTAG engine is compiled into.
+ # This is not the case for the standard UHD bitfile and hence the legacy mode cannot be
+ # used with it. --> Hide the command line argument to avoid false expectations
parser.add_argument("--updater",
- help="The image updater method to use, either \"legacy\" or \"flash\"",
+ help = argparse.SUPPRESS,
default="flash")
+ parser.add_argument("--force", help="Force installing the CPLD image specified by the --file " \
+ "argument if it does not match the name of the default CPLD image. " \
+ "Using the wrong CPLD image may brick your device.",
+ action="store_true", default=False, required=False)
parser.add_argument(
'-v',
'--verbose',
@@ -218,7 +259,19 @@ def main():
action="count",
default=0
)
- return parser.parse_args()
+ args = parser.parse_args()
+ if (os.path.basename(args.file) not in default_image_names) and not args.force:
+ parser.epilog = "\nERROR: Valid CPLD image names for X410 compat_rev {} are {}, " \
+ "but you selected {}. Using the wrong CPLD image may brick your device. " \
+ "Please use the --force option if you are really sure.".format(
+ get_mb_compat_rev(),
+ ' and '.join(default_image_names),
+ args.file
+ )
+ parser.print_help()
+ parser.epilog = None
+ sys.exit(1)
+ return args
args = parse_args()