-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add SDP MSPI driver, dts and include files. Signed-off-by: Jakub Zymelka <[email protected]>
- Loading branch information
1 parent
29e35fd
commit bc19a69
Showing
9 changed files
with
749 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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,8 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
zephyr_library_amend() | ||
zephyr_library_sources_ifdef(CONFIG_MSPI_NRFE mspi_nrfe.c) |
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,8 @@ | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
|
||
if MSPI | ||
|
||
rsource "Kconfig.nrfe" | ||
|
||
endif # MSPI |
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,28 @@ | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
|
||
# | ||
# MSPI_NRFE Driver | ||
# | ||
menuconfig MSPI_NRFE | ||
bool "SDP MSPI driver" | ||
default y | ||
depends on DT_HAS_NORDIC_NRFE_MSPI_CONTROLLER_ENABLED | ||
select MBOX | ||
select IPC_SERVICE | ||
select IPC_SERVICE_BACKEND_ICMSG | ||
help | ||
Enable SDP MSPI driver. | ||
|
||
if MSPI_NRFE | ||
|
||
config MSPI_NRFE_INIT_PRIORITY | ||
int "SDP MSPI init priority" | ||
depends on MSPI_NRFE | ||
default MSPI_INIT_PRIORITY | ||
help | ||
SDP MSPI driver device initialization priority. | ||
SDP MSPI initialization depends on IPC initialization | ||
which is done at the same init level and has init priority equal to 46. | ||
|
||
endif # MSPI_NRFE |
Oops, something went wrong.