Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1355480 > unrolled thread
| Started by | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| First post | 2016-03-11 01:00 +0100 |
| Last post | 2016-03-14 15:20 +0100 |
| Articles | 15 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH v4 0/7] mtd: nand: Fix support for NAND DMA prefetch Franklin S Cooper Jr <fcooper@ti.com> - 2016-03-11 01:00 +0100
[PATCH v4 3/7] ARM: dts: am437x: Fix GPMC dma properties Franklin S Cooper Jr <fcooper@ti.com> - 2016-03-11 01:00 +0100
Re: [PATCH v4 3/7] ARM: dts: am437x: Fix GPMC dma properties Roger Quadros <rogerq@ti.com> - 2016-03-11 15:00 +0100
Re: [PATCH v4 3/7] ARM: dts: am437x: Fix GPMC dma properties Peter Ujfalusi <peter.ujfalusi@ti.com> - 2016-03-11 15:10 +0100
[PATCH v4 2/7] ARM: dts: am33xx: Fix GPMC dma properties Franklin S Cooper Jr <fcooper@ti.com> - 2016-03-11 01:00 +0100
Re: [PATCH v4 2/7] ARM: dts: am33xx: Fix GPMC dma properties Roger Quadros <rogerq@ti.com> - 2016-03-11 15:00 +0100
Re: [PATCH v4 2/7] ARM: dts: am33xx: Fix GPMC dma properties Peter Ujfalusi <peter.ujfalusi@ti.com> - 2016-03-11 15:10 +0100
[PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev Franklin S Cooper Jr <fcooper@ti.com> - 2016-03-11 01:00 +0100
Re: [PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev Roger Quadros <rogerq@ti.com> - 2016-03-11 15:00 +0100
Re: [PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev "Franklin S Cooper Jr." <fcooper@ti.com> - 2016-03-11 16:50 +0100
Re: [PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev Roger Quadros <rogerq@ti.com> - 2016-03-14 10:20 +0100
[PATCH v4 4/7] mtd: nand: omap2: Support parsing dma channel information from DT Franklin S Cooper Jr <fcooper@ti.com> - 2016-03-11 01:00 +0100
[PATCH v4 5/7] mtd: nand: omap2: Start dma request before enabling prefetch Franklin S Cooper Jr <fcooper@ti.com> - 2016-03-11 01:00 +0100
Re: [PATCH v4 0/7] mtd: nand: Fix support for NAND DMA prefetch Roger Quadros <rogerq@ti.com> - 2016-03-11 15:10 +0100
Re: [PATCH v4 0/7] mtd: nand: Fix support for NAND DMA prefetch "Franklin S Cooper Jr." <fcooper@ti.com> - 2016-03-14 15:20 +0100
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2016-03-11 01:00 +0100 |
| Subject | [PATCH v4 0/7] mtd: nand: Fix support for NAND DMA prefetch |
| Message-ID | <rbiEN-5UZ-7@gated-at.bofh.it> |
NAND DMA prefetch has been broken for awhile and seems to have only worked for SDMA based devices This patchset fixes DMA prefetch to work on both EDMA and SDMA devices Test on: am335x gp evm am437x gp evm am37x gp evm This rev is pretty much the same as v2 which was blocked due to dependencies to Roger's update GPMC/NAND rework. This updated rev removes this dependency. Also it fixes an issue that was introduced when the eDMA driver was recently updated. Links to rev 3 patchset: https://patchwork.ozlabs.org/patch/595631/ https://patchwork.ozlabs.org/patch/595626/ https://patchwork.ozlabs.org/patch/595628/ https://patchwork.ozlabs.org/patch/595630/ https://patchwork.ozlabs.org/patch/595627/ https://patchwork.ozlabs.org/patch/595629/ Links to rev 2 patchset: https://patchwork.kernel.org/patch/7408691/ https://patchwork.kernel.org/patch/7408681/ https://patchwork.kernel.org/patch/7408661/ https://patchwork.kernel.org/patch/7408641/ https://patchwork.kernel.org/patch/7408621/ Franklin S Cooper Jr (7): ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev ARM: dts: am33xx: Fix GPMC dma properties ARM: dts: am437x: Fix GPMC dma properties mtd: nand: omap2: Support parsing dma channel information from DT mtd: nand: omap2: Start dma request before enabling prefetch mtd: nand: omap2: Fix high memory dma prefetch transfer ARM: OMAP2+: Update GPMC and NAND DT binding documentation Documentation/devicetree/bindings/bus/ti-gpmc.txt | 7 +++++- .../devicetree/bindings/mtd/gpmc-nand.txt | 2 +- arch/arm/boot/dts/am33xx.dtsi | 2 +- arch/arm/boot/dts/am4372.dtsi | 2 +- arch/arm/mach-omap2/gpmc-nand.c | 16 ++++++++++++- drivers/mtd/nand/omap2.c | 27 +++++++++------------- 6 files changed, 35 insertions(+), 21 deletions(-) -- 2.7.0
[toc] | [next] | [standalone]
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2016-03-11 01:00 +0100 |
| Subject | [PATCH v4 3/7] ARM: dts: am437x: Fix GPMC dma properties |
| Message-ID | <rbiEO-5UZ-29@gated-at.bofh.it> |
| In reply to | #1355480 |
This patch updates the GPMC's DT DMA property to reflect the updated eDMA
bindings.
Fixes: cce1ee000187 ("ARM: DTS: am437x: Use the new DT bindings for the eDMA3")
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
---
Version 4 changes:
Split into its own commit. Use proper Fixes syntax.
arch/arm/boot/dts/am4372.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
index 92068fb..2878b04 100644
--- a/arch/arm/boot/dts/am4372.dtsi
+++ b/arch/arm/boot/dts/am4372.dtsi
@@ -884,7 +884,7 @@
gpmc: gpmc@50000000 {
compatible = "ti,am3352-gpmc";
ti,hwmods = "gpmc";
- dmas = <&edma 52>;
+ dmas = <&edma 52 0>;
dma-names = "rxtx";
clocks = <&l3s_gclk>;
clock-names = "fck";
--
2.7.0
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-03-11 15:00 +0100 |
| Subject | Re: [PATCH v4 3/7] ARM: dts: am437x: Fix GPMC dma properties |
| Message-ID | <rbvLI-73L-3@gated-at.bofh.it> |
| In reply to | #1355482 |
+Peter
On 11/03/16 01:56, Franklin S Cooper Jr wrote:
> This patch updates the GPMC's DT DMA property to reflect the updated eDMA
> bindings.
>
> Fixes: cce1ee000187 ("ARM: DTS: am437x: Use the new DT bindings for the eDMA3")
>
> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Acked-by: Roger Quadros <rogerq@ti.com>
cheers,
-roger
> ---
> Version 4 changes:
> Split into its own commit. Use proper Fixes syntax.
>
> arch/arm/boot/dts/am4372.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
> index 92068fb..2878b04 100644
> --- a/arch/arm/boot/dts/am4372.dtsi
> +++ b/arch/arm/boot/dts/am4372.dtsi
> @@ -884,7 +884,7 @@
> gpmc: gpmc@50000000 {
> compatible = "ti,am3352-gpmc";
> ti,hwmods = "gpmc";
> - dmas = <&edma 52>;
> + dmas = <&edma 52 0>;
> dma-names = "rxtx";
> clocks = <&l3s_gclk>;
> clock-names = "fck";
>
[toc] | [prev] | [next] | [standalone]
| From | Peter Ujfalusi <peter.ujfalusi@ti.com> |
|---|---|
| Date | 2016-03-11 15:10 +0100 |
| Subject | Re: [PATCH v4 3/7] ARM: dts: am437x: Fix GPMC dma properties |
| Message-ID | <rbvVo-7ms-23@gated-at.bofh.it> |
| In reply to | #1355482 |
On 03/11/2016 01:56 AM, Franklin S Cooper Jr wrote:
> This patch updates the GPMC's DT DMA property to reflect the updated eDMA
> bindings.
>
> Fixes: cce1ee000187 ("ARM: DTS: am437x: Use the new DT bindings for the eDMA3")
I have also converted all users of the edma back when I sent, I guess the gpmc
DMA binding went in parallel...
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
>
> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
> ---
> Version 4 changes:
> Split into its own commit. Use proper Fixes syntax.
>
> arch/arm/boot/dts/am4372.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/am4372.dtsi b/arch/arm/boot/dts/am4372.dtsi
> index 92068fb..2878b04 100644
> --- a/arch/arm/boot/dts/am4372.dtsi
> +++ b/arch/arm/boot/dts/am4372.dtsi
> @@ -884,7 +884,7 @@
> gpmc: gpmc@50000000 {
> compatible = "ti,am3352-gpmc";
> ti,hwmods = "gpmc";
> - dmas = <&edma 52>;
> + dmas = <&edma 52 0>;
> dma-names = "rxtx";
> clocks = <&l3s_gclk>;
> clock-names = "fck";
>
--
Péter
[toc] | [prev] | [next] | [standalone]
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2016-03-11 01:00 +0100 |
| Subject | [PATCH v4 2/7] ARM: dts: am33xx: Fix GPMC dma properties |
| Message-ID | <rbiEO-5UZ-33@gated-at.bofh.it> |
| In reply to | #1355480 |
This patch updates the GPMC's DT DMA property to reflect the updated eDMA
bindings.
Fixes: b5e509066074 ("ARM: DTS: am33xx: Use the new DT bindings for the eDMA3")
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
---
Version 4 changes:
Split in its own commit. Uses correct syntax for Fixes
arch/arm/boot/dts/am33xx.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
index 1fafaad..97471d6 100644
--- a/arch/arm/boot/dts/am33xx.dtsi
+++ b/arch/arm/boot/dts/am33xx.dtsi
@@ -860,7 +860,7 @@
ti,no-idle-on-init;
reg = <0x50000000 0x2000>;
interrupts = <100>;
- dmas = <&edma 52>;
+ dmas = <&edma 52 0>;
dma-names = "rxtx";
gpmc,num-cs = <7>;
gpmc,num-waitpins = <2>;
--
2.7.0
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-03-11 15:00 +0100 |
| Subject | Re: [PATCH v4 2/7] ARM: dts: am33xx: Fix GPMC dma properties |
| Message-ID | <rbvLJ-73L-25@gated-at.bofh.it> |
| In reply to | #1355483 |
+Peter,
On 11/03/16 01:56, Franklin S Cooper Jr wrote:
> This patch updates the GPMC's DT DMA property to reflect the updated eDMA
> bindings.
>
> Fixes: b5e509066074 ("ARM: DTS: am33xx: Use the new DT bindings for the eDMA3")
>
> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Acked-by: Roger Quadros <rogerq@ti.com>
cheers,
-roger
> ---
> Version 4 changes:
> Split in its own commit. Uses correct syntax for Fixes
>
> arch/arm/boot/dts/am33xx.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
> index 1fafaad..97471d6 100644
> --- a/arch/arm/boot/dts/am33xx.dtsi
> +++ b/arch/arm/boot/dts/am33xx.dtsi
> @@ -860,7 +860,7 @@
> ti,no-idle-on-init;
> reg = <0x50000000 0x2000>;
> interrupts = <100>;
> - dmas = <&edma 52>;
> + dmas = <&edma 52 0>;
> dma-names = "rxtx";
> gpmc,num-cs = <7>;
> gpmc,num-waitpins = <2>;
>
[toc] | [prev] | [next] | [standalone]
| From | Peter Ujfalusi <peter.ujfalusi@ti.com> |
|---|---|
| Date | 2016-03-11 15:10 +0100 |
| Subject | Re: [PATCH v4 2/7] ARM: dts: am33xx: Fix GPMC dma properties |
| Message-ID | <rbvVp-7ms-25@gated-at.bofh.it> |
| In reply to | #1355483 |
On 03/11/2016 01:56 AM, Franklin S Cooper Jr wrote:
> This patch updates the GPMC's DT DMA property to reflect the updated eDMA
> bindings.
>
> Fixes: b5e509066074 ("ARM: DTS: am33xx: Use the new DT bindings for the eDMA3")
I have double checked the switch over to the new eDMA bindings when I sent it
and there were no gpmc node existed back then afaik.
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
>
> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
> ---
> Version 4 changes:
> Split in its own commit. Uses correct syntax for Fixes
>
> arch/arm/boot/dts/am33xx.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
> index 1fafaad..97471d6 100644
> --- a/arch/arm/boot/dts/am33xx.dtsi
> +++ b/arch/arm/boot/dts/am33xx.dtsi
> @@ -860,7 +860,7 @@
> ti,no-idle-on-init;
> reg = <0x50000000 0x2000>;
> interrupts = <100>;
> - dmas = <&edma 52>;
> + dmas = <&edma 52 0>;
> dma-names = "rxtx";
> gpmc,num-cs = <7>;
> gpmc,num-waitpins = <2>;
>
--
Péter
[toc] | [prev] | [next] | [standalone]
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2016-03-11 01:00 +0100 |
| Subject | [PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev |
| Message-ID | <rbiEP-5UZ-41@gated-at.bofh.it> |
| In reply to | #1355480 |
The dma channel information is located within the GPMC node which is the
NAND's parent node. The NAND driver requires a handle to the GPMC's dev
to properly parse the DMA properties. Therefore, set the NAND's parent dev
to the GPMC's dev so it can be referenced within the driver.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
---
Version 4 changes:
Instead of storing the GPMC dev in a new property simply grab a reference
to it and set omap2-nand's dev.parent to it.
arch/arm/mach-omap2/gpmc-nand.c | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
index 72918c4..77e453c 100644
--- a/arch/arm/mach-omap2/gpmc-nand.c
+++ b/arch/arm/mach-omap2/gpmc-nand.c
@@ -15,6 +15,7 @@
#include <linux/omap-gpmc.h>
#include <linux/mtd/nand.h>
#include <linux/platform_data/mtd-nand-omap2.h>
+#include <linux/of_platform.h>
#include <asm/mach/flash.h>
@@ -77,6 +78,9 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
int err = 0;
struct gpmc_settings s;
struct platform_device *pdev;
+ struct platform_device *gpmc_dev;
+ struct device_node *gpmc_node;
+
struct resource gpmc_nand_res[] = {
{ .flags = IORESOURCE_MEM, },
{ .flags = IORESOURCE_IRQ, },
@@ -134,8 +138,18 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
if (pdev) {
err = platform_device_add_resources(pdev, gpmc_nand_res,
ARRAY_SIZE(gpmc_nand_res));
- if (!err)
+ if (!err) {
pdev->dev.platform_data = gpmc_nand_data;
+
+ gpmc_node = of_get_parent(gpmc_nand_data->of_node);
+
+ if (gpmc_node) {
+ gpmc_dev = of_find_device_by_node(gpmc_node);
+
+ if (gpmc_dev)
+ pdev->dev.parent = &gpmc_dev->dev;
+ }
+ }
} else {
err = -ENOMEM;
}
--
2.7.0
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-03-11 15:00 +0100 |
| Subject | Re: [PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev |
| Message-ID | <rbvLJ-73L-23@gated-at.bofh.it> |
| In reply to | #1355486 |
Franklin,
On 11/03/16 01:56, Franklin S Cooper Jr wrote:
> The dma channel information is located within the GPMC node which is the
> NAND's parent node. The NAND driver requires a handle to the GPMC's dev
> to properly parse the DMA properties. Therefore, set the NAND's parent dev
> to the GPMC's dev so it can be referenced within the driver.
>
> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
> ---
> Version 4 changes:
> Instead of storing the GPMC dev in a new property simply grab a reference
> to it and set omap2-nand's dev.parent to it.
>
> arch/arm/mach-omap2/gpmc-nand.c | 16 +++++++++++++++-
> 1 file changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
> index 72918c4..77e453c 100644
> --- a/arch/arm/mach-omap2/gpmc-nand.c
> +++ b/arch/arm/mach-omap2/gpmc-nand.c
> @@ -15,6 +15,7 @@
> #include <linux/omap-gpmc.h>
> #include <linux/mtd/nand.h>
> #include <linux/platform_data/mtd-nand-omap2.h>
> +#include <linux/of_platform.h>
>
> #include <asm/mach/flash.h>
>
> @@ -77,6 +78,9 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
> int err = 0;
> struct gpmc_settings s;
> struct platform_device *pdev;
> + struct platform_device *gpmc_dev;
> + struct device_node *gpmc_node;
> +
> struct resource gpmc_nand_res[] = {
> { .flags = IORESOURCE_MEM, },
> { .flags = IORESOURCE_IRQ, },
> @@ -134,8 +138,18 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
> if (pdev) {
> err = platform_device_add_resources(pdev, gpmc_nand_res,
> ARRAY_SIZE(gpmc_nand_res));
> - if (!err)
> + if (!err) {
> pdev->dev.platform_data = gpmc_nand_data;
> +
> + gpmc_node = of_get_parent(gpmc_nand_data->of_node);
I'm afraid that we can't use this method as we want to restrict
gpmc_nand_init() to non-DT boots.
> +
> + if (gpmc_node) {
> + gpmc_dev = of_find_device_by_node(gpmc_node);
> +
> + if (gpmc_dev)
> + pdev->dev.parent = &gpmc_dev->dev;
> + }
> + }
> } else {
> err = -ENOMEM;
> }
>
cheers,
-roger
[toc] | [prev] | [next] | [standalone]
| From | "Franklin S Cooper Jr." <fcooper@ti.com> |
|---|---|
| Date | 2016-03-11 16:50 +0100 |
| Subject | Re: [PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev |
| Message-ID | <rbxub-8i6-43@gated-at.bofh.it> |
| In reply to | #1355925 |
On 03/11/2016 07:52 AM, Roger Quadros wrote:
> Franklin,
>
> On 11/03/16 01:56, Franklin S Cooper Jr wrote:
>> The dma channel information is located within the GPMC node which is the
>> NAND's parent node. The NAND driver requires a handle to the GPMC's dev
>> to properly parse the DMA properties. Therefore, set the NAND's parent dev
>> to the GPMC's dev so it can be referenced within the driver.
>>
>> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
>> ---
>> Version 4 changes:
>> Instead of storing the GPMC dev in a new property simply grab a reference
>> to it and set omap2-nand's dev.parent to it.
>>
>> arch/arm/mach-omap2/gpmc-nand.c | 16 +++++++++++++++-
>> 1 file changed, 15 insertions(+), 1 deletion(-)
>>
>> diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
>> index 72918c4..77e453c 100644
>> --- a/arch/arm/mach-omap2/gpmc-nand.c
>> +++ b/arch/arm/mach-omap2/gpmc-nand.c
>> @@ -15,6 +15,7 @@
>> #include <linux/omap-gpmc.h>
>> #include <linux/mtd/nand.h>
>> #include <linux/platform_data/mtd-nand-omap2.h>
>> +#include <linux/of_platform.h>
>>
>> #include <asm/mach/flash.h>
>>
>> @@ -77,6 +78,9 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
>> int err = 0;
>> struct gpmc_settings s;
>> struct platform_device *pdev;
>> + struct platform_device *gpmc_dev;
>> + struct device_node *gpmc_node;
>> +
>> struct resource gpmc_nand_res[] = {
>> { .flags = IORESOURCE_MEM, },
>> { .flags = IORESOURCE_IRQ, },
>> @@ -134,8 +138,18 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
>> if (pdev) {
>> err = platform_device_add_resources(pdev, gpmc_nand_res,
>> ARRAY_SIZE(gpmc_nand_res));
>> - if (!err)
>> + if (!err) {
>> pdev->dev.platform_data = gpmc_nand_data;
>> +
>> + gpmc_node = of_get_parent(gpmc_nand_data->of_node);
> I'm afraid that we can't use this method as we want to restrict
> gpmc_nand_init() to non-DT boots.
The only users of the parent GPMC driver are already using
DT. The gpmc_probe_nand_child function in the GPMC driver
which calls gpmc_nand_init is already DT only.
The only other caller to gpmc_nand_init is board-flash.c.
The driver doesn't utilize xfer_type to even switch to any
other modes including DMA prefetch mode. Looking at it
closer there isn't a dev from some kind of parent for me to
pass along. Board_nand_init which calls gpmc_nand_init just
takes raw NAND values with no relation to its parent.
With that being said are you ok with leaving it as is?
>
>> +
>> + if (gpmc_node) {
>> + gpmc_dev = of_find_device_by_node(gpmc_node);
>> +
>> + if (gpmc_dev)
>> + pdev->dev.parent = &gpmc_dev->dev;
>> + }
>> + }
>> } else {
>> err = -ENOMEM;
>> }
>>
> cheers,
> -roger
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-03-14 10:20 +0100 |
| Subject | Re: [PATCH v4 1/7] ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev |
| Message-ID | <rcwPo-1Mw-9@gated-at.bofh.it> |
| In reply to | #1356007 |
Franklin, Tony,
On 11/03/16 17:39, Franklin S Cooper Jr. wrote:
>
>
> On 03/11/2016 07:52 AM, Roger Quadros wrote:
>> Franklin,
>>
>> On 11/03/16 01:56, Franklin S Cooper Jr wrote:
>>> The dma channel information is located within the GPMC node which is the
>>> NAND's parent node. The NAND driver requires a handle to the GPMC's dev
>>> to properly parse the DMA properties. Therefore, set the NAND's parent dev
>>> to the GPMC's dev so it can be referenced within the driver.
>>>
>>> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
>>> ---
>>> Version 4 changes:
>>> Instead of storing the GPMC dev in a new property simply grab a reference
>>> to it and set omap2-nand's dev.parent to it.
>>>
>>> arch/arm/mach-omap2/gpmc-nand.c | 16 +++++++++++++++-
>>> 1 file changed, 15 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c
>>> index 72918c4..77e453c 100644
>>> --- a/arch/arm/mach-omap2/gpmc-nand.c
>>> +++ b/arch/arm/mach-omap2/gpmc-nand.c
>>> @@ -15,6 +15,7 @@
>>> #include <linux/omap-gpmc.h>
>>> #include <linux/mtd/nand.h>
>>> #include <linux/platform_data/mtd-nand-omap2.h>
>>> +#include <linux/of_platform.h>
>>>
>>> #include <asm/mach/flash.h>
>>>
>>> @@ -77,6 +78,9 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
>>> int err = 0;
>>> struct gpmc_settings s;
>>> struct platform_device *pdev;
>>> + struct platform_device *gpmc_dev;
>>> + struct device_node *gpmc_node;
>>> +
>>> struct resource gpmc_nand_res[] = {
>>> { .flags = IORESOURCE_MEM, },
>>> { .flags = IORESOURCE_IRQ, },
>>> @@ -134,8 +138,18 @@ int gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data,
>>> if (pdev) {
>>> err = platform_device_add_resources(pdev, gpmc_nand_res,
>>> ARRAY_SIZE(gpmc_nand_res));
>>> - if (!err)
>>> + if (!err) {
>>> pdev->dev.platform_data = gpmc_nand_data;
>>> +
>>> + gpmc_node = of_get_parent(gpmc_nand_data->of_node);
>> I'm afraid that we can't use this method as we want to restrict
>> gpmc_nand_init() to non-DT boots.
>
> The only users of the parent GPMC driver are already using
> DT. The gpmc_probe_nand_child function in the GPMC driver
> which calls gpmc_nand_init is already DT only.
>
> The only other caller to gpmc_nand_init is board-flash.c.
> The driver doesn't utilize xfer_type to even switch to any
> other modes including DMA prefetch mode. Looking at it
> closer there isn't a dev from some kind of parent for me to
> pass along. Board_nand_init which calls gpmc_nand_init just
> takes raw NAND values with no relation to its parent.
>
>
> With that being said are you ok with leaving it as is?
I think it is OK to assume that NAND DMA won't work with legacy boot.
Tony any objections? I see that board-ldp.c is the only legacy user
of NAND. When can we drop support for it?
I want to keep gpmc_nand_init() as it is and don't want to add any
device tree specific calls here.
So I think it is still best if you rebase your series on top of [1]
so that you are assured NAND controller's parent is the GPMC device
in the DT case without requiring the $subject patch.
[1] https://lkml.org/lkml/2016/2/19/599
The series has been Acked by all maintainers and will go in v4.6
cheers,
-roger
[toc] | [prev] | [next] | [standalone]
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2016-03-11 01:00 +0100 |
| Subject | [PATCH v4 4/7] mtd: nand: omap2: Support parsing dma channel information from DT |
| Message-ID | <rbiEP-5UZ-37@gated-at.bofh.it> |
| In reply to | #1355480 |
Switch from dma_request_channel to allow passing dma channel
information from DT rather than hardcoding a value.
Also provide a handle to the GPMC's dev so it can be used to parse the DMA
channel information within the GPMC's DT node.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
---
Version 4 changes:
Pass parent instead of new variable from the platform data
drivers/mtd/nand/omap2.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c
index c553f78..95bc636 100644
--- a/drivers/mtd/nand/omap2.c
+++ b/drivers/mtd/nand/omap2.c
@@ -1731,7 +1731,9 @@ static int omap_nand_probe(struct platform_device *pdev)
dma_cap_zero(mask);
dma_cap_set(DMA_SLAVE, mask);
sig = OMAP24XX_DMA_GPMC;
- info->dma = dma_request_channel(mask, omap_dma_filter_fn, &sig);
+ info->dma = dma_request_slave_channel_compat(mask,
+ omap_dma_filter_fn, &sig, pdev->dev.parent, "rxtx");
+
if (!info->dma) {
dev_err(&pdev->dev, "DMA engine request failed\n");
err = -ENXIO;
--
2.7.0
[toc] | [prev] | [next] | [standalone]
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2016-03-11 01:00 +0100 |
| Subject | [PATCH v4 5/7] mtd: nand: omap2: Start dma request before enabling prefetch |
| Message-ID | <rbiEP-5UZ-39@gated-at.bofh.it> |
| In reply to | #1355480 |
The prefetch engine sends a dma request once a FIFO threshold has been met. No other requests are received until the previous request is handled. Starting an edma transfer (dma_async_issue_pending) results in any previous event for the dma channel to be cleared. Therefore, starting the prefetch engine before initiating the dma transfer may result in the prefetch triggering a dma request but instead of it being handled it can end up being cleared. This will result in a hang since the code will continue to wait for the dma request to complete. By initiating the dma request before enabling the prefetch engine this race condition is avoided and no dma request are missed/cleared. Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> --- drivers/mtd/nand/omap2.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c index 95bc636..0863a83 100644 --- a/drivers/mtd/nand/omap2.c +++ b/drivers/mtd/nand/omap2.c @@ -497,6 +497,11 @@ static inline int omap_nand_dma_transfer(struct mtd_info *mtd, void *addr, tx->callback_param = &info->comp; dmaengine_submit(tx); + init_completion(&info->comp); + + /* setup and start DMA using dma_addr */ + dma_async_issue_pending(info->dma); + /* configure and start prefetch transfer */ ret = omap_prefetch_enable(info->gpmc_cs, PREFETCH_FIFOTHRESHOLD_MAX, 0x1, len, is_write, info); @@ -504,10 +509,6 @@ static inline int omap_nand_dma_transfer(struct mtd_info *mtd, void *addr, /* PFPW engine is busy, use cpu copy method */ goto out_copy_unmap; - init_completion(&info->comp); - dma_async_issue_pending(info->dma); - - /* setup and start DMA using dma_addr */ wait_for_completion(&info->comp); tim = 0; limit = (loops_per_jiffy * msecs_to_jiffies(OMAP_NAND_TIMEOUT_MS)); -- 2.7.0
[toc] | [prev] | [next] | [standalone]
| From | Roger Quadros <rogerq@ti.com> |
|---|---|
| Date | 2016-03-11 15:10 +0100 |
| Message-ID | <rbvVn-7ms-1@gated-at.bofh.it> |
| In reply to | #1355480 |
Franklin, On 11/03/16 01:56, Franklin S Cooper Jr wrote: > NAND DMA prefetch has been broken for awhile and seems to have only > worked for SDMA based devices > > This patchset fixes DMA prefetch to work on both EDMA and SDMA devices > > Test on: > am335x gp evm > am437x gp evm > am37x gp evm > > This rev is pretty much the same as v2 which was blocked due to > dependencies to Roger's update GPMC/NAND rework. > > This updated rev removes this dependency. > > Also it fixes an issue that was introduced when the eDMA driver was > recently updated. > > Links to rev 3 patchset: > https://patchwork.ozlabs.org/patch/595631/ > https://patchwork.ozlabs.org/patch/595626/ > https://patchwork.ozlabs.org/patch/595628/ > https://patchwork.ozlabs.org/patch/595630/ > https://patchwork.ozlabs.org/patch/595627/ > https://patchwork.ozlabs.org/patch/595629/ > > Links to rev 2 patchset: > https://patchwork.kernel.org/patch/7408691/ > https://patchwork.kernel.org/patch/7408681/ > https://patchwork.kernel.org/patch/7408661/ > https://patchwork.kernel.org/patch/7408641/ > https://patchwork.kernel.org/patch/7408621/ > > Franklin S Cooper Jr (7): > ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev > ARM: dts: am33xx: Fix GPMC dma properties > ARM: dts: am437x: Fix GPMC dma properties Can you please fix the gpmc nodes in dm816x.dtsi and dm814x.dtsi as well? You can use linux-next tree or [1] to see the latest changes to these files that will end up in v4.6 and base your changes on that. [1] Tony's omap-for-v4.6/dt https://git.kernel.org/cgit/linux/kernel/git/tmlind/linux-omap.git/log/?h=omap-for-v4.6/dt > mtd: nand: omap2: Support parsing dma channel information from DT > mtd: nand: omap2: Start dma request before enabling prefetch > mtd: nand: omap2: Fix high memory dma prefetch transfer > ARM: OMAP2+: Update GPMC and NAND DT binding documentation > > Documentation/devicetree/bindings/bus/ti-gpmc.txt | 7 +++++- > .../devicetree/bindings/mtd/gpmc-nand.txt | 2 +- > arch/arm/boot/dts/am33xx.dtsi | 2 +- > arch/arm/boot/dts/am4372.dtsi | 2 +- > arch/arm/mach-omap2/gpmc-nand.c | 16 ++++++++++++- > drivers/mtd/nand/omap2.c | 27 +++++++++------------- > 6 files changed, 35 insertions(+), 21 deletions(-) > cheers, -roger
[toc] | [prev] | [next] | [standalone]
| From | "Franklin S Cooper Jr." <fcooper@ti.com> |
|---|---|
| Date | 2016-03-14 15:20 +0100 |
| Message-ID | <rcBvJ-4Pn-25@gated-at.bofh.it> |
| In reply to | #1355928 |
On 03/11/2016 08:02 AM, Roger Quadros wrote: > Franklin, > > On 11/03/16 01:56, Franklin S Cooper Jr wrote: >> NAND DMA prefetch has been broken for awhile and seems to have only >> worked for SDMA based devices >> >> This patchset fixes DMA prefetch to work on both EDMA and SDMA devices >> >> Test on: >> am335x gp evm >> am437x gp evm >> am37x gp evm >> >> This rev is pretty much the same as v2 which was blocked due to >> dependencies to Roger's update GPMC/NAND rework. >> >> This updated rev removes this dependency. >> >> Also it fixes an issue that was introduced when the eDMA driver was >> recently updated. >> >> Links to rev 3 patchset: >> https://patchwork.ozlabs.org/patch/595631/ >> https://patchwork.ozlabs.org/patch/595626/ >> https://patchwork.ozlabs.org/patch/595628/ >> https://patchwork.ozlabs.org/patch/595630/ >> https://patchwork.ozlabs.org/patch/595627/ >> https://patchwork.ozlabs.org/patch/595629/ >> >> Links to rev 2 patchset: >> https://patchwork.kernel.org/patch/7408691/ >> https://patchwork.kernel.org/patch/7408681/ >> https://patchwork.kernel.org/patch/7408661/ >> https://patchwork.kernel.org/patch/7408641/ >> https://patchwork.kernel.org/patch/7408621/ >> >> Franklin S Cooper Jr (7): >> ARM: OMAP2+: gpmc-nand: Set omap2-nand's parent dev to GPMC dev >> ARM: dts: am33xx: Fix GPMC dma properties >> ARM: dts: am437x: Fix GPMC dma properties > Can you please fix the gpmc nodes in dm816x.dtsi and dm814x.dtsi as well? > You can use linux-next tree or [1] to see the latest changes to these files > that will end up in v4.6 and base your changes on that. > > [1] Tony's omap-for-v4.6/dt > https://git.kernel.org/cgit/linux/kernel/git/tmlind/linux-omap.git/log/?h=omap-for-v4.6/dt Sorry I didn't bother looking at dm816 and dm814 dtsi files since I assumed it didn't use edma since the recent edma updates didn't make updates for those devices. My mistake. I'll update those dtsi files. >> mtd: nand: omap2: Support parsing dma channel information from DT >> mtd: nand: omap2: Start dma request before enabling prefetch >> mtd: nand: omap2: Fix high memory dma prefetch transfer >> ARM: OMAP2+: Update GPMC and NAND DT binding documentation >> >> Documentation/devicetree/bindings/bus/ti-gpmc.txt | 7 +++++- >> .../devicetree/bindings/mtd/gpmc-nand.txt | 2 +- >> arch/arm/boot/dts/am33xx.dtsi | 2 +- >> arch/arm/boot/dts/am4372.dtsi | 2 +- >> arch/arm/mach-omap2/gpmc-nand.c | 16 ++++++++++++- >> drivers/mtd/nand/omap2.c | 27 +++++++++------------- >> 6 files changed, 35 insertions(+), 21 deletions(-) >> > cheers, > -roger
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web