1 |
2 |
rehayes |
////////////////////////////////////////////////////////////////////////////////
|
2 |
|
|
//
|
3 |
|
|
// WISHBONE revB.2 compliant Xgate Coprocessor - Slave Bus interface
|
4 |
|
|
//
|
5 |
|
|
// Author: Bob Hayes
|
6 |
|
|
// rehayes@opencores.org
|
7 |
|
|
//
|
8 |
|
|
// Downloaded from: http://www.opencores.org/projects/xgate.....
|
9 |
|
|
//
|
10 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
11 |
|
|
// Copyright (c) 2009, Robert Hayes
|
12 |
|
|
//
|
13 |
|
|
// This source file is free software: you can redistribute it and/or modify
|
14 |
|
|
// it under the terms of the GNU Lesser General Public License as published
|
15 |
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
16 |
|
|
// (at your option) any later version.
|
17 |
|
|
//
|
18 |
|
|
// Supplemental terms.
|
19 |
|
|
// * Redistributions of source code must retain the above copyright
|
20 |
|
|
// notice, this list of conditions and the following disclaimer.
|
21 |
|
|
// * Neither the name of the <organization> nor the
|
22 |
|
|
// names of its contributors may be used to endorse or promote products
|
23 |
|
|
// derived from this software without specific prior written permission.
|
24 |
|
|
//
|
25 |
|
|
// THIS SOFTWARE IS PROVIDED BY Robert Hayes ''AS IS'' AND ANY
|
26 |
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
27 |
|
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
28 |
|
|
// DISCLAIMED. IN NO EVENT SHALL Robert Hayes BE LIABLE FOR ANY
|
29 |
|
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
30 |
|
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
31 |
|
|
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
32 |
|
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
33 |
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
34 |
|
|
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
35 |
|
|
//
|
36 |
|
|
// You should have received a copy of the GNU General Public License
|
37 |
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
38 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
39 |
|
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
40 |
|
|
|
41 |
|
|
module xgate_wbs_bus #(parameter ARST_LVL = 1'b0, // asynchronous reset level
|
42 |
|
|
parameter DWIDTH = 16,
|
43 |
|
|
parameter SINGLE_CYCLE = 1'b0)
|
44 |
|
|
(
|
45 |
|
|
// Wishbone Signals
|
46 |
|
|
output [DWIDTH-1:0] wbs_dat_o, // databus output
|
47 |
|
|
output wbs_ack_o, // bus cycle acknowledge output
|
48 |
|
|
input wbs_clk_i, // master clock input
|
49 |
|
|
input wbs_rst_i, // synchronous active high reset
|
50 |
|
|
input arst_i, // asynchronous reset
|
51 |
41 |
rehayes |
input [ 5:1] wbs_adr_i, // lower address bits
|
52 |
2 |
rehayes |
input [DWIDTH-1:0] wbs_dat_i, // databus input
|
53 |
|
|
input wbs_we_i, // write enable input
|
54 |
|
|
input wbs_stb_i, // stobe/core select signal
|
55 |
|
|
input wbs_cyc_i, // valid bus cycle input
|
56 |
|
|
input [1:0] wbs_sel_i, // Select byte in word bus transaction
|
57 |
5 |
rehayes |
// XGATE Control Signals
|
58 |
2 |
rehayes |
output reg write_xgmctl, // Write Strobe for XGMCTL register
|
59 |
17 |
rehayes |
output reg write_xgchid, // Write Strobe for XGCHID register
|
60 |
2 |
rehayes |
output reg write_xgisp74,// Write Strobe for XGISP74 register
|
61 |
|
|
output reg write_xgisp30,// Write Strobe for XGISP30 register
|
62 |
41 |
rehayes |
output reg [1:0] write_xgvbr, // Write Strobe for XGVBR register
|
63 |
|
|
output reg [1:0] write_xgif_7, // Write Strobe for Interrupt Flag Register 7
|
64 |
|
|
output reg [1:0] write_xgif_6, // Write Strobe for Interrupt Flag Register 6
|
65 |
|
|
output reg [1:0] write_xgif_5, // Write Strobe for Interrupt Flag Register 5
|
66 |
|
|
output reg [1:0] write_xgif_4, // Write Strobe for Interrupt Flag Register 4
|
67 |
|
|
output reg [1:0] write_xgif_3, // Write Strobe for Interrupt Flag Register 3
|
68 |
|
|
output reg [1:0] write_xgif_2, // Write Strobe for Interrupt Flag Register 2
|
69 |
|
|
output reg [1:0] write_xgif_1, // Write Strobe for Interrupt Flag Register 1
|
70 |
|
|
output reg [1:0] write_xgif_0, // Write Strobe for Interrupt Flag Register 0
|
71 |
2 |
rehayes |
output reg write_xgswt, // Write Strobe for XGSWT register
|
72 |
|
|
output reg write_xgsem, // Write Strobe for XGSEM register
|
73 |
|
|
output reg write_xgccr, // Write Strobe for XGATE Condition Code Register
|
74 |
41 |
rehayes |
output reg [1:0] write_xgpc, // Write Strobe for XGATE Program Counter
|
75 |
|
|
output reg [1:0] write_xgr7, // Write Strobe for XGATE Data Register R7
|
76 |
|
|
output reg [1:0] write_xgr6, // Write Strobe for XGATE Data Register R6
|
77 |
|
|
output reg [1:0] write_xgr5, // Write Strobe for XGATE Data Register R5
|
78 |
|
|
output reg [1:0] write_xgr4, // Write Strobe for XGATE Data Register R4
|
79 |
|
|
output reg [1:0] write_xgr3, // Write Strobe for XGATE Data Register R3
|
80 |
|
|
output reg [1:0] write_xgr2, // Write Strobe for XGATE Data Register R2
|
81 |
|
|
output reg [1:0] write_xgr1, // Write Strobe for XGATE Data Register R1
|
82 |
2 |
rehayes |
output async_rst_b, //
|
83 |
|
|
output sync_reset, //
|
84 |
|
|
input [415:0] read_regs // status register bits
|
85 |
|
|
);
|
86 |
|
|
|
87 |
|
|
|
88 |
|
|
// registers
|
89 |
|
|
reg bus_wait_state; // Holdoff wbs_ack_o for one clock to add wait state
|
90 |
|
|
reg [DWIDTH-1:0] rd_data_mux; // Pseudo Register, WISHBONE Read Data Mux
|
91 |
|
|
reg [DWIDTH-1:0] rd_data_reg; // Latch for WISHBONE Read Data
|
92 |
|
|
|
93 |
17 |
rehayes |
reg write_reserv1; // Dummy Reg decode for Reserved address
|
94 |
|
|
reg write_reserv2; // Dummy Reg decode for Reserved address
|
95 |
2 |
rehayes |
|
96 |
|
|
// Wires
|
97 |
|
|
wire module_sel; // This module is selected for bus transaction
|
98 |
|
|
wire wbs_wacc; // WISHBONE Write Strobe (Clock gating signal)
|
99 |
|
|
wire wbs_racc; // WISHBONE Read Access (Clock gating signal)
|
100 |
|
|
|
101 |
|
|
//
|
102 |
|
|
// module body
|
103 |
|
|
//
|
104 |
|
|
|
105 |
|
|
// generate internal resets
|
106 |
|
|
assign async_rst_b = arst_i ^ ARST_LVL;
|
107 |
|
|
assign sync_reset = wbs_rst_i;
|
108 |
|
|
|
109 |
|
|
// generate wishbone signals
|
110 |
|
|
assign module_sel = wbs_cyc_i && wbs_stb_i;
|
111 |
|
|
assign wbs_wacc = module_sel && wbs_we_i && (wbs_ack_o || SINGLE_CYCLE);
|
112 |
|
|
assign wbs_racc = module_sel && !wbs_we_i;
|
113 |
|
|
assign wbs_ack_o = SINGLE_CYCLE ? module_sel : bus_wait_state;
|
114 |
|
|
assign wbs_dat_o = SINGLE_CYCLE ? rd_data_mux : rd_data_reg;
|
115 |
|
|
|
116 |
|
|
// generate acknowledge output signal, By using register all accesses takes two cycles.
|
117 |
|
|
// Accesses in back to back clock cycles are not possable.
|
118 |
|
|
always @(posedge wbs_clk_i or negedge async_rst_b)
|
119 |
|
|
if (!async_rst_b)
|
120 |
|
|
bus_wait_state <= 1'b0;
|
121 |
|
|
else if (sync_reset)
|
122 |
|
|
bus_wait_state <= 1'b0;
|
123 |
|
|
else
|
124 |
|
|
bus_wait_state <= module_sel && !bus_wait_state;
|
125 |
|
|
|
126 |
|
|
// assign data read bus -- DAT_O
|
127 |
|
|
always @(posedge wbs_clk_i)
|
128 |
|
|
if ( wbs_racc ) // Clock gate for power saving
|
129 |
|
|
rd_data_reg <= rd_data_mux;
|
130 |
|
|
|
131 |
|
|
|
132 |
|
|
// WISHBONE Read Data Mux
|
133 |
|
|
always @*
|
134 |
|
|
case (wbs_adr_i) // synopsys parallel_case
|
135 |
|
|
// 16 bit Bus, 16 bit Granularity
|
136 |
|
|
5'b0_0000: rd_data_mux = read_regs[ 15: 0];
|
137 |
|
|
5'b0_0001: rd_data_mux = read_regs[ 31: 16];
|
138 |
|
|
5'b0_0010: rd_data_mux = read_regs[ 47: 32];
|
139 |
|
|
5'b0_0011: rd_data_mux = read_regs[ 63: 48];
|
140 |
|
|
5'b0_0100: rd_data_mux = read_regs[ 79: 64];
|
141 |
|
|
5'b0_0101: rd_data_mux = read_regs[ 95: 80];
|
142 |
|
|
5'b0_0110: rd_data_mux = read_regs[111: 96];
|
143 |
|
|
5'b0_0111: rd_data_mux = read_regs[127:112];
|
144 |
|
|
5'b0_1000: rd_data_mux = read_regs[143:128];
|
145 |
|
|
5'b0_1001: rd_data_mux = read_regs[159:144];
|
146 |
|
|
5'b0_1010: rd_data_mux = read_regs[175:160];
|
147 |
|
|
5'b0_1011: rd_data_mux = read_regs[191:176];
|
148 |
|
|
5'b0_1100: rd_data_mux = read_regs[207:192];
|
149 |
|
|
5'b0_1101: rd_data_mux = read_regs[223:208];
|
150 |
|
|
5'b0_1110: rd_data_mux = read_regs[239:224];
|
151 |
|
|
5'b0_1111: rd_data_mux = read_regs[255:240];
|
152 |
|
|
5'b1_0000: rd_data_mux = read_regs[271:256];
|
153 |
|
|
5'b1_0001: rd_data_mux = read_regs[287:272];
|
154 |
|
|
5'b1_0010: rd_data_mux = read_regs[303:288];
|
155 |
|
|
5'b1_0011: rd_data_mux = read_regs[319:304];
|
156 |
|
|
5'b1_0100: rd_data_mux = read_regs[335:320];
|
157 |
|
|
5'b1_0101: rd_data_mux = read_regs[351:336];
|
158 |
|
|
5'b1_0110: rd_data_mux = read_regs[367:352];
|
159 |
|
|
5'b1_0111: rd_data_mux = read_regs[383:368];
|
160 |
|
|
5'b1_1000: rd_data_mux = read_regs[399:384];
|
161 |
|
|
5'b1_1001: rd_data_mux = read_regs[415:400];
|
162 |
|
|
default: rd_data_mux = 16'h0000;
|
163 |
|
|
endcase
|
164 |
|
|
|
165 |
|
|
// generate wishbone write register strobes
|
166 |
|
|
always @*
|
167 |
|
|
begin
|
168 |
17 |
rehayes |
write_reserv1 = 1'b0;
|
169 |
|
|
write_reserv2 = 1'b0;
|
170 |
|
|
write_xgmctl = 1'b0;
|
171 |
|
|
write_xgchid = 1'b0;
|
172 |
2 |
rehayes |
write_xgisp74 = 1'b0;
|
173 |
|
|
write_xgisp30 = 1'b0;
|
174 |
41 |
rehayes |
write_xgvbr = 2'b00;
|
175 |
|
|
write_xgif_7 = 2'b00;
|
176 |
|
|
write_xgif_6 = 2'b00;
|
177 |
|
|
write_xgif_5 = 2'b00;
|
178 |
|
|
write_xgif_4 = 2'b00;
|
179 |
|
|
write_xgif_3 = 2'b00;
|
180 |
|
|
write_xgif_2 = 2'b00;
|
181 |
|
|
write_xgif_1 = 2'b00;
|
182 |
|
|
write_xgif_0 = 2'b00;
|
183 |
2 |
rehayes |
write_xgswt = 1'b0;
|
184 |
|
|
write_xgsem = 1'b0;
|
185 |
|
|
write_xgccr = 1'b0;
|
186 |
41 |
rehayes |
write_xgpc = 2'b00;
|
187 |
|
|
write_xgr7 = 2'b00;
|
188 |
|
|
write_xgr6 = 2'b00;
|
189 |
|
|
write_xgr5 = 2'b00;
|
190 |
|
|
write_xgr4 = 2'b00;
|
191 |
|
|
write_xgr3 = 2'b00;
|
192 |
|
|
write_xgr2 = 2'b00;
|
193 |
|
|
write_xgr1 = 2'b00;
|
194 |
2 |
rehayes |
if (wbs_wacc)
|
195 |
|
|
case (wbs_adr_i) // synopsys parallel_case
|
196 |
41 |
rehayes |
// 16 bit Bus, 8 bit Granularity
|
197 |
|
|
5'b0_0000 : write_xgmctl = &wbs_sel_i;
|
198 |
|
|
5'b0_0001 : write_xgchid = wbs_sel_i[0];
|
199 |
2 |
rehayes |
5'b0_0010 : write_xgisp74 = 1'b1;
|
200 |
|
|
5'b0_0011 : write_xgisp30 = 1'b1;
|
201 |
41 |
rehayes |
5'b0_0100 : write_xgvbr = wbs_sel_i;
|
202 |
|
|
5'b0_0101 : write_xgif_7 = wbs_sel_i;
|
203 |
|
|
5'b0_0110 : write_xgif_6 = wbs_sel_i;
|
204 |
|
|
5'b0_0111 : write_xgif_5 = wbs_sel_i;
|
205 |
|
|
5'b0_1000 : write_xgif_4 = wbs_sel_i;
|
206 |
|
|
5'b0_1001 : write_xgif_3 = wbs_sel_i;
|
207 |
|
|
5'b0_1010 : write_xgif_2 = wbs_sel_i;
|
208 |
|
|
5'b0_1011 : write_xgif_1 = wbs_sel_i;
|
209 |
|
|
5'b0_1100 : write_xgif_0 = wbs_sel_i;
|
210 |
|
|
5'b0_1101 : write_xgswt = &wbs_sel_i;
|
211 |
|
|
5'b0_1110 : write_xgsem = &wbs_sel_i;
|
212 |
17 |
rehayes |
5'b0_1111 : write_reserv1 = 1'b1;
|
213 |
41 |
rehayes |
5'b1_0000 : write_xgccr = wbs_sel_i[0];
|
214 |
|
|
5'b1_0001 : write_xgpc = wbs_sel_i;
|
215 |
17 |
rehayes |
5'b1_0010 : write_reserv2 = 1'b1;
|
216 |
41 |
rehayes |
5'b1_0011 : write_xgr1 = wbs_sel_i;
|
217 |
|
|
5'b1_0100 : write_xgr2 = wbs_sel_i;
|
218 |
|
|
5'b1_0101 : write_xgr3 = wbs_sel_i;
|
219 |
|
|
5'b1_0110 : write_xgr4 = wbs_sel_i;
|
220 |
|
|
5'b1_0111 : write_xgr5 = wbs_sel_i;
|
221 |
|
|
5'b1_1000 : write_xgr6 = wbs_sel_i;
|
222 |
|
|
5'b1_1001 : write_xgr7 = wbs_sel_i;
|
223 |
2 |
rehayes |
default: ;
|
224 |
|
|
endcase
|
225 |
|
|
end
|
226 |
|
|
|
227 |
|
|
endmodule // xgate_wbs_bus
|