All of lore.kernel.org
 help / color / mirror / Atom feed
From: <nobuhiro1.iwamatsu@toshiba.co.jp>
To: <biju.das.jz@bp.renesas.com>, <cip-dev@lists.cip-project.org>,
	<pavel@denx.de>
Cc: <chris.paterson2@renesas.com>, <fabrizio.castro.jz@renesas.com>
Subject: RE: [PATCH 5.10.y-cip v2 00/10] Add RZ/V2M I2C support
Date: Fri, 26 May 2023 05:47:49 +0000	[thread overview]
Message-ID: <TYWPR01MB9420A2C36904A2A95575D48892479@TYWPR01MB9420.jpnprd01.prod.outlook.com> (raw)
In-Reply-To: <20230524124937.160355-1-biju.das.jz@bp.renesas.com>

Hi,

> -----Original Message-----
> From: Biju Das <biju.das.jz@bp.renesas.com>
> Sent: Wednesday, May 24, 2023 9:49 PM
> To: cip-dev@lists.cip-project.org; iwamatsu nobuhiro(岩松 信洋 ○DITC□
> DIT○OST) <nobuhiro1.iwamatsu@toshiba.co.jp>; Pavel Machek
> <pavel@denx.de>
> Cc: Chris Paterson <chris.paterson2@renesas.com>; Biju Das
> <biju.das.jz@bp.renesas.com>; Fabrizio Castro
> <fabrizio.castro.jz@renesas.com>
> Subject: [PATCH 5.10.y-cip v2 00/10] Add RZ/V2M I2C support
> 
> This patch series aims to add I2C support for RZ/V2M EVK platform
> 
> All these patches are cherry-picked from the mainline.
> 
> v1->v2:
>  * Dropped patch#2 and patch#3 and replaced
>    SYSTEM_SLEEP_PM_OPS->SET_NOIRQ_SYSTEM_SLEEP_PM_OPS
>    and pm_sleep_ptr->DEV_PM_OPS.
> 
> Chris Paterson (1):
>   dt-bindings: i2c: renesas,rzv2m: Change maintainer to Fabrizio Castro
> 
> Fabrizio Castro (2):
>   dt-bindings: i2c: renesas,rzv2m: Fix SoC specific string
>   arm64: dts: renesas: r9a09g011: Fix I2C SoC specific strings
> 
> Geert Uytterhoeven (1):
>   arm64: defconfig: Enable additional support for Renesas platforms
> 
> Ioana Ciornei (1):
>   driver core: add a helper to setup both the of_node and fwnode of a
>     device
> 
> Phil Edworthy (5):
>   clk: renesas: r9a09g011: Add IIC clock and reset entries
>   dt-bindings: i2c: Document RZ/V2M I2C controller
>   i2c: Add Renesas RZ/V2M controller
>   arm64: dts: renesas: r9a09g011: Add i2c nodes
>   arm64: dts: renesas: rzv2m evk: Enable i2c
> 
>  .../bindings/i2c/renesas,rzv2m.yaml           |  80 +++
>  .../boot/dts/renesas/r9a09g011-v2mevk2.dts    |  27 +
>  arch/arm64/boot/dts/renesas/r9a09g011.dtsi    |  28 +
>  arch/arm64/configs/defconfig                  |   1 +
>  drivers/base/core.c                           |   7 +
>  drivers/clk/renesas/r9a09g011-cpg.c           |   4 +
>  drivers/i2c/busses/Kconfig                    |  10 +
>  drivers/i2c/busses/Makefile                   |   1 +
>  drivers/i2c/busses/i2c-rzv2m.c                | 538
> ++++++++++++++++++
>  include/linux/device.h                        |   1 +
>  10 files changed, 697 insertions(+)
>  create mode 100644
> Documentation/devicetree/bindings/i2c/renesas,rzv2m.yaml
>  create mode 100644 drivers/i2c/busses/i2c-rzv2m.c
> 

I reviewed this series, LGTM.
I can apply, if we do not get any issue.
  https://gitlab.com/cip-project/cip-kernel/linux-cip/-/commit/090289427e8b2be9dac126c4d1b760b100f2c6b8

Reviewed-by: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>

Best regards,
  Nobuhiro



  parent reply	other threads:[~2023-05-26  5:48 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-24 12:49 [PATCH 5.10.y-cip v2 00/10] Add RZ/V2M I2C support Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 01/10] driver core: add a helper to setup both the of_node and fwnode of a device Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 02/10] clk: renesas: r9a09g011: Add IIC clock and reset entries Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 03/10] dt-bindings: i2c: Document RZ/V2M I2C controller Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 04/10] dt-bindings: i2c: renesas,rzv2m: Fix SoC specific string Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 05/10] dt-bindings: i2c: renesas,rzv2m: Change maintainer to Fabrizio Castro Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 06/10] i2c: Add Renesas RZ/V2M controller Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 07/10] arm64: dts: renesas: r9a09g011: Add i2c nodes Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 08/10] arm64: dts: renesas: r9a09g011: Fix I2C SoC specific strings Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 09/10] arm64: dts: renesas: rzv2m evk: Enable i2c Biju Das
2023-05-24 12:49 ` [PATCH 5.10.y-cip v2 10/10] arm64: defconfig: Enable additional support for Renesas platforms Biju Das
2023-05-26  5:47 ` nobuhiro1.iwamatsu [this message]
2023-05-27  7:39   ` [PATCH 5.10.y-cip v2 00/10] Add RZ/V2M I2C support Pavel Machek
2023-05-28 22:23     ` [cip-dev] " nobuhiro1.iwamatsu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=TYWPR01MB9420A2C36904A2A95575D48892479@TYWPR01MB9420.jpnprd01.prod.outlook.com \
    --to=nobuhiro1.iwamatsu@toshiba.co.jp \
    --cc=biju.das.jz@bp.renesas.com \
    --cc=chris.paterson2@renesas.com \
    --cc=cip-dev@lists.cip-project.org \
    --cc=fabrizio.castro.jz@renesas.com \
    --cc=pavel@denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.