* [PATCH RESEND v3 2/2] media: camif-core: Add check for clk_enable()
@ 2024-11-25 19:18 Jiasheng Jiang
2024-11-25 19:18 ` [PATCH RESEND v3 1/2] media: mipi-csis: " Jiasheng Jiang
2024-11-29 11:29 ` [PATCH RESEND v3 2/2] media: camif-core: " Krzysztof Kozlowski
0 siblings, 2 replies; 4+ messages in thread
From: Jiasheng Jiang @ 2024-11-25 19:18 UTC (permalink / raw)
To: krzk
Cc: sylvester.nawrocki, mchehab, dron0gus, tomasz.figa, alim.akhtar,
kyungmin.park, laurent.pinchart, linux-media, linux-arm-kernel,
linux-samsung-soc, linux-kernel, Jiasheng Jiang
Add check for the return value of clk_enable() to gurantee the success.
Fixes: babde1c243b2 ("[media] V4L: Add driver for S3C24XX/S3C64XX SoC series camera interface")
Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
---
Changelog:
v2 -> v3:
1. No change
v1 -> v2:
1. No change
---
.../media/platform/samsung/s3c-camif/camif-core.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/samsung/s3c-camif/camif-core.c b/drivers/media/platform/samsung/s3c-camif/camif-core.c
index de6e8f151849..221e3c447f36 100644
--- a/drivers/media/platform/samsung/s3c-camif/camif-core.c
+++ b/drivers/media/platform/samsung/s3c-camif/camif-core.c
@@ -527,10 +527,19 @@ static void s3c_camif_remove(struct platform_device *pdev)
static int s3c_camif_runtime_resume(struct device *dev)
{
struct camif_dev *camif = dev_get_drvdata(dev);
+ int ret;
+
+ ret = clk_enable(camif->clock[CLK_GATE]);
+ if (ret)
+ return ret;
- clk_enable(camif->clock[CLK_GATE]);
/* null op on s3c244x */
- clk_enable(camif->clock[CLK_CAM]);
+ ret = clk_enable(camif->clock[CLK_CAM]);
+ if (ret) {
+ clk_disable(camif->clock[CLK_GATE]);
+ return ret;
+ }
+
return 0;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH RESEND v3 1/2] media: mipi-csis: Add check for clk_enable()
2024-11-25 19:18 [PATCH RESEND v3 2/2] media: camif-core: Add check for clk_enable() Jiasheng Jiang
@ 2024-11-25 19:18 ` Jiasheng Jiang
2024-11-29 11:29 ` Krzysztof Kozlowski
2024-11-29 11:29 ` [PATCH RESEND v3 2/2] media: camif-core: " Krzysztof Kozlowski
1 sibling, 1 reply; 4+ messages in thread
From: Jiasheng Jiang @ 2024-11-25 19:18 UTC (permalink / raw)
To: krzk
Cc: sylvester.nawrocki, mchehab, dron0gus, tomasz.figa, alim.akhtar,
kyungmin.park, laurent.pinchart, linux-media, linux-arm-kernel,
linux-samsung-soc, linux-kernel, Jiasheng Jiang
Add check for the return value of clk_enable() to gurantee the success.
Fixes: b5f1220d587d ("[media] v4l: Add v4l2 subdev driver for S5P/EXYNOS4 MIPI-CSI receivers")
Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
---
Changelog:
v2 -> v3:
1. Correct alignment to match open parenthesis
v1 -> v2:
1. Power off the phy and disble regulators when clk_enable() fails.
2. Remove a redundant space before the label "unlock".
---
drivers/media/platform/samsung/exynos4-is/mipi-csis.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/drivers/media/platform/samsung/exynos4-is/mipi-csis.c b/drivers/media/platform/samsung/exynos4-is/mipi-csis.c
index 63f3eecdd7e6..452880b5350c 100644
--- a/drivers/media/platform/samsung/exynos4-is/mipi-csis.c
+++ b/drivers/media/platform/samsung/exynos4-is/mipi-csis.c
@@ -940,13 +940,19 @@ static int s5pcsis_pm_resume(struct device *dev, bool runtime)
state->supplies);
goto unlock;
}
- clk_enable(state->clock[CSIS_CLK_GATE]);
+ ret = clk_enable(state->clock[CSIS_CLK_GATE]);
+ if (ret) {
+ phy_power_off(state->phy);
+ regulator_bulk_disable(CSIS_NUM_SUPPLIES,
+ state->supplies);
+ goto unlock;
+ }
}
if (state->flags & ST_STREAMING)
s5pcsis_start_stream(state);
state->flags &= ~ST_SUSPENDED;
- unlock:
+unlock:
mutex_unlock(&state->lock);
return ret ? -EAGAIN : 0;
}
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH RESEND v3 1/2] media: mipi-csis: Add check for clk_enable()
2024-11-25 19:18 ` [PATCH RESEND v3 1/2] media: mipi-csis: " Jiasheng Jiang
@ 2024-11-29 11:29 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2024-11-29 11:29 UTC (permalink / raw)
To: Jiasheng Jiang
Cc: sylvester.nawrocki, mchehab, dron0gus, tomasz.figa, alim.akhtar,
kyungmin.park, laurent.pinchart, linux-media, linux-arm-kernel,
linux-samsung-soc, linux-kernel
On 25/11/2024 20:18, Jiasheng Jiang wrote:
> Add check for the return value of clk_enable() to gurantee the success.
>
> Fixes: b5f1220d587d ("[media] v4l: Add v4l2 subdev driver for S5P/EXYNOS4 MIPI-CSI receivers")
> Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
> ---
> Changelog:
>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH RESEND v3 2/2] media: camif-core: Add check for clk_enable()
2024-11-25 19:18 [PATCH RESEND v3 2/2] media: camif-core: Add check for clk_enable() Jiasheng Jiang
2024-11-25 19:18 ` [PATCH RESEND v3 1/2] media: mipi-csis: " Jiasheng Jiang
@ 2024-11-29 11:29 ` Krzysztof Kozlowski
1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2024-11-29 11:29 UTC (permalink / raw)
To: Jiasheng Jiang
Cc: sylvester.nawrocki, mchehab, dron0gus, tomasz.figa, alim.akhtar,
kyungmin.park, laurent.pinchart, linux-media, linux-arm-kernel,
linux-samsung-soc, linux-kernel
On 25/11/2024 20:18, Jiasheng Jiang wrote:
> Add check for the return value of clk_enable() to gurantee the success.
>
> Fixes: babde1c243b2 ("[media] V4L: Add driver for S3C24XX/S3C64XX SoC series camera interface")
> Signed-off-by: Jiasheng Jiang <jiashengjiangcool@gmail.com>
> ---
> Changelog:
>
> v2 -> v3:
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-11-29 11:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-25 19:18 [PATCH RESEND v3 2/2] media: camif-core: Add check for clk_enable() Jiasheng Jiang
2024-11-25 19:18 ` [PATCH RESEND v3 1/2] media: mipi-csis: " Jiasheng Jiang
2024-11-29 11:29 ` Krzysztof Kozlowski
2024-11-29 11:29 ` [PATCH RESEND v3 2/2] media: camif-core: " Krzysztof Kozlowski
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).