Skip to content

Commit d76f637

Browse files
kgugalarobertszczepanski
authored andcommitted
verification: common: update list of allowed addresses
Addresses below 0x8 are reserved in I2C and should not be used for static addresses. Signed-off-by: Karol Gugala <kgugala@antmicro.com>
1 parent 0687116 commit d76f637

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

verification/cocotb/top/lib_i3c_top/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# 0x23 is excluded: it is hardcoded as the I3CTarget sim model address
1313
# and selecting it for DUT addresses causes bus contention.
1414
VALID_I3C_ADDRESSES = (
15-
[i for i in range(0x03, 0x23)]
15+
[i for i in range(0x08, 0x23)]
1616
+ [i for i in range(0x24, 0x3E)]
1717
+ [i for i in range(0x3F, 0x5E)]
1818
+ [i for i in range(0x5F, 0x6E)]

0 commit comments

Comments
 (0)