OpenCores
URL https://opencores.org/ocsvn/xgate/xgate/trunk

Subversion Repositories xgate

[/] [xgate/] [trunk/] [rtl/] [verilog/] [xgate_top.v] - Blame information for rev 43

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 rehayes
////////////////////////////////////////////////////////////////////////////////
2
//
3
//  XGATE Coprocessor - XGATE Top Level Module
4
//
5
//  Author: Robert 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_top #(parameter ARST_LVL = 1'b0,      // asynchronous reset level
42
                   parameter SINGLE_CYCLE = 1'b0,  // 
43
                   parameter MAX_CHANNEL = 127,    // Max XGATE Interrupt Channel Number
44
                   parameter DWIDTH = 16)          // Data bus width
45
  (
46 5 rehayes
  // Wishbone Slave Signals
47
  output    [DWIDTH-1:0] wbs_dat_o,     // databus output
48
  output                 wbs_ack_o,     // bus cycle acknowledge output
49
  input                  wbs_clk_i,     // master clock input
50
  input                  wbs_rst_i,     // synchronous active high reset
51
  input                  arst_i,        // asynchronous reset
52 41 rehayes
  input            [5:1] wbs_adr_i,     // lower address bits
53 5 rehayes
  input     [DWIDTH-1:0] wbs_dat_i,     // databus input
54
  input                  wbs_we_i,      // write enable input
55
  input                  wbs_stb_i,     // stobe/core select signal
56
  input                  wbs_cyc_i,     // valid bus cycle input
57
  input            [1:0] wbs_sel_i,     // Select byte in word bus transaction
58
  // Wishbone Master Signals
59
  output    [DWIDTH-1:0] wbm_dat_o,     // databus output
60
  output                 wbm_we_o,      // write enable output
61
  output                 wbm_stb_o,     // stobe/core select signal
62
  output                 wbm_cyc_o,     // valid bus cycle output
63
  output          [ 1:0] wbm_sel_o,     // Select byte in word bus transaction
64
  output          [15:0] wbm_adr_o,     // Address bits
65
  input     [DWIDTH-1:0] wbm_dat_i,     // databus input
66
  input                  wbm_ack_i,     // bus cycle acknowledge input
67 2 rehayes
  // XGATE IO Signals
68 5 rehayes
  output          [ 7:0] xgswt,         // XGATE Software Trigger Register
69 2 rehayes
  output                 write_mem_strb_l, // Strobe for writing low data byte
70
  output                 write_mem_strb_h, // Strobe for writing high data bye
71 12 rehayes
  output                 xg_sw_irq,        // Xgate Software interrupt
72 2 rehayes
  output [MAX_CHANNEL:0] xgif,             // XGATE Interrupt Flag
73
  input  [MAX_CHANNEL:0] chan_req_i,       // XGATE Interrupt request
74
  input                  risc_clk,         // Clock for RISC core
75 30 rehayes
  input                  debug_mode_i,     // Force RISC core into debug mode
76
  input                  secure_mode_i,    // Limit host asscess to Xgate RISC registers
77 2 rehayes
  input                  scantestmode      // Chip in in scan test mode
78
  );
79
 
80
  wire        zero_flag;
81
  wire        negative_flag;
82
  wire        carry_flag;
83
  wire        overflow_flag;
84
  wire [15:0] xgr1;          // XGATE Register #1
85
  wire [15:0] xgr2;          // XGATE Register #2
86
  wire [15:0] xgr3;          // XGATE Register #3
87
  wire [15:0] xgr4;          // XGATE Register #4
88
  wire [15:0] xgr5;          // XGATE Register #5
89
  wire [15:0] xgr6;          // XGATE Register #6
90
  wire [15:0] xgr7;          // XGATE Register #7
91
 
92
  wire        write_xgmctl;  // Write Strobe for XGMCTL register
93 17 rehayes
  wire        write_xgchid;  // Write Strobe for XGCHID register
94 41 rehayes
  wire  [1:0] write_xgvbr;   // Write Strobe for XGVBR register
