From: Can Guo <cang@codeaurora.org>
To: Kiwoong Kim <kwmad.kim@samsung.com>
Cc: linux-scsi@vger.kernel.org
Subject: Re: [PATCH v3 2/2] ufs: ufs-exynos: set dma_alignment to 4095
Date: Tue, 22 Dec 2020 13:06:14 +0800 [thread overview]
Message-ID: <614dd657ce4f235f556e6cf49e25bc04@codeaurora.org> (raw)
In-Reply-To: <000801d6d81c$7e9bc530$7bd34f90$@samsung.com>
On 2020-12-22 12:39, Kiwoong Kim wrote:
>> On 2020-12-22 11:34, Can Guo wrote:
>> > On 2020-12-22 11:17, Kiwoong Kim wrote:
>> >>> On 2020-12-22 10:21, Kiwoong Kim wrote:
>> >>> > Exynos requires one scatterlist entry for smaller than page size,
>> i.e.
>> >>> > 4KB. For the cases of dispatching commands with more than one
>> >>> > scatterlist entry and under 4KB size, Exynos behaves as follows:
>> >>> >
>> >>> > Given that a command to read something from device is dispatched
>> >>> > with two scatterlist entries that are named AAA and BBB. After
>> >>> > dispatching, host builds two PRDT entries and during transmission,
>> >>> > device sends just one DATA IN because device doesn't care on host
>> dma.
>> >>>
>> >>> If my understanding is correct, above is same to all hosts, only
>> >>> below part is Exynos's behavior. Please correct me if I am wrong.
>> >> You're correct.
>> >>
>> >>>
>> >>> > The host then tranfers
>> >>> > the whole data from start address of the area named AAA.
>> >>> > In consequebnce, the area that follows AAA would be corrupted.
>> >>>
>> >>> In consequence
>> >>>
>> >>> >
>> >>> > |<------------->|
>> >>> > +-------+------------ +-------+
>> >>> > + AAA + (corrupted) ... + BBB +
>> >>> > +-------+------------ +-------+
>> >>> >
>> >>>
>> >>> AFAIK, queue->dma_alignment is only used in the case of direct-io,
>> >>> i.e. in
>> >>> blk_rq_map_user/kern(), which are mainly used in IOCTL.
>> >>> If a request's buffer len and/or buffer start addr is not aligned
>> >>> with
>> >>> queue->dma_alignment, bio.c will make a bounce bio such that the
>> >>> request
>> >>> get a new buffer which starts on a new page. After the bounce bio is
>> >> ended,
>> >>> the data in the bound bio will be copied to the initial buffer.
>> >>>
>> >>> So in this fix, you are making sure the AAA and BBB are all mapped to
>> >>> one
>> >>> bounce bio and stay in one bi_vec, so when we do map_sg they come in
>> >>> one
>> >>> sglist, please correct me if I am wrong.
>> >>>
>> >>> If my understanding is correct, what is the real use case here -
>> >>> why/how
>> >>> user starts a request which can generate more than one sglists whose
>> >>> sizes
>> >>> are all under 4KB? I am just curious.
>> >>>
>> >>> Thanks,
>> >>>
>> >>> Can Guo.
>> >>
>> >> You nearly exactly got what I’m thinking.
>> >> And I think there could be various cases making those situations,
>> >> which are definitely up to user programs. That is the case using
>> >> different memory areas to contain something.
>> >>
>> >
>>
>> Hi Kiwoong,
>>
>> Sorry if I made you confused. I think I know your intention here now.
>> When bio.c makes the bounce bio, it allocates one new page and
>> add this page to the bounce bio. In this way, only one bi_vec is
>> needed and only one sglist entry shall be generated. Am I right?
>>
>> Thanks,
>>
>> Can Guo.
>
> Yes, that's it.
>
>
> Thanks.
> Kiwoong Kim
Other than the typo in commit msg, the change looks good to me. :)
Regards,
Can Guo.
>> >
>> >> Thanks.
>> >> Kiwoong Kim
>> >>>
>> >>> > Signed-off-by: Kiwoong Kim <kwmad.kim@samsung.com>
>> >>> > ---
>> >>> > drivers/scsi/ufs/ufs-exynos.c | 9 +++++++++
>> >>> > 1 file changed, 9 insertions(+)
>> >>> >
>> >>> > diff --git a/drivers/scsi/ufs/ufs-exynos.c
>> >>> > b/drivers/scsi/ufs/ufs-exynos.c index a8770ff..8635d9d 100644
>> >>> > --- a/drivers/scsi/ufs/ufs-exynos.c
>> >>> > +++ b/drivers/scsi/ufs/ufs-exynos.c
>> >>> > @@ -14,6 +14,7 @@
>> >>> > #include <linux/of_address.h>
>> >>> > #include <linux/phy/phy.h>
>> >>> > #include <linux/platform_device.h>
>> >>> > +#include <linux/blkdev.h>
>> >>> >
>> >>> > #include "ufshcd.h"
>> >>> > #include "ufshcd-pltfrm.h"
>> >>> > @@ -1193,6 +1194,13 @@ static int exynos_ufs_resume(struct ufs_hba
>> >>> > *hba, enum ufs_pm_op pm_op)
>> >>> > return 0;
>> >>> > }
>> >>> >
>> >>> > +static void exynos_ufs_slave_configure(struct scsi_device *sdev) {
>> >>> > + struct request_queue *q = sdev->request_queue;
>> >>> > +
>> >>> > + blk_queue_update_dma_alignment(q, PAGE_SIZE - 1); }
>> >>> > +
>> >>> > static struct ufs_hba_variant_ops ufs_hba_exynos_ops = {
>> >>> > .name = "exynos_ufs",
>> >>> > .init = exynos_ufs_init,
>> >>> > @@ -1204,6 +1212,7 @@ static struct ufs_hba_variant_ops
>> >>> > ufs_hba_exynos_ops = {
>> >>> > .hibern8_notify = exynos_ufs_hibern8_notify,
>> >>> > .suspend = exynos_ufs_suspend,
>> >>> > .resume = exynos_ufs_resume,
>> >>> > + .slave_configure = exynos_ufs_slave_configure,
>> >>> > };
>> >>> >
>> >>> > static int exynos_ufs_probe(struct platform_device *pdev)
prev parent reply other threads:[~2020-12-22 5:07 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20201222023237epcas2p4dff5928195198835ec96df9c911a01e5@epcas2p4.samsung.com>
2020-12-22 2:21 ` [PATCH v3 0/2] permit to set block parameters per vendor Kiwoong Kim
2020-12-22 2:21 ` [PATCH v3 1/2] ufs: add a vops to configure block parameter Kiwoong Kim
2020-12-22 2:34 ` Can Guo
2020-12-22 2:21 ` [PATCH v3 2/2] ufs: ufs-exynos: set dma_alignment to 4095 Kiwoong Kim
2020-12-22 3:07 ` Can Guo
2020-12-22 3:17 ` Kiwoong Kim
2020-12-22 3:34 ` Can Guo
2020-12-22 4:24 ` Can Guo
2020-12-22 4:39 ` Kiwoong Kim
2020-12-22 5:06 ` Can Guo [this message]
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=614dd657ce4f235f556e6cf49e25bc04@codeaurora.org \
--to=cang@codeaurora.org \
--cc=kwmad.kim@samsung.com \
--cc=linux-scsi@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox