public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Dirk Behme <dirk.behme@googlemail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] OMAP3EVM: net_chip uses CS5 not CS6
Date: Wed, 06 May 2009 16:55:09 +0200	[thread overview]
Message-ID: <4A01A4CD.2060605@googlemail.com> (raw)
In-Reply-To: <1241614855-8087-1-git-send-email-mludwig@ultratronik.de>

Matthias Ludwig wrote:
> Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>

Matthias: Thanks for fixing this!

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

  reply	other threads:[~2009-05-06 14:55 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 [this message]
2009-05-07  7:04   ` Pillai, Manikandan
2009-05-07  7:11     ` Matthias Ludwig
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=4A01A4CD.2060605@googlemail.com \
    --to=dirk.behme@googlemail.com \
    --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