Skip to content

Commit

Permalink
csr/SRAM: support for writes with memory widths larger than bus words
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Mar 8, 2013
1 parent 6fa3005 commit b75fb7f
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions migen/bus/csr.py
Expand Up @@ -54,7 +54,7 @@ def _compute_page_bits(nwords):
return 0

class SRAM:
def __init__(self, mem_or_size, address, bus=None):
def __init__(self, mem_or_size, address, read_only=None, bus=None):
if isinstance(mem_or_size, Memory):
self.mem = mem_or_size
else:
Expand All @@ -71,6 +71,12 @@ def __init__(self, mem_or_size, address, bus=None):
self._page = RegisterField(self.mem.name_override + "_page", page_bits)
else:
self._page = None
if read_only is None:
if hasattr(self.mem, "bus_read_only"):
read_only = self.mem.bus_read_only
else:
read_only = False
self.read_only = read_only
if bus is None:
bus = Interface()
self.bus = bus
Expand All @@ -82,7 +88,8 @@ def get_registers(self):
return [self._page]

def get_fragment(self):
port = self.mem.get_port(write_capable=not self.word_bits)
port = self.mem.get_port(write_capable=not self.read_only,
we_granularity=data_width if not self.read_only and self.word_bits else 0)

sel = Signal()
sel_r = Signal()
Expand All @@ -99,14 +106,22 @@ def get_fragment(self):
chooser(word_expanded, word_index, self.bus.dat_r, n=self.csrw_per_memw, reverse=True)
)
]
if not self.read_only:
comb += [
If(sel & self.bus.we, port.we.eq((1 << self.word_bits) >> self.bus.adr[:self.word_bits])),
port.dat_w.eq(Replicate(self.bus.dat_w, self.csrw_per_memw))
]
else:
comb += [
port.we.eq(sel & self.bus.we),
port.dat_w.eq(self.bus.dat_w),
If(sel_r,
self.bus.dat_r.eq(port.dat_r)
)
]
if not self.read_only:
comb += [
port.we.eq(sel & self.bus.we),
port.dat_w.eq(self.bus.dat_w)
]

if self._page is None:
comb.append(port.adr.eq(self.bus.adr[self.word_bits:len(port.adr)]))
Expand Down

0 comments on commit b75fb7f

Please sign in to comment.