From: "Sricharan" <sricharan@codeaurora.org>
To: 'Wolfram Sang' <wsa@the-dreams.de>
Cc: linux-arm-msm@vger.kernel.org, ntelkar@codeaurora.org,
agross@codeaurora.org, linux-kernel@vger.kernel.org,
nkaje@codeaurora.org, absahu@codeaurora.org,
linux-i2c@vger.kernel.org, galak@codeaurora.org,
andy.gross@linaro.org, linux-arm-kernel@lists.infradead.org
Subject: RE: [PATCH V3 1/2] i2c: qup: Fix broken dma when CONFIG_DEBUG_SG is enabled
Date: Fri, 27 May 2016 03:31:13 +0530 [thread overview]
Message-ID: <002201d1b79a$22862bc0$67928340$@codeaurora.org> (raw)
In-Reply-To: <20160526184805.GC1614@katana>
Hi,
>> sg_set_buf expects that the buf parameter passed in should be from
>> lowmem and a valid pageframe. This is not true for pages from
>> dma_alloc_coherent which can be carveouts, hence the check fails.
>
>OK, given you mean dma_pool_alloc here, the check fails for the
>pageframe because of the pool? Is my understanding correct?
>
Yes right. Since those are carveouts, there is no valid pageframe,
so the check fails.
>> Change allocation of sg buffers from dma_coherent memory to kzalloc
>> to fix the issue.
>
>But why can you drop the coherency?
>
The coherency is not dropped here. dma_map/unmap used
makes the buffer coherent before passing it to
dmaengine. Previously it was not required.
I can add this in description if its not clear.
>> @@ -1268,6 +1260,8 @@ static int qup_i2c_xfer_v2(struct i2c_adapter *adap,
>> }
>> }
>>
>> + idx = 0;
>> +
>
>This looks like an unrelated change.
Ha, wrong. This should have been in a separate patch. This was to fix a
initialization issue in dma mode. Sorry, should not have been here, will
move it to out.
Regards,
Sricharan
WARNING: multiple messages have this Message-ID (diff)
From: sricharan@codeaurora.org (Sricharan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V3 1/2] i2c: qup: Fix broken dma when CONFIG_DEBUG_SG is enabled
Date: Fri, 27 May 2016 03:31:13 +0530 [thread overview]
Message-ID: <002201d1b79a$22862bc0$67928340$@codeaurora.org> (raw)
In-Reply-To: <20160526184805.GC1614@katana>
Hi,
>> sg_set_buf expects that the buf parameter passed in should be from
>> lowmem and a valid pageframe. This is not true for pages from
>> dma_alloc_coherent which can be carveouts, hence the check fails.
>
>OK, given you mean dma_pool_alloc here, the check fails for the
>pageframe because of the pool? Is my understanding correct?
>
Yes right. Since those are carveouts, there is no valid pageframe,
so the check fails.
>> Change allocation of sg buffers from dma_coherent memory to kzalloc
>> to fix the issue.
>
>But why can you drop the coherency?
>
The coherency is not dropped here. dma_map/unmap used
makes the buffer coherent before passing it to
dmaengine. Previously it was not required.
I can add this in description if its not clear.
>> @@ -1268,6 +1260,8 @@ static int qup_i2c_xfer_v2(struct i2c_adapter *adap,
>> }
>> }
>>
>> + idx = 0;
>> +
>
>This looks like an unrelated change.
Ha, wrong. This should have been in a separate patch. This was to fix a
initialization issue in dma mode. Sorry, should not have been here, will
move it to out.
Regards,
Sricharan
WARNING: multiple messages have this Message-ID (diff)
From: "Sricharan" <sricharan@codeaurora.org>
To: "'Wolfram Sang'" <wsa@the-dreams.de>
Cc: <linux-arm-msm@vger.kernel.org>, <ntelkar@codeaurora.org>,
<agross@codeaurora.org>, <linux-kernel@vger.kernel.org>,
<nkaje@codeaurora.org>, <absahu@codeaurora.org>,
<linux-i2c@vger.kernel.org>, <galak@codeaurora.org>,
<andy.gross@linaro.org>, <linux-arm-kernel@lists.infradead.org>
Subject: RE: [PATCH V3 1/2] i2c: qup: Fix broken dma when CONFIG_DEBUG_SG is enabled
Date: Fri, 27 May 2016 03:31:13 +0530 [thread overview]
Message-ID: <002201d1b79a$22862bc0$67928340$@codeaurora.org> (raw)
In-Reply-To: <20160526184805.GC1614@katana>
Hi,
>> sg_set_buf expects that the buf parameter passed in should be from
>> lowmem and a valid pageframe. This is not true for pages from
>> dma_alloc_coherent which can be carveouts, hence the check fails.
>
>OK, given you mean dma_pool_alloc here, the check fails for the
>pageframe because of the pool? Is my understanding correct?
>
Yes right. Since those are carveouts, there is no valid pageframe,
so the check fails.
>> Change allocation of sg buffers from dma_coherent memory to kzalloc
>> to fix the issue.
>
>But why can you drop the coherency?
>
The coherency is not dropped here. dma_map/unmap used
makes the buffer coherent before passing it to
dmaengine. Previously it was not required.
I can add this in description if its not clear.
>> @@ -1268,6 +1260,8 @@ static int qup_i2c_xfer_v2(struct i2c_adapter *adap,
>> }
>> }
>>
>> + idx = 0;
>> +
>
>This looks like an unrelated change.
Ha, wrong. This should have been in a separate patch. This was to fix a
initialization issue in dma mode. Sorry, should not have been here, will
move it to out.
Regards,
Sricharan
next prev parent reply other threads:[~2016-05-26 22:01 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-25 8:16 [PATCH V3 0/2] i2c: qup: Some misc fixes Sricharan R
2016-05-25 8:16 ` Sricharan R
2016-05-25 8:16 ` [PATCH V3 1/2] i2c: qup: Fix broken dma when CONFIG_DEBUG_SG is enabled Sricharan R
2016-05-25 8:16 ` Sricharan R
2016-05-26 18:48 ` Wolfram Sang
2016-05-26 18:48 ` Wolfram Sang
2016-05-26 22:01 ` Sricharan [this message]
2016-05-26 22:01 ` Sricharan
2016-05-26 22:01 ` Sricharan
2016-06-09 20:46 ` Wolfram Sang
2016-06-09 20:46 ` Wolfram Sang
2016-05-25 8:16 ` [PATCH V3 2/2] i2c: qup: Fix error handling Sricharan R
2016-05-25 8:16 ` Sricharan R
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='002201d1b79a$22862bc0$67928340$@codeaurora.org' \
--to=sricharan@codeaurora.org \
--cc=absahu@codeaurora.org \
--cc=agross@codeaurora.org \
--cc=andy.gross@linaro.org \
--cc=galak@codeaurora.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nkaje@codeaurora.org \
--cc=ntelkar@codeaurora.org \
--cc=wsa@the-dreams.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.