Skip to content

Commit 08ffc97

Browse files
Hieu Nguyenjhedberg
authored andcommitted
samples: drivers: spi: Add SPI support for Renesas RZ/V2L, A3UL
Add SPI sample support for Renesas RZ/V2L-SMARC, RZ/A3UL-SMARC Signed-off-by: Hieu Nguyen <[email protected]> Signed-off-by: Nhut Nguyen <[email protected]>
1 parent 03779aa commit 08ffc97

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_GPIO=y
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
spibb0: &spi0 {
7+
cs-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
8+
status = "okay";
9+
};
10+
11+
&gpio0 {
12+
status = "okay";
13+
};
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CONFIG_GPIO=y
2+
CONFIG_SPI_RENESAS_RZ_RSPI_DMAC=n
3+
CONFIG_NO_OPTIMIZATIONS=y
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* Copyright (c) 2025 Renesas Electronics Corporation
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
spibb0: &spi1 {
7+
cs-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
8+
status = "okay";
9+
};
10+
11+
&gpio0 {
12+
status = "okay";
13+
};

0 commit comments

Comments
 (0)