From: Huang Shijie <b32955@freescale.com>
To: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: dedekind1@gmail.com, w.sang@pengutronix.de,
thierry.nolf.barco@gmail.com, linux-mtd@lists.infradead.org,
linux-arm-kernel@lists.infradead.org, LW@KARO-electronics.de
Subject: Re: [PATCH v7 1/3] MTD : add the common code for GPMI-NFC controller driver
Date: Thu, 30 Jun 2011 09:50:15 +0800 [thread overview]
Message-ID: <4E0BD657.3070400@freescale.com> (raw)
In-Reply-To: <20110629123803.GM21898@n2100.arm.linux.org.uk>
Hi Russell:
> On Wed, Jun 29, 2011 at 04:24:36PM +0800, Huang Shijie wrote:
>> + dma_addr_t destination_phys = ~0;
>> +
>> + if (virt_addr_valid(destination))
>> + destination_phys = dma_map_single(dev, destination,
>> + length, DMA_FROM_DEVICE);
>> +
>> + if (dma_mapping_error(dev, destination_phys)) {
> This is buggy. There is no guarantee that we'll keep using ~0 as the
> value for dma_mapping_error(). Please don't rely on this, but instead
> code this better to avoid having to play these games.
>
thanks a lot. I will change it in the next version.
>> +static int send_page_prepare(struct gpmi_nfc_data *this,
>> + const void *source, unsigned length,
>> + void *alt_virt, dma_addr_t alt_phys, unsigned alt_size,
>> + const void **use_virt, dma_addr_t *use_phys)
>> +{
>> + dma_addr_t source_phys = ~0;
>> + struct device *dev = this->dev;
>> +
>> + if (virt_addr_valid(source))
>> + source_phys = dma_map_single(dev,
>> + (void *)source, length, DMA_TO_DEVICE);
>> +
>> + if (dma_mapping_error(dev, source_phys)) {
> Ditto.
>
Best Regards
Huang Shijie
WARNING: multiple messages have this Message-ID (diff)
From: b32955@freescale.com (Huang Shijie)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 1/3] MTD : add the common code for GPMI-NFC controller driver
Date: Thu, 30 Jun 2011 09:50:15 +0800 [thread overview]
Message-ID: <4E0BD657.3070400@freescale.com> (raw)
In-Reply-To: <20110629123803.GM21898@n2100.arm.linux.org.uk>
Hi Russell:
> On Wed, Jun 29, 2011 at 04:24:36PM +0800, Huang Shijie wrote:
>> + dma_addr_t destination_phys = ~0;
>> +
>> + if (virt_addr_valid(destination))
>> + destination_phys = dma_map_single(dev, destination,
>> + length, DMA_FROM_DEVICE);
>> +
>> + if (dma_mapping_error(dev, destination_phys)) {
> This is buggy. There is no guarantee that we'll keep using ~0 as the
> value for dma_mapping_error(). Please don't rely on this, but instead
> code this better to avoid having to play these games.
>
thanks a lot. I will change it in the next version.
>> +static int send_page_prepare(struct gpmi_nfc_data *this,
>> + const void *source, unsigned length,
>> + void *alt_virt, dma_addr_t alt_phys, unsigned alt_size,
>> + const void **use_virt, dma_addr_t *use_phys)
>> +{
>> + dma_addr_t source_phys = ~0;
>> + struct device *dev = this->dev;
>> +
>> + if (virt_addr_valid(source))
>> + source_phys = dma_map_single(dev,
>> + (void *)source, length, DMA_TO_DEVICE);
>> +
>> + if (dma_mapping_error(dev, source_phys)) {
> Ditto.
>
Best Regards
Huang Shijie
next prev parent reply other threads:[~2011-06-30 1:50 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-29 8:24 [PATCH v7 0/3] add the GPMI controller driver for IMX23/IMX28 Huang Shijie
2011-06-29 8:24 ` Huang Shijie
2011-06-29 8:24 ` Huang Shijie
2011-06-29 8:24 ` Huang Shijie
2011-06-29 8:24 ` [PATCH v7 1/3] MTD : add the common code for GPMI-NFC controller driver Huang Shijie
2011-06-29 8:24 ` Huang Shijie
2011-06-29 10:06 ` Wolfram Sang
2011-06-29 10:06 ` Wolfram Sang
2011-06-29 10:33 ` Wolfram Sang
2011-06-29 10:33 ` Wolfram Sang
2011-06-29 10:46 ` Huang Shijie
2011-06-29 10:46 ` Huang Shijie
2011-06-29 12:29 ` Wolfram Sang
2011-06-29 12:29 ` Wolfram Sang
2011-06-29 12:42 ` Russell King - ARM Linux
2011-06-29 12:42 ` Russell King - ARM Linux
2011-06-29 12:49 ` Wolfram Sang
2011-06-29 12:49 ` Wolfram Sang
2011-06-29 14:00 ` Shawn Guo
2011-06-29 14:00 ` Shawn Guo
2011-06-29 14:15 ` Wolfram Sang
2011-06-29 14:15 ` Wolfram Sang
2011-06-29 14:37 ` Shawn Guo
2011-06-29 14:37 ` Shawn Guo
2011-06-30 4:46 ` Wolfram Sang
2011-06-30 4:46 ` Wolfram Sang
2011-06-30 5:28 ` Shawn Guo
2011-06-30 5:28 ` Shawn Guo
2011-06-30 8:06 ` [PATCH] dmaengine: mxs-dma: skip request_irq for NO_IRQ Shawn Guo
2011-06-30 8:06 ` Shawn Guo
2011-07-07 0:15 ` Shawn Guo
2011-07-07 0:15 ` Shawn Guo
2011-07-07 2:06 ` Vinod Koul
2011-07-07 2:06 ` Vinod Koul
2011-07-07 3:24 ` Shawn Guo
2011-07-07 3:24 ` Shawn Guo
2011-07-07 3:23 ` Huang Shijie
2011-07-07 3:23 ` Huang Shijie
2011-07-13 23:31 ` Koul, Vinod
2011-07-13 23:31 ` Koul, Vinod
2011-06-29 12:38 ` [PATCH v7 1/3] MTD : add the common code for GPMI-NFC controller driver Russell King - ARM Linux
2011-06-29 12:38 ` Russell King - ARM Linux
2011-06-30 1:50 ` Huang Shijie [this message]
2011-06-30 1:50 ` Huang Shijie
2011-06-30 10:27 ` Wolfram Sang
2011-06-30 10:27 ` Wolfram Sang
2011-06-30 17:04 ` Wolfram Sang
2011-06-30 17:04 ` Wolfram Sang
2011-07-01 5:41 ` Artem Bityutskiy
2011-07-01 5:41 ` Artem Bityutskiy
2011-07-01 6:47 ` Huang Shijie
2011-07-01 6:47 ` Huang Shijie
2011-06-29 8:24 ` [PATCH v7 2/3] MTD : add support for imx23 and imx28 Huang Shijie
2011-06-29 8:24 ` Huang Shijie
2011-06-29 8:24 ` [PATCH v7 3/3] MTD : add GPMI-NFC driver in the config and Makefile Huang Shijie
2011-06-29 8:24 ` Huang Shijie
2011-06-30 10:40 ` [PATCH v7 0/3] add the GPMI controller driver for IMX23/IMX28 Wolfram Sang
2011-06-30 10:40 ` Wolfram Sang
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=4E0BD657.3070400@freescale.com \
--to=b32955@freescale.com \
--cc=LW@KARO-electronics.de \
--cc=dedekind1@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux@arm.linux.org.uk \
--cc=thierry.nolf.barco@gmail.com \
--cc=w.sang@pengutronix.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.