-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathcc_lfsr_8bit.sv
More file actions
57 lines (44 loc) · 1.97 KB
/
Copy pathcc_lfsr_8bit.sv
File metadata and controls
57 lines (44 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2018 ETH Zurich and University of Bologna.
// Copyright and related rights are licensed under the Solderpad Hardware
// License, Version 0.51 (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License at
// http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law
// or agreed to in writing, software, hardware and materials distributed under
// this 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.
// Author: Igor Loi - University of Bologna
// Author: Florian Zaruba, ETH Zurich
// Date: 12.11.2017
// Description: 8-bit LFSR
`include "common_cells/assertions.svh"
`include "common_cells/registers.svh"
/// 8 bit Linear Feedback Shift register
module cc_lfsr_8bit #(
parameter logic [7:0] Seed = 8'b0,
parameter int unsigned Width = 8
) (
input logic clk_i, // Clock
input logic rst_ni, // Asynchronous reset active low
input logic clr_i, // Synchronous clear active high
input logic en_i,
output logic [ Width-1:0] refill_way_oh_o,
output logic [$clog2(Width)-1:0] refill_way_bin_o
);
localparam int unsigned LogWidth = $clog2(Width);
logic [7:0] shift_d, shift_q;
always_comb begin
automatic logic shift_in;
shift_in = !(shift_q[7] ^ shift_q[3] ^ shift_q[2] ^ shift_q[1]);
shift_d = shift_q;
if (en_i) shift_d = {shift_q[6:0], shift_in};
// output assignment
refill_way_oh_o = 'b0;
refill_way_oh_o[shift_q[LogWidth - 1:0]] = 1'b1;
refill_way_bin_o = shift_q;
end
`FFARNC(shift_q, shift_d, clr_i, Seed, clk_i, rst_ni)
`ifndef COMMON_CELLS_ASSERTS_OFF
`ASSERT_INIT(width_gt_8, Width <= 8, "Width needs to be less than 8 because of the 8-bit LFSR")
`endif
endmodule