[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20120314082352.GC1180@shlinux2.ap.freescale.net>
Date: Wed, 14 Mar 2012 16:23:52 +0800
From: Dong Aisheng <aisheng.dong@...escale.com>
To: Huang Shijie-B32955 <B32955@...escale.com>
CC: Dong Aisheng-B29396 <B29396@...escale.com>,
"devicetree-discuss@...ts.ozlabs.org"
<devicetree-discuss@...ts.ozlabs.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-mmc@...r.kernel.org" <linux-mmc@...r.kernel.org>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"vinod.koul@...ux.intel.com" <vinod.koul@...ux.intel.com>,
"s.hauer@...gutronix.de" <s.hauer@...gutronix.de>,
"rob.herring@...xeda.com" <rob.herring@...xeda.com>,
"grant.likely@...retlab.ca" <grant.likely@...retlab.ca>,
"rdunlap@...otime.net" <rdunlap@...otime.net>,
"kernel@...gutronix.de" <kernel@...gutronix.de>,
"cjb@...top.org" <cjb@...top.org>,
Guo Shawn-R65073 <r65073@...escale.com>
Subject: Re: [PATCH v1 4/5] dma: mxs-dma: add dt probe support
On Wed, Mar 14, 2012 at 03:54:37PM +0800, Huang Shijie-B32955 wrote:
> Hi Aisheng:
> > From: Dong Aisheng<dong.aisheng@...aro.org>
> >
> > Signed-off-by: Dong Aisheng<dong.aisheng@...aro.org>
> > ---
> > .../devicetree/bindings/dma/fsl-mxs-dma.txt | 17 ++++++++
> > drivers/dma/mxs-dma.c | 44 +++++++++++++------
> > 2 files changed, 47 insertions(+), 14 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/dma/fsl-mxs-dma.txt b/Documentation/devicetree/bindings/dma/fsl-mxs-dma.txt
> > new file mode 100644
> > index 0000000..cfa1730
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/dma/fsl-mxs-dma.txt
> > @@ -0,0 +1,17 @@
> > +* Freescale MXS DMA
> > +
> > +Required properties:
> > +- compatible : Should be "fsl,mxs-dma-apbh" or "fsl,mxs-dma-apbx"
> > +- reg : Should contain registers location and length
> > +
> > +Examples:
> > +
> > +dma-apbh@...04000 {
> > + compatible = "fsl,mxs-dma-apbh";
> > + reg =<0x80004000 2000>;
> > +};
> > +
> > +dma-apbx@...24000 {
> > + compatible = "fsl,mxs-dma-apbx";
> > + reg =<0x80024000 2000>;
> > +};
> > diff --git a/drivers/dma/mxs-dma.c b/drivers/dma/mxs-dma.c
> > index b06cd4c..45e8d46 100644
> > --- a/drivers/dma/mxs-dma.c
> > +++ b/drivers/dma/mxs-dma.c
> > @@ -22,6 +22,9 @@
> > #include<linux/platform_device.h>
> > #include<linux/dmaengine.h>
> > #include<linux/delay.h>
> > +#include<linux/module.h>
> > +#include<linux/of.h>
> > +#include<linux/of_device.h>
> >
> > #include<asm/irq.h>
> > #include<mach/mxs.h>
> > @@ -130,6 +133,25 @@ struct mxs_dma_engine {
> > struct mxs_dma_chan mxs_chans[MXS_DMA_CHANNELS];
> > };
> >
> > +static struct platform_device_id mxs_dma_type[] = {
> > + {
> > + .name = "mxs-dma-apbh",
> > + .driver_data = MXS_DMA_APBH,
> > + }, {
> > + .name = "mxs-dma-apbx",
> > + .driver_data = MXS_DMA_APBX,
> > + }, {
> > + /* end of list */
> > + }
> > +};
> > +
> I think you should use the platform_device_id to distinguish different
> archs.
> In the mx6q, you will meet some compiler error for the macro cpu_is_mx23().
>
Yes, i will remove cpu_is_*() in mxs-mmc driver by using device id.
Regards
Dong Aisheng
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists