From: Ulf Samuelsson <ulf.samuelsson@atmel.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: Contents of the "origin/ulf/linux-2.6.30.2" branch. Help with testing wanted.
Date: Sat, 22 Aug 2009 19:45:51 +0200 [thread overview]
Message-ID: <4A902ECF.3090909@atmel.com> (raw)
In-Reply-To: <200908211353.59344.marcin@juszkiewicz.com.pl>
Marcin Juszkiewicz skrev:
> Dnia środa, 12 sierpnia 2009 o 15:32:50 Ulf Samuelsson napisał(a):
>>> I had to add patch to 2.12 to get rid of -fno-dwarf2-cfi-asm parametr
>>> passed to GCC. Did not tested with 2.13-rc1 as at91.com is not
>>> reachable.
>> Yes, fixed in 2.13-rc1
>> Will send you the source file.
>
> 2.13-rc1 gaves me non-booting board:
>
> RomBOOT
>> *** AT91Bootstrap-2.13-rc1
>> AT45DB642D detected
>> invalidboot
>> AT45DB642D detected
>> invalidboot
>> AT45DB642D detected
>> invalidboot
>
> Any ideas? I have same problem when 2.12 is used. 1.14 works still.
>
This is the code that will block your progress.
Can you provide the first 8 dwords of the image you ae trying to load?
Maybe you have not initialized all the trap vectors
or you are doing something valid, but unexpected.
Are you loading something else than U-Boot?
As you see, you can disable the check in your configuration file.
#if defined(CONFIG_APP_CHECK)
/*------------------------------------------------------------------------------*/
/* \fn df_is_boot_valid */
/* \brief Check that the first bytes of the buffer are valid ARM vectors */
/*------------------------------------------------------------------------------*/
static unsigned int df_is_boot_valid(unsigned char *buffer)
{
int i = 3;
/* Verify if the 28 first bytes of the sram correspond to ARM vectors
The sixth ARM vector contain the size of the code */
while(i < 28)
{
if (i != 23)
{
if ((buffer[i] != 0xEA) && (buffer[i] != 0xE5) )
return FAILURE;
}
i+=4;
}
return SUCCESS;
}
#endif
> Regards,
Have now checked the source:
The 2.13 is based on the 1.13 sources.
The 1,14 source code is not available on the Atmel.
I will point that out.
Differences between the 1 series and the 2 series are:
1) Kconfig - You can do make <board>_config from OpenEmbedded
If you want to modify something it is much harder
2) Init of EBI1 of SAM9263
3) Bus Matrix Initialization
4) User reset enabled -but it does not work on the G45!
5) Not depending on a c library.
Can be compiled with any gcc compiler,
not just somehing with newlib.
etc.
The 1 series is provided by Atmel in Rousset,
and I have done the 2 series.
--
Best Regards
Ulf Samuelsson
next prev parent reply other threads:[~2009-08-22 18:03 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-11 18:55 Contents of the "origin/ulf/linux-2.6.30.2" branch. Help with testing wanted Ulf Samuelsson
2009-08-12 12:33 ` Marcin Juszkiewicz
2009-08-12 13:32 ` Ulf Samuelsson
2009-08-21 11:53 ` Marcin Juszkiewicz
2009-08-22 7:41 ` Ulf Samuelsson
2009-08-23 10:55 ` Marcin Juszkiewicz
2009-08-22 17:45 ` Ulf Samuelsson [this message]
2009-08-23 10:41 ` Marcin Juszkiewicz
2009-08-23 11:31 ` Ulf Samuelsson
2009-08-12 15:13 ` Koen Kooi
2009-08-12 15:56 ` Phil Blundell
2009-08-12 22:09 ` Ulf Samuelsson
2009-08-13 7:12 ` Koen Kooi
2009-08-13 7:10 ` Ulf Samuelsson
2009-08-13 17:34 ` Contents of the "origin/ulf/linux-2.6.30.2" branch. Status update Ulf Samuelsson
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=4A902ECF.3090909@atmel.com \
--to=ulf.samuelsson@atmel.com \
--cc=openembedded-devel@lists.openembedded.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.