Open GoogleCodeExporter opened 9 years ago
ok, the problem is that with 256MB it is working, but for 512MB not..
Original comment by Nesrovna...@gmail.com
on 2 Nov 2011 at 9:57
Can you try with the boot.scr generated from mkbootscr script available from
the TI Android DevKit Tools bundle available here:
http://software-dl.ti.com/dsps/dsps_public_sw/sdo_tii/TI_Android_DevKit/TI_Andro
id_GingerBread_2_3_4_DevKit_2_1/index_FDS.html
Original comment by vishvesh...@aim.com
on 4 Nov 2011 at 10:50
Hello,
I am facing similar issue.
I am working on customized board which is very similar to beagleboard. This
board was having 256MB of RAM. I had ported Gingerbread and it was working fine.
But, with RAM upgraded to 512MB, it is not working.
The kernel can boot till console properly. But, when the bootanimation starts,
after some time kernel is panic.
The bootargs being used are as follows:
if mmcinit 0; then
setenv memsize "512M"
setenv loadaddr 0x81c00000
setenv console "ttyS2,115200n8 init=/init
androidboot.console=ttyS2"
setenv mmcroot "/dev/mmcblk0p2"
setenv video "videoout=omap24xxvout
omap_vout.video1_numbuffers=6 omap_vout.vid1_static_vrfb_alloc=y vram=32M
omapfb.vram=0:8M"
setenv bootargs "console=${console}
root=${mmcroot} rootdelay=2 mem=${memsize} ${video}"
echo "Memory size set to ${memsize}"
echo "Rootfs set to ${mmcroot}"
if fatload mmc 0:1 ${loadaddr} uImage; then
bootm ${loadaddr}
fi;
fi;
Please find the attached kernel panic log.
Also, if I revert back the settings (that of 256MB) in bootloader and boot.scr,
the system is up and running properly.
I have tried different vram values as well, but could not get through.
Any pointers in this regard are helpful.
Thanks and regards,
Chaitral Purkar
Original comment by chaitral...@gmail.com
on 17 Jul 2012 at 1:14
Attachments:
i am facing same issue.
i tried to modify RAMSIZE in u-boot
Original:
#define RAMSIZE_128 (0x40 << 8) /* RAM size in 2MB chunks */
Modified:
#define RAMSIZE_128 (0x80 << 8) /* RAM size in 2MB chunks */
but it did not work.
i added print in /*
* dram_init -
* - Sets uboots idea of sdram size
*/
int dram_init(void)
the output is:
DRAM_0: 256 MiB
DRAM_1: 0 Bytes
Original comment by Wendell....@gmail.com
on 22 Aug 2012 at 7:29
i use the patch below to update u-boot sources
http://gitorious.org/rowboat/u-boot/commits/OMAPPSP_04.02.00.07
now u-boot can detect 512M RAM, but still can not boot kernel, hangs at
"Uncompressing Linux... done, booting the kernel."
Original comment by Wendell....@gmail.com
on 22 Aug 2012 at 9:01
the path OMAPPSP_04.02.00.07 can not fixed the issue. I run mem_ok() to check
the memory in 256~512M, mem_ok() failed. That means the memory>256M is
invariable.
Original comment by Wendell....@gmail.com
on 27 Aug 2012 at 6:38
Did anybody fixed this issue?
Original comment by ezequiel.aceto
on 3 Nov 2012 at 7:18
Original issue reported on code.google.com by
Nesrovna...@gmail.com
on 29 Oct 2011 at 12:35