diff options
author | sugandhagupta <sugandha.gupta@ettus.com> | 2017-06-07 17:29:48 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:59 -0800 |
commit | 113e4256135f812b022e83d2474607e7cd2ed399 (patch) | |
tree | 44bcba5ed99efea1203bea599a170456c4f8e46a /mpm/python/usrp_mpm/ethtable.py | |
parent | e7f7f06b498eed374a62fa15894747dd1acf892d (diff) | |
download | uhd-113e4256135f812b022e83d2474607e7cd2ed399.tar.gz uhd-113e4256135f812b022e83d2474607e7cd2ed399.tar.bz2 uhd-113e4256135f812b022e83d2474607e7cd2ed399.zip |
n3xx: added args for ethernet crossover path
Diffstat (limited to 'mpm/python/usrp_mpm/ethtable.py')
-rw-r--r-- | mpm/python/usrp_mpm/ethtable.py | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/mpm/python/usrp_mpm/ethtable.py b/mpm/python/usrp_mpm/ethtable.py index 78f2e60a8..f0c622492 100644 --- a/mpm/python/usrp_mpm/ethtable.py +++ b/mpm/python/usrp_mpm/ethtable.py @@ -32,7 +32,8 @@ class EthDispatcherTable(object): DEFAULT_VITA_PORT = (49153, 49154) # Address offsets: OWN_IP_OFFSET = 0x0000 - OWN_PORT_OFFSET = (0x0004, 0x0008) + OWN_PORT_OFFSET = 0x0004 + FORWARD_ETH_BCAST_OFFSET = 0x0008 SID_IP_OFFSET = 0x1000 SID_PORT_MAC_HI_OFFSET = 0x1400 SID_MAC_LO_OFFSET = 0x1800 @@ -59,8 +60,8 @@ class EthDispatcherTable(object): """ port_idx = port_idx or 0 port_value = port_value or self.DEFAULT_VITA_PORT[port_idx] - assert port_idx in (0, 1) - port_reg_addr = self.OWN_PORT_OFFSET[port_idx] + assert port_idx in (0) #FIXME: Fix port_idx = 1 + port_reg_addr = self.OWN_PORT_OFFSET self.poke32(port_reg_addr, port_value) def set_route(self, sid, ip_addr, udp_port, mac_addr=None): @@ -120,4 +121,15 @@ class EthDispatcherTable(object): (udp_port << 16) | (mac_addr_int >> 32) ) + def set_forward_policy(self, forward_eth, forward_bcast): + """ + Forward Ethernet packet not matching OWN_IP to CROSSOVER + Forward broadcast packet to CPU and CROSSOVER + """ + reg_value = int(bool(forward_eth) << 1) | int(bool(forward_bcast)) + self.log.trace("Writing to address 0x{:04X}: 0x{:04X}".format( + self.FORWARD_ETH_BCAST_OFFSET, reg_value + )) + self.poke32(self.FORWARD_ETH_BCAST_OFFSET, reg_value) + |