mirror of
https://github.com/enjoy-digital/litedram.git
synced 2025-01-04 09:52:25 -05:00
lpddr5: tests: add additional initial tCK delay for bitslip
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
parent
ab130e170a
commit
50ba27eb4c
1 changed files with 6 additions and 4 deletions
|
@ -536,7 +536,8 @@ class LPDDR5Tests(unittest.TestCase):
|
|||
# tWCKENL_WR starts counting from first command (CAS) so we add command latency,
|
||||
# then preamble, then toggle for the whole burst, then postamble for tWCKPST=2.5tCK
|
||||
# (but for now we assume that WCK is never disabled)
|
||||
"wck0": "0000 0000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"wck0": "0000 0000" + \
|
||||
"0000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"0000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"0000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"0000" + wck_preamble + wck_burst + wck_postamble,
|
||||
|
@ -601,7 +602,8 @@ class LPDDR5Tests(unittest.TestCase):
|
|||
# tWCKENL_WR starts counting from first command (CAS) so we add command latency,
|
||||
# then preamble, then toggle for the whole burst, then postamble for tWCKPST=2.5tCK
|
||||
# (but for now we assume that WCK is never disabled)
|
||||
"wck0": "00000000 00000000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"wck0": "00000000 00000000" + \
|
||||
"00000000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"00000000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"00000000" + wck_preamble + wck_burst + wck_postamble + \
|
||||
"00000000" + wck_preamble + wck_burst + wck_postamble,
|
||||
|
@ -640,7 +642,7 @@ class LPDDR5Tests(unittest.TestCase):
|
|||
"cs": "01100000",
|
||||
},
|
||||
"sys4x_270": {
|
||||
"wck0": "0000 0000" + wck_preamble + wck_burst + wck_postamble + "00 00",
|
||||
"wck0": "0000 0000 0000" + wck_preamble + wck_burst + wck_postamble + "00 00",
|
||||
},
|
||||
},
|
||||
chunk_size=4,
|
||||
|
@ -677,7 +679,7 @@ class LPDDR5Tests(unittest.TestCase):
|
|||
"cs": "01100000",
|
||||
},
|
||||
"sys8x_270": {
|
||||
"wck0": "00000000 00000000" + wck_preamble + wck_burst + wck_postamble + "00000000",
|
||||
"wck0": "00000000 00000000 00000000" + wck_preamble + wck_burst + wck_postamble + "00000000",
|
||||
},
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue