2020-03-08 07:07:17 +00:00
|
|
|
/*
|
|
|
|
Copyright 2020 Blue Liang, liangkangnan@163.com
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-03-29 15:19:14 +00:00
|
|
|
`include "defines.v"
|
|
|
|
|
2020-03-08 07:07:17 +00:00
|
|
|
|
|
|
|
// 32 bits count up timer module
|
2020-03-29 15:19:14 +00:00
|
|
|
module timer(
|
2020-03-08 07:07:17 +00:00
|
|
|
|
|
|
|
input wire clk,
|
|
|
|
input wire rst,
|
|
|
|
|
2020-03-29 15:19:14 +00:00
|
|
|
input wire[31:0] data_i,
|
|
|
|
input wire[31:0] addr_i,
|
|
|
|
input wire we_i,
|
|
|
|
input wire req_i,
|
2020-03-08 07:07:17 +00:00
|
|
|
|
2020-03-29 15:19:14 +00:00
|
|
|
output reg[31:0] data_o,
|
|
|
|
output wire int_sig_o,
|
|
|
|
output reg ack_o
|
2020-03-08 07:07:17 +00:00
|
|
|
|
|
|
|
);
|
|
|
|
|
2020-03-29 15:19:14 +00:00
|
|
|
localparam ctrl_reg = 32'h00;
|
|
|
|
localparam count_reg = 32'h04;
|
|
|
|
localparam value_reg = 32'h08;
|
2020-03-08 07:07:17 +00:00
|
|
|
|
|
|
|
// [0]: timer enable
|
|
|
|
// [1]: timer int enable
|
|
|
|
// [2]: timer int pending, write 1 to clear it
|
2020-03-29 15:19:14 +00:00
|
|
|
// addr offset: 0x00
|
2020-03-08 07:07:17 +00:00
|
|
|
reg[31:0] timer_ctrl;
|
|
|
|
|
2020-03-29 15:19:14 +00:00
|
|
|
// timer current count, read only
|
|
|
|
// addr offset: 0x04
|
|
|
|
reg[31:0] timer_count;
|
|
|
|
|
|
|
|
// timer expired value
|
|
|
|
// addr offset: 0x08
|
|
|
|
reg[31:0] timer_value;
|
|
|
|
|
|
|
|
|
|
|
|
assign int_sig_o = ((timer_ctrl[0] == 1'b1) && (timer_ctrl[1] == 1'b1) && (timer_ctrl[2] == 1'b1)) ? `INT_ASSERT : `INT_DEASSERT;
|
2020-03-08 07:07:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
// write timer regs
|
|
|
|
always @ (posedge clk) begin
|
2020-03-29 15:19:14 +00:00
|
|
|
if (rst == `RstEnable) begin
|
|
|
|
timer_count <= `ZeroWord;
|
|
|
|
timer_value <= `ZeroWord;
|
|
|
|
timer_ctrl <= `ZeroWord;
|
|
|
|
ack_o <= `RIB_ACK;
|
2020-03-08 07:07:17 +00:00
|
|
|
end else begin
|
|
|
|
if (timer_ctrl[0] == 1'b1) begin
|
|
|
|
timer_count <= timer_count + 1'b1;
|
|
|
|
if (timer_count == timer_value) begin
|
|
|
|
timer_ctrl[2] <= 1'b1;
|
2020-03-29 15:19:14 +00:00
|
|
|
timer_count <= `ZeroWord;
|
2020-03-08 07:07:17 +00:00
|
|
|
end
|
|
|
|
end
|
2020-03-29 15:19:14 +00:00
|
|
|
if (we_i == `WriteEnable) begin
|
|
|
|
if (addr_i == value_reg) begin
|
|
|
|
timer_value <= data_i;
|
|
|
|
end else if (addr_i == ctrl_reg) begin
|
|
|
|
if (data_i[2] == 1'b0) begin
|
|
|
|
timer_ctrl <= {data_i[31:3], timer_ctrl[2], data_i[1:0]};
|
2020-03-08 07:07:17 +00:00
|
|
|
// write 1 to clear pending
|
|
|
|
end else begin
|
2020-03-29 15:19:14 +00:00
|
|
|
timer_ctrl <= {data_i[31:3], 1'b0, data_i[1:0]};
|
2020-03-08 07:07:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
// read timer regs
|
|
|
|
always @ (*) begin
|
2020-03-29 15:19:14 +00:00
|
|
|
if (rst == `RstEnable) begin
|
|
|
|
data_o <= `ZeroWord;
|
2020-03-08 07:07:17 +00:00
|
|
|
end else begin
|
2020-03-29 15:19:14 +00:00
|
|
|
case (addr_i)
|
|
|
|
value_reg: begin
|
|
|
|
data_o <= timer_value;
|
|
|
|
end
|
|
|
|
ctrl_reg: begin
|
|
|
|
data_o <= timer_ctrl;
|
|
|
|
end
|
|
|
|
count_reg: begin
|
|
|
|
data_o <= timer_count;
|
|
|
|
end
|
|
|
|
default: begin
|
|
|
|
data_o <= `ZeroWord;
|
|
|
|
end
|
|
|
|
endcase
|
2020-03-08 07:07:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
endmodule
|