2014-11-03 12:54:41 -05:00
|
|
|
from migen.fhdl.std import *
|
2014-11-11 04:19:24 -05:00
|
|
|
from migen.genlib.record import *
|
2014-11-11 12:47:34 -05:00
|
|
|
from migen.flow.actor import EndpointDescription, Sink, Source
|
2014-11-03 12:54:41 -05:00
|
|
|
|
2014-11-11 04:19:24 -05:00
|
|
|
primitives = {
|
|
|
|
"ALIGN" : 0x7B4A4ABC,
|
|
|
|
"SYNC" : 0xB5B5957C,
|
|
|
|
"R_RDY" : 0x4A4A957C,
|
|
|
|
"R_OK" : 0x3535B57C,
|
|
|
|
"R_ERR" : 0x5656B57C,
|
|
|
|
"R_IP" : 0X5555B57C,
|
|
|
|
"X_RDY" : 0x5757B57C,
|
|
|
|
"CONT" : 0x9999AA7C,
|
|
|
|
"WTRM" : 0x5858B57C,
|
|
|
|
"SOF" : 0x3737B57C,
|
|
|
|
"EOF" : 0xD5D5B57C,
|
|
|
|
"HOLD" : 0xD5D5AA7C,
|
2014-12-02 15:34:16 -05:00
|
|
|
"HOLDA" : 0X9595AA7C
|
2014-11-11 04:19:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
def ones(width):
|
|
|
|
return 2**width-1
|
2014-11-04 11:35:46 -05:00
|
|
|
|
2014-11-11 12:47:34 -05:00
|
|
|
def phy_layout(dw):
|
2014-11-03 12:54:41 -05:00
|
|
|
layout = [
|
2014-11-11 08:54:54 -05:00
|
|
|
("data", dw),
|
|
|
|
("charisk", dw//8),
|
2014-11-03 12:54:41 -05:00
|
|
|
]
|
2014-12-02 13:24:46 -05:00
|
|
|
return EndpointDescription(layout, packetized=False)
|
2014-11-04 11:35:46 -05:00
|
|
|
|
2014-11-11 12:47:34 -05:00
|
|
|
def link_layout(dw):
|
2014-11-04 11:35:46 -05:00
|
|
|
layout = [
|
2014-11-11 08:54:54 -05:00
|
|
|
("d", dw),
|
|
|
|
("error", 1)
|
2014-11-04 11:35:46 -05:00
|
|
|
]
|
2014-12-02 13:24:46 -05:00
|
|
|
return EndpointDescription(layout, packetized=True)
|