Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: io: add multibit/bus variants of SDR and DDR #2105

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

maass-hamburg
Copy link
Contributor

add bus variants of SDR and DDR, which
support more than one pin.

add bus variants of SDR and DDR, which
support more than one pin.

Signed-off-by: Fin Maaß <[email protected]>
fix in OUTPUT

Signed-off-by: Fin Maaß <[email protected]>
implement bus variants of SDR/DDR IO for
efinix.

Signed-off-by: Fin Maaß <[email protected]>
@enjoy-digital
Copy link
Owner

Thanks @maass-hamburg for the different PRs! Would you mind explaining the use-cases in the PR to be able to review the PR having the use-cases in mind?

@maass-hamburg
Copy link
Contributor Author

@enjoy-digital
for example in the sdr phy in litespi this:

            for i in range(len(pads.dq)):
                self.specials += SDRTristate(
                    io = pads.dq[i],
                    o  = dq_o[i],
                    oe = dq_oe[i],
                    i  = dq_i[i],
                )

could be replaced with:

            self.specials += SDRTristateBus(
                    io = pads.dq,
                    o  = dq_o,
                    oe = dq_oe,
                    i  = dq_i,
                )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants