Skip to content

drivers: spi: spi_pico_pio: Implement DMA support for 4-wire operation #85807

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions drivers/spi/Kconfig.rpi_pico
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@
# SPDX-License-Identifier: Apache-2.0

config SPI_RPI_PICO_PIO
bool "Raspberry Pi PICO PIO SPI controller driver"
bool "Raspberry Pi Pico PIO SPI controller driver"
default y
depends on DT_HAS_RASPBERRYPI_PICO_SPI_PIO_ENABLED
select PICOSDK_USE_PIO
select PICOSDK_USE_CLAIM
select PINCTRL
help
Enable driving SPI via PIO on the PICO
Enable driving SPI via PIO on the Raspberry Pi Pico

if SPI_RPI_PICO_PIO

config SPI_RPI_PICO_PIO_DMA
bool "Raspberry Pi Pico PIO SPI DMA mode"
select DMA
help
Enables DMA support for Raspberry Pi Pico PIO SPI driver.
endif
Loading
Loading