* [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource
@ 2023-09-07 9:28 Bibek Kumar Patro
2023-09-08 10:22 ` Pavan Kondeti
2023-09-09 6:03 ` Manivannan Sadhasivam
0 siblings, 2 replies; 5+ messages in thread
From: Bibek Kumar Patro @ 2023-09-07 9:28 UTC (permalink / raw)
To: mani, miquel.raynal, richard, vigneshr
Cc: linux-mtd, linux-arm-msm, linux-kernel, kernel, quic_charante,
quic_kaushalk, Bibek Kumar Patro
While unmapping the nand resource in case of err_core_clk
the dev node being passed is res_start instead of nand->dma_base
(where the iova returned from map operation is stored) causing
failure in unmap operation. Hence modifying the unmap operation
to pass the nand->base_dma instead of res_start.
Signed-off-by: Bibek Kumar Patro <quic_bibekkum@quicinc.com>
---
drivers/mtd/nand/raw/qcom_nandc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c
index f583022755a2..e085a0f588eb 100644
--- a/drivers/mtd/nand/raw/qcom_nandc.c
+++ b/drivers/mtd/nand/raw/qcom_nandc.c
@@ -3322,7 +3322,7 @@ static int qcom_nandc_probe(struct platform_device *pdev)
err_aon_clk:
clk_disable_unprepare(nandc->core_clk);
err_core_clk:
- dma_unmap_resource(dev, res->start, resource_size(res),
+ dma_unmap_resource(dev, nandc->base_dma, resource_size(res),
DMA_BIDIRECTIONAL, 0);
dev_err(&pdev->dev, "DEBUG: probe failed for nandc module\n");
return ret;
--
2.17.1
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource
2023-09-07 9:28 [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource Bibek Kumar Patro
@ 2023-09-08 10:22 ` Pavan Kondeti
2023-09-11 13:37 ` Bibek Kumar Patro
2023-09-09 6:03 ` Manivannan Sadhasivam
1 sibling, 1 reply; 5+ messages in thread
From: Pavan Kondeti @ 2023-09-08 10:22 UTC (permalink / raw)
To: Bibek Kumar Patro
Cc: mani, miquel.raynal, richard, vigneshr, linux-mtd, linux-arm-msm,
linux-kernel, kernel, quic_charante, quic_kaushalk
On Thu, Sep 07, 2023 at 02:58:54PM +0530, Bibek Kumar Patro wrote:
> While unmapping the nand resource in case of err_core_clk
> the dev node being passed is res_start instead of nand->dma_base
It is not not dev not but addr argument.
> (where the iova returned from map operation is stored) causing
> failure in unmap operation. Hence modifying the unmap operation
> to pass the nand->base_dma instead of res_start.
>
Pls simplify this commit description. I think, it was a simple copy/paste
mistake. I would write
"Fix addr argument to dma_unmap_resource() in the error path of probe.
The addr argument should be dma address not physical address."
> Signed-off-by: Bibek Kumar Patro <quic_bibekkum@quicinc.com>
> ---
> drivers/mtd/nand/raw/qcom_nandc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c
> index f583022755a2..e085a0f588eb 100644
> --- a/drivers/mtd/nand/raw/qcom_nandc.c
> +++ b/drivers/mtd/nand/raw/qcom_nandc.c
> @@ -3322,7 +3322,7 @@ static int qcom_nandc_probe(struct platform_device *pdev)
> err_aon_clk:
> clk_disable_unprepare(nandc->core_clk);
> err_core_clk:
> - dma_unmap_resource(dev, res->start, resource_size(res),
> + dma_unmap_resource(dev, nandc->base_dma, resource_size(res),
> DMA_BIDIRECTIONAL, 0);
> dev_err(&pdev->dev, "DEBUG: probe failed for nandc module\n");
> return ret;
Since you are fixing a bug introduced by a previous commit, you should
add Fixes tag like below. Refer to Documentation [1].
Fixes: 7330fc505af4 ("mtd: rawnand: qcom: stop using phys_to_dma()")
[1] https://docs.kernel.org/process/submitting-patches.html#using-reported-by-tested-by-reviewed-by-suggested-by-and-fixes
Thanks,
Pavan
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource
2023-09-07 9:28 [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource Bibek Kumar Patro
2023-09-08 10:22 ` Pavan Kondeti
@ 2023-09-09 6:03 ` Manivannan Sadhasivam
2023-09-11 12:46 ` Bibek Kumar Patro
1 sibling, 1 reply; 5+ messages in thread
From: Manivannan Sadhasivam @ 2023-09-09 6:03 UTC (permalink / raw)
To: Bibek Kumar Patro
Cc: miquel.raynal, richard, vigneshr, linux-mtd, linux-arm-msm,
linux-kernel, kernel, quic_charante, quic_kaushalk
On Thu, Sep 07, 2023 at 02:58:54PM +0530, Bibek Kumar Patro wrote:
> While unmapping the nand resource in case of err_core_clk
> the dev node being passed is res_start instead of nand->dma_base
> (where the iova returned from map operation is stored) causing
> failure in unmap operation. Hence modifying the unmap operation
> to pass the nand->base_dma instead of res_start.
>
> Signed-off-by: Bibek Kumar Patro <quic_bibekkum@quicinc.com>
> ---
> drivers/mtd/nand/raw/qcom_nandc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c
> index f583022755a2..e085a0f588eb 100644
> --- a/drivers/mtd/nand/raw/qcom_nandc.c
> +++ b/drivers/mtd/nand/raw/qcom_nandc.c
> @@ -3322,7 +3322,7 @@ static int qcom_nandc_probe(struct platform_device *pdev)
> err_aon_clk:
> clk_disable_unprepare(nandc->core_clk);
> err_core_clk:
> - dma_unmap_resource(dev, res->start, resource_size(res),
> + dma_unmap_resource(dev, nandc->base_dma, resource_size(res),
> DMA_BIDIRECTIONAL, 0);
> dev_err(&pdev->dev, "DEBUG: probe failed for nandc module\n");
This error indicates that you are sending the patch against downstream tree.
That's not appropriate. Please send your patches against mainline/mtd-next
instead and also validate properly.
- Mani
> return ret;
> --
> 2.17.1
>
--
மணிவண்ணன் சதாசிவம்
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource
2023-09-09 6:03 ` Manivannan Sadhasivam
@ 2023-09-11 12:46 ` Bibek Kumar Patro
0 siblings, 0 replies; 5+ messages in thread
From: Bibek Kumar Patro @ 2023-09-11 12:46 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: miquel.raynal, richard, vigneshr, linux-mtd, linux-arm-msm,
linux-kernel, kernel, quic_charante, quic_kaushalk
On 9/9/2023 11:33 AM, Manivannan Sadhasivam wrote:
> On Thu, Sep 07, 2023 at 02:58:54PM +0530, Bibek Kumar Patro wrote:
>> While unmapping the nand resource in case of err_core_clk
>> the dev node being passed is res_start instead of nand->dma_base
>> (where the iova returned from map operation is stored) causing
>> failure in unmap operation. Hence modifying the unmap operation
>> to pass the nand->base_dma instead of res_start.
>>
>> Signed-off-by: Bibek Kumar Patro <quic_bibekkum@quicinc.com>
>> ---
>> drivers/mtd/nand/raw/qcom_nandc.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c
>> index f583022755a2..e085a0f588eb 100644
>> --- a/drivers/mtd/nand/raw/qcom_nandc.c
>> +++ b/drivers/mtd/nand/raw/qcom_nandc.c
>> @@ -3322,7 +3322,7 @@ static int qcom_nandc_probe(struct platform_device *pdev)
>> err_aon_clk:
>> clk_disable_unprepare(nandc->core_clk);
>> err_core_clk:
>> - dma_unmap_resource(dev, res->start, resource_size(res),
>> + dma_unmap_resource(dev, nandc->base_dma, resource_size(res),
>> DMA_BIDIRECTIONAL, 0);
>> dev_err(&pdev->dev, "DEBUG: probe failed for nandc module\n");
>
> This error indicates that you are sending the patch against downstream tree.
> That's not appropriate. Please send your patches against mainline/mtd-next
> instead and also validate properly.
>
> - Mani
This patch is created against upstream tree only,
These debug prints got added from a conflicting patch
created for debugging.
apologies for this mistake. Will revise this and send
a new patch set.
regards,
Bibek
>
>> return ret;
>> --
>> 2.17.1
>>
>
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource
2023-09-08 10:22 ` Pavan Kondeti
@ 2023-09-11 13:37 ` Bibek Kumar Patro
0 siblings, 0 replies; 5+ messages in thread
From: Bibek Kumar Patro @ 2023-09-11 13:37 UTC (permalink / raw)
To: Pavan Kondeti
Cc: mani, miquel.raynal, richard, vigneshr, linux-mtd, linux-arm-msm,
linux-kernel, kernel, quic_charante, quic_kaushalk
On 9/8/2023 3:52 PM, Pavan Kondeti wrote:
> On Thu, Sep 07, 2023 at 02:58:54PM +0530, Bibek Kumar Patro wrote:
>> While unmapping the nand resource in case of err_core_clk
>> the dev node being passed is res_start instead of nand->dma_base
>
> It is not not dev not but addr argument.
>
>> (where the iova returned from map operation is stored) causing
>> failure in unmap operation. Hence modifying the unmap operation
>> to pass the nand->base_dma instead of res_start.
>>
>
> Pls simplify this commit description. I think, it was a simple copy/paste
> mistake. I would write
>
> "Fix addr argument to dma_unmap_resource() in the error path of probe.
> The addr argument should be dma address not physical address."
>
Thanks for this suggestion Pavan, this looks simplified and easier to
understand the bug. Incorporated this in next revision.
>> Signed-off-by: Bibek Kumar Patro <quic_bibekkum@quicinc.com>
>> ---
>> drivers/mtd/nand/raw/qcom_nandc.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/mtd/nand/raw/qcom_nandc.c b/drivers/mtd/nand/raw/qcom_nandc.c
>> index f583022755a2..e085a0f588eb 100644
>> --- a/drivers/mtd/nand/raw/qcom_nandc.c
>> +++ b/drivers/mtd/nand/raw/qcom_nandc.c
>> @@ -3322,7 +3322,7 @@ static int qcom_nandc_probe(struct platform_device *pdev)
>> err_aon_clk:
>> clk_disable_unprepare(nandc->core_clk);
>> err_core_clk:
>> - dma_unmap_resource(dev, res->start, resource_size(res),
>> + dma_unmap_resource(dev, nandc->base_dma, resource_size(res),
>> DMA_BIDIRECTIONAL, 0);
>> dev_err(&pdev->dev, "DEBUG: probe failed for nandc module\n");
>> return ret;
>
> Since you are fixing a bug introduced by a previous commit, you should
> add Fixes tag like below. Refer to Documentation [1].
>
> Fixes: 7330fc505af4 ("mtd: rawnand: qcom: stop using phys_to_dma()")
>
> [1] https://docs.kernel.org/process/submitting-patches.html#using-reported-by-tested-by-reviewed-by-suggested-by-and-fixes
Thanks very much for the inputs, addressed this in next revision.
Thanks & regards,
Bibek
>
> Thanks,
> Pavan
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-11 13:37 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-07 9:28 [PATCH] mtd: nand: qcom: Fix the node for nand unmap resource Bibek Kumar Patro
2023-09-08 10:22 ` Pavan Kondeti
2023-09-11 13:37 ` Bibek Kumar Patro
2023-09-09 6:03 ` Manivannan Sadhasivam
2023-09-11 12:46 ` Bibek Kumar Patro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox