Skip to content

Commit a93d9e7

Browse files
committed
litedram: Remove remnants of riscv-inits
We still had some wires bringing an extra serial port out of litedram for the built-in riscv processor. This is all gone now so take them out. Signed-off-by: Benjamin Herrenschmidt <[email protected]>
1 parent 3c99e6c commit a93d9e7

File tree

5 files changed

+0
-24
lines changed

5 files changed

+0
-24
lines changed

core_dram_tb.vhdl

-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ begin
9191
wb_ctrl_is_csr => wb_dram_is_csr,
9292
wb_ctrl_is_init => wb_dram_is_init,
9393

94-
serial_tx => open,
95-
serial_rx => '1',
96-
9794
init_done => open,
9895
init_error => open,
9996

dram_tb.vhdl

-3
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,6 @@ begin
6161
wb_ctrl_is_csr => '0',
6262
wb_ctrl_is_init => '0',
6363

64-
serial_tx => open,
65-
serial_rx => '1',
66-
6764
init_done => open,
6865
init_error => open,
6966

fpga/top-arty.vhdl

-11
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@ entity toplevel is
2626
uart_main_tx : out std_ulogic;
2727
uart_main_rx : in std_ulogic;
2828

29-
-- DRAM UART signals (PMOD)
30-
uart_pmod_tx : out std_ulogic;
31-
uart_pmod_rx : in std_ulogic;
32-
uart_pmod_cts_n : in std_ulogic;
33-
uart_pmod_rts_n : out std_ulogic;
34-
3529
-- LEDs
3630
led0_b : out std_ulogic;
3731
led0_g : out std_ulogic;
@@ -110,8 +104,6 @@ architecture behaviour of toplevel is
110104
constant PAYLOAD_SIZE : natural := get_payload_size;
111105
begin
112106

113-
uart_pmod_rts_n <= '0';
114-
115107
-- Main SoC
116108
soc0: entity work.soc
117109
generic map(
@@ -232,9 +224,6 @@ begin
232224
wb_ctrl_is_csr => wb_dram_is_csr,
233225
wb_ctrl_is_init => wb_dram_is_init,
234226

235-
serial_tx => uart_pmod_tx,
236-
serial_rx => uart_pmod_rx,
237-
238227
init_done => dram_init_done,
239228
init_error => dram_init_error,
240229

fpga/top-nexys-video.vhdl

-3
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,6 @@ begin
212212
wb_ctrl_is_csr => wb_dram_is_csr,
213213
wb_ctrl_is_init => wb_dram_is_init,
214214

215-
serial_tx => open,
216-
serial_rx => '0',
217-
218215
init_done => dram_init_done,
219216
init_error => dram_init_error,
220217

litedram/extras/litedram-wrapper-l2.vhdl

-4
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,6 @@ entity litedram_wrapper is
5252
wb_ctrl_is_csr : in std_ulogic;
5353
wb_ctrl_is_init : in std_ulogic;
5454

55-
-- Init core serial debug
56-
serial_tx : out std_ulogic;
57-
serial_rx : in std_ulogic;
58-
5955
-- Misc
6056
init_done : out std_ulogic;
6157
init_error : out std_ulogic;

0 commit comments

Comments
 (0)