forked from ZipCPU/wb2axip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwbp2classic.v
165 lines (150 loc) · 4.21 KB
/
wbp2classic.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
////////////////////////////////////////////////////////////////////////////////
//
// Filename: wbp2classic.v
//
// Project: Pipelined Wishbone to AXI converter
//
// Purpose: Takes a WB pipelined connection from a master, and converts it
// to WB classic for the slave.
//
// Creator: Dan Gisselquist, Ph.D.
// Gisselquist Technology, LLC
//
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2019, Gisselquist Technology, LLC
//
// This program is free software (firmware): 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.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY 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. (It's in the $(ROOT)/doc directory, run make with no
// target there if the PDF file isn't present.) If not, see
// <http://www.gnu.org/licenses/> for a copy.
//
// License: GPL, v3, as defined and found on www.gnu.org,
// http://www.gnu.org/licenses/gpl.html
//
//
////////////////////////////////////////////////////////////////////////////////
//
//
`default_nettype none
//
module wbp2classic(i_clk, i_reset,
i_mcyc, i_mstb, i_mwe, i_maddr, i_mdata, i_msel,
o_mstall, o_mack, o_mdata, o_merr,
o_scyc, o_sstb, o_swe, o_saddr, o_sdata, o_ssel,
i_sack, i_sdata, i_serr,
o_scti, o_sbte);
parameter AW = 12,
DW = 32;
//
input wire i_clk, i_reset;
//
// Incoming WB pipelined port
input wire i_mcyc, i_mstb, i_mwe;
input wire [AW-1:0] i_maddr;
input wire [DW-1:0] i_mdata;
input wire [DW/8-1:0] i_msel;
output reg o_mstall, o_mack;
output reg [DW-1:0] o_mdata;
output reg o_merr;
//
// Outgoing WB classic port
output reg o_scyc, o_sstb, o_swe;
output reg [AW-1:0] o_saddr;
output reg [DW-1:0] o_sdata;
output reg [DW/8-1:0] o_ssel;
input wire i_sack;
input wire [DW-1:0] i_sdata;
input wire i_serr;
// Extra wires, not necessarily necessary for WB/B3
output reg [2:0] o_scti;
output reg [1:0] o_sbte;
//
// returned = whether we've received our return value or not.
reg returned;
always @(*)
begin
o_scyc = i_mcyc;
o_sstb = i_mstb && !returned;
o_swe = i_mwe;
o_saddr = i_maddr;
o_sdata = i_mdata;
o_ssel = i_msel;
// Cycle type indicator: Classic
o_scti = 3'b000;
// Burst type indicator--ignored for single transaction cycle
// types, such as the classic type above
o_sbte = 2'b00; // Linear burst
end
initial returned = 0;
always @(posedge i_clk)
if (i_reset)
returned <= 0;
else if (!i_mstb || returned)
returned <= 0;
else if (i_sack || i_serr)
returned <= 1;
always @(*)
o_mstall = !returned;
initial o_mack = 0;
initial o_merr = 0;
always @(posedge i_clk)
if (i_reset)
begin
o_mack <= 0;
o_merr <= 0;
end else begin
o_mack <= (i_mcyc) && i_sack;
o_merr <= (i_mcyc) && i_serr;
end
always @(posedge i_clk)
if (i_sack || i_serr)
o_mdata <= i_sdata;
`ifdef FORMAL
////////////////////////////////////////////////////////////////////////
//
//
//
////////////////////////////////////////////////////////////////////////
//
//
localparam F_LGDEPTH = 1;
reg [F_LGDEPTH-1:0] f_nreqs, f_nacks, f_outstanding;
reg f_past_valid;
initial f_past_valid = 0;
always @(posedge i_clk)
f_past_valid = 1;
always @(*)
if (!f_past_valid)
assume(i_reset);
fwb_slave #(.AW(AW), .DW(DW),
.F_MAX_STALL(4),
.F_MAX_ACK_DELAY(15),
.F_LGDEPTH(1)) incoming (i_clk, i_reset,
i_mcyc, i_mstb, i_mwe, i_maddr, i_mdata, i_msel,
o_mack, o_mstall, o_mdata, o_merr,
f_nreqs, f_nacks, f_outstanding);
fwbc_master #(.AW(AW), .DW(DW), .F_MAX_DELAY(3))
classic (i_clk, i_reset,
o_scyc, o_sstb, o_swe, o_saddr, o_sdata, o_ssel, o_scti, o_sbte,
i_sack, i_sdata, i_serr, 1'b0);
//
// Disallow bus aborts
reg f_ongoing;
always @(posedge i_clk)
f_ongoing <= (!i_reset && i_mstb && !(o_mack | o_merr));
always @(*)
if (f_ongoing)
assume(i_mstb);
`endif
endmodule