Skip to content

Commit

Permalink
fhdl/specials: clean up clock domain handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed Mar 26, 2013
1 parent 77a0f0a commit 574becc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
25 changes: 8 additions & 17 deletions migen/fhdl/specials.py
Expand Up @@ -45,7 +45,7 @@ def iter_expressions(self):
yield self, attr, target_context

@staticmethod
def emit_verilog(tristate, ns, clock_domains):
def emit_verilog(tristate, ns):
def pe(e):
return verilog_printexpr(ns, e)[0]
w, s = value_bits_sign(tristate.target)
Expand Down Expand Up @@ -109,7 +109,7 @@ def iter_expressions(self):
yield item, "expr", SPECIAL_INOUT

@staticmethod
def emit_verilog(instance, ns, clock_domains):
def emit_verilog(instance, ns):
r = instance.of + " "
parameters = list(filter(lambda i: isinstance(i, Instance.Parameter), instance.items))
if parameters:
Expand Down Expand Up @@ -161,7 +161,7 @@ def __init__(self, adr, dat_r, we=None, dat_w=None,
self.re = re
self.we_granularity = we_granularity
self.mode = mode
self.clock_domain = clock_domain
self.clock = ClockSignal(clock_domain)

class Memory(Special):
def __init__(self, width, depth, init=None, name=None):
Expand Down Expand Up @@ -205,21 +205,12 @@ def iter_expressions(self):
("we", SPECIAL_INPUT),
("dat_w", SPECIAL_INPUT),
("re", SPECIAL_INPUT),
("dat_r", SPECIAL_OUTPUT)]:
("dat_r", SPECIAL_OUTPUT),
("clock", SPECIAL_INPUT)]:
yield p, attr, target_context

def rename_clock_domain(self, old, new):
# port expressions are always signals - no need to call Special.rename_clock_domain
for port in self.ports:
if port.clock_domain == old:
port.clock_domain = new

def list_clock_domains(self):
# port expressions are always signals - no need to call Special.list_clock_domains
return set(port.clock_domain for port in self.ports)

@staticmethod
def emit_verilog(memory, ns, clock_domains):
def emit_verilog(memory, ns):
r = ""
gn = ns.get_name # usable instead of verilog_printexpr as ports contain only signals
adrbits = bits_for(memory.depth-1)
Expand All @@ -244,7 +235,7 @@ def emit_verilog(memory, ns, clock_domains):
data_regs[id(port)] = data_reg

for port in memory.ports:
r += "always @(posedge " + gn(clock_domains[port.clock_domain].clk) + ") begin\n"
r += "always @(posedge " + gn(port.clock) + ") begin\n"
if port.we is not None:
if port.we_granularity:
n = memory.width//port.we_granularity
Expand Down Expand Up @@ -299,7 +290,7 @@ def __init__(self, template, **signals):
self.signals = signals

@staticmethod
def emit_verilog(directive, ns, clock_domains):
def emit_verilog(directive, ns):
name_dict = dict((k, ns.get_name(sig)) for k, sig in directive.signals.items())
formatted = directive.template.format(**name_dict)
return "// synthesis " + formatted + "\n"
6 changes: 3 additions & 3 deletions migen/fhdl/verilog.py
Expand Up @@ -233,10 +233,10 @@ def _lower_specials(overrides, specials):
lowered_specials.add(special)
return f, lowered_specials

def _printspecials(overrides, specials, ns, clock_domains):
def _printspecials(overrides, specials, ns):
r = ""
for special in sorted(specials, key=lambda x: x.huid):
pr = _call_special_classmethod(overrides, special, "emit_verilog", ns, clock_domains)
pr = _call_special_classmethod(overrides, special, "emit_verilog", ns)
if pr is None:
raise NotImplementedError("Special " + str(special) + " failed to implement emit_verilog")
r += pr
Expand Down Expand Up @@ -289,7 +289,7 @@ def convert(f, ios=None, name="top",
r += _printheader(f, ios, name, ns)
r += _printcomb(f, ns, display_run)
r += _printsync(f, ns)
r += _printspecials(special_overrides, f.specials - lowered_specials, ns, f.clock_domains)
r += _printspecials(special_overrides, f.specials - lowered_specials, ns)
r += _printinit(f, ios, ns)
r += "endmodule\n"

Expand Down

0 comments on commit 574becc

Please sign in to comment.