This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Booting problem : Android Gingerbread with DM3730

Other Parts Discussed in Thread: DM3730, ADS7846

I want to port android Gingerbread into DM3730, for that i done following steps.
1) u-boot parameter configuration
# VAR-SOM-OM3xxx board U-Boot parameters for Android Gingerbread 2.6.37.
#
#
# Simple variables. Changable.
#
setenv ethaddr 00:11:22:33:44:55
setenv ipaddr 1.1.1.1
setenv serverip 1.1.1.11
setenv netmask 255.255.255.0
setenv gatewayip 192.168.1.1
setenv nfsroot /home/vladik/work/variscite/nfs
setenv bootdelay 1
setenv console_tty ttyO2
#
# Anything below this line should not change.
#
setenv get_kernel run nand_kernel
setenv nand_kernel nand read.i 0x80000000 280000 300000
setenv mmc_kernel 'mmc init; fatload mmc 1 0x80000000 uImage'
setenv tftp_kernel tftpboot 0x80000000 uImage
set addmac setenv bootargs \${bootargs} ethaddr=\${ethaddr}
set addconsole setenv bootargs \${bootargs} console=\${console_tty},115200n8 androidboot.console=\${console_tty}
setenv bootargs_common init=/init mem=256M noinitrd rw omap_vout.vid1_static_vrfb_alloc=y vram=8M omapfb.vram=0:8M rootdelay=1 rootwait
setenv setargs_fs set bootargs \${bootargs_common} root=/dev/mtdblock4 rootfstype=jffs2 ip=::::::off
setenv setargs_nfs set bootargs \${bootargs_common} root=/dev/nfs nfsroot=\${nfsroot},nolock ip=dhcp
setenv setargs_sd set bootargs \${bootargs_common} root=/dev/mmcblk0p2 ip=off
setenv boot_fs run get_kernel\;run setargs_fs\;run addmac\;run addconsole\;bootm 0x80000000
setenv boot_nfs run tftp_kernel\;run setargs_nfs\;run addmac\;run addconsole\;bootm 0x80000000
setenv boot_sd run mmc_kernel\;run setargs_sd\;run addmac\;run addconsole\;bootm 0x80000000
setenv bootcmd run boot_sd
saveenv
2)Compile kernel for getting uImage
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- var-som-om3x_defconfig
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi-
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- uImage
3) Download pre-built images for DM3730
4) Run the mkmmc-android.sh script with MLO, u-boot.bin, uImage and filesystem.
after inserting SDCard into EVM, and getting multiple android robot images, no further booting..
here is the logs and logcat
OMAP34xx/35xx-GP ES2.0, CPU-OPP2 L3-165MHz
VAR-SOM-OM3xxx Board + LPDDR/NAND
I2C:   ready
DRAM:  256 MB
NAND:  512 MiB
In:    serial
Out:   serial
Err:   serial
Net:   smc911x-0
Warning: smc911x-0 MAC addresses don't match:
Address in SROM is         ff:ff:ff:ff:ff:ff
Address in environment is  00:11:22:33:44:55
Hit any key to stop autoboot:  0 
mmc1 is available
reading uImage
3274328 bytes read
## Booting kernel from Legacy Image at 80000000 ...
   Image Name:   Linux-2.6.37
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3274264 Bytes =  3.1 MB
   Load Address: 80008000
   Entry Point:  80008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK
Starting kernel ...
[    0.000000] Linux version 2.6.37 (quipment@ubuntu) (gcc version 4.3.3 (Sourcery G++ Lite 2009q1-203) ) #1 Fri Nov 18 17:40:46 IST 2011
[    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c53c7f
[    0.000000] CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache
[    0.000000] Machine: VARISCITE VAR-SOM-OM3X
[    0.000000] Reserving 8388608 bytes SDRAM for VRAM
[    0.000000] Memory policy: ECC disabled, Data cache writeback
[    0.000000] OMAP3630 ES1.1 (l2cache iva sgx neon isp 192mhz_clk )
[    0.000000] SRAM: Mapped pa 0x40200000 to va 0xfe400000 size: 0x10000
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 62976
[    0.000000] Kernel command line: init=/init mem=256M noinitrd rw omap_vout.vid1_static_vrfb_alloc=y vram=8M omapfb.vram=0:8M rootdelay=1 rootwait root=/dev/mmcblk0p2 ip=off ethaddr=00:11:22:33:44:55 console=ttyO2,115200n8 androidbo2
[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)
[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[    0.000000] Memory: 248MB = 248MB total
[    0.000000] Memory: 244148k/244148k available, 17996k reserved, 0K highmem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     DMA     : 0xffc00000 - 0xffe00000   (   2 MB)
[    0.000000]     vmalloc : 0xd0800000 - 0xf8000000   ( 632 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xd0000000   ( 256 MB)
[    0.000000]     modules : 0xbf000000 - 0xc0000000   (  16 MB)
[    0.000000]       .init : 0xc0008000 - 0xc003f000   ( 220 kB)
[    0.000000]       .text : 0xc003f000 - 0xc0640000   (6148 kB)
[    0.000000]       .data : 0xc0640000 - 0xc068dc80   ( 312 kB)
[    0.000000] NR_IRQS:409
[    0.000000] Clocking rate (Crystal/Core/MPU): 26.0/400/800 MHz
[    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 4.0) with 96 interrupts
[    0.000000] Total of 96 interrupts on 1 active controller
[    0.000000] GPMC revision 5.0
[    0.000000] Trying to install interrupt handler for IRQ402
[    0.000000] Trying to install interrupt handler for IRQ403
[    0.000000] Trying to install interrupt handler for IRQ404
[    0.000000] Trying to install interrupt handler for IRQ405
[    0.000000] Trying to install interrupt handler for IRQ406
[    0.000000] Trying to install interrupt handler for IRQ407
[    0.000000] Trying to install interrupt handler for IRQ408
[    0.000000] Trying to install type control for IRQ409
[    0.000000] Trying to set irq flags for IRQ409
[    0.000000] OMAP clockevent source: GPTIMER1 at 32768 Hz
[    0.000000] Console: colour dummy device 80x30
[    0.000000] Calibrating delay loop... 799.29 BogoMIPS (lpj=3121152)
[    0.000000] pid_max: default: 32768 minimum: 301
[    0.000000] Security Framework initialized
[    0.000000] Mount-cache hash table entries: 512
[    0.000000] CPU: Testing write buffer coherency: ok
[    0.000000] regulator: core version 0.5
[    0.000000] regulator: dummy: 
[    0.000000] NET: Registered protocol family 16
[    0.000000] OMAP GPIO hardware version 2.5
[    0.000000] OMAP GPIO hardware version 2.5
[    0.000000] OMAP GPIO hardware version 2.5
[    0.000000] OMAP GPIO hardware version 2.5
[    0.000000] OMAP GPIO hardware version 2.5
[    0.000000] OMAP GPIO hardware version 2.5
[    0.000000] omap_mux_init: Add partition: #1: core, flags: 0
[    0.000000] omap3evm_android_gadget_init:141: enter
[    0.000000] hw-breakpoint: debug architecture 0x4 unsupported.
[    0.000000] OMAP DMA hardware revision 5.0
[    0.022918] bio: create slab <bio-0> at 0
[    0.024993] SCSI subsystem initialized
[    0.027313] usbcore: registered new interface driver usbfs
[    0.027618] usbcore: registered new interface driver hub
[    0.027801] usbcore: registered new device driver usb
[    0.028778] omap_device: omap_i2c.1: new worst case activate latency 0: 30517
[    0.036682] omap_i2c omap_i2c.1: bus 1 rev4.0 at 2600 kHz
[    0.039306] twl4030: PIH (irq 7) chaining IRQs 368..375
[    0.039337] twl4030: power (irq 373) chaining IRQs 376..383
[    0.039825] twl4030: gpio (irq 368) chaining IRQs 384..401
[    0.043304] regulator: VIO: 1800 mV normal standby
[    0.043914] regulator: VMMC1: 1850 <--> 3150 mV at 3000 mV normal standby
[    0.044464] regulator: VDAC: 1800 mV normal standby
[    0.045043] regulator: VAUX2_4030: 2800 mV normal standby
[    0.045623] regulator: VPLL2: 1800 mV normal standby
[    0.046203] regulator: VSIM: 1800 <--> 3000 mV at 1800 mV normal standby
[    0.046325] omap_device: omap_i2c.1: new worst case deactivate latency 0: 30517
[    0.060119] omap_i2c omap_i2c.2: bus 2 rev4.0 at 400 kHz
[    0.075714] omap_i2c omap_i2c.3: bus 3 rev4.0 at 400 kHz
[    0.077026] Advanced Linux Sound Architecture Driver Version 1.0.23.
[    0.077667] Bluetooth: Core ver 2.15
[    0.077819] NET: Registered protocol family 31
[    0.077850] Bluetooth: HCI device and connection manager initialized
[    0.077850] Bluetooth: HCI socket layer initialized
[    0.078216] Switching to clocksource 32k_counter
[    0.098907] musb-hdrc: version 6.0, otg (peripheral+host), debug=0
[    0.099029] musb-hdrc musb-hdrc.0: dma type: dma-inventra
[    0.099029] HS USB OTG: no transceiver configured
[    0.099060] musb-hdrc musb-hdrc.0: musb_init_controller failed with status -19
[    0.099426] NET: Registered protocol family 2
[    0.099578] IP route cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.099914] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    0.100097] TCP bind hash table entries: 8192 (order: 3, 32768 bytes)
[    0.100219] TCP: Hash tables configured (established 8192 bind 8192)
[    0.100219] TCP reno registered
[    0.100250] UDP hash table entries: 256 (order: 0, 4096 bytes)
[    0.100250] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
[    0.100402] NET: Registered protocol family 1
[    0.100708] RPC: Registered udp transport module.
[    0.100708] RPC: Registered tcp transport module.
[    0.100708] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.100891] NetWinder Floating Point Emulator V0.97 (double precision)
[    0.101928] omap-iommu omap-iommu.0: isp registered
[    0.228271] ashmem: initialized
[    0.228637] VFS: Disk quotas dquot_6.5.2
[    0.228698] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.229370] JFFS2 version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.
[    0.229858] msgmni has been set to 476
[    0.231048] io scheduler noop registered
[    0.231048] io scheduler deadline registered
[    0.231140] io scheduler cfq registered (default)
[    0.289520] OMAP DSS rev 2.0
[    0.289581] OMAP DISPC rev 3.0
[    0.289611] OMAP VENC rev 2
[    0.289855] OMAP DSI rev 1.0
[    0.618225] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.619781] omap_uart.0: ttyO0 at MMIO 0x4806a000 (irq = 72) is a OMAP UART0
[    0.620086] omap_uart.1: ttyO1 at MMIO 0x4806c000 (irq = 73) is a OMAP UART1
[    0.620391] omap_uart.2: ttyO2 at MMIO 0x49020000 (irq = 74) is a OMAP UART2
[    1.292541] console [ttyO2] enabled
[    1.296478] omap_uart.3: ttyO3 at MMIO 0x49042000 (irq = 80) is a OMAP UART3
[    1.312896] brd: module loaded
[    1.320434] loop: module loaded
[    1.325927] mtdoops: mtd device (mtddev=name/number) must be supplied
[    1.332733] omap2-nand driver initializing
[    1.337371] NAND device: Manufacturer ID: 0x2c, Chip ID: 0xbc (Micron )
[    1.344360] Creating 5 MTD partitions on "omap2-nand.0":
[    1.349914] 0x000000000000-0x000000080000 : "X-Loader-NAND"
[    1.357391] 0x000000080000-0x0000001c0000 : "U-Boot-NAND"
[    1.364868] 0x0000001c0000-0x000000280000 : "Boot Env-NAND"
[    1.372344] 0x000000280000-0x000000780000 : "Kernel-NAND"
[    1.381317] 0x000000780000-0x000020000000 : "File System - NAND"
[    1.597259] OneNAND driver initializing
[    1.602691] smsc911x: Driver version 2008-10-21.
[    1.608856] smsc911x-mdio: probed
[    1.612487] eth0: attached PHY driver [SMSC LAN8700] (mii_bus:phy_addr=ffffffff:01, irq=-1)
[    1.621429] smsc911x: get mac from cmd line.
[    1.625915] ethaddr parsed from commandline: 00:11:22:33:44:55$Ϙ𩘐f
[    1.632598] net eth0: MAC Address: 00:11:22:33:44:55
[    1.638183] usbcore: registered new interface driver asix
[    1.644012] usbcore: registered new interface driver cdc_ether
[    1.650299] usbcore: registered new interface driver net1080
[    1.656372] usbcore: registered new interface driver cdc_subset
[    1.662719] usbcore: registered new interface driver zaurus
[    1.668731] usbcore: registered new interface driver zd1201
[    1.674591] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.681518] ehci-omap.0 supply hsusb0 not found, using dummy regulator
[    2.695556] ehci-omap ehci-omap.0: OMAP-EHCI Host Controller
[    2.701538] ehci-omap ehci-omap.0: new USB bus registered, assigned bus number 1
[    2.709503] ehci-omap ehci-omap.0: irq 77, io mem 0x48064800
[    2.726898] ehci-omap ehci-omap.0: USB 2.0 started, EHCI 1.00
[    2.732971] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.740112] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.747680] usb usb1: Product: OMAP-EHCI Host Controller
[    2.753265] usb usb1: Manufacturer: Linux 2.6.37 ehci_hcd
[    2.758941] usb usb1: SerialNumber: ehci-omap.0
[    2.764465] hub 1-0:1.0: USB hub found
[    2.768432] hub 1-0:1.0: 3 ports detected
[    2.797332] Initializing USB Mass Storage driver...
[    2.802673] usbcore: registered new interface driver usb-storage
[    2.808990] USB Mass Storage support registered.
[    2.813995] usbcore: registered new interface driver usbtest
[    2.819915] android init
[    2.822662] android_probe pdata: c06503c8
[    2.827178] f_adb init
[    2.829681] android_register_function adb
[    2.833862] f_mass_storage init
[    2.837341] android_register_function usb_mass_storage
[    2.842712] f_mtp init
[    2.845214] android_register_function mtp
[    2.849884] mice: PS/2 mouse device common for all mice
[    2.856933] ads7846 spi1.0: touchscreen, irq 337
[    2.862426] input: ADS7846 Touchscreen as /devices/platform/omap2_mcspi.1/spi1.0/input/input0
[    2.872833] input: twl4030_pwrbutton as /devices/platform/omap/omap_i2c.1/i2c-1/1-0049/twl4030_pwrbutton/input/input1
[    2.885742] using rtc device, twl_rtc, for alarms
[    2.890533] twl_rtc twl_rtc: rtc core: registered twl_rtc as rtc0
[    2.897460] twl_rtc twl_rtc: Power up reset detected.
[    2.903594] twl_rtc twl_rtc: Enabling TWL-RTC.
[    2.909271] i2c /dev entries driver
[    2.914154] Linux media interface: v0.10
[    2.918457] Linux video capture interface: v2.00
[    2.924133] usbcore: registered new interface driver uvcvideo
[    2.930175] USB Video Class driver (v1.0.0)
[    2.935211] OMAP Watchdog Timer Rev 0x31: initial timeout 60 sec
[    2.941925] device-mapper: uevent: version 1.0.3
[    2.947235] device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com
[    2.956176] Bluetooth: HCI UART driver ver 2.2
[    2.960815] Bluetooth: HCI H4 protocol initialized
[    2.965850] Bluetooth: HCILL protocol initialized
[    2.970855] cpuidle: using governor ladder
[    2.975158] cpuidle: using governor menu
[    2.985717] usbcore: registered new interface driver usbhid
[    2.991546] usbhid: USB HID core driver
[    2.996337] logger: created 64K log 'log_main'
[    3.001251] logger: created 256K log 'log_events'
[    3.006408] logger: created 64K log 'log_radio'
[    3.011383] logger: created 64K log 'log_system'
[    3.017150] usbcore: registered new interface driver snd-usb-audio
[    3.024536] OMAP3 EVM SoC init
[    3.081756] asoc: twl4030-hifi <-> omap-mcbsp-dai.1 mapping ok
[    3.089050] ALSA device list:
[    3.092163]   #0: omap3evm
[    3.095031] oprofile: hardware counters not available
[    3.100311] oprofile: using timer interrupt.
[    3.104949] nf_conntrack version 0.5.0 (3814 buckets, 15256 max)
[    3.111602] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.117279] TCP cubic registered
[    3.120697] Initializing XFRM netlink socket
[    3.125183] NET: Registered protocol family 17
[    3.129882] NET: Registered protocol family 15
[    3.134613] usb 1-1: new high speed USB device using ehci-omap and address 2
[    3.142150] Bluetooth: L2CAP ver 2.15
[    3.145996] Bluetooth: L2CAP socket layer initialized
[    3.151306] Bluetooth: SCO (Voice Link) ver 0.6
[    3.156036] Bluetooth: SCO socket layer initialized
[    3.161285] Bluetooth: RFCOMM TTY layer initialized
[    3.166412] Bluetooth: RFCOMM socket layer initialized
[    3.171783] Bluetooth: RFCOMM ver 1.11
[    3.175720] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.181304] Bluetooth: BNEP filters: protocol multicast
[    3.186767] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    3.193328] Registering the dns_resolver key type
[    3.198333] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3
[    3.206909] ThumbEE CPU extension supported.
[    3.213928] Power Management for TI OMAP3.
[    3.218414] omap_init_power_states: core off state C7 disabled due to i583
[    3.227752] smartreflex smartreflex.0: omap_sr_probe: SmartReflex driver initialized
[    3.235992] smartreflex smartreflex.1: omap_sr_probe: SmartReflex driver initialized
[    3.245391] SmartReflex Class3 initialized
[    3.253112] clock: disabling unused clocks to save power
[    3.259582] platform iva.0: omap_voltage_scale: Already at the requestedrate 800000000
[    3.267883] platform mpu.0: omap_voltage_scale: Already at the requestedrate 1000000000
[    3.313598] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
[    3.320617] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.329711] hub 1-1:1.0: USB hub found
[    3.333770] hub 1-1:1.0: 3 ports detected
[    3.359924] mmc0: new high speed SDHC card at address 951e
[    3.366058] mmcblk0: mmc0:951e SD04G 3.69 GiB 
[    3.373291]  mmcblk0: p1 p2 p3
[    3.402038] twl_rtc twl_rtc: setting system clock to 2000-01-01 00:00:00 UTC (946684800)
[    3.410644] omap_vout omap_vout: Buffer Size = 3686400
[    3.428924] omap_vout omap_vout: : registered and initialized video device 0
[    3.436340] omap_vout omap_vout: Buffer Size = 3686400
[    3.442810] omap_vout omap_vout: : registered and initialized video device 1
[    3.450775] Waiting 1sec before mounting root device...
[    4.465576] EXT3-fs: barriers not enabled
[    5.727172] kjournald starting.  Commit interval 5 seconds
[    5.927124] EXT3-fs (mmcblk0p2): using internal journal
[    5.932617] EXT3-fs (mmcblk0p2): recovery complete
[    6.139556] EXT3-fs (mmcblk0p2): mounted filesystem with ordered data mode
[    6.146789] VFS: Mounted root (ext3 filesystem) on device 179:2.
[    6.153137] Freeing init memory: 220K
[    6.306549] omap3_pm_off_mode_enable: Core OFF disabled due to errata i583
[    6.314361] init (1): /proc/1/oom_adj is deprecated, please use /proc/1/oom_score_adj instead.
[    6.332458] init: cannot find '/system/etc/install-recovery.sh', disabling 'flash_recovery'
# [    6.914611] platform iva.0: omap_voltage_scale: Already at the requestedrate 520000000
[    6.923034] platform mpu.0: omap_voltage_scale: Already at the requestedrate 600000000
[    7.011383] pvrsrvkm: disagrees about version of symbol module_layout
[    7.177337] omaplfb: disagrees about version of symbol module_layout
[    7.234710] platform iva.0: omap_voltage_scale: Already at the requestedrate 520000000
[    7.243072] platform mpu.0: omap_voltage_scale: Already at the requestedrate 600000000
[    7.555175] platform iva.0: omap_voltage_scale: Already at the requestedrate 520000000
[    7.563568] platform mpu.0: omap_voltage_scale: Already at the requestedrate 600000000
[    9.219055] ------------[ cut here ]------------
[    9.223999] WARNING: at arch/arm/plat-omap/omap-pm-noop.c:326 omap_pm_get_dev_context_loss_count+0x6c/0xc0()
[    9.234680] omap_pm: using dummy context loss counter; device mmci-omap-hs.0 should be converted to omap_device
[    9.245178] Modules linked in:
[    9.248596] Backtrace: 
[    9.251251] [<c004e390>] (dump_backtrace+0x0/0x110) from [<c04be66c>] (dump_stack+0x18/0x1c)
[    9.260192]  r7:cf275eb0 r6:c006e390 r5:c05b2cdc r4:00000146
[    9.266235] [<c04be654>] (dump_stack+0x0/0x1c) from [<c0078108>] (warn_slowpath_common+0x54/0x6c)
[    9.275665] [<c00780b4>] (warn_slowpath_common+0x0/0x6c) from [<c00781c4>] (warn_slowpath_fmt+0x38/0x40)
[    9.285705]  r9:c03944c4 r8:cf0ca400 r7:cf21c140 r6:c06a0a2c r5:cf265d88
[    9.292633] r4:cf0b7808
[    9.295440] [<c007818c>] (warn_slowpath_fmt+0x0/0x40) from [<c006e390>] (omap_pm_get_dev_context_loss_count+0x6c/0xc0)
[    9.306762]  r3:cf0b6980 r2:c05b2cfe
[    9.310577] [<c006e324>] (omap_pm_get_dev_context_loss_count+0x0/0xc0) from [<c0063a18>] (hsmmc_get_context_loss+0x10/0x14)
[    9.322570]  r5:cf265d88 r4:cf265e40
[    9.326416] [<c0063a08>] (hsmmc_get_context_loss+0x0/0x14) from [<c03a1154>] (omap_hsmmc_context_save+0x28/0x34)
[    9.337188] [<c03a112c>] (omap_hsmmc_context_save+0x0/0x34) from [<c03a1430>] (omap_hsmmc_disable_fclk+0x18/0x28)
[    9.348052]  r5:cf265d88 r4:cf265e40
[    9.351928] [<c03a1418>] (omap_hsmmc_disable_fclk+0x0/0x28) from [<c0394490>] (mmc_host_do_disable+0x30/0x64)
[    9.362396]  r5:cf265d88 r4:cf265c00
[    9.366210] [<c0394460>] (mmc_host_do_disable+0x0/0x64) from [<c03944f0>] (mmc_host_deeper_disable+0x2c/0x44)
[    9.376708]  r5:cf265d88 r4:cf265c00
[    9.380523] [<c03944c4>] (mmc_host_deeper_disable+0x0/0x44) from [<c008dc18>] (process_one_work+0x220/0x38c)
[    9.390930]  r5:cf265d88 r4:c06a0b08
[    9.394744] [<c008d9f8>] (process_one_work+0x0/0x38c) from [<c008e5a4>] (worker_thread+0x1b4/0x2d0)
[    9.404327] [<c008e3f0>] (worker_thread+0x0/0x2d0) from [<c0092a0c>] (kthread+0x8c/0x94)
[    9.412933] [<c0092980>] (kthread+0x0/0x94) from [<c007b468>] (do_exit+0x0/0x63c)
[    9.421112]  r7:00000013 r6:c007b468 r5:c0092980 r4:cf035ee0
[    9.427154] ---[ end trace 3b43710f6b6197bb ]---
[   11.337493] pvrsrvkm: disagrees about version of symbol module_layout
[   11.358642] omaplfb: disagrees about version of symbol module_layout
[   14.571197] platform iva.0: omap_voltage_scale: Already at the requestedrate 800000000
[   14.579559] platform mpu.0: omap_voltage_scale: Already at the requestedrate 1000000000
[   16.275573] warning: `zygote' uses 32-bit capabilities (legacy support in use)
[   16.496276] pvrsrvkm: disagrees about version of symbol module_layout
[   16.537170] omaplfb: disagrees about version of symbol module_layout
[   18.060363] request_suspend_state: wakeup (3->0) at 18247680669 (2000-01-01 00:00:15.148773200 UTC)
[   18.075775] init: untracked pid 1013 exited
[   21.550720] pvrsrvkm: disagrees about version of symbol module_layout
[   21.592346] omaplfb: disagrees about version of symbol module_layout
[   22.260253] request_suspend_state: wakeup (0->0) at 22447601321 (2000-01-01 00:00:19.348693852 UTC)
[   22.272277] init: untracked pid 1087 exited
Logcat
D/RenderScript_jni( 1159): RenderScript JNI library not found!
D/dalvikvm( 1159): GC_EXPLICIT freed 24K, 21% free 969K/1219K, external 0K/0K, paused 7ms
D/dalvikvm( 1159): GC_EXPLICIT freed 24K, 6% free 1275K/1347K, external 0K/0K, paused 9ms
D/dalvikvm( 1159): GC_EXPLICIT freed 24K, 4% free 1304K/1347K, external 0K/0K, paused 10ms
D/dalvikvm( 1159): GC_EXPLICIT freed 27K, 6% free 1330K/1411K, external 0K/0K, paused 10ms
D/dalvikvm( 1159): GC_EXPLICIT freed 14K, 3% free 1370K/1411K, external 0K/0K, paused 10ms
D/dalvikvm( 1159): GC_EXPLICIT freed 28K, 6% free 1396K/1475K, external 0K/0K, paused 10ms
D/dalvikvm( 1159): GC_EXPLICIT freed 27K, 3% free 1432K/1475K, external 0K/0K, paused 10ms
D/dalvikvm( 1159): GC_EXPLICIT freed 38K, 6% free 1450K/1539K, external 0K/0K, paused 11ms
D/dalvikvm( 1159): GC_EXPLICIT freed 41K, 5% free 1465K/1539K, external 0K/0K, paused 11ms
D/dalvikvm( 1159): GC_EXPLICIT freed 55K, 4% free 1478K/1539K, external 0K/0K, paused 11ms
D/dalvikvm( 1159): GC_FOR_MALLOC freed 2959K, 58% free 2162K/5123K, external 0K/0K, paused 32ms
D/dalvikvm( 1159): GC_EXPLICIT freed 1399K, 56% free 2303K/5123K, external 0K/0K, paused 25ms
D/dalvikvm( 1159): GC_EXPLICIT freed 127K, 54% free 2364K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1159): GC_EXPLICIT freed 73K, 54% free 2389K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1159): GC_EXPLICIT freed 36K, 54% free 2407K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1159): GC_EXPLICIT freed 31K, 53% free 2430K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1159): GC_EXPLICIT freed 38K, 53% free 2453K/5123K, external 0K/0K, paused 20ms
I/Zygote  ( 1159): ...preloaded 1830 classes in 2104ms.
D/dalvikvm( 1159): GC_EXPLICIT freed 17K, 53% free 2451K/5123K, external 0K/0K, paused 19ms
I/Zygote  ( 1159): Preloading resources...
D/dalvikvm( 1159): GC_EXTERNAL_ALLOC freed <1K, 53% free 2453K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1159): GC_EXPLICIT freed 15K, 52% free 2492K/5123K, external 414K/521K, paused 20ms
D/dalvikvm( 1159): GC_EXTERNAL_ALLOC freed 7K, 52% free 2503K/5123K, external 516K/521K, paused 20ms
I/Zygote  ( 1159): ...preloaded 51 resources in 264ms.
I/Zygote  ( 1159): ...preloaded 15 resources in 5ms.
D/dalvikvm( 1159): GC_EXPLICIT freed 14K, 51% free 2526K/5123K, external 716K/1038K, paused 20ms
D/dalvikvm( 1159): GC_EXPLICIT freed 8K, 51% free 2518K/5123K, external 716K/1038K, paused 20ms
D/dalvikvm( 1159): GC_EXPLICIT freed 1K, 51% free 2517K/5123K, external 716K/1038K, paused 20ms
I/dalvikvm( 1159): System server process 1160 has been created
I/Zygote  ( 1159): Accepting command socket connections
E/BatteryService( 1160): acOnlinePath not found
E/BatteryService( 1160): usbOnlinePath not found
E/BatteryService( 1160): batteryStatusPath not found
E/BatteryService( 1160): batteryHealthPath not found
E/BatteryService( 1160): batteryPresentPath not found
E/BatteryService( 1160): batteryCapacityPath not found
E/BatteryService( 1160): batteryVoltagePath not found
E/BatteryService( 1160): batteryTemperaturePath not found
E/BatteryService( 1160): batteryTechnologyPath not found
I/sysproc ( 1160): Entered system_init()
I/syspro[   56.257598] pvrsrvkm: disagrees about version of symbol module_layout
c ( 1160): ServiceManager: 0x1b4a50
I/SurfaceFlinger( 1160): SurfaceFlinger is starting
I/SurfaceFlinger( 1160): SurfaceFlinger's main thread ready to run. In[   56.278442] omaplfb: disagrees about version of symbol module_layout
itializing graphics H/W...
E/FramebufferNativeWindow( 1160): couldn't open framebuffer HAL (No such device)
I/DEBUG   ( 1010): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG   ( 1010): Build fingerprint: 'TI/omap3evm/omap3evm:2.3/GRH55/eng.a0393957.20110329.200522:eng/test-keys'
I/DEBUG   ( 1010): pid: 1160, tid: 1168  >>> system_server <<<
I/DEBUG   ( 1010): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0000005c
I/DEBUG   ( 1010):  r0 0000d248  r1 435a6dc4  r2 00000001  r3 00000000
I/DEBUG   ( 1010):  r4 0008ef40  r5 0008f038  r6 fffffec0  r7 00000000
I/DEBUG   ( 1010):  r8 83c2c738  r9 0008d040  10 00100000  fp 00000001
I/DEBUG   ( 1010):  ip 83c2c794  sp 435a6d68  lr 80104a10  pc 83c19a74  cpsr 60000030
I/DEBUG   ( 1010):  d0  0000000000000000  d1  4148207265666665
I/DEBUG   ( 1010):  d2  6461657268742076  d3  7420796461657269
I/DEBUG   ( 1010):  d4  49202e6e7572206f  d5  7a696c616974696e
I/DEBUG   ( 1010):  d6  7061726720676e69  d7  0000000073636968
I/DEBUG   ( 1010):  d8  0000000000000000  d9  0000000000000000
I/DEBUG   ( 1010):  d10 0000000000000000  d11 0000000000000000
I/DEBUG   ( 1010):  d12 0000000000000000  d13 0000000000000000
I/DEBUG   ( 1010):  d14 0000000000000000  d15 0000000000000000
I/DEBUG   ( 1010):  d16 3fe99999a0000000  d17 3fe999999999999a
I/DEBUG   ( 1010):  d18 0000000000000000  d19 0000000000000000
I/DEBUG   ( 1010):  d20 0000000000000000  d21 0000000000000000
I/DEBUG   ( 1010):  d22 0000000000000000  d23 0000000000000000
I/DEBUG   ( 1010):  d24 0000000000000000  d25 0000000000000000
I/DEBUG   ( 1010):  d26 0000000000000000  d27 0000000000000000
I/DEBUG   ( 1010):  d28 0000000000000000  d29 0000000000000000
I/DEBUG   ( 1010):  d30 0000000000000000  d31 0000000000000000
I/DEBUG   ( 1010):  scr 20000010
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010):          #00  pc 00019a74  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):          #01  pc 00019f9c  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):          #02  pc 00024ae8  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):          #03  pc 0001d8ec  /system/lib/libutils.so
I/DEBUG   ( 1010):          #04  pc 0001de56  /system/lib/libutils.so
I/DEBUG   ( 1010):          #05  pc 000118ec  /system/lib/libc.so
I/DEBUG   ( 1010):          #06  pc 000114b0  /system/lib/libc.so
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010): code around pc:
I/DEBUG   ( 1010): 83c19a54 ffb8f7ff edd06ca0 23000a0b 6ec7a917 
I/DEBUG   ( 1010): 83c19a64 0a07edc4 0a0ced90 0454f8df 0a08ed84 
I/DEBUG   ( 1010): 83c19a74 7a17edd7 edc44478 64e37a09 e88af7fe 
I/DEBUG   ( 1010): 83c19a84 9817b940 024cf104 1438f8df 44796945 
I/DEBUG   ( 1010): 83c19a94 4798682b e430f8df 0924f10d ad182600 
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010): code around lr:
I/DEBUG   ( 1010): 801049f0 e1853f92 e3530000 1afffffa e8bd8070 
I/DEBUG   ( 1010): 80104a00 e92d4070 e1a04000 e1a05001 ebffffd4 
I/DEBUG   ( 1010): 80104a10 e1950f9f e0802004 e1853f92 e3530000 
I/DEBUG   ( 1010): 80104a20 1afffffa e8bd8070 e1a01000 e3e00000 
I/DEBUG   ( 1010): 80104a30 eafffff2 e1a01000 e3a00001 eaffffef 
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010): stack:
I/DEBUG   ( 1010):     435a6d28  00000000  
I/DEBUG   ( 1010):     435a6d2c  0008f0ac  
I/DEBUG   ( 1010):     435a6d30  83c2c738  
I/DEBUG   ( 1010):     435a6d34  80e1bf5b  /system/lib/libui.so
I/DEBUG   ( 1010):     435a6d38  00100000  
I/DEBUG   ( 1010):     435a6d3c  afd13f07  /system/lib/libc.so
I/DEBUG   ( 1010):     435a6d40  0008ef40  
I/DEBUG   ( 1010):     435a6d44  00000000  
I/DEBUG   ( 1010):     435a6d48  0008ef88  
I/DEBUG   ( 1010):     435a6d4c  0008f038  
I/DEBUG   ( 1010):     435a6d50  fffffec0  
I/DEBUG   ( 1010):     435a6d54  83c199d9  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     435a6d58  0008ef40  
I/DEBUG   ( 1010):     435a6d5c  0008f038  
I/DEBUG   ( 1010):     435a6d60  df002777  
I/DEBUG   ( 1010):     435a6d64  e3a070ad  
I/DEBUG   ( 1010): #00 435a6d68  83c26ea2  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     435a6d6c  8021ddc5  /system/lib/libutils.so
I/DEBUG   ( 1010):     435a6d70  fffffff8  
I/DEBUG   ( 1010):     435a6d74  0008d040  
I/DEBUG   ( 1010):     435a6d78  00000000  
I/DEBUG   ( 1010):     435a6d7c  0008efa0  
I/DEBUG   ( 1010):     435a6d80  00000000  
I/DEBUG   ( 1010):     435a6d84  0008d040  
I/DEBUG   ( 1010):     435a6d88  00000001  
I/DEBUG   ( 1010):     435a6d8c  8021dccf  /system/lib/libutils.so
I/DEBUG   ( 1010):     435a6d90  00000000  
I/DEBUG   ( 1010):     435a6d94  00000000  
I/DEBUG   ( 1010):     435a6d98  00000000  
I/DEBUG   ( 1010):     435a6d9c  00000000  
I/DEBUG   ( 1010):     435a6da0  00000000  
I/DEBUG   ( 1010):     435a6da4  00000001  
I/DEBUG   ( 1010):     435a6da8  00000000  
I/DEBUG   ( 1010):     435a6dac  00100000  
I/DEBUG   ( 1010):     435a6db0  00001000  
I/DEBUG   ( 1010):     435a6db4  00000000  
I/DEBUG   ( 1010):     435a6db8  00000000  
I/DEBUG   ( 1010):     435a6dbc  0008eff8  
I/DEBUG   ( 1010):     435a6dc0  fffffff8  
I/DEBUG   ( 1010):     435a6dc4  0008ef98  
I/DEBUG   ( 1010):     435a6dc8  0008ef98  
I/DEBUG   ( 1010):     435a6dcc  00000001  
I/DEBUG   ( 1010):     435a6dd0  00000000  
I/DEBUG   ( 1010):     435a6dd4  83c26ea2  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     435a6dd8  0008efb4  
I/DEBUG   ( 1010):     435a6ddc  0008efa4  
I/DEBUG   ( 1010):     435a6de0  00000000  
I/DEBUG   ( 1010):     435a6de4  8021ddb7  /system/lib/libutils.so
I/DEBUG   ( 1010):     435a6de8  00000000  
I/DEBUG   ( 1010):     435a6dec  0008efa0  
I/DEBUG   ( 1010):     435a6df0  8021dd15  /system/lib/libutils.so
I/DEBUG   ( 1010):     435a6df4  00096260  
I/DEBUG   ( 1010):     435a6df8  435a6e84  
I/DEBUG   ( 1010):     435a6dfc  0008eba0  
I/DEBUG   ( 1010):     435a6e00  0008ef40  
I/DEBUG   ( 1010):     435a6e04  0008d040  
I/DEBUG   ( 1010):     435a6e08  00100000  
I/DEBUG   ( 1010):     435a6e0c  83c1a013  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     435a6e10  0008efd0  
I/DEBUG   ( 1010):     435a6e14  83c1a027  /system/lib/libsurfaceflinger.so
I/DEBUG  [   56.830291] request_suspend_state: wakeup (0->0) at 57017639163 (2000-01-01 00:00:53.918731694 UTC)
 ( 1010):     435a6e18  0008efd0[   56.842803] init: untracked pid 1240 exited
  
I/DEBUG   ( 1010):     435a6e1c  80215b8f  /system/lib/libutils.so
I/DEBUG   ( 1010):     435a6e20  0008ef40  
I/DEBUG   ( 1010):     435a6e24  96366864  
I/DEBUG   ( 1010):     435a6e28  83c2cc54  
I/DEBUG   ( 1010):     435a6e2c  0008ef40  
I/DEBUG   ( 1010):     435a6e30  00000000  
I/DEBUG   ( 1010):     435a6e34  435a6e84  
I/DEBUG   ( 1010):     435a6e38  0008eba0  
I/DEBUG   ( 1010):     435a6e3c  0008ef40  
I/DEBUG   ( 1010):     435a6e40  0008d040  
I/DEBUG   ( 1010):     435a6e44  00100000  
I/DEBUG   ( 1010):     435a6e48  00000001  
I/DEBUG   ( 1010):     435a6e4c  83c19fa1  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010): #01 435a6e50  0008eb10  
I/DEBUG   ( 1010):     435a6e54  83c2b7cc  
I/DEBUG   ( 1010):     435a6e58  435a6e84  
I/DEBUG   ( 1010):     435a6e5c  83c24aed  /system/lib/libsurfaceflinger.so
D/Zygote  ( 1159): Process 1160 terminated by signal (11)
I/Zygote  ( 1159): Exit zygote because system server (1160) has terminated
I/ServiceManager( 1007): service 'media.audio_flinger' died
I/ServiceManager( 1007): service 'media.player' died
I/ServiceManager( 1007): service 'media.camera' died
I/ServiceManager( 1007): service 'media.audio_policy' died
I/        ( 1174): ServiceManager: 0xad50
E/ALSALib ( 1174): external/alsa-lib/src/control/control.c:909:(snd_ctl_open_noupdate) Invalid CTL AndroidPlayback
W/AudioHardwareALSA( 1174): Unable to attach mixer to device AndroidPlayback: No such file or directory
E/ALSALib ( 1174): external/alsa-lib/src/control/control.c:909:(snd_ctl_open_noupdate) Invalid CTL AndroidCapture
W/AudioHardwareALSA( 1174): Unable to attach mixer to device AndroidCapture: No such file or directory
D/TIALSAModule( 1174): TI ALSA module opened
D/TIALSAModule( 1174): Initializing devices for TI ALSA module
I/CameraService( 1174): CameraService started (pid=1174)
D/AudioHardwareALSA( 1174): openOutputStream called for devices: 0x00000002
D/TIALSAModule( 1174): open called for devices 00000002 in mode 0...
I/TIALSAModule( 1174): Initialized ALSA PLAYBACK device default
I/AudioFlinger( 1174): AudioFlinger's thread 0x38b10 ready to run
D/TIALSAModule( 1174): route called for devices 00000002 in mode 0...
E/AudioHardwareALSA( 1174): CALLING STANDBY
D/AndroidRuntime( 1181): 
D/AndroidRuntime( 1181): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 1181): CheckJNI is ON
D/dalvikvm( 1181): creating instr width table
I/SamplingProfilerIntegration( 1181): Profiler is disabled.
I/Zygote  ( 1181): Preloading classes...
D/dalvikvm( 1181): GC_EXPLICIT freed 46K, 78% free 232K/1024K, external 0K/0K, paused 2ms
D/dalvikvm( 1181): GC_EXPLICIT freed 1K, 73% free 283K/1024K, external 0K/0K, paused 2ms
D/dalvikvm( 1181): GC_EXPLICIT freed 22K, 70% free 317K/1024K, external 0K/0K, paused 3ms
I/bluetooth_ScoSocket.cpp( 1181): Entry name = MY-CAR ScoTypes = 0x7f
I/bluetooth_ScoSocket.cpp( 1181): Entry name = Motorola HF850 ScoTypes = 0x7
D/dalvikvm( 1181): GC_EXPLICIT freed 16K, 66% free 354K/1024K, external 0K/0K, paused 3ms
D/dalvikvm( 1181): GC_EXPLICIT freed 25K, 63% free 383K/1024K, external 0K/0K, paused 4ms
D/dalvikvm( 1181): GC_EXPLICIT freed 20K, 58% free 440K/1024K, external 0K/0K, paused 4ms
W/MediaProfiles( 1181): could not find media config xml file
D/dalvikvm( 1181): GC_EXPLICIT freed 98K, 48% free 542K/1024K, external 0K/0K, paused 5ms
D/dalvikvm( 1181): GC_EXPLICIT freed 271K, 24% free 881K/1155K, external 0K/0K, paused 7ms
D/dalvikvm( 1181): GC_EXPLICIT freed 21K, 20% free 928K/1155K, external 0K/0K, paused 6ms
D/RenderScript_jni( 1181): RenderScript JNI library not found!
D/dalvikvm( 1181): GC_EXPLICIT freed 24K, 21% free 969K/1219K, external 0K/0K, paused 7ms
D/dalvikvm( 1181): GC_EXPLICIT freed 24K, 6% free 1275K/1347K, external 0K/0K, paused 9ms
D/dalvikvm( 1181): GC_EXPLICIT freed 24K, 4% free 1304K/1347K, external 0K/0K, paused 10ms
D/dalvikvm( 1181): GC_EXPLICIT freed 27K, 6% free 1329K/1411K, external 0K/0K, paused 10ms
D/dalvikvm( 1181): GC_EXPLICIT freed 14K, 3% free 1370K/1411K, external 0K/0K, paused 10ms
D/dalvikvm( 1181): GC_EXPLICIT freed 28K, 6% free 1396K/1475K, external 0K/0K, paused 11ms
D/dalvikvm( 1181): GC_EXPLICIT freed 27K, 3% free 1432K/1475K, external 0K/0K, paused 11ms
D/dalvikvm( 1181): GC_EXPLICIT freed 38K, 6% free 1450K/1539K, external 0K/0K, paused 11ms
D/dalvikvm( 1181): GC_EXPLICIT freed 41K, 5% free 1465K/1539K, external 0K/0K, paused 11ms
D/dalvikvm( 1181): GC_EXPLICIT freed 55K, 4% free 1478K/1539K, external 0K/0K, paused 11ms
D/dalvikvm( 1181): GC_FOR_MALLOC freed 2964K, 58% free 2159K/5123K, external 0K/0K, paused 32ms
D/dalvikvm( 1181): GC_EXPLICIT freed 1394K, 56% free 2303K/5123K, external 0K/0K, paused 25ms
D/dalvikvm( 1181): GC_EXPLICIT freed 127K, 54% free 2364K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1181): GC_EXPLICIT freed 73K, 54% free 2389K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1181): GC_EXPLICIT freed 36K, 54% free 2407K/5123K, external 0K/0K, paused 19ms
D/dalvikvm( 1181): GC_EXPLICIT freed 31K, 53% free 2430K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1181): GC_EXPLICIT freed 38K, 53% free 2453K/5123K, external 0K/0K, paused 20ms
I/Zygote  ( 1181): ...preloaded 1830 classes in 2420ms.
D/dalvikvm( 1181): GC_EXPLICIT freed 18K, 53% free 2452K/5123K, external 0K/0K, paused 19ms
I/Zygote  ( 1181): Preloading resources...
D/dalvikvm( 1181): GC_EXTERNAL_ALLOC freed <1K, 53% free 2453K/5123K, external 0K/0K, paused 20ms
D/dalvikvm( 1181): GC_EXPLICIT freed 15K, 52% free 2493K/5123K, external 414K/521K, paused 43ms
D/dalvikvm( 1181): GC_EXTERNAL_ALLOC freed 7K, 52% free 2503K/5123K, external 516K/521K, paused 20ms
I/Zygote  ( 1181): ...preloaded 51 resources in 310ms.
I/Zygote  ( 1181): ...preloaded 15 resources in 5ms.
D/dalvikvm( 1181): GC_EXPLICIT freed 14K, 51% free 2527K/5123K, external 716K/1038K, paused 21ms
D/dalvikvm( 1181): GC_EXPLICIT freed 8K, 51% free 2518K/5123K, external 716K/1038K, paused 20ms
D/dalvikvm( 1181): GC_EXPLICIT freed 1K, 51% free 2517K/5123K, external 716K/1038K, paused 21ms
I/dalvikvm( 1181): System server process 1186 has been created
I/Zygote  ( 1181): Accepting command socket connections
E/BatteryService( 1186): acOnlinePath not found
E/BatteryService( 1186): usbOnlinePath not found
E/BatteryService( 1186): batteryStatusPath not found
E/BatteryService( 1186): batteryHealthPath not found
E/BatteryService( 1186): batteryPresentPath not found
E/BatteryService( 1186): batteryCapacityPath not found
E/BatteryService( 1186): batteryVoltagePath not found
E/BatteryService( 1186): batteryTemperaturePath not found
E/BatteryService( 1186): batteryTechnologyPath not found
I/sysproc ( 1186): Entered system_init()
I/sysproc ( 1186): ServiceManager: 0x1b4a50
I/SurfaceFlinger( 1186): SurfaceFlinger is starting
I/SurfaceFlinger( 1186): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
E/FramebufferNativeWindow( 1186): couldn't open framebuffer HAL (No such device)
I/DEBUG   ( 1010): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG   ( 1010): Build fingerprint: 'TI/omap3evm/omap3evm:2.3/GRH55/eng.a0393957.20110329.200522:eng/test-keys'
I/DEBUG   ( 1010): pid: 1186, tid: 1194  >>> system_server <<<
I/DEBUG   ( 1010): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0000005c
I/DEBUG   ( 1010):  r0 0000d248  r1 433b3dc4  r2 00000001  r3 00000000
I/DEBUG   ( 1010):  r4 0008ef70  r5 0008f068  r6 fffffec0  r7 00000000
I/DEBUG   ( 1010):  r8 83c2c738  r9 0008d040  10 00100000  fp 00000001
I/DEBUG   ( 1010):  ip 83c2c794  sp 433b3d68  lr 80104a10  pc 83c19a74  cpsr 60000030
I/DEBUG   ( 1010):  d0  0000000000000000  d1  4148207265666665
I/DEBUG   ( 1010):  d2  6461657268742076  d3  7420796461657269
I/DEBUG   ( 1010):  d4  49202e6e7572206f  d5  7a696c616974696e
I/DEBUG   ( 1010):  d6  7061726720676e69  d7  0000000073636968
I/DEBUG   ( 1010):  d8  0000000000000000  d9  0000000000000000
I/DEBUG   ( 1010):  d10 0000000000000000  d11 0000000000000000
I/DEBUG   ( 1010):  d12 0000000000000000  d13 0000000000000000
I/DEBUG   ( 1010):  d14 0000000000000000  d15 0000000000000000
I/DEBUG   ( 1010):  d16 3fe99999a0000000  d17 3fe999999999999a
I/DEBUG   ( 1010):  d18 42eccefa43de3400  d19 3fbc71c71c71c71c
I/DEBUG   ( 1010):  d20 4008000000000000  d21 3fd99a27ad32ddf5
I/DEBUG   ( 1010):  d22 3fd24998d6307188  d23 3fcc7288e957b53b
I/DEBUG   ( 1010):  d24 3fc74721cad6b0ed  d25 3fc39a09d078c69f
I/DEBUG   ( 1010):  d26 0000000000000000  d27 0000000000000000
I/DEBUG   ( 1010):  d28 0000000000000000  d29 0000000000000000
I/DEBUG   ( 1010):  d30 0000000000000000  d31 0000000000000000
I/DEBUG   ( 1010):  scr 20000010
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010):          #00  pc 00019a74  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):          #01  pc 00019f9c  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):          #02  pc 00024ae8  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):          #03  pc 0001d8ec  /system/lib/libutils.so
I/DEBUG   ( 1010):          #04  pc 0001de56  /system/lib/libutils.so
I/DEBUG   ( 1010):          #05  pc 000118ec  /system/lib/libc.so
I/DEBUG   ( 1010):          #06  pc 000114b0  /system/lib/libc.so
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010): code around pc:
I/DEBUG   ( 1010): 83c19a54 ffb8f7ff edd06ca0 23000a0b 6ec7a917 
I/DEBUG   ( 1010): 83c19a64 0a07edc4 0a0ced90 0454f8df 0a08ed84 
I/DEBUG   ( 1010): 83c19a74 7a17edd7 edc44478 64e37a09 e88af7fe 
I/DEBUG   ( 1010): 83c19a84 9817b940 024cf104 1438f8df 44796945 
I/DEBUG   ( 1010): 83c19a94 4798682b e430f8df 0924f10d ad182600 
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010): code around lr:
I/DEBUG   ( 1010): 801049f0 e1853f92 e3530000 1afffffa e8bd8070 
I/DEBUG   ( 1010): 80104a00 e92d4070 e1a04000 e1a05001 ebffffd4 
I/DEBUG   ( 1010): 80104a10 e1950f9f e0802004 e1853f92 e3530000 
I/DEBUG   ( 1010): 80104a20 1afffffa e8bd8070 e1a01000 e3e00000 
I/DEBUG   ( 1010): 80104a30 eafffff2 e1a01000 e3a00001 eaffffef 
I/DEBUG   ( 1010): 
I/DEBUG   ( 1010): stack:
I/DEBUG   ( 1010):     433b3d28  00000000  
I/DEBUG   ( 1010):     433b3d2c  0008f0dc  
I/DEBUG   ( 1010):     433b3d30  83c2c738  
I/DEBUG   ( 1010):     433b3d34  80e1bf5b  /system/lib/libui.so
I/DEBUG   ( 1010):     433b3d38  00100000  
I/DEBUG   ( 1010):     433b3d3c  afd13f07  /system/lib/libc.so
I/DEBUG   ( 1010):     433b3d40  0008ef70  
I/DEBUG   ( 1010):     433b3d44  00000000  
I/DEBUG   ( 1010):     433b3d48  0008efb8  
I/DEBUG   ( 1010):     433b3d4c  0008f068  
I/DEBUG   ( 1010):     433b3d50  fffffec0  
I/DEBUG   ( 1010):     433b3d54  83c199d9  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     433b3d58  0008ef70  
I/DEBUG   ( 1010):     433b3d5c  0008f068  
I/DEBUG   ( 1010):     433b3d60  df002777  
I/DEBUG   ( 1010):     433b3d64  e3a070ad  
I/DEBUG   ( 1010): #00 433b3d68  83c26ea2  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     433b3d6c  8021ddc5  /system/lib/libutils.so
I/DEBUG   ( 1010):     433b3d70  fffffff8  
I/DEBUG   ( 1010):     433b3d74  0008d040  
I/DEBUG   ( 1010):     433b3d78  00000000  
I/DEBUG   ( 1010):     433b3d7c  0008efd0  
I/DEBUG   ( 1010):     433b3d80  00000000  
I/DEBUG   ( 1010):     433b3d84  0008d040  
I/DEBUG   ( 1010):     433b3d88  00000001  
I/DEBUG   ( 1010):     433b3d8c  8021dccf  /system/lib/libutils.so
I/DEBUG   ( 1010):     433b3d90  00000000  
I/DEBUG   ( 1010):     433b3d94  00000000  
I/DEBUG   ( 1010):     433b3d98  00000000  
I/DEBUG   ( 1010):     433b3d9c  00000000  
I/DEBUG   ( 1010):     433b3da0  00000000  
I/DEBUG   ( 1010):     433b3da4  00000001  
I/DEBUG   ( 1010):     433b3da8  00000000  
I/DEBUG   ( 1010):     433b3dac  00100000  
I/DEBUG   ( 1010):     433b3db0  00001000  
I/DEBUG   ( 1010):     433b3db4  00000000  
I/DEBUG   ( 1010):     433b3db8  00000000  
I/DEBUG   ( 1010):     433b3dbc  0008f028  
I/DEBUG   ( 1010):     433b3dc0  fffffff8  
I/DEBUG   ( 1010):     433b3dc4  0008efc8  
I/DEBUG   ( 1010):     433b3dc8  0008efc8  
I/DEBUG   ( 1010):     433b3dcc  00000001  
I/DEBUG   ( 1010):     433b3dd0  00000000  
I/DEBUG   ( 1010):     433b3dd4  83c26ea2  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     433b3dd8  0008efe4  
I/DEBUG   ( 1010):     433b3ddc  0008efd4  
I/DEBUG   ( 1010):     433b3de0  00000000  
I/DEBUG   ( 1010):     433b3de4  8021ddb7  /system/lib/libutils.so
I/DEBUG   ( 1010):     433b3de8  00000000  
I/DEBUG   ( 1010):     433b3dec  0008efd0  
I/DEBUG   ( 1010):     433b3df0  8021dd15  /system/lib/libutils.so
I/DEBUG   ( 1010):     433b3df4  00096260  
I/DEBUG   ( 1010):     433b3df8  433b3e84  
I/DEBUG   ( 1010):     433b3dfc  0008eba0  
I/DEBUG   ( 1010):     433b3e00  0008ef70  
I/DEBUG   ( 1010):     433b3e04  0008d040  
I/DEBUG   ( 1010):     433b3e08  00100000  
I/DEBUG   ( 1010):     433b3e0c  83c1a013  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     433b3e10  0008f000  
I/DEBUG   ( 1010):     433b3e14  83c1a027  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010):     433b3e18  0008f000  
I/DEBUG   ( 1010):     433b3e1c  80215b8f  /system/lib/libutils.so
I/DEBUG   ( 1010):     433b3e20  0008ef70  
I/DEBUG   ( 1010):     433b3e24  6f835881  
I/DEBUG   ( 1010):     433b3e28  83c2cc54  
I/DEBUG   ( 1010):     433b3e2c  0008ef70  
I/DEBUG   ( 1010):     433b3e30  00000000  
I/DEBUG   ( 1010):     433b3e34  433b3e84  
I/DEBUG   ( 1010):     433b3e38  0008eba0  
I/DEBUG   ( 1010):     433b3e3c  0008ef70  
I/DEBUG   ( 1010):     433b3e40  0008d040  
I/DEBUG   ( 1010):     433b3e44  00100000  
I/DEBUG   ( 1010):     433b3e48  00000001  
I/DEBUG   ( 1010):     433b3e4c  83c19fa1  /system/lib/libsurfaceflinger.so
I/DEBUG   ( 1010): #01 433b3e50  0008eb10  
I/DEBUG   ( 1010):     433b3e54  83c2b7cc  
I/DEBUG   ( 1010):     433b3e58  433b3e84  
I/DEBUG   ( 1010):     433b3e5c  83c24aed  /system/lib/libsurfaceflinger.so
D/Zygote  ( 1181): Process 1186 terminated by signal (11)
I/Zygote  ( 1181): Exit zygote because system server (1186) has terminated
I/ServiceManager( 1007): service 'media.audio_flinger' died
I/ServiceManager( 1007): service 'media.player' died
I/ServiceManager( 1007): service 'media.camera' died
I/ServiceManager( 1007): service 'media.audio_policy' died
I/        ( 1196): ServiceManager: 0xad50
E/ALSALib ( 1196): external/alsa-lib/src/control/control.c:909:(snd_ctl_open_noupdate) Invalid CTL AndroidPlayback
W/AudioHardwareALSA( 1196): Unable to attach mixer to device AndroidPlayback: No such file or directory
E/ALSALib ( 1196): external/alsa-lib/src/control/control.c:909:(snd_ctl_open_noupdate) Invalid CTL AndroidCapture
W/AudioHardwareALSA( 1196): Unable to attach mixer to device AndroidCapture: No such file or directory
D/TIALSAModule( 1196): TI ALSA module opened
D/TIALSAModule( 1196): Initializing devices for TI ALSA module
I/CameraService( 1196): CameraService started (pid=1196)
D/AudioHardwareALSA( 1196): openOutputStream called for devices: 0x00000002
D/TIALSAModule( 1196): open called for devices 00000002 in mode 0...
I/TIALSAModule( 1196): Initialized ALSA PLAYBACK device default
I/AudioFlinger( 1196): AudioFlinger's thread 0x38b10 ready to run
D/TIALSAModule( 1196): route called for devices 00000002 in mode 0...
E/AudioHardwareALSA( 1196): CALLING STANDBY
D/AndroidRuntime( 1203): 
D/AndroidRuntime( 1203): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 1203): CheckJNI is ON
D/dalvikvm( 1203): creating instr width table
I/SamplingProfilerIntegration( 1203): Profiler is disabled.
Please help me..
Thanks.
  • Hi Nimit,

    Nimit Solanki said:
    I/syspro[   56.257598] pvrsrvkm: disagrees about version of symbol module_layout
    c ( 1160): ServiceManager: 0x1b4a50
    I/SurfaceFlinger( 1160): SurfaceFlinger is starting
    I/SurfaceFlinger( 1160): SurfaceFlinger's main thread ready to run. In[   56.278442] omaplfb: disagrees about version of symbol module_layout

    From the logcat it looks like your SGX (2D/3D acceleration) libraries are not built properly.

    Please build your source code again and try.

    Please refer to below developer guide for more details.

    http://processors.wiki.ti.com/index.php/TI-Android-GingerBread-2.3.4-DevKit-2.1_DeveloperGuide#Filesystem_with_SGX

    Thanks and Regards,

    Pankaj Bharadiya

  • Hi Pankaj,

    I am using FileSystem as per my vendor Specification i.e. unmodified AM37x

    You can have look at my README.txt

     

    Filesystem
    ==========
    We use unmodified Android Gingerbread filesystem as provided by TI.
    
    Download pre-built images for AM37x from
    http://software-dl.ti.com/dsps/dsps_public_sw/sdo_tii/TI_Android_DevKit/TI_Android_GingerBread_2_3_4_DevKit_2_1/exports/AM37X.tar.gz
    
    Extract the filesystem and corresponding files:
    
    	tar xvf AM37X.tar.gz AM37X/Filesystem/rootfs_am37x.tar.bz2	\
    			AM37X/mkmmc-android.sh AM37X/Boot_Images/boot.scr
    
    Have X-loader (MLO) and U-Boot (u-boot.bin) provided by Variscite handy.
    
    This is what I exactly did, I haven't build the File System by myself.

  • Hi Nimit,

    If you have replaced kernel image (uImage) then you may have to build SGX modules again otherwise you will get error like "disagrees about version of symbol module_layout".

    Please re-build your SGX libraries and try again. Let us know if you face any issues.

     

    You can follow below steps to build SGX seperately.

    1. make TARGET_PRODUCT=omap3evm ANDROID_ROOT_DIR=<android source path> OMAPES=5.x

    2. cd <android source path>/hardware/ti/sgx/gfx_rel_es5.x_android

    3. cd /hardware/ti/sgx/gfx_rel_es5.x_android

    4.  ./install.sh --root <filesystem path>


    Thanks and Regards,

    Pankaj Bharadiya

     

     

  • Hello, I'm a italian guy and I want put android on my var-som-om37 module but your guide don't work. I downloaded AM37x on TI site, I extracted archive and I used the script mkmmc-android.sh for make the sd card. But when I try the board don't work.

    Now I have a question. I haven't:

    Have X-loader (MLO) and U-Boot (u-boot.bin) provided by Variscite handy.
    
     
    can you help me? thanks
    bye from Italy
  • Hi Marco,

    Please provide the boot log to dig this further.

    The TI AM37xEVM image may not work directly on your board. Please use prebuilt image provided by Variscite.

    Thanks and Regards,

    Pankaj Bharadiya