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

SPI: Generalize to multi-lane MOSI/MISO #2635

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

Commits on Apr 30, 2024

  1. Configuration menu
    Copy the full SHA
    7428dff View commit details
    Browse the repository at this point in the history
  2. SPI: Generalize to multi-lane MISO/MISO

    It is fairly common for single SPI bus to consist of a set of parallel
    MISO/MOSI lanes (c.f. QSPI FLASH). For instance:
    
     * many multi-channel ADCs allow each converter to clock out over its
       own MISO lane to reduce the clockrate needed to achieve the designed
       conversion rate.
    
     * similarly, QSPI FLASH relies upon four bidirectional outputs to
       increase data rate.
    
    Here we extend Clash.Cores.SPI to facilitate this use-case by
    introducing `spiMaster'` and `spiSlave'`, which allow arbitrary
    MISO/MOSI lane widths.
    bgamari committed Apr 30, 2024
    Configuration menu
    Copy the full SHA
    c8e8826 View commit details
    Browse the repository at this point in the history