public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Matthias Ludwig <mludwig@ultratronik.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] OMAP3EVM: net_chip uses CS5 not CS6
Date: Thu, 7 May 2009 09:11:55 +0200	[thread overview]
Message-ID: <20090507071155.GA8961@ultratronik.de> (raw)
In-Reply-To: <19F8576C6E063C45BE387C64729E739404323ED93C@dbde02.ent.ti.com>

This is not really a change. The cs configuration was correct, but not
the naming of it.

OMAP34XX_GPMC_BASE (0x6e000000) + 0x150 = base address of configuration
registers for GPMC-CS5 not GPMC-CS6.

best regards,
Matthias


On Thu, May 07, 2009 at 12:34:01PM +0530, Pillai, Manikandan wrote:
> 
> 
> > -----Original Message-----
> > From: Dirk Behme [mailto:dirk.behme at googlemail.com]
> > Sent: Wednesday, May 06, 2009 8:25 PM
> > To: Matthias Ludwig; Pillai, Manikandan
> > Cc: u-boot at lists.denx.de
> > Subject: Re: [PATCH] OMAP3EVM: net_chip uses CS5 not CS6
> > 
> > Matthias Ludwig wrote:
> > > Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
> > 
> > Matthias: Thanks for fixing this!
> [Pillai, Manikandan] not sure why this change in the Chip select
> 
> > 
> > Mani: Can we get your ack as EVM maintainer?
> > 
> > Many thanks and best regards
> > 
> > Dirk
> > 
> > > ---
> > >  board/omap3/evm/evm.c            |   16 ++++++++--------
> > >  include/asm-arm/arch-omap3/cpu.h |    5 +++--
> > >  2 files changed, 11 insertions(+), 10 deletions(-)
> > >
> > > diff --git a/board/omap3/evm/evm.c b/board/omap3/evm/evm.c
> > > index c008c2e..5fd5efa 100644
> > > --- a/board/omap3/evm/evm.c
> > > +++ b/board/omap3/evm/evm.c
> > > @@ -92,17 +92,17 @@ void set_muxconf_regs(void)
> > >  static void setup_net_chip(void)
> > >  {
> > >  	gpio_t *gpio3_base = (gpio_t *)OMAP34XX_GPIO3_BASE;
> > > -	gpmc_csx_t *gpmc_cs6_base = (gpmc_csx_t *)GPMC_CONFIG_CS6_BASE;
> > > +	gpmc_csx_t *gpmc_cs5_base = (gpmc_csx_t *)GPMC_CONFIG_CS5_BASE;
> > >  	ctrl_t *ctrl_base = (ctrl_t *)OMAP34XX_CTRL_BASE;
> > >
> > >  	/* Configure GPMC registers */
> > > -	writel(NET_GPMC_CONFIG1, &gpmc_cs6_base->config1);
> > > -	writel(NET_GPMC_CONFIG2, &gpmc_cs6_base->config2);
> > > -	writel(NET_GPMC_CONFIG3, &gpmc_cs6_base->config3);
> > > -	writel(NET_GPMC_CONFIG4, &gpmc_cs6_base->config4);
> > > -	writel(NET_GPMC_CONFIG5, &gpmc_cs6_base->config5);
> > > -	writel(NET_GPMC_CONFIG6, &gpmc_cs6_base->config6);
> > > -	writel(NET_GPMC_CONFIG7, &gpmc_cs6_base->config7);
> > > +	writel(NET_GPMC_CONFIG1, &gpmc_cs5_base->config1);
> > > +	writel(NET_GPMC_CONFIG2, &gpmc_cs5_base->config2);
> > > +	writel(NET_GPMC_CONFIG3, &gpmc_cs5_base->config3);
> > > +	writel(NET_GPMC_CONFIG4, &gpmc_cs5_base->config4);
> > > +	writel(NET_GPMC_CONFIG5, &gpmc_cs5_base->config5);
> > > +	writel(NET_GPMC_CONFIG6, &gpmc_cs5_base->config6);
> > > +	writel(NET_GPMC_CONFIG7, &gpmc_cs5_base->config7);
> > >
> > >  	/* Enable off mode for NWE in PADCONF_GPMC_NWE register */
> > >  	writew(readw(&ctrl_base ->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
> > > diff --git a/include/asm-arm/arch-omap3/cpu.h b/include/asm-arm/arch-
> > omap3/cpu.h
> > > index c544e0c..a4ce45a 100644
> > > --- a/include/asm-arm/arch-omap3/cpu.h
> > > +++ b/include/asm-arm/arch-omap3/cpu.h
> > > @@ -84,9 +84,10 @@ typedef struct ctrl_id {
> > >  /* GPMC CS3/cs4/cs6 not avaliable */
> > >  #define GPMC_BASE		(OMAP34XX_GPMC_BASE)
> > >  #define GPMC_CONFIG_CS0		0x60
> > > -#define GPMC_CONFIG_CS6		0x150
> > > +#define GPMC_CONFIG_CS5		0x150
> > > +
> > >  #define GPMC_CONFIG_CS0_BASE	(GPMC_BASE + GPMC_CONFIG_CS0)
> > > -#define GPMC_CONFIG_CS6_BASE	(GPMC_BASE + GPMC_CONFIG_CS6)
> > > +#define GPMC_CONFIG_CS5_BASE	(GPMC_BASE + GPMC_CONFIG_CS5)
> > >  #define GPMC_CONFIG_WP		0x10
> > >
> > >  #define GPMC_CONFIG_WIDTH	0x30
> > 
> 

-- 
Matthias Ludwig, Software Development
Ultratronik Entwicklungs GmbH, Gewerbestrasse 52, 82211 Herrsching, Germany
http://www.ultratronik.de  Tel: +49 8152 3709-356  Fax: +49 8152 5183
Registergericht Muenchen, HRB 55584

  reply	other threads:[~2009-05-07  7:11 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-06 13:00 [U-Boot] [PATCH] OMAP3EVM: net_chip uses CS5 not CS6 Matthias Ludwig
2009-05-06 14:55 ` Dirk Behme
2009-05-07  7:04   ` Pillai, Manikandan
2009-05-07  7:11     ` Matthias Ludwig [this message]
2009-05-07  7:15       ` Pillai, Manikandan
2009-05-07  8:36       ` Wolfgang Denk
2009-05-07 15:16         ` Dirk Behme
2009-05-07 18:58           ` Wolfgang Denk
2009-05-07 19:18             ` Scott Wood
2009-05-07 20:42               ` Wolfgang Denk
2009-05-07 20:56                 ` Scott Wood
2009-05-07 21:04                   ` Wolfgang Denk
2009-05-07 21:10                     ` Scott Wood
2009-05-08 12:28                       ` Detlev Zundel
2009-05-08 15:10                         ` Dirk Behme
2009-05-08  8:42             ` Matthias Ludwig
2009-05-08  9:00               ` Wolfgang Denk
2009-05-08 15:12               ` Dirk Behme
2009-05-07 20:57       ` Jean-Christophe PLAGNIOL-VILLARD

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=20090507071155.GA8961@ultratronik.de \
    --to=mludwig@ultratronik.de \
    --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