From patchwork Thu Aug 4 10:10:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 108405 X-Patchwork-Delegate: info@emk-elektronik.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 4AB5BB6F70 for ; Thu, 4 Aug 2011 20:10:48 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0463028081; Thu, 4 Aug 2011 12:10:45 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Keo8rk8Q0pkK; Thu, 4 Aug 2011 12:10:44 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9BFD528082; Thu, 4 Aug 2011 12:10:42 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7313B28084 for ; Thu, 4 Aug 2011 12:10:39 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QJPddcSYsJdR for ; Thu, 4 Aug 2011 12:10:37 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail.free-electrons.com (mail.free-electrons.com [88.190.12.23]) by theia.denx.de (Postfix) with ESMTP id 953CB28081 for ; Thu, 4 Aug 2011 12:10:36 +0200 (CEST) Received: by mail.free-electrons.com (Postfix, from userid 106) id 422081EF; Thu, 4 Aug 2011 12:10:35 +0200 (CEST) Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id 76D98143; Thu, 4 Aug 2011 12:10:28 +0200 (CEST) From: Thomas Petazzoni To: u-boot@lists.denx.de Date: Thu, 4 Aug 2011 12:10:23 +0200 Message-Id: <1312452625-11060-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.4.1 Subject: [U-Boot] Update at91sam9m10g45 SoC and AT91SAM9M10G45-EK board to new style X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Hello, These two patches update the support of the AT91SAM9M10G45 SoC and the corresponding AT91SAM9M10G45-EK evaluation platform to the next AT91 organization. For the moment, only the nandflash configuration is supported, the dataflash configuration will come later on. Note however that the AT91 Ethernet driver doesn't work in the current master, due to the D-cache being enabled by c2dd0d45540397704de9b13287417d21049d34c6. Waiting for a proper solution to this problem, I am currently doing the testing with the following workaround: Best regards, Thomas Petazzoni diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 90709d0..761e233 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -450,7 +450,9 @@ void board_init_r (gd_t *id, ulong dest_addr) * Enable D$: * I$, if needed, must be already enabled in start.S */ +#if 0 dcache_enable(); +#endif debug ("monitor flash len: %08lX\n", monitor_flash_len); board_init(); /* Setup chipselects */