1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
from nmigen.build import *
__all__ = ["SPIResource"]
def SPIResource(*args, cs, clk, mosi, miso, int=None, reset=None, attrs=None, role="host"):
assert role in ("host", "device")
io = []
if role == "host":
io.append(Subsignal("cs", PinsN(cs, dir="o")))
io.append(Subsignal("clk", Pins(clk, dir="o", assert_width=1)))
io.append(Subsignal("mosi", Pins(mosi, dir="o", assert_width=1)))
io.append(Subsignal("miso", Pins(miso, dir="i", assert_width=1)))
else: # device
io.append(Subsignal("cs", PinsN(cs, dir="i", assert_width=1)))
io.append(Subsignal("clk", Pins(clk, dir="i", assert_width=1)))
io.append(Subsignal("mosi", Pins(mosi, dir="i", assert_width=1)))
io.append(Subsignal("miso", Pins(miso, dir="oe", assert_width=1)))
if int is not None:
if role == "host":
io.append(Subsignal("int", Pins(int, dir="i")))
else:
io.append(Subsignal("int", Pins(int, dir="oe", assert_width=1)))
if reset is not None:
if role == "host":
io.append(Subsignal("reset", Pins(reset, dir="o")))
else:
io.append(Subsignal("reset", Pins(reset, dir="i", assert_width=1)))
if attrs is not None:
io.append(attrs)
return Resource.family(*args, default_name="spi", ios=io)
|