From: Nicolas Ferre <nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
To: ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org
Subject: Re: [PATCH 3/3] mci: at91: convert to dma_request_slave_channel_compat()
Date: Tue, 16 Apr 2013 12:06:25 +0200 [thread overview]
Message-ID: <516D22A1.6010508@atmel.com> (raw)
In-Reply-To: <1366028217-5037-4-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
On 04/15/2013 02:16 PM, ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org :
> From: Ludovic Desroches <ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
>
> Use generic DMA DT helper. Platforms booting with or without DT populated are
> both supported.
>
> Signed-off-by: Ludovic Desroches <ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
Acked-by: Nicolas Ferre <nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
> ---
> drivers/mmc/host/atmel-mci.c | 25 ++++++++++++-------------
> 1 file changed, 12 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c
> index 10f8b73..73d5d24 100644
> --- a/drivers/mmc/host/atmel-mci.c
> +++ b/drivers/mmc/host/atmel-mci.c
> @@ -2224,10 +2224,15 @@ static void __exit atmci_cleanup_slot(struct atmel_mci_slot *slot,
> mmc_free_host(slot->mmc);
> }
>
> -static bool atmci_filter(struct dma_chan *chan, void *slave)
> +static bool atmci_filter(struct dma_chan *chan, void *pdata)
> {
> - struct mci_dma_data *sl = slave;
> + struct mci_platform_data *sl_pdata = pdata;
> + struct mci_dma_data *sl;
>
> + if (!sl_pdata)
> + return false;
> +
> + sl = sl_pdata->dma_slave;
> if (sl && find_slave_dev(sl) == chan->device->dev) {
> chan->private = slave_data_ptr(sl);
> return true;
> @@ -2239,24 +2244,18 @@ static bool atmci_filter(struct dma_chan *chan, void *slave)
> static bool atmci_configure_dma(struct atmel_mci *host)
> {
> struct mci_platform_data *pdata;
> + dma_cap_mask_t mask;
>
> if (host == NULL)
> return false;
>
> pdata = host->pdev->dev.platform_data;
>
> - if (!pdata)
> - return false;
> + dma_cap_zero(mask);
> + dma_cap_set(DMA_SLAVE, mask);
>
> - if (pdata->dma_slave && find_slave_dev(pdata->dma_slave)) {
> - dma_cap_mask_t mask;
> -
> - /* Try to grab a DMA channel */
> - dma_cap_zero(mask);
> - dma_cap_set(DMA_SLAVE, mask);
> - host->dma.chan =
> - dma_request_channel(mask, atmci_filter, pdata->dma_slave);
> - }
> + host->dma.chan = dma_request_slave_channel_compat(mask, atmci_filter, pdata,
> + &host->pdev->dev, "rxtx");
> if (!host->dma.chan) {
> dev_warn(&host->pdev->dev, "no DMA channel available\n");
> return false;
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/3] mci: at91: convert to dma_request_slave_channel_compat()
Date: Tue, 16 Apr 2013 12:06:25 +0200 [thread overview]
Message-ID: <516D22A1.6010508@atmel.com> (raw)
In-Reply-To: <1366028217-5037-4-git-send-email-ludovic.desroches@atmel.com>
On 04/15/2013 02:16 PM, ludovic.desroches at atmel.com :
> From: Ludovic Desroches <ludovic.desroches@atmel.com>
>
> Use generic DMA DT helper. Platforms booting with or without DT populated are
> both supported.
>
> Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
> drivers/mmc/host/atmel-mci.c | 25 ++++++++++++-------------
> 1 file changed, 12 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c
> index 10f8b73..73d5d24 100644
> --- a/drivers/mmc/host/atmel-mci.c
> +++ b/drivers/mmc/host/atmel-mci.c
> @@ -2224,10 +2224,15 @@ static void __exit atmci_cleanup_slot(struct atmel_mci_slot *slot,
> mmc_free_host(slot->mmc);
> }
>
> -static bool atmci_filter(struct dma_chan *chan, void *slave)
> +static bool atmci_filter(struct dma_chan *chan, void *pdata)
> {
> - struct mci_dma_data *sl = slave;
> + struct mci_platform_data *sl_pdata = pdata;
> + struct mci_dma_data *sl;
>
> + if (!sl_pdata)
> + return false;
> +
> + sl = sl_pdata->dma_slave;
> if (sl && find_slave_dev(sl) == chan->device->dev) {
> chan->private = slave_data_ptr(sl);
> return true;
> @@ -2239,24 +2244,18 @@ static bool atmci_filter(struct dma_chan *chan, void *slave)
> static bool atmci_configure_dma(struct atmel_mci *host)
> {
> struct mci_platform_data *pdata;
> + dma_cap_mask_t mask;
>
> if (host == NULL)
> return false;
>
> pdata = host->pdev->dev.platform_data;
>
> - if (!pdata)
> - return false;
> + dma_cap_zero(mask);
> + dma_cap_set(DMA_SLAVE, mask);
>
> - if (pdata->dma_slave && find_slave_dev(pdata->dma_slave)) {
> - dma_cap_mask_t mask;
> -
> - /* Try to grab a DMA channel */
> - dma_cap_zero(mask);
> - dma_cap_set(DMA_SLAVE, mask);
> - host->dma.chan =
> - dma_request_channel(mask, atmci_filter, pdata->dma_slave);
> - }
> + host->dma.chan = dma_request_slave_channel_compat(mask, atmci_filter, pdata,
> + &host->pdev->dev, "rxtx");
> if (!host->dma.chan) {
> dev_warn(&host->pdev->dev, "no DMA channel available\n");
> return false;
>
--
Nicolas Ferre
next prev parent reply other threads:[~2013-04-16 10:06 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-15 12:16 [PATCH 0/3] ARM: at91: move to generic DMA device tree bindings ludovic.desroches
2013-04-15 12:16 ` ludovic.desroches at atmel.com
2013-04-15 12:16 ` [PATCH 1/3] at_hdmac: move to generic DMA binding ludovic.desroches
2013-04-15 12:16 ` ludovic.desroches at atmel.com
[not found] ` <1366028217-5037-2-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-16 10:03 ` Nicolas Ferre
2013-04-16 10:03 ` Nicolas Ferre
[not found] ` <1366028217-5037-1-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-15 12:16 ` [PATCH 2/3] i2c: at91: convert to dma_request_slave_channel_compat() ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-15 12:16 ` ludovic.desroches at atmel.com
[not found] ` <1366028217-5037-3-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-16 9:10 ` Wolfram Sang
2013-04-16 9:10 ` Wolfram Sang
2013-04-15 12:16 ` [PATCH 3/3] mci: " ludovic.desroches
2013-04-15 12:16 ` ludovic.desroches at atmel.com
[not found] ` <1366028217-5037-4-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-16 10:06 ` Nicolas Ferre [this message]
2013-04-16 10:06 ` Nicolas Ferre
2013-04-15 12:38 ` [PATCH 0/3] ARM: at91: move to generic DMA device tree bindings Jean-Christophe PLAGNIOL-VILLARD
2013-04-15 12:38 ` Jean-Christophe PLAGNIOL-VILLARD
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=516D22A1.6010508@atmel.com \
--to=nicolas.ferre-aife0yeh4naavxtiumwx3w@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org \
--cc=plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.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 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.