devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/11] i2c: riic: Add support for Renesas RZ/G3S
@ 2024-07-11 11:51 Claudiu
  2024-07-11 11:51 ` [PATCH v3 01/11] i2c: riic: Use temporary variable for struct device Claudiu
                   ` (11 more replies)
  0 siblings, 12 replies; 32+ messages in thread
From: Claudiu @ 2024-07-11 11:51 UTC (permalink / raw)
  To: chris.brandt, andi.shyti, robh, krzk+dt, conor+dt, geert+renesas,
	magnus.damm, p.zabel, wsa+renesas
  Cc: linux-renesas-soc, linux-i2c, devicetree, linux-kernel,
	claudiu.beznea, Claudiu Beznea

From: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>

Hi,

Series adds I2C support for the Renesas RZ/G3S SoC.

Series is split as follows:
- patch 01-03/12   - add some cleanups on RIIC driver
- patch 04/12      - enable runtime autosuspend support on the RIIC driver
- patch 05/12      - add suspend to RAM support on the RIIC driver
- patch 06/12      - prepares for the addition of fast mode plus
- patch 07/12      - updates the I2C documentation for the RZ/G3S SoC
- patch 08/12      - add fast mode plus support on the RIIC driver
- patches 09-11/11 - device tree support

Thank you,
Claudiu Beznea

Changes in v3:
- dropped patch "clk: renesas: r9a08g045: Add clock, reset and power
  domain support for I2C" as it was already integrated
- addressed review comments

Changes in v2:
- change the i2c clock names to match the documentation
- update commit description for patch "i2c: riic: Use temporary
  variable for struct device"
- addressed review comments
- dropped renesas,riic-no-fast-mode-plus DT property and associated code

Claudiu Beznea (11):
  i2c: riic: Use temporary variable for struct device
  i2c: riic: Call pm_runtime_get_sync() when need to access registers
  i2c: riic: Use pm_runtime_resume_and_get()
  i2c: riic: Enable runtime PM autosuspend support
  i2c: riic: Add suspend/resume support
  i2c: riic: Define individual arrays to describe the register offsets
  dt-bindings: i2c: renesas,riic: Document the R9A08G045 support
  i2c: riic: Add support for fast mode plus
  arm64: dts: renesas: r9a08g045: Add I2C nodes
  arm64: dts: renesas: rzg3s-smarc: Enable i2c0 node
  arm64: dts: renesas: rzg3s-smarc-som: Enable i2c1 node

 .../devicetree/bindings/i2c/renesas,riic.yaml |   4 +
 arch/arm64/boot/dts/renesas/r9a08g045.dtsi    |  88 +++++++
 .../boot/dts/renesas/rzg3s-smarc-som.dtsi     |   5 +
 arch/arm64/boot/dts/renesas/rzg3s-smarc.dtsi  |   7 +
 drivers/i2c/busses/i2c-riic.c                 | 220 ++++++++++++------
 5 files changed, 255 insertions(+), 69 deletions(-)

-- 
2.39.2


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2024-08-09 13:39 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-11 11:51 [PATCH v3 00/11] i2c: riic: Add support for Renesas RZ/G3S Claudiu
2024-07-11 11:51 ` [PATCH v3 01/11] i2c: riic: Use temporary variable for struct device Claudiu
2024-08-08 14:59   ` Wolfram Sang
2024-07-11 11:51 ` [PATCH v3 02/11] i2c: riic: Call pm_runtime_get_sync() when need to access registers Claudiu
2024-08-08 15:00   ` Wolfram Sang
2024-07-11 11:51 ` [PATCH v3 03/11] i2c: riic: Use pm_runtime_resume_and_get() Claudiu
2024-08-08 15:03   ` Wolfram Sang
2024-07-11 11:52 ` [PATCH v3 04/11] i2c: riic: Enable runtime PM autosuspend support Claudiu
2024-07-12  7:15   ` Biju Das
2024-07-12  7:40     ` claudiu beznea
2024-07-12  7:45       ` Biju Das
2024-07-12  7:49         ` claudiu beznea
2024-07-12  7:53           ` Biju Das
2024-08-08 15:08   ` Wolfram Sang
2024-08-09  6:58     ` claudiu beznea
2024-07-11 11:52 ` [PATCH v3 05/11] i2c: riic: Add suspend/resume support Claudiu
2024-08-08 15:15   ` Wolfram Sang
2024-08-09  7:08     ` claudiu beznea
2024-08-09 13:35       ` Wolfram Sang
2024-07-11 11:52 ` [PATCH v3 06/11] i2c: riic: Define individual arrays to describe the register offsets Claudiu
2024-08-08 15:20   ` Wolfram Sang
2024-07-11 11:52 ` [PATCH v3 07/11] dt-bindings: i2c: renesas,riic: Document the R9A08G045 support Claudiu
2024-08-08 15:21   ` Wolfram Sang
2024-08-09  7:20     ` claudiu beznea
2024-08-09 13:39       ` Wolfram Sang
2024-07-11 11:52 ` [PATCH v3 08/11] i2c: riic: Add support for fast mode plus Claudiu
2024-08-08 15:25   ` Wolfram Sang
2024-08-09  7:24     ` claudiu beznea
2024-07-11 11:52 ` [PATCH v3 09/11] arm64: dts: renesas: r9a08g045: Add I2C nodes Claudiu
2024-07-11 11:52 ` [PATCH v3 10/11] arm64: dts: renesas: rzg3s-smarc: Enable i2c0 node Claudiu
2024-07-11 11:52 ` [PATCH v3 11/11] arm64: dts: renesas: rzg3s-smarc-som: Enable i2c1 node Claudiu
2024-08-08  8:38 ` [PATCH v3 00/11] i2c: riic: Add support for Renesas RZ/G3S Wolfram Sang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).