All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements
@ 2022-08-15 16:37 Lad Prabhakar
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 1/4] mmc: renesas_sdhi: Get the reset handle early in the probe Lad Prabhakar
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Lad Prabhakar @ 2022-08-15 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das

Hi All,

This patch series backports SDHI/DMA/thermal driver fixes and
improvements.

Note: All the patches have been cherry picked from 6.0-rc1 kernel.

Cheers,
Prabhakar

Biju Das (2):
  thermal/drivers/rzg2l: Fix comments
  dmaengine: sh: rz-dmac: Add device_synchronize callback

Lad Prabhakar (2):
  mmc: renesas_sdhi: Get the reset handle early in the probe
  mmc: renesas_sdhi: Fix typo's

 drivers/dma/sh/rz-dmac.c                      | 17 +++++++++++++++++
 drivers/mmc/host/renesas_sdhi_core.c          |  8 ++++----
 drivers/mmc/host/renesas_sdhi_internal_dmac.c |  4 ++--
 drivers/thermal/rzg2l_thermal.c               | 18 +++++++++++-------
 4 files changed, 34 insertions(+), 13 deletions(-)

-- 
2.17.1



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

* [PATCH 5.10.y-cip 1/4] mmc: renesas_sdhi: Get the reset handle early in the probe
  2022-08-15 16:37 [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Lad Prabhakar
@ 2022-08-15 16:37 ` Lad Prabhakar
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 2/4] mmc: renesas_sdhi: Fix typo's Lad Prabhakar
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Lad Prabhakar @ 2022-08-15 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das

commit 0dac1e498f8130fdacfdd5289e3a7ac87ec1b9ad upstream.

In case of devm_reset_control_get_optional_exclusive() failure we returned
directly instead of jumping to the error path to roll back initialization.

This patch moves devm_reset_control_get_optional_exclusive() early in the
probe so that we have the reset handle prior to initialization of the
hardware.

Fixes: b4d86f37eacb7 ("mmc: renesas_sdhi: do hard reset if possible")
Reported-by: Pavel Machek <pavel@denx.de>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20220624181438.4355-2-prabhakar.mahadev-lad.rj@bp.renesas.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 drivers/mmc/host/renesas_sdhi_core.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/mmc/host/renesas_sdhi_core.c b/drivers/mmc/host/renesas_sdhi_core.c
index d83ce6620190..ca74fe8bfd9c 100644
--- a/drivers/mmc/host/renesas_sdhi_core.c
+++ b/drivers/mmc/host/renesas_sdhi_core.c
@@ -1007,6 +1007,10 @@ int renesas_sdhi_probe(struct platform_device *pdev,
 	if (IS_ERR(priv->clk_cd))
 		priv->clk_cd = NULL;
 
+	priv->rstc = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
+	if (IS_ERR(priv->rstc))
+		return PTR_ERR(priv->rstc);
+
 	priv->pinctrl = devm_pinctrl_get(&pdev->dev);
 	if (!IS_ERR(priv->pinctrl)) {
 		priv->pins_default = pinctrl_lookup_state(priv->pinctrl,
@@ -1095,10 +1099,6 @@ int renesas_sdhi_probe(struct platform_device *pdev,
 	if (ret)
 		goto efree;
 
-	priv->rstc = devm_reset_control_get_optional_exclusive(&pdev->dev, NULL);
-	if (IS_ERR(priv->rstc))
-		return PTR_ERR(priv->rstc);
-
 	ver = sd_ctrl_read16(host, CTL_VERSION);
 	/* GEN2_SDR104 is first known SDHI to use 32bit block count */
 	if (ver < SDHI_VER_GEN2_SDR104 && mmc_data->max_blk_count > U16_MAX)
-- 
2.17.1



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

* [PATCH 5.10.y-cip 2/4] mmc: renesas_sdhi: Fix typo's
  2022-08-15 16:37 [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Lad Prabhakar
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 1/4] mmc: renesas_sdhi: Get the reset handle early in the probe Lad Prabhakar
@ 2022-08-15 16:37 ` Lad Prabhakar
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 3/4] thermal/drivers/rzg2l: Fix comments Lad Prabhakar
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Lad Prabhakar @ 2022-08-15 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das

