• Home
  • Help
  • Search
  • Login
  • Register
  Show Posts
Pages: [1]
1  Hardware and U-Boot firmware / U-Boot stuff / Re: MMC/SD support in u-boot on: May 13, 2009, 03:04:11 AM
After u-boot build, final image for bubt is "u-boot-rd88f6281Sheevaplug_400db_nand.bin" not "u-boot.bin".
Copy u-boot-rd88f6281Sheevaplug_400db_nand.bin as "u-boot.bin" and try to use bubt.
2  Hardware and U-Boot firmware / U-Boot stuff / Re: MMC/SD support in u-boot on: May 11, 2009, 09:15:44 PM
Sorry to hear that. But I could'nt buy all the SD cards you have.
You could make everybody happy (include me) if you could fix you problem and update mmc support codes.
I just read 88F6281 data sheet and codes in linux kernel and did some experiment with my cards in hands.
It just works for me, but I also admit there must be more test for robustness.
Thanks.
3  Hardware and U-Boot firmware / U-Boot stuff / Re: MMC/SD supprot in u-boot on: May 09, 2009, 09:54:19 PM
Hi theRealBigP.
My guess is you missed step7.
7) make rd88f6281Sheevaplug_config NBOOT=1
Because your compile message didnot shows Sheevaplug related defines like -DMV88F6281. You might check
Makefile and search "Sheevaplug_config", then you could see compile time definisions for Sheevaplug like "-DMV_BOOTSIZE_16M".


4  Hardware and U-Boot firmware / U-Boot stuff / Re: MMC/SD supprot in u-boot on: May 06, 2009, 08:04:10 PM
"undefined reference dcache_enable" is expected result.  I've added cache control command in "mv_kw.h" for mmc test.
Just add following function in cpu/arm926ejs/cpu.c (I don't know why this funcion is missing).

void dcache_enable(void)
{
  u_long reg;
  reg = read_p15_c1();
  cp_delay();
  write_p15_c1(reg | C1_DC);
}

kwonsk.
5  Hardware and U-Boot firmware / U-Boot stuff / Re: MMC/SD supprot in u-boot on: May 05, 2009, 12:23:56 AM
I've read build instruction from mavell documents set. Basically philipl's instruction is correct.
1) tar jxvf u-boot-1.1.4.tar.bz2
2) mv u-boot-1.1.4 u-boot-3.4.16
3) unzip u-boot-3.4.16 (this will overwriting existing files)
4) cd u-boot-3.4.16
5) tar zxvf sd.tgz
6) Copy attatched mv_kw.h to include/configs/mv_hw.h
7) make rd88f6281Sheevaplug_config NBOOT=1
Cool make clean; make
And then you will get u-boot-rd88f6281Sheevaplug_400db_nand.bin
9) copy u-boot-rd88f6281Sheevaplug_400db_nand.bin to /tftpboot/u-boot.bin
(Assume that you setup tftp server)

In the sheevaplug u-boot prompt, 'bubt' command will update u-boot.bin image on the nand flash.
10) reset sheeva plug
And enjoy youself. I also attached prebuilt u-boot.bin image.
6  Hardware and U-Boot firmware / U-Boot stuff / MMC/SD supprot in u-boot on: May 03, 2009, 09:39:57 PM
I see, they have limited access time.
Please let me know your email address, I'll send it to you.
thansk
7  Hardware and U-Boot firmware / U-Boot stuff / Attatment fails on: April 29, 2009, 09:27:15 PM
I used addtional options for file attachment. But got following error message (tried with firefox,IE on windos vista).
"Cannot access attachments upload path!"

Currently I just uploaded my files to the following link

http://rapidshare.com/files/227381680/sd.tgz.html

thanks
8  Hardware and U-Boot firmware / U-Boot stuff / Re: MMC/SD supprot in u-boot on: April 29, 2009, 09:08:36 PM
I see. I've uploaded files for SD support at the following location.

http://rapidshare.com/files/227381680/sd.tgz.html
9  Hardware and U-Boot firmware / U-Boot stuff / MMC/SD ext2 on: April 29, 2009, 06:31:44 PM
I just tried fat32 on SDHC card, but I think ext2 would'nt be a problem because it's not related with SD interface.
Bytheway does anybody succes posting with file attachment? I could'nt upload sources for your tries.
If  you wants source files then let me know your e-mail, then I'll send it via e-mail.
10  Hardware and U-Boot firmware / U-Boot stuff / MMC/SD support in u-boot on: April 28, 2009, 11:51:11 PM
Hi,all
Recently I finished SD(SDHC) card support for SheevaDev u-boot (based on u-boot-3.4.16).
I could successfuly "mmcinit" and "fatls,fatload..." with my 4G SDHC, 1G SD cards. Performance is
really nice, load 3MB uImage within 2 seconds.
Attached files are sources for SD support (fat.h, fat.c must be updated, there was bugfixes. u-boo-1.1.4 is too old).
Well, you also enable MMC/FAT support in the include/configs/mv_kw.h file.
(I could'nt use file attachment option in firefox. submit post with file attachment shows some errors and post fails
 Is this know problem?).
11  Hardware and U-Boot firmware / U-Boot stuff / Re: Booting from SD card on: April 28, 2009, 11:46:43 PM
Hi,
I just finished SD/SDHC support in u-boot-3.4.16 (marvell version).
It works well and performace was resionable (fatload 3MB about 2 seconds).
I've posted this job in this forum with file attachement (I could'nt see my post myself yet. Is there some delay for a new post?).
Pages: [1]