1 |
21 |
dgisselq |
///////////////////////////////////////////////////////////////////////////
|
2 |
|
|
//
|
3 |
|
|
// Filename: ziptimer.v
|
4 |
|
|
//
|
5 |
|
|
// Project: Zip CPU -- a small, lightweight, RISC CPU soft core
|
6 |
|
|
//
|
7 |
|
|
// Purpose: A lighter weight implementation of the Zip Timer.
|
8 |
|
|
//
|
9 |
|
|
// Interface:
|
10 |
|
|
// Two options:
|
11 |
|
|
// 1. One combined register for both control and value, and ...
|
12 |
|
|
// The reload value is set any time the timer data value is "set".
|
13 |
|
|
// Reading the register returns the timer value. Controls are
|
14 |
|
|
// set so that writing a value to the timer automatically starts
|
15 |
|
|
// it counting down.
|
16 |
|
|
// 2. Two registers, one for control one for value.
|
17 |
|
|
// The control register would have the reload value in it.
|
18 |
|
|
// On the clock when the interface is set to zero the interrupt is set.
|
19 |
|
|
// Hence setting the timer to zero will disable the timer without
|
20 |
|
|
// setting any interrupts. Thus setting it to five will count
|
21 |
|
|
// 5 clocks: 5, 4, 3, 2, 1, Interrupt.
|
22 |
|
|
//
|
23 |
|
|
//
|
24 |
|
|
// Control bits:
|
25 |
|
|
// (Start_n/Stop. This bit has been dropped. Writing to this
|
26 |
|
|
// timer any value but zero starts it. Writing a zero
|
27 |
|
|
// clears and stops it.)
|
28 |
|
|
// AutoReload. If set, then on reset the timer automatically
|
29 |
|
|
// loads the last set value and starts over. This is
|
30 |
|
|
// useful for distinguishing between a one-time interrupt
|
31 |
|
|
// timer, and a repetitive interval timer.
|
32 |
|
|
// (INTEN. Interrupt enable--reaching zero always creates an
|
33 |
|
|
// interrupt, so this control bit isn't needed. The
|
34 |
|
|
// interrupt controller can be used to mask the interrupt.)
|
35 |
|
|
// (COUNT-DOWN/UP: This timer is *only* a count-down timer.
|
36 |
|
|
// There is no means of setting it to count up.)
|
37 |
|
|
// WatchDog
|
38 |
|
|
// This timer can be implemented as a watchdog timer simply by
|
39 |
|
|
// connecting the interrupt line to the reset line of the CPU.
|
40 |
|
|
// When the timer then expires, it will trigger a CPU reset.
|
41 |
|
|
//
|
42 |
|
|
//
|
43 |
|
|
// Creator: Dan Gisselquist, Ph.D.
|
44 |
|
|
// Gisselquist Technology, LLC
|
45 |
|
|
//
|
46 |
|
|
///////////////////////////////////////////////////////////////////////////
|
47 |
|
|
//
|
48 |
|
|
// Copyright (C) 2015, Gisselquist Technology, LLC
|
49 |
|
|
//
|
50 |
|
|
// This program is free software (firmware): you can redistribute it and/or
|
51 |
|
|
// modify it under the terms of the GNU General Public License as published
|
52 |
|
|
// by the Free Software Foundation, either version 3 of the License, or (at
|
53 |
|
|
// your option) any later version.
|
54 |
|
|
//
|
55 |
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
56 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
57 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
58 |
|
|
// for more details.
|
59 |
|
|
//
|
60 |
|
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
61 |
|
|
// http://www.gnu.org/licenses/gpl.html
|
62 |
|
|
//
|
63 |
|
|
//
|
64 |
|
|
///////////////////////////////////////////////////////////////////////////
|
65 |
|
|
//
|
66 |
|
|
module ziptimer(i_clk, i_rst, i_ce,
|
67 |
|
|
i_wb_cyc, i_wb_stb, i_wb_we, i_wb_data,
|
68 |
|
|
o_wb_ack, o_wb_stall, o_wb_data,
|
69 |
|
|
o_int);
|
70 |
|
|
parameter BW = 32, VW = (BW-1);
|
71 |
|
|
input i_clk, i_rst, i_ce;
|
72 |
|
|
// Wishbone inputs
|
73 |
|
|
input i_wb_cyc, i_wb_stb, i_wb_we;
|
74 |
|
|
input [(BW-1):0] i_wb_data;
|
75 |
|
|
// Wishbone outputs
|
76 |
|
|
output reg o_wb_ack;
|
77 |
|
|
output wire o_wb_stall;
|
78 |
|
|
output wire [(BW-1):0] o_wb_data;
|
79 |
|
|
// Interrupt line
|
80 |
|
|
output reg o_int;
|
81 |
|
|
|
82 |
|
|
reg r_auto_reload, r_running;
|
83 |
|
|
reg [(VW-1):0] r_reload_value;
|
84 |
|
|
|
85 |
|
|
wire wb_write;
|
86 |
|
|
assign wb_write = ((i_wb_cyc)&&(i_wb_stb)&&(i_wb_we));
|
87 |
|
|
|
88 |
|
|
initial r_running = 1'b0;
|
89 |
|
|
initial r_auto_reload = 1'b0;
|
90 |
|
|
always @(posedge i_clk)
|
91 |
|
|
if (i_rst)
|
92 |
|
|
r_running <= 1'b0;
|
93 |
|
|
else if (wb_write)
|
94 |
|
|
r_running <= (|i_wb_data[(VW-1):0]);
|
95 |
|
|
else if ((o_int)&&(~r_auto_reload))
|
96 |
|
|
r_running <= 1'b0;
|
97 |
|
|
|
98 |
|
|
|
99 |
|
|
always @(posedge i_clk)
|
100 |
|
|
if (wb_write)
|
101 |
|
|
r_auto_reload <= (i_wb_data[(BW-1)]);
|
102 |
|
|
|
103 |
|
|
// If setting auto-reload mode, and the value to other
|
104 |
|
|
// than zero, set the auto-reload value
|
105 |
|
|
always @(posedge i_clk)
|
106 |
|
|
if ((wb_write)&&(i_wb_data[(BW-1)])&&(|i_wb_data[(VW-1):0]))
|
107 |
|
|
r_reload_value <= i_wb_data[(VW-1):0];
|
108 |
|
|
|
109 |
|
|
|
110 |
|
|
reg [(VW-1):0] r_value;
|
111 |
|
|
initial r_value = 0;
|
112 |
|
|
always @(posedge i_clk)
|
113 |
|
|
if (wb_write)
|
114 |
|
|
r_value <= i_wb_data[(VW-1):0];
|
115 |
|
|
else if ((r_running)&&(i_ce)&&(~o_int))
|
116 |
|
|
r_value <= r_value + {(VW){1'b1}}; // r_value - 1;
|
117 |
|
|
else if ((r_running)&&(r_auto_reload)&&(o_int))
|
118 |
|
|
r_value <= r_reload_value;
|
119 |
|
|
|
120 |
|
|
// Set the interrupt on our last tick.
|
121 |
|
|
initial o_int = 1'b0;
|
122 |
|
|
always @(posedge i_clk)
|
123 |
|
|
if (i_ce)
|
124 |
|
|
o_int <= (r_running)&&(r_value == { {(VW-1){1'b0}}, 1'b1 });
|
125 |
|
|
else
|
126 |
|
|
o_int <= 1'b0;
|
127 |
|
|
|
128 |
|
|
initial o_wb_ack = 1'b0;
|
129 |
|
|
always @(posedge i_clk)
|
130 |
|
|
o_wb_ack <= (i_wb_cyc)&&(i_wb_stb);
|
131 |
|
|
assign o_wb_stall = 1'b0;
|
132 |
|
|
|
133 |
|
|
assign o_wb_data = { r_auto_reload, r_value };
|
134 |
|
|
|
135 |
|
|
endmodule
|