All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dong Aisheng <aisheng.dong@freescale.com>
To: Marek Vasut <marek.vasut@gmail.com>
Cc: "linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	Dong Aisheng-B29396 <B29396@freescale.com>,
	"devicetree-discuss@lists.ozlabs.org"
	<devicetree-discuss@lists.ozlabs.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
	"vinod.koul@linux.intel.com" <vinod.koul@linux.intel.com>,
	"s.hauer@pengutronix.de" <s.hauer@pengutronix.de>,
	"rob.herring@calxeda.com" <rob.herring@calxeda.com>,
	"grant.likely@secretlab.ca" <grant.likely@secretlab.ca>,
	"rdunlap@xenotime.net" <rdunlap@xenotime.net>,
	"kernel@pengutronix.de" <kernel@pengutronix.de>,
	"cjb@laptop.org" <cjb@laptop.org>,
	Guo Shawn-R65073 <r65073@freescale.com>
Subject: Re: [PATCH v1 2/5] mmc: mxs-mmc: add dt probe support
Date: Wed, 14 Mar 2012 15:26:04 +0800	[thread overview]
Message-ID: <20120314072603.GC8494@shlinux2.ap.freescale.net> (raw)
In-Reply-To: <201203140809.22676.marek.vasut@gmail.com>

On Wed, Mar 14, 2012 at 08:09:22AM +0100, Marek Vasut wrote:
> Dear Dong Aisheng,
> 
> > On Wed, Mar 14, 2012 at 01:58:25PM +0800, Marek Vasut wrote:
> > > Dear Dong Aisheng,
> > > 
> > > > Signed-off-by: Dong Aisheng <dong.aisheng@linaro.org>
> > 
> > ........
> > 
> > > > +static const struct of_device_id mxs_mmc_dt_ids[] = {
> > > > +	{ .compatible = "fsl,imx23-mmc", .data = NULL, },
> > > > +	{ .compatible = "fsl,imx28-mmc", .data = NULL, },
> > > 
> > > Do you really need two distinct ones here?
> > 
> > Hmm, my original purpose is to put soc difference data in .data
> > to remove cpu_is_* function calls in the driver later.
> > Do you think if any issue?
> > 
> 
> Well, what's the difference between the interfaces on mx233 and mx28? Is it 
> something that can't be encoded otherwise? I think they're not so different.
> 
Not much difference except the one register offset and ip version.
See:
#define SSP_VERSION_LATEST      4
#define ssp_is_old()            (host->version < SSP_VERSION_LATEST)
..
#define HW_SSP_VERSION (cpu_is_mx23() ? 0x110 : 0x130)
The ip version can be handled in driver, but for offset...
it depends on cpu_is_* macro.
Putting the HW_SSP_VERSION offset difference in .data can eliminate the need
of cpu_is_*.

Despite of that, since they're two devices,
i guess it's ok to put two compatible string there, right?
Or you thought just put one as below?
{ .compatible = "fsl,mxs-mmc", .data = NULL, },

Regards
Dong Aisheng


WARNING: multiple messages have this Message-ID (diff)
From: aisheng.dong@freescale.com (Dong Aisheng)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v1 2/5] mmc: mxs-mmc: add dt probe support
Date: Wed, 14 Mar 2012 15:26:04 +0800	[thread overview]
Message-ID: <20120314072603.GC8494@shlinux2.ap.freescale.net> (raw)
In-Reply-To: <201203140809.22676.marek.vasut@gmail.com>

On Wed, Mar 14, 2012 at 08:09:22AM +0100, Marek Vasut wrote:
> Dear Dong Aisheng,
> 
> > On Wed, Mar 14, 2012 at 01:58:25PM +0800, Marek Vasut wrote:
> > > Dear Dong Aisheng,
> > > 
> > > > Signed-off-by: Dong Aisheng <dong.aisheng@linaro.org>
> > 
> > ........
> > 
> > > > +static const struct of_device_id mxs_mmc_dt_ids[] = {
> > > > +	{ .compatible = "fsl,imx23-mmc", .data = NULL, },
> > > > +	{ .compatible = "fsl,imx28-mmc", .data = NULL, },
> > > 
> > > Do you really need two distinct ones here?
> > 
> > Hmm, my original purpose is to put soc difference data in .data
> > to remove cpu_is_* function calls in the driver later.
> > Do you think if any issue?
> > 
> 
> Well, what's the difference between the interfaces on mx233 and mx28? Is it 
> something that can't be encoded otherwise? I think they're not so different.
> 
Not much difference except the one register offset and ip version.
See:
#define SSP_VERSION_LATEST      4
#define ssp_is_old()            (host->version < SSP_VERSION_LATEST)
..
#define HW_SSP_VERSION (cpu_is_mx23() ? 0x110 : 0x130)
The ip version can be handled in driver, but for offset...
it depends on cpu_is_* macro.
Putting the HW_SSP_VERSION offset difference in .data can eliminate the need
of cpu_is_*.

Despite of that, since they're two devices,
i guess it's ok to put two compatible string there, right?
Or you thought just put one as below?
{ .compatible = "fsl,mxs-mmc", .data = NULL, },

Regards
Dong Aisheng

  parent reply	other threads:[~2012-03-14  7:24 UTC|newest]

Thread overview: 150+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-13  8:47 [PATCH v1 0/5] dt: add basic imx28 support Dong Aisheng
2012-03-13  8:47 ` Dong Aisheng
2012-03-13  8:47 ` Dong Aisheng
2012-03-13  8:47 ` [PATCH v1 1/5] ARM: imx28: add basic dt support Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13 14:35   ` Rob Herring
2012-03-13 14:35     ` Rob Herring
2012-03-13 14:59     ` Zach Sadecki
2012-03-13 14:59       ` Zach Sadecki
2012-03-13 14:59       ` Zach Sadecki
2012-03-13 17:28       ` Grant Likely
2012-03-13 17:28         ` Grant Likely
2012-03-14  5:38         ` Shawn Guo
2012-03-14  5:38           ` Shawn Guo
2012-03-14  6:23     ` Dong Aisheng
2012-03-14  6:23       ` Dong Aisheng
2012-03-14  6:23       ` Dong Aisheng
2012-03-14  6:51       ` Marek Vasut
2012-03-14  6:51         ` Marek Vasut
2012-03-14 13:05       ` Rob Herring
2012-03-14 13:05         ` Rob Herring
2012-03-15  2:57         ` Dong Aisheng
2012-03-15  2:57           ` Dong Aisheng
2012-03-13 17:23   ` Grant Likely
2012-03-13 17:23     ` Grant Likely
2012-03-14  5:41     ` Shawn Guo
2012-03-14  5:41       ` Shawn Guo
2012-03-14  5:56       ` Marek Vasut
2012-03-14  5:56         ` Marek Vasut
2012-03-14  6:30       ` Dong Aisheng
2012-03-14  6:30         ` Dong Aisheng
2012-03-14  6:30         ` Dong Aisheng
2012-03-14 12:45     ` Dong Aisheng
2012-03-14 12:45       ` Dong Aisheng
2012-03-14 14:16       ` s.hauer
2012-03-14 14:16         ` s.hauer at pengutronix.de
2012-03-15  3:02         ` Dong Aisheng
2012-03-15  3:02           ` Dong Aisheng
2012-03-15  6:53           ` Lothar Waßmann
2012-03-15  6:53             ` Lothar Waßmann
2012-03-15  6:53             ` Lothar Waßmann
2012-03-15 10:59             ` Dong Aisheng
2012-03-15 10:59               ` Dong Aisheng
     [not found]               ` <20120315105927.GE13022-Fb7DQEYuewWctlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org>
2012-03-15 11:22                 ` Lothar Waßmann
2012-03-15 11:22                   ` Lothar Waßmann
2012-03-15 11:22                   ` Lothar Waßmann
2012-03-16  3:01                   ` Dong Aisheng
2012-03-16  3:01                     ` Dong Aisheng
2012-03-16  7:48                     ` Lothar Waßmann
2012-03-16  7:48                       ` Lothar Waßmann
2012-03-16  7:48                       ` Lothar Waßmann
2012-03-16  8:22                       ` Dong Aisheng
2012-03-16  8:22                         ` Dong Aisheng
     [not found]                     ` <20120316030134.GA5161-Fb7DQEYuewWctlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org>
2012-03-18 18:47                       ` Grant Likely
2012-03-18 18:47                         ` Grant Likely
2012-03-19  6:54                         ` Lothar Waßmann
2012-03-19  6:54                           ` Lothar Waßmann
2012-03-19  6:54                           ` Lothar Waßmann
     [not found]                           ` <20326.55337.249575.289067-VjFSrY7JcPWvSplVBqRQBQ@public.gmane.org>
2012-03-19 15:06                             ` Grant Likely
2012-03-19 15:06                               ` Grant Likely
2012-03-19 16:49                               ` Lothar Waßmann
2012-03-19 16:49                                 ` Lothar Waßmann
2012-03-19 16:49                                 ` Lothar Waßmann
     [not found]                                 ` <20327.25470.723875.916422-VjFSrY7JcPWvSplVBqRQBQ@public.gmane.org>
2012-03-19 22:02                                   ` Grant Likely
2012-03-19 22:02                                     ` Grant Likely
2012-03-20 12:49                                     ` Dong Aisheng
2012-03-20 12:49                                       ` Dong Aisheng
2012-03-20 13:17                                       ` Lothar Waßmann
2012-03-20 13:17                                         ` Lothar Waßmann
2012-03-20 13:17                                         ` Lothar Waßmann
2012-03-21 11:06                                         ` Dong Aisheng
2012-03-21 11:06                                           ` Dong Aisheng
2012-03-16  8:49                   ` Shawn Guo
2012-03-16  8:49                     ` Shawn Guo
2012-03-15 11:24               ` s.hauer
2012-03-15 11:24                 ` s.hauer at pengutronix.de
2012-03-16  3:05                 ` Dong Aisheng
2012-03-16  3:05                   ` Dong Aisheng
2012-03-14 19:41   ` Sascha Hauer
2012-03-14 19:41     ` Sascha Hauer
2012-03-15  3:05     ` Dong Aisheng
2012-03-15  3:05       ` Dong Aisheng
2012-03-13  8:47 ` [PATCH v1 2/5] mmc: mxs-mmc: add dt probe support Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13 17:42   ` Grant Likely
2012-03-13 17:42     ` Grant Likely
2012-03-14  6:42     ` Dong Aisheng
2012-03-14  6:42       ` Dong Aisheng
2012-03-14  5:58   ` Marek Vasut
2012-03-14  5:58     ` Marek Vasut
2012-03-14  6:55     ` Dong Aisheng
2012-03-14  6:55       ` Dong Aisheng
2012-03-14  7:09       ` Marek Vasut
2012-03-14  7:09         ` Marek Vasut
2012-03-14  7:13         ` s.hauer
2012-03-14  7:13           ` s.hauer at pengutronix.de
2012-03-14  7:26         ` Dong Aisheng [this message]
2012-03-14  7:26           ` Dong Aisheng
2012-03-14 11:17           ` Marek Vasut
2012-03-14 11:17             ` Marek Vasut
2012-03-14 11:17             ` Marek Vasut
2012-03-14  7:23   ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  7:23     ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  8:09     ` Dong Aisheng
2012-03-14  8:09       ` Dong Aisheng
     [not found]       ` <20120314080939.GA1180-Fb7DQEYuewWctlrPMvKcciBecyulp+rMXqFh9Ls21Oc@public.gmane.org>
2012-03-14  8:52         ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  8:52           ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  8:52           ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-13  8:47 ` [PATCH v1 3/5] ARM: imx28evk: add mmc dt support Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13 14:39   ` Rob Herring
2012-03-13 14:39     ` Rob Herring
2012-03-13 16:52     ` Sascha Hauer
2012-03-13 16:52       ` Sascha Hauer
2012-03-13 17:45       ` Rob Herring
2012-03-13 17:45         ` Rob Herring
2012-03-14  7:30         ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  7:30           ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  8:20           ` Dong Aisheng
2012-03-14  8:20             ` Dong Aisheng
2012-03-14  8:54             ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  8:54               ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  7:28   ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-14  7:28     ` Jean-Christophe PLAGNIOL-VILLARD
2012-03-13  8:47 ` [PATCH v1 4/5] dma: mxs-dma: add dt probe support Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-14  7:54   ` Huang Shijie
2012-03-14  7:54     ` Huang Shijie
2012-03-14  7:54     ` Huang Shijie
2012-03-14  8:23     ` Dong Aisheng
2012-03-14  8:23       ` Dong Aisheng
2012-03-13  8:47 ` [PATCH v1 5/5] ARM: mxs: add mxs dma dt support Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-13  8:47   ` Dong Aisheng
2012-03-14  7:58   ` Huang Shijie
2012-03-14  7:58     ` Huang Shijie
2012-03-14  7:58     ` Huang Shijie
2012-03-14  8:30     ` Dong Aisheng
2012-03-14  8:30       ` Dong Aisheng
2012-03-14  8:43       ` Huang Shijie
2012-03-14  8:43         ` Huang Shijie
2012-03-14  6:01 ` [PATCH v1 0/5] dt: add basic imx28 support Marek Vasut
2012-03-14  6:01   ` Marek Vasut
2012-03-14  7:34   ` Dong Aisheng
2012-03-14  7:34     ` Dong Aisheng
2012-03-14  7:34     ` Dong Aisheng

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=20120314072603.GC8494@shlinux2.ap.freescale.net \
    --to=aisheng.dong@freescale.com \
    --cc=B29396@freescale.com \
    --cc=cjb@laptop.org \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=grant.likely@secretlab.ca \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=marek.vasut@gmail.com \
    --cc=r65073@freescale.com \
    --cc=rdunlap@xenotime.net \
    --cc=rob.herring@calxeda.com \
    --cc=s.hauer@pengutronix.de \
    --cc=vinod.koul@linux.intel.com \
    /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.