mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v2 6/7] mx53-loco: add board revision support
Date: Mon, 27 Feb 2012 19:58:52 +0100	[thread overview]
Message-ID: <20120227185852.GG3852@pengutronix.de> (raw)
In-Reply-To: <20120227154023.GD3318@game.jcrosoft.org>

On Mon, Feb 27, 2012 at 04:40:23PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 09:20 Mon 27 Feb     , Eric Bénard wrote:
> > - this is taken from freescale-mx35-3-stack/3stack.c and allows
> > this board to run Freescale's kernel which relies on the system
> > revision to configure the correct PMIC.
> > 
> > - On rev0 boards (with DA9053), the log is :
> > detected i.MX53 rev 2.1
> > MCIMX53-START board 1.0
> > 
> > On newer boards (rev A or B with MC34708), the log is :
> > mc34708-i2c@mc34708-i2c0: MC34708 ID: 0x0014
> > detected i.MX53 rev 2.1
> > MCIMX53-START-R board 1.0 rev B
> > 
> > Signed-off-by: Eric Bénard <eric@eukrea.com>
> > ---
> >  arch/arm/boards/freescale-mx53-loco/board.c |   51 +++++++++++++++++++++++++++
> >  1 files changed, 51 insertions(+), 0 deletions(-)
> > 
> > diff --git a/arch/arm/boards/freescale-mx53-loco/board.c b/arch/arm/boards/freescale-mx53-loco/board.c
> > index 66ff040..6c0e1d1 100644
> > --- a/arch/arm/boards/freescale-mx53-loco/board.c
> > +++ b/arch/arm/boards/freescale-mx53-loco/board.c
> > @@ -103,6 +103,31 @@ static struct i2c_board_info i2c_devices[] = {
> >  	},
> >  };
> >  
> > +/*
> > + * Revision to be passed to kernel. The kernel provided
> > + * by freescale relies on this.
> > + *
> > + * C --> CPU type
> > + * S --> Silicon revision
> > + * B --> Board rev
> > + *
> > + * 31    20     16     12    8      4     0
> > + *        | Cmaj | Cmin | B  | Smaj | Smin|
> > + *
> > + * e.g 0x00053120 --> i.MX35, Cpu silicon rev 2.0, Board rev 2
> > +*/
> > +static unsigned int loco_system_rev = 0x00053000;
> > +
> > +static void set_silicon_rev( int rev)
> > +{
> > +	loco_system_rev = loco_system_rev | (rev & 0xFF);
> > +}
> > +
> > +static void set_board_rev(int rev)
> > +{
> > +	loco_system_rev =  (loco_system_rev & ~(0xF << 8)) | (rev & 0xF) << 8;
> > +}
> > +
> >  static int loco_mem_init(void)
> >  {
> >  	arm_add_mem_device("ram0", 0x70000000, SZ_512M);
> > @@ -149,6 +174,8 @@ static int loco_devices_init(void)
> >  
> >  	loco_fec_reset();
> >  
> > +	set_silicon_rev(imx_silicon_revision());
> > +
> >  	armlinux_set_bootparams((void *)0x70000100);
> >  	armlinux_set_architecture(MACH_TYPE_MX53_LOCO);
> >  
> > @@ -177,3 +204,27 @@ static int loco_console_init(void)
> >  }
> >  
> >  console_initcall(loco_console_init);
> > +
> > +static int loco_pmic_init(void)
> > +{
> > +	struct mc34708 *mc34708;
> > +	int rev;
> > +
> > +	mc34708 = mc34708_get();
> > +	if (!mc34708) {
> > +		/* so we have a DA9053 based board */
> > +		printf("MCIMX53-START board 1.0\n");
> > +		armlinux_set_revision(loco_system_rev);
> > +		return 0;
> > +	}
> here I still don't like the idea to check the pointer
> 
> check the file exist is the rigght way

I don't agree.

Sascha


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2012-02-27 18:59 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-21  0:27 [PATCH 1/7] add i2c clock support Eric Bénard
2012-02-21  0:27 ` [PATCH 2/7] mfd: add mc34708 driver Eric Bénard
2012-02-21  3:48   ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-21  7:03     ` Eric Bénard
2012-02-21 13:03       ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-21 13:22         ` Eric Bénard
2012-02-21 14:10           ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-21 15:35             ` Eric Bénard
2012-02-21 15:38               ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-21 20:45                 ` Sascha Hauer
2012-02-21 21:09                   ` Marc Reilly
2012-02-21  0:27 ` [PATCH 3/7] i.MX53: add silicn revision functions Eric Bénard
2012-02-22  7:33   ` Sascha Hauer
2012-02-27  8:20     ` [PATCH v2 1/7] add i2c clock support Eric Bénard
2012-02-27  8:20       ` [PATCH v2 2/7] mfd: add mc34708 driver Eric Bénard
2012-02-27  8:20       ` [PATCH v2 3/7] i.MX53: add silicon revision functions Eric Bénard
2012-02-27  8:20       ` [PATCH v2 4/7] i.MX53: enable pull up on I2C0 pins Eric Bénard
2012-02-27  8:20       ` [PATCH v2 5/7] mx53-loco: add i2c support Eric Bénard
2012-02-27  8:20       ` [PATCH v2 6/7] mx53-loco: add board revision support Eric Bénard
2012-02-27 15:40         ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-27 18:58           ` Sascha Hauer [this message]
2012-02-27  8:20       ` [PATCH v2 7/7] mx53-loco: update defconfig Eric Bénard
2012-02-27 18:59       ` [PATCH v2 1/7] add i2c clock support Sascha Hauer
2012-02-21  0:27 ` [PATCH 4/7] i.MX53: enable pull up on I2C0 pins Eric Bénard
2012-02-21  0:27 ` [PATCH 5/7] mx53-loco: add i2c support Eric Bénard
2012-02-21  0:27 ` [PATCH 6/7] mx53-loco: add board revision support Eric Bénard
2012-02-21  3:50   ` Jean-Christophe PLAGNIOL-VILLARD
2012-02-21  0:27 ` [PATCH 7/7] mx53-loco: update defconfig Eric Bénard

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=20120227185852.GG3852@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=plagnioj@jcrosoft.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox