Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding SACI Version 2 #1219

Merged
merged 7 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions protocols/saci/ruckus.tcl
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Load RUCKUS library
# Load RUCKUS environment and library
source $::env(RUCKUS_PROC_TCL)

# Load Source Code
loadSource -lib surf -dir "$::DIR_PATH/rtl"

# Load Simulation
loadSource -lib surf -sim_only -dir "$::DIR_PATH/sim"
# Load ruckus files
loadRuckusTcl "$::DIR_PATH/saci1"
loadRuckusTcl "$::DIR_PATH/saci2"
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 8 additions & 0 deletions protocols/saci/saci1/ruckus.tcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Load RUCKUS library
source $::env(RUCKUS_PROC_TCL)

# Load Source Code
loadSource -lib surf -dir "$::DIR_PATH/rtl"

# Load Simulation
loadSource -lib surf -sim_only -dir "$::DIR_PATH/sim"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-------------------------------------------------------------------------------
-- Company : SLAC National Accelerator Laboratory
-------------------------------------------------------------------------------
-- Description: surf.AxiLiteCrossbar cocoTB testbed
-- Description: surf.SaciAxiLiteMaster cocoTB testbed
-------------------------------------------------------------------------------
-- This file is part of 'SLAC Firmware Standard Library'.
-- It is subject to the license terms in the LICENSE.txt file found in the
Expand Down
28 changes: 28 additions & 0 deletions protocols/saci/saci2/doc/SACIv2Waveforms.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

// This is for rendering waveforms with the wavedrom tool
// wavedrom.com/editor.html

{signal: [['Coordinator',
{name: 'saciSelL', wave: '1.0......|.....|...|.......|..1.'},
{name: 'saciClk', wave: 'p........|.....|...|.......|....'},
{name: 'saciCmd', wave: '0..113...|.4...|.0.|.......|....', data: ['ADDR[31:2]', 'DATA[31:0]']}],
{},['Subordinate',
{name: 'saciRsp', wave: '=.0......|.....|...|.113...|.0=.', data: ['High-Z', 'ADDR[31:2]', 'HIGH-Z']},
]
],
foot:{
text:'SACIv2 Write',
}
}

{signal: [['Coordinator',
{name: 'saciSelL', wave: '1.0......|..|........|.....|..1.'},
{name: 'saciClk', wave: 'p........|..|........|.....|....'},
{name: 'saciCmd', wave: '0..103...|.0|........|.....|....', data: ['ADDR[31:2]', ]}],
{},['Subordinate',
{name: 'saciRsp', wave: '=.0......|..|..103...|.4...|.0=.', data: ['High-Z', 'ADDR[31:2]', 'DATA[31:0]', 'HIGH-Z']},
]
],
foot:{
text:'SACIv2 Read',
}}
268 changes: 268 additions & 0 deletions protocols/saci/saci2/rtl/AxiLiteToSaci2.vhd
Original file line number Diff line number Diff line change
@@ -0,0 +1,268 @@
-------------------------------------------------------------------------------
-- Title : SACI Version 2 Protocol: https://confluence.slac.stanford.edu/x/y3TDHw
-------------------------------------------------------------------------------
-- Company : SLAC National Accelerator Laboratory
-------------------------------------------------------------------------------
-- Description: AXI-Lite bridge to SACI bus
-------------------------------------------------------------------------------
-- This file is part of 'SLAC Firmware Standard Library'.
-- It is subject to the license terms in the LICENSE.txt file found in the
-- top-level directory of this distribution and at:
-- https://confluence.slac.stanford.edu/display/ppareg/LICENSE.html.
-- No part of 'SLAC Firmware Standard Library', including this file,
-- may be copied, modified, propagated, or distributed except according to
-- the terms contained in the LICENSE.txt file.
-------------------------------------------------------------------------------

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;

library surf;
use surf.StdRtlPkg.all;
use surf.AxiLitePkg.all;

