Skip to content

Commit

Permalink
global: Switch to litex.gen.genlib.misc.
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Jul 6, 2023
1 parent e446c06 commit 6297370
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
3 changes: 2 additions & 1 deletion litedram/core/refresher.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"""LiteDRAM Refresher."""

from migen import *
from migen.genlib.misc import timeline

from litex.gen.genlib.misc import timeline

from litex.soc.interconnect import stream

Expand Down
5 changes: 3 additions & 2 deletions litedram/phy/ecp5ddrphy.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
import math

from migen import *
from migen.genlib.misc import timeline

from migen.fhdl.specials import Tristate
from migen.genlib.cdc import MultiReg
from migen.genlib.misc import WaitTimer

from litex.gen.genlib.misc import timeline, WaitTimer

from litex.soc.interconnect.csr import *

Expand Down
5 changes: 3 additions & 2 deletions litedram/phy/gw2ddrphy.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
import math

from migen import *
from migen.genlib.misc import timeline

from migen.fhdl.specials import Tristate
from migen.genlib.cdc import MultiReg
from migen.genlib.misc import WaitTimer

from migen.genlib.misc import timeline, WaitTimer

from litex.soc.interconnect.csr import *

Expand Down
3 changes: 2 additions & 1 deletion litedram/phy/rpc/basephy.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
from operator import and_

from migen import *
from migen.genlib.misc import WaitTimer

from litex.gen.genlib.misc import WaitTimer

from litex.soc.interconnect.csr import AutoCSR, CSR, CSRStatus, CSRStorage

Expand Down
3 changes: 2 additions & 1 deletion litedram/phy/usddrphy.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
import math

from migen import *
from migen.genlib.misc import WaitTimer

from litex.gen.genlib.misc import WaitTimer

from litex.soc.interconnect.csr import *

Expand Down
3 changes: 2 additions & 1 deletion test/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
from itertools import zip_longest

from migen import *
from migen.genlib.misc import WaitTimer

from litex.gen.genlib.misc import WaitTimer

from litex.build.sim.config import SimConfig

Expand Down

0 comments on commit 6297370

Please sign in to comment.