Skip to content

Commit 5d8138a

Browse files
Phuc Phamnhutnguyenkc
authored andcommitted
drivers: i2c: Add I2C support for Renesas RZ/A3UL, T2M, N2L, V2L
Add I2C driver support for Renesas RZ/A3UL, T2M, N2L, V2L Signed-off-by: Phuc Pham <[email protected]> Signed-off-by: Nhut Nguyen <[email protected]>
1 parent aef6691 commit 5d8138a

File tree

6 files changed

+232
-59
lines changed

6 files changed

+232
-59
lines changed

drivers/i2c/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ zephyr_library_sources_ifdef(CONFIG_I2C_RCAR i2c_rcar.c)
5757
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RA_IIC i2c_renesas_ra_iic.c)
5858
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RA_SCI_B i2c_renesas_ra_sci_b.c)
5959
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RX_RIIC i2c_renesas_rx_riic.c)
60+
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RZ_IIC i2c_renesas_rz_riic.c)
6061
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RZ_RIIC i2c_renesas_rz_riic.c)
6162
zephyr_library_sources_ifdef(CONFIG_I2C_RTS5912 i2c_realtek_rts5912.c)
6263
zephyr_library_sources_ifdef(CONFIG_I2C_RV32M1_LPI2C i2c_rv32m1_lpi2c.c)

drivers/i2c/Kconfig.renesas_rz

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
# Copyright (c) 2024 Renesas Electronics Corporation
1+
# Copyright (c) 2024-2025 Renesas Electronics Corporation
22
# SPDX-License-Identifier: Apache-2.0
33

44
config I2C_RENESAS_RZ_RIIC
55
bool "Renesas RZ I2C RIIC Master"
66
default y
77
depends on DT_HAS_RENESAS_RZ_RIIC_ENABLED
88
select USE_RZ_FSP_RIIC_MASTER
9+
select PINCTRL
910
help
1011
Enable Renesas RZ I2C RIIC Driver.
12+
13+
config I2C_RENESAS_RZ_IIC
14+
bool "Renesas RZ I2C IIC Master"
15+
default y
16+
depends on DT_HAS_RENESAS_RZ_IIC_ENABLED
17+
select USE_RZ_FSP_IIC_MASTER
18+
select PINCTRL
19+
help
20+
Enable Renesas RZ I2C IIC Driver.

0 commit comments

Comments
 (0)