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

Subversion Repositories xgate

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

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 2 rehayes
 
66
  input                       bus_clk,       // Control register bus clock
67
  input                       async_rst_b,   // Async reset signal
68
  input                       sync_reset,    // Syncronous reset signal
69
  input                [15:0] write_bus,     // Write Data Bus
70
  input                       write_xgmctl,  // Write Strobe for XGMCTL register
71 41 rehayes
  input                [ 1:0] write_xgvbr,   // Write Strobe for XGVBR register
72
  input                [ 1:0] write_xgif_7,  // Write Strobe for Interrupt Flag Register 7
73
  input                [ 1:0] write_xgif_6,  // Write Strobe for Interrupt Flag Register 6
74
  input                [ 1:0] write_xgif_5,  // Write Strobe for Interrupt Flag Register 5
75
  input                [ 1:0] write_xgif_4,  // Write Strobe for Interrupt Flag Register 4
76
  input                [ 1:0] write_xgif_3,  // Write Strobe for Interrupt Flag Register 3
77
  input                [ 1:0] write_xgif_2,  // Write Strobe for Interrupt Flag Register 2
78
  input                [ 1:0] write_xgif_1,  // Write Strobe for Interrupt Flag Register 1
79
  input                [ 1:0] write_xgif_0,  // Write Strobe for Interrupt Flag Register 0
80 53 rehayes
  input                       write_xgswt,   // Write Strobe for XGSWT register
81
  input                       debug_ack      // Clear debug register
82 2 rehayes
  );
83
 
84
 
85
  // registers
86
 
87
  // Wires
88 41 rehayes
  wire [ 1:0] write_any_xgif;
89 2 rehayes
 
90
  //
91
  // module body
92
  //
93
 
94
 
95
  // generate wishbone write registers
96
  // XGMCTL Register
97
  always @(posedge bus_clk or negedge async_rst_b)
98
    if (!async_rst_b)
99
      begin
100 12 rehayes
        xge         <= 1'b0;
101
        xgfrz       <= 1'b0;
102 15 rehayes
        xgdbg_set   <= 1'b0;
103
        xgdbg_clear <= 1'b0;
104 12 rehayes
        xgss        <= 1'b0;
105
        xgfact      <= 1'b0;
106
        brk_irq_ena <= 1'b0;
107
        xgsweif_c   <= 1'b0;
108
        xgie        <= 1'b0;
109 2 rehayes
       end
110
    else if (sync_reset)
111
      begin
112 12 rehayes
        xge         <= 1'b0;
113
        xgfrz       <= 1'b0;
114 15 rehayes
        xgdbg_set   <= 1'b0;
115
        xgdbg_clear <= 1'b0;
116 12 rehayes
        xgss        <= 1'b0;
117
        xgfact      <= 1'b0;
118
        brk_irq_ena <= 1'b0;
119
        xgsweif_c   <= 1'b0;
120
        xgie        <= 1'b0;
121 2 rehayes
     end
122
    else if (write_xgmctl)
123
      begin
124 12 rehayes
        xge         <= write_bus[15] ? write_bus[7] : xge;
125
        xgfrz       <= write_bus[14] ? write_bus[6] : xgfrz;
126 15 rehayes
        xgdbg_set   <= write_bus[13] && write_bus[5];
127
        xgdbg_clear <= write_bus[13] && !write_bus[5];
128 12 rehayes
        xgss        <= write_bus[12] && write_bus[4];
129
        xgfact      <= write_bus[11] ? write_bus[3] : xgfact;
130
        brk_irq_ena <= write_bus[10] ? write_bus[2] : brk_irq_ena;
131
        xgsweif_c   <= write_bus[ 9] && write_bus[1];
132
        xgie        <= write_bus[ 8] ? write_bus[0] : xgie;
133 2 rehayes
      end
134
    else
135
      begin
136 15 rehayes
        xgss        <= 1'b0;
137
        xgsweif_c   <= 1'b0;
138 53 rehayes
        xgdbg_set   <= xgdbg_set && !debug_ack;
139 15 rehayes
        xgdbg_clear <= 1'b0;
140 2 rehayes
      end
141
 
142
  // XGVBR Register
143
  always @(posedge bus_clk or negedge async_rst_b)
144
    if (!async_rst_b)
145
      begin
146
        xgvbr  <= 15'b1111_1110_0000_000;
147
       end
148
    else if (sync_reset)
149
      begin