commit 088604048b24846d1e79da4c2a73a6f3ad43edb4 upstream.

Fix typo's,
* difference -> different
* alignment -> aligned

While at it updated the comment to make it clear that Renesas SDHI DMAC
needs buffers to be 128-byte aligned.

Reported-by: Pavel Machek <pavel@denx.de>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Link: https://lore.kernel.org/r/20220624181438.4355-3-prabhakar.mahadev-lad.rj@bp.renesas.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 drivers/mmc/host/renesas_sdhi_internal_dmac.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/host/renesas_sdhi_internal_dmac.c b/drivers/mmc/host/renesas_sdhi_internal_dmac.c
index ff97f15e317c..bc6040be657b 100644
--- a/drivers/mmc/host/renesas_sdhi_internal_dmac.c
+++ b/drivers/mmc/host/renesas_sdhi_internal_dmac.c
@@ -179,7 +179,7 @@ renesas_sdhi_internal_dmac_dataend_dma(struct tmio_mmc_host *host) {
 }
 
 /*
- * renesas_sdhi_internal_dmac_map() will be called with two difference
+ * renesas_sdhi_internal_dmac_map() will be called with two different
  * sg pointers in two mmc_data by .pre_req(), but tmio host can have a single
  * sg_ptr only. So, renesas_sdhi_internal_dmac_{un}map() should use a sg
  * pointer in a mmc_data instead of host->sg_ptr.
@@ -213,7 +213,7 @@ renesas_sdhi_internal_dmac_map(struct tmio_mmc_host *host,
 
 	data->host_cookie = cookie;
 
-	/* This DMAC cannot handle if buffer is not 128-bytes alignment */
+	/* This DMAC needs buffers to be 128-byte aligned */
 	if (!IS_ALIGNED(sg_dma_address(data->sg), 128)) {
 		renesas_sdhi_internal_dmac_unmap(host, data, cookie);
 		return false;
-- 
2.17.1



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

* [PATCH 5.10.y-cip 3/4] thermal/drivers/rzg2l: Fix comments
  2022-08-15 16:37 [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Lad Prabhakar
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 1/4] mmc: renesas_sdhi: Get the reset handle early in the probe Lad Prabhakar
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 2/4] mmc: renesas_sdhi: Fix typo's Lad Prabhakar
@ 2022-08-15 16:37 ` Lad Prabhakar
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 4/4] dmaengine: sh: rz-dmac: Add device_synchronize callback Lad Prabhakar
  2022-08-16 11:44 ` [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Pavel Machek
  4 siblings, 0 replies; 8+ messages in thread
From: Lad Prabhakar @ 2022-08-15 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das

From: Biju Das <biju.das.jz@bp.renesas.com>

commit 8f5a9371e69664cf4ad22a84204340323d5165cc upstream.

This patch replaces 'Capture times'->'Total number of ADC data samples' as
the former does not really explain much.

It also fixes the typo
 * caliberation->calibration

Lastly, as per the coding style /* should be on a separate line.
This patch fixes this issue.

Reported-by: Pavel Machek <pavel@denx.de>
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Link: https://lore.kernel.org/r/20220718121440.556408-1-biju.das.jz@bp.renesas.com
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 drivers/thermal/rzg2l_thermal.c | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/drivers/thermal/rzg2l_thermal.c b/drivers/thermal/rzg2l_thermal.c
index 3e0e2e4fe27d..792aa6e385c7 100644
--- a/drivers/thermal/rzg2l_thermal.c
+++ b/drivers/thermal/rzg2l_thermal.c
@@ -47,7 +47,7 @@
 
 #define TS_CODE_AVE_SCALE(x)	((x) * 1000000)
 #define MCELSIUS(temp)		((temp) * MILLIDEGREE_PER_DEGREE)
-#define TS_CODE_CAP_TIMES	8	/* Capture  times */
+#define TS_CODE_CAP_TIMES	8	/* Total number of ADC data samples */
 
 #define RZG2L_THERMAL_GRAN	500	/* milli Celsius */
 #define RZG2L_TSU_SS_TIMEOUT_US	1000
@@ -80,7 +80,8 @@ static int rzg2l_thermal_get_temp(void *devdata, int *temp)
 	int val, i;
 
 	for (i = 0; i < TS_CODE_CAP_TIMES ; i++) {
-		/* TSU repeats measurement at 20 microseconds intervals and
+		/*
+		 * TSU repeats measurement at 20 microseconds intervals and
 		 * automatically updates the results of measurement. As per
 		 * the HW manual for measuring temperature we need to read 8
 		 * values consecutively and then take the average.
@@ -92,16 +93,18 @@ static int rzg2l_thermal_get_temp(void *devdata, int *temp)
 
 	ts_code_ave = result / TS_CODE_CAP_TIMES;
 
-	/* Calculate actual sensor value by applying curvature correction formula
+	/*
+	 * Calculate actual sensor value by applying curvature correction formula
 	 * dsensor = ts_code_ave / (1 + ts_code_ave * 0.000013). Here we are doing
 	 * integer calculation by scaling all the values by 1000000.
 	 */
 	dsensor = TS_CODE_AVE_SCALE(ts_code_ave) /
 		(TS_CODE_AVE_SCALE(1) + (ts_code_ave * CURVATURE_CORRECTION_CONST));
 
-	/* The temperature Tj is calculated by the formula
+	/*
+	 * The temperature Tj is calculated by the formula
 	 * Tj = (dsensor − calib1) * 165/ (calib0 − calib1) − 40
-	 * where calib0 and calib1 are the caliberation values.
+	 * where calib0 and calib1 are the calibration values.
 	 */
 	val = ((dsensor - priv->calib1) * (MCELSIUS(165) /
 		(priv->calib0 - priv->calib1))) - MCELSIUS(40);
@@ -122,7 +125,8 @@ static int rzg2l_thermal_init(struct rzg2l_thermal_priv *priv)
 	rzg2l_thermal_write(priv, TSU_SM, TSU_SM_NORMAL_MODE);
 	rzg2l_thermal_write(priv, TSU_ST, 0);
 
-	/* Before setting the START bit, TSU should be in normal operating
+	/*
+	 * Before setting the START bit, TSU should be in normal operating
 	 * mode. As per the HW manual, it will take 60 µs to place the TSU
 	 * into normal operating mode.
 	 */
@@ -217,7 +221,7 @@ static int rzg2l_thermal_probe(struct platform_device *pdev)
 	if (ret)
 		goto err;
 
-	dev_dbg(dev, "TSU probed with %s caliberation values",
+	dev_dbg(dev, "TSU probed with %s calibration values",
 		rzg2l_thermal_read(priv, OTPTSUTRIM_REG(0)) ?  "hw" : "sw");
 
 	return 0;
-- 
2.17.1



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

* [PATCH 5.10.y-cip 4/4] dmaengine: sh: rz-dmac: Add device_synchronize callback
  2022-08-15 16:37 [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Lad Prabhakar
                   ` (2 preceding siblings ...)
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 3/4] thermal/drivers/rzg2l: Fix comments Lad Prabhakar
@ 2022-08-15 16:37 ` Lad Prabhakar
  2022-08-16 11:44 ` [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Pavel Machek
  4 siblings, 0 replies; 8+ messages in thread
From: Lad Prabhakar @ 2022-08-15 16:37 UTC (permalink / raw)
  To: cip-dev, Nobuhiro Iwamatsu, Pavel Machek; +Cc: Biju Das

From: Biju Das <biju.das.jz@bp.renesas.com>

commit 7d3a3aaaa9cc8ec53e9ef4f3e1711827107f76c5 upstream.

Some on-chip peripheral modules(for eg:- rspi) on RZ/G2L SoC
use the same signal for both interrupt and DMA transfer requests.
The signal works as a DMA transfer request signal by setting
DMARS, and subsequent interrupt requests to the interrupt controller
are masked.

We can re-enable the interrupt by clearing the DMARS.

This patch adds device_synchronize callback for clearing
DMARS and thereby allowing DMA consumers to switch to
interrupt mode.

Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20220722084430.969333-1-biju.das.jz@bp.renesas.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
 drivers/dma/sh/rz-dmac.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/drivers/dma/sh/rz-dmac.c b/drivers/dma/sh/rz-dmac.c
index ee2872e7d64c..476847a4916b 100644
--- a/drivers/dma/sh/rz-dmac.c
+++ b/drivers/dma/sh/rz-dmac.c
@@ -12,6 +12,7 @@
 #include <linux/dma-mapping.h>
 #include <linux/dmaengine.h>
 #include <linux/interrupt.h>
+#include <linux/iopoll.h>
 #include <linux/list.h>
 #include <linux/module.h>
 #include <linux/of.h>
@@ -630,6 +631,21 @@ static void rz_dmac_virt_desc_free(struct virt_dma_desc *vd)
 	 */
 }
 
+static void rz_dmac_device_synchronize(struct dma_chan *chan)
+{
+	struct rz_dmac_chan *channel = to_rz_dmac_chan(chan);
+	struct rz_dmac *dmac = to_rz_dmac(chan->device);
+	u32 chstat;
+	int ret;
+
+	ret = read_poll_timeout(rz_dmac_ch_readl, chstat, !(chstat & CHSTAT_EN),
+				100, 100000, false, channel, CHSTAT, 1);
+	if (ret < 0)
+		dev_warn(dmac->dev, "DMA Timeout");
+
+	rz_dmac_set_dmars_register(dmac, channel->index, 0);
+}
+
 /*
  * -----------------------------------------------------------------------------
  * IRQ handling
@@ -909,6 +925,7 @@ static int rz_dmac_probe(struct platform_device *pdev)
 	engine->device_config = rz_dmac_config;
 	engine->device_terminate_all = rz_dmac_terminate_all;
 	engine->device_issue_pending = rz_dmac_issue_pending;
+	engine->device_synchronize = rz_dmac_device_synchronize;
 
 	engine->copy_align = DMAENGINE_ALIGN_1_BYTE;
 	dma_set_max_seg_size(engine->dev, U32_MAX);
-- 
2.17.1



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

* Re: [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements
  2022-08-15 16:37 [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Lad Prabhakar
                   ` (3 preceding siblings ...)
  2022-08-15 16:37 ` [PATCH 5.10.y-cip 4/4] dmaengine: sh: rz-dmac: Add device_synchronize callback Lad Prabhakar
@ 2022-08-16 11:44 ` Pavel Machek
  2022-08-16 11:51   ` Prabhakar Mahadev Lad
  4 siblings, 1 reply; 8+ messages in thread
From: Pavel Machek @ 2022-08-16 11:44 UTC (permalink / raw)
  To: Lad Prabhakar; +Cc: cip-dev, Nobuhiro Iwamatsu, Pavel Machek, Biju Das

[-- Attachment #1: Type: text/plain, Size: 536 bytes --]

Hi!

> This patch series backports SDHI/DMA/thermal driver fixes and
> improvements.
> 
> Note: All the patches have been cherry picked from 6.0-rc1 kernel.

Series looks okay to me. I wonder if we have code using
rz_dmac_device_synchronize from 4/4 in the tree?

I can apply the patches if they pass testing and if there are no other
comments.

Best regards,
								Pavel
-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

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

* RE: [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements
  2022-08-16 11:44 ` [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Pavel Machek
@ 2022-08-16 11:51   ` Prabhakar Mahadev Lad
  2022-08-17  7:27     ` nobuhiro1.iwamatsu
  0 siblings, 1 reply; 8+ messages in thread
From: Prabhakar Mahadev Lad @ 2022-08-16 11:51 UTC (permalink / raw)
  To: Pavel Machek; +Cc: cip-dev, Nobuhiro Iwamatsu, Biju Das

Hi Pavel,

Thank you for the review.

> -----Original Message-----
> From: Pavel Machek <pavel@denx.de>
> Sent: 16 August 2022 12:44
> To: Prabhakar Mahadev Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>
> Cc: cip-dev@lists.cip-project.org; Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>; Pavel Machek
> <pavel@denx.de>; Biju Das <biju.das.jz@bp.renesas.com>
> Subject: Re: [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements
> 
> Hi!
> 
> > This patch series backports SDHI/DMA/thermal driver fixes and
> > improvements.
> >
> > Note: All the patches have been cherry picked from 6.0-rc1 kernel.
> 
> Series looks okay to me. I wonder if we have code using rz_dmac_device_synchronize from 4/4 in the
> tree?
> 
RSPI uses rz_dmac_device_synchronize from 4/4, I am waiting on the patch to be available in -rc release. I have tested it locally hence posted it  earlier.

> I can apply the patches if they pass testing and if there are no other comments.
> 
Thanks.

Cheers,
Prabhakar

> Best regards,
> 								Pavel
> --
> DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany


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

* RE: [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements
  2022-08-16 11:51   ` Prabhakar Mahadev Lad
@ 2022-08-17  7:27     ` nobuhiro1.iwamatsu
  0 siblings, 0 replies; 8+ messages in thread
From: nobuhiro1.iwamatsu @ 2022-08-17  7:27 UTC (permalink / raw)
  To: prabhakar.mahadev-lad.rj, pavel; +Cc: cip-dev, biju.das.jz

Hi all,

> -----Original Message-----
> From: Prabhakar Mahadev Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>
> Sent: Tuesday, August 16, 2022 8:51 PM
> To: Pavel Machek <pavel@denx.de>
> Cc: cip-dev@lists.cip-project.org; iwamatsu nobuhiro(岩松 信洋 □SWC◯A
> CT) <nobuhiro1.iwamatsu@toshiba.co.jp>; Biju Das
> <biju.das.jz@bp.renesas.com>
> Subject: RE: [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes
> and improvements
> 
> Hi Pavel,
> 
> Thank you for the review.
> 
> > -----Original Message-----
> > From: Pavel Machek <pavel@denx.de>
> > Sent: 16 August 2022 12:44
> > To: Prabhakar Mahadev Lad <prabhakar.mahadev-lad.rj@bp.renesas.com>
> > Cc: cip-dev@lists.cip-project.org; Nobuhiro Iwamatsu
> > <nobuhiro1.iwamatsu@toshiba.co.jp>; Pavel Machek <pavel@denx.de>;
> Biju
> > Das <biju.das.jz@bp.renesas.com>
> > Subject: Re: [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver
> > fixes and improvements
> >
> > Hi!
> >
> > > This patch series backports SDHI/DMA/thermal driver fixes and
> > > improvements.
> > >
> > > Note: All the patches have been cherry picked from 6.0-rc1 kernel.
> >
> > Series looks okay to me. I wonder if we have code using
> > rz_dmac_device_synchronize from 4/4 in the tree?
> >
> RSPI uses rz_dmac_device_synchronize from 4/4, I am waiting on the patch to
> be available in -rc release. I have tested it locally hence posted it  earlier.
> 
> > I can apply the patches if they pass testing and if there are no other
> comments.
> >
> Thanks.

I also reviewed this patch series, looks good to me.
I applied to linux-5.10.y-cip tree.

Best regards,
  Nobuhiro



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

end of thread, other threads:[~2022-08-17  7:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-15 16:37 [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Lad Prabhakar
2022-08-15 16:37 ` [PATCH 5.10.y-cip 1/4] mmc: renesas_sdhi: Get the reset handle early in the probe Lad Prabhakar
2022-08-15 16:37 ` [PATCH 5.10.y-cip 2/4] mmc: renesas_sdhi: Fix typo's Lad Prabhakar
2022-08-15 16:37 ` [PATCH 5.10.y-cip 3/4] thermal/drivers/rzg2l: Fix comments Lad Prabhakar
2022-08-15 16:37 ` [PATCH 5.10.y-cip 4/4] dmaengine: sh: rz-dmac: Add device_synchronize callback Lad Prabhakar
2022-08-16 11:44 ` [PATCH 5.10.y-cip 0/4] Renesas SDHI/DMA/thermal driver fixes and improvements Pavel Machek
2022-08-16 11:51   ` Prabhakar Mahadev Lad
2022-08-17  7:27     ` nobuhiro1.iwamatsu

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.