Skip to content

Instantly share code, notes, and snippets.

@Oberon00
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oberon00/c85bebef50b695eaaf51 to your computer and use it in GitHub Desktop.
Save Oberon00/c85bebef50b695eaaf51 to your computer and use it in GitHub Desktop.
More VFP state corruption debugging
From ef0e157bac9b44d81e890dff2c5dd7e7bc6873c6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Christian=20Neum=C3=BCller?= <cn00@gmx.at>
Date: Sat, 20 Dec 2014 12:34:17 +0100
Subject: [PATCH 1/2] Add check for VPF HW state.
Change-Id: Ib936c2e83b0baa0d6440f5dada2cb16655dbcb76
---
arch/arm/vfp/vfphw.S | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/arch/arm/vfp/vfphw.S b/arch/arm/vfp/vfphw.S
index 2d30c7f..b574994 100644
--- a/arch/arm/vfp/vfphw.S
+++ b/arch/arm/vfp/vfphw.S
@@ -43,6 +43,19 @@
#endif
.endm
+ .macro WARNSTR3, str, arg1, arg2, arg3
+ stmfd sp!, {r0-r3, ip, lr}
+ mov r3, \arg3
+ mov r2, \arg2
+ mov r1, \arg1
+ add r0, pc, #4
+ bl printk
+ b 1f
+ .asciz "<4>VFP: \str\n"
+ .balign 4
+1: ldmfd sp!, {r0-r3, ip, lr}
+ .endm
+
.macro DBGSTR3, str, arg1, arg2, arg3
#ifdef DEBUG
stmfd sp!, {r0-r3, ip, lr}
@@ -125,7 +138,15 @@ vfp_reload_hw:
@ last loaded onto.
ldr ip, [r10, #VFP_CPU]
teq ip, r11
- beq vfp_hw_state_valid
+ bne vfp_reload_hw
+
+ @ Check if s0 from the thread state does really match the HW s0
+ ldr r8, [r10, #0]
+ VFPFMXR FPEXC, r5
+ mrc p11, 0, r6, c0, c0, 0 @ fmrs r0, s0
+ teq r8, r6
+ beq vfp_reload_hw
+ WARNSTR3 "HW state (=%x) for %p on CPU%u not in sync", r6, r10, r11
vfp_reload_hw:
@ We're loading this threads state into the VFP hardware. Update
--
1.9.1
From d79fa6737a4ef172bfb0de30492af674a5faac5f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Christian=20Neum=C3=BCller?= <cn00@gmx.at>
Date: Sat, 20 Dec 2014 14:42:23 +0100
Subject: [PATCH 2/2] VFP: Add printk to powerstate notifiers.
Change-Id: I096e8fff01d4c76cc3af72ee32caad0039e134e8
---
arch/arm/vfp/vfpmodule.c | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c
index ef43e02..e23f278 100644
--- a/arch/arm/vfp/vfpmodule.c
+++ b/arch/arm/vfp/vfpmodule.c
@@ -450,7 +450,7 @@ static int vfp_pm_suspend(void)
/* if vfp is on, then save state for resumption */
if (fpexc & FPEXC_EN) {
- pr_debug("%s: saving vfp state\n", __func__);
+ pr_info("%s: saving vfp state\n", __func__);
vfp_save_state(&ti->vfpstate, fpexc);
/* disable, just in case */
@@ -484,11 +484,18 @@ static int vfp_cpu_pm_notifier(struct notifier_block *self, unsigned long cmd,
switch (cmd) {
case CPU_PM_ENTER:
vfp_pm_suspend();
+ pr_info("%s: PM_ENTER.", __func__);
break;
case CPU_PM_ENTER_FAILED:
+ vfp_pm_resume();
+ pr_info("%s: PM_ENTER_FAILED.", __func__);
+ break;
case CPU_PM_EXIT:
vfp_pm_resume();
+ pr_info("%s: PM_EXIT.", __func__);
break;
+ default:
+ pr_info("%s: Ignored PM event %x.", __func__, cmd);
}
return NOTIFY_OK;
}
@@ -639,10 +646,15 @@ int vfp_restore_user_hwstate(struct user_vfp __user *ufp,
static int vfp_hotplug(struct notifier_block *b, unsigned long action,
void *hcpu)
{
- if (action == CPU_DYING || action == CPU_DYING_FROZEN)
+ if (action == CPU_DYING || action == CPU_DYING_FROZEN) {
vfp_current_hw_state[(long)hcpu] = NULL;
- else if (action == CPU_STARTING || action == CPU_STARTING_FROZEN)
+ pr_info("%s: hw_state for %d cleared.", __func__, (long)hcpu);
+ } else if (action == CPU_STARTING || action == CPU_STARTING_FROZEN) {
vfp_enable(NULL);
+ pr_info("%s: Enabled vfp on %d.", __func__, (long)hcpu);
+ } else {
+ pr_info("%s: Ignored hotplug event %x on %d.", __func__, action, (long)hcpu);
+ }
return NOTIFY_OK;
}
--
1.9.1
<6>[ 0.000000] c0 Initializing cgroup subsys cpu
<5>[ 0.000000] c0 Linux version 3.0.64-CM-00263-g66cca25-dirty (cn@cn0-m2) (gcc version 4.7 (GCC) ) #47 SMP PREEMPT Sat Dec 20 14:22:39 CET 2014
<4>[ 0.000000] c0 CPU: ARMv7 Processor [412fc091] revision 1 (ARMv7), cr=10c5387d
<4>[ 0.000000] c0 CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache
<4>[ 0.000000] c0 Machine: SMDK4210
<4>[ 0.000000] c0 Memory policy: ECC disabled, Data cache writealloc
<4>[ 0.000000] c0 CPU EXYNOS4210 (id 0x43210211)
<7>[ 0.000000] c0 exynos4_init_clocks: initializing clocks
<6>[ 0.000000] c0 S3C24XX Clocks, Copyright 2004 Simtec Electronics
<3>[ 0.000000] c0 s3c_register_clksrc: clock audiocdclk has no registers set
<3>[ 0.000000] c0 audiocdclk: no parent clock specified
<3>[ 0.000000] c0 s3c_register_clksrc: clock armclk has no registers set
<7>[ 0.000000] c0 exynos4_setup_clocks: registering clocks
<7>[ 0.000000] c0 exynos4_setup_clocks: xtal is 24000000
<6>[ 0.000000] c0 EXYNOS4: PLL settings, A=800000000, M=800000000, E=180633605 V=300000000
<6>[ 0.000000] c0 EXYNOS4: ARMCLK=800000000, DMC=400000000, ACLK200=200000000
<6>[ 0.000000] c0 ACLK160=160000000, ACLK133=133333333, ACLK100=100000000
<6>[ 0.000000] c0 uclk1: source is mout_mpll (6), rate is 200000000
<6>[ 0.000000] c0 uclk1: source is mout_mpll (6), rate is 200000000
<6>[ 0.000000] c0 uclk1: source is mout_mpll (6), rate is 100000000
<6>[ 0.000000] c0 uclk1: source is mout_mpll (6), rate is 100000000
<6>[ 0.000000] c0 sclk_csis: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_csis: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_cam0: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_cam1: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_fimc: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_fimc: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_fimc: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_fimc: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_fimd: source is mout_mpll (6), rate is 50000000
<6>[ 0.000000] c0 sclk_fimd: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_mdnie: source is mout_mpll (6), rate is 50000000
<6>[ 0.000000] c0 sclk_mdnie: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_mdnie_pwm: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_mdnie_pwm: source is xusbxti (1), rate is 24000000
<6>[ 0.000000] c0 sclk_mfc: source is mout_mfc0 (0), rate is 100000000
<6>[ 0.000000] c0 sclk_g3d: source is mout_g3d0 (0), rate is 100000000
<6>[ 0.000000] c0 sclk_pwi: source is xusbxti (1), rate is 12000000
<0>[ 0.000000] c0 (sec_debug_set_upload_magic) 66262564
<0>[ 0.000000] c0 (sec_debug_set_upload_cause) cafebabe
<7>[ 0.000000] c0 On node 0 totalpages: 262144
<7>[ 0.000000] c0 free_area_init_node: node 0, pgdat c0f2b240, node_mem_map c131e000
<7>[ 0.000000] c0 Normal zone: 1600 pages used for memmap
<7>[ 0.000000] c0 Normal zone: 0 pages reserved
<7>[ 0.000000] c0 Normal zone: 203200 pages, LIFO batch:31
<7>[ 0.000000] c0 HighMem zone: 448 pages used for memmap
<7>[ 0.000000] c0 HighMem zone: 56896 pages, LIFO batch:15
<6>[ 0.000000] c0 sec_debug_magic_init: success reserving magic code area
<6>[ 0.000000] c0 PERCPU: Embedded 7 pages/cpu @c1b26000 s7136 r8192 d13344 u32768
<7>[ 0.000000] c0 pcpu-alloc: s7136 r8192 d13344 u32768 alloc=8*4096
<7>[ 0.000000] c0 pcpu-alloc: [0] 0 [0] 1
<4>[ 0.000000] c0 Built 1 zonelists in Zone order, mobility grouping on. Total pages: 260096
<5>[ 0.000000] c0 Kernel command line: loglevel=4 console=ram androidboot.serialno=0019b9162b3b8e sec_debug.enable=0 sec_debug.enable_user=0 c1_watchdog.sec_pet=5 sec_log=0x100000@0x4d900000 s3cfb.bootloaderfb=0x5ec00000 ld9040.get_lcdtype=0x2 consoleblank=0 lpj=3981312 vmalloc=144m
<6>[ 0.000000] c0 sec_log_setup: *sec_log_mag:4d474f4c *sec_log_ptr:79437 sec_log_buf:fc200000 sec_log_size:1048576
<6>[ 0.000000] c0 sec_log_save_old: saved old log at 496695@c1b35160
<6>[ 0.000000] c0 sec_getlog_supply_kloginfo: 0xcd900000
<6>[ 0.000000] c0 PID hash table entries: 4096 (order: 2, 16384 bytes)
<6>[ 0.000000] c0 Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
<6>[ 0.000000] c0 Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
<6>[ 0.000000] c0 Memory: 1024MB = 1024MB total
<5>[ 0.000000] c0 Memory: 803620k/803620k available, 244956k reserved, 229376K highmem
<5>[ 0.000000] c0 Virtual kernel memory layout:
<5>[ 0.000000] c0 vector : 0xffff0000 - 0xffff1000 ( 4 kB)
<5>[ 0.000000] c0 fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
<5>[ 0.000000] c0 DMA : 0xfea00000 - 0xffe00000 ( 20 MB)
<5>[ 0.000000] c0 vmalloc : 0xf2800000 - 0xfb000000 ( 136 MB)
<5>[ 0.000000] c0 lowmem : 0xc0000000 - 0xf2000000 ( 800 MB)
<5>[ 0.000000] c0 pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
<5>[ 0.000000] c0 modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
<5>[ 0.000000] c0 .init : 0xc0008000 - 0xc061c000 (6224 kB)
<5>[ 0.000000] c0 .text : 0xc061c000 - 0xc0d25000 (7204 kB)
<5>[ 0.000000] c0 .data : 0xc0d26000 - 0xc0f2bda0 (2072 kB)
<5>[ 0.000000] c0 .bss : 0xc0f2bdc4 - 0xc131d5b8 (4038 kB)
<6>[ 0.000000] c0 SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
<6>[ 0.000000] c0 Preemptible hierarchical RCU implementation.
<6>[ 0.000000] c0 NR_IRQS:493
<6>[ 0.000000] c0 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 0.000000] c0 Console: colour dummy device 80x30
<6>[ 0.000000] c0 Calibrating delay loop (skipped) preset value.. 1592.52 BogoMIPS (lpj=3981312)
<6>[ 0.000000] c0 pid_max: default: 32768 minimum: 301
<6>[ 0.000000] c0 Security Framework initialized
<6>[ 0.000000] c0 SELinux: Initializing.
<7>[ 0.000000] c0 SELinux: Starting in permissive mode
<6>[ 0.000000] c0 Mount-cache hash table entries: 512
<6>[ 0.000000] c0 Initializing cgroup subsys debug
<6>[ 0.000000] c0 Initializing cgroup subsys cpuacct
<6>[ 0.000000] c0 Initializing cgroup subsys freezer
<6>[ 0.000000] c0 CPU: Testing write buffer coherency: ok
<6>[ 0.000000] c0 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 0.000000] c0 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 0.000000] c0 L310 cache controller enabled
<6>[ 0.000000] c0 l2x0: 16 ways, CACHE_ID 0x4100c4c5, AUX_CTRL 0x7e470001, Cache size: 1048576 B
<4>[ 0.030000] c1 CPU1: Booted secondary processor
<4>[ 0.030000] c1 CPU1: Booted secondary processor
<6>[ 0.030000] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 0.040000] c0 Brought up 2 CPUs
<6>[ 0.040000] c0 SMP: Total of 2 processors activated (3185.04 BogoMIPS).
<6>[ 0.045000] c0 print_constraints: dummy:
<6>[ 0.045000] c0 NET: Registered protocol family 16
<6>[ 0.050000] c0 universal_tsp_init touch : 356
<6>[ 0.050000] c0 smdkc210_machine_init() register sii9234 driver
<6>[ 0.050000] c0 Registered chained gpio int handler for interrupt 110.
<6>[ 0.050000] c0 Registered interrupt support for gpio group 20.
<6>[ 0.050000] c0 s5p_gpioint_set_type irq:389 is at GPL0(5)
<7>[ 0.050000] c0 usb: smdkc210_usbgadget_init: default luns=0, new luns=2
<7>[ 0.050000] c0 usb: smdkc210_usbgadget_init tune_mask=0x10380f, tune=0x10280b
<6>[ 0.050000] c0 ld9040_fb_init :: lcdtype=2
<6>[ 0.050000] c0 brcm_wlan_init: start
<6>[ 0.050000] c0 brcm_init_wlan_mem: WIFI MEM Allocated
<6>[ 0.060000] c0 exynos4_pmu_init: PMU supports 4210(71)
<6>[ 0.060000] c0 S3C Power Management, Copyright 2004 Simtec Electronics
<6>[ 0.065000] c0 EXYNOS4: Initializing architecture
<6>[ 0.065000] c0 s3c-adc samsung-adc-v3: attached adc driver
<6>[ 0.065000] c0 samsung-pd samsung-pd.0: power domain registered
<6>[ 0.065000] c0 samsung-pd samsung-pd.1: power domain registered
<6>[ 0.065000] c0 samsung-pd samsung-pd.2: power domain registered
<6>[ 0.065000] c0 lcd0 disable skip only one time
<6>[ 0.065000] c0 samsung-pd samsung-pd.3: power domain registered
<6>[ 0.065000] c0 samsung-pd samsung-pd.5: power domain registered
<6>[ 0.065000] c0 samsung-pd samsung-pd.4: power domain registered
<6>[ 0.065000] c0 samsung-pd samsung-pd.6: power domain registered
<6>[ 0.065000] c0 s3c24xx-pwm s3c24xx-pwm.0: tin at 100000000, tdiv at 100000000, tin=divclk, base 0
<6>[ 0.065000] c0 s3c24xx-pwm s3c24xx-pwm.1: tin at 100000000, tdiv at 100000000, tin=divclk, base 8
<6>[ 0.065000] c0 s3c24xx-pwm s3c24xx-pwm.2: tin at 100000000, tdiv at 100000000, tin=divclk, base 12
<6>[ 0.065000] c0 s3c24xx-pwm s3c24xx-pwm.3: tin at 100000000, tdiv at 100000000, tin=divclk, base 16
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.1: Initialized for s3c-fimc.0.
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.2: Initialized for s3c-fimc.1.
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.3: Initialized for s3c-fimc.2.
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.4: Initialized for s3c-fimc.3.
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.9: Initialized for s5p-fimg2d.
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.12: Initialized for s5p-tvout.
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.13: Initialized for s3c-mfc.
<6>[ 0.065000] c0 s5p-sysmmu s5p-sysmmu.14: Initialized for s3c-mfc.
<6>[ 0.090000] c1 bio: create slab <bio-0> at 0
<5>[ 0.095000] c1 SCSI subsystem initialized
<6>[ 0.095000] c1 usbcore: registered new interface driver usbfs
<6>[ 0.095000] c1 usbcore: registered new interface driver hub
<6>[ 0.095000] c1 usbcore: registered new device driver usb
<6>[ 0.095000] c1 i2c-gpio i2c-gpio.8: using pins 91 (SDA) and 89 (SCL)
<6>[ 0.095000] c1 i2c-gpio i2c-gpio.9: using pins 163 (SDA) and 164 (SCL)
<6>[ 0.095000] c1 i2c-gpio i2c-gpio.11: using pins 99 (SDA) and 107 (SCL)
<6>[ 0.095000] c1 i2c-gpio i2c-gpio.14: using pins 136 (SDA) and 135 (SCL)
<6>[ 0.095000] c1 i2c-gpio i2c-gpio.12: using pins 31 (SDA) and 33 (SCL)
<6>[ 0.095000] c1 i2c-gpio i2c-gpio.15: using pins 154 (SDA) and 156 (SCL)
<6>[ 0.100000] c1 i2c-gpio i2c-gpio.16: using pins 18 (SDA) and 19 (SCL)
<6>[ 0.100000] c1 s3c-i2c s3c2440-i2c.0: i2c-0: S3C I2C adapter
<6>[ 0.100000] c1 s3c-i2c s3c2440-i2c.1: i2c-1: S3C I2C adapter
<6>[ 0.100000] c1 s3c-i2c s3c2440-i2c.3: i2c-3: S3C I2C adapter
<6>[ 0.100000] c0 max8997 5-0066: max8997_irq_init: PMIC ID(0x77)
<6>[ 0.100000] c0 max8997-pmic max8997-pmic: max8997_set_buck_max_voltage: buck1: 1350000, i:28
<6>[ 0.100000] c0 max8997-pmic max8997-pmic: max8997_set_buck_max_voltage: buck2: 1150000, i:20
<6>[ 0.100000] c0 max8997-pmic max8997-pmic: max8997_set_buck_max_voltage: buck5: 1200000, i:22
<6>[ 0.105000] c0 max8997-pmic max8997-pmic: RAMP REG(0xf9)
<6>[ 0.105000] c0 print_constraints: VADC_3.3V_C210: 3300 mV
<6>[ 0.105000] c0 print_constraints: VUSB_1.1V: 1100 mV
<6>[ 0.105000] c0 print_constraints: VMIPI_1.8V: 1800 mV
<6>[ 0.105000] c0 print_constraints: VHSIC_1.2V: 1200 mV
<6>[ 0.105000] c0 print_constraints: CAM_ISP_1.8V: 1800 mV
<6>[ 0.105000] c0 print_constraints: VUSB_3.3V: 3300 mV
<6>[ 0.105000] c0 print_constraints: VPLL_1.1V: 1100 mV
<6>[ 0.110000] c0 print_constraints: TOUCH_2.8V: 2800 mV
<6>[ 0.110000] c0 print_constraints: VT_CAM_1.8V: 1800 mV
<6>[ 0.110000] c0 print_constraints: VCC_3.0V_LCD: 3000 mV
<6>[ 0.110000] c0 print_constraints: VCC_2.8V_MOTOR: 2800 mV
<6>[ 0.110000] c0 print_constraints: LED_A_2.8V: 2800 mV
<6>[ 0.110000] c0 print_constraints: CAM_SENSOR_IO_1.8V: 1800 mV
<6>[ 0.110000] c0 print_constraints: VTF_2.8V: 2800 mV
<6>[ 0.110000] c0 print_constraints: TOUCH_LED_3.3V: 3000 <--> 3300 mV at 3000 mV
<6>[ 0.110000] c0 print_constraints: VDDQ_M1M2_1.2V: 1200 mV
<6>[ 0.115000] c0 print_constraints: vdd_arm range: 650 <--> 2225 mV at 1350 mV
<6>[ 0.115000] c0 print_constraints: vdd_int range: 650 <--> 2225 mV at 1150 mV
<6>[ 0.115000] c0 print_constraints: G3D_1.1V: 900 <--> 1200 mV at 950 mV
<6>[ 0.115000] c0 print_constraints: CAM_ISP_CORE_1.2V: 1200 mV
<6>[ 0.115000] c0 print_constraints: VMEM_1.2V: 1200 mV
<6>[ 0.115000] c0 print_constraints: VCC_SUB_2.0V: 2000 mV
<6>[ 0.115000] c0 print_constraints: safeout1 range:
<6>[ 0.115000] c0 print_constraints: safeout2 range:
<6>[ 0.115000] c0 print_constraints: FLASH_CUR: 23 <--> 750 mA at 23 mA
<6>[ 0.115000] c0 print_constraints: MOVIE_CUR: 15 <--> 250 mA at 15 mA
<6>[ 0.115000] c0 s3c-i2c s3c2440-i2c.5: i2c-5: S3C I2C adapter
<6>[ 0.120000] c0 s3c-i2c s3c2440-i2c.6: i2c-6: S3C I2C adapter
<6>[ 0.120000] c0 s3c-i2c s3c2440-i2c.7: i2c-7: S3C I2C adapter
<6>[ 0.120000] c0 Advanced Linux Sound Architecture Driver Version 1.0.24.
<6>[ 0.120000] c0 Bluetooth: Core ver 2.16
<6>[ 0.120000] c0 NET: Registered protocol family 31
<6>[ 0.120000] c0 Bluetooth: HCI device and connection manager initialized
<6>[ 0.120000] c0 Bluetooth: HCI socket layer initialized
<6>[ 0.120000] c0 Bluetooth: L2CAP socket layer initialized
<6>[ 0.120000] c0 Bluetooth: SCO socket layer initialized
<6>[ 0.120000] c0 cfg80211: Calling CRDA to update world regulatory domain
<6>[ 0.120000] c0 Switching to clocksource mct-frc
<6>[ 0.121353] c0 Switched to NOHz mode on CPU #0
<6>[ 0.121486] c1 Switched to NOHz mode on CPU #1
<6>[ 0.133572] c0 NET: Registered protocol family 2
<6>[ 0.133800] c0 IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
<6>[ 0.134538] c0 TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
<6>[ 0.136473] c0 TCP bind hash table entries: 65536 (order: 7, 786432 bytes)
<6>[ 0.137904] c0 TCP: Hash tables configured (established 131072 bind 65536)
<6>[ 0.137941] c0 TCP reno registered
<6>[ 0.137969] c0 UDP hash table entries: 512 (order: 2, 16384 bytes)
<6>[ 0.138029] c0 UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
<6>[ 0.138436] c0 NET: Registered protocol family 1
<6>[ 0.158234] c0 PMU: registered new PMU device of type 0
<6>[ 0.159614] c0 MUIC:[/home/cn/android/system/kernel/samsung/smdk4412/arch/arm/mach-exynos/sec-switch_max8997.c] func:uart_switch_init
<6>[ 0.159680] c0 ##MUIC [ /home/cn/android/system/kernel/samsung/smdk4412/arch/arm/mach-exynos/sec-switch_max8997.c ]- func : uart_switch_init !! val:-0-
<6>[ 0.160528] c0 regulator_consumer_probe: loading u1-regulator-consumer
<6>[ 0.161201] c0 wake enabled for irq 374
<6>[ 0.161416] c0 sec-thermistor sec-thermistor: sec_therm_probe: SEC Thermistor Driver Loading
<6>[ 0.161771] c0 Loaded driver for PL330 DMAC-0 s3c-pl330
<6>[ 0.161804] c0 DBUFF-64x8bytes Num_Chans-8 Num_Peri-1 Num_Events-32
<6>[ 0.161947] c0 Loaded driver for PL330 DMAC-1 s3c-pl330
<6>[ 0.161979] c0 DBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
<6>[ 0.162114] c0 Loaded driver for PL330 DMAC-2 s3c-pl330
<6>[ 0.162145] c0 DBUFF-32x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
<6>[ 0.162641] c0 audit: initializing netlink socket (disabled)
<5>[ 0.162705] c0 type=2000 audit(0.160:1): initialized
<4>[ 0.163198] c0 highmem bounce pool size: 64 pages
<6>[ 0.163446] c0 ashmem: initialized
<6>[ 0.176506] c0 fuse init (API version 7.16)
<6>[ 0.176967] c0 msgmni has been set to 1121
<7>[ 0.177084] c0 SELinux: Registering netfilter hooks
<6>[ 0.177554] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.177587] c1 FIPS: No test for cipher_null (cipher_null-generic)
<6>[ 0.177701] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.177733] c1 FIPS: No test for ecb(cipher_null) (ecb-cipher_null)
<6>[ 0.177821] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.177854] c1 FIPS: No test for digest_null (digest_null-generic)
<6>[ 0.177939] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.177971] c1 FIPS: No test for compress_null (compress_null-generic)
<6>[ 0.178057] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.178133] c1 FIPS: self-tests for non-FIPS md4-generic (md4) passed
<6>[ 0.178242] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.178306] c1 FIPS: self-tests for non-FIPS md5-generic (md5) passed
<6>[ 0.178415] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.178485] c1 FIPS: self-tests for sha1-generic (sha1) passed
<6>[ 0.178589] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.178652] c1 FIPS: self-tests for sha224-generic (sha224) passed
<6>[ 0.178778] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.178832] c1 FIPS: self-tests for sha256-generic (sha256) passed
<6>[ 0.178958] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.179193] c1 FIPS: self-tests for sha384-generic (sha384) passed
<6>[ 0.179326] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.179552] c1 FIPS: self-tests for sha512-generic (sha512) passed
<6>[ 0.179686] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.179745] c1 FIPS: self-tests for des-generic (des) passed
<6>[ 0.179850] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.179911] c1 FIPS: self-tests for des3_ede-generic (des3_ede) passed
<6>[ 0.180050] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.180082] c1 FIPS: self-tests for non-FIPS twofish-generic (twofish) passed
<6>[ 0.180175] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.180261] c1 FIPS: self-tests for aes-generic (aes) passed
<6>[ 0.180388] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.180421] c1 FIPS: self-tests for non-FIPS arc4-generic (arc4) passed
<6>[ 0.180510] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.181027] c1 FIPS: self-tests for non-FIPS deflate-generic (deflate) passed
<6>[ 0.181190] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.181280] c1 FIPS: self-tests for crc32c-generic (crc32c) passed
<6>[ 0.181393] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.181425] c1 FIPS: No test for stdrng (krng)
<6>[ 0.181507] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.222400] c1 FIPS: self-tests for ansi_cprng (stdrng) passed
<6>[ 0.222520] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.222552] c1 FIPS: No test for fips(ansi_cprng) (fips_ansi_cprng)
<6>[ 0.222740] c0 FIPS: self-tests for non-FIPS md5 (md5) passed
<6>[ 0.222887] c0 FIPS: self-tests for sha1 (sha1) passed
<6>[ 0.223304] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.223372] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.223652] c0 FIPS: self-tests for ecb(des-generic) (ecb(des)) passed
<6>[ 0.224217] c0 FIPS: self-tests for ecb(des) (ecb(des)) passed
<6>[ 0.224578] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.224683] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.225152] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.225322] c0 FIPS: self-tests for non-FIPS cbc(des-generic) (cbc(des)) passed
<6>[ 0.225612] c0 FIPS: self-tests for non-FIPS cbc(des) (cbc(des)) passed
<6>[ 0.225989] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.226094] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.226233] c0 FIPS: self-tests for ecb(des3_ede-generic) (ecb(des3_ede)) passed
<6>[ 0.226512] c0 FIPS: self-tests for ecb(des3_ede) (ecb(des3_ede)) passed
<6>[ 0.226877] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.226983] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.227423] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.227574] c0 FIPS: self-tests for cbc(des3_ede-generic) (cbc(des3_ede)) passed
<6>[ 0.227834] c0 FIPS: self-tests for cbc(des3_ede) (cbc(des3_ede)) passed
<6>[ 0.227980] c0 FIPS: self-tests for non-FIPS md4 (md4) passed
<6>[ 0.228108] c0 FIPS: self-tests for sha256 (sha256) passed
<6>[ 0.228466] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.228573] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.228837] c0 FIPS: self-tests for non-FIPS ecb(twofish-generic) (ecb(twofish)) passed
<6>[ 0.229323] c0 FIPS: self-tests for non-FIPS ecb(twofish) (ecb(twofish)) passed
<6>[ 0.229696] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.229806] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.230290] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.230563] c0 FIPS: self-tests for non-FIPS cbc(twofish-generic) (cbc(twofish)) passed
<6>[ 0.231078] c0 FIPS: self-tests for non-FIPS cbc(twofish) (cbc(twofish)) passed
<6>[ 0.231457] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.231566] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.231716] c0 FIPS: self-tests for ecb(aes-generic) (ecb(aes)) passed
<6>[ 0.231989] c0 FIPS: self-tests for ecb(aes) (ecb(aes)) passed
<6>[ 0.232351] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.232461] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.232904] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.233088] c0 FIPS: self-tests for cbc(aes-generic) (cbc(aes)) passed
<6>[ 0.233397] c0 FIPS: self-tests for cbc(aes) (cbc(aes)) passed
<6>[ 0.233773] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.233884] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.234330] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.234491] c0 FIPS: self-tests for ctr(aes-generic) (ctr(aes)) passed
<6>[ 0.234771] c0 FIPS: self-tests for ctr(aes) (ctr(aes)) passed
<6>[ 0.235369] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.235476] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.235916] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.236557] c0 FIPS: self-tests for rfc3686(ctr(aes-generic)) (rfc3686(ctr(aes))) passed
<6>[ 0.237775] c0 FIPS: self-tests for rfc3686(ctr(aes)) (rfc3686(ctr(aes))) passed
<6>[ 0.238263] c0 FIPS: self-tests for sha384 (sha384) passed
<6>[ 0.238731] c0 FIPS: self-tests for sha512 (sha512) passed
<6>[ 0.239646] c0 FIPS: self-tests for non-FIPS deflate (deflate) passed
<6>[ 0.240259] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.240380] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.240619] c1 FIPS: self-tests for non-FIPS ecb(arc4-generic) (ecb(arc4)) passed
<6>[ 0.241086] c1 FIPS: self-tests for non-FIPS ecb(arc4) (ecb(arc4)) passed
<6>[ 0.241274] c1 FIPS: self-tests for crc32c (crc32c) passed
<6>[ 0.241404] c1 FIPS: self-tests for sha224 (sha224) passed
<6>[ 0.241798] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.241886] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.242333] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.242721] c0 FIPS: self-tests for non-FIPS cts(cbc(aes-generic)) (cts(cbc(aes))) passed
<6>[ 0.243488] c1 FIPS: self-tests for non-FIPS cts(cbc(aes)) (cts(cbc(aes))) passed
<6>[ 0.243877] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.243958] c0 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.244106] c1 FIPS: self-tests for non-FIPS hmac(md5-generic) (hmac(md5)) passed
<6>[ 0.244426] c1 FIPS: self-tests for non-FIPS hmac(md5) (hmac(md5)) passed
<6>[ 0.244806] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.244918] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.245405] c1 FIPS: self-tests for hmac(sha1-generic) (hmac(sha1)) passed
<6>[ 0.245914] c1 FIPS: self-tests for hmac(sha1) (hmac(sha1)) passed
<6>[ 0.246286] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.246395] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.246785] c1 FIPS: self-tests for hmac(sha256-generic) (hmac(sha256)) passed
<6>[ 0.247571] c1 FIPS: self-tests for hmac(sha256) (hmac(sha256)) passed
<6>[ 0.247939] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.248046] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.248924] c1 FIPS: self-tests for hmac(sha384-generic) (hmac(sha384)) passed
<6>[ 0.250698] c1 FIPS: self-tests for hmac(sha384) (hmac(sha384)) passed
<6>[ 0.251071] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.251181] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.252052] c1 FIPS: self-tests for hmac(sha512-generic) (hmac(sha512)) passed
<6>[ 0.253788] c1 FIPS: self-tests for hmac(sha512) (hmac(sha512)) passed
<6>[ 0.254165] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.254278] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.254512] c1 FIPS: self-tests for hmac(sha224-generic) (hmac(sha224)) passed
<6>[ 0.254978] c1 FIPS: self-tests for hmac(sha224) (hmac(sha224)) passed
<6>[ 0.335899] c1 FIPS: self-tests for ansi_cprng (ansi_cprng) passed
<6>[ 0.335939] c1 FIPS: do kernel integrity check
<6>[ 0.521032] c1 FIPS: integrity check passed
<6>[ 0.521245] c1 notifier_call_chain : NOTIFY BAD cryptomgr_notify
<6>[ 0.521354] c1 FIPS: self-tests for non-FIPS ghash-generic (ghash) passed
<6>[ 0.521457] c1 io scheduler noop registered
<6>[ 0.521483] c1 io scheduler deadline registered
<6>[ 0.521634] c1 io scheduler cfq registered (default)
<6>[ 0.521666] c1 io scheduler row registered
<6>[ 0.521694] c1 io scheduler sio registered
<3>[ 0.521912] c1 s3cfb s3cfb.0: div(32) max should be 16
<6>[ 0.521946] c1 s3cfb s3cfb.0: vclk=25067520, div=32(16), rate=50000000
<6>[ 0.522027] c1 s3cfb s3cfb.0: fimd sclk rate 50000000, clkdiv 0x7000ff
<6>[ 0.522324] c1 s3cfb s3cfb.0: [fb2] dma: 0x7143c000, cpu: 0xf28f9000, size: 0x002ee000
<6>[ 0.524291] c1 sec_getlog_supply_fbinfo: 0x7143c000 480 800 32 2
<6>[ 0.526456] c1 Bootloader sent 'bootloaderfb' : 5EC00000
<6>[ 0.527479] c1 s3cfb s3cfb.0: parent clock: 50000000, vclk: 25067000, vclk div: 2
<6>[ 0.527611] c1 s3cfb s3cfb.0: registered successfully
<6>[ 0.528296] c1 mdnie mdnie: mode=1, scenario=0, outdoor=0, cabc=0, CYANOGENMOD
<6>[ 0.528340] c1 mdnie mdnie: registered successfully
<6>[ 0.528799] c1 Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
<6>[ 0.595340] c1 s5pv210-uart.0: ttySAC0 at MMIO 0x13800000 (irq = 16) is a S3C6400/10
<6>[ 0.620077] c1 s5pv210-uart.1: ttySAC1 at MMIO 0x13810000 (irq = 20) is a S3C6400/10
<6>[ 0.635077] c1 s5pv210-uart.2: ttySAC2 at MMIO 0x13820000 (irq = 24) is a S3C6400/10
<6>[ 0.655076] c1 s5pv210-uart.3: ttySAC3 at MMIO 0x13830000 (irq = 28) is a S3C6400/10
<4>[ 0.670410] c1 Mali: exynos_result_of_asv_group = 0x0, target_asv = 0x0
<4>[ 0.670454] c1 Mali: mali_dvfs[0].vol = 950000
<4>[ 0.670483] c1 Mali: mali_dvfs[1].vol = 1050000
<4>[ 0.670510] c1 Mali: init_gpu_vol = 1050000
<4>[ 0.670596] c1 Mali: Mali frequency 266
<4>[ 0.670625] c1 Mali: init_mali_clock mali_clock c0e91aec
<4>[ 0.671056] c0 Mali: = regulator_set_voltage: 1050000, 1050000
<4>[ 0.671599] c0 Mali: Mali frequency 200
<4>[ 0.694458] c0 Mali: Mali device driver loaded
<4>[ 0.694815] c0 UMP: UMP device driver 0000 loaded
<6>[ 0.702754] c0 brd: module loaded
<6>[ 0.706713] c0 loop: module loaded
<6>[ 0.707356] c0 sec_jack_probe : Registering jack driver
<6>[ 0.708465] c0 wake enabled for irq 378
<6>[ 0.708969] c0 input: max8997-muic as /devices/platform/s3c2440-i2c.5/i2c-5/5-0066/max8997-muic/input/input0
<6>[ 0.709031] c0 max8997_muic_cfg_uart_gpio: path=0
<6>[ 0.709232] c0 max8997-muic max8997-muic: max8997_muic_set_adcdbset: ADCDBSET(0x20)
<6>[ 0.710302] c0 Loading pn544 driver
<6>[ 0.710362] c0 pn544_probe : IRQ num 367
<6>[ 0.710562] c0 pn544_probe : requesting IRQ 367
<6>[ 0.712188] c0 lcd panel: ld9040_probe : lcdtype : SM2_A2
<6>[ 0.712220] c0 lcd panel: ld9040 panel driver has been probed.
<6>[ 0.712399] c0 PPP generic driver version 2.4.2
<6>[ 0.712728] c0 PPP Deflate Compression module registered
<6>[ 0.712759] c0 PPP BSD Compression module registered
<6>[ 0.712811] c0 PPP MPPE Compression module registered
<6>[ 0.712841] c0 NET: Registered protocol family 24
<6>[ 0.712872] c0 tun: Universal TUN/TAP device driver, 1.6
<6>[ 0.712900] c0 tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
<6>[ 0.713288] c0 host_notifier host_notifier.0: notifier_prove
<6>[ 0.713939] c0 ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
<6>[ 0.714317] c0 usbcore: registered new interface driver usblp
<6>[ 0.714349] c0 Initializing USB Mass Storage driver...
<6>[ 0.714516] c0 usbcore: registered new interface driver usb-storage
<6>[ 0.714550] c0 USB Mass Storage support registered.
<6>[ 0.714633] c0 otg pdata e40d5700, irq c08d8064
<6>[ 0.714923] c0 s3c-udc : S3C HS USB OTG Device Driver,(c) 2008-2009 Samsung Electronics
<6>[ 0.714961] c0 s3c-udc : version 15 March 2009
<7>[ 0.714987] c0 init
<7>[ 0.715541] c0 usb: android_bind disconnect
<7>[ 0.715567] c0 usb: usb_gadget_disconnect
<7>[ 0.717559] c0 usb: usb_string_id cdev(0xe4178000)->next_string_id=1
<6>[ 0.717723] c0 android_usb gadget: Mass Storage Function, version: 2009/09/11
<6>[ 0.717762] c0 android_usb gadget: Number of LUNs=2
<6>[ 0.717793] c0 lun0: LUN: removable file: (no medium)
<6>[ 0.717822] c0 lun1: LUN: removable file: (no medium)
<7>[ 0.718633] c0 usb: usb_string_id cdev(0xe4178000)->next_string_id=2
<7>[ 0.718669] c0 usb: usb_string_id cdev(0xe4178000)->next_string_id=3
<7>[ 0.718709] c0 usb: usb_string_id cdev(0xe4178000)->next_string_id=4
<7>[ 0.718745] c0 usb: composite_bind idVendor=0x0, idProduct=0x0
<7>[ 0.718775] c0 usb: composite_bind bcdDevice=0x0
<7>[ 0.718801] c0 usb: composite_bind composite_manufacturer=
<6>[ 0.718836] c0 android_usb gadget: android_usb ready
<6>[ 0.718862] c0 usb: Skip udc_enable
<6>[ 0.719914] c0 input: gpio-keys as /devices/platform/gpio-keys.0/input/input1
<7>[ 0.720845] c0 [keys]PWR 0
<6>[ 0.721345] c0 input: sec_touchscreen as /devices/virtual/input/input2
<6>[ 0.840501] c0 Atmel MXT224 3-004a: family = 0x80, variant = 0x1, version= 0x16, build = 171
<3>[ 0.840547] c0 [TSP] family = 0x80, variant = 0x1, version = 0x16, build = 171
<3>[ 0.848814] c0 [TSP] TSP chip is MXT224
<3>[ 0.915052] c0 [TSP] ta_status is 0
<3>[ 0.915073] c0 [TSP] mxt224_ta_probe
<3>[ 0.916735] c0 [TSP]TA_probe MXT224 T9 Byte7 is 55
<3>[ 0.917473] c0 [TSP] calibration success!!!
<3>[ 0.918140] c1 [TSP] Calibration End!!!!!!
<3>[ 0.918168] c1 [TSP] +mxt224_optical_gain()
<3>[ 1.140467] c1 [TSP] -mxt224_optical_gain()
<6>[ 1.165039] c0 max8997-rtc max8997-rtc: max8997_rtc_enable_wtsr: enable WTSR
<6>[ 1.190039] c0 max8997-rtc max8997-rtc: max8997_rtc_enable_smpl: enable SMPL
<6>[ 1.215171] c0 max8997_rtc_enable_smpl: WTSR_SMPL(0xc3)
<6>[ 1.216454] c0 using rtc device, max8997-rtc, for alarms
<6>[ 1.216509] c0 max8997-rtc max8997-rtc: rtc core: registered max8997-rtc as rtc0
<4>[ 1.216874] c1 S3C24XX RTC, (c) 2004,2006 Simtec Electronics
<6>[ 1.217269] c1 s3c-rtc exynos-rtc: rtc core: registered s3c as rtc1
<6>[ 1.217475] c1 i2c /dev entries driver
<6>[ 1.220380] c1 lirc_dev: IR Remote Control driver registered, major 250
<6>[ 1.220417] c1 IR NEC protocol handler initialized
<6>[ 1.220444] c1 IR RC5(x) protocol handler initialized
<6>[ 1.220472] c1 IR RC6 protocol handler initialized
<6>[ 1.220498] c1 IR JVC protocol handler initialized
<6>[ 1.220524] c1 IR Sony protocol handler initialized
<6>[ 1.220551] c1 IR RC5 (streamzap) protocol handler initialized
<6>[ 1.220582] c1 IR LIRC bridge handler initialized
<6>[ 1.220607] c1 Linux video capture interface: v2.00
<7>[ 1.220898] c1 [S5K5BAFX] s5k5bafx_create_sysfs
<6>[ 1.221348] c1 s3c-csis: Samsung MIPI-CSIS0 driver probed successfully
<6>[ 1.221415] c1 s3c-csis: Samsung MIPI-CSIS1 driver probed successfully
<4>[ 1.221587] c1 Initialize JPEG driver
<4>[ 1.222053] c1 S5P HPD Driver, (c) 2009 Samsung Electronics
<6>[ 1.222307] c1 s5p_int_src_ext_hpd()
<6>[ 1.222336] c1 s5p_hpd_read_gpio(0)
<6>[ 1.222519] c0 s5p_hpd_read_gpio(0)
<6>[ 1.222898] c1 i2c i2c-7: attached s5p_ddc into i2c adapter successfully
<4>[ 1.223047] c1 i2c-core: driver [s5p_ddc] using legacy suspend method
<4>[ 1.223082] c1 i2c-core: driver [s5p_ddc] using legacy resume method
<6>[ 1.223578] c1 MFC(Multi Function Codec - FIMV v5.x) registered successfully
<6>[ 1.224461] c1 sii9234_cfg_gpio()
<6>[ 1.224494] c1 Registered chained gpio int handler for interrupt 111.
<6>[ 1.224541] c1 Registered interrupt support for gpio group 10.
<6>[ 1.224577] c1 s5p_gpioint_set_type irq:397 is at GPF3(5)
<6>[ 1.224767] c1 s5p_gpioint_set_type irq:397 is at GPF3(5)
<6>[ 1.224878] c1 sii9234 : create mhl sysfile
<6>[ 1.225545] c1 input: sii9234_rcp as /devices/virtual/input/input3
<6>[ 1.226519] c1 max8997-charger max8997-charger: max8997_charger_probe : MAX8997 Charger Driver Loading
<6>[ 1.228220] c0 max8922-charger max8922-charger: max8922_probe : MAX8922 Charger Driver Loading
<6>[ 1.228329] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x0
<6>[ 1.228749] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x1
<6>[ 1.228864] c0 max17042 9-0036: max17042_probe: MAX17042 Driver Loading
<6>[ 1.229725] c0 max17042 9-0036: max17042_probe : is enable (1)
<6>[ 1.229758] c0 max17042 9-0036: max17042_init_regs
<6>[ 1.230920] c0 max17042 9-0036: fuel alert soc (2)
<6>[ 1.230949] c0 max17042 9-0036: max17042_alert_init
<6>[ 1.232596] c0 wake enabled for irq 371
<6>[ 1.233732] c0 max17042 9-0036: max17042_irq_init : config_reg(2314) irq(371)
<6>[ 1.234376] c0 max17042 9-0036: MAX17042 Fuel-Gauge Ver 1460
<6>[ 1.236866] c0 max17042 9-0036: max17042_get_soc : soc(6182)
<6>[ 1.236898] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 1.236927] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 1.237575] c0 max17042 9-0036: max17042_probe: MAX17042 Driver Loaded
<4>[ 1.237751] c0 i2c-core: driver [max17042] using legacy suspend method
<4>[ 1.237786] c0 i2c-core: driver [max17042] using legacy resume method
<6>[ 1.238608] c0 device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com
<6>[ 1.238685] c0 Bluetooth: HCI UART driver ver 2.2
<6>[ 1.238714] c0 Bluetooth: HCI H4 protocol initialized
<6>[ 1.239221] c0 cpuidle: using governor ladder
<6>[ 1.239935] c0 cpuidle: using governor menu
<6>[ 1.240379] c0 mshci: Mobile Storage Host Controller Interface driver
<6>[ 1.240414] c0 mshci: Copyright (c) 2011 Samsung Electronics Co., Ltd
<6>[ 1.240587] c0 dw_mmc dw_mmc: clock source 0: sclk_dwmci (90316800 Hz)
<3>[ 1.240860] c0 mmc0: Version ID 0x5342230a.
<6>[ 1.241112] c0 mmc0: FIFO WMARK FOR RX 0x20 WX 0x10. ###########
<6>[ 1.241576] c0 mmc0: MSHCI controller on samsung-mshci [dw_mmc] using IDMA
<6>[ 1.241840] c0 sdhci: Secure Digital Host Controller Interface driver
<6>[ 1.241875] c0 sdhci: Copyright(c) Pierre Ossman
<6>[ 1.241988] c0 s3c-sdhci s3c-sdhci.2: clock source 2: sclk_mmc (8888888 Hz)
<6>[ 1.242238] c0 mmc1: vtf_2.8v regulator found
<3>[ 1.270366] c0 mmc0: cmd 52 response timeout error
<3>[ 1.270730] c0 mmc0: cmd 52 response timeout error
<3>[ 1.274272] c0 mmc0: cmd 8 response timeout error
<3>[ 1.274630] c0 mmc0: cmd 5 response timeout error
<3>[ 1.274976] c0 mmc0: cmd 5 response timeout error
<3>[ 1.275322] c0 mmc0: cmd 5 response timeout error
<3>[ 1.275667] c0 mmc0: cmd 5 response timeout error
<3>[ 1.276041] c0 mmc0: cmd 55 response timeout error
<3>[ 1.276412] c0 mmc0: cmd 55 response timeout error
<3>[ 1.276781] c0 mmc0: cmd 55 response timeout error
<3>[ 1.277149] c0 mmc0: cmd 55 response timeout error
<6>[ 1.296801] c1 mmc0: VYL00M: 15010056594c30304d19b9162b3b8e91
<6>[ 1.344239] c0 mmc1: SDHCI controller on samsung-hsmmc [s3c-sdhci.2] using ADMA
<6>[ 1.344458] c0 wake enabled for irq 380
<6>[ 1.344482] c0 mmc1: card inserted.
<6>[ 1.344571] c0 s3c-sdhci s3c-sdhci.3: clock source 2: sclk_mmc (8888888 Hz)
<3>[ 1.344648] c0 mmc2: no vmmc regulator found
<6>[ 1.344915] c0 mmc2: SDHCI controller on samsung-hsmmc [s3c-sdhci.3] using ADMA
<6>[ 1.360084] c0 usbcore: registered new interface driver usbhid
<6>[ 1.360116] c0 usbhid: USB HID core driver
<6>[ 1.360612] c0 logger: created 2048K log 'log_main'
<6>[ 1.360799] c0 logger: created 256K log 'log_events'
<6>[ 1.360995] c0 logger: created 1024K log 'log_radio'
<6>[ 1.361182] c0 logger: created 256K log 'log_system'
<6>[ 1.361366] c0 logger: created 256K log 'log_sf'
<6>[ 1.361396] c0 sec_getlog_supply_loggerinfo: 0xc0f541c8 0xc11541c8 0xc12541c8 0xc12941c8
<6>[ 1.361780] c0 k3dh_probe: is started.
<3>[ 1.362086] c0 using defualt position
<6>[ 1.362530] c0 k3dh_probe: is successful.
<6>[ 1.363110] c0 input: gyro_sensor as /devices/virtual/input/input4
<6>[ 1.363973] c0 akm8975_probe is called.
<6>[ 1.365484] c0 akm8975_probe: asa_x = 156, asa_y = 156, asa_z = 166
<6>[ 1.365983] c0 Registered sensors device: magnetic_sensor
<6>[ 1.366022] c0 akm8975_probe is successful.
<6>[ 1.372524] c0 mmc0 : 00 : 25 : 20110416 : 0.
<4>[ 1.373858] c0 mmc0: Voltage range not supported for power class.
<3>[ 1.373894] c0 mmc0: power class selection to bus width 8 failed
<4>[ 1.374080] c0 mmc0: Voltage range not supported for power class.
<3>[ 1.374116] c0 mmc0: power class selection to bus width 8 ddr 2 failed
<6>[ 1.374271] c0 mmc0: new high speed DDR MMC card at address 0001
<6>[ 1.374752] c0 mmcblk0: mmc0:0001 VYL00M 14.6 GiB
<4>[ 1.380338] c0 GPT:Primary header thinks Alt. header is not at the end of the disk.
<4>[ 1.380381] c0 GPT:30775295 != 30777343
<4>[ 1.380403] c0 GPT:Alternate GPT header not at the end of the disk.
<4>[ 1.380436] c0 GPT:30775295 != 30777343
<4>[ 1.380457] c0 GPT: Use GNU Parted to correct GPT errors.
<6>[ 1.380584] c0 mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12
<6>[ 1.410367] c0 mmc1: cmd 52 command timeout error
<6>[ 1.410727] c0 mmc1: cmd 52 command timeout error
<6>[ 1.414582] c0 mmc1: cmd 5 command timeout error
<6>[ 1.414925] c0 mmc1: cmd 5 command timeout error
<6>[ 1.415268] c0 mmc1: cmd 5 command timeout error
<6>[ 1.415610] c0 mmc1: cmd 5 command timeout error
<3>[ 1.425327] c1 cm3663_setup_reg: initial proximity value = 2
<6>[ 1.426594] c0 input: proximity_sensor as /devices/virtual/input/input5
<6>[ 1.427247] c0 input: light_sensor as /devices/virtual/input/input6
<6>[ 1.430123] c0 Samsung Audio Subsystem Driver, (c) 2011 Samsung Electronics
<6>[ 1.430238] c0 audss_init: RCLK SRC[busclk]
<6>[ 1.430334] c0 audss_reg_save: SRC[0x1], DIV[0xf11], GATE[0x42]
<7>[ 1.430579] c0 pmu_debug: 0x00000900
<6>[ 1.442052] c0 audss_reg_restore: SRC[0x1], DIV[0xf11], GATE[0x42]
<6>[ 1.442096] c0 audss_clk_enable(1): SRC[0x1], DIV[0xf11], GATE[0x1c7]
<7>[ 1.442134] c0 i2s_txctrl: Turn Off - spr is no active
<6>[ 1.442178] c0 audss_reg_save: SRC[0x1], DIV[0xf11], GATE[0x42]
<6>[ 1.442214] c0 audss_clk_enable(0): SRC[0x1], DIV[0xf11], GATE[0x42]
<6>[ 1.505729] c0 asoc: mc1n2-da0i <-> samsung-i2s.0 mapping ok
<6>[ 1.506800] c0 Samsung SRP driver, (c) 2010 Samsung Electronics
<6>[ 1.515856] c0 SRP: Driver successfully probed
<6>[ 1.516070] c0 ALSA device list:
<6>[ 1.516093] c0 #0: U1-YMU823
<6>[ 1.516234] c0 GACT probability NOT on
<6>[ 1.516263] c0 Mirror/redirect action on
<6>[ 1.516288] c0 u32 classifier
<6>[ 1.516306] c0 Actions configured
<6>[ 1.516330] c0 Netfilter messages via NETLINK v0.30.
<6>[ 1.516420] c0 nf_conntrack version 0.5.0 (12556 buckets, 50224 max)
<6>[ 1.517320] c0 ctnetlink v0.93: registering with nfnetlink.
<6>[ 1.517386] c0 NF_TPROXY: Transparent proxy support initialized, version 4.1.0
<6>[ 1.517423] c0 NF_TPROXY: Copyright (c) 2006-2007 BalaBit IT Ltd.
<6>[ 1.517825] c0 xt_time: kernel timezone is -0000
<6>[ 1.519331] c0 ip_tables: (C) 2000-2006 Netfilter Core Team
<6>[ 1.519527] c0 arp_tables: (C) 2002 David S. Miller
<6>[ 1.519606] c0 TCP cubic registered
<6>[ 1.520861] c0 NET: Registered protocol family 10
<6>[ 1.523537] c0 Mobile IPv6
<6>[ 1.523582] c0 ip6_tables: (C) 2000-2006 Netfilter Core Team
<6>[ 1.523847] c0 IPv6 over IPv4 tunneling driver
<6>[ 1.529467] c0 NET: Registered protocol family 17
<6>[ 1.529518] c0 NET: Registered protocol family 15
<6>[ 1.529682] c0 Bluetooth: RFCOMM TTY layer initialized
<6>[ 1.529725] c0 Bluetooth: RFCOMM socket layer initialized
<6>[ 1.529755] c0 Bluetooth: RFCOMM ver 1.11
<6>[ 1.529780] c0 Bluetooth: BNEP (Ethernet Emulation) ver 1.3
<6>[ 1.529811] c0 Bluetooth: HIDP (Human Interface Emulation) ver 1.2
<6>[ 1.530127] c0 NET: Registered protocol family 35
<5>[ 1.530513] c0 Registering the dns_resolver key type
<6>[ 1.530565] c0 EXYNOS4210: Adaptive Support Voltage init
<6>[ 1.530815] c0 exynos4210_check_vdd_arm: current vdd_arm(1350000uV), set vdd_arm (1.2V)
<6>[ 1.531363] c0 EXYNOS4: HPM value = 17
<6>[ 1.531413] c0 EXYNOS4: IDS value = 16
<6>[ 1.531437] c0 <6>Support 1.2GHz
<6>[ 1.531457] c0 <6>ASV Group for This Exynos4210 is 0x40000003
<6>[ 1.531497] c0 VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 2
<5>[ 1.531557] c0 Registering SWP/SWPB emulation handler
<6>[ 1.531594] c0 DVFS : VDD_ARM Voltage table set with 3 Group
<6>[ 1.531625] c0 max8997_set_arm_voltage_table
<6>[ 1.531658] c0 max8997-pmic max8997-pmic: max8997_set_buck1_voltages: buck1_voltages[1]=1275000, buck1_vol[1]=25
<6>[ 1.531873] c0 max8997-pmic max8997-pmic: max8997_set_buck1_voltages: buck1_voltages[2]=1175000, buck1_vol[2]=21
<6>[ 1.532085] c0 max8997-pmic max8997-pmic: max8997_set_buck1_voltages: buck1_voltages[3]=1075000, buck1_vol[3]=17
<6>[ 1.532279] c0 max8997-pmic max8997-pmic: max8997_set_buck1_voltages: buck1_voltages[4]=975000, buck1_vol[4]=13
<6>[ 1.532482] c0 max8997-pmic max8997-pmic: max8997_set_buck1_voltages: buck1_voltages[5]=950000, buck1_vol[5]=12
<6>[ 1.532676] c0 max8997-pmic max8997-pmic: max8997_set_buck1_dvs_table: enable BUCK1 GPIO DVS
<6>[ 1.533032] c0 DVFS : VDD_INT Voltage table set with 3 Group
<6>[ 1.533416] c0 exynos4_pm_hotplug_device_init: 0
<6>[ 1.533443] c0 EXYNOS4 PM-hotplug init function
<7>[ 1.533773] c0 mif: set_hsic_lpa_states: 279: called(s5p_usb_phy_init+0x130/0x554):
<6>[ 1.533816] c0 s5p-ehci s5p-ehci: usb phy usage(2)
<6>[ 1.533963] c0 s5p-ehci s5p-ehci: S5P EHCI Host Controller
<6>[ 1.534353] c0 s5p-ehci s5p-ehci: new USB bus registered, assigned bus number 1
<6>[ 1.534514] c0 s5p-ehci s5p-ehci: irq 134, io mem 0x12580000
<6>[ 1.540146] c0 s5p-ehci s5p-ehci: USB 0.0 started, EHCI 1.00
<6>[ 1.540244] c0 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
<6>[ 1.540284] c0 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[ 1.540325] c0 usb usb1: Product: S5P EHCI Host Controller
<6>[ 1.540356] c0 usb usb1: Manufacturer: Linux 3.0.64-CM-00263-g66cca25-dirty ehci_hcd
<6>[ 1.540395] c0 usb usb1: SerialNumber: s5p-ehci
<6>[ 1.541026] c0 hub 1-0:1.0: USB hub found
<6>[ 1.541063] c0 hub 1-0:1.0: 3 ports detected
<6>[ 1.541430] c0 CP not ready, Active State low
<6>[ 1.541568] c0 @@@ s5p_tmu_probe: cpufreq_limit: 1st_throttle: 3, 2nd_throttle = 5
<6>[ 1.541607] c0 @@@ get_refresh_interval = 0x2e
<6>[ 1.541632] c0 @@@ get_refresh_interval = 0x5d
<6>[ 1.541665] c0 ** temperature set value **
<6>[ 1.541685] c0 1st throttling stop_temp = 61, start_temp = 64
<6>[ 1.541714] c0 2nd throttling stop_temp = 87, start_tmep = 103
<6>[ 1.541743] c0 tripping temp = 110, s/w emergency temp = 120
<6>[ 1.541773] c0 mem throttling stop_temp = 80, start_temp = 85
<6>[ 1.541921] c0 exynos4210_tmu_init: triminfo = 0x0000004b, low 8bit = 0x4b, high 24 bit = 0x000000
<6>[ 1.541975] c0 THD_TEMP:0x6f: TRIG_LEV0: 0x03
<6>[ 1.541997] c0 TRIG_LEV1: 0x2a TRIG_LEV2: 0x31, TRIG_LEV3: 0xff
<6>[ 1.546173] c0 mmc1: new high speed SDHC card at address 0007
<6>[ 1.546559] c0 mmcblk1: mmc1:0007 SD16G 14.4 GiB
<6>[ 1.548043] c0 mmcblk1: p1
<6>[ 1.594966] c0 [MODEM_IF] init_modem
<3>[ 1.595002] c0 check phone active = 94
<6>[ 1.595053] c0 umts_modem_cfg_gpio done
<6>[ 1.595086] c0 modem_link_pm_config_gpio done
<3>[ 1.595371] c0 mif: modem_probe: modem_if
<6>[ 1.596330] c0 mif: phone_active_irq_handler: PA EVENT : reset =0, pa=0, cp_dump=0
<6>[ 1.596527] c0 wake enabled for irq 366
<6>[ 1.596552] c0 mif: create_modemctl_device: xmm6260 is created!!!
<6>[ 1.597042] c0 wake enabled for irq 361
<6>[ 1.597342] c0 usbcore: registered new interface driver cdc_modem
<6>[ 1.597389] c0 mif: if_usb_init: if_usb_init() done : 0, usb_ld (0xe43f6400)
<6>[ 1.597426] c0 mif: hsic_create_link_device: usb : create_link_device DONE
<3>[ 1.597462] c0 mif: modem_probe: link created: usb
<6>[ 1.597935] c0 mif: create_io_device: Bood device = umts_boot0
<6>[ 1.608815] c0 mif: modem_probe: Complete!!!
<4>[ 1.610803] c0 regulator_init_complete: safeout1 range: incomplete constraints, leaving on
<6>[ 1.612387] c0 OTG s5pc110_otg_module_init(380): s3c_otg_module_init
<6>[ 1.612572] c0 otg host_probe start c08c584c
<7>[ 1.612784] c0 [TouchKey] i2c_touchkey_probe
<6>[ 1.613082] c0 input: sec_touchkey as /devices/platform/i2c-gpio.8/i2c-8/8-0020/input/input7
<6>[ 1.613344] c0 s5p_gpioint_set_type irq:389 is at GPL0(5)
<6>[ 1.665852] c0 s5p_gpioint_set_type irq:389 is at GPL0(5)
<6>[ 1.667268] c0 max8997-rtc max8997-rtc: setting system clock to 2014-12-20 13:25:15 UTC (1419081915)
<6>[ 1.667407] c0 ctrl->mem.size = 0x500000
<6>[ 1.667430] c0 ctrl->mem.base = 0x70f3c000
<6>[ 1.667547] c0
<6>[ 1.667558] c0
<6>[ 1.667569] c0
<6>[ 1.667580] c0 cam_cfg_gpio: pdev->id=0
<6>[ 1.667907] c0 FIMC0 registered successfully
<6>[ 1.668042] c0 ctrl->mem.size = 0x0
<6>[ 1.668064] c0 ctrl->mem.base = 0xffffffea
<6>[ 1.668368] c0 FIMC1 registered successfully
<6>[ 1.668502] c0 ctrl->mem.size = 0x1900000
<6>[ 1.668525] c0 ctrl->mem.base = 0x6f63c000
<6>[ 1.668822] c0 FIMC2 registered successfully
<6>[ 1.668959] c0 ctrl->mem.size = 0x700000
<6>[ 1.668983] c0 ctrl->mem.base = 0x6ef3c000
<6>[ 1.669271] c0 FIMC3 registered successfully
<6>[ 1.669538] c0 S5P TVOUT Driver v3.0 (c) 2010 Samsung Electronics
<6>[ 1.692819] c0 sec-battery sec-battery: sec_bat_probe: SEC Battery Driver Loading
<6>[ 1.692863] c0 sec-battery sec-battery: sec_bat_probe: use sub-charger (max8922-charger)
<6>[ 1.693344] c0 sec_bat_get_lpcharging_state: LP charging:0
<6>[ 1.694592] c0 sec-battery sec-battery: sec_bat_probe: SEC Battery Driver Loaded
<6>[ 1.694751] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 1.694802] c0 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 1.695358] c0 sec-battery sec-battery: sec_bat_check_temper: temp=260, adc=962
<6>[ 1.695407] c0 sec-battery sec-battery: sec_bat_charging_time_management: charging_start_time has never been used since initializing
<6>[ 1.695469] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x1
<6>[ 1.695517] c0 sec-battery sec-battery: soc(99), vfocv(4148), vcell(4183), temp(26), charging(1), health(1), chg_adc(0)
<4>[ 1.697108] c0 Warning: unable to open an initial console.
<6>[ 1.698206] c0 Freeing init memory: 6224K
<7>[ 1.754285] c0 SELinux: 1024 avtab hash slots, 2855 rules.
<7>[ 1.755838] c0 SELinux: 1024 avtab hash slots, 2855 rules.
<7>[ 1.755888] c0 SELinux: 1 users, 2 roles, 296 types, 1 bools, 1 sens, 1024 cats
<7>[ 1.755931] c0 SELinux: 84 classes, 2855 rules
<7>[ 1.757077] c0 SELinux: Completing initialization.
<7>[ 1.757105] c0 SELinux: Setting up existing superblocks.
<7>[ 1.757153] c0 SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
<7>[ 1.757204] c0 SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
<7>[ 1.757306] c0 SELinux: initialized (dev bdev, type bdev), not configured for labeling
<7>[ 1.757355] c0 SELinux: initialized (dev proc, type proc), uses genfs_contexts
<7>[ 1.757421] c0 SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
<7>[ 1.757479] c0 SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
<7>[ 1.757958] c0 SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
<7>[ 1.758006] c0 SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
<7>[ 1.758049] c0 SELinux: initialized (dev anon_inodefs, type anon_inodefs), not configured for labeling
<7>[ 1.758105] c0 SELinux: initialized (dev devpts, type devpts), uses transition SIDs
<7>[ 1.758161] c0 SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
<7>[ 1.758275] c0 SELinux: initialized (dev usbfs, type usbfs), not configured for labeling
<7>[ 1.758324] c0 SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
<7>[ 1.758390] c0 SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
<5>[ 1.840913] c0 type=1403 audit(1419081915.670:2): policy loaded auid=4294967295 ses=4294967295
<4>[ 1.841133] c0 SELinux: Loaded policy from /sepolicy
<4>[ 1.845720] c0 SELinux: Loaded file_contexts from /file_contexts
<5>[ 1.846293] c0 type=1404 audit(1419081915.675:3): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
<6>[ 2.590133] c0 notify_change_of_tmu_state: uevent: 0, name = TMUSTATE=0
<6>[ 2.590760] c0 exynos4_handler_tmu_state: inform to init state to platform.
<6>[ 2.690339] c0 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 2.690953] c0 sec-battery sec-battery: sec_bat_check_temper: temp=250, adc=969
<6>[ 2.691044] c0 sec-battery sec-battery: sec_bat_charging_time_management: charging_start_time has never been used since initializing
<6>[ 2.691181] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x1
<6>[ 2.691275] c0 sec-battery sec-battery: soc(99), vfocv(4148), vcell(4183), temp(25), charging(1), health(1), chg_adc(0)
<6>[ 3.213075] c0 sec_bat_get_lpcharging_state: LP charging:0
<3>[ 3.214408] c0 init: /init.smdk4210.rc: 70: invalid command 'socket'
<3>[ 3.214820] c0 init: /init.smdk4210.rc: 342: ignored duplicate definition of service 'mdnsd'
<3>[ 3.215230] c0 init: could not import file 'init.gps.rc' from '/init.smdk4210.rc'
<3>[ 3.215360] c0 init: could not import file '/init.carrier.rc' from '/init.rc'
<4>[ 3.215801] c0 init (1): /proc/1/oom_adj is deprecated, please use /proc/1/oom_score_adj instead.
<3>[ 3.216936] c0 init: do_chown: Could not access /selinux/booleans
<6>[ 3.295487] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x1
<3>[ 3.419956] c0 init: /dev/hw_random not found
<6>[ 3.420097] c0 keychord: using input dev max8997-muic for fevent
<6>[ 3.420132] c0 keychord: using input dev gpio-keys for fevent
<6>[ 3.420172] c0 keychord: using input dev sii9234_rcp for fevent
<3>[ 3.420375] c0 init: cannot open '/initlogo.rle'
<7>[ 3.440395] c0 SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
<7>[ 3.440985] c0 SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
<7>[ 3.443271] c0 SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
<7>[ 3.443546] c0 SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
<7>[ 3.443805] c0 SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
<7>[ 3.480157] c0 SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
<3>[ 3.483524] c0 init: using deprecated syntax for specifying property 'ro.serialno', use ${name} instead
<6>[ 3.492596] c1 EXT4-fs (mmcblk0p9): mounted filesystem with ordered data mode. Opts: (null)
<7>[ 3.492730] c1 SELinux: initialized (dev mmcblk0p9, type ext4), uses xattr
<6>[ 3.517536] c1 EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opts: nomblk_io_submit,errors=remount-ro
<7>[ 3.517672] c1 SELinux: initialized (dev mmcblk0p7, type ext4), uses xattr
<6>[ 3.630103] c0 notify_change_of_tmu_state: uevent: 0, name = TMUSTATE=0
<6>[ 3.630666] c0 normal: free cpufreq_limit & interrupt enable.
<6>[ 3.665304] c1 fs_mgr: Running /system/bin/e2fsck on /dev/block/mmcblk0p7
<6>[ 3.692373] c0 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 3.693471] c0 sec-battery sec-battery: sec_bat_check_temper: temp=260, adc=965
<6>[ 3.693731] c0 sec-battery sec-battery: sec_bat_charging_time_management: charging_start_time has never been used since initializing
<6>[ 3.694032] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x1
<6>[ 3.694264] c0 sec-battery sec-battery: soc(99), vfocv(4148), vcell(4183), temp(26), charging(1), health(1), chg_adc(0)
<6>[ 3.699565] c1 MFC F/W loaded successfully (size: 376448)
<6>[ 3.720354] c0 max8997-muic max8997-muic: max8997_muic_init_detect
<6>[ 3.720919] c0 max8997-muic max8997-muic: detect_dev: STATUS1:0x3f, 2:0x41
<6>[ 3.721023] c0 max8997-muic max8997-muic: detect_dev: ATTACHED
<6>[ 3.721123] c0 max8997-muic max8997-muic: attach_usb
<6>[ 3.721207] c0 max8997-muic max8997-muic: attach_charger: chg_type(0x1)
<3>[ 3.721314] c0 [TSP] mxt224_ta_probe
<3>[ 3.722768] c0 [TSP]TA_probe MXT224 T9 Byte7 is 70
<6>[ 3.723120] c0 sec-battery sec-battery: sec_bat_set_property: cable was changed(3)
<6>[ 3.723358] c0 max8997-charger max8997-charger: max8997_disable_charging: disable charging
<6>[ 3.723870] c0 max8997-muic max8997-muic: switch_to_ap_usb
<6>[ 3.723969] c0 max8997-muic max8997-muic: set_accdet(en) cntl2(0x20)
<6>[ 3.726771] c0 max8922-charger max8922-charger: max8922_enable_charging: enable charging,USB
<6>[ 3.764687] c1 e2fsck: e2fsck 1.41.14 (22-Dec-2010)
<6>[ 3.764896] c1 e2fsck: /dev/block/mmcblk0p7: clean, 27/6400 files, 2814/25600 blocks
<6>[ 3.780395] c1 EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opts: journal_async_commit,errors=panic
<7>[ 3.780579] c1 SELinux: initialized (dev mmcblk0p7, type ext4), uses xattr
<6>[ 3.808696] c1 EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: nomblk_io_submit,errors=remount-ro
<7>[ 3.808864] c1 SELinux: initialized (dev mmcblk0p1, type ext4), uses xattr
<6>[ 3.835237] c1 fs_mgr: Running /system/bin/e2fsck on /dev/block/mmcblk0p1
<6>[ 3.873353] c1 e2fsck: e2fsck 1.41.14 (22-Dec-2010)
<6>[ 3.873547] c1 e2fsck: /dev/block/mmcblk0p1: clean, 67/1280 files, 2195/5120 blocks
<6>[ 3.893675] c1 EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: journal_async_commit,errors=panic
<7>[ 3.893907] c1 SELinux: initialized (dev mmcblk0p1, type ext4), uses xattr
<7>[ 3.914979] c1 EXT4-fs (mmcblk0p10): ext4_orphan_cleanup: deleting unreferenced inode 703
<7>[ 3.917372] c1 EXT4-fs (mmcblk0p10): ext4_orphan_cleanup: deleting unreferenced inode 702
<7>[ 3.926259] c1 EXT4-fs (mmcblk0p10): ext4_orphan_cleanup: deleting unreferenced inode 116688
<7>[ 3.932496] c1 EXT4-fs (mmcblk0p10): ext4_orphan_cleanup: deleting unreferenced inode 115556
<6>[ 3.934096] c1 EXT4-fs (mmcblk0p10): 4 orphan inodes deleted
<6>[ 3.934211] c1 EXT4-fs (mmcblk0p10): recovery complete
<6>[ 4.030156] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x0
<6>[ 4.334037] c1 EXT4-fs (mmcblk0p10): mounted filesystem with ordered data mode. Opts: nomblk_io_submit,errors=remount-ro
<7>[ 4.334295] c1 SELinux: initialized (dev mmcblk0p10, type ext4), uses xattr
<6>[ 4.355268] c0 fs_mgr: Running /system/bin/e2fsck on /dev/block/mmcblk0p10
<6>[ 4.396241] c0 e2fsck: e2fsck 1.41.14 (22-Dec-2010)
<6>[ 4.396446] c0 e2fsck: /dev/block/mmcblk0p10: clean, 9895/131072 files, 325492/524288 blocks
<6>[ 4.410650] c0 EXT4-fs (mmcblk0p10): mounted filesystem with ordered data mode. Opts: discard,noauto_da_alloc,journal_async_commit,errors=panic
<7>[ 4.410923] c0 SELinux: initialized (dev mmcblk0p10, type ext4), uses xattr
<6>[ 4.440293] c0 EXT4-fs (mmcblk0p12): mounted filesystem with ordered data mode. Opts: journal_async_commit
<7>[ 4.440492] c0 SELinux: initialized (dev mmcblk0p12, type ext4), uses xattr
<7>[ 4.591313] c0 SELinux: 1024 avtab hash slots, 2855 rules.
<7>[ 4.597290] c0 SELinux: 1024 avtab hash slots, 2855 rules.
<7>[ 4.597443] c0 SELinux: 1 users, 2 roles, 296 types, 1 bools, 1 sens, 1024 cats
<7>[ 4.597593] c0 SELinux: 84 classes, 2855 rules
<6>[ 4.690850] c0 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 4.691764] c0 sec-battery sec-battery: sec_bat_check_temper: temp=260, adc=961
<6>[ 4.691943] c0 sec-battery sec-battery: Time past : 0 secs
<6>[ 4.692076] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x0
<6>[ 4.692249] c0 sec-battery sec-battery: soc(99), vfocv(4148), vcell(4183), temp(26), charging(1), health(1), chg_adc(0)
<5>[ 4.794895] c0 type=1403 audit(1419081918.615:4): policy loaded auid=4294967295 ses=4294967295
<4>[ 4.795850] c0 SELinux: Loaded policy from /sepolicy
<4>[ 4.816583] c0 SELinux: Loaded file_contexts from /file_contexts
<4>[ 4.820765] c0 SELinux: Skipping restorecon_recursive(/data)
<4>[ 4.844574] c1 i2c-core: driver [Si4709] using legacy suspend method
<4>[ 4.844672] c1 i2c-core: driver [Si4709] using legacy resume method
<6>[ 4.890234] c1 mdnie mdnie: scenario_store :: value=0
<6>[ 4.890344] c1 mdnie mdnie: mode=1, scenario=0, outdoor=0, cabc=0, CYANOGENMOD
<6>[ 4.890716] c1 mdnie mdnie: mode_store :: value=1
<6>[ 4.890812] c1 mdnie mdnie: mode=1, scenario=0, outdoor=0, cabc=0, CYANOGENMOD
<3>[ 4.908685] c1 init: /dev/hw_random not found
<3>[ 5.013297] c1 healthd: wakealarm_init: timerfd_create failed
<3>[ 5.032670] c1 init: using deprecated syntax for specifying property 'ro.manufacturer', use ${name} instead
<3>[ 5.032739] c1 init: property 'ro.manufacturer' doesn't exist while expanding '$ro.manufacturer'
<3>[ 5.032794] c1 init: cannot expand '$ro.manufacturer' while writing to '/sys/class/android_usb/android0/iManufacturer'
<3>[ 5.032865] c1 init: using deprecated syntax for specifying property 'ro.model', use ${name} instead
<3>[ 5.032932] c1 init: property 'ro.model' doesn't exist while expanding '$ro.model'
<3>[ 5.032985] c1 init: cannot expand '$ro.model' while writing to '/sys/class/android_usb/android0/iProduct'
<3>[ 5.033045] c1 init: using deprecated syntax for specifying property 'ro.serialno', use ${name} instead
<3>[ 5.039444] c1 init: service 'console' requires console
<3>[ 5.041844] c1 cbd: /check_debug_level: debug level=1, cp_debug=0
<6>[ 5.042156] c1 warning: `cbd' uses 32-bit capabilities (legacy support in use)
<3>[ 5.042227] c1 cbd: /main: Modem type = 1
<3>[ 5.042261] c1 cbd: /main: Boot link = 4
<3>[ 5.042292] c1 cbd: /main: Main link = 4
<3>[ 5.042404] c1 mif: misc_open: iod = umts_boot0
<6>[ 5.042437] c1 mif: usb_init_communication: 1865:cbd
<7>[ 5.045684] c1 usb: enable_store enabled=0, !dev->enabled=1
<7>[ 5.045723] c1 usb: usb_gadget_disconnect
<3>[ 5.045913] c1 init: using deprecated syntax for specifying property 'sys.usb.config', use ${name} instead
<7>[ 5.046022] c1 usb: functions_store buff=mass_storage,adb
<7>[ 5.046061] c1 usb: android_enable_function name=mass_storage
<7>[ 5.046102] c1 usb: android_enable_function name=adb
<7>[ 5.046207] c1 usb: enable_store enabled=1, !dev->enabled=1
<7>[ 5.046258] c1 usb: enable_store vendor=4e8,product=685e,bcdDevice=226
<7>[ 5.046298] c1 ,Class=0,SubClass=0,Protocol=0
<7>[ 5.046328] c1 usb: enable_store next cmd : usb_add_config
<3>[ 5.046961] c1 init: using deprecated syntax for specifying property 'sys.usb.config', use ${name} instead
<6>[ 5.051129] c1 adb_open
<7>[ 5.051160] c1 usb: android_bind_enabled_functions f:mass_storage
<7>[ 5.051212] c1 usb: android_bind_enabled_functions f:adb
<6>[ 5.051248] c1 adb_bind_config
<7>[ 5.051286] c1 usb: usb_gadget_connect
<7>[ 5.060531] c1 store_ehci_power: EHCI turns off
<6>[ 5.060567] c1 s5p-ehci s5p-ehci: remove, state 4
<6>[ 5.060630] c1 usb usb1: USB disconnect, device number 1 by usb_remove_hcd+0x9c/0x148
<6>[ 5.092762] c1 s5p-ehci s5p-ehci: USB bus 1 deregistered
<6>[ 5.115644] c1 CP not ready, Active State low
<6>[ 5.165785] c1 mif: xmm6260_on: xmm6260_on()
<4>[ 5.416706] c0 Mali: mem_usage before 1859 : 8388608
<6>[ 5.478491] c0 s3cfb s3cfb.0: [fb0] Alloc dma: 0x7172a000, size: 0x002ee000
<6>[ 5.478558] c0 s3cfb s3cfb.0: [fb1] Alloc dma: 0x71a18000, size: 0x002ee000
<4>[ 5.478645] c0 s3c-fimc1: FIMC1 1 opened.
<6>[ 5.690209] c0 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 5.690717] c0 sec-battery sec-battery: sec_bat_check_temper: temp=260, adc=950
<6>[ 5.690760] c0 sec-battery sec-battery: Time past : 1 secs
<6>[ 5.690793] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x0
<6>[ 5.690835] c0 sec-battery sec-battery: soc(99), vfocv(4148), vcell(4183), temp(26), charging(1), health(1), chg_adc(0)
<6>[ 5.692012] c0 healthd: battery l=99 v=4183 t=26.0 h=2 st=2 c=0 chg=u
<7>[ 5.720539] c0 store_ehci_power: EHCI turns on
<7>[ 5.720587] c0 mif: set_hsic_lpa_states: 279: called(s5p_usb_phy_init+0x130/0x554):
<6>[ 5.720623] c0 [MODEM_IF]Slave Wake
<6>[ 5.720647] c0 mif: set hsic lpa phy init: slave wake-up (1)
<6>[ 5.720679] c0 s5p-ehci s5p-ehci: usb phy usage(2)
<6>[ 5.720843] c0 s5p-ehci s5p-ehci: S5P EHCI Host Controller
<7>[ 5.720929] c0 SELinux: initialized (dev usbfs, type usbfs), not configured for labeling
<6>[ 5.721491] c1 s5p-ehci s5p-ehci: new USB bus registered, assigned bus number 1
<6>[ 5.721666] c1 s5p-ehci s5p-ehci: irq 134, io mem 0x12580000
<6>[ 5.730113] c1 s5p-ehci s5p-ehci: USB 0.0 started, EHCI 1.00
<6>[ 5.730218] c1 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
<6>[ 5.730257] c1 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[ 5.730298] c1 usb usb1: Product: S5P EHCI Host Controller
<6>[ 5.730330] c1 usb usb1: Manufacturer: Linux 3.0.64-CM-00263-g66cca25-dirty ehci_hcd
<6>[ 5.730370] c1 usb usb1: SerialNumber: s5p-ehci
<6>[ 5.738881] c0 hub 1-0:1.0: USB hub found
<6>[ 5.738917] c0 hub 1-0:1.0: 3 ports detected
<3>[ 5.742461] c0 [MODEM_IF]Active States =1, s5p-ehci
<6>[ 5.742517] c0 mif: link_pm_ioctl: 6f33
<3>[ 5.742554] c0 cbd: /hsic_xmit_boot: check [BOOTROM] link connected = [0]
<3>[ 5.767710] c0 mif: misc_open: iod = umts_boot0
<6>[ 5.767738] c0 mif: usb_init_communication: 1858:rild
<4>[ 5.771735] c0 Mali: mem_usage before 1958 : 8650752
<6>[ 5.858883] c0 mc1n2 6-003a: write 0 = 4b
<6>[ 5.859686] c0 mc1n2 6-003a: write 0 = 4b4b
<6>[ 5.860341] c0 mc1n2 6-003a: write 0 = 4bcb
<6>[ 5.861184] c0 mc1n2 6-003a: write 0 = cbcb
<6>[ 5.861949] c0 mc1n2 6-003a: write 1 = 4b
<6>[ 5.862745] c0 mc1n2 6-003a: write 1 = 4b4b
<6>[ 5.863618] c0 mc1n2 6-003a: write 1 = 4bcb
<6>[ 5.864537] c0 mc1n2 6-003a: write 1 = cbcb
<6>[ 5.865149] c0 mc1n2 6-003a: write 3 = 4b
<6>[ 5.865694] c0 mc1n2 6-003a: write 3 = 4b4b
<6>[ 5.866245] c0 mc1n2 6-003a: write 3 = 4bcb
<6>[ 5.867005] c0 mc1n2 6-003a: write 3 = cbcb
<6>[ 5.867641] c0 mc1n2 6-003a: write 4 = 4b
<6>[ 5.868291] c0 mc1n2 6-003a: write 4 = 4b4b
<6>[ 5.868851] c0 mc1n2 6-003a: write 4 = 4bcb
<6>[ 5.869538] c0 mc1n2 6-003a: write 4 = cbcb
<6>[ 5.870309] c0 mc1n2 6-003a: write 5 = 4b
<6>[ 5.871002] c0 mc1n2 6-003a: write 5 = 4b4b
<6>[ 5.871844] c0 mc1n2 6-003a: write 5 = 4bcb
<6>[ 5.872660] c0 mc1n2 6-003a: write 5 = cbcb
<6>[ 5.873398] c0 mc1n2 6-003a: write 7 = 4b
<6>[ 5.874170] c0 mc1n2 6-003a: write 7 = 4b4b
<6>[ 5.874788] c0 mc1n2 6-003a: write 7 = 4bcb
<6>[ 5.875544] c0 mc1n2 6-003a: write 7 = cbcb
<6>[ 5.876161] c0 mc1n2 6-003a: write 8 = 4b
<6>[ 5.876812] c0 mc1n2 6-003a: write 8 = 4b4b
<6>[ 5.877409] c0 mc1n2 6-003a: write 8 = 4bcb
<6>[ 5.878010] c0 mc1n2 6-003a: write 8 = cbcb
<6>[ 5.878640] c0 mc1n2 6-003a: write 9 = 4b
<6>[ 5.879222] c0 mc1n2 6-003a: write 9 = 4b4b
<6>[ 5.879835] c0 mc1n2 6-003a: write 9 = 4bcb
<6>[ 5.880613] c0 mc1n2 6-003a: write 9 = cbcb
<6>[ 5.881307] c0 mc1n2 6-003a: write b = 4b
<6>[ 5.882105] c0 mc1n2 6-003a: write b = 4b4b
<6>[ 5.882816] c0 mc1n2 6-003a: write b = 4bcb
<6>[ 5.883604] c0 mc1n2 6-003a: write b = cbcb
<6>[ 5.884364] c0 mc1n2 6-003a: write d = 4b
<6>[ 5.884972] c0 mc1n2 6-003a: write d = 4b4b
<6>[ 5.885611] c0 mc1n2 6-003a: write d = 4bcb
<6>[ 5.886490] c0 mc1n2 6-003a: write d = cbcb
<6>[ 5.887095] c0 mc1n2 6-003a: write e = 4b
<6>[ 5.887701] c0 mc1n2 6-003a: write e = 4b4b
<6>[ 5.888285] c0 mc1n2 6-003a: write e = 4bcb
<6>[ 5.889546] c0 mc1n2 6-003a: write e = cbcb
<6>[ 5.890138] c0 mc1n2 6-003a: write f = 4b
<6>[ 5.890702] c0 mc1n2 6-003a: write f = 4b4b
<6>[ 5.891281] c0 mc1n2 6-003a: write f = 4bcb
<6>[ 5.892108] c0 mc1n2 6-003a: write f = cbcb
<6>[ 5.893075] c0 mc1n2 6-003a: write 10 = 4b
<6>[ 5.893649] c0 mc1n2 6-003a: write 10 = 4b4b
<6>[ 5.894265] c0 mc1n2 6-003a: write 10 = 4bcb
<6>[ 5.894857] c0 mc1n2 6-003a: write 10 = cbcb
<6>[ 5.895978] c0 mc1n2 6-003a: write 11 = 13
<6>[ 5.896987] c0 mc1n2 6-003a: write 11 = 1313
<6>[ 5.897631] c0 mc1n2 6-003a: write 11 = 1393
<6>[ 5.898219] c0 mc1n2 6-003a: write 11 = 9393
<6>[ 5.899870] c0 mc1n2 6-003a: write 17 = 1a
<6>[ 5.900799] c0 mc1n2 6-003a: write 17 = 1a1a
<6>[ 5.901363] c0 mc1n2 6-003a: write 17 = 1a9a
<6>[ 5.901912] c0 mc1n2 6-003a: write 17 = 9a9a
<6>[ 5.902968] c0 audss_reg_restore: SRC[0x1], DIV[0xf11], GATE[0x42]
<6>[ 5.903005] c0 audss_clk_enable(1): SRC[0x1], DIV[0xf11], GATE[0x1c7]
<4>[ 5.909512] c0 Mali: = regulator_set_voltage: 900000, 900000
<4>[ 5.910475] c0 Mali: Mali frequency 200
<6>[ 5.915346] c0 G:P:DmaAddr=@64640000 Total=16384 PrdSz=4096 #Prds=4 dma_area=0xffdc0000
<6>[ 5.915478] c0 audss_reg_save: SRC[0x1], DIV[0xf11], GATE[0x42]
<6>[ 5.915511] c0 audss_clk_enable(0): SRC[0x1], DIV[0xf11], GATE[0x42]
<6>[ 6.045210] c1 usb 1-2: new high speed USB device number 2 using s5p-ehci
<4>[ 6.196638] c1 usb 1-2: config 1 interface 0 altsetting 0 endpoint 0x81 has an invalid bInterval 255, changing to 11
<6>[ 6.196693] c1 usb 1-2: New USB device found, idVendor=058b, idProduct=0041
<6>[ 6.196729] c1 usb 1-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
<6>[ 6.216244] c1 mif: if_usb_probe: usbdev = 0xe43a2800
<6>[ 6.216279] c1 mif: if_usb_set_pipe: set 0
<6>[ 6.216303] c1 mif: if_usb_probe: devdata usbdev = 0xe43a2800
<6>[ 6.216372] c1 mif: if_usb_probe: successfully done
<6>[ 6.242715] c0 mif: link_pm_ioctl: 6f33
<3>[ 6.242889] c0 cbd: /hsic_xmit_boot: check [BOOTROM] link connected = [1]
<6>[ 6.347523] c1 mif: link_pm_ioctl: 6f33
<4>[ 6.410218] c0 Mali: Mali frequency 133
<4>[ 6.410254] c0 Mali: = regulator_set_voltage: 950000, 950000
<3>[ 9.707667] c1 hub 1-0:1.0: port 2 disabled by hub (EMI?), re-enabling...
<6>[ 9.707738] c1 usb 1-2: USB disconnect, device number 2 by hub_thread+0x564/0x1294
<6>[ 9.707883] c1 mif: if_usb_disconnect:
<6>[ 9.708026] c1 mif: if_usb_disconnect: put dev 0xe43a2800
<6>[ 9.708713] c1 mif: if_usb_disconnect:
<6>[ 9.731682] c0 mif: phone_active_irq_handler: PA EVENT : reset =1, pa=1, cp_dump=0
<3>[ 9.731732] c0 mif: io_dev_modem_state_changed: modem state changed. (iod: umts_ipc0, state: 3)
<3>[ 9.731785] c0 mif: io_dev_modem_state_changed: modem state changed. (iod: umts_boot0, state: 3)
<6>[ 9.731850] c0 mif: phone_active_irq_handler: PA EVENT : reset =1, pa=1, cp_dump=0
<3>[ 9.731894] c0 mif: io_dev_modem_state_changed: modem state changed. (iod: umts_ipc0, state: 3)
<3>[ 9.731945] c0 mif: io_dev_modem_state_changed: modem state changed. (iod: umts_boot0, state: 3)
<6>[ 9.936280] c0 mif: link_pm_ioctl: 6f32
<6>[ 9.936310] c0 mif: link_pm_ioctl: 6f32
<6>[ 9.936336] c0 mif: link_pm_ioctl: 6f30
<7>[ 9.936477] c0 store_ehci_power: EHCI turns off
<6>[ 9.936504] c0 s5p-ehci s5p-ehci: remove, state 1
<6>[ 9.936559] c0 usb usb1: USB disconnect, device number 1 by usb_remove_hcd+0x9c/0x148
<6>[ 9.940078] c1 usb 1-2: new high speed USB device number 3 using s5p-ehci
<3>[ 9.940150] c1 hub 1-0:1.0: cannot reset port 2 (err = -19)
<3>[ 9.940183] c1 hub 1-0:1.0: cannot disable port 2 (err = -19)
<3>[ 9.940234] c1 hub 1-0:1.0: cannot reset port 2 (err = -19)
<3>[ 9.940264] c1 hub 1-0:1.0: cannot disable port 2 (err = -19)
<3>[ 9.940299] c1 hub 1-0:1.0: cannot reset port 2 (err = -19)
<3>[ 9.940329] c1 hub 1-0:1.0: cannot disable port 2 (err = -19)
<3>[ 9.940363] c1 hub 1-0:1.0: cannot reset port 2 (err = -19)
<3>[ 9.940392] c1 hub 1-0:1.0: cannot disable port 2 (err = -19)
<3>[ 9.940422] c1 hub 1-0:1.0: unable to enumerate USB device on port 2
<3>[ 9.940453] c1 hub 1-0:1.0: cannot disable port 2 (err = -19)
<6>[ 9.972827] c0 s5p-ehci s5p-ehci: USB bus 1 deregistered
<3>[ 9.995470] c1 [MODEM_IF]Active States =0, s5p-ehci
<6>[ 10.045661] c1 mif: link_pm_ioctl: 6f31
<6>[ 10.045739] c1 mif: link_pm_ioctl: 6f32
<6>[ 10.454831] c0 wake enabled for irq 354
<6>[ 10.458199] c0 input: compass_sensor as /devices/virtual/input/input8
<6>[ 10.459281] c0 k3dh_open: is called.
<6>[ 10.516175] c0 wake disabled for irq 354
<6>[ 10.545996] c1 mif: link_pm_ioctl: 6f32
<6>[ 10.546078] c1 mif: link_pm_ioctl: 6f30
<7>[ 10.546424] c1 store_ehci_power: EHCI turns on
<7>[ 10.546544] c1 mif: set_hsic_lpa_states: 279: called(s5p_usb_phy_init+0x130/0x554):
<6>[ 10.546650] c1 mif: set hsic lpa phy init: slave wake-up (1)
<6>[ 10.546736] c1 s5p-ehci s5p-ehci: usb phy usage(2)
<6>[ 10.547037] c1 s5p-ehci s5p-ehci: S5P EHCI Host Controller
<7>[ 10.547288] c1 SELinux: initialized (dev usbfs, type usbfs), not configured for labeling
<6>[ 10.548929] c1 s5p-ehci s5p-ehci: new USB bus registered, assigned bus number 1
<6>[ 10.549299] c1 s5p-ehci s5p-ehci: irq 134, io mem 0x12580000
<6>[ 10.555442] c1 s5p-ehci s5p-ehci: USB 0.0 started, EHCI 1.00
<6>[ 10.555674] c1 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
<6>[ 10.555774] c1 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
<6>[ 10.555876] c1 usb usb1: Product: S5P EHCI Host Controller
<6>[ 10.555952] c1 usb usb1: Manufacturer: Linux 3.0.64-CM-00263-g66cca25-dirty ehci_hcd
<6>[ 10.556053] c1 usb usb1: SerialNumber: s5p-ehci
<6>[ 10.557864] c0 hub 1-0:1.0: USB hub found
<6>[ 10.557984] c0 hub 1-0:1.0: 3 ports detected
<3>[ 10.558922] c0 [MODEM_IF]Active States =1, s5p-ehci
<6>[ 10.559046] c0 mif: link_pm_ioctl: 6f31
<6>[ 10.559121] c0 mif: link_pm_ioctl: 6f33
<6>[ 10.865217] c1 usb 1-2: new high speed USB device number 2 using s5p-ehci
<6>[ 11.005956] c1 usb 1-2: New USB device found, idVendor=1519, idProduct=0020
<6>[ 11.006046] c1 usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
<6>[ 11.006134] c1 usb 1-2: Product: HSIC Device
<6>[ 11.006188] c1 usb 1-2: Manufacturer: Comneon
<6>[ 11.006243] c1 usb 1-2: SerialNumber: 0123456789
<6>[ 11.023138] c1 mif: if_usb_probe: usbdev = 0xe4388000
<6>[ 11.023171] c1 mif: if_usb_set_pipe: set 0
<6>[ 11.023198] c1 mif: if_usb_probe: devdata usbdev = 0xe4388000
<6>[ 11.023290] c1 mif: if_usb_probe: successfully done
<6>[ 11.025175] c1 mif: if_usb_probe: usbdev = 0xe4388000
<6>[ 11.025207] c1 mif: if_usb_set_pipe: set 1
<6>[ 11.025233] c1 mif: if_usb_probe: devdata usbdev = 0xe4388000
<6>[ 11.025312] c1 mif: if_usb_probe: successfully done
<6>[ 11.026881] c1 mif: if_usb_probe: usbdev = 0xe4388000
<6>[ 11.026914] c1 mif: if_usb_set_pipe: set 2
<6>[ 11.026939] c1 mif: if_usb_probe: devdata usbdev = 0xe4388000
<6>[ 11.027016] c1 mif: if_usb_probe: successfully done
<6>[ 11.028998] c1 mif: if_usb_probe: usbdev = 0xe4388000
<6>[ 11.029031] c1 mif: if_usb_set_pipe: set 3
<6>[ 11.029056] c1 mif: if_usb_probe: devdata usbdev = 0xe4388000
<3>[ 11.029153] c1 mif: link_pm_change_modem_state: set modem state 4 by if_usb_probe+0x38c/0x480
<3>[ 11.029198] c1 mif: io_dev_modem_state_changed: modem state changed. (iod: umts_ipc0, state: 4)
<3>[ 11.029242] c1 mif: io_dev_modem_state_changed: modem state changed. (iod: umts_boot0, state: 4)
<6>[ 11.029285] c1 mif: if_usb_probe: successfully done
<6>[ 11.059355] c0 mif: link_pm_ioctl: 6f33
<3>[ 11.059419] c0 mif: misc_release: iod = umts_boot0
<3>[ 11.067858] c0 cbd: /main: Boot up process done!!!
<3>[ 11.067903] c0 cbd: /status_loop: CP status_loop start (modem = 1)
<3>[ 11.067978] c0 mif: misc_open: iod = umts_boot0
<6>[ 11.068009] c0 mif: usb_init_communication: 1865:cbd
<3>[ 11.069265] c0 cbd: /status_loop: Wait event from modem 1
<6>[ 11.242409] c0 max17042 9-0036: max17042_get_soc : soc(6182)
<6>[ 11.242438] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 11.242462] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 11.520164] c0 mif: link_pm_runtime_start: rpm_status: 0
<6>[ 11.520210] c0 mif: link_pm_runtime_start: EHCI runtime s5p-ehci, s5p-ehci
<6>[ 11.720351] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<3>[ 11.769891] c0 mif: misc_release: iod = umts_boot0
<3>[ 11.771267] c0 mif: misc_open: iod = umts_ipc0
<6>[ 11.771303] c0 mif: usb_init_communication: 1858:rild
<6>[ 11.800717] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 11.850076] c0 mif: usb_port_resume: 1283, 4
<3>[ 11.851025] c0 mif: start_ipc: send 'a'
<3>[ 11.851214] c0 mif: misc_open: iod = umts_rfs0
<6>[ 11.851268] c0 mif: usb_init_communication: 1858:rild
<6>[ 11.853162] c1 mif: IPC-RX(129): 7f 0a 00 00 07 00 ff ff 01 01 03 7e 7f 1a 00 00 ...
<6>[ 11.854825] c0 mif: IPC-TX(13): 7f 0b 00 00 08 00 01 00 0a 0c 05 01 7e
<6>[ 12.057436] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 12.057509] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 12.100805] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 12.150087] c0 mif: usb_port_resume: 1283, 4
<6>[ 12.357541] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 12.357609] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 12.400720] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 12.450103] c0 mif: usb_port_resume: 1283, 4
<6>[ 12.657306] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 12.657391] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 12.700693] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 12.750098] c0 mif: usb_port_resume: 1283, 4
<6>[ 12.957400] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 12.957470] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 13.000750] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 13.050148] c0 mif: usb_port_resume: 1283, 4
<6>[ 13.257300] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 13.257402] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 13.300744] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 13.350124] c0 mif: usb_port_resume: 1283, 4
<6>[ 13.558358] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 13.558447] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 13.600998] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 13.650126] c0 mif: usb_port_resume: 1283, 4
<6>[ 13.857404] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 13.857502] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 13.900706] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 13.950190] c0 mif: usb_port_resume: 1283, 4
<7>[ 15.760115] c0 usb: usb_ready udc_enable=0
<6>[ 17.760092] c0 max8997-muic max8997-muic: max8997_muic_usb_detect
<6>[ 17.760154] c0 max8997-muic max8997-muic: max8997_muic_usb_detect: usb attach
<6>[ 17.760216] c0 otg max8997_muic_usb_cb: usb mode=1
<6>[ 17.760264] c0 otg change mode : USB Cable Detached --> USB Cable Attached (0 --> 1) disabled
<7>[ 17.760335] c0 usb: s3c_vbus_enable, ready u_e: 0, is_active: 1
<7>[ 17.760387] c0 usb: s3c_vbus_enable is_active=1(udc_enable),softconnect=1
<7>[ 17.760554] c0 usb: s5p_usb_phy0_tune read original tune
<7>[ 17.760602] c0 usb: s5p_usb_phy0_tune save default phytune (0x819b3)
<7>[ 17.760655] c0 usb: s5p_usb_phy0_tune original tune=0x819b3
<7>[ 17.760704] c0 usb: s5p_usb_phy0_tune tune_mask=0x10380f, tune=0x10280b
<7>[ 17.760768] c0 usb: s5p_usb_phy0_tune custom tune=0x1829bb
<7>[ 17.760815] c0 usb: s5p_usb_phy0_tune modified tune=0x1829bb
<7>[ 18.149760] c0 usb: GET_DES
<7>[ 18.149956] c0 usb: android_work config= (null),connected=1,sw_connected=0
<7>[ 18.152068] c0 usb: android_work sent uevent USB_STATE=CONNECTED
<7>[ 18.241157] c0 usb: GET_DES
<6>[ 18.242878] c0 android_usb gadget: high speed config #1: android
<7>[ 18.242937] c0 usb: SET_CON
<7>[ 18.243153] c0 usb: android_work config=c0ec4a90,connected=1,sw_connected=1
<7>[ 18.243621] c0 usb: android_work sent uevent USB_STATE=CONFIGURED
<6>[ 19.975411] c1 adb_release
<7>[ 19.975460] c1 usb: usb_gadget_disconnect
<7>[ 19.975572] c1 usb: usb_remove_config cdev->config= (null), config=c0ec4a90
<7>[ 19.975687] c1 usb: android_work config= (null),connected=0,sw_connected=1
<7>[ 19.978215] c1 usb: android_work sent uevent USB_STATE=DISCONNECTED
<6>[ 19.987105] c1 adb_open
<7>[ 19.987150] c1 usb: android_bind_enabled_functions f:mass_storage
<7>[ 19.987228] c1 usb: android_bind_enabled_functions f:adb
<6>[ 19.987273] c1 adb_bind_config
<7>[ 19.987319] c1 usb: usb_gadget_connect
<7>[ 20.205352] c0 usb: GET_DES
<7>[ 20.205436] c0 usb: android_work config= (null),connected=1,sw_connected=0
<7>[ 20.206268] c0 usb: android_work sent uevent USB_STATE=CONNECTED
<7>[ 20.297055] c0 usb: GET_DES
<6>[ 20.298572] c0 android_usb gadget: high speed config #1: android
<7>[ 20.298643] c0 usb: SET_CON
<7>[ 20.298745] c0 usb: android_work config=c0ec4a90,connected=1,sw_connected=1
<7>[ 20.299302] c0 usb: android_work sent uevent USB_STATE=CONFIGURED
<6>[ 21.262544] c0 max17042 9-0036: max17042_get_soc : soc(6182)
<6>[ 21.262588] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 21.262624] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 21.740497] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 25.760218] c0 max8997-muic max8997-muic: max8997_muic_mhl_detect
<6>[ 26.844445] c1 healthd: battery l=99 v=4183 t=26.0 h=2 st=2 c=0 chg=u
<6>[ 26.860727] c0 request_suspend_state: wakeup (3->0) at 26860708681 (2014-12-20 13:25:40.690134887 UTC)
<6>[ 26.934169] c1 k3dh_ioctl: opened = 0, enable = 1
<3>[ 27.024855] c0 [TSP] sec_touchscreen_enable
<3>[ 27.025402] c1 [TSP] Calibration!!!!!!
<3>[ 27.025978] c1 [TSP] Calibration End!!!!!!
<7>[ 27.782153] c1 usb: state_show buf=CONFIGURED
<6>[ 27.783188] c1 acc_open
<6>[ 27.783229] c1 acc_release
<6>[ 28.650665] c0 lcd panel: id=2 brightness=29, bl=0, candela=30
<7>[ 29.736081] c0 SELinux: initialized (dev mmcblk1p1, type vfat), uses genfs_contexts
<7>[ 29.778277] c1 SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
<6>[ 30.240230] c0 sec-thermistor sec-thermistor: notify_change_of_temperature: uevent: TEMPERATURE=330
<4>[ 30.836916] c1 Mali: mem_usage before 2356 : 61341696
<6>[ 31.292596] c0 max17042 9-0036: max17042_get_soc : soc(6182)
<6>[ 31.292712] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 31.292816] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 31.760238] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<7>[ 31.920750] c0 SELinux: initialized (dev mmcblk0p11, type fuseblk), uses genfs_contexts
<7>[ 31.950323] c0 SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
<6>[ 32.957590] c0 mif: link_pm_slave_wake: gpio [SWK] set [1]
<6>[ 32.966881] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 33.008789] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 33.050079] c0 mif: usb_port_resume: 1283, 4
<6>[ 33.051059] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 02 00 01 07 01 02 02 7e
<6>[ 33.071305] c1 mif: IPC-RX(188): 7f 0f 00 00 0c 00 ff 02 80 01 02 01 07 01 00 80 ...
<6>[ 33.202124] c1 mif: misc_write: write rfs size = 15
<6>[ 33.202367] c0 mif: IPC-TX(13): 7f 0b 00 00 08 00 03 00 0a 01 02 ff 7e
<6>[ 33.206442] c1 mif: IPC-RX(160): 7f 9e 00 00 9b 00 00 03 0a 01 02 1f 49 39 31 30 ...
<6>[ 33.320947] c1 mif: misc_write: write rfs size = 15
<6>[ 33.321134] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 04 00 08 03 02 7e
<6>[ 33.321201] c0 mif: IPC-TX(13): 7f 0b 00 00 08 00 05 00 0a 03 02 01 7e
<6>[ 33.325834] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 04 08 03 02 02 04 ff 32 33 ...
<6>[ 33.327186] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 06 00 08 05 02 ff 03 7e
<6>[ 33.327927] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 07 00 05 01 02 7e
<6>[ 33.330460] c1 mif: IPC-RX(46): 7f 2c 00 00 29 00 00 05 0a 03 02 01 11 33 35 38 ...
<6>[ 33.333417] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 06 08 05 02 ff 03 01 00 00 ...
<6>[ 33.334291] c1 mif: IPC-RX(14): 7f 0c 00 00 09 00 00 07 05 01 02 03 01 7e
<6>[ 33.366841] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 08 00 02 06 02 7e
<6>[ 33.367005] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 09 00 08 05 02 ff 02 7e
<6>[ 33.371198] c1 mif: IPC-RX(36): 7f 0b 00 00 08 00 00 08 02 06 02 00 7e 7f 15 00 ...
<6>[ 33.373713] c0 mif: IPC-TX(23): 7f 15 00 00 12 00 0a 00 0a 05 03 03 00 0e 0c 14 ...
<6>[ 33.374817] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 0b 00 05 01 02 7e
<6>[ 33.375178] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 0c 00 08 02 02 7e
<6>[ 33.376569] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 00 0a 80 01 02 0a 05 03 00 80 ...
<6>[ 33.379177] c1 mif: IPC-RX(14): 7f 0c 00 00 09 00 00 0b 05 01 02 03 01 7e
<6>[ 33.381187] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 00 0c 08 02 02 02 7e
<6>[ 33.383029] c0 mif: IPC-TX(48): 7f 2e 00 00 2b 00 0d 00 13 01 03 05 00 59 00 01 ...
<6>[ 33.384950] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 00 0d 80 01 02 13 01 03 00 80 ...
<6>[ 33.507911] c1 mif: misc_write: write rfs size = 15
<6>[ 33.508155] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 0e 00 08 03 02 7e
<6>[ 33.508287] c0 mif: IPC-TX(13): 7f 0b 00 00 08 00 0f 00 0a 03 02 04 7e
<6>[ 33.512682] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 0e 08 03 02 02 04 ff 32 33 ...
<6>[ 33.513726] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 10 00 08 05 02 ff 03 7e
<6>[ 33.514553] c1 mif: IPC-RX(46): 7f 2c 00 00 29 00 00 0f 0a 03 02 04 0c 30 30 30 ...
<6>[ 33.515512] c0 mif: IPC-TX(13): 7f 0b 00 00 08 00 11 00 0a 03 02 05 7e
<6>[ 33.516916] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 10 08 05 02 ff 03 01 00 00 ...
<6>[ 33.517502] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 12 00 08 05 02 ff 02 7e
<6>[ 33.519446] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 ff 11 80 01 02 0a 03 02 01 80 ...
<6>[ 33.519907] c0 mif: IPC-TX(13): 7f 0b 00 00 08 00 13 00 0a 03 02 06 7e
<6>[ 33.520442] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 12 08 05 02 ff 02 04 00 00 ...
<6>[ 33.520889] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 14 00 08 02 02 7e
<6>[ 33.521198] c1 mif: IPC-RX(46): 7f 2c 00 00 29 00 00 13 0a 03 02 06 20 00 00 00 ...
<6>[ 33.522067] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 00 14 08 02 02 02 7e
<6>[ 33.522466] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 15 00 0f 02 01 0c 00 7e
<6>[ 33.522832] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 16 00 08 03 02 7e
<6>[ 33.523662] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 00 15 80 01 02 0f 02 01 01 80 ...
<6>[ 33.524015] c0 mif: IPC-TX(13): 7f 0b 00 00 08 00 17 00 0a 01 05 0e 7e
<6>[ 33.524682] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 16 08 03 02 02 04 ff 32 33 ...
<6>[ 33.525663] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 18 00 08 05 02 ff 03 7e
<6>[ 33.526788] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 18 08 05 02 ff 03 01 00 00 ...
<6>[ 33.527181] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 19 00 08 05 02 ff 02 7e
<6>[ 33.528665] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 19 08 05 02 ff 02 04 00 00 ...
<6>[ 33.529068] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 1a 00 08 02 02 7e
<6>[ 33.530066] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 00 1a 08 02 02 02 7e
<6>[ 33.530469] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 1b 00 08 03 02 7e
<6>[ 33.531664] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 1b 08 03 02 02 04 ff 32 33 ...
<6>[ 33.532518] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 1c 00 08 05 02 ff 03 7e
<6>[ 33.533937] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 1c 08 05 02 ff 03 01 00 00 ...
<6>[ 33.534458] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 1d 00 08 05 02 ff 02 7e
<6>[ 33.535559] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 1d 08 05 02 ff 02 04 00 00 ...
<6>[ 33.536051] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 1e 00 08 02 02 7e
<6>[ 33.537060] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 00 1e 08 02 02 02 7e
<6>[ 33.537579] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 1f 00 08 03 02 7e
<6>[ 33.538798] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 1f 08 03 02 02 04 ff 32 33 ...
<6>[ 33.539844] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 20 00 08 05 02 ff 03 7e
<6>[ 33.540929] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 20 08 05 02 ff 03 01 00 00 ...
<6>[ 33.541533] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 21 00 08 05 02 ff 02 7e
<6>[ 33.542950] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 00 21 08 05 02 ff 02 04 00 00 ...
<6>[ 33.543446] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 22 00 08 02 02 7e
<6>[ 33.544539] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 00 22 08 02 02 02 7e
<4>[ 34.091188] c0 Mali: mem_usage before 2506 : 66060288
<6>[ 35.032420] c0 set_gps_uart_op: on
<4>[ 36.668314] c0 Mali: mem_usage before 2711 : 19398656
<6>[ 36.915696] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 36.956421] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 36.995067] c0 mif: usb_port_resume: 1283, 4
<6>[ 36.995863] c1 mif: IPC-RX(95): 7f 0b 00 00 08 00 ff 22 0d 0c 03 00 7e 7f 15 00 ...
<6>[ 36.998294] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 23 00 08 03 02 7e
<6>[ 37.001765] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 23 08 03 02 02 04 04 32 33 ...
<6>[ 37.002811] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 24 00 08 05 02 ff 03 7e
<6>[ 37.006870] c1 mif: IPC-RX(52): 7f 0e 00 00 0b 00 ff 23 07 01 03 ff 04 00 05 7e ...
<6>[ 37.007656] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 25 00 08 05 02 ff 02 7e
<6>[ 37.009623] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 25 08 05 02 04 02 04 01 0d ...
<6>[ 37.010136] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 26 00 08 02 02 7e
<6>[ 37.011126] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 26 08 02 02 02 7e
<6>[ 37.011482] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 27 00 08 03 02 7e
<6>[ 37.013118] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 27 08 03 02 02 04 04 32 33 ...
<6>[ 37.013972] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 28 00 08 05 02 ff 03 7e
<6>[ 37.015126] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 28 08 05 02 04 03 01 01 0d ...
<6>[ 37.015800] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 29 00 08 05 02 ff 02 7e
<6>[ 37.016869] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 29 08 05 02 04 02 04 01 0d ...
<6>[ 37.017288] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 2a 00 08 02 02 7e
<6>[ 37.018379] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 2a 08 02 02 02 7e
<6>[ 37.018834] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 2b 00 08 03 02 7e
<6>[ 37.019987] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 2b 08 03 02 02 04 04 32 33 ...
<6>[ 37.021161] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 2c 00 08 05 02 ff 03 7e
<6>[ 37.022894] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 2c 08 05 02 04 03 01 01 0d ...
<6>[ 37.023491] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 2d 00 08 05 02 ff 02 7e
<6>[ 37.024629] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 2d 08 05 02 04 02 04 01 0d ...
<6>[ 37.025158] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 2e 00 08 02 02 7e
<6>[ 37.026184] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 2e 08 02 02 02 7e
<6>[ 37.026641] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 2f 00 08 03 02 7e
<6>[ 37.027998] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 2f 08 03 02 02 04 04 32 33 ...
<6>[ 37.029105] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 30 00 08 05 02 ff 03 7e
<6>[ 37.030274] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 30 08 05 02 04 03 01 01 0d ...
<6>[ 37.030814] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 31 00 08 05 02 ff 02 7e
<6>[ 37.031996] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 31 08 05 02 04 02 04 01 0d ...
<6>[ 37.032554] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 32 00 08 02 02 7e
<6>[ 37.033653] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 32 08 02 02 02 7e
<6>[ 38.841823] c0 [VIB] pwm_value_store: pwm_value=50
<6>[ 38.841856] c0 [VIB] pwm_value_store: pwm_duty=28230
<6>[ 38.872599] c0 lcd panel: acl_set_store - 0, 1
<6>[ 39.680259] c1 mdnie mdnie: scenario_store :: value=0
<6>[ 39.680293] c1 mdnie mdnie: mode=1, scenario=0, outdoor=0, cabc=0, CYANOGENMOD
<6>[ 39.683426] c1 mdnie mdnie: mode_store :: value=0
<6>[ 39.683465] c1 mdnie mdnie: mode=0, scenario=0, outdoor=0, cabc=0, CYANOGENMOD
<6>[ 39.686791] c1 mdnie mdnie: negative_store :: value=0, by settings.device
<3>[ 39.942511] c1 [TSP] calibration was good
<3>[ 39.942934] c1 [TSP] ta_status is 1
<7>[ 39.943164] c1 [TSP] auto calibration disable!!!
<6>[ 40.137439] c0 set_gps_uart_op: off
<6>[ 41.155527] c0 mif: link_pm_slave_wake: gpio [SWK] set [1]
<6>[ 41.163569] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 41.201179] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 41.240072] c0 mif: usb_port_resume: 1283, 4
<6>[ 41.241104] c0 mif: IPC-TX(31): 7f 1d 00 00 1a 00 33 00 05 01 03 03 04 00 31 39 ...
<6>[ 41.284266] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 ff 33 80 01 02 05 01 03 00 80 ...
<6>[ 41.322461] c0 max17042 9-0036: max17042_get_soc : soc(6182)
<6>[ 41.322499] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 41.322525] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 41.623198] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 41.651085] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 41.700094] c1 mif: usb_port_resume: 1283, 4
<6>[ 41.700917] c1 mif: IPC-RX(41): 7f 0c 00 00 09 00 ff 33 05 01 03 00 00 7e 7f 0c ...
<6>[ 41.702524] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 34 00 04 07 03 7e
<6>[ 41.780275] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 41.866182] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 ff 34 80 01 02 04 07 03 00 80 ...
<6>[ 41.866714] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 35 00 05 01 02 7e
<6>[ 41.869818] c1 mif: IPC-RX(14): 7f 0c 00 00 09 00 ff 35 05 01 02 00 00 7e
<6>[ 41.876879] c1 mif: IPC-TX(13): 7f 0b 00 00 08 00 36 00 05 02 02 04 7e
<6>[ 41.880966] c1 mif: IPC-RX(14): 7f 0c 00 00 09 00 ff 36 05 02 02 04 00 7e
<6>[ 41.881670] c1 mif: IPC-TX(13): 7f 0b 00 00 08 00 37 00 05 02 02 03 7e
<6>[ 41.884075] c1 mif: IPC-RX(14): 7f 0c 00 00 09 00 ff 37 05 02 02 03 01 7e
<6>[ 41.886842] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 38 00 0a 02 02 7e
<6>[ 41.888993] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 39 00 05 05 02 c0 e2 2f 00 00 ...
<6>[ 41.889110] c1 mif: IPC-RX(28): 7f 1a 00 00 17 00 ff 38 0a 02 02 0f 32 33 32 31 ...
<6>[ 41.925430] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 39 05 05 02 90 00 0f 00 00 ...
<6>[ 41.948348] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 3a 00 05 05 02 c0 40 6f 00 00 ...
<6>[ 41.973951] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 3a 05 05 02 90 00 0f 00 00 ...
<6>[ 41.974523] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 3b 00 05 05 02 c0 c9 6f 00 00 ...
<6>[ 41.984731] c1 mif: IPC-TX(13): 7f 0b 00 00 08 00 3c 00 08 0a 03 01 7e
<6>[ 41.987203] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 ff 3c 80 01 02 08 0a 03 00 80 ...
<6>[ 41.987725] c1 mif: IPC-TX(20): 7f 12 00 00 0f 00 3d 00 08 02 03 02 00 00 00 00 ...
<6>[ 41.989807] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 ff 3d 80 01 02 08 02 03 00 80 ...
<6>[ 41.990512] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 3e 00 08 03 02 7e
<6>[ 41.993815] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 3e 08 03 02 02 04 04 32 33 ...
<6>[ 41.994737] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 3f 00 08 05 02 ff 03 7e
<6>[ 41.997447] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 3f 08 05 02 04 03 01 01 0d ...
<6>[ 41.997979] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 40 00 08 05 02 ff 02 7e
<6>[ 42.000195] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 40 08 05 02 04 02 04 01 0d ...
<6>[ 42.000886] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 41 00 08 02 02 7e
<6>[ 42.003586] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 41 08 02 02 02 7e
<6>[ 42.017115] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 42 00 08 03 02 7e
<6>[ 42.020683] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 42 08 03 02 02 04 04 32 33 ...
<6>[ 42.022258] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 43 00 08 05 02 ff 03 7e
<6>[ 42.025089] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 43 08 05 02 04 03 01 01 0d ...
<6>[ 42.025846] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 44 00 08 05 02 ff 02 7e
<6>[ 42.029820] c1 mif: IPC-RX(53): 7f 1c 00 00 19 00 ff 3b 05 05 02 90 00 0f 00 00 ...
<6>[ 42.030651] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 45 00 05 05 02 c0 ad 6f 00 00 ...
<6>[ 42.030806] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 46 00 08 02 02 7e
<6>[ 42.034592] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 46 08 02 02 02 7e
<6>[ 42.108479] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 45 05 05 02 90 00 0f 00 00 ...
<6>[ 42.109052] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 47 00 05 05 02 c0 ca 6f 00 00 ...
<6>[ 42.188309] c1 mif: IPC-RX(15): 7f 0d 00 00 0a 00 ff 47 05 05 02 94 04 00 7e
<6>[ 42.188987] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 48 00 05 05 02 c0 11 6f 00 00 ...
<6>[ 42.267467] c1 mif: IPC-RX(95): 7f 0b 00 00 08 00 ff 47 0d 0c 03 00 7e 7f 15 00 ...
<6>[ 42.271920] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 49 00 08 03 02 7e
<6>[ 42.273935] c1 mif: IPC-RX(53): 7f 1c 00 00 19 00 ff 48 05 05 02 90 00 0f 00 00 ...
<6>[ 42.274421] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 4a 00 05 05 02 c0 cb 6f 00 00 ...
<6>[ 42.275165] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 4b 00 08 05 02 ff 03 7e
<6>[ 42.276299] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 4b 08 05 02 04 03 03 01 0d ...
<6>[ 42.276692] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 4c 00 08 05 02 ff 02 7e
<6>[ 42.277810] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 4c 08 05 02 04 02 06 01 0d ...
<6>[ 42.278225] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 4d 00 08 02 02 7e
<6>[ 42.279169] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 4d 08 02 02 02 7e
<6>[ 42.279523] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 4e 00 08 03 02 7e
<6>[ 42.280798] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 4e 08 03 02 02 06 04 32 33 ...
<6>[ 42.281222] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 4f 00 08 05 02 ff 03 7e
<6>[ 42.282916] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 4f 08 05 02 04 03 03 01 0d ...
<6>[ 42.283323] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 50 00 08 05 02 ff 02 7e
<6>[ 42.284574] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 50 08 05 02 04 02 06 01 0d ...
<6>[ 42.285061] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 51 00 08 02 02 7e
<6>[ 42.286060] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 51 08 02 02 02 7e
<6>[ 42.286439] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 52 00 08 03 02 7e
<6>[ 42.287939] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 52 08 03 02 02 06 04 32 33 ...
<6>[ 42.288379] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 53 00 08 05 02 ff 03 7e
<6>[ 42.289564] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 53 08 05 02 04 03 03 01 0d ...
<6>[ 42.290192] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 54 00 08 05 02 ff 02 7e
<6>[ 42.291431] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 54 08 05 02 04 02 06 01 0d ...
<6>[ 42.291861] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 55 00 08 02 02 7e
<6>[ 42.292920] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 55 08 02 02 02 7e
<6>[ 42.293249] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 56 00 08 03 02 7e
<6>[ 42.294442] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 56 08 03 02 02 06 04 32 33 ...
<6>[ 42.295828] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 57 00 08 05 02 ff 03 7e
<6>[ 42.297303] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 57 08 05 02 04 03 03 01 0d ...
<6>[ 42.298027] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 58 00 08 05 02 ff 02 7e
<6>[ 42.299196] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 58 08 05 02 04 02 06 01 0d ...
<6>[ 42.301519] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 59 00 08 02 02 7e
<6>[ 42.302805] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 59 08 02 02 02 7e
<6>[ 42.349825] c1 mif: IPC-RX(15): 7f 0d 00 00 0a 00 ff 4a 05 05 02 94 04 00 7e
<6>[ 42.350421] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 5a 00 05 05 02 c0 13 6f 00 00 ...
<6>[ 42.429580] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 5a 05 05 02 90 00 0f 00 00 ...
<6>[ 42.430276] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 5b 00 05 05 02 c0 46 6f 00 00 ...
<6>[ 42.512353] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 5b 05 05 02 90 00 0f 00 00 ...
<6>[ 42.512926] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 5c 00 05 05 02 c0 cd 6f 00 00 ...
<6>[ 42.592183] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 5c 05 05 02 90 00 0f 00 00 ...
<6>[ 42.592704] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 5d 00 05 05 02 c0 c5 6f 00 00 ...
<6>[ 42.674080] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 5d 05 05 02 90 00 0f 00 00 ...
<6>[ 42.674753] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 5e 00 05 05 02 c0 38 6f 00 00 ...
<6>[ 42.734088] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 5e 05 05 02 90 00 0f 00 00 ...
<6>[ 42.734751] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 5f 00 05 05 02 c0 16 6f 00 00 ...
<6>[ 42.825584] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 5f 05 05 02 90 00 0f 00 00 ...
<6>[ 42.826165] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 60 00 05 05 02 c0 15 6f 00 00 ...
<6>[ 42.898065] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 60 05 05 02 90 00 0f 00 00 ...
<6>[ 42.898763] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 61 00 05 05 02 c0 3e 6f 00 00 ...
<6>[ 42.977312] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 61 05 05 02 90 00 0f 00 00 ...
<6>[ 42.978160] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 62 00 05 05 02 c0 3c 6f 00 00 ...
<7>[ 43.175146] c0 [keys]PWR 1
<6>[ 43.182982] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 43.183048] c0 mif: link_pm_runtime_work: rpm_states=3
<6>[ 43.226208] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 43.275157] c0 mif: usb_port_resume: 1283, 4
<6>[ 43.277556] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 62 05 05 02 90 00 0f 00 00 ...
<6>[ 43.278222] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 63 00 05 05 02 b0 e2 2f 00 00 ...
<7>[ 43.365138] c0 [keys]PWR 0
<6>[ 43.396555] c1 mif: IPC-RX(25): 7f 17 00 00 14 00 ff 63 05 05 02 90 00 0a 98 34 ...
<6>[ 43.397125] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 64 00 05 05 02 b2 40 6f 01 04 ...
<4>[ 43.398679] c1 Mali: mem_usage before 2216 : 19398656
<6>[ 43.476462] c1 mif: IPC-RX(43): 7f 29 00 00 26 00 ff 64 05 05 02 90 00 1c 56 6f ...
<6>[ 43.521719] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 65 00 05 05 02 b2 c9 6f 01 04 ...
<6>[ 43.636235] c1 mif: IPC-RX(19): 7f 11 00 00 0e 00 ff 65 05 05 02 90 00 04 01 00 ...
<6>[ 43.636991] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 66 00 05 05 02 b0 ad 6f 00 00 ...
<6>[ 43.791430] c1 mif: IPC-RX(18): 7f 10 00 00 0d 00 ff 66 05 05 02 90 00 03 00 ff ...
<6>[ 43.792010] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 67 00 05 05 02 b0 11 6f 00 00 ...
<6>[ 43.938689] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 ff 67 05 05 02 90 00 02 55 55 ...
<6>[ 43.939261] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 68 00 05 05 02 b0 13 6f 00 00 ...
<6>[ 44.016331] c1 mif: IPC-RX(16): 7f 0e 00 00 0b 00 ff 68 05 05 02 90 00 01 55 7e
<6>[ 44.016967] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 69 00 05 05 02 b0 46 6f 00 00 ...
<6>[ 44.033196] c1 request_suspend_state: sleep (0->3) at 44033175314 (2014-12-20 13:25:57.862601312 UTC)
<7>[ 44.033288] c1 [TouchKey] sec_touchkey_early_suspend
<6>[ 44.034262] c1 sii9234_early_suspend()
<6>[ 44.034296] c1 lcd panel: +ld9040_early_suspend
<6>[ 44.034324] c1 lcd panel: ld9040_power_off
<6>[ 44.094311] c1 mif: IPC-RX(32): 7f 1e 00 00 1b 00 ff 69 05 05 02 90 00 11 ff ff ...
<6>[ 44.095156] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 6a 00 05 05 02 b0 cd 6f 00 00 ...
<6>[ 44.182317] c1 mif: IPC-RX(79): 7f 4d 00 00 4a 00 ff 6a 05 05 02 90 00 40 ff ff ...
<6>[ 44.182905] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 6b 00 05 05 02 b2 c5 6f 01 04 ...
<6>[ 44.240520] c1 lcd panel: -ld9040_early_suspend
<6>[ 44.240552] c1 +s3cfb_early_suspend
<7>[ 44.243552] c1 s3cfb - disable power domain
<6>[ 44.243590] c1 -s3cfb_early_suspend
<6>[ 44.243653] c1 sync_system +
<6>[ 44.243743] c1 active wake lock sync_system
<6>[ 44.243776] c1 active wake lock PowerManagerService.Broadcasts
<6>[ 44.243827] c1 active wake lock l2_hsic
<6>[ 44.243858] c1 active wake lock PowerManagerService.WakeLocks
<6>[ 44.243908] c1 active wake lock usb device wake lock
<6>[ 44.243935] c1 active wake lock usb cb wake lock
<6>[ 44.243960] c1 active wake lock vbus_present
<6>[ 44.243986] c1 active wake lock umts_ipc0, time left 88
<6>[ 44.259195] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 6b 05 05 02 90 00 0f 43 07 ...
<6>[ 44.259791] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 6c 00 05 05 02 b0 38 6f 00 00 ...
<6>[ 44.335927] c1 mif: IPC-RX(31): 7f 1d 00 00 1a 00 ff 6c 05 05 02 90 00 10 ff 3f ...
<6>[ 44.336555] c0 mif: IPC-TX(18): 7f 10 00 00 0d 00 6d 00 05 05 02 b0 16 6f 00 00 ...
<6>[ 44.476557] c1 mif: IPC-RX(18): 7f 10 00 00 0d 00 ff 6d 05 05 02 90 00 03 02 33 ...
<6>[ 44.477077] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 6e 00 05 05 02 b0 15 6f 00 00 ...
<6>[ 44.618552] c1 mif: IPC-RX(39): 7f 25 00 00 22 00 ff 6e 05 05 02 90 00 18 01 f8 ...
<6>[ 44.619019] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 6f 00 05 05 02 b0 3e 6f 00 00 ...
<6>[ 44.734247] c1 mif: IPC-RX(17): 7f 0f 00 00 0c 00 ff 6f 05 05 02 90 00 02 00 00 ...
<6>[ 44.735719] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 70 00 05 05 02 c0 c7 6f 00 00 ...
<6>[ 44.808252] c1 mif: IPC-RX(30): 7f 1c 00 00 19 00 ff 70 05 05 02 90 00 0f 00 00 ...
<6>[ 44.814613] c1 mif: IPC-TX(18): 7f 10 00 00 0d 00 71 00 05 05 02 b2 c7 6f 01 04 ...
<6>[ 44.890680] c1 mif: IPC-RX(44): 7f 2a 00 00 27 00 ff 71 05 05 02 90 00 1d 53 70 ...
<6>[ 45.183363] c1 sync_system -
<6>[ 45.588265] c1 k3dh_ioctl: opened = 1, enable = 0
<6>[ 45.591656] c1 mif: link_pm_slave_wake: gpio [SWK] set [1]
<6>[ 45.592041] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 45.625817] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 45.675083] c1 mif: usb_port_resume: 1283, 4
<6>[ 45.676408] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 72 00 08 03 02 7e
<6>[ 45.679369] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 72 08 03 02 02 06 04 32 33 ...
<6>[ 45.679890] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 73 00 08 05 02 ff 03 7e
<6>[ 45.683385] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 73 08 05 02 04 03 03 01 0d ...
<6>[ 45.683896] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 74 00 08 05 02 ff 02 7e
<6>[ 45.694002] c1 mif: IPC-RX(105): 7f 15 00 00 12 00 ff ff 08 05 03 04 02 06 01 0d ...
<6>[ 45.695652] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 75 00 08 02 02 7e
<6>[ 45.697189] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 75 08 02 02 02 7e
<6>[ 45.701522] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 76 00 08 03 02 7e
<6>[ 45.703015] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 76 08 03 02 02 06 04 32 33 ...
<6>[ 45.703486] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 77 00 08 05 02 ff 03 7e
<6>[ 45.705137] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 77 08 05 02 04 03 06 01 0d ...
<6>[ 45.707275] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 78 00 08 05 02 ff 02 7e
<6>[ 45.709117] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 78 08 05 02 04 02 06 01 0d ...
<6>[ 45.709562] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 79 00 08 02 02 7e
<6>[ 45.711494] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 79 08 02 02 02 7e
<6>[ 45.712051] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 7a 00 08 03 02 7e
<6>[ 45.714368] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 7a 08 03 02 02 06 04 32 33 ...
<6>[ 45.714857] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 7b 00 08 05 02 ff 03 7e
<6>[ 45.716484] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 7b 08 05 02 04 03 06 01 0d ...
<6>[ 45.716878] c1 mif: IPC-TX(14): 7f 0c 00 00 09 00 7c 00 08 05 02 ff 02 7e
<6>[ 45.718504] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 7c 08 05 02 04 02 06 01 0d ...
<6>[ 45.718952] c1 mif: IPC-TX(12): 7f 0a 00 00 07 00 7d 00 08 02 02 7e
<6>[ 45.720492] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 7d 08 02 02 02 7e
<6>[ 45.760254] c1 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 45.760778] c1 sec-battery sec-battery: sec_bat_check_temper: temp=280, adc=905
<6>[ 45.760825] c1 sec-battery sec-battery: Time past : 42 secs
<6>[ 45.760861] c1 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x0
<6>[ 45.760905] c1 sec-battery sec-battery: soc(99), vfocv(4147), vcell(3999), temp(28), charging(1), health(1), chg_adc(0)
<6>[ 45.762178] c1 healthd: battery l=99 v=3999 t=28.0 h=2 st=2 c=0 chg=u
<4>[ 46.284690] c0 Mali: = regulator_set_voltage: 900000, 900000
<4>[ 46.292083] c0 Mali: Mali frequency 200
<6>[ 46.609012] c1 mif: link_pm_slave_wake: gpio [SWK] set [1]
<6>[ 46.609183] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 46.640898] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 46.695097] c1 mif: usb_port_resume: 1283, 4
<6>[ 46.696232] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 7e 00 04 0e 02 7e
<6>[ 46.812648] c1 mif: IPC-RX(18): 7f 10 00 00 0d 00 ff 7e 04 0e 02 02 01 0a 01 11 ...
<6>[ 46.815983] c0 mif: IPC-TX(17): 7f 0f 00 00 0c 00 7f 00 04 0e 03 01 a0 01 11 12 ...
<6>[ 46.921758] c1 mif: IPC-RX(26): 7f 0b 00 00 08 00 ff 7e 0d 0c 03 00 7e 7f 0b 00 ...
<6>[ 46.923739] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 80 00 08 03 02 7e
<6>[ 46.972660] c1 mif: IPC-RX(40): 7f 15 00 00 12 00 ff 80 08 03 02 02 06 04 32 33 ...
<6>[ 46.973464] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 81 00 08 05 02 ff 03 7e
<6>[ 46.976238] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 81 08 05 02 04 03 06 01 0d ...
<6>[ 46.976764] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 82 00 08 05 02 ff 02 7e
<6>[ 46.979516] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 82 08 05 02 04 02 06 01 0d ...
<6>[ 46.980130] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 83 00 08 02 02 7e
<6>[ 46.981354] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 83 08 02 02 02 7e
<6>[ 46.981808] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 84 00 08 03 02 7e
<6>[ 46.983295] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 84 08 03 02 02 06 04 32 33 ...
<6>[ 46.983896] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 85 00 08 05 02 ff 03 7e
<6>[ 46.985120] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 85 08 05 02 04 03 06 01 0d ...
<6>[ 46.985906] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 86 00 08 05 02 ff 02 7e
<6>[ 46.987123] c1 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 86 08 05 02 04 02 06 01 0d ...
<6>[ 46.987850] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 87 00 08 02 02 7e
<6>[ 46.989115] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 87 08 02 02 02 7e
<6>[ 50.399866] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 50.442993] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 50.480212] c0 mif: usb_port_resume: 1283, 4
<6>[ 50.486249] c1 mif: IPC-RX(31): 7f 0f 00 00 0c 00 ff 87 06 01 03 01 01 0a 01 00 ...
<6>[ 51.342501] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 51.342536] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 51.342564] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 51.800291] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 60.320338] c0 sec-thermistor sec-thermistor: notify_change_of_temperature: uevent: TEMPERATURE=390
<6>[ 61.362420] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 61.362450] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 61.362474] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 61.995868] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 66.030147] c0 cpu1 turnning off!
<6>[ 66.030195] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 66.030592] c1 IRQ112 no longer affine to CPU1
<6>[ 66.030741] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 66.030792] c0 CPU1: shutdown
<6>[ 66.031364] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 66.031491] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 66.032229] c0 cpu1 off!
<4>[ 66.621160] c0 VFP: HW state (=ffd7ffff) for e1d341b0 on CPU0 not in sync
<6>[ 67.035235] c0 cpu1 turning on!
<6>[ 67.060849] c0 vfp_hotplug: Ignored hotplug event 3 on 1.CPU1: Booted secondary processor
<4>[ 67.061968] c1 CPU1: Booted secondary processor
<6>[ 67.062019] c1 vfp_hotplug: Enabled vfp on 1.
<6>[ 67.062096] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 67.065063] c1 Switched to NOHz mode on CPU #1
<6>[ 67.065100] c0 vfp_hotplug: Ignored hotplug event 2 on 1.
<6>[ 67.065182] c0 cpu1 on
<6>[ 69.065135] c0 cpu1 turnning off!
<6>[ 69.065185] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 69.069398] c1 IRQ112 no longer affine to CPU1
<6>[ 69.069569] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 69.069865] c0 CPU1: shutdown
<6>[ 69.070464] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 69.070575] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 69.070949] c0 cpu1 off!
<6>[ 69.570175] c0 cpu1 turning on!
<6>[ 69.602980] c0 vfp_hotplug: Ignored hotplug event 3 on 1.CPU1: Booted secondary processor
<4>[ 69.604079] c1 CPU1: Booted secondary processor
<6>[ 69.604117] c1 vfp_hotplug: Enabled vfp on 1.
<6>[ 69.604167] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 69.605046] c1 Switched to NOHz mode on CPU #1
<6>[ 69.609880] c0 vfp_hotplug: Ignored hotplug event 2 on 1.
<6>[ 69.609947] c0 cpu1 on
<6>[ 71.382402] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 71.382434] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 71.382458] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 72.000230] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 73.526316] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 73.563735] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 73.605229] c0 mif: usb_port_resume: 1283, 4
<6>[ 73.606049] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 87 07 06 03 58 7e
<6>[ 81.402400] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 81.402429] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 81.402453] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 82.020291] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 83.767630] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 83.804842] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 83.845063] c0 mif: usb_port_resume: 1283, 4
<6>[ 83.846004] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 87 07 06 03 55 7e
<6>[ 85.840317] c1 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 85.840844] c1 sec-battery sec-battery: sec_bat_check_temper: temp=290, adc=885
<6>[ 85.840892] c1 sec-battery sec-battery: Time past : 82 secs
<6>[ 85.840929] c1 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x0
<6>[ 85.840978] c1 sec-battery sec-battery: soc(99), vfocv(4146), vcell(4096), temp(29), charging(1), health(1), chg_adc(0)
<6>[ 85.842672] c1 healthd: battery l=99 v=4096 t=29.0 h=2 st=2 c=0 chg=u
<6>[ 86.316468] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 86.356939] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 86.395062] c0 mif: usb_port_resume: 1283, 4
<6>[ 86.396355] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 87 07 06 03 53 7e
<6>[ 87.605151] c0 cpu1 turnning off!
<6>[ 87.605204] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 87.605594] c1 IRQ112 no longer affine to CPU1
<6>[ 87.605787] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 87.605878] c0 CPU1: shutdown
<6>[ 87.606549] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 87.606705] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 87.606760] c0 cpu1 off!
<6>[ 91.469085] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 91.469199] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 91.469299] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 92.070822] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<4>[ 92.075720] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 98.105137] c0 cpu1 turning on!
<6>[ 98.135112] c0 vfp_hotplug: Ignored hotplug event 3 on 1.CPU1: Booted secondary processor
<4>[ 98.136208] c1 CPU1: Booted secondary processor
<6>[ 98.136245] c1 vfp_hotplug: Enabled vfp on 1.
<6>[ 98.136298] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 98.136788] c0 vfp_hotplug: Ignored hotplug event 2 on 1.
<6>[ 98.136841] c0 cpu1 on
<6>[ 98.140042] c1 Switched to NOHz mode on CPU #1
<6>[ 100.135428] c0 cpu1 turnning off!
<6>[ 100.135583] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 100.142981] c1 IRQ112 no longer affine to CPU1
<6>[ 100.143678] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 100.143883] c0 CPU1: shutdown
<6>[ 100.145309] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 100.146128] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 100.147082] c0 cpu1 off!
<6>[ 101.524039] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 101.524149] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 101.524246] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<4>[ 101.526124] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 102.121988] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<6>[ 111.574061] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 111.574173] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 111.574271] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 112.155833] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<4>[ 112.160715] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 112.671048] c0 max8997 5-0066: max8997_irq_thread: irq:359, irq_src:0x2
<6>[ 112.671945] c0 max8997-rtc max8997-rtc: max8997_rtc_alarm_irq:irq(437)
<6>[ 112.672531] c0 max8997 5-0066: max8997_irq_thread: irq:359, irq_src:0x0
<4>[ 112.672654] c0 max8997 5-0066: Unused interrupt source: 0x0
<6>[ 115.119648] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 115.155151] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<4>[ 115.160659] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 115.195458] c0 mif: usb_port_resume: 1283, 4
<4>[ 115.200622] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 115.201501] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 87 07 06 03 51 7e
<4>[ 115.237524] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 115.273005] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 115.308176] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 115.343077] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 115.395180] c0 VFP: HW state (=ffd7fffe) for e276a1b0 on CPU0 not in sync
<6>[ 120.259185] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 120.297854] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<4>[ 120.300671] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 120.335454] c0 mif: usb_port_resume: 1283, 4
<4>[ 120.340583] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 120.341432] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 87 07 06 03 4f 7e
<4>[ 120.393222] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 120.445546] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<6>[ 120.480591] c0 sec-thermistor sec-thermistor: notify_change_of_temperature: uevent: TEMPERATURE=350
<6>[ 121.624048] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 121.624160] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 121.624257] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 122.170817] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<4>[ 122.175684] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 125.920985] c0 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 125.921860] c0 sec-battery sec-battery: sec_bat_check_temper: temp=290, adc=893
<6>[ 125.922025] c0 sec-battery sec-battery: Time past : 122 secs
<6>[ 125.922150] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x1
<6>[ 125.922291] c0 sec-battery sec-battery: sec_bat_check_ing_level_trigger : full interrupt cnt = 1
<6>[ 125.922456] c0 sec-battery sec-battery: soc(99), vfocv(4146), vcell(4181), temp(29), charging(1), health(1), chg_adc(0)
<6>[ 125.927150] c0 healthd: battery l=99 v=4181 t=29.0 h=2 st=2 c=0 chg=u
<6>[ 129.151810] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 129.181713] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 129.230186] c0 mif: usb_port_resume: 1283, 4
<4>[ 129.235625] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 129.236427] c0 mif: IPC-RX(72): 7f 0b 00 00 08 00 ff 87 0d 0c 03 00 7e 7f 15 00 ...
<6>[ 129.252999] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 88 00 08 03 02 7e
<6>[ 129.256317] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 88 08 03 02 02 06 04 32 33 ...
<6>[ 129.263258] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 89 00 08 05 02 ff 03 7e
<6>[ 129.266064] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 89 08 05 02 04 03 06 01 0d ...
<6>[ 129.274694] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 8a 00 08 05 02 ff 02 7e
<6>[ 129.277689] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 8a 08 05 02 04 02 06 01 0d ...
<6>[ 129.286526] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 8b 00 08 02 02 7e
<6>[ 129.288945] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 8b 08 02 02 02 7e
<6>[ 129.297573] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 8c 00 08 03 02 7e
<6>[ 129.301069] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 8c 08 03 02 02 06 04 32 33 ...
<6>[ 129.308761] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 8d 00 08 05 02 ff 03 7e
<6>[ 129.311811] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 8d 08 05 02 04 03 06 01 0d ...
<6>[ 129.320753] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 8e 00 08 05 02 ff 02 7e
<6>[ 129.323695] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 8e 08 05 02 04 02 06 01 0d ...
<6>[ 129.330395] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 8f 00 08 02 02 7e
<6>[ 129.333441] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 8f 08 02 02 02 7e
<6>[ 129.339623] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 90 00 08 03 02 7e
<6>[ 129.343065] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 90 08 03 02 02 06 04 32 33 ...
<6>[ 129.351455] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 91 00 08 05 02 ff 03 7e
<6>[ 129.354191] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 91 08 05 02 04 03 06 01 0d ...
<6>[ 129.361875] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 92 00 08 05 02 ff 02 7e
<6>[ 129.364816] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 92 08 05 02 04 02 06 01 0d ...
<6>[ 129.371587] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 93 00 08 02 02 7e
<6>[ 129.374477] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 93 08 02 02 02 7e
<6>[ 129.374970] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 94 00 08 03 02 7e
<6>[ 129.377471] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 94 08 03 02 02 06 04 32 33 ...
<6>[ 129.378054] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 95 00 08 05 02 ff 03 7e
<6>[ 129.380480] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 95 08 05 02 04 03 06 01 0d ...
<6>[ 129.381081] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 96 00 08 05 02 ff 02 7e
<6>[ 129.383732] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 96 08 05 02 04 02 06 01 0d ...
<6>[ 129.384260] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 97 00 08 02 02 7e
<6>[ 129.385967] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 97 08 02 02 02 7e
<6>[ 131.659021] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 131.659135] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 131.659232] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 132.221994] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<4>[ 132.225684] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 137.524884] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<4>[ 137.530652] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 137.564488] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<4>[ 137.565625] c0 VFP: HW state (=ffd7fffe) for e2d061b0 on CPU0 not in sync
<6>[ 137.605451] c0 mif: usb_port_resume: 1283, 4
<4>[ 137.610581] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 137.611372] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 97 07 06 03 51 7e
<4>[ 137.648333] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 137.683613] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 137.718797] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 137.753692] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<4>[ 137.805747] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<6>[ 141.312257] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<4>[ 141.315679] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 141.341801] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<4>[ 141.345648] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 141.390450] c0 mif: usb_port_resume: 1283, 4
<4>[ 141.395581] c0 VFP: HW state (=ffd7f7fe) for e2d061b0 on CPU0 not in sync
<6>[ 141.396212] c0 mif: IPC-RX(72): 7f 0b 00 00 08 00 ff 97 0d 0c 03 00 7e 7f 15 00 ...
<6>[ 141.414079] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 98 00 08 03 02 7e
<6>[ 141.417606] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 98 08 03 02 02 06 04 32 33 ...
<6>[ 141.424505] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 99 00 08 05 02 ff 03 7e
<6>[ 141.427223] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 99 08 05 02 04 03 06 01 0d ...
<6>[ 141.436252] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 9a 00 08 05 02 ff 02 7e
<6>[ 141.439353] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 9a 08 05 02 04 02 06 01 0d ...
<6>[ 141.446147] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 9b 00 08 02 02 7e
<6>[ 141.449098] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 9b 08 02 02 02 7e
<6>[ 141.455609] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 9c 00 08 03 02 7e
<6>[ 141.459474] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 9c 08 03 02 02 06 04 32 33 ...
<6>[ 141.463917] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 9d 00 08 05 02 ff 03 7e
<6>[ 141.466971] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 9d 08 05 02 04 03 06 01 0d ...
<6>[ 141.476409] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 9e 00 08 05 02 ff 02 7e
<6>[ 141.479091] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff 9e 08 05 02 04 02 06 01 0d ...
<6>[ 141.485504] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 9f 00 08 02 02 7e
<6>[ 141.487715] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff 9f 08 02 02 02 7e
<6>[ 141.493871] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 a0 00 08 03 02 7e
<6>[ 141.496713] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a0 08 03 02 02 06 04 32 33 ...
<6>[ 141.503965] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 a1 00 08 05 02 ff 03 7e
<6>[ 141.506606] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a1 08 05 02 04 03 06 01 0d ...
<6>[ 141.516048] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 a2 00 08 05 02 ff 02 7e
<6>[ 141.518715] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a2 08 05 02 04 02 06 01 0d ...
<6>[ 141.526625] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 a3 00 08 02 02 7e
<6>[ 141.528974] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff a3 08 02 02 02 7e
<6>[ 141.537769] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 a4 00 08 03 02 7e
<6>[ 141.541464] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a4 08 03 02 02 06 04 32 33 ...
<6>[ 141.548378] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 a5 00 08 05 02 ff 03 7e
<6>[ 141.551458] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a5 08 05 02 04 03 06 01 0d ...
<6>[ 141.559809] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 a6 00 08 05 02 ff 02 7e
<6>[ 141.562841] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a6 08 05 02 04 02 06 01 0d ...
<3>[ 141.572884] c0 [TouchKey] touchkey is not enabled. 226
<6>[ 141.577430] c0 k3dh_ioctl: opened = 0, enable = 1
<6>[ 141.620834] c0 request_suspend_state: wakeup (3->0) at 141620787201 (2014-12-20 13:27:35.450210782 UTC)
<6>[ 141.621439] c0 s3cfb s3cfb.0: +s3cfb_late_resume
<6>[ 141.621684] c0 s3cfb s3cfb.0: fimd sclk rate 50000000, clkdiv 0x7000ff
<6>[ 141.621783] c0 s3cfb s3cfb.0: parent clock: 50000000, vclk: 25067000, vclk div: 2
<6>[ 141.621899] c0 mdnie mdnie: mode=0, scenario=0, outdoor=0, cabc=0, CYANOGENMOD
<6>[ 141.622098] c0 s3cfb s3cfb.0: -s3cfb_late_resume
<6>[ 141.622156] c0 lcd panel: +ld9040_late_resume
<6>[ 141.622211] c0 lcd panel: ld9040_power_on
<6>[ 141.673153] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 a7 00 08 02 02 7e
<6>[ 141.675375] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff a7 08 02 02 02 7e
<6>[ 141.682469] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 141.682498] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 141.682523] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<4>[ 141.707989] c0 Mali: = regulator_set_voltage: 900000, 900000
<4>[ 141.708234] c0 Mali: Mali frequency 200
<6>[ 141.739052] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 a8 00 08 03 02 7e
<6>[ 141.742120] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a8 08 03 02 02 06 04 32 33 ...
<6>[ 141.742555] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 a9 00 08 05 02 ff 03 7e
<6>[ 141.744867] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff a9 08 05 02 04 03 06 01 0d ...
<6>[ 141.745528] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 aa 00 08 05 02 ff 02 7e
<6>[ 141.747996] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff aa 08 05 02 04 02 06 01 0d ...
<6>[ 141.748417] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 ab 00 08 02 02 7e
<6>[ 141.750613] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff ab 08 02 02 02 7e
<6>[ 141.811866] c0 lcd panel: id=2 brightness=0, bl=0, candela=30
<6>[ 141.811897] c0 lcd panel: -ld9040_late_resume
<6>[ 141.811924] c0 sii9234_late_resume()
<3>[ 141.930128] c0 [TSP] ta_status is 1
<3>[ 141.930164] c0 [TSP] mxt224_ta_probe
<3>[ 141.930625] c0 [TSP] Calibration!!!!!!
<3>[ 141.931181] c0 [TSP] Calibration End!!!!!!
<3>[ 141.935515] c0 [TSP]TA_probe MXT224 T9 Byte7 is 70
<3>[ 141.936304] c0 [TSP] calibration success!!!
<7>[ 141.936341] c0 [TouchKey] sec_touchkey_late_resume
<6>[ 141.936390] c0 s5p_gpioint_set_type irq:389 is at GPL0(5)
<3>[ 141.963169] c0 [TSP] Calibration!!!!!!
<3>[ 141.978922] c0 [TSP] Calibration End!!!!!!
<7>[ 141.991842] c0 [Touchkey] LED returned on
<4>[ 142.005425] c0 Mali: Mali frequency 133
<4>[ 142.005529] c0 Mali: = regulator_set_voltage: 950000, 950000
<6>[ 142.250496] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<3>[ 144.293761] c0 [TSP] calibration was good
<3>[ 144.294354] c0 [TSP] ta_status is 1
<7>[ 144.294664] c0 [TSP] auto calibration disable!!!
<6>[ 146.160132] c0 cpu1 turning on!
<6>[ 146.184717] c0 vfp_hotplug: Ignored hotplug event 3 on 1.CPU1: Booted secondary processor
<4>[ 146.185861] c1 CPU1: Booted secondary processor
<6>[ 146.185901] c1 vfp_hotplug: Enabled vfp on 1.
<6>[ 146.185949] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 146.186933] c0 vfp_hotplug: Ignored hotplug event 2 on 1.
<6>[ 146.186991] c0 cpu1 on
<6>[ 146.190086] c1 Switched to NOHz mode on CPU #1
<6>[ 146.506187] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 146.545071] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 146.585077] c0 mif: usb_port_resume: 1283, 4
<6>[ 146.586067] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff ab 07 06 03 53 7e
<6>[ 148.185250] c0 cpu1 turnning off!
<6>[ 148.185320] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 148.185879] c1 IRQ112 no longer affine to CPU1
<6>[ 148.186156] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 148.186317] c0 CPU1: shutdown
<6>[ 148.187055] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 148.187281] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 148.187419] c0 cpu1 off!
<6>[ 149.060126] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 149.102000] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 149.140187] c0 mif: usb_port_resume: 1283, 4
<6>[ 149.141669] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff ab 07 06 03 56 7e
<6>[ 150.560266] c0 sec-thermistor sec-thermistor: notify_change_of_temperature: uevent: TEMPERATURE=330
<6>[ 151.185132] c0 cpu1 turning on!
<6>[ 151.209284] c0 vfp_hotplug: Ignored hotplug event 3 on 1.CPU1: Booted secondary processor
<4>[ 151.210434] c1 CPU1: Booted secondary processor
<6>[ 151.210474] c1 vfp_hotplug: Enabled vfp on 1.
<6>[ 151.210522] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 151.211501] c0 vfp_hotplug: Ignored hotplug event 2 on 1.
<6>[ 151.211584] c0 cpu1 on
<6>[ 151.215064] c1 Switched to NOHz mode on CPU #1
<6>[ 151.638697] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 151.672638] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 151.702785] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 151.702833] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 151.702879] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 151.715103] c1 mif: usb_port_resume: 1283, 4
<6>[ 151.716457] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff ab 07 06 03 58 7e
<6>[ 152.280376] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<4>[ 153.216659] c1 Mali: mem_usage before 4143 : 33030144
<6>[ 155.210572] c0 cpu1 turnning off!
<6>[ 155.210754] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 155.212247] c1 IRQ112 no longer affine to CPU1
<6>[ 155.213030] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 155.213251] c0 CPU1: shutdown
<6>[ 155.215934] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 155.216491] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 155.218747] c0 cpu1 off!
<7>[ 158.310257] c0 [keys]PWR 1
<7>[ 158.515284] c0 [keys]PWR 0
<6>[ 159.213844] c0 request_suspend_state: sleep (0->3) at 159213809042 (2014-12-20 13:27:53.043233832 UTC)
<7>[ 159.213972] c0 [TouchKey] sec_touchkey_early_suspend
<6>[ 159.216003] c0 sii9234_early_suspend()
<6>[ 159.216057] c0 lcd panel: +ld9040_early_suspend
<6>[ 159.216101] c0 lcd panel: ld9040_power_off
<6>[ 159.233203] c0 k3dh_ioctl: opened = 1, enable = 0
<6>[ 159.425496] c0 lcd panel: -ld9040_early_suspend
<6>[ 159.425526] c0 +s3cfb_early_suspend
<7>[ 159.436695] c0 s3cfb - disable power domain
<6>[ 159.436726] c0 -s3cfb_early_suspend
<6>[ 159.436770] c0 sync_system +
<6>[ 159.448050] c0 active wake lock sync_system
<6>[ 159.448073] c0 active wake lock PowerManagerService.WakeLocks
<6>[ 159.448099] c0 active wake lock PowerManagerService.Broadcasts
<6>[ 159.448126] c0 active wake lock usb device wake lock
<6>[ 159.448149] c0 active wake lock usb cb wake lock
<6>[ 159.448171] c0 active wake lock vbus_present
<6>[ 159.554021] c0 sync_system -
<6>[ 159.715156] c0 cpu1 turning on!
<6>[ 159.726901] c0 vfp_hotplug: Ignored hotplug event 3 on 1.CPU1: Booted secondary processor
<4>[ 159.727996] c1 CPU1: Booted secondary processor
<6>[ 159.728030] c1 vfp_hotplug: Enabled vfp on 1.
<6>[ 159.728079] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 159.728608] c0 vfp_hotplug: Ignored hotplug event 2 on 1.
<6>[ 159.728661] c0 cpu1 on
<6>[ 159.730036] c1 Switched to NOHz mode on CPU #1
<6>[ 161.728911] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 161.729023] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 161.729122] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 161.730535] c0 cpu1 turnning off!
<6>[ 161.730704] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 161.733793] c1 IRQ112 no longer affine to CPU1
<6>[ 161.734496] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 161.734808] c0 CPU1: shutdown
<6>[ 161.737272] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 161.737710] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 161.738824] c0 cpu1 off!
<6>[ 161.903659] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 161.942025] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<4>[ 161.945691] c0 VFP: HW state (=ffd7fffe) for e2d061b0 on CPU0 not in sync
<6>[ 161.980194] c0 mif: usb_port_resume: 1283, 4
<6>[ 161.986151] c0 mif: IPC-RX(29): 7f 0e 00 00 0b 00 ff ab 07 01 03 ff 03 00 05 7e ...
<4>[ 162.045553] c0 VFP: HW state (=ffd7fffe) for e276a1b0 on CPU0 not in sync
<4>[ 162.150468] c0 VFP: HW state (=ffd7f7fe) for e276a1b0 on CPU0 not in sync
<6>[ 162.301175] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
<4>[ 162.585832] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<4>[ 162.854154] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<4>[ 163.114434] c0 VFP: HW state (=ffd7fffe) for c86621b0 on CPU0 not in sync
<4>[ 163.375507] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<4>[ 163.502420] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<4>[ 163.624227] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<4>[ 163.972721] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<4>[ 164.214809] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<4>[ 164.546420] c0 VFP: HW state (=ffd7fffe) for c86621b0 on CPU0 not in sync
<4>[ 164.685804] c0 VFP: HW state (=ffd7f7fe) for c86621b0 on CPU0 not in sync
<3>[ 164.809081] c0 [TouchKey] touchkey is not enabled. 226
<6>[ 164.815287] c0 request_suspend_state: wakeup (3->0) at 164815230835 (2014-12-20 13:27:58.644653625 UTC)
<6>[ 164.815987] c0 s3cfb s3cfb.0: +s3cfb_late_resume
<6>[ 164.816464] c0 s3cfb s3cfb.0: fimd sclk rate 50000000, clkdiv 0x7000ff
<6>[ 164.816621] c0 s3cfb s3cfb.0: parent clock: 50000000, vclk: 25067000, vclk div: 2
<6>[ 164.816798] c0 mdnie mdnie: mode=0, scenario=0, outdoor=0, cabc=0, CYANOGENMOD
<6>[ 164.817101] c0 s3cfb s3cfb.0: -s3cfb_late_resume
<6>[ 164.817198] c0 lcd panel: +ld9040_late_resume
<6>[ 164.817286] c0 lcd panel: ld9040_power_on
<6>[ 164.823332] c0 k3dh_ioctl: opened = 0, enable = 1
<4>[ 164.916422] c0 Mali: = regulator_set_voltage: 900000, 900000
<4>[ 164.940145] c0 Mali: Mali frequency 200
<6>[ 164.995957] c0 mif: link_pm_slave_wake: gpio [SWK] set [1]
<6>[ 165.005838] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 165.012907] c0 lcd panel: id=2 brightness=0, bl=0, candela=30
<6>[ 165.012942] c0 lcd panel: -ld9040_late_resume
<6>[ 165.012973] c0 sii9234_late_resume()
<6>[ 165.046107] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 165.095078] c0 mif: usb_port_resume: 1283, 4
<6>[ 165.096227] c0 mif: IPC-RX(16): 7f 0e 00 00 0b 00 ff ab 07 01 03 ff 04 00 05 7e
<6>[ 165.096449] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 ac 00 08 03 02 7e
<6>[ 165.099863] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff ac 08 03 02 02 06 04 32 33 ...
<6>[ 165.100493] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 ad 00 08 05 02 ff 03 7e
<6>[ 165.102862] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff ad 08 05 02 04 03 06 01 0d ...
<6>[ 165.103297] c0 mif: IPC-TX(14): 7f 0c 00 00 09 00 ae 00 08 05 02 ff 02 7e
<6>[ 165.105609] c0 mif: IPC-RX(23): 7f 15 00 00 12 00 ff ae 08 05 02 04 02 06 01 0d ...
<6>[ 165.106163] c0 mif: IPC-TX(12): 7f 0a 00 00 07 00 af 00 08 02 02 7e
<6>[ 165.108229] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff af 08 02 02 02 7e
<3>[ 165.130107] c0 [TSP] ta_status is 1
<3>[ 165.130128] c0 [TSP] mxt224_ta_probe
<3>[ 165.130624] c0 [TSP] Calibration!!!!!!
<3>[ 165.131184] c0 [TSP] Calibration End!!!!!!
<3>[ 165.136272] c0 [TSP]TA_probe MXT224 T9 Byte7 is 70
<3>[ 165.136967] c0 [TSP] calibration success!!!
<7>[ 165.136989] c0 [TouchKey] sec_touchkey_late_resume
<6>[ 165.137021] c0 s5p_gpioint_set_type irq:389 is at GPL0(5)
<3>[ 165.164203] c0 [TSP] Calibration!!!!!!
<3>[ 165.179048] c0 [TSP] Calibration End!!!!!!
<7>[ 165.190783] c0 [Touchkey] LED returned on
<4>[ 165.440425] c0 Mali: Mali frequency 133
<4>[ 165.440538] c0 Mali: = regulator_set_voltage: 950000, 950000
<6>[ 166.000748] c0 sec-battery sec-battery: sec_bat_check_temper: recovery count = 0
<6>[ 166.001745] c0 sec-battery sec-battery: sec_bat_check_temper: temp=280, adc=910
<6>[ 166.001888] c0 sec-battery sec-battery: Time past : 162 secs
<6>[ 166.001990] c0 max8922-charger max8922-charger: max8922_is_charging: charging state = 0x1
<6>[ 166.002106] c0 sec-battery sec-battery: sec_bat_check_ing_level_trigger : full interrupt cnt = 2
<6>[ 166.002245] c0 sec-battery sec-battery: soc(99), vfocv(4146), vcell(4181), temp(28), charging(1), health(1), chg_adc(0)
<6>[ 166.012249] c0 healthd: battery l=99 v=4181 t=28.0 h=2 st=2 c=0 chg=u
<3>[ 167.439656] c0 [TSP] calibration was good
<3>[ 167.440314] c0 [TSP] ta_status is 1
<7>[ 167.440595] c0 [TSP] auto calibration disable!!!
<6>[ 169.235179] c0 cpu1 turning on!
<6>[ 169.260983] c0 vfp_hotplug: Ignored hotplug event 3 on 1.CPU1: Booted secondary processor
<4>[ 169.262116] c1 CPU1: Booted secondary processor
<6>[ 169.262166] c1 vfp_hotplug: Enabled vfp on 1.
<6>[ 169.262238] c1 notifier_call_chain : NOTIFY BAD tick_notify
<6>[ 169.263004] c0 vfp_hotplug: Ignored hotplug event 2 on 1.
<6>[ 169.263083] c0 cpu1 on
<6>[ 169.265067] c1 Switched to NOHz mode on CPU #1
<6>[ 169.862335] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 169.891294] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 169.940148] c0 mif: usb_port_resume: 1283, 4
<6>[ 169.941453] c1 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff af 07 06 03 58 7e
<6>[ 171.260448] c0 cpu1 turnning off!
<6>[ 171.260632] c0 vfp_hotplug: Ignored hotplug event 5 on 1.
<4>[ 171.262158] c1 IRQ112 no longer affine to CPU1
<6>[ 171.262865] c1 vfp_hotplug: hw_state for 1 cleared.
<5>[ 171.263076] c0 CPU1: shutdown
<6>[ 171.264795] c0 vfp_hotplug: Ignored hotplug event 7 on 1.
<6>[ 171.266205] c0 vfp_hotplug: Ignored hotplug event 9 on 1.
<6>[ 171.271293] c0 cpu1 off!
<6>[ 171.763716] c0 max17042 9-0036: max17042_get_soc : soc(615f)
<6>[ 171.763806] c0 max17042_need_soc_recal: HW(0xe)
<6>[ 171.763888] c0 max17042 9-0036: max17042_get_soc : use raw (97), soc (99)
<6>[ 172.082146] c0 mif: link_pm_irq_handler: gpio [HWK] get [0]
<6>[ 172.111544] c0 mif: link_pm_irq_handler: gpio [HWK] get [1]
<6>[ 172.160199] c0 mif: usb_port_resume: 1283, 4
<6>[ 172.161611] c0 mif: IPC-RX(13): 7f 0b 00 00 08 00 ff af 07 06 03 56 7e
<6>[ 172.320535] c0 sec-battery sec-battery: sec_bat_check_vf: Battery Health (1)
static union vfp_state** vfp_current_hw_state_address = &vfp_current_hw_state;
/** VFP hardware support entry point.
**
** r0 = instruction opcode (32-bit ARM or two 16-bit Thumb)
** r2 = PC value to resume execution after successful emulation
** r9 = normal "successful" return address
** r10 = vfp_state union
** r11 = CPU number
** lr = unrecognised instruction return address
** IRQs enabled.
**/
void vfp_support_entry(
u32 opcode, /* r0 */
u32 next_pc, /* r2 */
union vfp_state* thread_state, /* r10 */
void* __success_return_addr, /* r9 */
u32 cpu) /* r11 */
{
u32 fpexc; /* r1 */
union vfp_state** cur_hw_states; /* r3 */
union vfp_state* hw_state; /* r4 */
u32 fpexc_no_exc; /* r5 */
u32 fpinst /* r6 */, fpinst2 /* r8 */;
DBGSTR3("instr %08x pc %08x state %p", opcode, next_pc, thread_state);
fpexc = fmrx(FPEXC); /** Is the VFP enabled? */
DBGSTR1("fpexc %08x", fpexc);
if (!(fpexc & FPEXC_EN)) {
DBGSTR1("enable %x", thread_state); /* %x ????? */
cur_hw_states = vfp_current_hw_state_address;
fpexc |= FPEXC_EN;
fpexc_no_exc = fpexc & ~FPEXC_EX; /** Make sure exceptions are disabled. */
hw_state = cur_hw_states[cpu];
/** This thread owns the hw context? */
/** For SMP, if this thread does not own the hw context, then we
** need to reload it. No need to save the old state as on SMP,
** we always save the state when we switch away from a thread.
**/
if (hw_state != thread_state
#ifdef CONFIG_SMP
/** This thread has ownership of the current hardware context.
** However, it may have been migrated to another CPU, in which
** case the saved state is newer than the hardware context.
** Check this by looking at the CPU number which the state was
** last loaded onto.
**/
|| (thread_state->hard.cpu != cpu)
) { /* vfp_reload_hw: */
/** We're loading this threads state into the VFP hardware. Update
** the CPU number which contains the most up to date VFP context.
**/
thread_state->hard.cpu = cpu;
/** enable VFP, disable any pending
** exceptions, so we can get at the
** rest of it.
**/
fmxr(FPEXC, fpexc_no_exc);
#endif /* CONFIG_SMP */
DBGSTR1("load state %p", thread_state);
cur_hw_states[cpu] = thread_state;
/** Load the saved state back into the VFP
** reload the working registers while
** FPEXC is in a safe state
**/
VFPFLDMIA(thread_state, fpexc_no_exc);
__ldmia(thread_state,
fpexc, fpexc_no_exc, fpinst, fpinst2);
#ifndef CONFIG_CPU_FEROCEON
if (fpexc | FPEXC_EX)
fmxr(FPINST, fpinst);
if (fpexc | FPEXC_FP2V)
fmxr(FPINST2, fpinst2);
#endif
fpmxr(FPSCR, fpexc); /** restore status */
}
/* vfp_hw_state_valid: */
if (!(fpexc | FPEXC_EX)) {
fmxr(FPEXC, fpexc); /** Restore FPEXC last */
next_pc -= 4;
__s_pc = next_pc;
dec_preempt_count_ti(thread_state, hw_state);
__return_to_success();
}
} else {
/* look_for_VFP_exceptions: */
/** Check for synchronous or asynchronous exception */
if (!(fpexc | (FPEXC_EX | FPEXC_DEX))) {
/** On some implementations of the VFP subarch 1, setting FPSCR.IXE
** causes all the CDP instructions to be bounced synchronously without
** setting the FPEXC.EX bit
**/
fpexc_no_exc = fmrx(FPSCR);
if (!(fpexc_no_exc | FPSCR_IXE)) {
if (fpexc_no_exc | FPSCR_LENGTH_MASK) {
fpexc |= FPEXC_DEX;
} else { /* skip: */
/** Fall into hand on to next handler - appropriate coproc instr
** not recognised by VFP
**/
DBGSTR("not VFP");
dec_preempt_count_ti(thread_state, hw_state);
return;
}
}
}
}
/* process_exception: */
DBGSTR("bounce");
next_pc = __sp; /** nothing stacked - regdump is at TOS. */
__return_address = __success_return_addr; /** setup for a return to the user code. */
/** Now call the C code to package up the bounce to the support code
** r0 holds the trigger instruction
** r1 holds the FPEXC value
** r2 pointer to register dump
**/
return VFP_bounce(opcode, fpexc, next_pc);
/** we have handled this - the support
** code will raise an exception if
** required. If not, the user code will
** retry the faulted instruction
**/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment