All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] usb: Fix build error due to dma_mask is not at pdev_archdata at ARM
@ 2012-02-14  9:11 Peter Chen
  2012-02-15  8:47 ` Mehresh Ramneek-B31383
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Chen @ 2012-02-14  9:11 UTC (permalink / raw)
  To: stern, agust; +Cc: fabio.estevam, linux-usb, linuxppc-dev, kernel, B31383

When build i.mx platform with imx_v6_v7_defconfig, and after adding
USB Gadget support, it has below build error:

CC      drivers/usb/host/fsl-mph-dr-of.o
drivers/usb/host/fsl-mph-dr-of.c: In function 'fsl_usb2_device_register':
drivers/usb/host/fsl-mph-dr-of.c:97: error: 'struct pdev_archdata'
has no member named 'dma_mask'

It has discussed at: http://www.spinics.net/lists/linux-usb/msg57302.html

For PowerPC, there is dma_mask at struct pdev_archdata, but there is
no dma_mask at struct pdev_archdata for ARM. The pdev_archdata is
related to specific platform, it should NOT be accessed by
cross platform drivers, like USB.

The code for pdev_archdata should be useless, as for PowerPC,
it has already gotten the value for pdev->dev.dma_mask at function
arch_setup_pdev_archdata of arch/powerpc/kernel/setup-common.c.

Anyone who has PowerPC hardware with USB host enabled, and uses this code
can help me a test? Thank you

Signed-off-by: Peter Chen <peter.chen@freescale.com>
---
 drivers/usb/host/fsl-mph-dr-of.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/host/fsl-mph-dr-of.c b/drivers/usb/host/fsl-mph-dr-of.c
index 7916e56..ab333ac 100644
--- a/drivers/usb/host/fsl-mph-dr-of.c
+++ b/drivers/usb/host/fsl-mph-dr-of.c
@@ -94,7 +94,6 @@ struct platform_device * __devinit fsl_usb2_device_register(
 	pdev->dev.parent = &ofdev->dev;
 
 	pdev->dev.coherent_dma_mask = ofdev->dev.coherent_dma_mask;
-	pdev->dev.dma_mask = &pdev->archdata.dma_mask;
 	*pdev->dev.dma_mask = *ofdev->dev.dma_mask;
 
 	retval = platform_device_add_data(pdev, pdata, sizeof(*pdata));
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [RFC] usb: Fix build error due to dma_mask is not at pdev_archdata at ARM
  2012-02-14  9:11 [RFC] usb: Fix build error due to dma_mask is not at pdev_archdata at ARM Peter Chen
@ 2012-02-15  8:47 ` Mehresh Ramneek-B31383
  2012-02-16  1:12   ` Chen Peter-B29397
  0 siblings, 1 reply; 4+ messages in thread
From: Mehresh Ramneek-B31383 @ 2012-02-15  8:47 UTC (permalink / raw)
  To: Chen Peter-B29397, stern, agust
  Cc: Estevam Fabio-R49496, linux-usb, linuxppc-dev, kernel



-----Original Message-----
From: Chen Peter-B29397=20
Sent: Tuesday, February 14, 2012 2:42 PM
To: stern@rowland.harvard.edu; agust@denx.de
Cc: kernel@pengutronix.de; linuxppc-dev@lists.ozlabs.org; Mehresh Ramneek-B=
31383; Estevam Fabio-R49496; linux-usb@vger.kernel.org
Subject: [RFC] usb: Fix build error due to dma_mask is not at pdev_archdata=
 at ARM

When build i.mx platform with imx_v6_v7_defconfig, and after adding USB Gad=
get support, it has below build error:

CC      drivers/usb/host/fsl-mph-dr-of.o
drivers/usb/host/fsl-mph-dr-of.c: In function 'fsl_usb2_device_register':
drivers/usb/host/fsl-mph-dr-of.c:97: error: 'struct pdev_archdata'
has no member named 'dma_mask'

It has discussed at: http://www.spinics.net/lists/linux-usb/msg57302.html

For PowerPC, there is dma_mask at struct pdev_archdata, but there is no dma=
_mask at struct pdev_archdata for ARM. The pdev_archdata is related to spec=
ific platform, it should NOT be accessed by cross platform drivers, like US=
B.

The code for pdev_archdata should be useless, as for PowerPC, it has alread=
y gotten the value for pdev->dev.dma_mask at function arch_setup_pdev_archd=
ata of arch/powerpc/kernel/setup-common.c.

Anyone who has PowerPC hardware with USB host enabled, and uses this code c=
an help me a test? Thank you

[Ramneek]: Hi Peter, the code is working for Host stack on PowerPC.
=20
Signed-off-by: Peter Chen <peter.chen@freescale.com>
---
 drivers/usb/host/fsl-mph-dr-of.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/host/fsl-mph-dr-of.c b/drivers/usb/host/fsl-mph-dr=
-of.c
index 7916e56..ab333ac 100644
--- a/drivers/usb/host/fsl-mph-dr-of.c
+++ b/drivers/usb/host/fsl-mph-dr-of.c
@@ -94,7 +94,6 @@ struct platform_device * __devinit fsl_usb2_device_regist=
er(
 	pdev->dev.parent =3D &ofdev->dev;
=20
 	pdev->dev.coherent_dma_mask =3D ofdev->dev.coherent_dma_mask;
-	pdev->dev.dma_mask =3D &pdev->archdata.dma_mask;
 	*pdev->dev.dma_mask =3D *ofdev->dev.dma_mask;
=20
 	retval =3D platform_device_add_data(pdev, pdata, sizeof(*pdata));
--
1.7.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* RE: [RFC] usb: Fix build error due to dma_mask is not at pdev_archdata at ARM
  2012-02-15  8:47 ` Mehresh Ramneek-B31383
@ 2012-02-16  1:12   ` Chen Peter-B29397
  0 siblings, 0 replies; 4+ messages in thread
From: Chen Peter-B29397 @ 2012-02-16  1:12 UTC (permalink / raw)
  To: Mehresh Ramneek-B31383, stern, agust
  Cc: Estevam Fabio-R49496, linux-usb, linuxppc-dev, kernel

=20
> When build i.mx platform with imx_v6_v7_defconfig, and after adding USB
> Gadget support, it has below build error:
>=20
> CC      drivers/usb/host/fsl-mph-dr-of.o
> drivers/usb/host/fsl-mph-dr-of.c: In function 'fsl_usb2_device_register':
> drivers/usb/host/fsl-mph-dr-of.c:97: error: 'struct pdev_archdata'
> has no member named 'dma_mask'
>=20
> It has discussed at: http://www.spinics.net/lists/linux-usb/msg57302.html
>=20
> For PowerPC, there is dma_mask at struct pdev_archdata, but there is no
> dma_mask at struct pdev_archdata for ARM. The pdev_archdata is related to
> specific platform, it should NOT be accessed by cross platform drivers,
> like USB.
>=20
> The code for pdev_archdata should be useless, as for PowerPC, it has
> already gotten the value for pdev->dev.dma_mask at function
> arch_setup_pdev_archdata of arch/powerpc/kernel/setup-common.c.
>=20
> Anyone who has PowerPC hardware with USB host enabled, and uses this code
> can help me a test? Thank you
>=20
> [Ramneek]: Hi Peter, the code is working for Host stack on PowerPC.
=20
Thanks, Ramneek. I will post PATCH and add:
Tested-by: Ramneek Mehresh <ramneek.mehresh@freescale.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [RFC] usb: Fix build error due to dma_mask is not at pdev_archdata at ARM
@ 2012-02-14  8:23 Peter Chen
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Chen @ 2012-02-14  8:23 UTC (permalink / raw)
  To: stern, agust; +Cc: fabio.estevam, linuxppc-dev, kernel, B31383

When build i.mx platform with imx_v6_v7_defconfig, and after adding
USB Gadget support, it has below build error:

CC      drivers/usb/host/fsl-mph-dr-of.o
drivers/usb/host/fsl-mph-dr-of.c: In function 'fsl_usb2_device_register':
drivers/usb/host/fsl-mph-dr-of.c:97: error: 'struct pdev_archdata'
has no member named 'dma_mask'

It has discussed at: http://www.spinics.net/lists/linux-usb/msg57302.html

For PowerPC, there is dma_mask at struct pdev_archdata, but there is
no dma_mask at struct pdev_archdata for ARM. The pdev_archdata is
related to specific platform, it should NOT be accessed by
cross platform drivers, like USB.

The code for pdev_archdata should be useless, as for PowerPC,
it has already gotten the value for pdev->dev.dma_mask at function
arch_setup_pdev_archdata of arch/powerpc/kernel/setup-common.c.

Anyone who has PowerPC hardware with USB host enabled, and uses this code
can help me a test? Thank you

Signed-off-by: Peter Chen <peter.chen@freescale.com>
---
 drivers/usb/host/fsl-mph-dr-of.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/host/fsl-mph-dr-of.c b/drivers/usb/host/fsl-mph-dr-of.c
index 7916e56..ab333ac 100644
--- a/drivers/usb/host/fsl-mph-dr-of.c
+++ b/drivers/usb/host/fsl-mph-dr-of.c
@@ -94,7 +94,6 @@ struct platform_device * __devinit fsl_usb2_device_register(
 	pdev->dev.parent = &ofdev->dev;
 
 	pdev->dev.coherent_dma_mask = ofdev->dev.coherent_dma_mask;
-	pdev->dev.dma_mask = &pdev->archdata.dma_mask;
 	*pdev->dev.dma_mask = *ofdev->dev.dma_mask;
 
 	retval = platform_device_add_data(pdev, pdata, sizeof(*pdata));
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-16  1:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-14  9:11 [RFC] usb: Fix build error due to dma_mask is not at pdev_archdata at ARM Peter Chen
2012-02-15  8:47 ` Mehresh Ramneek-B31383
2012-02-16  1:12   ` Chen Peter-B29397
  -- strict thread matches above, loose matches on Subject: below --
2012-02-14  8:23 Peter Chen

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.