public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] ARM: kirkwood: fix cpu info for 6282 device id
Date: Fri, 4 Jul 2014 21:14:48 +0200	[thread overview]
Message-ID: <E1X38wb-0001In-Q9@janus> (raw)
In-Reply-To: <F766E4F80769BD478052FB6533FA745D5942585915@SC-VEXCH4.marvell.com>

Hi Prafulla,

On Fri, 4 Jul 2014 11:43:48 -0700, Prafulla Wadaskar
<prafulla@marvell.com> wrote:

> 
> 
> > -----Original Message-----
> > From: Luka Perkov [mailto:luka at openwrt.org]
> > Sent: 02 July 2014 05:48
> > To: u-boot at lists.denx.de
> > Cc: luka at openwrt.org; Prafulla Wadaskar; Stefan Roese
> > Subject: [PATCH] ARM: kirkwood: fix cpu info for 6282
> > device id
> > 
> > Signed-off-by: Luka Perkov <luka@openwrt.org>
> > CC: Prafulla Wadaskar <prafulla@marvell.com>
> > CC: Stefan Roese <sr@denx.de>
> > ---
> >  arch/arm/cpu/arm926ejs/kirkwood/cpu.c | 11 ++++++++---
> >  1 file changed, 8 insertions(+), 3 deletions(-)
> > 
> > diff --git a/arch/arm/cpu/arm926ejs/kirkwood/cpu.c
> > b/arch/arm/cpu/arm926ejs/kirkwood/cpu.c
> > index da80240..312d2b2 100644
> > --- a/arch/arm/cpu/arm926ejs/kirkwood/cpu.c
> > +++ b/arch/arm/cpu/arm926ejs/kirkwood/cpu.c
> > @@ -252,7 +252,7 @@ static void kw_sysrst_check(void)
> >  #if defined(CONFIG_DISPLAY_CPUINFO)
> >  int print_cpuinfo(void)
> >  {
> > -	char *rev;
> > +	char *rev = "??";
> >  	u16 devid = (readl(KW_REG_PCIE_DEVID) >> 16) &
> > 0xffff;
> >  	u8 revid = readl(KW_REG_PCIE_REVID) & 0xff;
> > 
> > @@ -263,7 +263,13 @@ int print_cpuinfo(void)
> > 
> >  	switch (revid) {
> >  	case 0:
> > -		rev = "Z0";
> > +		if (devid == 0x6281)
> > +			rev = "Z0";
> > +		else if (devid == 0x6282)
> > +			rev = "A0";
> > +		break;
> > +	case 1:
> > +		rev = "A1";
> >  		break;
> >  	case 2:
> >  		rev = "A0";
> > @@ -272,7 +278,6 @@ int print_cpuinfo(void)
> >  		rev = "A1";
> >  		break;
> >  	default:
> > -		rev = "??";
> >  		break;
> >  	}
> > 
> 
> Acked-By: Prafulla Wadaskar <prafulla@marvell.com>
> 
> Will be pulled latter.

Prafulla, just a note in case you intend to send a PR for 2014.07: I'll
be unavailable for U-Boot work from Monday july 7th to Tuesday july 22nd
inclusive, so meanwhile, a Marvell PR for 2014.07 would have to be sent
to Tom Rini.

> Regards...
> Prafulla . . .

Amicalement,
-- 
Albert.

      reply	other threads:[~2014-07-04 19:14 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-02  0:17 [U-Boot] [PATCH] ARM: kirkwood: fix cpu info for 6282 device id Luka Perkov
2014-07-02 13:24 ` Stefan Roese
2014-07-04 18:43 ` Prafulla Wadaskar
2014-07-04 19:14   ` Albert ARIBAUD [this message]

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=E1X38wb-0001In-Q9@janus \
    --to=albert.u.boot@aribaud.net \
    --cc=u-boot@lists.denx.de \
    /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