150
        xgvbr  <= 15'b1111_1110_0000_000;
151
      end
152 41 rehayes
    else if (|write_xgvbr && !xge)
153 2 rehayes
      begin
154 41 rehayes
        xgvbr[15:8]  <= write_xgvbr[1] ? write_bus[15:8] : xgvbr[15:8];
155
        xgvbr[ 7:1]  <= write_xgvbr[0] ? write_bus[ 7:1] : xgvbr[ 7:1];
156 2 rehayes
      end
157
 
158
  // XGIF 7-0 Registers
159 41 rehayes
  assign write_any_xgif = write_xgif_7 | write_xgif_6 | write_xgif_5 | write_xgif_4 |
160
                          write_xgif_3 | write_xgif_2 | write_xgif_1 | write_xgif_0;
161 2 rehayes
 
162
  // Registers to clear the interrupt flags. Decode a specific interrupt to
163
  //  clear by ANDing the clear_xgif_x signal with the clear_xgif_data.
164
  always @(posedge bus_clk or negedge async_rst_b)
165
    if (!async_rst_b)
166
      begin
167
        clear_xgif_7    <= 1'b0;
168
        clear_xgif_6    <= 1'b0;
169
        clear_xgif_5    <= 1'b0;
170
        clear_xgif_4    <= 1'b0;
171
        clear_xgif_3    <= 1'b0;
172
        clear_xgif_2    <= 1'b0;
173
        clear_xgif_1    <= 1'b0;
174
        clear_xgif_0    <= 1'b0;
175
        clear_xgif_data <= 16'b0;
176
      end
177
    else if (sync_reset)
178
      begin
179
        clear_xgif_7    <= 1'b0;
180
        clear_xgif_6    <= 1'b0;
181
        clear_xgif_5    <= 1'b0;
182
        clear_xgif_4    <= 1'b0;
183
        clear_xgif_3    <= 1'b0;
184
        clear_xgif_2    <= 1'b0;
185
        clear_xgif_1    <= 1'b0;
186
        clear_xgif_0    <= 1'b0;
187
        clear_xgif_data <= 16'b0;
188
      end
189
    else
190
      begin
191 41 rehayes
        clear_xgif_7    <= |write_xgif_7 && (MAX_CHANNEL > 111);
192
        clear_xgif_6    <= |write_xgif_6 && (MAX_CHANNEL > 95);
193
        clear_xgif_5    <= |write_xgif_5 && (MAX_CHANNEL > 79);
194
        clear_xgif_4    <= |write_xgif_4 && (MAX_CHANNEL > 63);
195
        clear_xgif_3    <= |write_xgif_3 && (MAX_CHANNEL > 47);
196
        clear_xgif_2    <= |write_xgif_2 && (MAX_CHANNEL > 31);
197
        clear_xgif_1    <= |write_xgif_1 && (MAX_CHANNEL > 15);
198
        clear_xgif_0    <= |write_xgif_0;
199
        clear_xgif_data[15:8] <= write_any_xgif[1] ? write_bus[15:8] : 8'b0;
200
        clear_xgif_data[ 7:0] <= write_any_xgif[0] ? write_bus[ 7:0] : 8'b0;
201 2 rehayes
      end
202
 
203
 
204
  // XGSWT - XGATE Software Trigger Register
205
  always @(posedge bus_clk or negedge async_rst_b)
206
    if (!async_rst_b)
207
      xgswt <= 8'h00;
208
    else if (sync_reset)
209
      xgswt <= 8'h00;
210
    else if (write_xgswt)
211
      begin
212
        xgswt[7] <= write_bus[15] ? write_bus[7] : xgswt[7];
213
        xgswt[6] <= write_bus[14] ? write_bus[6] : xgswt[6];
214
        xgswt[5] <= write_bus[13] ? write_bus[5] : xgswt[5];
215
        xgswt[4] <= write_bus[11] ? write_bus[4] : xgswt[4];
216
        xgswt[3] <= write_bus[12] ? write_bus[3] : xgswt[3];
217
        xgswt[2] <= write_bus[10] ? write_bus[2] : xgswt[2];
218
        xgswt[1] <= write_bus[ 9] ? write_bus[1] : xgswt[1];
219
        xgswt[0] <= write_bus[ 8] ? write_bus[0] : xgswt[0];
220
      end
221
 
222
 
223
endmodule  // xgate_regs
224
 
225
 

powered by: WebSVN 2.1.0

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