Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CTU CAN FD IP Core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
canbus
CTU CAN FD IP Core
Commits
cc1e5027
Commit
cc1e5027
authored
Jan 03, 2020
by
Ille, Ondrej, Ing.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: Add ERR_CAPT bit error in data field feature test.
parent
7ebb7132
Pipeline
#14793
passed with stages
in 20 minutes and 8 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
188 additions
and
0 deletions
+188
-0
test/feature/err_capt_data_bit_feature_tb.vhd
test/feature/err_capt_data_bit_feature_tb.vhd
+186
-0
test/tests_fast.yml
test/tests_fast.yml
+1
-0
test/tests_nightly.yml
test/tests_nightly.yml
+1
-0
No files found.
test/feature/err_capt_data_bit_feature_tb.vhd
0 → 100644
View file @
cc1e5027
--------------------------------------------------------------------------------
--
-- CTU CAN FD IP Core
-- Copyright (C) 2015-2018
--
-- Authors:
-- Ondrej Ille <ondrej.ille@gmail.com>
-- Martin Jerabek <martin.jerabek01@gmail.com>
--
-- Project advisors:
-- Jiri Novak <jnovak@fel.cvut.cz>
-- Pavel Pisa <pisa@cmp.felk.cvut.cz>
--
-- Department of Measurement (http://meas.fel.cvut.cz/)
-- Faculty of Electrical Engineering (http://www.fel.cvut.cz)
-- Czech Technical University (http://www.cvut.cz/)
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this VHDL component and associated documentation files (the "Component"),
-- to deal in the Component without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Component, and to permit persons to whom the
-- Component is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Component.
--
-- THE COMPONENT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHTHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE COMPONENT OR THE USE OR OTHER DEALINGS
-- IN THE COMPONENT.
--
-- The CAN protocol is developed by Robert Bosch GmbH and protected by patents.
-- Anybody who wants to implement this IP core on silicon has to obtain a CAN
-- protocol license from Bosch.
--
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- Purpose:
-- ERR_CAPT[ERR_POS] = ERC_POS_DATA feature test - bit error.
--
-- Verifies:
-- 1. Detection of bit error in Data field.
-- 2. Value of ERR_CAPT when bit error is detected in Data field.
--
-- Test sequence:
-- 1. Check that ERR_CAPT contains no error (post reset).
-- 2. Generate CAN frame, send it by Node 1. Wait until data field. Wait for
-- random duration of data field. Force bus to opposite value as transmitted
-- bit wait until sample point. Check that error frame is being transmitted.
-- Check that ERR_CAPT signals bit error in data field!
--------------------------------------------------------------------------------
-- Revision History:
-- 03.02.2020 Created file
--------------------------------------------------------------------------------
context
work
.
ctu_can_synth_context
;
context
work
.
ctu_can_test_context
;
use
lib
.
pkg_feature_exec_dispath
.
all
;
package
err_capt_data_bit_feature
is
procedure
err_capt_data_bit_feature_exec
(
signal
so
:
out
feature_signal_outputs_t
;
signal
rand_ctr
:
inout
natural
range
0
to
RAND_POOL_SIZE
;
signal
iout
:
in
instance_outputs_arr_t
;
signal
mem_bus
:
inout
mem_bus_arr_t
;
signal
bus_level
:
in
std_logic
);
end
package
;
package
body
err_capt_data_bit_feature
is
procedure
err_capt_data_bit_feature_exec
(
signal
so
:
out
feature_signal_outputs_t
;
signal
rand_ctr
:
inout
natural
range
0
to
RAND_POOL_SIZE
;
signal
iout
:
in
instance_outputs_arr_t
;
signal
mem_bus
:
inout
mem_bus_arr_t
;
signal
bus_level
:
in
std_logic
)
is
variable
rand_value
:
real
;
variable
alc
:
natural
;
-- Some unit lost the arbitration...
-- 0 - initial , 1-Node 1 turned rec, 2 - Node 2 turned rec
variable
unit_rec
:
natural
:
=
0
;
variable
ID_1
:
natural
:
=
1
;
variable
ID_2
:
natural
:
=
2
;
variable
r_data
:
std_logic_vector
(
31
downto
0
)
:
=
(
OTHERS
=>
'0'
);
-- Generated frames
variable
frame_1
:
SW_CAN_frame_type
;
variable
frame_2
:
SW_CAN_frame_type
;
variable
frame_rx
:
SW_CAN_frame_type
;
-- Node status
variable
stat_1
:
SW_status
;
variable
stat_2
:
SW_status
;
variable
pc_dbg
:
SW_PC_Debug
;
variable
txt_buf_state
:
SW_TXT_Buffer_state_type
;
variable
rx_buf_info
:
SW_RX_Buffer_info
;
variable
frames_equal
:
boolean
:
=
false
;
variable
id_vect
:
std_logic_vector
(
28
downto
0
);
variable
wait_time
:
natural
;
variable
err_counters_1_1
:
SW_error_counters
;
variable
err_counters_1_2
:
SW_error_counters
;
variable
err_counters_2_1
:
SW_error_counters
;
variable
err_counters_2_2
:
SW_error_counters
;
variable
frame_sent
:
boolean
;
variable
err_capt
:
SW_error_capture
;
variable
tmp
:
natural
;
begin
-----------------------------------------------------------------------
-- 1. Check that ERR_CAPT contains no error (post reset).
-----------------------------------------------------------------------
info
(
"Step 1"
);
CAN_read_error_code_capture
(
err_capt
,
ID_1
,
mem_bus
(
1
));
check
(
err_capt
.
err_pos
=
err_pos_other
,
"Reset of ERR_CAPT!"
);
-----------------------------------------------------------------------
-- 2. Generate CAN frame, send it by Node 1. Wait until data field.
-- Wait for random duration of data field. Force bus to opposite
-- value as transmitted bit wait until sample point. Check that
-- error frame is being transmitted. Check that ERR_CAPT signals bit
-- error in data field!
-----------------------------------------------------------------------
info
(
"Step 2"
);
CAN_generate_frame
(
rand_ctr
,
frame_1
);
frame_1
.
rtr
:
=
NO_RTR_FRAME
;
-- Don't sample by SSP!
frame_1
.
brs
:
=
BR_NO_SHIFT
;
if
(
frame_1
.
data_length
=
0
)
then
frame_1
.
data_length
:
=
1
;
decode_length
(
frame_1
.
data_length
,
frame_1
.
dlc
);
end
if
;
CAN_send_frame
(
frame_1
,
1
,
ID_1
,
mem_bus
(
1
),
frame_sent
);
CAN_wait_tx_rx_start
(
true
,
false
,
ID_1
,
mem_bus
(
1
));
CAN_wait_pc_state
(
pc_deb_data
,
ID_1
,
mem_bus
(
1
));
-- Wait for random number of bits
rand_int_v
(
rand_ctr
,
(
frame_1
.
data_length
*
8
)
-
1
,
tmp
);
info
(
"Waiting for: "
&
integer
'image
(
tmp
)
&
" bits!"
);
for
i
in
0
to
tmp
loop
CAN_wait_sample_point
(
iout
(
1
)
.
stat_bus
,
true
);
end
loop
;
CAN_wait_sync_seg
(
iout
(
1
)
.
stat_bus
);
wait
for
20
ns
;
force_bus_level
(
not
iout
(
1
)
.
can_tx
,
so
.
bl_force
,
so
.
bl_inject
);
CAN_wait_sample_point
(
iout
(
1
)
.
stat_bus
,
false
);
wait
for
20
ns
;
-- To be sure that opposite bit is sampled!
release_bus_level
(
so
.
bl_force
);
get_controller_status
(
stat_1
,
ID_1
,
mem_bus
(
1
));
check
(
stat_1
.
error_transmission
,
"Error frame is being transmitted!"
);
CAN_read_error_code_capture
(
err_capt
,
ID_1
,
mem_bus
(
1
));
check
(
err_capt
.
err_type
=
can_err_bit
,
"Bit error detected!"
);
check
(
err_capt
.
err_pos
=
err_pos_data
,
"Error detected in Data field!"
);
CAN_wait_bus_idle
(
ID_1
,
mem_bus
(
1
));
wait
for
100
ns
;
end
procedure
;
end
package
body
;
test/tests_fast.yml
View file @
cc1e5027
...
...
@@ -63,6 +63,7 @@ feature:
err_capt_arb_bit
:
err_capt_ctrl_bit
:
err_capt_ctrl_form
:
err_capt_data_bit
:
err_capt_sof
:
err_norm_fd
:
error_rules_a
:
...
...
test/tests_nightly.yml
View file @
cc1e5027
...
...
@@ -94,6 +94,7 @@ feature:
err_capt_arb_bit
:
err_capt_ctrl_bit
:
err_capt_ctrl_form
:
err_capt_data_bit
:
err_capt_sof
:
err_norm_fd
:
iterations
:
5
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment