1 |
9 |
daniel.kho |
/*
|
2 |
|
|
This file is part of the AXI4 Transactor and Bus Functional Model
|
3 |
|
|
(axi4_tlm_bfm) project:
|
4 |
|
|
http://www.opencores.org/project,axi4_tlm_bfm
|
5 |
|
|
|
6 |
|
|
Description
|
7 |
|
|
Synthesisable use case for AXI4 on-chip messaging.
|
8 |
|
|
|
9 |
|
|
To Do:
|
10 |
|
|
|
11 |
|
|
Author(s):
|
12 |
|
|
- Daniel C.K. Kho, daniel.kho@opencores.org | daniel.kho@tauhop.com
|
13 |
|
|
|
14 |
|
|
Copyright (C) 2012-2013 Authors and OPENCORES.ORG
|
15 |
|
|
|
16 |
|
|
This source file may be used and distributed without
|
17 |
|
|
restriction provided that this copyright statement is not
|
18 |
|
|
removed from the file and that any derivative work contains
|
19 |
|
|
the original copyright notice and the associated disclaimer.
|
20 |
|
|
|
21 |
|
|
This source file is free software; you can redistribute it
|
22 |
|
|
and/or modify it under the terms of the GNU Lesser General
|
23 |
|
|
Public License as published by the Free Software Foundation;
|
24 |
|
|
either version 2.1 of the License, or (at your option) any
|
25 |
|
|
later version.
|
26 |
|
|
|
27 |
|
|
This source is distributed in the hope that it will be
|
28 |
|
|
useful, but WITHOUT ANY WARRANTY; without even the implied
|
29 |
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
30 |
|
|
PURPOSE. See the GNU Lesser General Public License for more
|
31 |
|
|
details.
|
32 |
|
|
|
33 |
|
|
You should have received a copy of the GNU Lesser General
|
34 |
|
|
Public License along with this source; if not, download it
|
35 |
|
|
from http://www.opencores.org/lgpl.shtml.
|
36 |
|
|
*/
|
37 |
|
|
library ieee; use ieee.std_logic_1164.all, ieee.numeric_std.all; use ieee.math_real.all;
|
38 |
|
|
--library tauhop; use tauhop.transactor.all, tauhop.axiTransactor.all; --TODO just use axiTransactor here as transactor should already be wrapped up.
|
39 |
|
|
|
40 |
|
|
/* TODO remove once generic packages are supported. */
|
41 |
|
|
library tauhop; use tauhop.tlm.all, tauhop.axiTLM.all;
|
42 |
|
|
|
43 |
|
|
/* synthesis translate_off */
|
44 |
|
|
library osvvm; use osvvm.RandomPkg.all; use osvvm.CoveragePkg.all;
|
45 |
|
|
/* synthesis translate_on */
|
46 |
|
|
|
47 |
|
|
library altera; use altera.stp;
|
48 |
|
|
|
49 |
|
|
|
50 |
|
|
entity user is port(
|
51 |
|
|
/* Comment-out for simulation. */
|
52 |
|
|
clk,nReset:in std_ulogic;
|
53 |
|
|
|
54 |
|
|
/* AXI Master interface */
|
55 |
|
|
-- axiMaster_in:in t_axi4StreamTransactor_s2m;
|
56 |
|
|
axiMaster_out:buffer t_axi4StreamTransactor_m2s
|
57 |
|
|
|
58 |
|
|
/* Debug ports. */
|
59 |
|
|
);
|
60 |
|
|
end entity user;
|
61 |
|
|
|
62 |
|
|
architecture rtl of user is
|
63 |
|
|
/* Global counters. */
|
64 |
|
|
constant maxSymbols:positive:=2048; --maximum number of symbols allowed to be transmitted in a frame. Each symbol's width equals tData's width.
|
65 |
|
|
signal symbolsPerTransfer:t_cnt;
|
66 |
|
|
signal outstandingTransactions:t_cnt;
|
67 |
|
|
|
68 |
|
|
/* BFM signalling. */
|
69 |
|
|
signal readRequest,next_readRequest:t_bfm:=((others=>'0'),(others=>'0'),false);
|
70 |
|
|
signal writeRequest,next_writeRequest:t_bfm:=((others=>'0'),(others=>'0'),false);
|
71 |
|
|
signal readResponse,next_readResponse:t_bfm;
|
72 |
|
|
signal writeResponse,next_writeResponse:t_bfm;
|
73 |
|
|
|
74 |
|
|
|
75 |
|
|
/* Tester signals. */
|
76 |
|
|
/* synthesis translate_off */
|
77 |
|
|
signal clk,nReset:std_ulogic:='0';
|
78 |
|
|
/* synthesis translate_on */
|
79 |
|
|
signal trigger:boolean;
|
80 |
|
|
signal anlysr_dataIn:std_logic_vector(127 downto 0);
|
81 |
|
|
signal anlysr_trigger:std_ulogic;
|
82 |
|
|
|
83 |
|
|
/* Signal preservations for SignalTap II probing. */
|
84 |
|
|
attribute keep:boolean;
|
85 |
|
|
attribute keep of trigger:signal is true;
|
86 |
|
|
|
87 |
|
|
signal axiMaster_in:t_axi4StreamTransactor_s2m;
|
88 |
|
|
signal irq_write:std_ulogic; -- clock gating.
|
89 |
|
|
|
90 |
|
|
begin
|
91 |
|
|
/* pipelines. */
|
92 |
|
|
process(clk) is begin
|
93 |
|
|
if rising_edge(clk) then
|
94 |
|
|
next_readRequest<=readRequest;
|
95 |
|
|
next_writeRequest<=writeRequest;
|
96 |
|
|
next_readResponse<=readResponse;
|
97 |
|
|
next_writeResponse<=writeResponse;
|
98 |
|
|
end if;
|
99 |
|
|
end process;
|
100 |
|
|
|
101 |
|
|
|
102 |
|
|
/* Bus functional models. */
|
103 |
|
|
axiMaster: entity work.axiBfmMaster(rtl)
|
104 |
|
|
-- generic map(maxTransactions=>maxSymbols)
|
105 |
|
|
port map(
|
106 |
|
|
aclk=>irq_write, n_areset=>nReset,
|
107 |
|
|
trigger=>irq_write='1',
|
108 |
|
|
|
109 |
|
|
readRequest=>readRequest, writeRequest=>writeRequest,
|
110 |
|
|
readResponse=>readResponse, writeResponse=>writeResponse,
|
111 |
|
|
axiMaster_in=>axiMaster_in,
|
112 |
|
|
axiMaster_out=>axiMaster_out,
|
113 |
|
|
|
114 |
|
|
symbolsPerTransfer=>symbolsPerTransfer,
|
115 |
|
|
outstandingTransactions=>outstandingTransactions
|
116 |
|
|
);
|
117 |
|
|
|
118 |
|
|
/* Interrupt-request generator. */
|
119 |
|
|
irq_write<=clk when nReset else '0';
|
120 |
|
|
|
121 |
|
|
/* Simulation Tester. */
|
122 |
|
|
/* synthesis translate_off */
|
123 |
|
|
clk<=not clk after 10 ps;
|
124 |
|
|
process is begin
|
125 |
|
|
nReset<='1'; wait for 1 ps;
|
126 |
|
|
nReset<='0'; wait for 500 ps;
|
127 |
|
|
nReset<='1';
|
128 |
|
|
wait;
|
129 |
|
|
end process;
|
130 |
|
|
/* synthesis translate_on */
|
131 |
|
|
|
132 |
|
|
/* Hardware tester. */
|
133 |
|
|
/* directly instantiated if configurations is not used.
|
134 |
|
|
component-instantiated if configurations are used.
|
135 |
|
|
*/
|
136 |
|
|
-- i_bist: entity work.framer_bist(tc1)
|
137 |
|
|
/*i_bist: entity work.framer_bist(tc2_randomised)
|
138 |
|
|
generic map(interPktGap=>3, pktSize=>pktSize)
|
139 |
|
|
port map(nReset=>nReset, clk=>clk,
|
140 |
|
|
trigger=>trigger,
|
141 |
|
|
txDataIn=>txDataIn,
|
142 |
|
|
txOut=>data(0),
|
143 |
|
|
dataFault=>dataFault, crcFault=>crcFault
|
144 |
|
|
);
|
145 |
|
|
*/
|
146 |
|
|
|
147 |
|
|
/* SignalTap II embedded logic analyser. Included as part of BiST architecture. */
|
148 |
|
|
--trigger<=clk='1';
|
149 |
|
|
--anlysr_trigger<='1' when trigger else '0';
|
150 |
|
|
anlysr_trigger<='1' when writeRequest.trigger else '0';
|
151 |
|
|
|
152 |
|
|
/* Disable this for synthesis as this is not currently synthesisable.
|
153 |
|
|
Pull the framerFSM statemachine signal from lower down the hierarchy to this level instead.
|
154 |
|
|
*/
|
155 |
|
|
/* synthesis translate_off */
|
156 |
|
|
--framerFSM<=to_unsigned(<<signal framers_txs(0).i_framer.framerFSM: framerFsmStates>>,framerFSM'length);
|
157 |
|
|
/* synthesis translate_on */
|
158 |
|
|
|
159 |
|
|
anlysr_dataIn(0)<='1' when nReset else '0';
|
160 |
|
|
anlysr_dataIn(1)<='1' when irq_write else '0';
|
161 |
|
|
anlysr_dataIn(2)<='1' when axiMaster_in.tReady else '0';
|
162 |
|
|
anlysr_dataIn(3)<='1' when axiMaster_out.tValid else '0';
|
163 |
|
|
anlysr_dataIn(67 downto 4)<=std_logic_vector(axiMaster_out.tData);
|
164 |
|
|
anlysr_dataIn(71 downto 68)<=std_logic_vector(axiMaster_out.tStrb);
|
165 |
|
|
anlysr_dataIn(75 downto 72)<=std_logic_vector(axiMaster_out.tKeep);
|
166 |
|
|
anlysr_dataIn(76)<='1' when axiMaster_out.tLast else '0';
|
167 |
|
|
--anlysr_dataIn(2)<='1' when axiMaster_out.tValid else '0';
|
168 |
|
|
anlysr_dataIn(77)<='1' when writeRequest.trigger else '0';
|
169 |
|
|
|
170 |
|
|
anlysr_dataIn(anlysr_dataIn'high downto 78)<=(others=>'0');
|
171 |
|
|
|
172 |
|
|
|
173 |
|
|
/* Simulate only if you have compiled Altera's simulation libraries. */
|
174 |
|
|
i_bistFramer_stp_analyser: entity altera.stp(syn) port map(
|
175 |
|
|
acq_clk=>clk,
|
176 |
|
|
acq_data_in=>anlysr_dataIn,
|
177 |
|
|
acq_trigger_in=>"1",
|
178 |
|
|
trigger_in=>anlysr_trigger
|
179 |
|
|
);
|
180 |
|
|
|
181 |
|
|
|
182 |
|
|
|
183 |
|
|
/* Stimuli sequencer. */
|
184 |
|
|
axiMaster_in.tReady<=true when axiMaster_out.tValid and falling_edge(clk);
|
185 |
|
|
|
186 |
|
|
sequencer: process(nReset,irq_write) is
|
187 |
|
|
/* Local procedures to map BFM signals with the package procedure. */
|
188 |
|
|
procedure read(address:in t_addr) is begin
|
189 |
|
|
read(readRequest,address);
|
190 |
|
|
end procedure read;
|
191 |
|
|
|
192 |
|
|
procedure write(data:in t_msg) is begin
|
193 |
|
|
write(request=>writeRequest, address=>(others=>'-'), data=>data);
|
194 |
|
|
end procedure write;
|
195 |
|
|
|
196 |
|
|
variable isPktError:boolean;
|
197 |
|
|
|
198 |
|
|
/* Tester variables. */
|
199 |
|
|
/* Synthesis-only randomisation. */
|
200 |
|
|
variable seed0,seed1:positive:=1;
|
201 |
|
|
--variable rand0:real;
|
202 |
|
|
variable rand0:signed(63 downto 0);
|
203 |
|
|
/* Simulation-only randomisation. */
|
204 |
|
|
/* synthesis translate_off */
|
205 |
|
|
variable rv0,rv1:RandomPType;
|
206 |
|
|
/* synthesis translate_on */
|
207 |
|
|
|
208 |
|
|
begin
|
209 |
|
|
if not nReset then
|
210 |
|
|
/* synthesis only. */
|
211 |
|
|
seed0:=1; seed1:=1;
|
212 |
|
|
--uniform(seed0,seed1,rand0);
|
213 |
|
|
rand0:=(others=>'0');
|
214 |
|
|
|
215 |
|
|
--symbolsPerTransfer<=120x"0" & to_unsigned(integer(rand0 * 2.0**8),8);
|
216 |
|
|
symbolsPerTransfer<=128x"8";
|
217 |
|
|
|
218 |
|
|
|
219 |
|
|
/* simulation only. */
|
220 |
|
|
/* synthesis translate_off */
|
221 |
|
|
rv0.InitSeed(rv0'instance_name);
|
222 |
|
|
rv1.InitSeed(rv1'instance_name);
|
223 |
|
|
symbolsPerTransfer<=120x"0" & rv0.RandUnsigned(8);
|
224 |
|
|
/* synthesis translate_on */
|
225 |
|
|
elsif falling_edge(irq_write) then
|
226 |
|
|
--write(64x"abcd1234");
|
227 |
|
|
if outstandingTransactions>0 then
|
228 |
|
|
/* synthesis only. */
|
229 |
|
|
--uniform(seed0,seed1,rand0);
|
230 |
|
|
--write(to_signed(integer(rand0 * 2.0**31),64));
|
231 |
|
|
write(rand0);
|
232 |
|
|
rand0:=rand0+1;
|
233 |
|
|
|
234 |
|
|
/* simulation only. */
|
235 |
|
|
/* synthesis translate_off */
|
236 |
|
|
write(rv1.RandUnsigned(axiMaster_out.tData'length));
|
237 |
|
|
/* synthesis translate_on */
|
238 |
|
|
else
|
239 |
|
|
/* synthesis only. */
|
240 |
|
|
/* Testcase 1: number of symbols per transfer becomes 0 after first stream transfer. */
|
241 |
|
|
--symbolsPerTransfer<=(others=>'0');
|
242 |
|
|
|
243 |
|
|
/* Testcase 2: number of symbols per transfer is randomised. */
|
244 |
|
|
--uniform(seed0,seed1,rand0);
|
245 |
|
|
--symbolsPerTransfer<=120x"0" & to_unsigned(integer(rand0 * 2.0**8),8); --symbolsPerTransfer'length
|
246 |
|
|
--report "symbols per transfer = " & ieee.numeric_std.to_hstring(to_unsigned(integer(rand0 * 2.0**8),8)); --axiMaster_out.tData'length));
|
247 |
|
|
symbolsPerTransfer<=128x"8";
|
248 |
|
|
|
249 |
|
|
|
250 |
|
|
/* Truncate symbolsPerTransfer to 8 bits, so that it uses a "small" value for simulation. */
|
251 |
|
|
/* simulation only. */
|
252 |
|
|
/* synthesis translate_off */
|
253 |
|
|
symbolsPerTransfer<=120x"0" & rv0.RandSigned(64);
|
254 |
|
|
report "symbols per transfer = 0x" & ieee.numeric_std.to_hstring(rv0.RandUnsigned(axiMaster_out.tData'length));
|
255 |
|
|
/* synthesis translate_on */
|
256 |
|
|
end if;
|
257 |
|
|
end if;
|
258 |
|
|
end process sequencer;
|
259 |
|
|
end architecture rtl;
|