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

Subversion Repositories xgate

[/] [xgate/] [trunk/] [rtl/] [verilog/] [xgate_regs.v] - Blame information for rev 89

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

Line No. Rev Author Line
1 2 rehayes
////////////////////////////////////////////////////////////////////////////////
2
//
3
//  Computer Operating Properly - Control registers
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_regs #(parameter ARST_LVL = 1'b0,    // asynchronous reset level
42
                    parameter MAX_CHANNEL = 127)  // Max XGATE Interrupt Channel Number
43
  (
44
  output reg                  xge,          // XGATE Module Enable
45
  output reg                  xgfrz,        // Stop XGATE in Freeze Mode
46 15 rehayes
  output reg                  xgdbg_set,    // Enter XGATE Debug Mode
47
  output reg                  xgdbg_clear,  // Leave XGATE Debug Mode
48 2 rehayes
  output reg                  xgss,         // XGATE Single Step
49
  output reg                  xgfact,       // XGATE Flag Activity
50
  output reg                  xgsweif_c,    // Clear XGATE Software Error Interrupt FLag
51
  output reg                  xgie,         // XGATE Interrupt Enable
52
  output reg           [15:1] xgvbr,        // XGATE vector Base Address Register
53
  output reg           [ 7:0] xgswt,        // XGATE Software Trigger Register for host
54
  output reg                  clear_xgif_7,    // Strobe for decode to clear interrupt flag bank 7
55
  output reg                  clear_xgif_6,    // Strobe for decode to clear interrupt flag bank 6
56
  output reg                  clear_xgif_5,    // Strobe for decode to clear interrupt flag bank 5
57
  output reg                  clear_xgif_4,    // Strobe for decode to clear interrupt flag bank 4
58
  output reg                  clear_xgif_3,    // Strobe for decode to clear interrupt flag bank 3
59
  output reg                  clear_xgif_2,    // Strobe for decode to clear interrupt flag bank 2
60
  output reg                  clear_xgif_1,    // Strobe for decode to clear interrupt flag bank 1
61
  output reg                  clear_xgif_0,    // Strobe for decode to clear interrupt flag bank 0
62
  output reg           [15:0] clear_xgif_data, // Data for decode to clear interrupt flag
63
  output                      semaph_stat,     // Return Status of Semaphore bit
64 12 rehayes
  output reg                  brk_irq_ena,     // Enable BRK instruction to generate interrupt
65 72 rehayes
  output      [MAX_CHANNEL:1] chan_bypass,     // XGATE Interrupt enable or bypass
66
  output reg          [127:1] irq_bypass,      // Register to hold irq bypass control state
67 2 rehayes
 
68
  input                       bus_clk,       // Control register bus clock
69
  input                       async_rst_b,   // Async reset signal
70
  input                       sync_reset,    // Syncronous reset signal
71
  input                [15:0] write_bus,     // Write Data Bus
72
  input                       write_xgmctl,  // Write Strobe for XGMCTL register
73 41 rehayes
  input                [ 1:0] write_xgvbr,   // Write Strobe for XGVBR register
74
  input                [ 1:0] write_xgif_7,  // Write Strobe for Interrupt Flag Register 7
75
  input                [ 1:0] write_xgif_6,  // Write Strobe for Interrupt Flag Register 6
76
  input                [ 1:0] write_xgif_5,  // Write Strobe for Interrupt Flag Register 5
77
  input                [ 1:0] write_xgif_4,  // Write Strobe for Interrupt Flag Register 4
78
  input                [ 1:0] write_xgif_3,  // Write Strobe for Interrupt Flag Register 3
79
  input                [ 1:0] write_xgif_2,  // Write Strobe for Interrupt Flag Register 2
80
  input                [ 1:0] write_xgif_1,  // Write Strobe for Interrupt Flag Register 1
81
  input                [ 1:0] write_xgif_0,  // Write Strobe for Interrupt Flag Register 0
82 67 rehayes
  input                [ 1:0] write_irw_en_7, // Write Strobe for Interrupt Bypass Control Register 7
83
  input                [ 1:0] write_irw_en_6, // Write Strobe for Interrupt Bypass Control Register 6
84
  input                [ 1:0] write_irw_en_5, // Write Strobe for Interrupt Bypass Control Register 5
85
  input                [ 1:0] write_irw_en_4, // Write Strobe for Interrupt Bypass Control Register 4
86
  input                [ 1:0] write_irw_en_3, // Write Strobe for Interrupt Bypass Control Register 3
87
  input                [ 1:0] write_irw_en_2, // Write Strobe for Interrupt Bypass Control Register 2
88
  input                [ 1:0] write_irw_en_1, // Write Strobe for Interrupt Bypass Control Register 1
89
  input                [ 1:0] write_irw_en_0, // Write Strobe for Interrupt Bypass Control Register 0
90
  input                       write_xgswt,    // Write Strobe for XGSWT register
91
  input                       debug_ack       // Clear debug register
92 2 rehayes
  );