entity AxiLiteToSaci2 is
generic (
TPD_G : time := 1 ns;
AXIL_CLK_PERIOD_G : real := 8.0e-9; -- In units of seconds
AXIL_TIMEOUT_G : real := 1.0E-3; -- In units of seconds
SACI_CLK_PERIOD_G : real := 1.0e-6; -- In units of seconds
SACI_CLK_FREERUN_G : boolean := false;
SACI_ADDR_BITS_G : integer range 2 to 30 := 24;
SACI_NUM_CHIPS_G : positive := 1;
SACI_RSP_BUSSED_G : boolean := false);
port (
-- SACI interface
saciClk : out sl;
saciCmd : out sl;
saciSelL : out slv(SACI_NUM_CHIPS_G-1 downto 0);
saciRsp : in slv(ite(SACI_RSP_BUSSED_G, 0, SACI_NUM_CHIPS_G-1) downto 0);
-- Optional SACI bus arbitration
saciBusReq : out sl;
saciBusGr : in sl := '1';
-- Optional ASIC Global Reset
asicRstL : in sl := '1';
-- AXI-Lite Register Interface
axilClk : in sl;
axilRst : in sl;
axilReadMaster : in AxiLiteReadMasterType;
axilReadSlave : out AxiLiteReadSlaveType;
axilWriteMaster : in AxiLiteWriteMasterType;
axilWriteSlave : out AxiLiteWriteSlaveType);
end AxiLiteToSaci2;

architecture rtl of AxiLiteToSaci2 is

constant CHIP_BITS_C : integer := log2(SACI_NUM_CHIPS_G);
constant TIMEOUT_C : integer := integer(AXIL_TIMEOUT_G/AXIL_CLK_PERIOD_G)-1;

type StateType is (
IDLE_S,
SACI_REQ_S,
SACI_ACK_S);

type RegType is record
state : StateType;
saciBusReq : sl;
saciRst : sl;
req : sl;
chip : slv(log2(SACI_NUM_CHIPS_G)-1 downto 0);
op : sl;
addr : slv(29 downto 0);
wrData : slv(31 downto 0);
timer : integer range 0 to TIMEOUT_C;
axilReadSlave : AxiLiteReadSlaveType;
axilWriteSlave : AxiLiteWriteSlaveType;
end record RegType;

constant REG_INIT_C : RegType := (
state => IDLE_S,
saciBusReq => '0',
saciRst => '1',
req => '0',
chip => (others => '0'),
op => '0',
addr => (others => '0'),
wrData => (others => '0'),
timer => 0,
axilReadSlave => AXI_LITE_READ_SLAVE_INIT_C,
axilWriteSlave => AXI_LITE_WRITE_SLAVE_INIT_C);

signal r : RegType := REG_INIT_C;
signal rin : RegType;

signal ack : sl;
signal fail : sl;
signal rdData : slv(31 downto 0);

-- attribute dont_touch : string;
-- attribute dont_touch of r : signal is "true";

begin

assert (AXIL_CLK_PERIOD_G < 1.0)
report "AXIL_CLK_PERIOD_G must be < 1.0 seconds" severity failure;
assert (AXIL_TIMEOUT_G < 1.0)
report "AXIL_TIMEOUT_G must be < 1.0 seconds" severity failure;
assert (SACI_CLK_PERIOD_G < 1.0)
report "SACI_CLK_PERIOD_G must be < 1.0 seconds" severity failure;
assert (AXIL_CLK_PERIOD_G < AXIL_TIMEOUT_G)
report "AXIL_CLK_PERIOD_G must be < AXIL_TIMEOUT_G" severity failure;
assert (AXIL_CLK_PERIOD_G < SACI_CLK_PERIOD_G)
report "AXIL_CLK_PERIOD_G must be < SACI_CLK_PERIOD_G" severity failure;
assert (SACI_CLK_PERIOD_G < AXIL_TIMEOUT_G)
report "SACI_CLK_PERIOD_G must be < AXIL_TIMEOUT_G" severity failure;

U_Saci2Coordinator_1 : entity surf.Saci2Coordinator
generic map (
TPD_G => TPD_G,
SYS_CLK_PERIOD_G => AXIL_CLK_PERIOD_G,
SACI_CLK_PERIOD_G => SACI_CLK_PERIOD_G,
SACI_CLK_FREERUN_G => SACI_CLK_FREERUN_G,
SACI_NUM_CHIPS_G => SACI_NUM_CHIPS_G,
SACI_RSP_BUSSED_G => SACI_RSP_BUSSED_G)
port map (
sysClk => axilClk, -- [in]
sysRst => r.saciRst, -- [in]
asicRstL => asicRstL, -- [in]
req => r.req, -- [in]
ack => ack, -- [out]
fail => fail, -- [out]
chip => r.chip, -- [in]
op => r.op, -- [in]
addr => r.addr, -- [in]
wrData => r.wrData, -- [in]
rdData => rdData, -- [out]
saciClk => saciClk, -- [out]
saciSelL => saciSelL, -- [out]
saciCmd => saciCmd, -- [out]
saciRsp => saciRsp); -- [in]

