Skip to content

Commit

Permalink
Rename Utils.bsv to slove name conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
wengwz committed Jan 12, 2024
1 parent a4c5a24 commit a03b2ad
Show file tree
Hide file tree
Showing 26 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Here is a list of some critical source files:
│ ├── Ports.bsv # numeric and struct types about in/output ports of modules
│ ├── RFile.bsv
│ ├── StreamHandler.bsv # modules implemented for manipulating data stream
│ └── Utils.bsv # utility functions and modules
│ └── EthUtils.bsv # utility functions and modules
├── MacLayer.bsv # generator and parser for Ethernet packet
├── PfcUdpIpArpEthRxTx.bsv # generator and parser for UDP/IP/Ethernet packet with PFC
├── PriorityFlowControl.bsv # modules handling PFC
Expand Down
2 changes: 1 addition & 1 deletion fpga/bsv/TestXdmaUdpIpArpEthCmacRxTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Vector :: *;
import Randomizable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;

import SemiFifo :: *;
import AxiStreamTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion fpga/bsv/TestXilinxAxiStreamAsyncFifo.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Clocks :: *;
import Connectable :: *;
import Randomizable :: *;

import Utils :: *;
import EthUtils :: *;
import XilinxAxiStreamAsyncFifo :: *;

import AxiStreamTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion fpga/bsv/XdmaUdpCmacPerfMonitor.bsv
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import FIFOF :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;

import SemiFifo :: *;
import AxiStreamTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion fpga/bsv/XdmaUdpIpArpEthCmacRxTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import BRAMFIFO :: *;
import Connectable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import BusConversion :: *;
import StreamHandler :: *;
import EthernetTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/ArpCache.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Vector :: *;
import ClientServer :: *;

import RFile :: *;
import Utils :: *;
import EthUtils :: *;
import CompletionBuf :: *;
import EthernetTypes :: *;
import ContentAddressMem :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/ArpProcessor.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import GetPut :: *;
import ClientServer :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import ArpCache :: *;
import StreamHandler :: *;
import EthernetTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/PriorityFlowControl.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Arbiter :: *;
import BRAMFIFO :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import SemiFifo :: *;
import EthernetTypes :: *;

Expand Down
2 changes: 1 addition & 1 deletion src/UdpIpArpEthCmacRxTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import BRAMFIFO :: *;
import Connectable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import StreamHandler :: *;
import UdpIpArpEthRxTx :: *;
import PortConversion :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/UdpIpArpEthRxTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import BRAMFIFO :: *;
import Connectable :: *;

// import Utils :: *;
import Utils :: *;
import EthUtils :: *;
import Ports :: *;
import ArpCache :: *;
import MacLayer :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/UdpIpEthRx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import GetPut :: *;
import Connectable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import MacLayer :: *;
import UdpIpLayer :: *;
import StreamHandler :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/UdpIpEthTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import GetPut :: *;
import FIFOF :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import MacLayer :: *;
import UdpIpLayer :: *;
import EthernetTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/UdpIpLayerForRdma.bsv
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import FIFOF :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import UdpIpLayer :: *;
import EthernetTypes :: *;
import StreamHandler :: *;
Expand Down
2 changes: 1 addition & 1 deletion src/XilinxCmacController.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import BRAMFIFO :: *;
import Connectable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import EthernetTypes :: *;
import StreamHandler :: *;

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/includes/StreamHandler.bsv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import FIFOF :: *;

import Utils :: *;
import EthUtils :: *;
import Ports :: *;

import SemiFifo :: *;
Expand Down
2 changes: 1 addition & 1 deletion test/bluesim/TestAppendDataStreamTail.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import FIFOF :: *;
import Randomizable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import SemiFifo :: *;
import StreamHandler :: *;
import TestUtils :: *;
Expand Down
2 changes: 1 addition & 1 deletion test/bluesim/TestArpCache.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Connectable :: *;
import Vector :: *;
import ClientServer :: *;
import GetPut :: *;
import Utils :: *;
import EthUtils :: *;

import SemiFifo :: *;
import ArpCache :: *;
Expand Down
2 changes: 1 addition & 1 deletion test/bluesim/TestCompletionBuf.bsv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Utils :: *;
import EthUtils :: *;
import FIFOF :: *;
import CompletionBuf :: *;
import Randomizable :: *;
Expand Down
2 changes: 1 addition & 1 deletion test/bluesim/TestPfcUdpIpArpEthRxTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Connectable :: *;
import Randomizable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import EthernetTypes :: *;
import PfcUdpIpArpEthRxTx :: *;

Expand Down
2 changes: 1 addition & 1 deletion test/bluesim/TestPriorityFlowControl.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Randomizable :: *;


import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import SemiFifo :: *;
import TestUtils :: *;
import EthernetTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion test/bluesim/TestRemoveICrcFromDataStream.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import FIFOF :: *;
import Randomizable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import SemiFifo :: *;
import TestUtils :: *;
import EthernetTypes :: *;
Expand Down
2 changes: 1 addition & 1 deletion test/bluesim/TestUtils.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import ClientServer :: *;
import Randomizable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import SemiFifo :: *;

typedef Server#(
Expand Down
2 changes: 1 addition & 1 deletion test/cocotb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LIB_WRAPPER_DIR = $(ROOT_DIR)/lib/blue-wrapper/src
LIBSRCDIR = $(LIB_CRC_DIR):$(LIB_WRAPPER_DIR)
CRC_TAB_SCRIPT = $(ROOT_DIR)/lib/blue-crc/scripts/gen_crc_tab.py

TARGET = UdpIpArpEthRxTx
TARGET = UdpIpEthRx
FILE_PATH = $(ROOT_DIR)/src
TEST_FILE = Test$(TARGET).py
DESIGN_FILE ?= $(TARGET).bsv
Expand Down
2 changes: 1 addition & 1 deletion test/vivado/bsv/TestPfcUdpIpArpEthCmacRxTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Connectable :: *;
import Randomizable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import EthernetTypes :: *;

import SemiFifo :: *;
Expand Down
2 changes: 1 addition & 1 deletion test/vivado/bsv/TestUdpIpArpEthCmacRxTx.bsv
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Clocks :: *;
import Randomizable :: *;

import Ports :: *;
import Utils :: *;
import EthUtils :: *;
import PortConversion :: *;

import SemiFifo :: *;
Expand Down

0 comments on commit a03b2ad

Please sign in to comment.