2011-12-13 11:33:12 -05:00
|
|
|
from migen.fhdl import convtools, verilog, autofragment
|
|
|
|
from migen.bus import wishbone, csr, wishbone2csr
|
2011-12-16 10:02:49 -05:00
|
|
|
|
2011-12-13 11:33:12 -05:00
|
|
|
from milkymist import lm32, norflash, uart
|
|
|
|
import constraints
|
|
|
|
|
2011-12-16 10:02:49 -05:00
|
|
|
def get():
|
2011-12-13 11:33:12 -05:00
|
|
|
cpu0 = lm32.Inst()
|
|
|
|
norflash0 = norflash.Inst(25, 12)
|
|
|
|
wishbone2csr0 = wishbone2csr.Inst()
|
|
|
|
wishbonecon0 = wishbone.InterconnectShared(
|
|
|
|
[cpu0.ibus, cpu0.dbus],
|
|
|
|
[(0, norflash0.bus), (3, wishbone2csr0.wishbone)],
|
|
|
|
register=True,
|
|
|
|
offset=1)
|
|
|
|
uart0 = uart.Inst(0, 50*1000*1000, baud=115200)
|
|
|
|
csrcon0 = csr.Interconnect(wishbone2csr0.csr, [uart0.bus])
|
|
|
|
|
2011-12-16 10:02:49 -05:00
|
|
|
frag = autofragment.from_local()
|
2011-12-13 11:33:12 -05:00
|
|
|
vns = convtools.Namespace()
|
|
|
|
src_verilog = verilog.Convert(frag, name="soc", ns=vns)
|
2011-12-16 10:02:49 -05:00
|
|
|
src_ucf = constraints.get(vns, norflash0, uart0)
|
2011-12-13 11:33:12 -05:00
|
|
|
return (src_verilog, src_ucf)
|