95
  wire  [1:0] write_xgif_7;  // Write Strobe for Interrupt Flag Register 7
96
  wire  [1:0] write_xgif_6;  // Write Strobe for Interrupt Flag Register 6
97
  wire  [1:0] write_xgif_5;  // Write Strobe for Interrupt Flag Register 5
98
  wire  [1:0] write_xgif_4;  // Write Strobe for Interrupt Flag Register 4
99
  wire  [1:0] write_xgif_3;  // Write Strobe for Interrupt Flag Register 3
100
  wire  [1:0] write_xgif_2;  // Write Strobe for Interrupt Flag Register 2
101
  wire  [1:0] write_xgif_1;  // Write Strobe for Interrupt Flag Register 1
102
  wire  [1:0] write_xgif_0;  // Write Strobe for Interrupt Flag Register 0
103 2 rehayes
  wire        write_xgswt;   // Write Strobe for XGSWT register
104
  wire        write_xgsem;   // Write Strobe for XGSEM register
105
  wire        write_xgccr;   // Write Strobe for XGATE Condition Code Register
106 41 rehayes
  wire  [1:0] write_xgpc;    // Write Strobe for XGATE Program Counter
107
  wire  [1:0] write_xgr7;    // Write Strobe for XGATE Data Register R7
108
  wire  [1:0] write_xgr6;    // Write Strobe for XGATE Data Register R6
109
  wire  [1:0] write_xgr5;    // Write Strobe for XGATE Data Register R5
110
  wire  [1:0] write_xgr4;    // Write Strobe for XGATE Data Register R4
111
  wire  [1:0] write_xgr3;    // Write Strobe for XGATE Data Register R3
112
  wire  [1:0] write_xgr2;    // Write Strobe for XGATE Data Register R2
113
  wire  [1:0] write_xgr1;    // Write Strobe for XGATE Data Register R1
114 2 rehayes
 
115
  wire        clear_xgif_7;    // Strobe for decode to clear interrupt flag bank 7
116
  wire        clear_xgif_6;    // Strobe for decode to clear interrupt flag bank 6
117
  wire        clear_xgif_5;    // Strobe for decode to clear interrupt flag bank 5
118
  wire        clear_xgif_4;    // Strobe for decode to clear interrupt flag bank 4
119
  wire        clear_xgif_3;    // Strobe for decode to clear interrupt flag bank 3
120
  wire        clear_xgif_2;    // Strobe for decode to clear interrupt flag bank 2
121
  wire        clear_xgif_1;    // Strobe for decode to clear interrupt flag bank 1
122
  wire        clear_xgif_0;    // Strobe for decode to clear interrupt flag bank 0
123
  wire [15:0] clear_xgif_data; // Data for decode to clear interrupt flag
124
 
125
  wire        xge;           // XGATE Module Enable
126
  wire        xgfrz;         // Stop XGATE in Freeze Mode
127 15 rehayes
  wire        xgdbg_set;     // Enter XGATE Debug Mode
128
  wire        xgdbg_clear;   // Leave XGATE Debug Mode
129 41 rehayes
  wire        xgfact;        // Fake Activity
130 2 rehayes
  wire        xgss;          // XGATE Single Step
131
  wire        xgsweif_c;     // Clear XGATE Software Error Interrupt FLag
132
  wire        xgie;          // XGATE Interrupt Enable
133
  wire [ 6:0] int_req;       // Encoded interrupt request
134
  wire [ 6:0] xgchid;        // Channel actively being processed
135 30 rehayes
  wire [127:0] xgif_status;   // Status bits of interrupt output flags that have been set
136 2 rehayes
  wire [15:1] xgvbr;         // XGATE vector Base Address Register
137 12 rehayes
  wire        brk_irq_ena;   // Enable BRK instruction to generate interrupt
138 2 rehayes
 
139 5 rehayes
  wire [15:0] xgate_address;   //
140
  wire [15:0] write_mem_data;  //
141
  wire [15:0] read_mem_data;   //
142 34 rehayes
  wire        mem_access;      //
