All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2] mmc: tmio: Pass full address to tmio_sd_addr_is_dmaable()
Date: Tue, 9 Oct 2018 16:55:06 +0200	[thread overview]
Message-ID: <494e0151-f2ee-ccdc-8e42-f198765fc1cf@gmail.com> (raw)
In-Reply-To: <CAK7LNASxrM2w_DpahZF6ox0kD+8zAjymhL=ROD5uGfUFDF4g3Q@mail.gmail.com>

On 10/09/2018 02:24 PM, Masahiro Yamada wrote:
> Hi Marek,

Hi,

> On Tue, Oct 9, 2018 at 8:26 PM Marek Vasut <marek.vasut@gmail.com> wrote:
>>
>> Pass the entire source data pointer to tmio_sd_addr_is_dmaable()
> 
> 
> This statement sounds like
> the current code is passing the pointer address only partially.
> Is it right?

With this change it is.

>> so we don't have to apply casts throughout the code.
> 
> I do not understand this either
> since I see a cast in your code too.

There is a cast, but it's isolated to this function.

> In the previous code, the caller casts src->address
> when it passes it to tmio_sd_addr_is_dmaable().
> 
> In the new code, 'src' is casted
> in tmio_sd_addr_is_dmaable().
> 
> To me, you just moved the location of casting.
> What is the difference (i.e. benefit)?

I moved the cast from the code into the function, which I think is cleaner.

> If you want to change this code, I am fine.
> But, I'd like to know the reason.
> 
> At least, I am so confused with your commit description.
> 
> 
> 
> 
> 
> 
>> Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
>> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
>> ---
>>  drivers/mmc/tmio-common.c | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/mmc/tmio-common.c b/drivers/mmc/tmio-common.c
>> index b311b80be8..6b21941991 100644
>> --- a/drivers/mmc/tmio-common.c
>> +++ b/drivers/mmc/tmio-common.c
>> @@ -372,8 +372,10 @@ static int tmio_sd_dma_xfer(struct udevice *dev, struct mmc_data *data)
>>  }
>>
>>  /* check if the address is DMA'able */
>> -static bool tmio_sd_addr_is_dmaable(unsigned long addr)
>> +static bool tmio_sd_addr_is_dmaable(const char *src)
>>  {
>> +       uintptr_t addr = (uintptr_t)src;
>> +
>>         if (!IS_ALIGNED(addr, TMIO_SD_DMA_MINALIGN))
>>                 return false;
>>
>> @@ -486,7 +488,7 @@ int tmio_sd_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
>>         if (data) {
>>                 /* use DMA if the HW supports it and the buffer is aligned */
>>                 if (priv->caps & TMIO_SD_CAP_DMA_INTERNAL &&
>> -                   tmio_sd_addr_is_dmaable((long)data->src))
>> +                   tmio_sd_addr_is_dmaable(data->src))
>>                         ret = tmio_sd_dma_xfer(dev, data);
>>                 else
>>                         ret = tmio_sd_pio_xfer(dev, data);
>> --
>> 2.18.0
>>
>> _______________________________________________
>> U-Boot mailing list
>> U-Boot at lists.denx.de
>> https://lists.denx.de/listinfo/u-boot
> 
> 
> 


-- 
Best regards,
Marek Vasut

  reply	other threads:[~2018-10-09 14:55 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-09 11:23 [U-Boot] [PATCH 1/2] mmc: tmio: Pass full address to tmio_sd_addr_is_dmaable() Marek Vasut
2018-10-09 11:23 ` [U-Boot] [PATCH 2/2] mmc: tmio: Limit DMA to 32bit on R-Car Gen3 Marek Vasut
2018-10-09 12:24 ` [U-Boot] [PATCH 1/2] mmc: tmio: Pass full address to tmio_sd_addr_is_dmaable() Masahiro Yamada
2018-10-09 14:55   ` Marek Vasut [this message]
2018-10-09 15:35     ` Masahiro Yamada
2018-10-09 16:17       ` Marek Vasut
2018-10-10  2:49         ` Masahiro Yamada
  -- strict thread matches above, loose matches on Subject: below --
2018-10-02 22:54 Marek Vasut
2018-10-03  2:17 ` Masahiro Yamada
2018-10-03  7:05   ` Marek Vasut

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=494e0151-f2ee-ccdc-8e42-f198765fc1cf@gmail.com \
    --to=marek.vasut@gmail.com \
    --cc=u-boot@lists.denx.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.