aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/usrp_mpm/periph_manager/e31x.py
diff options
context:
space:
mode:
Diffstat (limited to 'mpm/python/usrp_mpm/periph_manager/e31x.py')
-rw-r--r--mpm/python/usrp_mpm/periph_manager/e31x.py70
1 files changed, 0 insertions, 70 deletions
diff --git a/mpm/python/usrp_mpm/periph_manager/e31x.py b/mpm/python/usrp_mpm/periph_manager/e31x.py
index 573e75d55..8ba8ff034 100644
--- a/mpm/python/usrp_mpm/periph_manager/e31x.py
+++ b/mpm/python/usrp_mpm/periph_manager/e31x.py
@@ -509,39 +509,6 @@ class e31x(ZynqComponents, PeriphManagerBase):
})
return device_info
- def set_device_id(self, device_id):
- """
- Sets the device ID for this motherboard.
- The device ID is used to identify the RFNoC components associated with
- this motherboard.
- """
- self.log.debug("Setting device ID to `{}'".format(device_id))
- self.mboard_regs_control.set_device_id(device_id)
-
- def get_device_id(self):
- """
- Gets the device ID for this motherboard.
- The device ID is used to identify the RFNoC components associated with
- this motherboard.
- """
- return self.mboard_regs_control.get_device_id()
-
- def get_proto_ver(self):
- """
- Return RFNoC protocol version
- """
- proto_ver = self.mboard_regs_control.get_proto_ver()
- self.log.debug("RFNoC protocol version supported by this device is {}".format(proto_ver))
- return proto_ver
-
- def get_chdr_width(self):
- """
- Return RFNoC CHDR width
- """
- chdr_width = self.mboard_regs_control.get_chdr_width()
- self.log.debug("CHDR width supported by the device is {}".format(chdr_width))
- return chdr_width
-
###########################################################################
# Clock/Time API
###########################################################################
@@ -738,43 +705,6 @@ class e31x(ZynqComponents, PeriphManagerBase):
#######################################################################
# Timekeeper API
#######################################################################
- def get_num_timekeepers(self):
- """
- Return the number of timekeepers
- """
- return self.mboard_regs_control.get_num_timekeepers()
-
- def get_timekeeper_time(self, tk_idx, last_pps):
- """
- Get the time in ticks
-
- Arguments:
- tk_idx: Index of timekeeper
- next_pps: If True, get time at last PPS. Otherwise, get time now.
- """
- return self.mboard_regs_control.get_timekeeper_time(tk_idx, last_pps)
-
- def set_timekeeper_time(self, tk_idx, ticks, next_pps):
- """
- Set the time in ticks
-
- Arguments:
- tk_idx: Index of timekeeper
- ticks: Time in ticks
- next_pps: If True, set time at next PPS. Otherwise, set time now.
- """
- self.mboard_regs_control.set_timekeeper_time(tk_idx, ticks, next_pps)
-
- def set_tick_period(self, tk_idx, period_ns):
- """
- Set the time per tick in nanoseconds (tick period)
-
- Arguments:
- tk_idx: Index of timekeeper
- period_ns: Period in nanoseconds
- """
- self.mboard_regs_control.set_tick_period(tk_idx, period_ns)
-
def get_clocks(self):
"""
Gets the RFNoC-related clocks present in the FPGA design