litex/migen/actorlib/misc.py

58 lines
1.3 KiB
Python
Raw Normal View History

2012-01-15 16:08:33 -05:00
from migen.fhdl.structure import *
from migen.corelogic.record import *
from migen.corelogic.fsm import *
from migen.flow.actor import *
# Generates integers from start to maximum-1
2012-06-22 09:01:47 -04:00
class IntSequence(Actor):
2012-06-17 15:19:47 -04:00
def __init__(self, nbits, step=1):
self.nbits = nbits
2012-01-15 16:08:33 -05:00
self.step = step
2012-06-17 15:19:47 -04:00
super().__init__(
2012-06-17 15:19:47 -04:00
("maximum", Sink, [("value", BV(nbits))]),
("source", Source, [("value", BV(nbits))]))
2012-01-15 16:08:33 -05:00
def get_fragment(self):
load = Signal()
ce = Signal()
last = Signal()
2012-06-17 15:19:47 -04:00
maximum = Signal(BV(self.nbits))
counter = Signal(BV(self.nbits))
2012-01-15 16:08:33 -05:00
2012-06-17 15:19:47 -04:00
if self.step > 1:
comb = [last.eq(counter + self.step >= maximum)]
2012-01-15 16:08:33 -05:00
else:
2012-06-17 15:19:47 -04:00
comb = [last.eq(counter + 1 == maximum)]
2012-01-15 16:08:33 -05:00
sync = [
If(load,
2012-06-17 15:19:47 -04:00
counter.eq(0),
maximum.eq(self.token("maximum").value)
).Elif(ce,
If(last,
counter.eq(0)
).Else(
counter.eq(counter + self.step)
)
)
2012-01-15 16:08:33 -05:00
]
2012-06-17 15:19:47 -04:00
comb.append(self.token("source").value.eq(counter))
counter_fragment = Fragment(comb, sync)
2012-01-15 16:08:33 -05:00
fsm = FSM("IDLE", "ACTIVE")
fsm.act(fsm.IDLE,
load.eq(1),
2012-06-17 15:19:47 -04:00
self.endpoints["maximum"].ack.eq(1),
If(self.endpoints["maximum"].stb, fsm.next_state(fsm.ACTIVE))
2012-01-15 16:08:33 -05:00
)
fsm.act(fsm.ACTIVE,
self.busy.eq(1),
self.endpoints["source"].stb.eq(1),
If(self.endpoints["source"].ack,
ce.eq(1),
If(last, fsm.next_state(fsm.IDLE))
)
)
2012-06-17 15:19:47 -04:00
return counter_fragment + fsm.get_fragment()