Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Support renesas ra sci i2c #86627

Merged
merged 4 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions boards/renesas/ek_ra8d1/ek_ra8d1-pinctrl.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@
};
};

sci4_default: sci4_default {
group1 {
/* sda scl */
psels = <RA_PSEL(RA_PSEL_SCI_4, 4, 15)>,<RA_PSEL(RA_PSEL_SCI_4, 4, 14)>;
drive-strength = "medium";
drive-open-drain;
};
};

spi1_default: spi1_default {
group1 {
/* MISO MOSI RSPCK SSL */
Expand Down
11 changes: 11 additions & 0 deletions boards/renesas/ek_ra8d1/ek_ra8d1.dts
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,17 @@
};
};

&sci4 {
pinctrl-0 = <&sci4_default>;
pinctrl-names = "default";

i2c4: i2c {
sda-output-delay = <300>;
noise-filter-clock-select = <1>;
bit-rate-modulation;
};
};

&trng {
status = "okay";
};
Expand Down
9 changes: 9 additions & 0 deletions boards/renesas/ek_ra8m1/ek_ra8m1-pinctrl.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@
};
};

sci1_default: sci1_default {
group1 {
/* sda scl */
psels = <RA_PSEL(RA_PSEL_SCI_1, 7, 7)>,<RA_PSEL(RA_PSEL_SCI_1, 7, 6)>;
drive-strength = "medium";
drive-open-drain;
};
};

sci2_default: sci2_default {
group1 {
/* tx */
Expand Down
11 changes: 11 additions & 0 deletions boards/renesas/ek_ra8m1/ek_ra8m1.dts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,17 @@
};
};

&sci1 {
pinctrl-0 = <&sci1_default>;
pinctrl-names = "default";

i2c1: i2c {
sda-output-delay = <300>;
noise-filter-clock-select = <1>;
bit-rate-modulation;
};
};

&sci2 {
pinctrl-0 = <&sci2_default>;
pinctrl-names = "default";
Expand Down
9 changes: 9 additions & 0 deletions boards/renesas/mck_ra8t1/mck_ra8t1-pinctrl.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@
};
};

sci9_default: sci9_default {
group1 {
/* sda scl*/
psels = <RA_PSEL(RA_PSEL_SCI_9, 10, 14)>,<RA_PSEL(RA_PSEL_SCI_9, 10, 15)>;
drive-strength = "medium";
drive-open-drain;
};
};

spi0_default: spi0_default {
group1 {
/* MISO MOSI RSPCK SSL*/
Expand Down
11 changes: 11 additions & 0 deletions boards/renesas/mck_ra8t1/mck_ra8t1.dts
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,17 @@
};
};

&sci9 {
pinctrl-0 = <&sci9_default>;
pinctrl-names = "default";

i2c9: i2c {
sda-output-delay = <300>;
noise-filter-clock-select = <1>;
bit-rate-modulation;
};
};

&trng {
status = "okay";
};
Expand Down
1 change: 1 addition & 0 deletions drivers/i2c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ zephyr_library_sources_ifdef(CONFIG_I2C_NXP_II2C i2c_nxp_ii2c.c)
zephyr_library_sources_ifdef(CONFIG_I2C_OMAP i2c_omap.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RCAR i2c_rcar.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RA_IIC i2c_renesas_ra_iic.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RA_SCI_B i2c_renesas_ra_sci_b.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RENESAS_RZ_RIIC i2c_renesas_rz_riic.c)
zephyr_library_sources_ifdef(CONFIG_I2C_RV32M1_LPI2C i2c_rv32m1_lpi2c.c)
zephyr_library_sources_ifdef(CONFIG_I2C_SAM0 i2c_sam0.c)
Expand Down
22 changes: 21 additions & 1 deletion drivers/i2c/Kconfig.renesas_ra
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Renesas RA Family

# Copyright (c) 2024 Renesas Electronics Corporation
# Copyright (c) 2024-2025 Renesas Electronics Corporation
# SPDX-License-Identifier: Apache-2.0

config I2C_RENESAS_RA_IIC
Expand All @@ -11,3 +11,23 @@ config I2C_RENESAS_RA_IIC
select PINCTRL
help
Enable Renesas RA I2C IIC Driver.

config I2C_RENESAS_RA_SCI_B
bool "Renesas RA SCI-B I2C"
default y
depends on DT_HAS_RENESAS_RA_I2C_SCI_B_ENABLED
select USE_RA_FSP_SCI_B_I2C
select PINCTRL
help
Enable Renesas RA SCI-B I2C Driver.

if I2C_RENESAS_RA_SCI_B

config I2C_RENESAS_RA_SCI_B_DTC
bool "DTC on Transmission and Reception"
default y
select USE_RA_FSP_DTC
help
Enable DTC on transmission and reception

endif
Loading
Loading