About 2.6.14 on AMCC Yosemite board
Wolfgang Denk
wd at denx.de
Thu Nov 3 03:46:44 EST 2005
Dear Kylong Mu,
in message <20051102135009.27C46102A at smtp.263.net> you wrote:
>
> I've got my Yosemite board today, it's shows very good by default test.
> I downloaded the 2.6.14 according the repository from your website by cogito.
> with default configure, I boot with the uImage, but the system halt, attachment
> is the message.
> I don't know what happen with it, pls help me.
...
> DRAM: 256 MB
> FLASH: 32 MB
---------^^^^^
That's the problem. The board we got from AMCC for the port and for
testing all had 64 MB flash, and there was no information that other
configurations are available too. The MTD mapping driver ist a bit
braindead at the moment and assumes 64 MB. This fails on your board.
The quick and dirty fix is to edit "drivers/mtd/maps/yosemite.c" and
replace the lines:
...
31
32 #define WINDOW_ADDR 0xfc000000
33 #define WINDOW_SIZE 0x04000000
34
...
with:
#define WINDOW_ADDR 0xFE000000
#define WINDOW_SIZE 0x02000000
We will implement a better fix (automatically adjust values according
to the values pased by the boot loader) later today / early tomorrow.
Sorry for the inconvenience.
Best regards,
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
If you want strict real-time behavior, run in the real time schedu-
ling class. But there are no seatbelts or airbags; main(){for(;;);}
can hard hang your system. -- Bart Smaalders
More information about the Linuxppc-embedded
mailing list