Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
x393
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
x393
Commits
5034058e
Commit
5034058e
authored
May 20, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added modules to test ddrc phy over axi read/write
parent
03bce211
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
276 additions
and
62 deletions
+276
-62
axibram_write.v
axi/axibram_write.v
+3
-2
ddrc_control.v
ddrc_control.v
+69
-0
ddrc_status.v
ddrc_status.v
+50
-0
ddrc_test01.v
ddrc_test01.v
+151
-58
ddrc_sequencer.v
phy/ddrc_sequencer.v
+3
-2
No files found.
axi/axibram_write.v
View file @
5034058e
...
@@ -89,7 +89,7 @@ module axibram_write #(
...
@@ -89,7 +89,7 @@ module axibram_write #(
reg
[
1
:
0
]
wburst
;
// registered burst type
reg
[
1
:
0
]
wburst
;
// registered burst type
reg
[
3
:
0
]
wlen
;
// registered awlen type (for wrapped over transfers)
reg
[
3
:
0
]
wlen
;
// registered awlen type (for wrapped over transfers)
wire
[
ADDRESS_BITS
-
1
:
0
]
next_wr_address_w
;
// next transfer address;
wire
[
ADDRESS_BITS
-
1
:
0
]
next_wr_address_w
;
// next transfer address;
wire
bram_we_w
;
// write BRAM memory
wire
bram_we_w
;
//,bram_we_nonmasked; // write BRAM memory non-masked - should be combined with
wire
start_write_burst_w
;
wire
start_write_burst_w
;
wire
write_in_progress_w
;
wire
write_in_progress_w
;
reg
dev_ready_r
;
// device, selected at start burst
reg
dev_ready_r
;
// device, selected at start burst
...
@@ -99,6 +99,7 @@ module axibram_write #(
...
@@ -99,6 +99,7 @@ module axibram_write #(
(
wburst
[
0
]
?
(
write_address
[
ADDRESS_BITS
-
1
:
0
]
+
1
)
:
(
write_address
[
ADDRESS_BITS
-
1
:
0
]))
;
(
wburst
[
0
]
?
(
write_address
[
ADDRESS_BITS
-
1
:
0
]
+
1
)
:
(
write_address
[
ADDRESS_BITS
-
1
:
0
]))
;
assign
bram_we_w
=
w_nempty
&&
write_in_progress
&&
dev_ready_r
;
assign
bram_we_w
=
w_nempty
&&
write_in_progress
&&
dev_ready_r
;
// assign bram_we_nonmasked= w_nempty && write_in_progress;
assign
start_write_burst_w
=
aw_nempty
&&
(
!
write_in_progress
||
(
w_nempty
&&
(
write_left
[
3
:
0
]
==
4'b0
)))
;
assign
start_write_burst_w
=
aw_nempty
&&
(
!
write_in_progress
||
(
w_nempty
&&
(
write_left
[
3
:
0
]
==
4'b0
)))
;
assign
write_in_progress_w
=
aw_nempty
||
(
write_in_progress
&&
!
(
w_nempty
&&
(
write_left
[
3
:
0
]
==
4'b0
)))
;
assign
write_in_progress_w
=
aw_nempty
||
(
write_in_progress
&&
!
(
w_nempty
&&
(
write_left
[
3
:
0
]
==
4'b0
)))
;
...
...
ddrc_control.v
0 → 100644
View file @
5034058e
/*******************************************************************************
* Module: ddrc_control
* Date:2014-05-19
* Author: Andrey Filippov
* Description: Temporary module with DDRC control / command registers
*
* Copyright (c) 2014 Elphel, Inc.
* ddrc_control.v is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ddrc_control.v is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/> .
*******************************************************************************/
`timescale
1
ns
/
1
ps
module
ddrc_control
#(
parameter
AXI_WR_ADDR_BITS
=
12
,
parameter
SELECT_ADDR
=
'h800
,
// address to select this module
parameter
SELECT_ADDR_MASK
=
'h800
,
// address mask to select this module
parameter
BUSY_ADDR
=
'hc00
,
// address to generate busy
parameter
BUSY_ADDR_MASK
=
'hc00
// address mask to generate busy
)(
input
clk
,
input
mclk
,
input
rst
,
input
[
AXI_WR_ADDR_BITS
-
1
:
0
]
pre_waddr
,
// AXI write address, before actual writes (to generate busy), valid@start_burst
input
start_wburst
,
// burst start - should generate ~ready (should be AND-ed with !busy internally)
input
[
AXI_WR_ADDR_BITS
-
1
:
0
]
waddr
,
// write address, valid with wr_en
input
wr_en
,
// write enable
input
[
31
:
0
]
wdata
,
// write data, valid with waddr and wr_en
output
busy
,
// interface busy (combinatorial delay from start_wburst and pre_addr
// control signals
// control: sequencer run
output
[
10
:
0
]
run_addr
,
// Start address of the physical sequencer (MSB = 0 - "manual", 1 -"auto")
output
[
3
:
0
]
run_chn
,
// channel number to use for I/O buffers
output
run_seq
,
// single mclk pulse to start sequencer
// input run_done; // output - will go through other channel - sequencer done (add busy?)
// control: delays and mmcm setup
output
[
7
:
0
]
dly_data
,
// 8-bit IDELAY/ODELAY (fine) and MMCM phase shift
output
[
6
:
0
]
dly_addr
,
// address to select delay register
output
ld_delay
,
// write dly_data to dly_address, one mclk active pulse
output
set
,
// transfer (activate) all delays simultaneosly, 1 mclk pulse
// control: additional signals
output
cmda_tri
,
// tri-state all command and address lines to DDR chip
output
inv_clk_div
,
// invert clk_div to ISERDES
output
[
7
:
0
]
dqs_pattern
,
// DQS pattern during write (normally 8'h55)
output
[
7
:
0
]
dqm_pattern
,
// DQM pattern (just for testing, should be 8'h0)
// control: buffers pages
output
[
1
:
0
]
port0_page
,
// port 0 buffer read page (to be controlled by arbiter later, set to 2'b0)
output
[
1
:
0
]
port0_int_page
,
// port 0 PHY-side write to buffer page (to be controlled by arbiter later, set to 2'b0)
output
[
1
:
0
]
port1_page
,
// port 1 buffer write page (to be controlled by arbiter later, set to 2'b0)
output
[
1
:
0
]
port1_int_page
// port 1 PHY-side buffer read page (to be controlled by arbiter later, set to 2'b0)
)
;
reg
busy_r
=
0
;
reg
selected_r
=
0
;
// assign busy=busy_r && start_wburst?(((pre_addr ^ SELECT_ADDR) & SELECT_ADDR_MASK)==0): selected_r;
assign
busy
=
busy_r
&&
start_wburst
?
(((
pre_waddr
^
BUSY_ADDR
)
&
BUSY_ADDR_MASK
)
==
0
)
:
selected_r
;
endmodule
ddrc_status.v
0 → 100644
View file @
5034058e
/*******************************************************************************
* Module: ddrc_status
* Date:2014-05-19
* Author: Andrey Filippov
* Description: Read status/radback information from the DDR controller
*
* Copyright (c) 2014 Elphel, Inc.
* ddrc_status.v is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ddrc_status.v is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/> .
*******************************************************************************/
`timescale
1
ns
/
1
ps
module
ddrc_status
#(
parameter
AXI_RD_ADDR_BITS
=
12
,
parameter
SELECT_ADDR
=
'h800
,
// address to select this module
parameter
SELECT_ADDR_MASK
=
'h800
,
// address mask to select this module
parameter
BUSY_ADDR
=
'hc00
,
// address to generate busy
parameter
BUSY_ADDR_MASK
=
'hc00
// address mask to generate busy
)(
input
clk
,
input
mclk
,
input
rst
,
input
[
AXI_RD_ADDR_BITS
-
1
:
0
]
pre_raddr
,
// AXI reade address, before actual reads (to generate busy), valid@start_burst
input
start_rburst
,
// burst start - should generate ~ready (should be AND-ed with !busy internally)
input
[
AXI_RD_ADDR_BITS
-
1
:
0
]
raddr
,
// read address, valid with rd_en
input
rd_en
,
// read enable
output
[
31
:
0
]
rdata
,
// read data, should valid with raddr and rd_en
output
busy
,
// interface busy (combinatorial delay from start_wburst and pre_addr
// status/readback signals
input
run_done
,
// sequencer done (add busy?)
input
run_busy
,
// sequencer busy
input
locked
,
// MMCM and PLL locked
input
ps_rdy
,
// MMCM phase shift control ready
input
[
7
:
0
]
ps_out
// MMCM phase shift value (in 1/56 of the Fvco period)
)
;
endmodule
ddrc_test01.v
View file @
5034058e
This diff is collapsed.
Click to expand it.
phy/ddrc_sequencer.v
View file @
5034058e
...
@@ -83,6 +83,7 @@ module ddrc_sequencer #(
...
@@ -83,6 +83,7 @@ module ddrc_sequencer #(
input
[
3
:
0
]
run_chn
,
// data channel to use
input
[
3
:
0
]
run_chn
,
// data channel to use
input
run_seq
,
// start controller sequence
input
run_seq
,
// start controller sequence
output
run_done
,
// controller sequence finished
output
run_done
,
// controller sequence finished
output
run_busy
,
// controller sequence in progress
// inteface to control I/O delays and mmcm
// inteface to control I/O delays and mmcm
input
[
7
:
0
]
dly_data
,
// delay value (3 LSB - fine delay)
input
[
7
:
0
]
dly_data
,
// delay value (3 LSB - fine delay)
input
[
6
:
0
]
dly_addr
,
// select which delay to program
input
[
6
:
0
]
dly_addr
,
// select which delay to program
...
@@ -150,7 +151,7 @@ module ddrc_sequencer #(
...
@@ -150,7 +151,7 @@ module ddrc_sequencer #(
reg
run_seq_d
;
reg
run_seq_d
;
assign
run_done
=
sequence_done
;
assign
run_done
=
sequence_done
;
assign
run_busy
=
cmd_busy
[
0
]
;
//earliest
assign
pause
=
cmd_fetch
?
(
phy_cmd_nop
&&
(
pause_len
!=
0
))
:
(
cmd_busy
[
2
]
&&
(
pause_cntr
[
CMD_PAUSE_BITS
-
1
:
1
]
!=
0
))
;
assign
pause
=
cmd_fetch
?
(
phy_cmd_nop
&&
(
pause_len
!=
0
))
:
(
cmd_busy
[
2
]
&&
(
pause_cntr
[
CMD_PAUSE_BITS
-
1
:
1
]
!=
0
))
;
assign
phy_cmd_word
=
phy_cmd_word
?
phy_cmd1_word
:
phy_cmd0_word
;
assign
phy_cmd_word
=
phy_cmd_word
?
phy_cmd1_word
:
phy_cmd0_word
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment