First try of Linaro Android 12.01 Pandaboard

Discuss TI Beagleboard, Pandaboard, their related extensions and accessories
esky-sh
Posts: 1435
Joined: Sat Dec 20, 2008 4:21 am

Re: First try of Linaro Android 12.01 Pandaboard

Post by esky-sh » Thu Feb 02, 2012 5:45 pm

yes. we will upload the source code until we have done some verify.
BTW, we use the default panda-defconfig for kernel build.

MrPec
Posts: 31
Joined: Mon Jan 02, 2012 11:39 pm

Re: First try of Linaro Android 12.01 Pandaboard

Post by MrPec » Thu Feb 02, 2012 11:34 pm

We tried your kernel, it works, but wifi is missing in landing from TI. It would be really great if you could make a diff on your branch against landing. We managed to create a patch for beada and tracking panda, and everything works (touch, pwm, wifi, gfx, ..). Unfortunatly, tracking suffers from big bug in sgx, and panda crashes after about 5min (see issue https://bugs.launchpad.net/linaro-android/+bug/912651 and https://bugs.launchpad.net/linaro-android/+bug/920010)

So, please upload a diff from your landing branch you used to compile the kernel you posted, and 12.01 landing - that would be great. Then, we could use that as a base and add wifi support from TI-omapzoom wl1271 ICS codebase.

Alex

MrPec
Posts: 31
Joined: Mon Jan 02, 2012 11:39 pm

Re: First try of Linaro Android 12.01 Pandaboard

Post by MrPec » Thu Feb 02, 2012 11:40 pm

I'm not sure what you mean with "we use the default panda-defconfig" - you should include at least the modules for beada, shouldn't you?
We also tried that, but it seems there are some dependencies and the display does not work....

Btw, to get beada working on tracking a big issue (and easy to solve) is that they disabled DVI. I posted a solution on how to re-enable it here:

https://bugs.launchpad.net/linaro-android/+bug/893000

MrPec
Posts: 31
Joined: Mon Jan 02, 2012 11:39 pm

Re: First try of Linaro Android 12.01 Pandaboard

Post by MrPec » Fri Feb 03, 2012 12:00 am

Ah, one last think. The touchscreen driver is in the wrong mode (relative, not absolute). We find out that you have to include an additional line in your tsc-beada driver:

in method:
static int __devinit tsc_beada_probe(struct i2c_client *client)

add the line:
__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);


after that, it should look like:
input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
input_set_abs_params(input_dev, ABS_X, ADS_X_MIN, ADS_X_MAX, 0, 0);
input_set_abs_params(input_dev, ABS_Y, ADS_Y_MIN, ADS_Y_MAX, 0, 0);

Thats it, touchscreen should work!

esky-sh
Posts: 1435
Joined: Sat Dec 20, 2008 4:21 am

Re: First try of Linaro Android 12.01 Pandaboard

Post by esky-sh » Fri Feb 03, 2012 1:12 am

MrPec wrote:Ah, one last think. The touchscreen driver is in the wrong mode (relative, not absolute). We find out that you have to include an additional line in your tsc-beada driver:

in method:
static int __devinit tsc_beada_probe(struct i2c_client *client)

add the line:
__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);


after that, it should look like:
input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
__set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
input_set_abs_params(input_dev, ABS_X, ADS_X_MIN, ADS_X_MAX, 0, 0);
input_set_abs_params(input_dev, ABS_Y, ADS_Y_MIN, ADS_Y_MAX, 0, 0);

Thats it, touchscreen should work!
Thanks for pointing it out, we are just puzzled what's wrong with ICS touch operation and then you guys provide solution. It works now!

esky-sh
Posts: 1435
Joined: Sat Dec 20, 2008 4:21 am

Re: First try of Linaro Android 12.01 Pandaboard

Post by esky-sh » Fri Feb 03, 2012 1:34 am

MrPec wrote:We tried your kernel, it works, but wifi is missing in landing from TI. It would be really great if you could make a diff on your branch against landing. We managed to create a patch for beada and tracking panda, and everything works (touch, pwm, wifi, gfx, ..). Unfortunatly, tracking suffers from big bug in sgx, and panda crashes after about 5min (see issue https://bugs.launchpad.net/linaro-android/+bug/912651 and https://bugs.launchpad.net/linaro-android/+bug/920010)

So, please upload a diff from your landing branch you used to compile the kernel you posted, and 12.01 landing - that would be great. Then, we could use that as a base and add wifi support from TI-omapzoom wl1271 ICS codebase.

Alex
I am uploading source code to our official ftp, it is in Beada20120202 folder and please use panda_beada_defconfig for new build.

MrPec
Posts: 31
Joined: Mon Jan 02, 2012 11:39 pm

Re: First try of Linaro Android 12.01 Pandaboard

Post by MrPec » Fri Feb 03, 2012 7:14 am

Ok, thank you. We now face the issue with the missing/defect wifi driver. Do you have an idea whats wrong here?

esky-sh
Posts: 1435
Joined: Sat Dec 20, 2008 4:21 am

Re: First try of Linaro Android 12.01 Pandaboard

Post by esky-sh » Sat Feb 04, 2012 8:57 pm

MrPec wrote:We tried your kernel, it works, but wifi is missing in landing from TI. It would be really great if you could make a diff on your branch against landing. We managed to create a patch for beada and tracking panda, and everything works (touch, pwm, wifi, gfx, ..). Unfortunatly, tracking suffers from big bug in sgx, and panda crashes after about 5min (see issue https://bugs.launchpad.net/linaro-android/+bug/912651 and https://bugs.launchpad.net/linaro-android/+bug/920010)

So, please upload a diff from your landing branch you used to compile the kernel you posted, and 12.01 landing - that would be great. Then, we could use that as a base and add wifi support from TI-omapzoom wl1271 ICS codebase.

Alex
Could you explain more on your works of linaro tracking branch? I make same changes as yours and first time I boot the board, a message 'Unfortunately, UI does not start" appear on screen, I reboot the board and then screen stuck on 'Android' logo forever...

Code: Select all

U-Boot SPL 2011.12 (Jan 23 2012 - 06:10:01)
Texas Instruments OMAP4430 ES2.1
OMAP SD/MMC: 0
reading u-boot.img
reading u-boot.img


U-Boot 2011.12 (Jan 23 2012 - 06:10:01)

CPU  : OMAP4430 ES2.1
Board: OMAP4 Panda
I2C:   ready
DRAM:  1 GiB
WARNING: Caches not enabled
MMC:   OMAP SD/MMC: 0
Using default environment

In:    serial
Out:   serial
Err:   serial
Net:   No ethernet found.
Hit any key to stop autoboot:  0
reading uEnv.txt

** Unable to read "uEnv.txt" from mmc 0:1 **
reading boot.scr

449 bytes read
Loaded script from boot.scr
Running bootscript from mmc0 ...
## Executing script at 82000000
reading uImage

4359680 bytes read
reading uInitrd

165635 bytes read
## Booting kernel from Legacy Image at 80200000 ...
   Image Name:   Linux-3.2.0-rc7
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    4359616 Bytes = 4.2 MiB
   Load Address: 80008000
   Entry Point:  80008000
   Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 81600000 ...
   Image Name:   Android Ramdisk Image
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    165571 Bytes = 161.7 KiB
   Load Address: 00000000
   Entry Point:  00000000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.2.0-rc7 (root@NX-W-3) (gcc version 4.6.3 20120105                                                                                                                      (prerelse) (Linaro GCC 4.6-2012.01) ) #2 SMP PREEMPT Sun Feb 5 10:47:57 CST 201                                                                                                                     2
[    0.000000] CPU: ARMv7 Processor [411fc092] revision 2 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instructio                                                                                                                     n cache
[    0.000000] Machine: OMAP4 Panda board
[    0.000000] Reserving 50331648 bytes SDRAM for VRAM
[    0.000000] cma: CMA: reserved 32 MiB at 9a000000
[    0.000000] Memory policy: ECC disabled, Data cache writealloc
[    0.000000] OMAP4430 ES2.1
[    0.000000] PERCPU: Embedded 8 pages/cpu @e0808000 s10176 r8192 d14400 u32768
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pag                                                                                                                     es: 233216
[    0.000000] Kernel command line: console=ttyO2,115200n8 rootwait ro earlyprin                                                                                                                     tk fixrtc nocompcache vram=48M omapfb.vram=0:24M,1:24M mem=456M@0x80000000 mem=5                                                                                                                     12M@0xA0000000 init=/init androidboot.console=ttyO2
[    0.000000]
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Memory: 456MB 463MB = 919MB total
[    0.000000] Memory: 889008k/889008k available, 102224k reserved, 211968K high                                                                                                                     mem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xf0800000 - 0xf8000000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
[    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
[    0.000000]       .text : 0xc0008000 - 0xc07d0b28   (7971 kB)
[    0.000000]       .init : 0xc07d1000 - 0xc08117c0   ( 258 kB)
[    0.000000]       .data : 0xc0812000 - 0xc0872d70   ( 388 kB)
[    0.000000]        .bss : 0xc0872d70 - 0xc0a1d600   (1707 kB)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:410
[    0.000000] OMAP clockevent source: GPTIMER1 at 32768 Hz
[    0.000000] sched_clock: 32 bits at 32kHz, resolution 30517ns, wraps every 13                                                                                                                     1071999ms
[    0.000000] Console: colour dummy device 80x30
[    0.000366] Calibrating delay loop... 1598.59 BogoMIPS (lpj=6242304)
[    0.070373] pid_max: default: 32768 minimum: 301
[    0.070587] Security Framework initialized
[    0.070709] Mount-cache hash table entries: 512
[    0.071411] CPU: Testing write buffer coherency: ok
[    0.071655] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.071685] Calibrating local timer... 390.28MHz.
[    0.117431] L310 cache controller enabled
[    0.117462] l2x0: 16 ways, CACHE_ID 0x410000c4, AUX_CTRL 0x5e470000, Cache si                                                                                                                     ze: 1048576 B
[    0.194000] CPU1: Booted secondary processor
[    0.224151] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.224151] CPU1: Unknown IPI message 0x1
[    0.224182] Brought up 2 CPUs
[    0.224212] SMP: Total of 2 processors activated (3152.07 BogoMIPS).
[    0.224700] devtmpfs: initialized
[    0.227722] omap_hwmod: l4_div_ck: missing clockdomain for l4_div_ck.
[    0.280700] omap_hwmod: mcpdm: _wait_target_ready: -16
[    0.280700] ------------[ cut here ]------------
[    0.280731] WARNING: at arch/arm/mach-omap2/omap_hwmod.c:1509 _enable+0x1c8/0                                                                                                                     x28c()
[    0.280761] Modules linked in:
[    0.280792] [<c0019c10>] (unwind_backtrace+0x0/0xf8) from [<c0042858>] (warn_                                                                                                                     slowpath_common+0x4c/0x64)
[    0.280822] [<c0042858>] (warn_slowpath_common+0x4c/0x64) from [<c004288c>] (                                                                                                                     warn_slowpath_null+0x1c/0x24)
[    0.280822] [<c004288c>] (warn_slowpath_null+0x1c/0x24) from [<c00227a0>] (_e                                                                                                                     nable+0x1c8/0x28c)
[    0.280853] [<c00227a0>] (_enable+0x1c8/0x28c) from [<c0022c80>] (_setup+0xa0                                                                                                                     /0x170)
[    0.280853] [<c0022c80>] (_setup+0xa0/0x170) from [<c0022ed8>] (omap_hwmod_fo                                                                                                                     r_each+0x34/0x5c)
[    0.280914] [<c0022ed8>] (omap_hwmod_for_each+0x34/0x5c) from [<c07dabe0>] (o                                                                                                                     map_hwmod_setup_all+0x6c/0x98)
[    0.280914] [<c07dabe0>] (omap_hwmod_setup_all+0x6c/0x98) from [<c0008558>] (                                                                                                                     do_one_initcall+0x34/0x174)
[    0.280944] [<c0008558>] (do_one_initcall+0x34/0x174) from [<c07d189c>] (kern                                                                                                                     el_init+0x8c/0x12c)
[    0.280975] [<c07d189c>] (kernel_init+0x8c/0x12c) from [<c0013e24>] (kernel_t                                                                                                                     hread_exit+0x0/0x8)
[    0.281005] ---[ end trace 1b75b31a2719ed1c ]---
[    0.281005] omap_hwmod: mcpdm: cannot be enabled (3)
[    0.284912] Enabling ERRATA 751472
[    0.284942] OMAP4: Map 0xafe00000 to 0xfe600000 for dram barrier
[    0.286010] print_constraints: dummy:
[    0.288757] NET: Registered protocol family 16
[    0.304626] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.305023] GPMC revision 6.0
[    0.305084]  mpu.0: alias fck already exists
[    0.305541]  iva.0: alias fck already exists
[    0.307342] OMAP GPIO hardware version 0.1
[    0.309570] omap_mux_init: Add partition: #1: core, flags: 2
[    0.310394] omap_mux_init: Add partition: #2: wkup, flags: 2
[    0.313171] SRAM: Mapped pa 0x40300000 to va 0xf0840000 size: 0xd000
[    0.324371] OMAP DMA hardware revision 0.0
[    0.342712] bio: create slab <bio-0> at 0
[    0.343627] print_constraints: vwl1271: 1800 mV
[    0.344635] i2c-core: driver [twl] using legacy suspend method
[    0.344635] i2c-core: driver [twl] using legacy resume method
[    0.345153] SCSI subsystem initialized
[    0.346771] usbcore: registered new interface driver usbfs
[    0.347015] usbcore: registered new interface driver hub
[    0.347167] usbcore: registered new device driver usb
[    0.361450] omap_i2c omap_i2c.1: bus 1 rev2.4.0 at 400 kHz
[    0.362304] Skipping twl internal clock init and using bootloader value (unkn                                                                                                                     own osc rate)
[    0.362731] twl6030: PIH (irq 39) chaining IRQs 368..387
[    0.363250] print_constraints: VUSB: 3300 mV normal standby
[    0.560272] twl6030_usb twl6030_usb: Initialized TWL6030 USB module
[    0.561126] print_constraints: VMMC: 1200 <--> 3000 mV at 3000 mV normal stan                                                                                                                     dby
[    0.561614] print_constraints: VPP: 1800 <--> 2500 mV at 1900 mV normal stand                                                                                                                     by
[    0.562133] print_constraints: VUSIM: 1200 <--> 2900 mV at 1800 mV normal sta                                                                                                                     ndby
[    0.562713] print_constraints: VCXIO: 1800 mV normal standby
[    0.563049] print_constraints: VDAC: 1800 mV normal standby
[    0.563537] print_constraints: VAUX1_6030: 1000 <--> 3000 mV at 1800 mV norma                                                                                                                     l standby
[    0.563568] twl_reg twl_reg.37: Failed to set supply vmmc
[    0.563720] twl_reg twl_reg.37: can't register VAUX1_6030, -16
[    0.563720] twl_reg: probe of twl_reg.37 failed with error -16
[    0.564147] print_constraints: VAUX2_6030: 1200 <--> 2800 mV at 1800 mV norma                                                                                                                     l standby
[    0.564605] print_constraints: VAUX3_6030: 1000 <--> 3000 mV at 1200 mV norma                                                                                                                     l standby
[    0.564971] print_constraints: CLK32KG:
[    0.565307] print_constraints: VANA: 2100 mV normal standby
[    0.574859] omap_i2c omap_i2c.2: bus 2 rev2.4.0 at 100 kHz
[    0.590087] omap_i2c omap_i2c.3: bus 3 rev2.4.0 at 100 kHz
[    0.605316] omap_i2c omap_i2c.4: bus 4 rev2.4.0 at 400 kHz
[    0.606262] Advanced Linux Sound Architecture Driver Version 1.0.24.
[    0.607299] cfg80211: Calling CRDA to update world regulatory domain
[    0.608245] Switching to clocksource 32k_counter
[    0.633209] musb-hdrc: version 6.0, ?dma?, otg (peripheral+host)
[    0.633758] NET: Registered protocol family 2
[    0.633911] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.634399] TCP established hash table entries: 131072 (order: 8, 1048576 byt                                                                                                                     es)
[    0.636291] TCP bind hash table entries: 65536 (order: 7, 786432 bytes)
[    0.637390] TCP: Hash tables configured (established 131072 bind 65536)
[    0.637390] TCP reno registered
[    0.637390] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.637451] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.637664] NET: Registered protocol family 1
[    0.637939] RPC: Registered named UNIX socket transport module.
[    0.637969] RPC: Registered udp transport module.
[    0.637969] RPC: Registered tcp transport module.
[    0.637969] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.638153] Trying to unpack rootfs image as initramfs...
[    0.648742] Freeing initrd memory: 160K
[    0.648773] NetWinder Floating Point Emulator V0.97 (double precision)
[    0.829071] highmem bounce pool size: 64 pages
[    0.829467] ashmem: initialized
[    0.829742] VFS: Disk quotas dquot_6.5.2
[    0.829864] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.831085] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    0.831359] ROMFS MTD (C) 2007 Red Hat, Inc.
[    0.831787] Btrfs loaded
[    0.831787] msgmni has been set to 1386
[    0.832641] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2                                                                                                                     53)
[    0.832672] io scheduler noop registered
[    0.832672] io scheduler deadline registered
[    0.832733] io scheduler cfq registered (default)
[    0.835113] pwm_beada 2-0053: Rev.0 Backlight
[    0.835937] OMAP DSS rev 4.0
[    0.859466] dsscomp: initializing.
[    0.859527] misc dsscomp: found 2 displays and 4 overlays
[    0.859710] could not allocate slot
[    0.859985] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.241363] omap_uart.0: ttyO0 at MMIO 0x4806a000 (irq = 104) is a OMAP UART0
[    1.366149] omap_uart.1: ttyO1 at MMIO 0x4806c000 (irq = 105) is a OMAP UART1
[    1.491119] omap_uart.2: ttyO2 at MMIO 0x48020000 (irq = 106) is a OMAP UART2
[    2.387237] console [ttyO2] enabled
[    2.475524] omap_uart.3: ttyO3 at MMIO 0x4806e000 (irq = 102) is a OMAP UART3
[    2.600708] PVR: PVRCore_Init
[    2.604095] PVR: PVRSRVDriverProbe(pDevice=efe9b600)
[    2.609405] PVR: SGX register base: 0x56000000
[    2.614105] PVR: SGX register size: 65535
[    2.618377] PVR: SGX IRQ: 53
[    2.621429] PVR: EnableSystemClocks: Enabling System Clocks
[    2.627410] voltdm_scale: No voltage scale API registered for vdd_core
[    2.634338] pvrsrvkm pvrsrvkm.0: _dvfs_scale: Unable to scale the core to 120                                                                                                                     0000 volt
[    2.642730] pvrsrvkm pvrsrvkm.0: omap_device_scale: scale by pvrsrvkm.0 faile                                                                                                                     d -61[f=307200000, v=1200000]
[    2.652984] PVR_K:(Error): EnableSGXClocks: Unable to scale SGX frequency (-6                                                                                                                     1) [172, drivers/gpu/pvr/omap4/sysutils_linux.c]
[    2.665100] voltdm_scale: No voltage scale API registered for vdd_core
[    2.672027] pvrsrvkm pvrsrvkm.0: _dvfs_scale: Unable to scale the core to 102                                                                                                                     5000 volt
[    2.680419] pvrsrvkm pvrsrvkm.0: omap_device_scale: scale by pvrsrvkm.0 faile                                                                                                                     d -61[f=153600000, v=1025000]
[    2.690643] PVR_K:(Error): EnableSGXClocks: Unable to scale SGX frequency (-6                                                                                                                     1) [172, drivers/gpu/pvr/omap4/sysutils_linux.c]
[    2.705383] PVR: PVRCore_Init: major device 251
[    2.719055] brd: module loaded
[    2.726867] loop: module loaded
[    2.734100] usbcore: registered new interface driver asix
[    2.739959] usbcore: registered new interface driver cdc_ether
[    2.746307] usbcore: registered new interface driver smsc95xx
[    2.752532] usbcore: registered new interface driver net1080
[    2.758666] usbcore: registered new interface driver cdc_subset
[    2.765075] usbcore: registered new interface driver zaurus
[    2.770996] cdc_ncm: 04-Aug-2011
[    2.774566] usbcore: registered new interface driver cdc_ncm
[    2.780944] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.787994] _regulator_get: ehci-omap.0 supply hsusb0 not found, using dummy                                                                                                                      regulator
[    2.796844] ehci-omap ehci-omap.0: OMAP-EHCI Host Controller
[    2.803192] ehci-omap ehci-omap.0: new USB bus registered, assigned bus numbe                                                                                                                     r 1
[    2.811370] ehci-omap ehci-omap.0: irq 109, io mem 0x4a064c00
[    2.827026] ehci-omap ehci-omap.0: USB 2.0 started, EHCI 1.00
[    2.833190] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.840393] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                                     1
[    2.848052] usb usb1: Product: OMAP-EHCI Host Controller
[    2.853668] usb usb1: Manufacturer: Linux 3.2.0-rc7 ehci_hcd
[    2.859771] usb usb1: SerialNumber: ehci-omap.0
[    2.865142] hub 1-0:1.0: USB hub found
[    2.869171] hub 1-0:1.0: 3 ports detected
[    2.897460] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.904113] ohci-omap3 ohci-omap3.0: OMAP3 OHCI Host Controller
[    2.910644] ohci-omap3 ohci-omap3.0: new USB bus registered, assigned bus num                                                                                                                     ber 2
[    2.918853] ohci-omap3 ohci-omap3.0: irq 108, io mem 0x4a064800
[    3.002807] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    3.010009] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                                     1
[    3.017669] usb usb2: Product: OMAP3 OHCI Host Controller
[    3.023406] usb usb2: Manufacturer: Linux 3.2.0-rc7 ohci_hcd
[    3.029388] usb usb2: SerialNumber: ohci-omap3.0
[    3.034851] hub 2-0:1.0: USB hub found
[    3.038848] hub 2-0:1.0: 3 ports detected
[    3.043670] usbcore: registered new interface driver cdc_wdm
[    3.049713] Initializing USB Mass Storage driver...
[    3.055084] usbcore: registered new interface driver usb-storage
[    3.061462] USB Mass Storage support registered.
[    3.066528] usbcore: registered new interface driver libusual
[    3.194213] usb 1-1: new high-speed USB device number 2 using ehci-omap
[    3.350860] usb 1-1: New USB device found, idVendor=0424, idProduct=9514
[    3.357971] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.366241] hub 1-1:1.0: USB hub found
[    3.370361] hub 1-1:1.0: 5 ports detected
[    3.376037] usbcore: registered new interface driver usbtest
[    3.382415] mousedev: PS/2 mouse device common for all mice
[    3.389953] tsc-beada 2-0052: thread created: 645
[    3.395172] input: ADS7846 Touchscreen as /devices/platform/omap/omap_i2c.2/i                                                                                                                     2c-2/2-0052/input/input0
[    3.406219] input: twl6040:vibrator as /devices/platform/omap/omap_i2c.1/i2c-                                                                                                                     1/1-004b/twl6040/input/input1
[    3.416870] _regulator_get: twl6040-vibra supply vddvibl not found, using dum                                                                                                                     my regulator
[    3.425659] _regulator_get: twl6040-vibra supply vddvibr not found, using dum                                                                                                                     my regulator
[    3.447570] using rtc device, rtc-beada, for alarms
[    3.452575] rtc-ds1307 2-0051: rtc core: registered rtc-beada as rtc0
[    3.459716] i2c /dev entries driver
[    3.464324] Linux media interface: v0.10
[    3.468872] lirc_dev: IR Remote Control driver registered, major 248
[    3.475769] IR NEC protocol handler initialized
[    3.480590] IR RC5(x) protocol handler initialized
[    3.485717] IR RC6 protocol handler initialized
[    3.490539] IR JVC protocol handler initialized
[    3.495422] IR Sony protocol handler initialized
[    3.500366] IR RC5 (streamzap) protocol handler initialized
[    3.506317] IR LIRC bridge handler initialized
[    3.511047] Linux video capture interface: v2.00
[    3.516326] usbcore: registered new interface driver uvcvideo
[    3.522430] USB Video Class driver (1.1.1)
[    3.526947] dmm: probe base: fd300000, irq 145
[    3.533538] Driver for 1-wire Dallas network protocol.
[    3.540039] OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
[    3.546752] cpuidle: using governor ladder
[    3.551086] cpuidle: using governor menu
[    3.557159] _regulator_get: omap_hsmmc.0 supply vmmc_aux not found, using dum                                                                                                                     my regulator
[    3.568389] _regulator_get: omap_hsmmc.4 supply vmmc_aux not found, using dum                                                                                                                     my regulator
[    3.647827] usbcore: registered new interface driver usbhid
[    3.653717] usbhid: USB HID core driver
[    3.658264] logger: created 256K log 'log_main'
[    3.663238] logger: created 256K log 'log_events'
[    3.668457] logger: created 256K log 'log_radio'
[    3.673553] logger: created 256K log 'log_system'
[    3.678833] thermal_governor_dev_register:Adding omap_ondie_governor governor
[    3.686523] thermal_init_thermal_state:Not all components registered for cpu                                                                                                                      domain sensor   (null), gov=efddf420, cooling=  (null)
[    3.699127] usb 1-1.1: new high-speed USB device number 3 using ehci-omap
[    3.709197] SDP4430 SoC init
[    3.741333] asoc: null-codec-dai <-> MultiMedia1 mapping ok
[    3.748046] asoc: null-codec-dai <-> MultiMedia2 mapping ok
[    3.755249] asoc: null-codec-dai <-> Voice mapping ok
[    3.761566] asoc: null-codec-dai <-> Tones mapping ok
[    3.767730] asoc: null-codec-dai <-> Vibra mapping ok
[    3.773315] asoc: null-codec-dai <-> MODEM mapping ok
[    3.778839] asoc: null-codec-dai <-> MultiMedia1 LP mapping ok
[    3.786315] asoc: FM Digital <-> omap-mcbsp-dai.1 mapping ok
[    3.793457] asoc: twl6040-legacy <-> mcpdm-dl mapping ok
[    3.799926] asoc: dmic-hifi <-> omap-dmic-dai-0 mapping ok
[    3.806457] asoc: twl6040-dl1 <-> mcpdm-dl1 mapping ok
[    3.812164] asoc: twl6040-ul <-> mcpdm-ul1 mapping ok
[    3.817687] asoc: twl6040-dl2 <-> mcpdm-dl2 mapping ok
[    3.823455] asoc: twl6040-vib <-> mcpdm-vib mapping ok
[    3.829132] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00
[    3.836578] asoc: Bluetooth <-> omap-mcbsp-dai.0 mapping ok
[    3.842498] mmc0: host does not support reading read-only switch. assuming wr                                                                                                                     ite-enable.
[    3.851165] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber                                                                                                                     =0
[    3.859130] asoc: Bluetooth <-> omap-mcbsp-dai.0 mapping ok
[    3.865081] mmc0: new high speed SDHC card at address 1234
[    3.871551] mmcblk0: mmc0:1234 SA04G 3.65 GiB
[    3.876586] asoc: FM Digital <-> omap-mcbsp-dai.1 mapping ok
[    3.882965] smsc95xx v1.0.4
[    3.883026] asoc: MODEM <-> omap-mcbsp-dai.1 mapping ok
[    3.891784] asoc: dmic-hifi <-> omap-dmic-abe-dai-0 mapping ok
[    3.893920]  mmcblk0: p1 p2 p3 p4 < p5 p6 >
[    3.902679] asoc: dmic-hifi <-> omap-dmic-abe-dai-1 mapping ok
[    3.909179] asoc: dmic-hifi <-> omap-dmic-abe-dai-2 mapping ok
[    3.919433] input: Panda Headset Jack as /devices/platform/soc-audio.0/sound/                                                                                                                     card0/input2
[    3.932189] Error: Driver 'hdmi-audio-dai' is already registered, aborting...
[    3.939788] OMAP4 HDMI audio SoC init
[    3.944885] asoc: hdmi-audio-codec <-> hdmi-audio-dai mapping ok
[    3.960357] ALSA device list:
[    3.963500]   #0: TI OMAP4 Board
[    3.966979]   #1: TI OMAP4 HDMI Board
[    3.970886] oprofile: hardware counters not available
[    3.976287] oprofile: using timer interrupt.
[    3.981018] TCP cubic registered
[    3.984497] Initializing XFRM netlink socket
[    3.989105] NET: Registered protocol family 17
[    3.989440] smsc95xx 1-1.1:1.0: eth0: register 'smsc95xx' at usb-ehci-omap.0-                                                                                                                     1.1, smsc95xx USB 2.0 Ethernet, 2e:40:ce:ec:6c:0a
[    4.005950] NET: Registered protocol family 15
[    4.010772] lib80211: common routines for IEEE802.11 drivers
[    4.016784] Registering the dns_resolver key type
[    4.021789] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9                                                                                                                      rev 1
[    4.029937] ThumbEE CPU extension supported.
[    4.034484] Registering SWP/SWPB emulation handler
[    4.036010] mmc1: card claims to support voltages below the defined range. Th                                                                                                                     ese will be ignored.
[    4.051330] thermal_cooling_dev_register:Found cpu cpu
[    4.056823] thermal_init_thermal_state:Not all components registered for cpu                                                                                                                      domain sensor   (null), gov=efddf420, cooling=c082b1e4
[    4.069671] Power Management for TI OMAP4.
[    4.075744] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)
[    4.082031] cma: CMA: reserved 32 MiB at ac000000
[    4.090667] mmc1: new SDIO card at address 0001
[    4.105499] omapfb omapfb: failed to apply dispc config
[    4.116485] omapfb omapfb: failed to apply dispc config
[    4.127471] omapfb omapfb: failed to apply dispc config
[    4.133087] omapdss DPI: Could not find exact pixel clock. Requested 33000 kH                                                                                                                     z, got 33391 kHz
[    4.670562] Console: switching to colour frame buffer device 100x60
[    4.692230] regulator_init_complete: VANA: incomplete constraints, leaving on
[    4.701171] regulator_init_complete: CLK32KG: incomplete constraints, leaving                                                                                                                      on
[    4.712677] regulator_init_complete: VDAC: incomplete constraints, leaving on
[    4.723876] regulator_init_complete: VUSB: incomplete constraints, leaving on
[    4.742065] rtc-ds1307 2-0051: setting system clock to 2012-02-05 12:09:48 UT                                                                                                                     C (1328443788)
[    4.751495] omap4iss omap4iss: Revision 40000101 found
[    4.762268] ov5650 3-0036: Failed reading register 0x302a!
[    4.762268] ov5650 3-0036: Failure to detect OV5650 chip
[    4.774353] iss_register_subdev_group: Unable to register subdev ov5650
[    4.782928] Freeing init memory: 256K
[    5.148254] init: cannot open '/initlogo.rle'
[    5.190887] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. O                                                                                                                     pts: (null)
[    5.522125] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. O                                                                                                                     pts: (null)
[    5.797363] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. O                                                                                                                     pts: (null)
[    5.901000] init: cannot find '/system/etc/install-recovery.sh', disabling 'f                                                                                                                     lash_recovery'
[    5.910736] init: cannot find '/system/bin/pvrsrvinit', disabling 'pvrsrvinit                                                                                                                     '
[    5.919250] init: cannot find '/system/bin/uim', disabling 'uim'
[    6.107727] (stk) :sysfs entries created
[    6.111694] (stk) : debugfs entries created root@android:/ #
[    6.445434] warning: `rild' uses 32-bit capabilities (legacy support in use)
[    6.454986] Bluetooth: Core ver 2.16
[    6.462402] NET: Registered protocol family 31
[    6.467224] Bluetooth: HCI device and connection manager initialized
[    6.474426] Bluetooth: HCI socket layer initialized
[    6.479705] Bluetooth: L2CAP socket layer initialized
[    6.483398] Bluetooth: SCO socket layer initialized
[    6.600830] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    6.606842] Bluetooth: BNEP filters: protocol multicast
[    6.693542] Bluetooth: HCI UART driver ver 2.2
[    6.698669] Bluetooth: HCI H4 protocol initialized
[    6.703887] Bluetooth: HCI BCSP protocol initialized
[    6.709228] Bluetooth: HCILL protocol initialized
[    6.812255] Bluetooth: RFCOMM TTY layer initialized
[    6.814971] Bluetooth: RFCOMM socket layer initialized
[    6.823455] Bluetooth: RFCOMM ver 1.11
[    6.848175] Bluetooth: Bluetooth Driver for TI WiLink - Version 1.0
[    6.857574] (stc): st_register(4)
[    6.858032] (stc):  chnl_id list empty :4
[    6.865875] (stk) : st_kim_start
[    6.991607] (stk) :ldisc_install = 1
[    7.026824] Disabling lock debugging due to kernel taint
[    7.997253] (stk) :line disc installation timed out
[    8.002471] (stk) :ldisc_install = 0
[    9.194030] (stk) :ldisc_install = 1
[   10.194305] (stk) :line disc installation timed out
[   10.194305] (stk) :ldisc_install = 0
[   11.355865] (stk) :ldisc_install = 1
[   12.370117] (stk) :line disc installation timed out
[   12.375457] (stk) :ldisc_install = 0
[   13.500091] (stk) :ldisc_install = 1
[   14.521331] (stk) :line disc installation timed out
[   14.526855] (stk) :ldisc_install = 0
[   15.627136] (stk) :ldisc_install = 1
[   16.743194] (stk) :line disc installation timed out
[   16.744354] (stk) :ldisc_install = 0
[   17.914245] (stk) :ldisc_install = 1
[   18.996398] (stk) :line disc installation timed out
[   18.999420] (stk) :ldisc_install = 0
[   20.102783] Bluetooth: st_register failed -22
[   80.807373] er.ServerThread (1328): /proc/1313/oom_adj is deprecated, please                                                                                                                      use /proc/1313/oom_score_adj instead.
[   85.244293] request_suspend_state: wakeup (3->0) at 85253234865 (2012-02-05 1                                                                                                                     2:11:08.997100830 UTC)
[   86.043365] init: no such service 'hciattach'
[   86.043487] (stc): st_register(4)
[   86.043518] (stc):  chnl_id list empty :4
[   86.043518] (stk) : st_kim_start
[   86.231750] (stk) :ldisc_install = 1
[   87.246215] (stk) :line disc installation timed out
[   87.251647] (stk) :ldisc_install = 0
[   88.457977] (stk) :ldisc_install = 1
[   89.293548] smsc95xx 1-1.1:1.0: eth0: link up, 100Mbps, full-duplex, lpa 0x4D                                                                                                                     E1
[   89.456726] (stk) :line disc installation timed out
[   89.462036] (stk) :ldisc_install = 0
[   90.534088] (stk) :ldisc_install = 1
[   91.592681] (stk) :line disc installation timed out
[   91.597930] (stk) :ldisc_install = 0
[   92.747283] (stk) :ldisc_install = 1
[   93.686584] (stk) :line disc installation timed out
[   93.686614] (stk) :ldisc_install = 0
[   94.800384] (stk) :ldisc_install = 1
[   95.830780] (stk) :line disc installation timed out
[   95.836151] (stk) :ldisc_install = 0
[   96.948272] (stk) :ldisc_install = 1
[   97.955230] (stk) :line disc installation timed out
[   97.955230] (stk) :ldisc_install = 0
[   98.953063] Bluetooth: st_register failed -22
[   99.058044] (stc): st_register(4)
[   99.061492] (stc):  chnl_id list empty :4
[   99.065887] (stk) : st_kim_start
[   99.219207] (stk) :ldisc_install = 1
[  100.242736] (stk) :line disc installation timed out
[  100.246032] (stk) :ldisc_install = 0
[  101.398986] (stk) :ldisc_install = 1
[  102.401580] (stk) :line disc installation timed out
[  102.401580] (stk) :ldisc_install = 0
[  103.633270] (stk) :ldisc_install = 1
[  104.636444] (stk) :line disc installation timed out
[  104.641876] (stk) :ldisc_install = 0
[  105.772521] (stk) :ldisc_install = 1
[  106.787536] (stk) :line disc installation timed out
[  106.808898] (stk) :ldisc_install = 0
[  107.898986] (stk) :ldisc_install = 1
[  108.923187] (stk) :line disc installation timed out
[  108.923187] (stk) :ldisc_install = 0
[  110.077026] (stk) :ldisc_install = 1
[  111.094024] (stk) :line disc installation timed out
[  111.094024] (stk) :ldisc_install = 0
[  112.219360] Bluetooth: st_register failed -22
[  112.389495] (stc): st_register(4)
[  112.398101] (stc):  chnl_id list empty :4
[  112.398101] (stk) : st_kim_start
[  112.510833] (stk) :ldisc_install = 1
[  113.507019] (stk) :line disc installation timed out
[  113.507537] (stk) :ldisc_install = 0
[  114.669189] (stk) :ldisc_install = 1
[  115.667114] (stk) :line disc installation timed out
[  115.672576] (stk) :ldisc_install = 0
[  116.775939] (stk) :ldisc_install = 1
[  117.821563] (stk) :line disc installation timed out
[  117.826965] (stk) :ldisc_install = 0
[  119.003784] (stk) :ldisc_install = 1
[  119.999725] (stk) :line disc installation timed out
[  120.004943] (stk) :ldisc_install = 0
[  121.156707] (stk) :ldisc_install = 1
[  122.190917] (stk) :line disc installation timed out
[  122.190917] (stk) :ldisc_install = 0
[  123.298187] (stk) :ldisc_install = 1
[  124.301025] (stk) :line disc installation timed out
[  124.304992] (stk) :ldisc_install = 0
[  125.306518] Bluetooth: st_register failed -22
[  125.411590] (stc): st_register(4)
[  125.411590] (stc):  chnl_id list empty :4
[  125.419342] (stk) : st_kim_start
[  125.535644] (stk) :ldisc_install = 1
[  126.538757] (stk) :line disc installation timed out
[  126.544036] (stk) :ldisc_install = 0
[  127.648742] (stk) :ldisc_install = 1


esky-sh
Posts: 1435
Joined: Sat Dec 20, 2008 4:21 am

Re: First try of Linaro Android 12.01 Pandaboard

Post by esky-sh » Sat Feb 04, 2012 9:02 pm

I run this script to TF card per linaro tracking release page:
./install-binaries-4.0.3.sh /dev/sdc2 "device node of system partition"

Then I boot the board and this time I found the board failed to init DSS drivers:

Code: Select all

U-Boot SPL 2011.12 (Jan 23 2012 - 06:10:01)
Texas Instruments OMAP4430 ES2.1
OMAP SD/MMC: 0
reading u-boot.img
reading u-boot.img


U-Boot 2011.12 (Jan 23 2012 - 06:10:01)

CPU  : OMAP4430 ES2.1
Board: OMAP4 Panda
I2C:   ready
DRAM:  1 GiB
WARNING: Caches not enabled
MMC:   OMAP SD/MMC: 0
Using default environment

In:    serial
Out:   serial
Err:   serial
Net:   No ethernet found.
Hit any key to stop autoboot:  0
reading uEnv.txt

** Unable to read "uEnv.txt" from mmc 0:1 **
reading boot.scr

449 bytes read
Loaded script from boot.scr
Running bootscript from mmc0 ...
## Executing script at 82000000
reading uImage

4359680 bytes read
reading uInitrd

165635 bytes read
## Booting kernel from Legacy Image at 80200000 ...
   Image Name:   Linux-3.2.0-rc7
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    4359616 Bytes = 4.2 MiB
   Load Address: 80008000
   Entry Point:  80008000
   Verifying Checksum ... OK
## Loading init Ramdisk from Legacy Image at 81600000 ...
   Image Name:   Android Ramdisk Image
   Image Type:   ARM Linux RAMDisk Image (gzip compressed)
   Data Size:    165571 Bytes = 161.7 KiB
   Load Address: 00000000
   Entry Point:  00000000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
[    0.000000] Booting Linux on physical CPU 0
[    0.000000] Linux version 3.2.0-rc7 (root@NX-W-3) (gcc version 4.6.3 20120105                                                                                                                      (prerelease) (Linaro GCC 4.6-2012.01) ) #2 SMP PREEMPT Sun Feb 5 10:47:57 CST 2                                                                                                                     012
[    0.000000] CPU: ARMv7 Processor [411fc092] revision 2 (ARMv7), cr=10c5387d
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instructio                                                                                                                     n cache
[    0.000000] Machine: OMAP4 Panda board
[    0.000000] Reserving 50331648 bytes SDRAM for VRAM
[    0.000000] cma: CMA: reserved 32 MiB at 9a000000
[    0.000000] Memory policy: ECC disabled, Data cache writealloc
[    0.000000] OMAP4430 ES2.1
[    0.000000] PERCPU: Embedded 8 pages/cpu @e0808000 s10176 r8192 d14400 u32768
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pag                                                                                                                     es: 233216
[    0.000000] Kernel command line: console=ttyO2,115200n8 rootwait ro earlyprin                                                                                                                     tk fixrtc nocompcache vram=48M omapfb.vram=0:24M,1:24M mem=456M@0x80000000 mem=5                                                                                                                     12M@0xA0000000 init=/init androidboot.console=ttyO2
[    0.000000]
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Memory: 456MB 463MB = 919MB total
[    0.000000] Memory: 889008k/889008k available, 102224k reserved, 211968K high                                                                                                                     mem
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
[    0.000000]     vmalloc : 0xf0800000 - 0xf8000000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
[    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
[    0.000000]       .text : 0xc0008000 - 0xc07d0b28   (7971 kB)
[    0.000000]       .init : 0xc07d1000 - 0xc08117c0   ( 258 kB)
[    0.000000]       .data : 0xc0812000 - 0xc0872d70   ( 388 kB)
[    0.000000]        .bss : 0xc0872d70 - 0xc0a1d600   (1707 kB)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] NR_IRQS:410
[    0.000000] OMAP clockevent source: GPTIMER1 at 32768 Hz
[    0.000000] sched_clock: 32 bits at 32kHz, resolution 30517ns, wraps every 13                                                                                                                     1071999ms
[    0.000000] Console: colour dummy device 80x30
[    0.000366] Calibrating delay loop... 1598.59 BogoMIPS (lpj=6242304)
[    0.070373] pid_max: default: 32768 minimum: 301
[    0.070587] Security Framework initialized
[    0.070678] Mount-cache hash table entries: 512
[    0.071411] CPU: Testing write buffer coherency: ok
[    0.071624] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.071685] Calibrating local timer... 390.29MHz.
[    0.117431] L310 cache controller enabled
[    0.117462] l2x0: 16 ways, CACHE_ID 0x410000c4, AUX_CTRL 0x5e470000, Cache si                                                                                                                     ze: 1048576 B
[    0.194000] CPU1: Booted secondary processor
[    0.224151] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.224182] CPU1: Unknown IPI message 0x1
[    0.224182] Brought up 2 CPUs
[    0.224212] SMP: Total of 2 processors activated (3152.07 BogoMIPS).
[    0.224700] devtmpfs: initialized
[    0.227691] omap_hwmod: l4_div_ck: missing clockdomain for l4_div_ck.
[    0.280700] omap_hwmod: mcpdm: _wait_target_ready: -16
[    0.280700] ------------[ cut here ]------------
[    0.280731] WARNING: at arch/arm/mach-omap2/omap_hwmod.c:1509 _enable+0x1c8/0                                                                                                                     x28c()
[    0.280761] Modules linked in:
[    0.280792] [<c0019c10>] (unwind_backtrace+0x0/0xf8) from [<c0042858>] (warn_                                                                                                                     slowpath_common+0x4c/0x64)
[    0.280822] [<c0042858>] (warn_slowpath_common+0x4c/0x64) from [<c004288c>] (                                                                                                                     warn_slowpath_null+0x1c/0x24)
[    0.280822] [<c004288c>] (warn_slowpath_null+0x1c/0x24) from [<c00227a0>] (_e                                                                                                                     nable+0x1c8/0x28c)
[    0.280853] [<c00227a0>] (_enable+0x1c8/0x28c) from [<c0022c80>] (_setup+0xa0                                                                                                                     /0x170)
[    0.280853] [<c0022c80>] (_setup+0xa0/0x170) from [<c0022ed8>] (omap_hwmod_fo                                                                                                                     r_each+0x34/0x5c)
[    0.280914] [<c0022ed8>] (omap_hwmod_for_each+0x34/0x5c) from [<c07dabe0>] (o                                                                                                                     map_hwmod_setup_all+0x6c/0x98)
[    0.280914] [<c07dabe0>] (omap_hwmod_setup_all+0x6c/0x98) from [<c0008558>] (                                                                                                                     do_one_initcall+0x34/0x174)
[    0.280944] [<c0008558>] (do_one_initcall+0x34/0x174) from [<c07d189c>] (kern                                                                                                                     el_init+0x8c/0x12c)
[    0.280975] [<c07d189c>] (kernel_init+0x8c/0x12c) from [<c0013e24>] (kernel_t                                                                                                                     hread_exit+0x0/0x8)
[    0.281005] ---[ end trace 1b75b31a2719ed1c ]---
[    0.281005] omap_hwmod: mcpdm: cannot be enabled (3)
[    0.284912] Enabling ERRATA 751472
[    0.284942] OMAP4: Map 0xafe00000 to 0xfe600000 for dram barrier
[    0.286010] print_constraints: dummy:
[    0.288757] NET: Registered protocol family 16
[    0.304595] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.304992] GPMC revision 6.0
[    0.305053]  mpu.0: alias fck already exists
[    0.305480]  iva.0: alias fck already exists
[    0.307312] OMAP GPIO hardware version 0.1
[    0.309539] omap_mux_init: Add partition: #1: core, flags: 2
[    0.310363] omap_mux_init: Add partition: #2: wkup, flags: 2
[    0.313110] SRAM: Mapped pa 0x40300000 to va 0xf0840000 size: 0xd000
[    0.324371] OMAP DMA hardware revision 0.0
[    0.342620] bio: create slab <bio-0> at 0
[    0.343536] print_constraints: vwl1271: 1800 mV
[    0.344543] i2c-core: driver [twl] using legacy suspend method
[    0.344543] i2c-core: driver [twl] using legacy resume method
[    0.345062] SCSI subsystem initialized
[    0.346649] usbcore: registered new interface driver usbfs
[    0.346893] usbcore: registered new interface driver hub
[    0.347045] usbcore: registered new device driver usb
[    0.361450] omap_i2c omap_i2c.1: bus 1 rev2.4.0 at 400 kHz
[    0.362304] Skipping twl internal clock init and using bootloader value (unkn                                                                                                                     own osc rate)
[    0.362762] twl6030: PIH (irq 39) chaining IRQs 368..387
[    0.363250] print_constraints: VUSB: 3300 mV normal standby
[    0.560272] twl6030_usb twl6030_usb: Initialized TWL6030 USB module
[    0.561126] print_constraints: VMMC: 1200 <--> 3000 mV at 3000 mV normal stan                                                                                                                     dby
[    0.561614] print_constraints: VPP: 1800 <--> 2500 mV at 1900 mV normal stand                                                                                                                     by
[    0.562133] print_constraints: VUSIM: 1200 <--> 2900 mV at 1800 mV normal sta                                                                                                                     ndby
[    0.562713] print_constraints: VCXIO: 1800 mV normal standby
[    0.563049] print_constraints: VDAC: 1800 mV normal standby
[    0.563537] print_constraints: VAUX1_6030: 1000 <--> 3000 mV at 1800 mV norma                                                                                                                     l standby
[    0.563568] twl_reg twl_reg.37: Failed to set supply vmmc
[    0.563690] twl_reg twl_reg.37: can't register VAUX1_6030, -16
[    0.563720] twl_reg: probe of twl_reg.37 failed with error -16
[    0.564147] print_constraints: VAUX2_6030: 1200 <--> 2800 mV at 1800 mV norma                                                                                                                     l standby
[    0.564605] print_constraints: VAUX3_6030: 1000 <--> 3000 mV at 1200 mV norma                                                                                                                     l standby
[    0.564941] print_constraints: CLK32KG:
[    0.565307] print_constraints: VANA: 2100 mV normal standby
[    0.574859] omap_i2c omap_i2c.2: bus 2 rev2.4.0 at 100 kHz
[    0.590087] omap_i2c omap_i2c.3: bus 3 rev2.4.0 at 100 kHz
[    0.605346] omap_i2c omap_i2c.4: bus 4 rev2.4.0 at 400 kHz
[    0.606292] Advanced Linux Sound Architecture Driver Version 1.0.24.
[    0.607299] cfg80211: Calling CRDA to update world regulatory domain
[    0.608245] Switching to clocksource 32k_counter
[    0.633239] musb-hdrc: version 6.0, ?dma?, otg (peripheral+host)
[    0.633758] NET: Registered protocol family 2
[    0.633911] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.634399] TCP established hash table entries: 131072 (order: 8, 1048576 byt                                                                                                                     es)
[    0.636291] TCP bind hash table entries: 65536 (order: 7, 786432 bytes)
[    0.637390] TCP: Hash tables configured (established 131072 bind 65536)
[    0.637390] TCP reno registered
[    0.637390] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.637451] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.637664] NET: Registered protocol family 1
[    0.637939] RPC: Registered named UNIX socket transport module.
[    0.637969] RPC: Registered udp transport module.
[    0.637969] RPC: Registered tcp transport module.
[    0.637969] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.638153] Trying to unpack rootfs image as initramfs...
[    0.648712] Freeing initrd memory: 160K
[    0.648742] NetWinder Floating Point Emulator V0.97 (double precision)
[    0.844726] highmem bounce pool size: 64 pages
[    0.845153] ashmem: initialized
[    0.845397] VFS: Disk quotas dquot_6.5.2
[    0.845520] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.846740] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
[    0.847015] ROMFS MTD (C) 2007 Red Hat, Inc.
[    0.847412] Btrfs loaded
[    0.847442] msgmni has been set to 1386
[    0.848297] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 2                                                                                                                     53)
[    0.848297] io scheduler noop registered
[    0.848297] io scheduler deadline registered
[    0.848358] io scheduler cfq registered (default)
[    0.850738] pwm_beada 2-0053: Rev.0 Backlight
[    0.851593] OMAP DSS rev 4.0
[    0.875061] dsscomp: initializing.
[    0.875091] misc dsscomp: found 2 displays and 4 overlays
[    0.875274] could not allocate slot
[    0.875549] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.186706] omap_uart.0: ttyO0 at MMIO 0x4806a000 (irq = 104) is a OMAP UART0
[    1.311462] omap_uart.1: ttyO1 at MMIO 0x4806c000 (irq = 105) is a OMAP UART1
[    1.436431] omap_uart.2: ttyO2 at MMIO 0x48020000 (irq = 106) is a OMAP UART2
[    2.331390] console [ttyO2] enabled
[    2.420867] omap_uart.3: ttyO3 at MMIO 0x4806e000 (irq = 102) is a OMAP UART3
[    2.546051] PVR: PVRCore_Init
[    2.549438] PVR: PVRSRVDriverProbe(pDevice=efe9b600)
[    2.554748] PVR: SGXegister base: 0x56000000
[    2.559448] PVR: SGX register size: 65535
[    2.563690] PVR: SGX IRQ: 53
[    2.566741] PVR: EnableSystemClocks: Enabling System Clocks
[    2.572723] voltdm_scale: No voltage scale API registered for vdd_core
[    2.579650] pvrsrvkm pvrsrvkm.0: _dvfs_scale: Unable to scale the core to 120                                                                                                                     0000 volt
[    2.588012] pvrsrvkm pvrsrvkm.0: omap_device_scale: scale by pvrsrvkm.0 faile                                                                                                                     d -61[f=307200000, v=1200000]
[    2.598236] PVR_K:(Error): EnableSGXClocks: Unable to scale SGX frequency (-6                                                                                                                     1) [172, drivers/gpu/pvr/omap4/sysutils_linux.c]
[    2.610321] voltdm_scale: No voltage scale API registered for vdd_core
[    2.617248] pvrsrvkm pvrsrvkm.0: _dvfs_scale: Unable to scale the core to 102                                                                                                                     5000 volt
[    2.625640] pvrsrvkm pvrsrvkm.0: omap_device_scale: scale by pvrsrvkm.0 faile                                                                                                                     d -61[f=153600000, v=1025000]
[    2.635864] PVR_K:(Error): EnableSGXClocks: Unable to scale SGX frequency (-6                                                                                                                     1) [172, drivers/gpu/pvr/omap4/sysutils_linux.c]
[    2.650573] PVR: PVRCore_Init: major device 251
[    2.664215] brd: module loaded
[    2.671997] loop: module loaded
[    2.679138] usbcore: registered new interface driver asix
[    2.684997] usbcore: registered new interface driver cdc_ether
[    2.691345] usbcore: registered new interface driver smsc95xx
[    2.697967] usbcore: registered new interface driver net1080
[    2.704132] usbcore: registered new interface driver cdc_subset
[    2.710540] usbcore: registered new interface driver zaurus
[    2.716430] cdc_ncm: 04-Aug-2011
[    2.720031] usbcore: registered new interface driver cdc_ncm
[    2.726470] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.733520] _regulator_get: ehci-omap.0 supply hsusb0 not found, using dummy                                                                                                                      regulator
[    2.742004] ehci-omap ehci-omap.0: OMAP-EHCI Host Controller
[    2.748321] ehci-omap ehci-omap.0: new USB bus registered, assigned bus numbe                                                                                                                     r 1
[    2.756439] ehci-omap ehci-omap.0: irq 109, io mem 0x4a064c00
[    2.772369] ehci-omap ehci-omap.0: USB 2.0 started, EHCI 1.00
[    2.778533] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.785705] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                                     1
[    2.793365] usb usb1: Product: OMAP-EHCI Host Controller
[    2.798980] usb usb1: Manufacturer: Linux 3.2.0-rc7 ehci_hcd
[    2.805023] usb usb1: SerialNumber: ehci-omap.0
[    2.810394] hub 1-0:1.0: USB hub found
[    2.814392] hub 1-0:1.0: 3 ports detected
[    2.842773] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.849395] ohci-omap3 ohci-omap3.0: OMAP3 OHCI Host Controller
[    2.855926] ohci-omap3 ohci-omap3.0: new USB bus registered, assigned bus num                                                                                                                     ber 2
[    2.864105] ohci-omap3 ohci-omap3.0: irq 108, io mem 0x4a064800
[    2.948150] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.955322] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=                                                                                                                     1
[    2.962982] usb usb2: Product: OMAP3 OHCI Host Controller
[    2.968719] usb usb2: Manufacturer: Linux 3.2.0-rc7 ohci_hcd
[    2.974670] usb usb2: SerialNumber: ohci-omap3.0
[    2.980133] hub 2-0:1.0: USB hub found
[    2.984100] hub 2-0:1.0: 3 ports detected
[    2.988952] usbcore: registered new interface driver cdc_wdm
[    2.994964] Initializing USB Mass Storage driver...
[    3.000305] usbcore: registered new interface driver usb-storage
[    3.006652] USB Mass Storage support registered.
[    3.011749] usbcore: registered new interface driver libusual
[    3.139556] usb 1-1: new high-speed USB device number 2 using ehci-omap
[    3.296203] usb 1-1: New USB device found, idVendor=0424, idProduct=9514
[    3.303283] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.311584] hub 1-1:1.0: USB hub found
[    3.315704] hub 1-1:1.0: 5 ports detected
[    3.321350] usbcore: registered new interface driver usbtest
[    3.327758] mousedev: PS/2 mouse device common for all mice
[    3.335266] tsc-beada 2-0052: thread created: 645
[    3.340484] input: ADS7846 Touchscreen as /devices/platform/omap/omap_i2c.2/i                                                                                                                     2c-2/2-0052/input/input0
[    3.351501] input: twl6040:vibrator as /devices/platform/omap/omap_i2c.1/i2c-                                                                                                                     1/1-004b/twl6040/input/input1
[    3.362152] _regulator_get: twl6040-vibra supply vddvibl not found, using dum                                                                                                                     my regulator
[    3.370941] _regulator_get: twl6040-vibra supply vddvibr not found, using dum                                                                                                                     my regulator
[    3.392822] using rtc device, rtc-beada, for alarms
[    3.397857] rtc-ds1307 2-0051: rtc core: registered rtc-beada as rtc0
[    3.404968] i2c /dev entries driver
[    3.409576] Linux media interface: v0.10
[    3.414123] lirc_dev: IR Remote Control driver registered, major 248
[    3.420989] IR NEC protocol handler initialized
[    3.425811] IR RC5(x) protocol handler initialized
[    3.430938] IR RC6 protocol handler initialized
[    3.435760] IR JVC protocol handler initialized
[    3.440582] IR Sony protocol handler initialized
[    3.445526] IR RC5 (streamzap) protocol handler initialized
[    3.451446] IR LIRC bridge andler initialized
[    3.456176] Linux video capture interface: v2.00
[    3.461456] usbcore: registered new interface driver uvcvideo
[    3.467559] USB Video Class driver (1.1.1)
[    3.472076] dmm: probe base: fd300000, irq 145
[    3.478668] Driver for 1-wire Dallas network protocol.
[    3.485137] OMAP Watchdog Timer Rev 0x00: initial timeout 60 sec
[    3.491821] cpuidle: using governor ladder
[    3.496154] cpuidle: using governor menu
[    3.502105] _regulator_get: omap_hsmmc.0 supply vmmc_aux not found, using dum                                                                                                                     my regulator
[    3.513427] _regulator_get: omap_hsmmc.4 supply vmmc_aux not found, using dum                                                                                                                     my regulator
[    3.592803] usbcore: registered new interface driver usbhid
[    3.598693] usbhid: USB HID core driver
[    3.603271] logger: created 256K log 'log_main'
[    3.608245] logger: created 256K log 'log_events'
[    3.613433] logger: created 256K log 'log_radio'
[    3.618530] logger: created 256K log 'log_system'
[    3.623809] thermal_governor_dev_register:Adding omap_ondie_governor governor
[    3.631378] thermal_init_thermal_state:Not all components registered for cpu                                                                                                                      domain sensor   (null), gov=efddf420, cooling=  (null)
[    3.643920] usb 1-1.1: new high-speed USB device number 3 using ehci-omap
[    3.653991] SDP4430 SoC init
[    3.686004] asoc: null-codec-dai <-> MultiMedia1 mapping ok
[    3.692810] asoc: null-codec-dai <-> MultiMedia2 mapping ok
[    3.700042] asoc: null-codec-dai <-> Voice mapping ok
[    3.706359] asoc: null-codec-dai <-> Tones mapping ok
[    3.712554] asoc: null-codec-dai <-> Vibra mapping ok
[    3.718109] asoc: null-codec-dai <-> MODEM mapping ok
[    3.723632] asoc: null-codec-dai <-> MultiMedia1 LP mapping ok
[    3.731109] asoc: FM Digital <-> omap-mcbsp-dai.1 mapping ok
[    3.738220] asoc: twl6040-legacy <-> mcpdm-dl mapping ok
[    3.744720] asoc: dmic-hifi <-> omap-dmic-dai-0 mapping ok
[    3.751251] asoc: twl6040-dl1 <-> mcpdm-dl1 mapping ok
[    3.756927] asoc: twl6040-ul <-> mcpdm-ul1 mapping ok
[    3.762451] asoc: twl6040-dl2 <-> mcpdm-dl2 mapping ok
[    3.768249] asoc: twl6040-vib <-> mcpdm-vib mapping ok
[    3.773742] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00
[    3.781127] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber                                                                                                                     =0
[    3.789062] asoc: Bluetooth <-> omap-mcbsp-dai.0 mapping ok
[    3.794982] mmc0: host does not support reading read-only switch. assuming wr                                                                                                                     ite-enable.
[    3.804168] asoc: Bluetooth <-> omap-mcbsp-dai.0 mapping ok
[    3.810119] mmc0: new high speed SDHC card at address 1234
[    3.816253] asoc: FM Digital <-> omap-mcbsp-dai.1 mapping ok
[    3.822662] asoc: MODEM <-> omap-mcbsp-dai.1 mapping ok
[    3.822692] smsc95xx v1.0.4
[    3.831481] mmcblk0: mmc0:1234 SA04G 3.65 GiB
[    3.836486] asoc: dmic-hifi <-> omap-dmic-abe-dai-0 mapping ok
[    3.843017] asoc: dmic-hifi <-> omap-dmic-abe-dai-1 mapping ok
[    3.846679]  mmcblk0: p1 p2 p3 p4 < p5 p6 >
[    3.853912] asoc: dmic-hifi <-> omap-dmic-abe-dai-2 mapping ok
[    3.864257] input: Panda Headset Jack as /devices/platform/soc-audio.0/sound/                                                                                                                     card0/input2
[    3.885253] Error: Driver 'hdmi-audio-dai' is already registered, aborting...
[    3.892913] OMAP4 HDMI audio SoC init
[    3.898040] asoc: hdmi-audio-codec <-> hdmi-audio-dai mapping ok
[    3.905212] ALSA device list:
[    3.908325]   #0: TI OMAP4 Board
[    3.911743]   #1: TI OMAP4 HDMI Board
[    3.915771] oprofile: hardware counters not available
[    3.921173] oprofile: using timer interrupt.
[    3.925872] TCP cubic registered
[    3.929382] Initializing XFRM netlink socket
[    3.929656] smsc95xx 1-1.1:1.0: eth0: register 'smsc95xx' at usb-ehci-omap.0-                                                                                                                     1.1, smsc95xx USB 2.0 Ethernet, 2e:40:ce:ec:6c:0a
[    3.946014] NET: Registered protocol family 17
[    3.950744] NET: Registered protocol family 15
[    3.955474] lib80211: common routines for IEEE802.11 drivers
[    3.961486] Registering the dns_resolver key type
[    3.966522] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9                                                                                                                      rev 1
[    3.974670] ThumbEE CPU extension supported.
[    3.979217] Registering SWP/SWPB emulation handler
[    3.981353] mmc1: card claims to support voltages below the defined range. Th                                                                                                                     ese will be ignored.
[    3.996032] thermal_cooling_dev_register:Found cpu cpu
[    4.001495] thermal_init_thermal_state:Not all components registered for cpu                                                                                                                      domain sensor   (null), gov=efddf420, cooling=c082b1e4
[    4.014343] Power Management for TI OMAP4.
[    4.020568] cma: CMA: reserved 32 MiB at ac000000
[    4.026123] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)
[    4.042846] omapfb omapfb: failed to apply dispc config
[    4.053894] omapfb omapfb: failed to apply dispc config
[    4.064910] omapfb omapfb: failed to apply dispc config
[    4.070526] omapdss DPI: Could not find exact pixel clock. Requested 33000 kH                                                                                                                     z, got 33391 kHz
[    4.079925] mmc1: new SDIO card at address 0001
[    4.600952] Console: switching to colour frame buffer device 100x60
[    4.623077] regulator_init_complete: VANA: incomplete constraints, leaving on
[    4.631805] regulator_init_complete: CLK32KG: incomplete constraints, leaving                                                                                                                      on
[    4.643035] regulator_init_complete: VDAC: incomplete constraints, leaving on
[    4.653900] regulator_init_complete: VUSB: incomplete constraints, leaving on
[    4.671661] rtc-ds1307 2-0051: setting system clock to 2012-02-05 11:57:11 UT                                                                                                                     C (1328443031)
[    4.681060] omap4iss omap4iss: Revision 40000101 found
[    4.691772] ov5650 3-0036: Failed reading register 0x302a!
[    4.691772] ov5650 3-0036: Failure to detect OV5650 chip
[    4.704010] iss_register_subdev_group: Unable to register subdev ov5650
[    4.712432] Freeing init memory: 256K
[    5.064849] init: cannot open '/initlogo.rle'
[    5.105499] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. O                                                                                                                     pts: (null)
[    5.444519] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. O                                                                                                                     pts: (null)
[    5.731994] EXT4-fs (mmcblk0p5): mounted filesystem with ordered data mode. O                                                                                                                     pts: (null)
[    5.844360] init: cannot find '/system/etc/install-recovery.sh', disabling 'f                                                                                                                     lash_recovery'
[    5.858825] init: cannot find '/system/bin/uim', disabling 'uim'
[    5.931793] (stk) :sysfs entries created
[    5.936309] (stk) : debugfs entries created
[    6.300872] PVR: Installing MISR with cookie c0910758
[    6.308471] PVR: Installing device LISR SGX ISR on IRQ 53 with cookie efe7658                                                                                                                     0
[    6.308471] PVR: OSUnMapPhysToLin: unmapping 65535 bytes from f0a00000
[    6.340545] PVR: SysFinalise: Version string: SGX revision = 1.2.0
[    6.371398] Bluetooth: Core ver 2.16
[    6.380249] NET: Registered protocol family 31
[    6.382659] Bluetooth: HCI device and connection manager initialized
[    6.391998] Bluetooth: HCI socket layer initialized
[    6.393463] Bluetooth: L2CAP socket layer initialized
[    6.402709] Bluetooth: SCO socket layer initialized
[    6.455902] warning: `rild' uses 32-bit capabilities (legacy support in use)
[    6.501739] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    6.501739] Bluetooth: BNEP filters: protocol multicast
root@android:/ # [    6.749969] Bluetooth: HCI UART driver ver 2.2
[    6.755157] Bluetooth: HCI H4 protocol initialized
[    6.762664] Bluetooth: HCI BCSP protocol initialized
[    6.765167] Bluetooth: HCILL protocol initialized
[    6.922302] Bluetooth: RFCOMM TTY layer initialized
[    6.929870] Bluetooth: RFCOMM socket layer initialized
[    6.935455] Bluetooth: RFCOMM ver 1.11
[    7.005554] Bluetooth: Bluetooth Driver for TI WiLink - Version 1.0
[    7.014862] (stc): st_register(4)
[    7.021697] (stc):  chnl_id list empty :4
[    7.026428] (stk) : st_kim_start
[    7.095367] Disabling lock debugging due to kernel taint
[    7.282073] (stk) :ldisc_install = 1
[    8.296722] (stk) :line disc installation timed out
[    8.296722] (stk) :ldisc_install = 0
[    8.478210] misc dsscomp: [ef1c7800] ignoring set failure -22
[    8.524719] misc dsscomp: failed to set ovl0 (-16)
[    8.531433] misc dsscomp: failed to set ovl0 (-16)
[    8.760833] misc dsscomp: failed to set ovl0 (-16)
[    8.781646] misc dsscomp: failed to set ovl0 (-16)
[    8.849273] misc dsscomp: failed to set ovl0 (-16)
[    8.940826] misc dsscomp: failed to set ovl0 (-16)
[    9.030090] misc dsscomp: failed to set ovl0 (-16)
[    9.116821] misc dsscomp: failed to set ovl0 (-16)
[    9.209442] misc dsscomp: failed to set ovl0 (-16)
[    9.293182] misc dsscomp: failed to set ovl0 (-16)
[    9.380706] misc dsscomp: failed to set ovl0 (-16)
[    9.406524] (stk) :ldisc_install = 1
[    9.472473] misc dsscomp: failed to set ovl0 (-16)
[    9.566436] misc dsscomp: failed to set ovl0 (-16)
[    9.667938] misc dsscomp: failed to set ovl0 (-16)
[    9.753479] misc dsscomp: failed to set ovl0 (-16)
[    9.841888] misc dsscomp: failed to set ovl0 (-16)
[    9.926239] misc dsscomp: failed to set ovl0 (-16)
[   10.014770] misc dsscomp: failed to set ovl0 (-16)
[   10.109985] misc dsscomp: failed to set ovl0 (-16)
[   10.193267] misc dsscomp: failed to set ovl0 (-16)
[   10.279235] misc dsscomp: failed to set ovl0 (-16)
[   10.371856] misc dsscomp: failed to set ovl0 (-16)
[   10.413635] (stk) :line disc installation timed out
[   10.418823] (stk) :ldisc_install = 0
[   10.459045] misc dsscomp: failed to set ovl0 (-16)

MrPec
Posts: 31
Joined: Mon Jan 02, 2012 11:39 pm

Re: First try of Linaro Android 12.01 Pandaboard

Post by MrPec » Sun Feb 05, 2012 9:39 am

Did you compile your kernel from the latest sources? You have to do so, because in tacking 1201 release there are still many bugs - unfortunately, sgx crashes after about 5-10 minutes each time on tracking. Therefore, linaro team suggested me to use landing.
Btw, you can see whats working on https://docs.google.com/spreadsheet/ccc ... n_US#gid=0

I think think the best bet is to use landing and try to integrate the wifi driver from http://www.omappedia.org/wiki/L27.IS.1_ ... LAN_driver

Btw, In the pictures you posted, you seem to have wifi - is that landing? And if yes, how did you manage to get it to work?

Alex

Post Reply

Who is online

Users browsing this forum: No registered users and 5 guests