143 5 rehayes
  wire        mem_req_ack;     //
144 12 rehayes
 
145
  wire        debug_active;    // RISC state machine in Debug mode 
146 5 rehayes
 
147 2 rehayes
  wire [ 7:0] host_semap;    // Semaphore status for host
148
//  wire [15:0] write_mem_data;
149
//  wire [15:0] read_mem_data;
150
//  wire [15:0] perif_data;
151
 
152 30 rehayes
  assign xgif = xgif_status[MAX_CHANNEL:0];
153 2 rehayes
  // ---------------------------------------------------------------------------
154
  // Wishbone Slave Bus interface
155
  xgate_wbs_bus #(.ARST_LVL(ARST_LVL),
156 5 rehayes
                  .SINGLE_CYCLE(SINGLE_CYCLE))
157 2 rehayes
    wishbone_s(
158
    .wbs_dat_o( wbs_dat_o ),
159
    .wbs_ack_o( wbs_ack_o ),
160
    .wbs_clk_i( wbs_clk_i ),
161
    .wbs_rst_i( wbs_rst_i ),
162
    .arst_i( arst_i ),
163
    .wbs_adr_i( wbs_adr_i ),
164
    .wbs_dat_i( wbs_dat_i ),
165
    .wbs_we_i( wbs_we_i ),
166
    .wbs_stb_i( wbs_stb_i ),
167
    .wbs_cyc_i( wbs_cyc_i ),
168
    .wbs_sel_i( wbs_sel_i ),
169
 
170
    // outputs
171
    .sync_reset( sync_reset ),
172
    .write_xgmctl( write_xgmctl ),
173 17 rehayes
    .write_xgchid( write_xgchid ),
174 2 rehayes
    .write_xgvbr( write_xgvbr ),
175
    .write_xgif_7( write_xgif_7 ),
176
    .write_xgif_6( write_xgif_6 ),
177
    .write_xgif_5( write_xgif_5 ),
178
    .write_xgif_4( write_xgif_4 ),
179
    .write_xgif_3( write_xgif_3 ),
180
    .write_xgif_2( write_xgif_2 ),
181
    .write_xgif_1( write_xgif_1 ),
182
    .write_xgif_0( write_xgif_0 ),
183
    .write_xgswt( write_xgswt ),
184
    .write_xgsem( write_xgsem ),
185
    .write_xgccr( write_xgccr ),
186
    .write_xgpc( write_xgpc ),
187
    .write_xgr7( write_xgr7 ),
188
    .write_xgr6( write_xgr6 ),
189
    .write_xgr5( write_xgr5 ),
190
    .write_xgr4( write_xgr4 ),
191
    .write_xgr3( write_xgr3 ),
192
    .write_xgr2( write_xgr2 ),
193
    .write_xgr1( write_xgr1 ),
194
    // inputs    
195
    .async_rst_b  ( async_rst_b ),
196
    .read_regs    (               // in  -- read register bits
197
                   { xgr7,             // XGR7
198
                     xgr6,             // XGR6
199
                     xgr5,             // XGR5
200
                     xgr4,             // XGR4
201
                     xgr3,             // XGR3
202
                     xgr2,             // XGR2
203
                     xgr1,             // XGR1
204
                     16'b0,            // Reserved (XGR0)
205
                     xgate_address,    // XGPC
206
                     {12'h000,  negative_flag, zero_flag, overflow_flag, carry_flag},  // XGCCR
207 17 rehayes
                     16'b0,                // Reserved
208 2 rehayes
                     {8'h00, host_semap},  // XGSEM
209 17 rehayes
                     {8'h00, xgswt},       // XGSWT
210 30 rehayes
                     xgif_status[ 15:  0], // XGIF_0
211
                     xgif_status[ 31: 16], // XGIF_1
212
                     xgif_status[ 47: 32], // XGIF_2
213
                     xgif_status[ 63: 48], // XGIF_3
214
                     xgif_status[ 79: 64], // XGIF_4
215
                     xgif_status[ 95: 80], // XGIF_5
216
                     xgif_status[111: 96], // XGIF_6
217
                     xgif_status[127:112], // XGIF_7
218 2 rehayes
                     {xgvbr[15:1], 1'b0},  // XGVBR
219 43 rehayes
                     16'b0,                // Reserved
220
                     16'b0,                // Reserved
221 17 rehayes
                     {8'b0, 1'b0, xgchid}, // XGCHID
222 41 rehayes
                     {8'b0, xge, xgfrz, debug_active, 1'b0, xgfact, brk_irq_ena, xg_sw_irq, xgie}  // XGMCTL
223 2 rehayes
                   }
224
                  )
225
  );
226
 
227
  // ---------------------------------------------------------------------------
228
  xgate_regs #(.ARST_LVL(ARST_LVL),
229
               .MAX_CHANNEL(MAX_CHANNEL))
230
    regs(
231
    // outputs
232
    .xge( xge ),
233
    .xgfrz( xgfrz ),
234 15 rehayes
    .xgdbg_set( xgdbg_set ),
235
    .xgdbg_clear( xgdbg_clear ),
236 41 rehayes
    .xgfact( xgfact ),
237 2 rehayes
    .xgss( xgss ),
238
    .xgsweif_c( xgsweif_c ),
239
    .xgie( xgie ),
240 12 rehayes
    .brk_irq_ena( brk_irq_ena ),
241 2 rehayes
    .xgvbr( xgvbr ),
242
    .xgswt( xgswt ),
243
    .clear_xgif_7( clear_xgif_7 ),
244
    .clear_xgif_6( clear_xgif_6 ),
245
    .clear_xgif_5( clear_xgif_5 ),
246
    .clear_xgif_4( clear_xgif_4 ),
247
    .clear_xgif_3( clear_xgif_3 ),
248
    .clear_xgif_2( clear_xgif_2 ),
249
    .clear_xgif_1( clear_xgif_1 ),
250
    .clear_xgif_0( clear_xgif_0 ),
251
    .clear_xgif_data( clear_xgif_data ),
252
 
253
    // inputs
254
    .async_rst_b( async_rst_b ),
255
    .sync_reset( sync_reset ),
256
    .bus_clk( wbs_clk_i ),
257
    .write_bus( wbs_dat_i ),
258
    .write_xgmctl( write_xgmctl ),
259
    .write_xgvbr( write_xgvbr ),
260
    .write_xgif_7( write_xgif_7 ),
261
    .write_xgif_6( write_xgif_6 ),
262
    .write_xgif_5( write_xgif_5 ),
263
    .write_xgif_4( write_xgif_4 ),
264
    .write_xgif_3( write_xgif_3 ),
265
    .write_xgif_2( write_xgif_2 ),
266
    .write_xgif_1( write_xgif_1 ),
267
    .write_xgif_0( write_xgif_0 ),
268
    .write_xgswt( write_xgswt )
269
  );
270
 
271
  // ---------------------------------------------------------------------------
272
  xgate_risc #(.MAX_CHANNEL(MAX_CHANNEL))
273
    risc(
274
    // outputs
275
    .xgate_address( xgate_address ),
276
    .write_mem_strb_l( write_mem_strb_l ),
277
    .write_mem_strb_h( write_mem_strb_h ),
278
    .write_mem_data( write_mem_data ),
279
    .zero_flag( zero_flag ),
280
    .negative_flag( negative_flag ),
281
    .carry_flag( carry_flag ),
282
    .overflow_flag( overflow_flag ),
283
    .xgchid( xgchid ),
284
    .host_semap( host_semap ),
285
    .xgr1( xgr1 ),
286
    .xgr2( xgr2 ),
287
    .xgr3( xgr3 ),
288
    .xgr4( xgr4 ),
289
    .xgr5( xgr5 ),
290
    .xgr6( xgr6 ),
291
    .xgr7( xgr7 ),
292 30 rehayes
    .xgif_status( xgif_status ),
293 12 rehayes
    .debug_active( debug_active ),
294
    .xg_sw_irq( xg_sw_irq ),
295 34 rehayes
    .mem_access( mem_access ),
296 2 rehayes
 
297
    // inputs
298
    .risc_clk( risc_clk ),
299
    .perif_data( wbs_dat_i ),
300
    .async_rst_b( async_rst_b ),
301
    .read_mem_data( read_mem_data ),
302 5 rehayes
    .mem_req_ack( mem_req_ack ),
303 2 rehayes
    .xge( xge ),
304 15 rehayes
    .xgdbg_set( xgdbg_set ),
305
    .xgdbg_clear( xgdbg_clear ),
306 30 rehayes
    .debug_mode_i(debug_mode_i),
307 2 rehayes
    .xgss( xgss ),
308
    .xgvbr( xgvbr ),
309 5 rehayes
    .int_req( int_req ),
310 12 rehayes
    .xgie( xgie ),
311
    .brk_irq_ena( brk_irq_ena ),
312 2 rehayes
    .write_xgsem( write_xgsem ),
313 17 rehayes
    .write_xgchid( write_xgchid ),
314 2 rehayes
    .write_xgccr( write_xgccr ),
315
    .write_xgpc( write_xgpc ),
316
    .write_xgr7( write_xgr7 ),
317
    .write_xgr6( write_xgr6 ),
318
    .write_xgr5( write_xgr5 ),
319
    .write_xgr4( write_xgr4 ),
320
    .write_xgr3( write_xgr3 ),
321
    .write_xgr2( write_xgr2 ),
322
    .write_xgr1( write_xgr1 ),
323
    .clear_xgif_7( clear_xgif_7 ),
324
    .clear_xgif_6( clear_xgif_6 ),
325
    .clear_xgif_5( clear_xgif_5 ),
326
    .clear_xgif_4( clear_xgif_4 ),
327
    .clear_xgif_3( clear_xgif_3 ),
328
    .clear_xgif_2( clear_xgif_2 ),
329
    .clear_xgif_1( clear_xgif_1 ),
330
    .clear_xgif_0( clear_xgif_0 ),
331 12 rehayes
    .xgsweif_c( xgsweif_c ),
332 2 rehayes
    .clear_xgif_data( clear_xgif_data )
333
  );
334
 
335
  xgate_irq_encode #(.MAX_CHANNEL(MAX_CHANNEL))
336
    irq_encode(
337
    // outputs
338
    .int_req( int_req ),
339
    // inputs
340
    .chan_req_i( chan_req_i )
341
  );
342
 
343 5 rehayes
  // ---------------------------------------------------------------------------
344
  // Wishbone Master Bus interface
345
  xgate_wbm_bus #(.ARST_LVL(ARST_LVL))
346
    wishbone_m(
347
  // Wishbone Master Signals
348
    .wbm_dat_o( wbm_dat_o ),
349
    .wbm_we_o( wbm_we_o ),
350
    .wbm_stb_o( wbm_stb_o ),
351
    .wbm_cyc_o( wbm_cyc_o ),
352
    .wbm_sel_o( wbm_sel_o ),
353
    .wbm_adr_o( wbm_adr_o ),
354
    .wbm_dat_i( wbm_dat_i ),
355
    .wbm_ack_i( wbm_ack_i ),
356
    .wbs_clk_i( wbs_clk_i ),
357
    .wbs_rst_i( wbs_rst_i ),
358
    .arst_i( arst_i ),
359
 // XGATE Control Signals
360 34 rehayes
    .xge( xge ),
361
    .mem_access( mem_access ),
362 5 rehayes
    .read_mem_data( read_mem_data ),
363
    .xgate_address( xgate_address ),
364
    .mem_req_ack( mem_req_ack ),
365
    .write_mem_strb_l( write_mem_strb_l ),
366
    .write_mem_strb_h( write_mem_strb_h ),
367
    .write_mem_data( write_mem_data )
368
  );
369 2 rehayes
 
370 5 rehayes
 
371 2 rehayes
endmodule  // xgate_top
372
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.