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

Subversion Repositories xgate

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

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

powered by: WebSVN 2.1.0

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