ltssm: move note to LTSSMFSM, SSInactiveFSM and RXDetectFSM

This commit is contained in:
Florent Kermarrec 2019-12-13 12:38:10 +01:00
parent 292076b4e6
commit e0219b55bf

View File

@ -5,10 +5,10 @@ from migen import *
from migen.genlib.misc import WaitTimer
# Note: Currently just FSM skeletons with states/transitions.
# Link Training and Status State Machine -----------------------------------------------------------
# Note: Currently just FSM skeletons with states/transitions.
@ResetInserter()
class LTSSMFSM(FSM):
"""Link Training and Status State Machine (section 7.5)"""
@ -95,6 +95,8 @@ class LTSSMFSM(FSM):
# SSInactive Finite State Machine -----------------------------------------------------------------
# Note: Currently just FSM skeletons with states/transitions.
@ResetInserter()
class SSInactiveFSM(FSM):
"""SSInactive Finite State Machine (section 7.5.2)"""
@ -125,6 +127,8 @@ class SSInactiveFSM(FSM):
# RXDetect Finite State Machine -------------------------------------------------------------------
# Note: Currently just FSM skeletons with states/transitions.
@ResetInserter()
class RXDetectFSM(FSM):
"""RxDetect Finite State Machine (section 7.5.3)"""