From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Warren Date: Tue, 10 Mar 2009 09:18:21 -0700 Subject: [U-Boot] [PATCH] at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC. In-Reply-To: <49B68338.4080502@atmel.com> References: <49B68338.4080502@atmel.com> Message-ID: <49B692CD.9090302@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Nicolas, Nicolas Ferre wrote: > AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed. > > The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board. > It is essentially the same, with a few minor differences. > > Here is the chip page on Atmel website: > http://www.atmel.com/dyn/products/product_card.asp?part_id=4337 > > Signed-off-by: Justin Waters > Signed-off-by: Nicolas Ferre > > diff --git a/drivers/net/macb.c b/drivers/net/macb.c > index af0409b..6de0a04 100644 > --- a/drivers/net/macb.c > +++ b/drivers/net/macb.c > @@ -447,14 +447,14 @@ static int macb_init(struct eth_device *netdev, bd_t *bd) > /* choose RMII or MII mode. This depends on the board */ > #ifdef CONFIG_RMII > #if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \ > - defined(CONFIG_AT91SAM9263) > + defined(CONFIG_AT91SAM9263) || defined(CONFIG_AT91SAM9G20) > macb_writel(macb, USRIO, MACB_BIT(RMII) | MACB_BIT(CLKEN)); > #else > macb_writel(macb, USRIO, 0); > #endif > #else > #if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \ > - defined(CONFIG_AT91SAM9263) > + defined(CONFIG_AT91SAM9263) || defined(CONFIG_AT91SAM9G20) > macb_writel(macb, USRIO, MACB_BIT(CLKEN)); > #else > macb_writel(macb, USRIO, MACB_BIT(MII)); > Please see my previous feedback on this. regards, Ben