From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Gorsulowski Date: Mon, 06 Apr 2009 09:56:50 +0200 Subject: [U-Boot] [PATCH 2/2] at91: Add support for esd MEESC board In-Reply-To: <20090405111021.GA21187@game.jcrosoft.org> References: <12381458531295-git-send-email-Daniel.Gorsulowski@esd.eu> <1238145854513-git-send-email-Daniel.Gorsulowski@esd.eu> <20090405111021.GA21187@game.jcrosoft.org> Message-ID: <49D9B5C2.4030302@esd.eu> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 10:24 Fri 27 Mar , Daniel Gorsulowski wrote: >> This patch adds support for MEESC board from esd gmbh. >> The MEESC is based on an Atmel AT91SAM9263 SoC. >> >> Signed-off-by: Daniel Gorsulowski >> --- > please rebase your patch against > > git://git.denx.de/u-boot-at91.git branch clock > > Best Regards, > J. sorry, but my board does not boot by this branch. Followed by the bootstrapper-"RomBOOT"-prompt just some cryptical characters appear. Seems like the cpu clock is not initialized correctly. The board uses an 16.0 Mhz crystal. I configured as followed: /* ARM asynchronous clock */ #define AT91_CPU_NAME "AT91SAM9263" #define AT91_MAIN_CLOCK 16000000 /* 16.0 MHz crystal */ #define CONFIG_SYS_HZ 1000 /* decrementer freq */ #define CONFIG_MEESC 1 /* Board is esd MEESC */ #define CONFIG_ARM926EJS 1 /* This is an ARM926EJS Core */ #define CONFIG_AT91SAM9263 1 /* It's an AT91SAM9263 SoC*/ #define CONFIG_ARCH_CPU_INIT 1 ... If I build from git://git.denx.de/u-boot.git branch master after applying my patches, the board boots up correctly. Best Regards, Daniel