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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
// DESCRIPTION: Verilator: Large test for SystemVerilog
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2012.
// SPDX-License-Identifier: CC0-1.0
// Contributed by M W Lund, Atmel Corporation.
module ac_dig
#( parameter
ID = 1 )
(
// ***************************************************************************
// Module Interface (interfaces, outputs, and inputs)
// ***************************************************************************
// **** Interfaces ****
genbus_if.slave dbus,
// **** Outputs ****
output logic acenable,
// **** Inputs ****
input logic acout,
// - System -
input logic clk,
input logic rst
);
// ***************************************************************************
// Regs and Wires
// ***************************************************************************
// **** Internal Data Bus ****
logic [15:0] sdata;
logic ws;
logic [15:0] mdata;
logic [15:0] adr;
logic [1:0] we;
logic [1:0] re;
// **** User Registers ****
struct packed
{
logic [7:1] reserved;
logic enable;
} control;
struct packed
{
logic [7:1] reserved;
logic acout;
} status;
// **** Internals ****
logic [1:0] sync;
// ***************************************************************************
// Assignments
// ***************************************************************************
assign acenable = control.enable;
// ***************************************************************************
// "dbus" Connection
// ***************************************************************************
always_comb
begin
`ifdef VERILATOR //TODO
dbus.sConnect( .id(ID), .rst(rst), .sdata(sdata), .ws(ws), .mdata(mdata), .adr(adr ), .we(we), .re(re) );
`else
dbus.sConnect( .id(ID), .rst(rst), .sdata(sdata), .ws(ws), .mdata(mdata), .adr(adr[1:0]), .we(we), .re(re) );
`endif
// dbus.sConnect( ID, rst, sdata, ws, mdata, adr, we, re );
end
// ***************************************************************************
// Register Access
// ***************************************************************************
// **** Register Write ****
always_ff @( posedge clk )
begin
if ( rst )
control <= 8'h00;
else if ( (adr[1:0] == 2'b00) & we[0] )
control <= mdata[7:0];
end
// **** Regiser Read ****
always_comb
begin: RegisterRead
// - Local Variables -
logic [7:0] data[0:3]; // Read access concatination.
// - Setup read multiplexer -
data = '{ control,
status,
8'h00,
8'h00 };
// - Connect "genbusif" -
sdata = { 8'h00, data[ adr[1:0] ] };
ws = 1'b0;
end
// ***************************************************************************
// Status
// ***************************************************************************
// **** Synchronization ****
always_ff @( posedge clk )
begin
if ( rst )
sync <= 2'b00;
else if ( control.enable )
sync <= {sync[0], acout};
end
always_comb
begin
// - Defaults -
status = {$size(status){1'b0}};
// - Set register values -
status.acout = sync[1];
end
endmodule // ac_dig
|