2013-05-22 11:11:09 -04:00
|
|
|
from migen.fhdl.std import *
|
2011-12-16 10:02:55 -05:00
|
|
|
from migen.bus import wishbone
|
|
|
|
from migen.bus import csr
|
2013-02-22 17:19:37 -05:00
|
|
|
from migen.genlib.misc import timeline
|
2011-12-11 09:04:34 -05:00
|
|
|
|
2013-05-22 11:11:09 -04:00
|
|
|
class WB2CSR(Module):
|
2013-07-28 10:33:36 -04:00
|
|
|
def __init__(self, bus_wishbone=None, bus_csr=None):
|
|
|
|
if bus_wishbone is None:
|
|
|
|
bus_wishbone = wishbone.Interface()
|
|
|
|
self.wishbone = bus_wishbone
|
|
|
|
if bus_csr is None:
|
|
|
|
bus_csr = csr.Interface()
|
|
|
|
self.csr = bus_csr
|
2014-10-17 05:08:37 -04:00
|
|
|
|
2013-05-22 11:11:09 -04:00
|
|
|
###
|
|
|
|
|
|
|
|
self.sync += [
|
2012-02-15 10:30:16 -05:00
|
|
|
self.csr.we.eq(0),
|
2013-07-28 10:33:36 -04:00
|
|
|
self.csr.dat_w.eq(self.wishbone.dat_w),
|
|
|
|
self.csr.adr.eq(self.wishbone.adr),
|
2012-02-15 10:30:16 -05:00
|
|
|
self.wishbone.dat_r.eq(self.csr.dat_r)
|
2011-12-11 09:04:34 -05:00
|
|
|
]
|
2013-05-22 11:11:09 -04:00
|
|
|
self.sync += timeline(self.wishbone.cyc & self.wishbone.stb, [
|
2012-03-15 15:25:44 -04:00
|
|
|
(1, [self.csr.we.eq(self.wishbone.we)]),
|
|
|
|
(2, [self.wishbone.ack.eq(1)]),
|
|
|
|
(3, [self.wishbone.ack.eq(0)])
|
|
|
|
])
|