From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] of: amba: use of_dma_configure for AMBA devices
Date: Wed, 17 Sep 2014 18:03:38 +0100 [thread overview]
Message-ID: <20140917170338.GC18532@arm.com> (raw)
In-Reply-To: <90bd1ff3c93b827c12e1b3dc9ad3f227632d0f6e.1410954967.git.robin.murphy@arm.com>
On Wed, Sep 17, 2014 at 12:56:07PM +0100, Robin Murphy wrote:
> Commit 591c1e ("of: configure the platform device dma parameters)
> introduced a common mechanism to configure DMA from DT properties.
> AMBA devices created from DT can take advantage of this, too.
>
> Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Acked-by: Will Deacon <will.deacon@arm.com>
It would be great if the arm-soc guys can pick this up.
Will
> ---
> drivers/of/platform.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/of/platform.c b/drivers/of/platform.c
> index 0197725..3b64d0b 100644
> --- a/drivers/of/platform.c
> +++ b/drivers/of/platform.c
> @@ -160,11 +160,10 @@ EXPORT_SYMBOL(of_device_alloc);
> * can use Platform bus notifier and handle BUS_NOTIFY_ADD_DEVICE event
> * to fix up DMA configuration.
> */
> -static void of_dma_configure(struct platform_device *pdev)
> +static void of_dma_configure(struct device *dev)
> {
> u64 dma_addr, paddr, size;
> int ret;
> - struct device *dev = &pdev->dev;
>
> /*
> * Set default dma-mask to 32 bit. Drivers are expected to setup
> @@ -229,7 +228,7 @@ static struct platform_device *of_platform_device_create_pdata(
> if (!dev)
> goto err_clear_flag;
>
> - of_dma_configure(dev);
> + of_dma_configure(&dev->dev);
> dev->dev.bus = &platform_bus_type;
> dev->dev.platform_data = platform_data;
>
> @@ -291,7 +290,6 @@ static struct amba_device *of_amba_device_create(struct device_node *node,
> }
>
> /* setup generic device info */
> - dev->dev.coherent_dma_mask = ~0;
> dev->dev.of_node = of_node_get(node);
> dev->dev.parent = parent;
> dev->dev.platform_data = platform_data;
> @@ -299,6 +297,7 @@ static struct amba_device *of_amba_device_create(struct device_node *node,
> dev_set_name(&dev->dev, "%s", bus_id);
> else
> of_device_make_bus_id(&dev->dev);
> + of_dma_configure(&dev->dev);
>
> /* Allow the HW Peripheral ID to be overridden */
> prop = of_get_property(node, "arm,primecell-periphid", NULL);
> --
> 1.9.1
>
WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will.deacon@arm.com>
To: Robin Murphy <Robin.Murphy@arm.com>
Cc: "devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux@arm.linux.org.uk" <linux@arm.linux.org.uk>,
arm@kernel.org, Catalin Marinas <Catalin.Marinas@arm.com>,
"robh+dt@kernel.org" <robh+dt@kernel.org>,
"grant.likely@linaro.org" <grant.likely@linaro.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] of: amba: use of_dma_configure for AMBA devices
Date: Wed, 17 Sep 2014 18:03:38 +0100 [thread overview]
Message-ID: <20140917170338.GC18532@arm.com> (raw)
In-Reply-To: <90bd1ff3c93b827c12e1b3dc9ad3f227632d0f6e.1410954967.git.robin.murphy@arm.com>
On Wed, Sep 17, 2014 at 12:56:07PM +0100, Robin Murphy wrote:
> Commit 591c1e ("of: configure the platform device dma parameters)
> introduced a common mechanism to configure DMA from DT properties.
> AMBA devices created from DT can take advantage of this, too.
>
> Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Acked-by: Will Deacon <will.deacon@arm.com>
It would be great if the arm-soc guys can pick this up.
Will
> ---
> drivers/of/platform.c | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/of/platform.c b/drivers/of/platform.c
> index 0197725..3b64d0b 100644
> --- a/drivers/of/platform.c
> +++ b/drivers/of/platform.c
> @@ -160,11 +160,10 @@ EXPORT_SYMBOL(of_device_alloc);
> * can use Platform bus notifier and handle BUS_NOTIFY_ADD_DEVICE event
> * to fix up DMA configuration.
> */
> -static void of_dma_configure(struct platform_device *pdev)
> +static void of_dma_configure(struct device *dev)
> {
> u64 dma_addr, paddr, size;
> int ret;
> - struct device *dev = &pdev->dev;
>
> /*
> * Set default dma-mask to 32 bit. Drivers are expected to setup
> @@ -229,7 +228,7 @@ static struct platform_device *of_platform_device_create_pdata(
> if (!dev)
> goto err_clear_flag;
>
> - of_dma_configure(dev);
> + of_dma_configure(&dev->dev);
> dev->dev.bus = &platform_bus_type;
> dev->dev.platform_data = platform_data;
>
> @@ -291,7 +290,6 @@ static struct amba_device *of_amba_device_create(struct device_node *node,
> }
>
> /* setup generic device info */
> - dev->dev.coherent_dma_mask = ~0;
> dev->dev.of_node = of_node_get(node);
> dev->dev.parent = parent;
> dev->dev.platform_data = platform_data;
> @@ -299,6 +297,7 @@ static struct amba_device *of_amba_device_create(struct device_node *node,
> dev_set_name(&dev->dev, "%s", bus_id);
> else
> of_device_make_bus_id(&dev->dev);
> + of_dma_configure(&dev->dev);
>
> /* Allow the HW Peripheral ID to be overridden */
> prop = of_get_property(node, "arm,primecell-periphid", NULL);
> --
> 1.9.1
>
next prev parent reply other threads:[~2014-09-17 17:03 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-17 11:56 [PATCH] of: amba: use of_dma_configure for AMBA devices Robin Murphy
2014-09-17 11:56 ` Robin Murphy
2014-09-17 14:43 ` Catalin Marinas
2014-09-17 14:43 ` Catalin Marinas
2014-09-17 17:03 ` Will Deacon [this message]
2014-09-17 17:03 ` Will Deacon
2014-09-17 17:47 ` Rob Herring
2014-09-17 17:47 ` Rob Herring
2014-09-17 18:05 ` Will Deacon
2014-09-17 18:05 ` Will Deacon
2014-09-18 11:35 ` Robin Murphy
2014-09-18 11:35 ` Robin Murphy
2014-09-18 12:55 ` Catalin Marinas
2014-09-18 12:55 ` Catalin Marinas
2014-09-22 10:55 ` Catalin Marinas
2014-09-22 10:55 ` Catalin Marinas
2014-09-25 22:36 ` Arnd Bergmann
2014-09-25 22:36 ` Arnd Bergmann
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=20140917170338.GC18532@arm.com \
--to=will.deacon@arm.com \
--cc=linux-arm-kernel@lists.infradead.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.