mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
Support files for fifo
This commit is contained in:
parent
4fd4c8e989
commit
bee90fcacc
1
constants/hdl/simulation_constants.v
Normal file
1
constants/hdl/simulation_constants.v
Normal file
@ -0,0 +1 @@
|
||||
`define TARGET_CLEAN
|
94
memory/hdl/fifo_empty_block.v
Normal file
94
memory/hdl/fifo_empty_block.v
Normal file
@ -0,0 +1,94 @@
|
||||
/*
|
||||
Copyright (C) 2013 Adapteva, Inc.
|
||||
Contributed by Andreas Olofsson, Roman Trogan <support@adapteva.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program (see the file COPYING). If not, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
module fifo_empty_block (/*AUTOARG*/
|
||||
// Outputs
|
||||
rd_fifo_empty, rd_addr, rd_gray_pointer,
|
||||
// Inputs
|
||||
reset, rd_clk, rd_wr_gray_pointer, rd_read
|
||||
);
|
||||
|
||||
parameter AW = 2; // Number of bits to access all the entries
|
||||
|
||||
//##########
|
||||
//# INPUTS
|
||||
//##########
|
||||
input reset;
|
||||
input rd_clk;
|
||||
|
||||
input [AW:0] rd_wr_gray_pointer;//from other clock domain
|
||||
input rd_read;
|
||||
|
||||
//###########
|
||||
//# OUTPUTS
|
||||
//###########
|
||||
output rd_fifo_empty;
|
||||
output [AW-1:0] rd_addr;
|
||||
output [AW:0] rd_gray_pointer;
|
||||
|
||||
//#########
|
||||
//# REGS
|
||||
//#########
|
||||
reg [AW:0] rd_gray_pointer;
|
||||
reg [AW:0] rd_binary_pointer;
|
||||
reg rd_fifo_empty;
|
||||
|
||||
//##########
|
||||
//# WIRES
|
||||
//##########
|
||||
wire rd_fifo_empty_next;
|
||||
wire [AW:0] rd_binary_next;
|
||||
wire [AW:0] rd_gray_next;
|
||||
|
||||
|
||||
//Counter States
|
||||
always @(posedge rd_clk or posedge reset)
|
||||
if(reset)
|
||||
begin
|
||||
rd_binary_pointer[AW:0] <= {(AW+1){1'b0}};
|
||||
rd_gray_pointer[AW:0] <= {(AW+1){1'b0}};
|
||||
end
|
||||
else if(rd_read)
|
||||
begin
|
||||
rd_binary_pointer[AW:0] <= rd_binary_next[AW:0];
|
||||
rd_gray_pointer[AW:0] <= rd_gray_next[AW:0];
|
||||
end
|
||||
|
||||
//Read Address
|
||||
assign rd_addr[AW-1:0] = rd_binary_pointer[AW-1:0];
|
||||
|
||||
//Updating binary pointer
|
||||
assign rd_binary_next[AW:0] = rd_binary_pointer[AW:0] +
|
||||
{{(AW){1'b0}},rd_read};
|
||||
|
||||
//Gray Pointer Conversion (for more reliable synchronization)!
|
||||
assign rd_gray_next[AW:0] = {1'b0,rd_binary_next[AW:1]} ^
|
||||
rd_binary_next[AW:0];
|
||||
|
||||
|
||||
//# FIFO empty indication
|
||||
assign rd_fifo_empty_next = (rd_gray_next[AW:0]==rd_wr_gray_pointer[AW:0]);
|
||||
|
||||
always @ (posedge rd_clk or posedge reset)
|
||||
if(reset)
|
||||
rd_fifo_empty <= 1'b1;
|
||||
else
|
||||
rd_fifo_empty <= rd_fifo_empty_next;
|
||||
|
||||
endmodule // fifo_empty_block
|
||||
|
98
memory/hdl/fifo_full_block.v
Normal file
98
memory/hdl/fifo_full_block.v
Normal file
@ -0,0 +1,98 @@
|
||||
/*
|
||||
Copyright (C) 2013 Adapteva, Inc.
|
||||
Contributed by Andreas Olofsson, Roman Trogan <support@adapteva.com>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program (see the file COPYING). If not, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
module fifo_full_block (/*AUTOARG*/
|
||||
// Outputs
|
||||
wr_fifo_full, wr_addr, wr_gray_pointer,
|
||||
// Inputs
|
||||
reset, wr_clk, wr_rd_gray_pointer, wr_write
|
||||
);
|
||||
|
||||
parameter AW = 2; // Number of bits to access all the entries
|
||||
|
||||
//##########
|
||||
//# INPUTS
|
||||
//##########
|
||||
input reset;
|
||||
input wr_clk;
|
||||
|
||||
input [AW:0] wr_rd_gray_pointer;//synced from read domain
|
||||
input wr_write;
|
||||
|
||||
//###########
|
||||
//# OUTPUTS
|
||||
//###########
|
||||
output wr_fifo_full;
|
||||
output [AW-1:0] wr_addr;
|
||||
output [AW:0] wr_gray_pointer;//for read domain
|
||||
|
||||
//#########
|
||||
//# REGS
|
||||
//#########
|
||||
reg [AW:0] wr_gray_pointer;
|
||||
reg [AW:0] wr_binary_pointer;
|
||||
reg wr_fifo_full;
|
||||
|
||||
//##########
|
||||
//# WIRES
|
||||
//##########
|
||||
wire wr_fifo_full_next;
|
||||
wire [AW:0] wr_gray_next;
|
||||
wire [AW:0] wr_binary_next;
|
||||
|
||||
//Counter States
|
||||
always @(posedge wr_clk or posedge reset)
|
||||
if(reset)
|
||||
begin
|
||||
wr_binary_pointer[AW:0] <= {(AW+1){1'b0}};
|
||||
wr_gray_pointer[AW:0] <= {(AW+1){1'b0}};
|
||||
end
|
||||
else if(wr_write)
|
||||
begin
|
||||
wr_binary_pointer[AW:0] <= wr_binary_next[AW:0];
|
||||
wr_gray_pointer[AW:0] <= wr_gray_next[AW:0];
|
||||
end
|
||||
|
||||
//Write Address
|
||||
assign wr_addr[AW-1:0] = wr_binary_pointer[AW-1:0];
|
||||
|
||||
//Updating binary pointer
|
||||
assign wr_binary_next[AW:0] = wr_binary_pointer[AW:0] +
|
||||
{{(AW){1'b0}},wr_write};
|
||||
|
||||
//Gray Pointer Conversion (for more reliable synchronization)!
|
||||
assign wr_gray_next[AW:0] = {1'b0,wr_binary_next[AW:1]} ^
|
||||
wr_binary_next[AW:0];
|
||||
|
||||
//FIFO full indication
|
||||
assign wr_fifo_full_next =
|
||||
(wr_gray_next[AW-2:0] == wr_rd_gray_pointer[AW-2:0]) &
|
||||
(wr_gray_next[AW] ^ wr_rd_gray_pointer[AW]) &
|
||||
(wr_gray_next[AW-1] ^ wr_rd_gray_pointer[AW-1]);
|
||||
|
||||
always @ (posedge wr_clk or posedge reset)
|
||||
if(reset)
|
||||
wr_fifo_full <= 1'b0;
|
||||
else
|
||||
wr_fifo_full <=wr_fifo_full_next;
|
||||
|
||||
|
||||
endmodule // fifo_full_block
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user