-
Notifications
You must be signed in to change notification settings - Fork 632
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf noup] drivers: pinctrl: Add SDP MSPI pin configuration
Configure SDP MSPI pins to switch their control to VPR core Signed-off-by: Jakub Zymelka <[email protected]>
- Loading branch information
1 parent
4ba4768
commit 681442a
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright (c) 2024, Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#ifndef NRFE_CONFIG_H__ | ||
#define NRFE_CONFIG_H__ | ||
|
||
#ifdef CONFIG_GPIO_NRFE | ||
#include <drivers/gpio/nrfe_gpio.h> | ||
#elif CONFIG_MSPI_NRFE | ||
#include <drivers/mspi/nrfe_mspi.h> | ||
#else | ||
#error "NRFE config header included, even though no SW-define IO device is enabled." | ||
#endif | ||
|
||
#ifndef NRFE_RESERVED_PPI_CHANNELS | ||
#define NRFE_RESERVED_PPI_CHANNELS 0 | ||
#endif | ||
|
||
#endif /* NRFE_CONFIG_H__ */ |