forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: spi: Initial version of the Infineon CAT1 SPI driver
Initial version of Infineon CAT1 SPI Driver supporting synchronous and asynchronous data transfer API Signed-off-by: Sreeram Tatapudi <[email protected]>
- Loading branch information
1 parent
5b12b6a
commit fd04f8c
Showing
9 changed files
with
482 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,4 @@ supported: | |
- uart | ||
- i2c | ||
- watchdog | ||
- spi |
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,12 @@ | ||
# Infineon CAT1 SPI configuration options | ||
|
||
# Copyright (c) 2022 Cypress Semiconductor Corporation. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config SPI_INFINEON_CAT1 | ||
bool "Infineon CAT1 SPI driver" | ||
default y | ||
depends on DT_HAS_INFINEON_CAT1_SPI_ENABLED | ||
select USE_INFINEON_SPI | ||
help | ||
This option enables the SPI driver for Infineon CAT1 family. |
Oops, something went wrong.