techmik

dmesg camera fail

May 5th, 2011
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 59.73 KB | None | 0 0
  1. techmik@michaels-laptop:~$ adb dmesg
  2. Android Debug Bridge version 1.0.26
  3.  
  4. -d - directs command to the only connected USB device
  5. returns an error if more than one USB device is present.
  6. -e - directs command to the only running emulator.
  7. returns an error if more than one emulator is running.
  8. -s <serial number> - directs command to the USB device or emulator with
  9. the given serial number. Overrides ANDROID_SERIAL
  10. environment variable.
  11. -p <product name or path> - simple product name like 'sooner', or
  12. a relative/absolute path to a product
  13. out directory like 'out/target/product/sooner'.
  14. If -p is not specified, the ANDROID_PRODUCT_OUT
  15. environment variable is used, which must
  16. be an absolute path.
  17. devices - list all connected devices
  18. connect <host>[:<port>] - connect to a device via TCP/IP
  19. Port 5555 is used by default if no port number is specified.
  20. disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
  21. Port 5555 is used by default if no port number is specified.
  22. Using this ocmmand with no additional arguments
  23. will disconnect from all connected TCP/IP devices.
  24.  
  25. device commands:
  26. adb push <local> <remote> - copy file/dir to device
  27. adb pull <remote> [<local>] - copy file/dir from device
  28. adb sync [ <directory> ] - copy host->device only if changed
  29. (-l means list but don't copy)
  30. (see 'adb help all')
  31. adb shell - run remote shell interactively
  32. adb shell <command> - run remote shell command
  33. adb emu <command> - run emulator console command
  34. adb logcat [ <filter-spec> ] - View device log
  35. adb forward <local> <remote> - forward socket connections
  36. forward specs are one of:
  37. tcp:<port>
  38. localabstract:<unix domain socket name>
  39. localreserved:<unix domain socket name>
  40. localfilesystem:<unix domain socket name>
  41. dev:<character device name>
  42. jdwp:<process pid> (remote only)
  43. adb jdwp - list PIDs of processes hosting a JDWP transport
  44. adb install [-l] [-r] [-s] <file> - push this package file to the device and install it
  45. ('-l' means forward-lock the app)
  46. ('-r' means reinstall the app, keeping its data)
  47. ('-s' means install on SD card instead of internal storage)
  48. adb uninstall [-k] <package> - remove this app package from the device
  49. ('-k' means keep the data and cache directories)
  50. adb bugreport - return all information from the device
  51. that should be included in a bug report.
  52.  
  53. adb help - show this help message
  54. adb version - show version num
  55.  
  56. DATAOPTS:
  57. (no option) - don't touch the data partition
  58. -w - wipe the data partition
  59. -d - flash the data partition
  60.  
  61. scripting:
  62. adb wait-for-device - block until device is online
  63. adb start-server - ensure that there is a server running
  64. adb kill-server - kill the server if it is running
  65. adb get-state - prints: offline | bootloader | device
  66. adb get-serialno - prints: <serial-number>
  67. adb status-window - continuously print device status for a specified device
  68. adb remount - remounts the /system partition on the device read-write
  69. adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program
  70. adb reboot-bootloader - reboots the device into the bootloader
  71. adb root - restarts the adbd daemon with root permissions
  72. adb usb - restarts the adbd daemon listening on USB
  73. adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port
  74. networking:
  75. adb ppp <tty> [parameters] - Run PPP over USB.
  76. Note: you should not automatically start a PPP connection.
  77. <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
  78. [parameters] - Eg. defaultroute debug dump local notty usepeerdns
  79.  
  80. adb sync notes: adb sync [ <directory> ]
  81. <localdir> can be interpreted in several ways:
  82.  
  83. - If <directory> is not specified, both /system and /data partitions will be updated.
  84.  
  85. - If it is "system" or "data", only the corresponding partition
  86. is updated.
  87.  
  88. environmental variables:
  89. ADB_TRACE - Print debug information. A comma separated list of the following values
  90. 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
  91. ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.
  92. ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.
  93. techmik@michaels-laptop:~$ adb shell
  94. # dmesg
  95. <6>[ 0.000000] Initializing cgroup subsys cpu
  96. <5>[ 0.000000] Linux version 2.6.35.7-02808-g13ab6f4 (atin@waltest9-ma) (gcc version 4.4.3 (GCC) ) #1 PREEMPT Wed May 4 05:56:17 EDT 2011
  97. <4>[ 0.000000] CPU: ARMv7 Processor [412fc082] revision 2 (ARMv7), cr=10c53c7f
  98. <4>[ 0.000000] CPU: VIPT nonaliasing data cache, VIPT nonaliasing instruction cache
  99. <4>[ 0.000000] Machine: aries
  100. <4>[ 0.000000] Memory policy: ECC disabled, Data cache writeback
  101. <7>[ 0.000000] On node 0 totalpages: 20480
  102. <7>[ 0.000000] free_area_init_node: node 0, pgdat c08eaab4, node_mem_map c09dd000
  103. <7>[ 0.000000] Normal zone: 160 pages used for memmap
  104. <7>[ 0.000000] Normal zone: 0 pages reserved
  105. <7>[ 0.000000] Normal zone: 20320 pages, LIFO batch:3
  106. <7>[ 0.000000] On node 1 totalpages: 65536
  107. <7>[ 0.000000] free_area_init_node: node 1, pgdat c08eb13c, node_mem_map d0002000
  108. <7>[ 0.000000] Normal zone: 512 pages used for memmap
  109. <7>[ 0.000000] Normal zone: 0 pages reserved
  110. <7>[ 0.000000] Normal zone: 65024 pages, LIFO batch:15
  111. <7>[ 0.000000] On node 2 totalpages: 32512
  112. <7>[ 0.000000] free_area_init_node: node 2, pgdat c08eb7c4, node_mem_map e0001000
  113. <7>[ 0.000000] Normal zone: 254 pages used for memmap
  114. <7>[ 0.000000] Normal zone: 0 pages reserved
  115. <7>[ 0.000000] Normal zone: 32258 pages, LIFO batch:7
  116. <7>[ 0.000000] On node 3 totalpages: 0
  117. <7>[ 0.000000] free_area_init_node: node 3, pgdat c08ebe4c, node_mem_map c0a85c20
  118. <4>[ 0.000000] Normal zone: 1 pages exceeds realsize 0
  119. <4>[ 0.000000] CPU S5PV210/S5PC110 (id 0x43110221)
  120. <7>[ 0.000000] s5pv210_init_clocks: initializing clocks
  121. <6>[ 0.000000] S3C24XX Clocks, Copyright 2004 Simtec Electronics
  122. <7>[ 0.000000] s5pv210_setup_clocks: registering clocks
  123. <7>[ 0.000000] s5pv210_setup_clocks: clkdiv0 = 14131330, clkdiv1 = 00300400
  124. <7>[ 0.000000] s5pv210_setup_clocks: xtal is 24000000
  125. <6>[ 0.000000] S5PV210: PLL settings, A=800000000, M=667000000, E=96000000 V=54000000
  126. <6>[ 0.000000] S5PV210: ARMCLK=800000000, HCLKM=200000000, HCLKD=166750000
  127. <6>[ 0.000000] HCLKP=133400000, PCLKM=100000000, PCLKD=83375000, PCLKP=66700000
  128. <6>[ 0.000000] sclk_dmc: source is mout_mpll (1), rate is 166750000
  129. <6>[ 0.000000] sclk_onenand: source is hclk_dsys (1), rate is 166750000
  130. <6>[ 0.000000] sclk: source is mout_mpll (6), rate is 133400000
  131. <6>[ 0.000000] sclk: source is mout_mpll (6), rate is 66700000
  132. <6>[ 0.000000] sclk: source is mout_mpll (6), rate is 66700000
  133. <6>[ 0.000000] sclk: source is mout_mpll (6), rate is 66700000
  134. <6>[ 0.000000] sclk_mixer: source is sclk_dac (0), rate is 54000000
  135. <6>[ 0.000000] sclk_spdif: source is sclk_audio (0), rate is 24000000
  136. <6>[ 0.000000] sclk_fimc: source is ext_xtal (0), rate is 24000000
  137. <6>[ 0.000000] sclk_fimc: source is ext_xtal (0), rate is 24000000
  138. <6>[ 0.000000] sclk_fimc: source is ext_xtal (0), rate is 24000000
  139. <6>[ 0.000000] sclk_cam: source is xusbxti (1), rate is 24000000
  140. <6>[ 0.000000] sclk_cam: source is ext_xtal (0), rate is 24000000
  141. <6>[ 0.000000] sclk_fimd: source is mout_mpll (6), rate is 166750000
  142. <6>[ 0.000000] sclk_mmc: source is mout_mpll (6), rate is 51307692
  143. <6>[ 0.000000] sclk_mmc: source is mout_mpll (6), rate is 47642857
  144. <6>[ 0.000000] sclk_mmc: source is mout_mpll (6), rate is 47642857
  145. <6>[ 0.000000] sclk_mmc: source is mout_mpll (6), rate is 47642857
  146. <6>[ 0.000000] sclk_mfc: source is sclk_a2m (0), rate is 200000000
  147. <6>[ 0.000000] sclk_fimg2d: source is sclk_a2m (0), rate is 200000000
  148. <6>[ 0.000000] sclk: source is mout_mpll (1), rate is 66700000
  149. <6>[ 0.000000] sclk_csis: source is ext_xtal (0), rate is 24000000
  150. <6>[ 0.000000] sclk_spi: source is mout_epll (7), rate is 96000000
  151. <6>[ 0.000000] sclk_spi: source is mout_epll (7), rate is 96000000
  152. <6>[ 0.000000] sclk_pwi: source is ext_xtal (0), rate is 24000000
  153. <6>[ 0.000000] sclk_pwm: source is ext_xtal (0), rate is 24000000
  154. <6>[ 0.000000] sclk_mdnie: source is mout_mpll (6), rate is 166750000
  155. <6>[ 0.000000] sclk_mdnie_pwm: source is ext_xtal (0), rate is 24000000
  156. <6>[ 0.000000] s5pv210: 37748736 bytes system memory reserved for mfc at 0x30a90000
  157. <6>[ 0.000000] s5pv210: 37748736 bytes system memory reserved for mfc at 0x40204000
  158. <6>[ 0.000000] s5pv210: 12582912 bytes system memory reserved for fimc0 at 0x42604000
  159. <6>[ 0.000000] s5pv210: 10137600 bytes system memory reserved for fimc1 at 0x43204000
  160. <6>[ 0.000000] s5pv210: 12582912 bytes system memory reserved for fimc2 at 0x43baf000
  161. <6>[ 0.000000] s5pv210: 8388608 bytes system memory reserved for jpeg at 0x32e90000
  162. <6>[ 0.000000] s5pv210: 6144000 bytes system memory reserved for fimd at 0x447af000
  163. <4>[ 0.000000] Built 3 zonelists in Zone order, mobility grouping on. Total pages: 117602
  164. <5>[ 0.000000] Kernel command line: console=ttySAC2,115200 loglevel=4
  165. <6>[ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
  166. <6>[ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
  167. <6>[ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
  168. <6>[ 0.000000] Memory: 80MB 256MB 127MB = 463MB total
  169. <5>[ 0.000000] Memory: 337436k/337436k available, 136676k reserved, 0K highmem
  170. <5>[ 0.000000] Virtual kernel memory layout:
  171. <5>[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
  172. <5>[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
  173. <5>[ 0.000000] DMA : 0xff000000 - 0xffe00000 ( 14 MB)
  174. <5>[ 0.000000] vmalloc : 0xe8000000 - 0xfc000000 ( 320 MB)
  175. <5>[ 0.000000] lowmem : 0xc0000000 - 0xe7f00000 ( 639 MB)
  176. <5>[ 0.000000] modules : 0xbf000000 - 0xc0000000 ( 16 MB)
  177. <5>[ 0.000000] .init : 0xc0008000 - 0xc00b2000 ( 680 kB)
  178. <5>[ 0.000000] .text : 0xc00b2000 - 0xc08e5000 (8396 kB)
  179. <5>[ 0.000000] .data : 0xc08e6000 - 0xc092c7a0 ( 282 kB)
  180. <6>[ 0.000000] SLUB: Genslabs=9, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=4
  181. <6>[ 0.000000] Hierarchical RCU implementation.
  182. <6>[ 0.000000] RCU-based detection of stalled CPUs is disabled.
  183. <6>[ 0.000000] Verbose stalled-CPUs detection is disabled.
  184. <6>[ 0.000000] NR_IRQS:393
  185. <6>[ 0.000000] VIC @fd000000: id 0x00041192, vendor 0x41
  186. <6>[ 0.000000] VIC @fd010000: id 0x00041192, vendor 0x41
  187. <6>[ 0.000000] VIC @fd020000: id 0x00041192, vendor 0x41
  188. <6>[ 0.000000] VIC @fd030000: id 0x00041192, vendor 0x41
  189. <6>[ 0.000000] mult[140737]
  190. <6>[ 0.000000] max_delta_ns[2937815369]
  191. <6>[ 0.000000] min_delta_ns[30517]
  192. <6>[ 0.000000] rate[32768]
  193. <6>[ 0.000000] HZ[256]
  194. <6>[ 0.000000] console [ttySAC2] enabled
  195. <6>[ 0.000228] Calibrating delay loop... 796.20 BogoMIPS (lpj=1556480)
  196. <6>[ 0.081947] pid_max: default: 32768 minimum: 301
  197. <4>[ 0.082016] Mount-cache hash table entries: 512
  198. <6>[ 0.082352] Initializing cgroup subsys debug
  199. <6>[ 0.082367] Initializing cgroup subsys cpuacct
  200. <6>[ 0.082378] Initializing cgroup subsys freezer
  201. <6>[ 0.082408] CPU: Testing write buffer coherency: ok
  202. <6>[ 0.084913] regulator: core version 0.5
  203. <6>[ 0.085076] NET: Registered protocol family 16
  204. <6>[ 0.092726] console [ttyFIQ0] enabled
  205. <6>[ 0.092831] Registered FIQ tty driver c4c123c0
  206. <6>[ 0.095866] ram_console: got buffer at 57f00000, size ff000
  207. <6>[ 0.096004] ram_console: found existing buffer, size 25635, start 25635
  208. <6>[ 0.152757] console [ram-1] enabled
  209. <6>[ 0.152852] S5PC110 Hardware version : EVT1
  210. <6>[ 0.155660] HWREV is 0x1
  211. <4>[ 0.158686] S3C Power Management, Copyright 2004 Simtec Electronics
  212. <6>[ 0.164496] pmstats at 57fff000
  213. <6>[ 0.168749] S5PV210: Initializing architecture
  214. <6>[ 0.172294] s3c24xx-pwm s3c24xx-pwm.0: tin at 66700000, tdiv at 66700000, tin=divclk, base 0
  215. <6>[ 0.180487] s3c24xx-pwm s3c24xx-pwm.1: tin at 66700000, tdiv at 66700000, tin=divclk, base 8
  216. <6>[ 0.188888] s3c24xx-pwm s3c24xx-pwm.2: tin at 66700000, tdiv at 66700000, tin=divclk, base 12
  217. <6>[ 0.197387] s3c24xx-pwm s3c24xx-pwm.3: tin at 66700000, tdiv at 66700000, tin=divclk, base 16
  218. <6>[ 0.205944] regulator: pd_audio_supply: 5000 mV normal
  219. <6>[ 0.211154] regulator: pd_cam_supply: 5000 mV normal
  220. <6>[ 0.216091] regulator: pd_tv_supply: 5000 mV normal
  221. <6>[ 0.221118] regulator: pd_lcd_supply: 5000 mV normal
  222. <6>[ 0.226052] regulator: pd_g3d_supply: 5000 mV normal
  223. <6>[ 0.231163] regulator: pd_mfc_supply: 5000 mV normal
  224. <4>[ 0.241078] bio: create slab <bio-0> at 0
  225. <5>[ 0.244397] SCSI subsystem initialized
  226. <6>[ 0.247968] i2c-gpio i2c-gpio.4: using pins 247 (SDA) and 246 (SCL)
  227. <6>[ 0.253882] i2c-gpio i2c-gpio.5: using pins 203 (SDA) and 204 (SCL)
  228. <6>[ 0.261334] regulator: VALIVE_1.2V: 1200 mV
  229. <6>[ 0.264826] regulator: VUSB_1.1V: 1100 mV
  230. <6>[ 0.269457] regulator: VADC_3.3V: 3300 mV
  231. <6>[ 0.272952] regulator: VLCD_1.8V: 1800 mV
  232. <6>[ 0.277037] regulator: VUSB_3.3V: 3300 mV
  233. <6>[ 0.281681] regulator: VCC_2.8V_PDA: 2800 mV
  234. <6>[ 0.285446] regulator: CAM_AF_3.0V: 3000 mV
  235. <6>[ 0.289702] regulator: CAM_SENSOR_CORE_1.2V: 1200 mV
  236. <6>[ 0.294809] regulator: VGA_VDDIO_2.8V: 2800 mV
  237. <6>[ 0.299227] regulator: VGA_DVDD_1.8V: 1800 mV
  238. <6>[ 0.303738] regulator: CAM_ISP_HOST_2.8V: 2800 mV
  239. <6>[ 0.308415] regulator: VGA_AVDD_2.8V: 2800 mV
  240. <6>[ 0.312849] regulator: VCC_3.0V_LCD: 3000 mV
  241. <6>[ 0.317059] regulator: VDD_ARM: 750 <--> 1500 mV at 1200 mV
  242. <6>[ 0.322609] regulator: VDD_INT: 750 <--> 1500 mV at 1100 mV
  243. <6>[ 0.329003] regulator: VCC_1.8V: 1800 mV
  244. <6>[ 0.332425] regulator: CAM_ISP_CORE_1.2V: 1200 mV
  245. <6>[ 0.338350] i2c-gpio i2c-gpio.6: using pins 206 (SDA) and 209 (SCL)
  246. <6>[ 0.343441] i2c-gpio i2c-gpio.7: using pins 201 (SDA) and 202 (SCL)
  247. <6>[ 0.349763] i2c-gpio i2c-gpio.9: using pins 245 (SDA) and 244 (SCL)
  248. <6>[ 0.355924] i2c-gpio i2c-gpio.11: using pins 114 (SDA) and 98 (SCL)
  249. <6>[ 0.362250] i2c-gpio i2c-gpio.12: using pins 173 (SDA) and 172 (SCL)
  250. <6>[ 0.368485] i2c-gpio i2c-gpio.13: using pins 240 (SDA) and 239 (SCL)
  251. <6>[ 0.374901] i2c-gpio i2c-gpio.10: using pins 197 (SDA) and 198 (SCL)
  252. <6>[ 0.381199] s3c-i2c s3c2440-i2c.0: i2c-0: S3C I2C adapter
  253. <6>[ 0.386582] s3c-i2c s3c2440-i2c.1: i2c-1: S3C I2C adapter
  254. <6>[ 0.391909] s3c-i2c s3c2440-i2c.2: i2c-2: S3C I2C adapter
  255. <6>[ 0.397496] Advanced Linux Sound Architecture Driver Version 1.0.23.
  256. <6>[ 0.403840] Bluetooth: Core ver 2.15
  257. <6>[ 0.407093] NET: Registered protocol family 31
  258. <6>[ 0.411355] Bluetooth: HCI device and connection manager initialized
  259. <6>[ 0.417766] Bluetooth: HCI socket layer initialized
  260. <6>[ 0.422674] Switching to clocksource clock_source_systimer
  261. <6>[ 0.429135] NET: Registered protocol family 2
  262. <6>[ 0.432545] IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
  263. <6>[ 0.440144] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
  264. <6>[ 0.446770] TCP bind hash table entries: 16384 (order: 6, 327680 bytes)
  265. <6>[ 0.453616] TCP: Hash tables configured (established 16384 bind 16384)
  266. <6>[ 0.459542] TCP reno registered
  267. <6>[ 0.462735] UDP hash table entries: 256 (order: 1, 12288 bytes)
  268. <6>[ 0.468579] UDP-Lite hash table entries: 256 (order: 1, 12288 bytes)
  269. <6>[ 0.475132] NET: Registered protocol family 1
  270. <6>[ 0.643007] wake enabled for irq 165
  271. <6>[ 0.645277] wake disabled for irq 165
  272. <6>[ 0.649408] S5PV210 ADC driver, (c) 2010 Samsung Electronics
  273. <6>[ 0.654891] Loaded driver for PL330 DMAC-0 s3c-pl330
  274. <6>[ 0.659524] DBUFF-64x8bytes Num_Chans-8 Num_Peri-2 Num_Events-32
  275. <6>[ 0.665584] Loaded driver for PL330 DMAC-1 s3c-pl330
  276. <6>[ 0.670529] DBUFF-8x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
  277. <6>[ 0.676584] Loaded driver for PL330 DMAC-2 s3c-pl330
  278. <6>[ 0.681532] DBUFF-8x4bytes Num_Chans-8 Num_Peri-32 Num_Events-32
  279. <6>[ 0.688667] ashmem: initialized
  280. <6>[ 0.690983] ROMFS MTD (C) 2007 Red Hat, Inc.
  281. <7>[ 0.694887] yaffs built May 4 2011 05:56:14 Installing.
  282. <6>[ 0.700277] msgmni has been set to 659
  283. <6>[ 0.707113] alg: No test for stdrng (krng)
  284. <6>[ 0.709919] io scheduler noop registered
  285. <6>[ 0.713760] io scheduler deadline registered
  286. <6>[ 0.718084] io scheduler cfq registered (default)
  287. <6>[ 0.723859] s3cfb s3cfb: [fb2] dma: 0x447af000, cpu: 0xe8800000, size: 0x005dc000
  288. <6>[ 0.735671] s3cfb s3cfb: [fb0] dma: 0x447af000, cpu: 0xe9000000, size: 0x005dc000
  289. <6>[ 0.750331] FIMD src sclk = 166750000
  290. <6>[ 0.799294] s3cfb s3cfb: registered successfully
  291. <4>[ 0.803724] PA FB = 0x447AF000, bits per pixel = 32
  292. <4>[ 0.807491] screen width=480 height=800 va=0xd47af000 pa=0x447af000
  293. <4>[ 0.813631] xres_virtual = 480, yres_virtual = 3200, xoffset = 0, yoffset = 0
  294. <4>[ 0.820819] fb_size=6144000
  295. <4>[ 0.823510] Back frameBuffer[0].VAddr=d4926000 PAddr=44926000 size=1536000
  296. <4>[ 0.830448] Back frameBuffer[1].VAddr=d4a9d000 PAddr=44a9d000 size=1536000
  297. <4>[ 0.837198] Back frameBuffer[2].VAddr=d4c14000 PAddr=44c14000 size=1536000
  298. <6>[ 0.844314] s5pv210-uart.0: s3c2410_serial0 at MMIO 0xe2900000 (irq = 16) is a S3C6400/10
  299. <6>[ 0.852427] s5pv210-uart.1: s3c2410_serial1 at MMIO 0xe2900400 (irq = 20) is a S3C6400/10
  300. <6>[ 0.860503] s5pv210-uart.3: s3c2410_serial3 at MMIO 0xe2900c00 (irq = 28) is a S3C6400/10
  301. <6>[ 0.872878] brd: module loaded
  302. <6>[ 0.875728] loop: module loaded
  303. <6>[ 0.875980] Android kernel panic handler initialized (bind=kpanic)
  304. <6>[ 0.876133] Loading pn544 driver
  305. <6>[ 0.876379] sec_jack_probe : Registering jack driver
  306. <6>[ 0.876900] wake enabled for irq 38
  307. <6>[ 0.878415] sec_jack_detect_irq_thread
  308. <6>[ 0.878636] sec_jack_set_micbias_state: on=1
  309. <6>[ 0.878873] handle_jack_not_inserted
  310. <6>[ 0.879004] sec_jack_set_micbias_state: on=0
  311. <6>[ 0.879329] wake enabled for irq 167
  312. <6>[ 0.879882] fsa9480 7-0025: dev1: 0x0, dev2: 0x0
  313. <6>[ 0.881598] [MODEM] bp_irq() PHONE_ACTIVE_PIN=0
  314. <6>[ 0.881849] wake enabled for irq 47
  315. <6>[ 0.881981] wake enabled for irq 43
  316. <6>[ 0.882857] Muxed OneNAND 512MB 1.8V 16-bit (0x50)
  317. <6>[ 0.883087] OneNAND version = 0x013e
  318. <7>[ 0.883216] Chip support all block unlock
  319. <7>[ 0.883349] Chip has 4KiB pagesize
  320. <6>[ 0.883578] Scanning device for bad blocks
  321. <4>[ 2.201550] onenand_bbt_wait: ecc error = 0xaaaa, controller error 0x0400
  322. <4>[ 2.201812] Bad eraseblock 1584 at 0x18c00000
  323. <4>[ 2.586646] Bad eraseblock 2047 at 0x1ffc0000
  324. <5>[ 2.586787] Creating 8 MTD partitions on "(null)":
  325. <5>[ 2.587020] 0x000001200000-0x000001980000 : "boot"
  326. <5>[ 2.588045] 0x000001980000-0x000002100000 : "recovery"
  327. <5>[ 2.589037] 0x000002100000-0x00000dc80000 : "system"
  328. <5>[ 2.591489] 0x00000dc80000-0x000012c80000 : "cache"
  329. <5>[ 2.593139] 0x00001d880000-0x00001e500000 : "efs"
  330. <5>[ 2.594071] 0x00001e500000-0x00001f280000 : "radio"
  331. <5>[ 2.595009] 0x000012c80000-0x00001d880000 : "datadata"
  332. <5>[ 2.597546] 0x00001f500000-0x000020000000 : "reservoir"
  333. <6>[ 2.689933] tl2796: c0, b-6e3d440a, got v 2040630, factory wants 2079000
  334. <6>[ 2.690181] tl2796: c1, b-8474e005, got v 2023480, factory wants 2016000
  335. <6>[ 2.690428] tl2796: c2, b-803d80a3, got v 1711350, factory wants 1561000
  336. <6>[ 2.834495] tl2796_probe successfully proved
  337. <6>[ 2.834790] PPP generic driver version 2.4.2
  338. <6>[ 2.835080] PPP Deflate Compression module registered
  339. <6>[ 2.835226] PPP BSD Compression module registered
  340. <6>[ 2.836274] PPP MPPE Compression module registered
  341. <6>[ 2.836421] NET: Registered protocol family 24
  342. <6>[ 2.838608] s3c-udc : S3C HS USB Device Controller Driver, (c) 2008-2009 Samsung Electronics
  343. <6>[ 2.838618] s3c-udc : version 15 March 2009 (DMA Mode)
  344. <6>[ 2.839007] android init
  345. <6>[ 2.839171] android_probe pdata: c08f76e0
  346. <6>[ 2.839372] android_bind
  347. <7>[ 2.839581] android_bind_config
  348. <6>[ 2.839853] android_usb gadget: android_usb ready
  349. <7>[ 2.855936] Registered gadget driver 'android_usb'
  350. <6>[ 2.856218] f_adb init
  351. <6>[ 2.856341] android_register_function adb
  352. <6>[ 2.856476] f_mass_storage init
  353. <6>[ 2.856734] fsg_probe pdev: c08f6a80, pdata: c08f7704
  354. <6>[ 2.856922] android_register_function usb_mass_storage
  355. <6>[ 2.857067] f_rndis init
  356. <6>[ 2.857355] android_register_function rndis
  357. <6>[ 2.857495] rndis_function_bind_config MAC: 02:07:4B:47:42:41
  358. <4>[ 2.857664] android_usb gadget: using random self ethernet address
  359. <4>[ 2.857851] android_usb gadget: using random host ethernet address
  360. <6>[ 2.859031] usb0: MAC 8a:a2:14:93:b2:3a
  361. <6>[ 2.859166] usb0: HOST MAC da:97:3a:5f:66:1b
  362. <6>[ 2.859559] android_usb gadget: Mass Storage Function, version: 2009/09/11
  363. <6>[ 2.859806] android_usb gadget: Number of LUNs=2
  364. <6>[ 2.859948] lun0: LUN: removable file: (no medium)
  365. <6>[ 2.860177] lun1: LUN: removable file: (no medium)
  366. <6>[ 2.860406] adb_bind_config
  367. <6>[ 2.860790] f_accessory init
  368. <6>[ 2.861003] android_register_function accessory
  369. <6>[ 2.861320] mice: PS/2 mouse device common for all mice
  370. <6>[ 2.861940] input: mxt224_ts_input as /devices/virtual/input/input0
  371. <6>[ 2.902919] Atmel MXT224 2-004a: family = 0x80, variant = 0x1, version = 0x16, build = 171
  372. <6>[ 2.979441] bma023 5-0038: bma023 found
  373. <6>[ 2.980103] bma023 5-0038: al_version=2, ml_version=1
  374. <6>[ 3.003495] input: accelerometer_sensor as /devices/virtual/input/input1
  375. <6>[ 3.004077] input: magnetic_sensor as /devices/virtual/input/input2
  376. <6>[ 3.004602] input: raw_magnetic_sensor as /devices/virtual/input/input3
  377. <3>[ 3.010835] yas529 12-002e: [init] 0 DeviceID is 80 40
  378. <6>[ 3.025079] input: orientation_sensor as /devices/virtual/input/input4
  379. <6>[ 3.025479] wake enabled for irq 166
  380. <6>[ 3.025736] wake enabled for irq 169
  381. <6>[ 3.025923] wake enabled for irq 170
  382. <6>[ 3.026057] GPIO Input Driver: Start gpio inputs for aries-keypad in interrupt mode
  383. <6>[ 3.026496] input: aries-keypad as /devices/virtual/input/input5
  384. <6>[ 3.027356] input: proximity_sensor as /devices/virtual/input/input6
  385. <6>[ 3.027860] input: light_sensor as /devices/virtual/input/input7
  386. <4>[ 3.028649] S3C24XX RTC, (c) 2004,2006 Simtec Electronics
  387. <6>[ 3.029526] s3c-rtc s3c2410-rtc: rtc disabled, re-enabling
  388. <6>[ 3.030048] using rtc device, s3c, for alarms
  389. <6>[ 3.030215] s3c-rtc s3c2410-rtc: rtc core: registered s3c as rtc0
  390. <6>[ 3.030527] i2c /dev entries driver
  391. <6>[ 3.031995] Linux video capture interface: v2.00
  392. <6>[ 3.032289] mfc_init: <6>S5PC110 MFC Driver, (c) 2009 Samsung Electronics
  393. <6>[ 3.032297]
  394. <6>[ 3.033062] S3C JPEG Driver, (c) 2007 Samsung Electronics
  395. <6>[ 3.033210] JPEG driver for S5PV210
  396. <6>[ 3.035429] max17040 9-0036: MAX17040 Fuel-Gauge Ver 03
  397. <6>[ 3.035918] device-mapper: uevent: version 1.0.3
  398. <6>[ 3.039200] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: [email protected]
  399. <6>[ 3.039388] Bluetooth: HCI UART driver ver 2.2
  400. <6>[ 3.039614] Bluetooth: HCI H4 protocol initialized
  401. <6>[ 3.039920] cpuidle: using governor ladder
  402. <6>[ 3.040138] cpuidle: using governor menu
  403. <6>[ 3.040321] sdhci: Secure Digital Host Controller Interface driver
  404. <6>[ 3.040471] sdhci: Copyright(c) Pierre Ossman
  405. <6>[ 3.040823] s3c-sdhci s3c-sdhci.0: clock source 0: hsmmc (133400000 Hz)
  406. <6>[ 3.040991] s3c-sdhci s3c-sdhci.0: clock source 1: hsmmc (133400000 Hz)
  407. <6>[ 3.041249] s3c-sdhci s3c-sdhci.0: clock source 2: sclk_mmc (51307692 Hz)
  408. <6>[ 3.041740] mmc0: SDHCI controller on samsung-hsmmc [s3c-sdhci.0] using ADMA
  409. <6>[ 3.041957] s3c-sdhci s3c-sdhci.1: clock source 0: hsmmc (133400000 Hz)
  410. <6>[ 3.042212] s3c-sdhci s3c-sdhci.1: clock source 1: hsmmc (133400000 Hz)
  411. <6>[ 3.042383] s3c-sdhci s3c-sdhci.1: clock source 2: sclk_mmc (47642857 Hz)
  412. <6>[ 3.042769] mmc1: SDHCI controller on samsung-hsmmc [s3c-sdhci.1] using ADMA
  413. <6>[ 3.043067] s3c-sdhci s3c-sdhci.2: clock source 0: hsmmc (133400000 Hz)
  414. <6>[ 3.043235] s3c-sdhci s3c-sdhci.2: clock source 1: hsmmc (133400000 Hz)
  415. <6>[ 3.043492] s3c-sdhci s3c-sdhci.2: clock source 2: sclk_mmc (47642857 Hz)
  416. <7>[ 3.043668] Universal :SD Detect configuration
  417. <7>[ 3.043898] Universal : Card status 1
  418. <6>[ 3.044145] mmc2: SDHCI controller on samsung-hsmmc [s3c-sdhci.2] using ADMA
  419. <6>[ 3.044947] logger: created 64K log 'log_main'
  420. <6>[ 3.045173] logger: created 256K log 'log_events'
  421. <6>[ 3.045444] logger: created 64K log 'log_radio'
  422. <6>[ 3.045759] logger: created 64K log 'log_system'
  423. <4>[ 3.046212] No device for DAI WM8994 PAIFRX
  424. <6>[ 3.046844] WM8994 Audio Codec 0.1
  425. <6>[ 3.061873] s3c_idma_preallocate_buffer: VA-e8240000 PA-C0000000 163840bytes
  426. <6>[ 3.062420] asoc: WM8994 PAIFRX <-> s5pc1xx-i2s mapping ok
  427. <6>[ 3.063138] ALSA device list:
  428. <6>[ 3.063269] #0: smdkc110 (WM8994)
  429. <6>[ 3.063511] GACT probability NOT on
  430. <6>[ 3.063649] Mirror/redirect action on
  431. <6>[ 3.063781] u32 classifier
  432. <6>[ 3.063985] Actions configured
  433. <6>[ 3.064116] Netfilter messages via NETLINK v0.30.
  434. <6>[ 3.064319] nf_conntrack version 0.5.0 (5272 buckets, 21088 max)
  435. <4>[ 3.064728] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use
  436. <4>[ 3.064918] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or
  437. <4>[ 3.065166] sysctl net.netfilter.nf_conntrack_acct=1 to enable it.
  438. <6>[ 3.066068] ctnetlink v0.93: registering with nfnetlink.
  439. <6>[ 3.066348] xt_time: kernel timezone is -0000
  440. <6>[ 3.068890] ip_tables: (C) 2000-2006 Netfilter Core Team
  441. <6>[ 3.069155] arp_tables: (C) 2002 David S. Miller
  442. <6>[ 3.069370] TCP cubic registered
  443. <6>[ 3.069622] NET: Registered protocol family 10
  444. <6>[ 3.071677] lo: Disabled Privacy Extensions
  445. <6>[ 3.078092] Mobile IPv6
  446. <6>[ 3.078305] IPv6 over IPv4 tunneling driver
  447. <6>[ 3.080158] sit0: Disabled Privacy Extensions
  448. <6>[ 3.083489] ip6tnl0: Disabled Privacy Extensions
  449. <6>[ 3.085244] NET: Registered protocol family 17
  450. <6>[ 3.085413] NET: Registered protocol family 15
  451. <6>[ 3.085761] Bluetooth: L2CAP ver 2.14
  452. <6>[ 3.085895] Bluetooth: L2CAP socket layer initialized
  453. <6>[ 3.086049] Bluetooth: SCO (Voice Link) ver 0.6
  454. <6>[ 3.086292] Bluetooth: SCO socket layer initialized
  455. <6>[ 3.086525] Bluetooth: RFCOMM TTY layer initialized
  456. <6>[ 3.086765] Bluetooth: RFCOMM socket layer initialized
  457. <6>[ 3.086908] Bluetooth: RFCOMM ver 1.11
  458. <6>[ 3.087053] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
  459. <6>[ 3.087386] NET: Registered protocol family 35
  460. <6>[ 3.087591] ThumbEE CPU extension supported.
  461. <6>[ 3.088625] S5PV210 CPUFREQ Initialising...
  462. <6>[ 3.089074] s5pv210_cpufreq_init: S5PV210 cpu-freq driver
  463. <6>[ 3.089307] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 2
  464. <6>[ 3.092430] regulator_init_complete: disabling pd_mfc_supply
  465. <6>[ 3.092677] regulator_init_complete: disabling pd_tv_supply
  466. <6>[ 3.092829] regulator_init_complete: disabling pd_cam_supply
  467. <6>[ 3.093377] input: cypress-touchkey as /devices/virtual/input/input8
  468. <6>[ 3.124088] cypress_touchkey_driver 10-0020: cypress_touchkey_probe: hardware rev1 = 0x5c, rev2 = 0xd4
  469. <3>[ 3.124940] cypress_touchkey_driver 10-0020: i2c write error
  470. <3>[ 3.139819] cypress_touchkey_driver 10-0020: i2c write error
  471. <6>[ 3.155637] s3c-rtc s3c2410-rtc: rtc disabled, re-enabling
  472. <6>[ 3.156084] s3c-rtc s3c2410-rtc: setting system clock to 2011-05-06 02:44:12 UTC (1304649852)
  473. <6>[ 3.158095] FIMC0 registered successfully
  474. <6>[ 3.160053] FIMC1 registered successfully
  475. <6>[ 3.161764] FIMC2 registered successfully
  476. <6>[ 3.162214] max8998_charger_probe : MAX8998 Charger Driver Loading
  477. <6>[ 3.165054] max8998_charger_probe : pmic interrupt registered
  478. <6>[ 3.167689] wake enabled for irq 39
  479. <4>[ 3.168300] Warning: unable to open an initial console.
  480. <6>[ 3.171081] Freeing init memory: 680K
  481. <6>[ 3.520892] mmc0: new high speed MMC card at address 0001
  482. <6>[ 3.525876] mmcblk0: mmc0:0001 MAG8DE 14.9 GiB
  483. <6>[ 3.526241] mmcblk0: p1 p2
  484. <7>[ 3.567899] Universal : Card status 1
  485. <6>[ 3.651340] mmc2: new high speed SDHC card at address c8a8
  486. <6>[ 3.654755] mmcblk1: mmc2:c8a8 SU16G 14.8 GiB
  487. <6>[ 3.655161] mmcblk1: p1
  488. <6>[ 5.225957] yaffs: dev is 32505859 name is "mtdblock3" rw
  489. <6>[ 5.226167] yaffs: passed flags ""
  490. <7>[ 5.226280] yaffs: Attempting MTD mount of 31.3,"mtdblock3"
  491. <7>[ 5.235601] yaffs: restored from checkpoint
  492. <7>[ 5.235905] yaffs_read_super: isCheckpointed 1
  493. <7>[ 5.248629] save exit: isCheckpointed 1
  494. <6>[ 5.367051] keychord: using input dev aries-keypad for fevent
  495. <6>[ 5.367537] init: command 'loglevel' r=0
  496. <6>[ 5.367663] init: command 'export' r=0
  497. <6>[ 5.367854] init: command 'export' r=0
  498. <6>[ 5.367974] init: command 'export' r=0
  499. <6>[ 5.368095] init: command 'export' r=0
  500. <6>[ 5.368286] init: command 'export' r=0
  501. <6>[ 5.368406] init: command 'export' r=0
  502. <6>[ 5.368526] init: command 'export' r=0
  503. <6>[ 5.368717] init: command 'export' r=0
  504. <6>[ 5.368837] init: command 'export' r=0
  505. <6>[ 5.368955] init: command 'export' r=0
  506. <6>[ 5.369144] init: command 'export' r=0
  507. <6>[ 5.369264] init: command 'export' r=0
  508. <6>[ 5.369384] init: command 'export' r=0
  509. <6>[ 5.369735] init: command 'symlink' r=0
  510. <6>[ 5.369877] init: command 'symlink' r=0
  511. <6>[ 5.370021] init: command 'mkdir' r=0
  512. <6>[ 5.370231] init: command 'mkdir' r=0
  513. <6>[ 5.370367] init: command 'mkdir' r=0
  514. <6>[ 5.370495] init: command 'mkdir' r=0
  515. <6>[ 5.370810] init: command 'mount' r=0
  516. <6>[ 5.371072] init: command 'mkdir' r=0
  517. <6>[ 5.371202] init: command 'mkdir' r=-17
  518. <6>[ 5.371328] init: command 'mkdir' r=-17
  519. <6>[ 5.371537] init: command 'mkdir' r=0
  520. <6>[ 5.371663] init: command 'mkdir' r=-17
  521. <6>[ 5.371803] init: command 'mkdir' r=0
  522. <6>[ 5.372009] init: command 'mkdir' r=0
  523. <6>[ 5.372146] init: command 'mkdir' r=0
  524. <6>[ 5.372284] init: command 'mkdir' r=0
  525. <6>[ 5.372489] init: command 'mkdir' r=0
  526. <6>[ 5.372684] init: command 'mount' r=0
  527. <6>[ 5.372826] init: command 'mkdir' r=0
  528. <6>[ 5.373080] init: command 'mount' r=0
  529. <6>[ 5.373228] init: command 'mkdir' r=0
  530. <6>[ 5.373440] init: command 'write' r=0
  531. <6>[ 5.373730] init: command 'write' r=0
  532. <6>[ 5.373901] init: command 'write' r=0
  533. <6>[ 5.374053] init: command 'write' r=0
  534. <6>[ 5.374271] init: command 'write' r=0
  535. <6>[ 5.374419] init: command 'write' r=0
  536. <6>[ 5.374566] init: command 'write' r=0
  537. <6>[ 5.374774] init: command 'mkdir' r=0
  538. <6>[ 5.375030] init: command 'mount' r=0
  539. <6>[ 5.375165] init: command 'chown' r=0
  540. <6>[ 5.375365] init: command 'chown' r=0
  541. <6>[ 5.375494] init: command 'chmod' r=0
  542. <6>[ 5.375636] init: command 'write' r=-22
  543. <6>[ 5.375820] init: command 'mkdir' r=0
  544. <6>[ 5.375951] init: command 'chown' r=0
  545. <6>[ 5.376080] init: command 'chmod' r=0
  546. <6>[ 5.376216] init: command 'write' r=0
  547. <6>[ 5.376472] init: command 'mkdir' r=0
  548. <6>[ 5.376605] init: command 'chown' r=0
  549. <6>[ 5.376734] init: command 'chmod' r=0
  550. <6>[ 5.376943] init: command 'write' r=0
  551. <6>[ 5.377069] init: processing action 0x268d8 (fs)
  552. <6>[ 5.377266] init: mtd partition 0, boot
  553. <6>[ 5.377486] init: mtd partition 1, recovery
  554. <6>[ 5.377611] init: mtd partition 2, system
  555. <6>[ 5.377803] init: mtd partition 3, cache
  556. <6>[ 5.377925] init: mtd partition 4, efs
  557. <6>[ 5.378045] init: mtd partition 5, radio
  558. <6>[ 5.378237] init: mtd partition 6, datadata
  559. <6>[ 5.378360] init: mtd partition 7, reservoir
  560. <6>[ 5.378567] yaffs: dev is 32505858 name is "mtdblock2" rw
  561. <6>[ 5.378768] yaffs: passed flags ""
  562. <7>[ 5.378880] yaffs: Attempting MTD mount of 31.2,"mtdblock2"
  563. <7>[ 5.465269] yaffs: restored from checkpoint
  564. <7>[ 5.465624] yaffs_read_super: isCheckpointed 1
  565. <6>[ 5.465781] init: command 'mount' r=0
  566. <6>[ 5.465980] init: processing action 0x2a398 (fs)
  567. <6>[ 5.466187] init: command 'mount' r=-1
  568. <6>[ 5.466356] yaffs: dev is 32505859 name is "mtdblock3" rw
  569. <6>[ 5.466554] yaffs: passed flags ""
  570. <7>[ 5.466666] yaffs: Attempting MTD mount of 31.3,"mtdblock3"
  571. <7>[ 5.476100] yaffs: restored from checkpoint
  572. <7>[ 5.476307] yaffs_read_super: isCheckpointed 1
  573. <6>[ 5.476446] init: command 'mount' r=0
  574. <6>[ 9.401255] EXT4-fs (mmcblk0p2): recovery complete
  575. <6>[ 9.406712] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: noauto_da_alloc
  576. <6>[ 9.410234] init: command 'mount' r=0
  577. <6>[ 9.411757] yaffs: dev is 32505862 name is "mtdblock6" rw
  578. <6>[ 9.413473] yaffs: passed flags ""
  579. <7>[ 9.414355] yaffs: Attempting MTD mount of 31.6,"mtdblock6"
  580. <3>[ 9.582160] onenand_wait: ECC error = 0xaaaa
  581. <7>[ 9.869076] block 383 is bad
  582. <7>[ 22.292581] yaffs_read_super: isCheckpointed 0
  583. <6>[ 22.292826] init: command 'mount' r=0
  584. <6>[ 22.293007] init: command 'mkdir' r=0
  585. <6>[ 22.293208] yaffs: dev is 32505860 name is "mtdblock4" rw
  586. <6>[ 22.293407] yaffs: passed flags ""
  587. <7>[ 22.293519] yaffs: Attempting MTD mount of 31.4,"mtdblock4"
  588. <7>[ 22.901086] yaffs_read_super: isCheckpointed 0
  589. <6>[ 22.901300] init: command 'mount' r=0
  590. <6>[ 22.903234] init: command 'chown' r=0
  591. <6>[ 22.909709] init: command 'chmod' r=0
  592. <6>[ 22.910800] init: command 'chmod' r=0
  593. <6>[ 22.911804] init: command 'chown' r=0
  594. <6>[ 22.911939] init: command 'chown' r=-2
  595. <6>[ 22.912145] init: command 'chown' r=0
  596. <6>[ 22.912273] init: command 'chmod' r=0
  597. <6>[ 22.912512] init: command 'chmod' r=0
  598. <6>[ 22.917122] init: command 'chown' r=0
  599. <6>[ 22.917295] init: command 'chown' r=0
  600. <6>[ 22.917501] init: command 'chown' r=0
  601. <6>[ 22.917691] init: processing action 0x2a690 (post-fs)
  602. <6>[ 22.918686] init: command 'exec' r=0
  603. <6>[ 22.918908] init: command 'chown' r=0
  604. <6>[ 22.919120] init: command 'chmod' r=0
  605. <6>[ 22.920146] init: command 'chown' r=0
  606. <6>[ 22.921129] init: command 'chmod' r=0
  607. <6>[ 22.922316] init: command 'mkdir' r=-17
  608. <6>[ 22.922479] init: command 'chown' r=0
  609. <6>[ 22.922618] init: command 'chmod' r=0
  610. <6>[ 22.922834] init: command 'copy' r=-1
  611. <6>[ 22.924073] init: command 'chown' r=-2
  612. <6>[ 22.924243] init: command 'chmod' r=-2
  613. <6>[ 22.924446] init: command 'copy' r=-1
  614. <6>[ 22.924581] init: command 'chown' r=-2
  615. <6>[ 22.924708] init: command 'chmod' r=-2
  616. <6>[ 22.924913] init: command 'write' r=-2
  617. <6>[ 22.927031] init: command 'chown' r=0
  618. <6>[ 22.927971] init: command 'chmod' r=0
  619. <6>[ 22.930383] init: command 'chown' r=0
  620. <6>[ 22.931323] init: command 'chmod' r=0
  621. <6>[ 22.931476] init: command 'chown' r=0
  622. <6>[ 22.931685] init: command 'chmod' r=0
  623. <6>[ 22.931824] init: command 'chown' r=0
  624. <6>[ 22.931966] init: command 'chmod' r=0
  625. <6>[ 22.932199] init: command 'chown' r=0
  626. <6>[ 22.932336] init: command 'chmod' r=0
  627. <6>[ 22.932485] init: command 'mkdir' r=-17
  628. <6>[ 22.934012] init: command 'mkdir' r=-17
  629. <6>[ 22.934162] init: command 'mkdir' r=-17
  630. <6>[ 22.934306] init: command 'mkdir' r=-17
  631. <6>[ 22.934519] init: command 'mkdir' r=-17
  632. <6>[ 22.934661] init: command 'mkdir' r=-17
  633. <6>[ 22.935615] init: command 'mkdir' r=-17
  634. <6>[ 22.935833] init: command 'mkdir' r=-17
  635. <6>[ 22.936005] init: command 'chmod' r=0
  636. <6>[ 22.936969] init: command 'chmod' r=0
  637. <6>[ 22.945739] init: command 'mkdir' r=-17
  638. <6>[ 22.947046] init: command 'mkdir' r=-17
  639. <6>[ 22.947197] init: command 'symlink' r=-1
  640. <6>[ 22.955988] init: command 'mkdir' r=-17
  641. <6>[ 22.965941] init: command 'mkdir' r=-17
  642. <6>[ 22.974196] init: command 'mkdir' r=-17
  643. <6>[ 22.974417] init: command 'mkdir' r=-17
  644. <6>[ 22.974568] init: command 'chown' r=0
  645. <6>[ 22.974706] init: command 'chmod' r=0
  646. <6>[ 22.974851] init: command 'mkdir' r=-17
  647. <6>[ 22.976217] init: command 'chown' r=0
  648. <6>[ 22.977367] init: command 'chmod' r=0
  649. <6>[ 22.977685] init: command 'mkdir' r=-17
  650. <6>[ 22.978149] init: command 'mkdir' r=-17
  651. <6>[ 22.978452] init: command 'chown' r=0
  652. <6>[ 22.978751] init: command 'chmod' r=0
  653. <6>[ 22.980177] init: command 'chown' r=0
  654. <6>[ 22.981320] init: command 'chmod' r=0
  655. <6>[ 22.981605] init: command 'chown' r=0
  656. <6>[ 22.982040] init: command 'chmod' r=0
  657. <6>[ 22.982386] init: command 'chown' r=0
  658. <6>[ 22.982690] init: command 'chmod' r=0
  659. <6>[ 22.983219] init: command 'chown' r=0
  660. <6>[ 22.983527] init: command 'chmod' r=0
  661. <6>[ 22.983847] init: command 'chown' r=0
  662. <6>[ 22.984316] init: command 'chmod' r=0
  663. <6>[ 22.984587] init: processing action 0x2cac0 (property_service_init)
  664. <6>[ 23.001472] init: Created socket '/dev/socket/property_service' with mode '666', user '0', group '0'
  665. <6>[ 23.001791] init: command 'property_service_init' r=0
  666. <6>[ 23.002220] init: processing action 0x2cb08 (signal_init)
  667. <6>[ 23.002613] init: command 'signal_init' r=0
  668. <6>[ 23.003052] init: processing action 0x2cb50 (check_startup)
  669. <6>[ 23.003313] init: command 'check_startup' r=0
  670. <6>[ 23.003736] init: processing action 0x26930 (boot)
  671. <6>[ 23.004796] init: command 'ifup' r=0
  672. <6>[ 23.005173] init: command 'hostname' r=0
  673. <6>[ 23.005678] init: command 'domainname' r=0
  674. <6>[ 23.005944] init: command 'setrlimit' r=0
  675. <6>[ 23.006254] init: command 'setprop' r=0
  676. <6>[ 23.006759] init: command 'setprop' r=0
  677. <6>[ 23.007043] init: command 'setprop' r=0
  678. <6>[ 23.007324] init: command 'setprop' r=0
  679. <6>[ 23.007767] init: command 'setprop' r=0
  680. <6>[ 23.008046] init: command 'setprop' r=0
  681. <6>[ 23.008326] init: command 'setprop' r=0
  682. <6>[ 23.008772] init: command 'setprop' r=0
  683. <6>[ 23.009053] init: command 'setprop' r=0
  684. <6>[ 23.009336] init: command 'setprop' r=0
  685. <6>[ 23.009781] init: command 'setprop' r=0
  686. <6>[ 23.010066] init: command 'setprop' r=0
  687. <6>[ 23.010390] init: command 'setprop' r=0
  688. <6>[ 23.010842] init: command 'setprop' r=0
  689. <6>[ 23.011129] init: command 'setprop' r=0
  690. <6>[ 23.011414] init: command 'setprop' r=0
  691. <6>[ 23.011862] init: command 'setprop' r=0
  692. <6>[ 23.012146] init: command 'setprop' r=0
  693. <6>[ 23.012584] init: command 'write' r=0
  694. <6>[ 23.013086] init: command 'write' r=0
  695. <6>[ 23.013416] init: command 'write' r=0
  696. <6>[ 23.013777] init: command 'write' r=0
  697. <6>[ 23.014329] init: command 'write' r=0
  698. <6>[ 23.014679] init: command 'write' r=0
  699. <6>[ 23.014997] init: command 'write' r=0
  700. <6>[ 23.015449] init: command 'chown' r=-2
  701. <6>[ 23.015728] init: command 'chown' r=-2
  702. <6>[ 23.016005] init: command 'chown' r=-2
  703. <6>[ 23.016446] init: command 'chown' r=-2
  704. <6>[ 23.016719] init: command 'chown' r=-2
  705. <6>[ 23.017028] init: command 'chown' r=0
  706. <6>[ 23.017490] init: command 'chown' r=0
  707. <6>[ 23.017804] init: command 'chown' r=0
  708. <6>[ 23.018243] init: command 'chmod' r=0
  709. <6>[ 23.018697] init: command 'chmod' r=0
  710. <6>[ 23.018981] init: command 'chmod' r=0
  711. <6>[ 23.019384] init: command 'chown' r=0
  712. <6>[ 23.019683] init: command 'chown' r=-2
  713. <6>[ 23.020133] init: command 'chown' r=-2
  714. <6>[ 23.020416] init: command 'chown' r=-2
  715. <6>[ 23.020700] init: command 'chown' r=-2
  716. <6>[ 23.021146] init: command 'chown' r=-2
  717. <6>[ 23.021428] init: command 'chown' r=-2
  718. <6>[ 23.021712] init: command 'chown' r=-2
  719. <6>[ 23.022217] init: command 'chown' r=-2
  720. <6>[ 23.022513] init: command 'chown' r=-2
  721. <6>[ 23.022792] init: command 'chown' r=-2
  722. <6>[ 23.023231] init: command 'chown' r=-2
  723. <6>[ 23.023513] init: command 'chown' r=-2
  724. <6>[ 23.023789] init: command 'chown' r=-2
  725. <6>[ 23.024232] init: command 'chown' r=-2
  726. <6>[ 23.024519] init: command 'chown' r=-2
  727. <6>[ 23.024801] init: command 'chown' r=-2
  728. <6>[ 23.025315] init: command 'chown' r=0
  729. <6>[ 23.025662] init: command 'chown' r=0
  730. <6>[ 23.026033] init: command 'chown' r=0
  731. <6>[ 23.026518] init: command 'chown' r=0
  732. <6>[ 23.026822] init: command 'chown' r=0
  733. <6>[ 23.027128] init: command 'chown' r=0
  734. <6>[ 23.027593] init: command 'chown' r=0
  735. <6>[ 23.027898] init: command 'chown' r=0
  736. <6>[ 23.028202] init: command 'chown' r=0
  737. <6>[ 23.028704] init: command 'setprop' r=0
  738. <6>[ 23.029042] init: command 'setprop' r=0
  739. <6>[ 23.029375] init: command 'setprop' r=0
  740. <6>[ 23.029910] init: command 'setprop' r=0
  741. <6>[ 23.030246] init: command 'setprop' r=0
  742. <5>[ 23.034101] init: starting 'gpsd'
  743. <5>[ 23.034960] init: starting 'pvrsrvinit'
  744. <6>[ 23.043103] init: Created socket '/dev/socket/gps' with mode '660', user '1021', group '1000'
  745. <5>[ 23.080536] init: starting 'servicemanager'
  746. <5>[ 23.097141] init: starting 'vold'
  747. <5>[ 23.097483] init: starting 'netd'
  748. <6>[ 23.108229] init: Created socket '/dev/socket/vold' with mode '660', user '0', group '1009'
  749. <6>[ 23.108801] init: Created socket '/dev/socket/netd' with mode '660', user '0', group '1000'
  750. <5>[ 23.136176] init: starting 'debuggerd'
  751. <5>[ 23.138454] init: starting 'ril-daemon'
  752. <6>[ 23.147689] init: Created socket '/dev/socket/rild-debug' with mode '660', user '1001', group '1000'
  753. <6>[ 23.148009] init: Created socket '/dev/socket/rild' with mode '660', user '0', group '1001'
  754. <5>[ 23.160614] init: starting 'zygote'
  755. <5>[ 23.164410] init: starting 'media'
  756. <5>[ 23.165706] init: starting 'dbus'
  757. <5>[ 23.167044] init: starting 'installd'
  758. <5>[ 23.168390] init: starting 'keystore'
  759. <5>[ 23.174282] init: starting 'orientationd'
  760. <6>[ 23.179129] init: Created socket '/dev/socket/dbus' with mode '660', user '1002', group '1002'
  761. <6>[ 23.179942] init: Created socket '/dev/socket/installd' with mode '600', user '1000', group '1000'
  762. <6>[ 23.180569] init: Created socket '/dev/socket/keystore' with mode '666', user '0', group '0'
  763. <6>[ 23.181343] init: Created socket '/dev/socket/zygote' with mode '666', user '0', group '0'
  764. <5>[ 23.199324] init: starting 'geomagneticd'
  765. <5>[ 23.208070] init: starting 'tvout'
  766. <6>[ 23.208378] init: command 'class_start' r=0
  767. <6>[ 23.208556] init: processing action 0x29f28 (boot)
  768. <6>[ 23.208829] init: command 'mount' r=0
  769. <6>[ 23.208983] init: command 'symlink' r=0
  770. <6>[ 23.209124] init: command 'symlink' r=0
  771. <6>[ 23.209378] init: command 'symlink' r=0
  772. <6>[ 23.250818] init: command 'import' r=0
  773. <6>[ 23.593883] warning: `rild' uses 32-bit capabilities (legacy support in use)
  774. <3>[ 23.772478] init: exec: pid 111 exited with return code 248: Unknown error: 63541
  775. <6>[ 23.772713] init: command 'exec' r=0
  776. <6>[ 23.772974] init: waitpid returned pid 97, status = 00000000
  777. <5>[ 23.773109] init: process 'pvrsrvinit', pid 97 exited
  778. <6>[ 23.773366] init: command 'setprop' r=0
  779. <6>[ 23.773494] init: command 'setprop' r=0
  780. <6>[ 23.773699] init: command 'setprop' r=0
  781. <6>[ 23.773836] init: command 'setprop' r=0
  782. <6>[ 23.773971] init: command 'setprop' r=0
  783. <6>[ 23.774176] init: command 'setprop' r=0
  784. <6>[ 23.774311] init: command 'setprop' r=0
  785. <6>[ 23.774447] init: command 'setprop' r=0
  786. <6>[ 23.774715] init: command 'mkdir' r=-17
  787. <6>[ 23.774865] init: command 'mkdir' r=-17
  788. <6>[ 23.775000] init: command 'setprop' r=0
  789. <6>[ 23.775330] init: command 'chown' r=0
  790. <6>[ 23.775520] init: command 'chmod' r=0
  791. <6>[ 23.775708] init: command 'chown' r=0
  792. <6>[ 23.775984] init: command 'chown' r=0
  793. <6>[ 23.776148] init: command 'chown' r=0
  794. <6>[ 23.776309] init: command 'chown' r=0
  795. <6>[ 23.776532] init: command 'mkdir' r=-17
  796. <6>[ 23.776706] init: command 'chown' r=0
  797. <6>[ 23.776914] init: command 'chown' r=0
  798. <6>[ 23.777092] init: command 'chmod' r=0
  799. <6>[ 23.777290] init: processing action 0x2cb98 (queue_propety_triggers)
  800. <6>[ 23.777450] init: command 'queue_propety_triggers' r=0
  801. <6>[ 23.777650] init: processing action 0x27640 (property:persist.service.adb.enable=1)
  802. <5>[ 23.777812] init: starting 'adbd'
  803. <6>[ 23.778154] init: command 'start' r=0
  804. <6>[ 23.778318] init: processing action 0x2c908 (property:ro.secure=0)
  805. <3>[ 23.778551] init: service 'console' requires console
  806. <6>[ 23.778677] init: command 'start' r=0
  807. <6>[ 23.797287] enabling adb
  808. <6>[ 23.831670] adb_open
  809. <6>[ 25.616946] init: waitpid returned pid 111, status = 00000000
  810. <3>[ 25.617096] init: untracked pid 111 exited
  811. <6>[ 25.840855] [MODEM] modem_reset()
  812. <6>[ 26.154771] modemctl_ioctl() 0
  813. <6>[ 29.939496] [MODEM] modem_start() normal
  814. <6>[ 29.939699] [MODEM] we have a crappy bootloader an wait for it
  815. <6>[ 34.359277] [MODEM] bp_irq() PHONE_ACTIVE_PIN=1
  816. <6>[ 34.402418] [MODEM] binary load done
  817. <6>[ 34.402569] [MODEM] modem_start() DONE
  818. <6>[ 34.402687] modemctl_ioctl() 0
  819. <5>[ 41.915392] init: starting 'bootanim'
  820. <6>[ 41.921108] wake enabled for irq 34
  821. <6>[ 41.922924] wake disabled for irq 34
  822. <4>[ 163.088734] wifi_set_power = 1
  823. <4>[ 163.174141] wifi_set_carddetect = 1
  824. <7>[ 163.174284] sdhci_s3c_force_presence_change : Enter
  825. <4>[ 163.174579]
  826. <4>[ 163.174583] Dongle Host Driver, version 4.218.248.23
  827. <4>[ 163.293171] mmc1: queuing unknown CIS tuple 0x80 (50 bytes)
  828. <4>[ 163.301537] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)
  829. <4>[ 163.332152] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)
  830. <6>[ 163.335297] mmc1: new SDIO card at address 0001
  831. <4>[ 163.339724] DHD: dongle ram size is set to 294912(orig 294912)
  832. <6>[ 163.488373] request_suspend_state: wakeup (3->0) at 163431542295 (2011-05-06 02:46:52.828037503 UTC)
  833. <6>[ 163.607240] wake enabled for irq 164
  834. <4>[ 163.614295] Firmware version = wl0: Dec 20 2010 19:21:39 version 4.218.248.18
  835. <4>[ 163.766372] eth0: Broadcom Dongle Host Driver mac=00:26:37:95:41:60
  836. <5>[ 164.836284] init: starting 'wpa_supplicant'
  837. <6>[ 164.862091] init: Created socket '/dev/socket/wpa_eth0' with mode '660', user '1010', group '1010'
  838. <4>[ 166.469339] wl_iw_set_country: set country for US as US rev 69 failed
  839. <5>[ 167.116507] init: starting 'dhcpcd_eth0'
  840. <4>[ 167.157722] STA connect received 1
  841. <4>[ 171.526027] wl_iw_set_country: set country for US as US rev 69 failed
  842. <5>[ 173.071162] init: service 'bootanim' is being killed
  843. <6>[ 173.075267] init: waitpid returned pid 199, status = 0000000f
  844. <5>[ 173.075413] init: process 'bootanim', pid 199 exited
  845. <6>[ 173.974295] s3c-rtc s3c2410-rtc: rtc disabled, re-enabling
  846. <6>[ 183.181248] request_suspend_state: sleep (0->3) at 183124472712 (2011-05-06 02:47:12.303991167 UTC)
  847. <4>[ 183.224413] dhd_get_dtim_skip bcn_li_dtim=3 DTIM=1 Listen=20
  848. <7>[ 183.416989] save exit: isCheckpointed 1
  849. <7>[ 183.438224] save exit: isCheckpointed 1
  850. <7>[ 183.438390] save exit: isCheckpointed 0
  851. <3>[ 183.753387] ce147_power_en()
  852. <3>[ 183.760898] S5KA3DFX 0-0062: s5ka3dfx has been probed
  853. <4>[ 183.761040] fetching platform data
  854. <4>[ 183.761220] parallel mode
  855. <7>[ 184.821192] save exit: isCheckpointed 0
  856. <6>[ 185.379395] request_suspend_state: wakeup (3->0) at 185322621419 (2011-05-06 02:47:14.502139792 UTC)
  857. <6>[ 185.381008] s3cfb_late_resume is called
  858. <6>[ 185.398181] FIMD src sclk = 166750000
  859. <6>[ 185.443540] s3cfb_late_resume is complete
  860. <6>[ 187.892502] binder: release 719:828 transaction 11076 out, still active
  861. <6>[ 188.022362] binder: 189:500 transaction failed 29189, size 3940-0
  862. <6>[ 188.022510] binder: send failed reply for transaction 11076, target dead
  863. <6>[ 190.021033] binder: 733:764 transaction failed 29189, size 140-0
  864. <3>[ 195.507325] binder: release proc 807, transaction 12618, not freed
  865. <6>[ 196.209450] request_suspend_state: sleep (0->3) at 196152717002 (2011-05-06 02:47:25.332235166 UTC)
  866. <4>[ 196.248628] dhd_get_dtim_skip bcn_li_dtim=3 DTIM=1 Listen=20
  867. <7>[ 196.418156] save exit: isCheckpointed 0
  868. <7>[ 196.429696] save exit: isCheckpointed 0
  869. <6>[ 197.460640] request_suspend_state: wakeup (3->0) at 197403903419 (2011-05-06 02:47:26.583422291 UTC)
  870. <6>[ 197.462273] s3cfb_late_resume is called
  871. <6>[ 197.470191] FIMD src sclk = 166750000
  872. <6>[ 197.514037] s3cfb_late_resume is complete
  873. <4>[ 246.168884] ce147_s_ctrl: V4L2_CID_CAMERA_CHECK_DATALINE 0
  874. <4>[ 246.169033] ce147_s_ctrl: V4L2_CID_CAMERA_ANTI_BANDING 0
  875. <4>[ 246.169233] ce147_s_ctrl: V4L2_CID_CAMERA_ISO 0
  876. <4>[ 246.169356] ce147_s_ctrl: V4L2_CID_CAMERA_BRIGHTNESS 4
  877. <4>[ 246.169554] ce147_s_ctrl: V4L2_CID_CAMERA_FRAME_RATE 30
  878. <4>[ 246.169684] ce147_s_ctrl: V4L2_CID_CAMERA_METERING 2
  879. <4>[ 246.169810] ce147_s_ctrl: V4L2_CID_CAMERA_EFFECT 1
  880. <4>[ 246.170075] ce147_s_ctrl: V4L2_CID_CAMERA_WHITE_BALANCE 1
  881. <3>[ 246.170237] ce147_power_en()
  882. <3>[ 246.170415] ce147_power_en() - power state changed
  883. <3>[ 246.170549] Failed to request GPB0 for camera control
  884. <3>[ 246.179508] ce147_power_en(ON)
  885. <6>[ 246.179705] cam_isp_core_regulator = d7bd6180
  886. <6>[ 246.179823] cam_isp_host_regulator = dac15d80
  887. <6>[ 246.179940] cam_af_regulator = dac15740
  888. <6>[ 246.180052] cam_sensor_regulator = dac15f80
  889. <3>[ 246.180169] failed gpio_request(GPB7) for camera control
  890. <7>[ 247.176450] fw M:0 m:0 |prm M:0 m:0
  891. <7>[ 247.177368] y. m. d = 0.0.0
  892. <7>[ 247.178300] ce147_get_main_sw_fw_version Enter
  893. <4>[ 247.184766] File size : 17
  894. <7>[ 247.185751] fw M:5 m:15 |prm M:5 m:15
  895. <7>[ 247.186604] y. m. d = 2010.9.7
  896. <7>[ 247.187436] FW Version: 5.15
  897. <7>[ 247.188900] PRM Version: 7.54
  898. <7>[ 247.189862] Date(y.m.d): 2010.5.14
  899. <7>[ 247.190699] Sensor version: 16
  900. <4>[ 247.192252] ce147_s_ctrl: V4L2_CID_CAM_PREVIEW_ONOFF 1
  901. <4>[ 247.193154] ce147_set_preview_start state->check_dataline = Normal preview sequence
  902. <4>[ 247.201487] ce147_set_preview_start CE147_RUNMODE_READY
  903. <4>[ 247.588783] ce147_s_ctrl: V4L2_CID_CAMERA_FOCUS_MODE 0
  904. <4>[ 247.620018] ce147_s_ctrl: V4L2_CID_CAMERA_FACE_DETECTION 0
  905. <4>[ 247.621465] ce147_s_ctrl: V4L2_CID_CAMERA_SHARPNESS 2
  906. <4>[ 247.623606] ce147_s_ctrl: V4L2_CID_CAMERA_SATURATION 2
  907. <4>[ 247.624994] ce147_s_ctrl: V4L2_CID_CAMERA_CONTRAST 2
  908. <4>[ 247.626350] ce147_s_ctrl: V4L2_CID_CAMERA_BEAUTY_SHOT 0
  909. <4>[ 247.628576] ce147_s_ctrl: V4L2_CID_CAMERA_ZOOM 0
  910. <4>[ 247.630459] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  911. <4>[ 247.680099] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  912. <4>[ 264.947759] ce147_s_ctrl: V4L2_CID_CAMERA_SET_AUTO_FOCUS 1
  913. <4>[ 264.950275] ce147_g_ctrl: V4L2_CID_CAMERA_AUTO_FOCUS_RESULT 5
  914. <4>[ 264.981844] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  915. <4>[ 265.084386] ce147_g_ctrl: V4L2_CID_CAM_JPEG_MEMSIZE 3538944
  916. <4>[ 265.085058] ce147_g_ctrl: V4L2_CID_CAM_JPEG_MEMSIZE 3538944
  917. <4>[ 265.085483] ce147_s_ctrl: V4L2_CID_CAM_CAPTURE 134217793
  918. <4>[ 265.086324] ce147_set_capture_start 1
  919. <3>[ 268.084146] CE147 0-003c: ce147_set_capture_start: failed: Wait for buffering_capture
  920. <3>[ 268.085917] CE147 0-003c: ce147_s_ctrl: vidioc_s_ctrl failed -16, s_ctrl: id(65), value(-1069127036)
  921. <3>[ 268.088776] s3c-fimc-0 : fimc_streamon_capture: Error in V4L2_CID_CAM_CAPTURE
  922. <4>[ 268.115686] ce147_s_ctrl: V4L2_CID_CAM_JPEG_QUALITY 90
  923. <4>[ 268.116846] ce147_s_ctrl: V4L2_CID_CAMERA_EXIF_ORIENTATION 6
  924. <4>[ 268.123489] ce147_s_ctrl: V4L2_CID_CAMERA_CAPTURE 0
  925. <3>[ 268.124441] CE147 0-003c: ce147_s_ctrl: vidioc_s_ctrl failed -515, s_ctrl: id(50), value(0)
  926. <6>[ 270.454573] init: waitpid returned pid 104, status = 0000000b
  927. <5>[ 270.454726] init: process 'media', pid 104 exited
  928. <5>[ 270.454924] init: process 'media' killing any children in process group
  929. <5>[ 270.455235] init: starting 'media'
  930. <3>[ 270.502393] ce147_power_en()
  931. <3>[ 270.502511] ce147_power_en() - power state changed
  932. <3>[ 270.504052] ce147_power_en(OFF)
  933. <6>[ 270.507900] wm8994_set_mic_bias: system_rev=48, on=0
  934. <6>[ 285.481674] fsa9480 7-0025: dev1: 0x4, dev2: 0x0
  935. <6>[ 285.918736] android_usb gadget: high speed config #1: android
  936. <4>[ 305.897830] ce147_s_ctrl: V4L2_CID_CAMERA_CHECK_DATALINE 0
  937. <4>[ 305.898049] ce147_s_ctrl: V4L2_CID_CAMERA_ANTI_BANDING 0
  938. <4>[ 305.898195] ce147_s_ctrl: V4L2_CID_CAMERA_ISO 0
  939. <4>[ 305.898320] ce147_s_ctrl: V4L2_CID_CAMERA_BRIGHTNESS 4
  940. <4>[ 305.898518] ce147_s_ctrl: V4L2_CID_CAMERA_FRAME_RATE 30
  941. <4>[ 305.898647] ce147_s_ctrl: V4L2_CID_CAMERA_METERING 2
  942. <4>[ 305.898843] ce147_s_ctrl: V4L2_CID_CAMERA_EFFECT 1
  943. <4>[ 305.898967] ce147_s_ctrl: V4L2_CID_CAMERA_WHITE_BALANCE 1
  944. <3>[ 305.899196] ce147_power_en()
  945. <3>[ 305.899302] ce147_power_en() - power state changed
  946. <3>[ 305.908311] ce147_power_en(ON)
  947. <6>[ 305.908494] cam_isp_core_regulator = d7bd6180
  948. <6>[ 305.908610] cam_isp_host_regulator = dac15d80
  949. <6>[ 305.908726] cam_af_regulator = dac15740
  950. <6>[ 305.908908] cam_sensor_regulator = dac15f80
  951. <3>[ 305.909023] failed gpio_request(GPB7) for camera control
  952. <7>[ 306.906852] fw M:5 m:15 |prm M:5 m:15
  953. <7>[ 306.907774] y. m. d = 2010.9.7
  954. <7>[ 306.908711] ce147_get_main_sw_fw_version Enter
  955. <7>[ 306.910212] already read main sw version
  956. <7>[ 306.911074] FW Version: 5.15
  957. <7>[ 306.911907] PRM Version: 7.54
  958. <7>[ 306.912835] Date(y.m.d): 2010.5.14
  959. <7>[ 306.914313] Sensor version: 16
  960. <4>[ 306.915167] ce147_s_ctrl: V4L2_CID_CAM_PREVIEW_ONOFF 1
  961. <4>[ 306.916141] ce147_set_preview_start state->check_dataline = Normal preview sequence
  962. <4>[ 306.924781] ce147_set_preview_start CE147_RUNMODE_READY
  963. <4>[ 307.256790] ce147_s_ctrl: V4L2_CID_CAMERA_FOCUS_MODE 0
  964. <4>[ 307.287904] ce147_s_ctrl: V4L2_CID_CAMERA_FACE_DETECTION 0
  965. <4>[ 307.289999] ce147_s_ctrl: V4L2_CID_CAMERA_SHARPNESS 2
  966. <4>[ 307.291466] ce147_s_ctrl: V4L2_CID_CAMERA_SATURATION 2
  967. <4>[ 307.292833] ce147_s_ctrl: V4L2_CID_CAMERA_CONTRAST 2
  968. <4>[ 307.294206] ce147_s_ctrl: V4L2_CID_CAMERA_BEAUTY_SHOT 0
  969. <4>[ 307.295777] ce147_s_ctrl: V4L2_CID_CAMERA_ZOOM 0
  970. <4>[ 307.301283] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  971. <4>[ 307.385124] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  972. <4>[ 311.316973] ce147_s_ctrl: V4L2_CID_CAMERA_SET_AUTO_FOCUS 1
  973. <4>[ 311.319143] ce147_g_ctrl: V4L2_CID_CAMERA_AUTO_FOCUS_RESULT 5
  974. <4>[ 312.128926] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  975. <4>[ 312.221402] ce147_g_ctrl: V4L2_CID_CAM_JPEG_MEMSIZE 3538944
  976. <4>[ 312.224452] ce147_g_ctrl: V4L2_CID_CAM_JPEG_MEMSIZE 3538944
  977. <4>[ 312.225554] ce147_s_ctrl: V4L2_CID_CAM_CAPTURE 134217793
  978. <4>[ 312.241483] ce147_set_capture_start 1
  979. <4>[ 312.491058] ce147_set_capture_start 2
  980. <4>[ 312.492671] ce147_set_capture_start 3
  981. <4>[ 312.495700] ce147_set_capture_start 4
  982. <4>[ 312.497274] ce147_set_capture_start 5
  983. <4>[ 312.498930] ce147_set_capture_exif ENTER
  984. <4>[ 312.501123] ce147_set_capture_exif OUT
  985. <4>[ 312.502777] ce147_set_capture_start 6
  986. <4>[ 312.505393] ce147_set_capture_start 7
  987. <4>[ 312.791688] ce147_set_capture_start 8
  988. <4>[ 312.796085] ce147_set_capture_start 9
  989. <4>[ 312.941370] ce147_s_ctrl: V4L2_CID_CAM_JPEG_QUALITY 90
  990. <4>[ 312.982873] ce147_s_ctrl: V4L2_CID_CAMERA_EXIF_ORIENTATION 6
  991. <4>[ 312.984036] ce147_s_ctrl: V4L2_CID_CAMERA_CAPTURE 0
  992. <3>[ 312.985594] CE147 0-003c: ce147_s_ctrl: vidioc_s_ctrl failed -515, s_ctrl: id(50), value(0)
  993. <6>[ 314.269940] init: waitpid returned pid 1438, status = 0000000b
  994. <5>[ 314.270092] init: process 'media', pid 1438 exited
  995. <5>[ 314.270220] init: process 'media' killing any children in process group
  996. <5>[ 314.270559] init: starting 'media'
  997. <3>[ 314.330494] ce147_power_en()
  998. <3>[ 314.330684] ce147_power_en() - power state changed
  999. <3>[ 314.332234] ce147_power_en(OFF)
  1000. <6>[ 314.336751] wm8994_set_mic_bias: system_rev=48, on=0
  1001. <4>[ 458.215281] ce147_s_ctrl: V4L2_CID_CAMERA_CHECK_DATALINE 0
  1002. <4>[ 458.215430] ce147_s_ctrl: V4L2_CID_CAMERA_ANTI_BANDING 0
  1003. <4>[ 458.215631] ce147_s_ctrl: V4L2_CID_CAMERA_ISO 0
  1004. <4>[ 458.215754] ce147_s_ctrl: V4L2_CID_CAMERA_BRIGHTNESS 4
  1005. <4>[ 458.215950] ce147_s_ctrl: V4L2_CID_CAMERA_FRAME_RATE 30
  1006. <4>[ 458.216078] ce147_s_ctrl: V4L2_CID_CAMERA_METERING 2
  1007. <4>[ 458.216205] ce147_s_ctrl: V4L2_CID_CAMERA_EFFECT 1
  1008. <4>[ 458.216399] ce147_s_ctrl: V4L2_CID_CAMERA_WHITE_BALANCE 1
  1009. <3>[ 458.216556] ce147_power_en()
  1010. <3>[ 458.216759] ce147_power_en() - power state changed
  1011. <3>[ 458.225734] ce147_power_en(ON)
  1012. <6>[ 458.225845] cam_isp_core_regulator = d7bd6180
  1013. <6>[ 458.226034] cam_isp_host_regulator = dac15d80
  1014. <6>[ 458.226151] cam_af_regulator = dac15740
  1015. <6>[ 458.226263] cam_sensor_regulator = dac15f80
  1016. <3>[ 458.226450] failed gpio_request(GPB7) for camera control
  1017. <7>[ 459.234762] fw M:5 m:15 |prm M:5 m:15
  1018. <7>[ 459.236446] y. m. d = 2010.9.7
  1019. <7>[ 459.237275] ce147_get_main_sw_fw_version Enter
  1020. <7>[ 459.238118] already read main sw version
  1021. <7>[ 459.239592] FW Version: 5.15
  1022. <7>[ 459.240564] PRM Version: 7.54
  1023. <7>[ 459.241391] Date(y.m.d): 2010.5.14
  1024. <7>[ 459.242208] Sensor version: 16
  1025. <4>[ 459.243676] ce147_s_ctrl: V4L2_CID_CAM_PREVIEW_ONOFF 1
  1026. <4>[ 459.244660] ce147_set_preview_start state->check_dataline = Normal preview sequence
  1027. <4>[ 459.270780] ce147_set_preview_start CE147_RUNMODE_READY
  1028. <4>[ 459.616180] ce147_s_ctrl: V4L2_CID_CAMERA_FOCUS_MODE 0
  1029. <4>[ 459.647199] ce147_s_ctrl: V4L2_CID_CAMERA_FACE_DETECTION 0
  1030. <4>[ 459.648645] ce147_s_ctrl: V4L2_CID_CAMERA_SHARPNESS 2
  1031. <4>[ 459.650721] ce147_s_ctrl: V4L2_CID_CAMERA_SATURATION 2
  1032. <4>[ 459.652086] ce147_s_ctrl: V4L2_CID_CAMERA_CONTRAST 2
  1033. <4>[ 459.654101] ce147_s_ctrl: V4L2_CID_CAMERA_BEAUTY_SHOT 0
  1034. <4>[ 459.655719] ce147_s_ctrl: V4L2_CID_CAMERA_ZOOM 0
  1035. <4>[ 459.658326] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  1036. <4>[ 459.708585] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  1037. <4>[ 462.350553] ce147_s_ctrl: V4L2_CID_CAMERA_SET_AUTO_FOCUS 1
  1038. <4>[ 462.351387] ce147_g_ctrl: V4L2_CID_CAMERA_AUTO_FOCUS_RESULT 5
  1039. <4>[ 462.430252] ce147_s_ctrl: V4L2_CID_CAMERA_BATCH_REFLECTION 1
  1040. <4>[ 462.524778] ce147_g_ctrl: V4L2_CID_CAM_JPEG_MEMSIZE 3538944
  1041. <4>[ 462.529564] ce147_g_ctrl: V4L2_CID_CAM_JPEG_MEMSIZE 3538944
  1042. <4>[ 462.529835] ce147_s_ctrl: V4L2_CID_CAM_CAPTURE 134217793
  1043. <4>[ 462.532774] ce147_set_capture_start 1
  1044. <3>[ 465.541403] CE147 0-003c: ce147_set_capture_start: failed: Wait for buffering_capture
  1045. <3>[ 465.543810] CE147 0-003c: ce147_s_ctrl: vidioc_s_ctrl failed -16, s_ctrl: id(65), value(-1069127036)
  1046. <3>[ 465.545990] s3c-fimc-0 : fimc_streamon_capture: Error in V4L2_CID_CAM_CAPTURE
  1047. <4>[ 465.573822] ce147_s_ctrl: V4L2_CID_CAM_JPEG_QUALITY 90
  1048. <4>[ 465.578966] ce147_s_ctrl: V4L2_CID_CAMERA_EXIF_ORIENTATION 6
  1049. <4>[ 465.596852] ce147_s_ctrl: V4L2_CID_CAMERA_CAPTURE 0
  1050. <3>[ 465.597011] CE147 0-003c: ce147_s_ctrl: vidioc_s_ctrl failed -515, s_ctrl: id(50), value(0)
  1051. <6>[ 466.863913] init: waitpid returned pid 1486, status = 0000000b
  1052. <5>[ 466.864137] init: process 'media', pid 1486 exited
  1053. <5>[ 466.864266] init: process 'media' killing any children in process group
  1054. <5>[ 466.864557] init: starting 'media'
  1055. <3>[ 466.924217] ce147_power_en()
  1056. <3>[ 466.924337] ce147_power_en() - power state changed
  1057. <3>[ 466.925961] ce147_power_en(OFF)
  1058. <6>[ 466.929513] wm8994_set_mic_bias: system_rev=48, on=0
  1059. # techmik@michaels-laptop:~$
Advertisement
Add Comment
Please, Sign In to add comment