93
 
94
 
95 67 rehayes
  integer j;     // Loop counter for channel bypass counter assigments
96
  integer k;     // Loop counter for channel bypass counter assigments
97
 
98 2 rehayes
  // registers
99 72 rehayes
  reg [127:1] irq_bypass_d; // Pseudo regester for routing address and data to irq bypass register
100 2 rehayes
 
101
  // Wires
102 41 rehayes
  wire [ 1:0] write_any_xgif;
103 2 rehayes
 
104
  //
105
  // module body
106
  //
107
 
108
 
109
  // generate wishbone write registers
110
  // XGMCTL Register
111
  always @(posedge bus_clk or negedge async_rst_b)
112
    if (!async_rst_b)
113
      begin
114 12 rehayes
        xge         <= 1'b0;
115
        xgfrz       <= 1'b0;
116 15 rehayes
        xgdbg_set   <= 1'b0;
117
        xgdbg_clear <= 1'b0;
118 12 rehayes
        xgss        <= 1'b0;
119
        xgfact      <= 1'b0;
120 67 rehayes
        brk_irq_ena <= 1'b0;
121 12 rehayes
        xgsweif_c   <= 1'b0;
122
        xgie        <= 1'b0;
123 2 rehayes
       end
124
    else if (sync_reset)
125
      begin
126 12 rehayes
        xge         <= 1'b0;
127
        xgfrz       <= 1'b0;
128 15 rehayes
        xgdbg_set   <= 1'b0;
129
        xgdbg_clear <= 1'b0;
130 12 rehayes
        xgss        <= 1'b0;
131
        xgfact      <= 1'b0;
132 67 rehayes
        brk_irq_ena <= 1'b0;
133 12 rehayes
        xgsweif_c   <= 1'b0;
134
        xgie        <= 1'b0;
135 2 rehayes
     end
136
    else if (write_xgmctl)
137
      begin
138 12 rehayes
        xge         <= write_bus[15] ? write_bus[7] : xge;
139
        xgfrz       <= write_bus[14] ? write_bus[6] : xgfrz;
140 15 rehayes
        xgdbg_set   <= write_bus[13] && write_bus[5];
141
        xgdbg_clear <= write_bus[13] && !write_bus[5];
142 12 rehayes
        xgss        <= write_bus[12] && write_bus[4];
143
        xgfact      <= write_bus[11] ? write_bus[3] : xgfact;
144
        brk_irq_ena <= write_bus[10] ? write_bus[2] : brk_irq_ena;
145
        xgsweif_c   <= write_bus[ 9] && write_bus[1];
146
        xgie        <= write_bus[ 8] ? write_bus[0] : xgie;
147 2 rehayes
      end
148
    else
149
      begin
150 15 rehayes
        xgss        <= 1'b0;
151
        xgsweif_c   <= 1'b0;
152 53 rehayes
        xgdbg_set   <= xgdbg_set && !debug_ack;
153 15 rehayes
        xgdbg_clear <= 1'b0;
