diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-02-13 18:09:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-13 18:09:19 +0100 |
commit | edbf5fce90ff0e71922a54241a1aec914cc3e230 (patch) | |
tree | 49424e9d014bd184e34be7d93b5c945dec780536 | |
parent | 594644e7557f384b6667c76511a6c0f532a80607 (diff) | |
parent | b024ef49da7d3c63f22afb1741a2bcad4afd6927 (diff) | |
download | icestorm-edbf5fce90ff0e71922a54241a1aec914cc3e230.tar.gz icestorm-edbf5fce90ff0e71922a54241a1aec914cc3e230.tar.bz2 icestorm-edbf5fce90ff0e71922a54241a1aec914cc3e230.zip |
Merge pull request #123 from daveshah1/up5k_io
Add RGB driver LED pins and I³C IOs to chipdb
-rw-r--r-- | icebox/icebox.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/icebox/icebox.py b/icebox/icebox.py index 198b5f2..fff7b99 100644 --- a/icebox/icebox.py +++ b/icebox/icebox.py @@ -4769,6 +4769,10 @@ extra_cells_db = { "RGB2_CURRENT_5": (0, 30, "CBIT_7"), "CURRENT_MODE": (0, 28, "CBIT_4"), + "RGB0": (4, 31, 0), + "RGB1": (5, 31, 0), + "RGB2": (6, 31, 0), + }, ("I2C", (0, 31, 0)): { "I2CIRQ": (0, 30, "slf_op_7"), @@ -4984,7 +4988,16 @@ extra_cells_db = { "PWMOUT1": (0, 28, "slf_op_5"), "PWMOUT2": (0, 28, "slf_op_6"), }, - + ("IO_I3C", (25, 27, 0)): { + "PU_ENB": (25, 27, "lutff_6/in_0"), + "WEAK_PU_ENB": (25, 27, "lutff_4/in_0"), + "PACKAGE_PIN": (19, 31, 0) + }, + ("IO_I3C", (25, 27, 1)): { + "PU_ENB": (25, 27, "lutff_7/in_0"), + "WEAK_PU_ENB": (25, 27, "lutff_5/in_0"), + "PACKAGE_PIN": (19, 31, 1) + } } } |