comb : process (ack, asicRstL, axilReadMaster, axilRst, axilWriteMaster,
fail, r, rdData, saciBusGr) is
variable v : RegType;
variable axilStatus : AxiLiteStatusType;
variable resp : slv(1 downto 0);
begin
-- Latch the current value
v := r;

-- Reset the strobing signals
resp := AXI_RESP_OK_C;

-- Check the timer
if r.timer /= TIMEOUT_C then
-- Increment the counter
v.timer := r.timer + 1;
end if;

-- Determine the transaction type
axiSlaveWaitTxn(axilWriteMaster, axilReadMaster, v.axilWriteSlave, v.axilReadSlave, axilStatus);

-- State Machine
case (r.state) is
----------------------------------------------------------------------
when IDLE_S =>
-- Reset the timer
v.saciRst := '0';
v.timer := 0;
v.saciBusReq := '0';
if (saciBusGr = '1') and (asicRstL = '1') then
-- Check for a write request
if (axilStatus.writeEnable = '1') then
v.saciBusReq := '1';
-- SACI Commands
v.req := '1';
v.op := '1';
v.chip := axilWriteMaster.awaddr(SACI_ADDR_BITS_G+CHIP_BITS_C-1 downto SACI_ADDR_BITS_G);
if (SACI_NUM_CHIPS_G = 1) then
v.chip := "0";
end if;
v.addr(SACI_ADDR_BITS_G-1 downto 0) := axilWriteMaster.awaddr(SACI_ADDR_BITS_G+1 downto 2);
v.wrData := axilWriteMaster.wdata;
-- Next state
v.state := SACI_REQ_S;
-- Check for a read request
elsif (axilStatus.readEnable = '1') then
v.saciBusReq := '1';
-- SACI Commands
v.req := '1';
v.op := '0';
v.chip := axilReadMaster.araddr(SACI_ADDR_BITS_G+CHIP_BITS_C-1 downto SACI_ADDR_BITS_G);
if (SACI_NUM_CHIPS_G = 1) then
v.chip := "0";
end if;
v.addr(SACI_ADDR_BITS_G-1 downto 0) := axilReadMaster.araddr(SACI_ADDR_BITS_G+1 downto 2);
v.wrData := (others => '0');
-- Next state
v.state := SACI_REQ_S;
end if;
else
if (axilStatus.writeEnable = '1') then
axiSlaveWriteResponse(v.axilWriteSlave, AXI_RESP_SLVERR_C);
elsif (axilStatus.readEnable = '1') then
axiSlaveReadResponse(v.axilReadSlave, AXI_RESP_SLVERR_C);
end if;
end if;
----------------------------------------------------------------------
when SACI_REQ_S =>
if (ack = '1' and fail = '1') or (r.timer = TIMEOUT_C) then
-- Set the error flags
resp := AXI_RESP_SLVERR_C;
v.req := '0';
v.saciRst := '1';
elsif (ack = '1') then
-- Reset the flag
v.req := '0';
end if;


if (v.req = '0') then
-- Check for Write operation
if (r.op = '1') then
--- Send AXI-Lite response
axiSlaveWriteResponse(v.axilWriteSlave, resp);
else
-- Return the read data bus
v.axilReadSlave.rdata := rdData;
-- Send AXI-Lite Response
axiSlaveReadResponse(v.axilReadSlave, resp);
end if;
-- Next state
v.state := SACI_ACK_S;
end if;
----------------------------------------------------------------------
when SACI_ACK_S =>
-- Check status of ACK flag
if (ack = '0') then
-- Next state
v.state := IDLE_S;
end if;
----------------------------------------------------------------------
end case;

-- Synchronous Reset
if axilRst = '1' then
v := REG_INIT_C;
end if;

-- Register the variable for next clock cycle
rin <= v;

-- Outputs
axilReadSlave <= r.axilReadSlave;
axilWriteSlave <= r.axilWriteSlave;
saciBusReq <= r.saciBusReq;

end process comb;

seq : process (axilClk) is
begin
if rising_edge(axilClk) then
r <= rin after TPD_G;
end if;
end process seq;

end rtl;
Loading