Skip to content
Closed
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
7 changes: 7 additions & 0 deletions drivers/spi/spi_dw.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ LOG_MODULE_REGISTER(spi_dw);
#include <nrfx.h>
#endif

#ifdef CONFIG_SOC_NRF54H20_GPD
#include <nrf/gpd.h>
#endif

static inline bool spi_dw_is_slave(struct spi_dw_data *spi)
{
return (IS_ENABLED(CONFIG_SPI_SLAVE) &&
Expand Down Expand Up @@ -553,6 +557,9 @@ int spi_dw_init(const struct device *dev)

#ifdef CONFIG_PINCTRL
pinctrl_apply_state(info->pcfg, PINCTRL_STATE_DEFAULT);
#ifdef CONFIG_SOC_NRF54H20_GPD
nrf_gpd_retain_pins_set(info->pcfg, false);
#endif
#endif

DEVICE_MMIO_MAP(dev, K_MEM_CACHE_NONE);
Expand Down
Loading