154 2 rehayes
      end
155
 
156
  // XGVBR Register
157
  always @(posedge bus_clk or negedge async_rst_b)
158
    if (!async_rst_b)
159
      begin
160
        xgvbr  <= 15'b1111_1110_0000_000;
161
       end
162
    else if (sync_reset)
163
      begin
164
        xgvbr  <= 15'b1111_1110_0000_000;
165
      end
166 41 rehayes
    else if (|write_xgvbr && !xge)
167 2 rehayes
      begin
168 41 rehayes
        xgvbr[15:8]  <= write_xgvbr[1] ? write_bus[15:8] : xgvbr[15:8];
169
        xgvbr[ 7:1]  <= write_xgvbr[0] ? write_bus[ 7:1] : xgvbr[ 7:1];
170 2 rehayes
      end
171
 
172
  // XGIF 7-0 Registers
173 41 rehayes
  assign write_any_xgif = write_xgif_7 | write_xgif_6 | write_xgif_5 | write_xgif_4 |
174
                          write_xgif_3 | write_xgif_2 | write_xgif_1 | write_xgif_0;
175 2 rehayes
 
176
  // Registers to clear the interrupt flags. Decode a specific interrupt to
177
  //  clear by ANDing the clear_xgif_x signal with the clear_xgif_data.
178
  always @(posedge bus_clk or negedge async_rst_b)
179
    if (!async_rst_b)
180
      begin
181
        clear_xgif_7    <= 1'b0;
182
        clear_xgif_6    <= 1'b0;
183
        clear_xgif_5    <= 1'b0;
184
        clear_xgif_4    <= 1'b0;
185
        clear_xgif_3    <= 1'b0;
186
        clear_xgif_2    <= 1'b0;
187
        clear_xgif_1    <= 1'b0;
188
        clear_xgif_0    <= 1'b0;
189
        clear_xgif_data <= 16'b0;
190
      end
191
    else if (sync_reset)
192
      begin
193
        clear_xgif_7    <= 1'b0;
194
        clear_xgif_6    <= 1'b0;
195
        clear_xgif_5    <= 1'b0;
196
        clear_xgif_4    <= 1'b0;
197
        clear_xgif_3    <= 1'b0;
198
        clear_xgif_2    <= 1'b0;
199
        clear_xgif_1    <= 1'b0;
200
        clear_xgif_0    <= 1'b0;
201
        clear_xgif_data <= 16'b0;
202
      end
203
    else
204
      begin
205 41 rehayes
        clear_xgif_7    <= |write_xgif_7 && (MAX_CHANNEL > 111);
206
        clear_xgif_6    <= |write_xgif_6 && (MAX_CHANNEL > 95);
207
        clear_xgif_5    <= |write_xgif_5 && (MAX_CHANNEL > 79);
208
        clear_xgif_4    <= |write_xgif_4 && (MAX_CHANNEL > 63);
209
        clear_xgif_3    <= |write_xgif_3 && (MAX_CHANNEL > 47);
210
        clear_xgif_2    <= |write_xgif_2 && (MAX_CHANNEL > 31);
211
        clear_xgif_1    <= |write_xgif_1 && (MAX_CHANNEL > 15);
212
        clear_xgif_0    <= |write_xgif_0;
213
        clear_xgif_data[15:8] <= write_any_xgif[1] ? write_bus[15:8] : 8'b0;
214
        clear_xgif_data[ 7:0] <= write_any_xgif[0] ? write_bus[ 7:0] : 8'b0;
215 2 rehayes
      end
216
 
217
 
218
  // XGSWT - XGATE Software Trigger Register
219
  always @(posedge bus_clk or negedge async_rst_b)
220
    if (!async_rst_b)
221
      xgswt <= 8'h00;
222
    else if (sync_reset)
223
      xgswt <= 8'h00;
224
    else if (write_xgswt)
225 67 rehayes
      xgswt <= (write_bus[15:8] & write_bus[7:0]) | (~write_bus[15:8] & xgswt[7:0]);
