1 |
4 |
vladimirar |
#######################################################################
|
2 |
|
|
# Copyright 2014 SyoSil ApS
|
3 |
|
|
# All Rights Reserved Worldwide
|
4 |
|
|
#
|
5 |
|
|
# Licensed under the Apache License, Version 2.0 (the
|
6 |
|
|
# "License"); you may not use this file except in
|
7 |
|
|
# compliance with the License. You may obtain a copy of
|
8 |
|
|
# the License at
|
9 |
|
|
#
|
10 |
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
11 |
|
|
#
|
12 |
|
|
# Unless required by applicable law or agreed to in
|
13 |
|
|
# writing, software distributed under the License is
|
14 |
|
|
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
15 |
|
|
# CONDITIONS OF ANY KIND, either express or implied. See
|
16 |
|
|
# the License for the specific language governing
|
17 |
|
|
# permissions and limitations under the License.
|
18 |
|
|
#######################################################################
|
19 |
|
|
#######################################################################
|
20 |
|
|
# RELASE NOTES for UVM scoreboard
|
21 |
|
|
#
|
22 |
|
|
# Now 24 2014
|
23 |
|
|
#
|
24 |
|
|
# Copyright 2014 SyoSil ApS
|
25 |
|
|
# All Rights Reserved Worldwide
|
26 |
|
|
#######################################################################
|
27 |
|
|
This file contains miscellanous information about this particular
|
28 |
|
|
relase of the UVM scoreboard.
|
29 |
|
|
|
30 |
|
|
The index:
|
31 |
|
|
|
32 |
|
|
* [1]: General Information
|
33 |
|
|
* [2]: Bug Fixes
|
34 |
|
|
* [3]: New Features
|
35 |
|
|
* [4]: Know Limitations
|
36 |
|
|
|
37 |
|
|
#######################################################################
|
38 |
|
|
# [1]: General Information
|
39 |
|
|
#######################################################################
|
40 |
|
|
This vesion of the UVM scoreboard is a very preliminary version of the
|
41 |
|
|
UVM scoreboard architecture presented at DVCon 2014 in the paper:
|
42 |
|
|
Versatile UVM Scoreboarding.
|
43 |
|
|
|
44 |
|
|
#######################################################################
|
45 |
|
|
# [2]: Bug Fixes
|
46 |
|
|
#######################################################################
|
47 |
|
|
|
48 |
|
|
* Changed the create of the compare strategy to a factory create
|
49 |
|
|
instead of a normal constructor invocation
|
50 |
|
|
|
51 |
|
|
* Corrected two problems in out-of-order compare:
|
52 |
|
|
* Incorrect deletion of slave items
|
53 |
|
|
* Incorrect usage of a queues .next() function. This caused the compare to
|
54 |
|
|
break immaturely
|
55 |
|
|
|
56 |
|
|
#######################################################################
|
57 |
|
|
# [3]: New Features
|
58 |
|
|
#######################################################################
|
59 |
|
|
|
60 |
|
|
* Slightly improved documentation:
|
61 |
|
|
* Added note on usage of the uvm_config_db
|
62 |
|
|
* Added note on when the factory overwrites should occur
|
63 |
|
|
|
64 |
|
|
#######################################################################
|
65 |
|
|
# [4]: Known Limitations
|
66 |
|
|
#######################################################################
|
67 |
|
|
The current known limitations for this relase are:
|
68 |
|
|
|
69 |
|
|
1. The TLM API is not supported. Thus, the user needs to implement tasks
|
70 |
|
|
which calls the scoreboards add_item() method
|
71 |
|
|
2. Only Out-of-Order compare is supported
|
72 |
|
|
3. Only a standard SystemVerilog queue is supported
|
73 |
|
|
|