summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBert Lange <b.lange@hzdr.de>2011-11-18 08:42:05 +0100
committerBert Lange <b.lange@hzdr.de>2011-11-18 08:42:05 +0100
commit6fcf0759e17a75d2b8296ecb9ad4ecb8710093df (patch)
tree617ef4fc971063a5bb8fad0450e2af123ea00075
parent3b1d78e171b0cd3b4658007a7f5ad567e72593f6 (diff)
downloadzpu-6fcf0759e17a75d2b8296ecb9ad4ecb8710093df.zip
zpu-6fcf0759e17a75d2b8296ecb9ad4ecb8710093df.tar.gz
change: user_sma_clock(p/n) to inout
-rw-r--r--hw_sp601/bsp/top.vhd4
-rw-r--r--hw_sp601/bsp/top_tb.vhd4
-rw-r--r--hw_sp605/bsp/top.vhd4
-rw-r--r--hw_sp605/bsp/top_tb.vhd4
-rw-r--r--sfp_sender/rtl_tb/top_tb.vhd4
5 files changed, 10 insertions, 10 deletions
diff --git a/hw_sp601/bsp/top.vhd b/hw_sp601/bsp/top.vhd
index 464c08a..7dc318d 100644
--- a/hw_sp601/bsp/top.vhd
+++ b/hw_sp601/bsp/top.vhd
@@ -195,8 +195,8 @@ entity top is
user_clock : in std_logic;
--
-- user clock provided per SMA
- user_sma_clock_p : in std_logic;
- user_sma_clock_n : in std_logic
+ user_sma_clock_p : inout std_logic;
+ user_sma_clock_n : inout std_logic
);
end entity top;
diff --git a/hw_sp601/bsp/top_tb.vhd b/hw_sp601/bsp/top_tb.vhd
index caefc0b..c1f24b2 100644
--- a/hw_sp601/bsp/top_tb.vhd
+++ b/hw_sp601/bsp/top_tb.vhd
@@ -377,8 +377,8 @@ begin
user_clock => tb_user_clock, -- : in std_logic;
--
-- user clock provided per SMA
- user_sma_clock_p => tb_user_sma_clock_p, -- : in std_logic;
- user_sma_clock_n => tb_user_sma_clock_n -- : in std_logic
+ user_sma_clock_p => tb_user_sma_clock_p, -- : inout std_logic;
+ user_sma_clock_n => tb_user_sma_clock_n -- : inout std_logic
);
diff --git a/hw_sp605/bsp/top.vhd b/hw_sp605/bsp/top.vhd
index 365e4a7..f65cdce 100644
--- a/hw_sp605/bsp/top.vhd
+++ b/hw_sp605/bsp/top.vhd
@@ -306,8 +306,8 @@ entity top is
user_clock : in std_logic;
--
-- user clock provided per SMA
- user_sma_clock_p : in std_logic;
- user_sma_clock_n : in std_logic;
+ user_sma_clock_p : inout std_logic;
+ user_sma_clock_n : inout std_logic;
--
user_sma_gpio_p : inout std_logic;
user_sma_gpio_n : inout std_logic
diff --git a/hw_sp605/bsp/top_tb.vhd b/hw_sp605/bsp/top_tb.vhd
index d1935ce..5883324 100644
--- a/hw_sp605/bsp/top_tb.vhd
+++ b/hw_sp605/bsp/top_tb.vhd
@@ -521,8 +521,8 @@ begin
--
-- 27 MHz, oscillator socket
user_clock => tb_user_clock, --: in std_logic;
- user_sma_clock_p => tb_user_sma_clock_p, --: in std_logic;
- user_sma_clock_n => tb_user_sma_clock_n, --: in std_logic;
+ user_sma_clock_p => tb_user_sma_clock_p, --: inout std_logic;
+ user_sma_clock_n => tb_user_sma_clock_n, --: inout std_logic;
--
user_sma_gpio_p => tb_user_sma_gpio_p, --: inout std_logic;
user_sma_gpio_n => tb_user_sma_gpio_n --: inout std_logic
diff --git a/sfp_sender/rtl_tb/top_tb.vhd b/sfp_sender/rtl_tb/top_tb.vhd
index 10ca96b..242ab4e 100644
--- a/sfp_sender/rtl_tb/top_tb.vhd
+++ b/sfp_sender/rtl_tb/top_tb.vhd
@@ -179,8 +179,8 @@ begin
-- FMC connector
-- M2C Mezzanine to Carrier
-- C2M Carrier to Mezzanine
- fmc_clk0_m2c_n => not tb_user_sma_clock_p, -- tb_fmc_lpc_row_h(5), -- : in std_logic;
- fmc_clk0_m2c_p => tb_user_sma_clock_p, -- tb_fmc_lpc_row_h(4), -- : in std_logic;
+ fmc_clk0_m2c_n => not tb_user_sma_clock_p, -- tb_fmc_lpc_row_h(5), -- : inout std_logic;
+ fmc_clk0_m2c_p => tb_user_sma_clock_p, -- tb_fmc_lpc_row_h(4), -- : inout std_logic;
fmc_clk1_m2c_n => tb_fmc_lpc_row_g(3), -- : in std_logic;
fmc_clk1_m2c_p => tb_fmc_lpc_row_g(2), -- : in std_logic;
iic_scl_main => tb_fmc_lpc_row_c(30), -- : inout std_logic;
OpenPOWER on IntegriCloud