226 2 rehayes
 
227
 
228 67 rehayes
  // Channel Bypass Register input bits
229
  always @*
230
    begin
231 72 rehayes
      k = 1;   // WISHBONE Bus bit counter [15:0]
232
      for (j = 1; j <= 127; j = j + 1)
233 89 rehayes
        begin
234
          if (j <= MAX_CHANNEL)
235
            begin
236
              if ((j >= 0) && (j < 8))
237
                irq_bypass_d[j] = write_irw_en_0[0] ? write_bus[k] : irq_bypass[j];
238
              if ((j >= 8) && (j < 16))
239
                irq_bypass_d[j] = write_irw_en_0[1] ? write_bus[k] : irq_bypass[j];
240
              if ((j >= 16) && (j < 24))
241
                irq_bypass_d[j] = write_irw_en_1[0] ? write_bus[k] : irq_bypass[j];
242
              if ((j >= 24) && (j < 32))
243
                irq_bypass_d[j] = write_irw_en_1[1] ? write_bus[k] : irq_bypass[j];
244
              if ((j >= 32) && (j < 40))
245
                irq_bypass_d[j] = write_irw_en_2[0] ? write_bus[k] : irq_bypass[j];
246
              if ((j >= 40) && (j < 48))
247
                irq_bypass_d[j] = write_irw_en_2[1] ? write_bus[k] : irq_bypass[j];
248
              if ((j >= 48) && (j < 56))
249
                irq_bypass_d[j] = write_irw_en_3[0] ? write_bus[k] : irq_bypass[j];
250
              if ((j >= 56) && (j < 64))
251
                irq_bypass_d[j] = write_irw_en_3[1] ? write_bus[k] : irq_bypass[j];
252
              if ((j >= 64) && (j < 72))
253
               irq_bypass_d[j] = write_irw_en_4[0] ? write_bus[k] : irq_bypass[j];
254
              if ((j >= 72) && (j < 80))
255
                irq_bypass_d[j] = write_irw_en_4[1] ? write_bus[k] : irq_bypass[j];
256
              if ((j >= 80) && (j < 88))
257
                irq_bypass_d[j] = write_irw_en_5[0] ? write_bus[k] : irq_bypass[j];
258
              if ((j >= 88) && (j < 96))
259
                irq_bypass_d[j] = write_irw_en_5[1] ? write_bus[k] : irq_bypass[j];
260
              if ((j >= 96) && (j < 104))
261
                irq_bypass_d[j] = write_irw_en_6[0] ? write_bus[k] : irq_bypass[j];
262
              if ((j >= 104) && (j < 112))
263
                irq_bypass_d[j] = write_irw_en_6[1] ? write_bus[k] : irq_bypass[j];
264
              if ((j >= 112) && (j < 120))
265
                irq_bypass_d[j] = write_irw_en_7[0] ? write_bus[k] : irq_bypass[j];
266
              if ((j >= 120) && (j < 128))
267
                irq_bypass_d[j] = write_irw_en_7[1] ? write_bus[k] : irq_bypass[j];
268
            end
269
          else
270
            irq_bypass_d[j]  = 1'b0;
271
        k = k + 1;
272
        if (k > 15)
273
        k = 0;
274 72 rehayes
      end
275 67 rehayes
    end
276
 
277
  //  Channel Bypass Registers
278
  //   Synthesys should eliminate bits that with D input tied to zero
279
  always @(posedge bus_clk or negedge async_rst_b)
280
    if ( !async_rst_b )
281 72 rehayes
      irq_bypass  <= {127{1'b1}};
282 67 rehayes
    else
283
      irq_bypass  <= irq_bypass_d;
284
 
285
  // Alias the register name to the output pin name so only the used bit are carried out
286 89 rehayes
  assign chan_bypass = irq_bypass[MAX_CHANNEL:1];
287 67 rehayes
 
288 2 rehayes
endmodule  // xgate_regs
289
 
290
 

powered by: WebSVN 2.1.0

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