Project

General

Profile

EC20 » History » Version 8

laforge, 10/01/2016 04:05 PM

1 1 zecke
h1. Wiki
2
3 3 zecke
h2. EC20
4
5
Seems to be a MDM9615 + MSM9615. Linux seems to be in charge of things.
6
7
h3. How does it work?
8
9 1 zecke
If on Host-PC I have ttyUSB3.. and I type AT. How does it end up at the modem? On the Linux side there is @atfwd_daemon@ that registers with a local ril daemon but how is USB connected. Who is bouncing things back to it or is Linux forwarding everything..
10 8 laforge
11
* the USB gadget (client) is entirely managed by the Linux on the Cortex-A5.
12
* the individual gadgets are implemented by drivers like f_diag.c or f_serial.c
13
* @f_serial.c@ seems to be able to connect each virtual serial port to a number of different transports:
14
** xport_tty (/dev/ttyGS* device to userspace using @u_serial.c@)
15
** xport_sdio (forwarding via SDIO using @u_sdio.c@)
16
** xport_smd (fowarding via shared memory to different CPU core using @u_smd.c@)
17
** xport_hsic (forwarding to different processor via GSIC using @u_{data,ctrl}_hsic.c@)
18
** xport_hsuart (forwarding via high-speed uart for DUN/RMNET via @u_data_hsuart.c@)
19
20
21 3 zecke
22
h3. Power management
23
24
Sleep/Power off seem to be "intercepted" by @atfwd_daemon@ that can execute "echo mem > /sys/power/state". Let's explore other options for wakeup. Is there a RTC?
25
26
27
h3. Firmware updates with FOTA
28
29
APN for OTA is configured separately on UC20, assumingly the same applies for EC20. A update.zip will be stored on the "cache" partition and it looks like the recovery system will be booted. I guess that then the reocvery system will unpack the update.zip and flash the partitions.
30
31
32
33
h3. Debugging with ADB
34
35 1 zecke
Switching on adb (or fastboot or debug to NMEA console)
36
37
<pre>
38
AT+QLINUXCMD="/usr/bin/usb_uartdiag"
39
AT+QFASTBOOT
40
AT+QLINUXCMD="echo foo > /dev/ttyGS0"
41 3 zecke
...
42
43
adb shell
44
# /
45 1 zecke
</pre>
46
47 3 zecke
@/usr/bin/usb_uartdig@ sends "endpoints" to a sysfs file
48 1 zecke
49 3 zecke
50 2 zecke
Changing qcserial.c to have adb and ttyUSBs.. Holger wants to upstream it after 32C3.
51 1 zecke
52
<pre>
53
diff --git a/drivers/usb/serial/qcserial.c b/drivers/usb/serial/qcserial.c
54
index 51da652..2d8d09e 100644
55
--- a/drivers/usb/serial/qcserial.c
56
+++ b/drivers/usb/serial/qcserial.c
57
@@ -176,8 +176,9 @@ static const struct usb_device_id id_table[] = {
58
 };
59
 MODULE_DEVICE_TABLE(usb, id_table);
60
 
61
-static int handle_quectel_ec20(struct device *dev, int ifnum)
62
+static int handle_quectel_ec20(struct usb_device *usbdev, int ifnum)
63
 {
64
+       struct device *dev = &usbdev->dev;
65
        int altsetting = 0;
66
 
67
        /*
68
@@ -201,10 +202,12 @@ static int handle_quectel_ec20(struct device *dev, int ifnum)
69
                dev_dbg(dev, "Quectel EC20 Modem port found\n");
70
                break;
71
        case 4:
72
-       case 5:
73
                /* Don't claim the QMI/net or debug interface */
74
                altsetting = -1;
75
                break;
76
+       case 5:
77
+               usb_set_interface(usbdev, ifnum, 0);
78
+               altsetting = -1;
79
        }
80
 
81
        return altsetting;
82
@@ -285,7 +288,7 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)
83
        case QCSERIAL_G2K:
84
                /* handle non-standard layouts */
85
                if ((nintf == 5 || nintf == 6) && id->idProduct == QUECTEL_EC20_PID) {
86
-                       altsetting = handle_quectel_ec20(dev, ifnum);
87
+                       altsetting = handle_quectel_ec20(serial->dev, ifnum);
88
                        goto done;
89
                }
90
 
91
</pre>
92
93
94
<pre>
95
Not working userspace code
96
97
#include <libusb.h>
98
99
#include <stdio.h>
100
#include <stdlib.h>
101
102
int main(int argc, char **argv)
103
{
104
	struct libusb_device_handle *devh;
105
	int rc;
106
107
	rc = libusb_init(NULL);
108
	printf("%d\n", rc);
109
110
	devh = libusb_open_device_with_vid_pid(NULL, 0x05c6, 0x9215);
111
	if (!devh) {
112
		abort();
113
	}
114
	rc = libusb_claim_interface(devh, 5);
115
	printf("%d\n", rc);
116
	//rc = libusb_detach_kernel_driver(devh, 5);
117
	//printf("%d\n", rc);
118
	rc = libusb_set_interface_alt_setting(devh, 5, 0);
119
	printf("%d\n", rc);     ====> currently prints -5 but is like the one above..
120
	return EXIT_FAILURE;
121
}
122 4 zecke
</pre>
123 3 zecke
124 5 zecke
h3. full lsof output
125 1 zecke
126 6 zecke
[[LsOfOutput]]
127 5 zecke
128 3 zecke
h3. ps
129 1 zecke
130 4 zecke
<pre>
131 3 zecke
/ # ps
132
PID   USER     TIME   COMMAND
133
   1 root       0:01 init [5]
134
   2 root       0:00 [kthreadd]
135
   3 root       0:00 [ksoftirqd/0]
136
   4 root       0:00 [kworker/0:0]
137
   6 root       0:00 [khelper]
138
   7 root       0:00 [netns]
139
   8 root       0:00 [sync_supers]
140
   9 root       0:00 [bdi-default]
141
  10 root       0:00 [kblockd]
142
  11 root       0:00 [khubd]
143
  12 root       0:00 [kworker/0:1]
144
  13 root       0:00 [modem_notifier]
145
  14 root       0:00 [smd_channel_clo]
146
  15 root       0:00 [smsm_cb_wq]
147
  16 root       0:00 [kworker/u:1]
148
  17 root       0:00 [qmi]
149
  18 root       0:00 [nmea]
150
  19 root       0:00 [RPCRPY_CNTL]
151
  20 root       0:00 [IPCRTR]
152
  21 root       0:00 [msm_ipc_router]
153
  22 root       0:00 [ipc_rtr_smd_rpc]
154
  23 root       0:00 [kworker/u:2]
155
  24 root       0:00 [apr_driver]
156
  25 root       0:00 [kswapd0]
157
  26 root       0:00 [ipc_rtr_q6_ipcr]
158
  27 root       0:00 [fsnotify_mark]
159
  28 root       0:00 [crypto]
160
  40 root       0:00 [quec_dtr]
161
  41 root       0:00 [mtdblock0]
162
  42 root       0:00 [mtdblock1]
163
  43 root       0:00 [mtdblock2]
164
  44 root       0:00 [mtdblock3]
165
  45 root       0:00 [mtdblock4]
166
  46 root       0:00 [mtdblock5]
167
  47 root       0:00 [mtdblock6]
168
  48 root       0:00 [mtdblock7]
169
  49 root       0:00 [mtdblock8]
170
  50 root       0:00 [mtdblock9]
171
  51 root       0:00 [mtdblock10]
172
  52 root       0:00 [mtdblock11]
173
  53 root       0:00 [mtdblock12]
174
  54 root       0:00 [mtdblock13]
175
  55 root       0:00 [mtdblock14]
176
  56 root       0:00 [mtdblock15]
177
  57 root       0:00 [spi_qsd.0]
178
  58 root       0:00 [mhsic_wq]
179
  59 root       0:00 [k_rmnet_mux_wor]
180
  60 root       0:00 [f_mtp]
181
  61 root       0:00 [file-storage]
182
  63 root       0:00 [uether]
183
  64 root       0:00 [diag_wq]
184
  65 root       0:00 [diag_cntl_wq]
185
  66 root       0:00 [iewq]
186
  67 root       0:00 [irq/368-msm-sdc]
187
  68 root       0:00 [usb_bam_wq]
188
  69 root       0:00 [bam_dmux_rx]
189
  70 root       0:00 [bam_dmux_tx]
190
  71 root       0:00 [deferwq]
191
  72 root       0:00 [yaffs-bg-1]
192
  92 root       0:00 [k_gserial]
193
  93 root       0:00 [k_gsmd]
194
  94 root       0:00 [k_gbam]
195
  95 root       0:00 [gsmd_ctrl]
196
 129 root       0:00 [yaffs-bg-1]
197
 140 root       0:00 [yaffs-bg-1]
198
 183 root       0:00 /sbin/adbd
199
 205 root       0:00 /usr/bin/time_daemon
200
 208 root       0:00 /usr/bin/wapfotadaemon
201
 211 root       0:00 /usr/bin/wapfotadaemon
202
 212 root       0:00 sh -c qmi_simple_ril_test modem_port=rmnet0 input=/usr/bi
203
 217 root       0:00 qmi_simple_ril_test modem_port=rmnet0 input=/usr/bin/comm
204
 224 nobody     0:00 /usr/bin/dnsmasq -7 /etc/dnsmasq.d
205
 227 root       0:00 qti
206
 231 root       0:00 /sbin/syslogd -n -C64 -m 20
207
 240 root       0:00 /usr/bin/diagrebootapp
208
 246 root       0:00 /usr/bin/atfwd_daemon
209
 256 root       0:00 /usr/bin/qmuxd
210
 272 root       0:00 /bin/sh /usr/sbin/restart_mbimd
211
 275 root       0:00 /usr/bin/netmgrd -u /etc/udhcpc.d/udhcpc.script
212
 280 root       0:00 /usr/bin/qmi_shutdown_modem
213
 284 root       0:03 /usr/bin/quectel_daemon
214
 304 root       0:00 /usr/bin/mbimd
215
 346 root       0:00 /sbin/reboot-daemon
216
 347 root       0:00 /sbin/getty -L ttyHSL0 115200 console
217
 364 root       0:00 /bin/sh /usr/bin/nmea_demon.sh ttyGS0
218
 367 root       0:00 quec_bridge /dev/nmea /dev/ttyGS0 s
219
 439 root       0:01 alsaucm_test
220
 453 root       0:00 [kworker/u:0]
221
 455 root       0:00 [kworker/u:3]
222
 457 root       0:00 [kworker/0:2]
223
 463 root       0:00 [flush-31:15]
224
 473 root       0:00 /bin/sh -
225
 477 root       0:00 [flush-31:14]
226
 478 root       0:00 ps
227 1 zecke
/ # 
228 4 zecke
</pre>
229 3 zecke
230
h3. dmesg
231 1 zecke
232 4 zecke
<pre>
233 3 zecke
/ # dmesg
234
[    0.000000]   Normal zone: 9266 pages, LIFO batch:1
235
[    0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
236
[    0.000000] pcpu-alloc: [0] 0 
237
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 9266
238
[    0.000000] Kernel command line: noinitrd root=/dev/mtdblock14 rw rootfstype=yaffs2 console=ttyHSL0,115200,n8 androidboot.hardware=qcom androidboot.serialno=MDM9615 androidboot.baseband=msm
239
[    0.000000] PID hash table entries: 256 (order: -2, 1024 bytes)
240
[    0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
241
[    0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
242
[    0.000000] Memory: 15MB 22MB = 37MB total
243
[    0.000000] Memory: 29472k/29472k available, 9440k reserved, 0K highmem
244
[    0.000000] Virtual kernel memory layout:
245
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
246
[    0.000000]     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
247
[    0.000000]     DMA     : 0xff000000 - 0xffe00000   (  14 MB)
248
[    0.000000]     vmalloc : 0xc6800000 - 0xfa000000   ( 824 MB)
249
[    0.000000]     lowmem  : 0xc0000000 - 0xc6700000   ( 103 MB)
250
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
251
[    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
252
[    0.000000]       .init : 0xc0008000 - 0xc0032000   ( 168 kB)
253
[    0.000000]       .text : 0xc0032000 - 0xc05ad1d8   (5613 kB)
254
[    0.000000]       .data : 0xc05ae000 - 0xc061ab38   ( 435 kB)
255
[    0.000000]        .bss : 0xc061ab78 - 0xc07cd050   (1738 kB)
256
[    0.000000] SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
257
[    0.000000] Preemptible hierarchical RCU implementation.
258
[    0.000000] NR_IRQS:681
259
[    0.000000] sched_clock: 32 bits at 32kHz, resolution 30520ns, wraps every 131084001ms
260
[    0.000000] Console: colour dummy device 80x30
261
[    0.150190] Calibrating delay using timer specific routine.. 9.62 BogoMIPS (lpj=48102)
262
[    0.150221] pid_max: default: 32768 minimum: 301
263
[    0.150679] Mount-cache hash table entries: 512
264
[    0.151320] Initializing cgroup subsys debug
265
[    0.151350] Initializing cgroup subsys cpuacct
266
[    0.151381] Initializing cgroup subsys freezer
267
[    0.151442] CPU: Testing write buffer coherency: ok
268
[    0.157271] print_constraints: dummy: 
269
[    0.157668] NET: Registered protocol family 16
270
[    0.157820] AXI: msm_bus_fabric_init_driver(): msm_bus_fabric_init_driver
271
[    0.158980] msm_rpm_init: RPM firmware 3.0.16842958
272
[    0.173203] pm8018_probe: PMIC revision 1: F3
273
[    0.173233] pm8018_probe: PMIC revision 2: 08
274
[    0.173233] pm8018_probe: PMIC version: PM8018 rev 2.1
275
[    0.173264] pm8018_probe: PMIC Restart Reason: Triggered from KPD (power key press)
276
[    0.174240] pm_gpio_probe: OK: base=88, ngpio=6
277
[    0.174515] pm8xxx_mpp_probe: OK: base=94, ngpio=6
278
[    0.181962] cpufreq_table_init: CPU: 4 scaling frequencies supported.
279
[    0.186754] sps:REVISION of BAM 0xc6818000 is 0x5.
280
[    0.186784] sps:BAM 0x12244000 is registered.
281
[    0.187517] sps:sps is ready.
282
[    0.209034] bio: create slab <bio-0> at 0
283
[    0.209797] ION heap vmalloc created
284
[    0.209827] ION heap iommu created
285
[    0.209858] ION heap audio created at 46e01000 with size af000
286
[    0.210254] pm8xxx_pwm_probe: OK
287
[    0.210865] SCSI subsystem initialized
288
[    0.211048] usbcore: registered new interface driver usbfs
289
[    0.211200] usbcore: registered new interface driver hub
290
[    0.211414] usbcore: registered new device driver usb
291
[    0.212055] Registered led device: led:kb
292
[    0.212452] Advanced Linux Sound Architecture Driver Version 1.0.24.
293
[    0.213215] Switching to clocksource gp_timer
294
[    0.223134] NET: Registered protocol family 2
295
[    0.223378] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
296
[    0.223683] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
297
[    0.223744] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
298
[    0.223805] TCP: Hash tables configured (established 2048 bind 2048)
299
[    0.223836] TCP reno registered
300
[    0.223836] UDP hash table entries: 256 (order: 0, 4096 bytes)
301
[    0.223897] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
302
[    0.224629] NET: Registered protocol family 1
303
[    0.228231] Notify: smsm init
304
[    0.234518] NET: Registered protocol family 27
305
[    0.235373] apr_tal:Q6 Is Up
306
[    0.236593] modem_8960_init: modem fatal driver init'ed.
307
[    0.236868] lpass_fatal_init: lpass SSR driver init'ed.
308
[    0.237265] msm_rpm_log_probe: OK
309
[    0.249992] yaffs: yaffs built Jul 21 2016 14:54:39 Installing.
310
[    0.250053] msgmni has been set to 57
311
[    0.251701] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
312
[    0.251732] io scheduler noop registered
313
[    0.251762] io scheduler deadline registered
314
[    0.251823] io scheduler cfq registered (default)
315
[    0.398596] apr_tal:Modem Is Up
316
[    0.409064] msm_serial: driver initialized
317
[    0.409217] msm_serial_hsl: detected port #0
318
[    0.409400] msm_serial_hsl.0: ttyHSL0 at MMIO 0x16240000 (irq = 182) is a MSM
319
[    0.409522] msm_serial_hsl: console setup on port #0
320
[    0.834030] console [ttyHSL0] enabled
321
[    0.853807] msm_serial_hsl: driver initialized
322
[    0.865649] brd: module loaded
323
[    0.871600] loop: module loaded
324
[    0.874347] init gpio to irq = 0
325
[    0.877002] init gpio to irq = 312
326
[    0.880329] quectel_power_manager_probe: OK ###############################
327
[    0.973874] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
328
[    0.979490] qup_i2c qup_i2c.0: I2C slave addr:0xd not connected
329
[    0.985533] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
330
[    0.991973] qup_i2c qup_i2c.0: I2C slave addr:0xd not connected
331
[    0.997894] failed to read wcd9xxx register
332
[    1.002044] tabla-i2c-core 0-000d: Codec read failed
333
[    1.006989] failed to read the wcd9xxx status
334
[    1.014649] tabla-i2c-core: probe of 0-000d failed with error -107
335
[    1.019807] probe for other slaves devices of tabla
336
[    1.024690] probe for other slaves devices of tabla
337
[    1.029513] probe for other slaves devices of tabla
338
[    1.034457] i2c-core: driver [tabla-i2c-core] using legacy suspend method
339
[    1.041141] i2c-core: driver [tabla-i2c-core] using legacy resume method
340
[    1.049137] SCSI Media Changer driver v0.25 
341
[    1.053197] msm_nand_probe: phys addr 0x1b400000 
342
[    1.057134] msm_nand_probe: dmac 0x3
343
[    1.060643] msm_nand_probe: allocated dma buffer at ffdfe000, dma_addr 46a40000
344
[    1.068121] ONFI probe : Found a nonONFI Compliant device 
345
[    1.073462] status: c00020
346
[    1.076087] nandid: 1590aac8 maker c8 device aa
347
[    1.080604] Found a supported NAND device
348
[    1.084602] NAND Controller ID : 0x4030
349
[    1.088386] NAND Device ID  : 0x1590aac8
350
[    1.092293] Buswidth : 8 Bits
351
[    1.095284] Density  : 256 MByte
352
[    1.098458] Pagesize : 2048 Bytes
353
[    1.101754] Erasesize: 131072 Bytes
354
[    1.105264] Oobsize  : 64 Bytes
355
[    1.108377] CFG0 Init  : 0xa8d408c0
356
[    1.111826] CFG1 Init  : 0x0004745c
357
[    1.115336] ECCBUFCFG  : 0x00000203
358
[    1.118785] Creating 16 MTD partitions on "msm_nand":
359
[    1.123851] 0x0000050c0000-0x000005b00000 : "boot"
360
[    1.130260] 0x000000140000-0x0000004a0000 : "sbl2"
361
[    1.135479] 0x0000004a0000-0x000000800000 : "rpm"
362
[    1.140485] 0x000000800000-0x000000d80000 : "efs2"
363
[    1.145643] 0x000000d80000-0x0000012e0000 : "dsp1"
364
[    1.150770] 0x0000012e0000-0x000001d20000 : "dsp3"
365
[    1.156020] 0x000001d20000-0x000004fe0000 : "dsp2"
366
[    1.161147] 0x000004fe0000-0x0000050c0000 : "aboot"
367
[    1.166366] 0x000000000000-0x000000140000 : "mibib"
368
[    1.171493] 0x000005b00000-0x000009b60000 : "cache"
369
[    1.176773] 0x000009b60000-0x000009cc0000 : "misc"
370
[    1.181840] 0x000009cc0000-0x00000a720000 : "recovery"
371
[    1.187395] 0x00000a720000-0x00000a880000 : "fota"
372
[    1.192614] 0x00000a880000-0x00000bf60000 : "recoveryfs"
373
[    1.198382] 0x00000bf60000-0x00000d640000 : "system"
374
[    1.203754] 0x00000d640000-0x000010000000 : "userdata"
375
[    1.210407] rmnet_init: BAM devices[8]
376
[    1.218373] msm_otg msm_otg: msm_otg probe
377
[    1.221455] msm_otg msm_otg: failed to get phy_clk
378
[    1.226308] msm_otg msm_otg: OTG regs = c6828000
379
[    1.232595] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
380
[    1.251121] Initializing USB Mass Storage driver...
381
[    1.255211] usbcore: registered new interface driver usb-storage
382
[    1.260949] USB Mass Storage support registered.
383
[    1.265679] usbcore: registered new interface driver ums-alauda
384
[    1.271570] usbcore: registered new interface driver ums-cypress
385
[    1.277552] usbcore: registered new interface driver ums-datafab
386
[    1.283503] usbcore: registered new interface driver ums-freecom
387
[    1.289516] usbcore: registered new interface driver ums-isd200
388
[    1.295406] usbcore: registered new interface driver ums-jumpshot
389
[    1.301480] usbcore: registered new interface driver ums-karma
390
[    1.307309] usbcore: registered new interface driver ums-onetouch
391
[    1.313352] usbcore: registered new interface driver ums-sddr09
392
[    1.319304] usbcore: registered new interface driver ums-sddr55
393
[    1.325194] usbcore: registered new interface driver ums-usbat
394
[    1.330993] usbcore: registered new interface driver usb_ehset_test
395
[    1.337494] msm_hsic_peripheral msm_hsic_peripheral: HSIC Peripheral regs = c682a000
396
[    1.357912] msm_otg msm_otg: phy_reset: success
397
[    1.362368] msm_hsusb msm_hsusb: [ci13xxx_start] hw_ep_max = 32
398
[    1.367678] mbim_init: initialize 1 instances
399
[    1.372287] mbim_init: Initialized 1 ports
400
[    1.379429] rndis_qc_init: initialize rndis QC instance
401
[    1.384343] android_usb gadget: Mass Storage Function, version: 2009/09/11
402
[    1.390477] android_usb gadget: Number of LUNs=1
403
[    1.395147]  lun0: LUN: removable file: (no medium)
404
[    1.400457] android_usb gadget: android_usb ready
405
[    1.405005] msm_hsic_peripheral msm_hsic_peripheral: [ci13xxx_start] hw_ep_max = 32
406
[    1.412452] android_usb gadget: android_usb ready
407
[    1.417030] msm_hsic_peripheral msm_hsic_peripheral: CI13XXX_CONTROLLER_RESET_EVENT received
408
[    1.425423] msm_hsic_peripheral msm_hsic_peripheral: CI13XXX_CONTROLLER_UDC_STARTED_EVENT received
409
[    1.436105] android_work: android_work:usb disconnect cause suspended&sw_suspended to 0
410
[    1.443094] android_work: android_work: did not send uevent (0 0   (null))
411
[    1.450083] msm_hsic_peripheral msm_hsic_peripheral: HSIC-USB in low power mode
412
[    1.464764] couldn't get usb power supply
413
[    1.468976] diagchar initialized now
414
[    1.471814] input: pmic8xxx_pwrkey as /devices/platform/msm_ssbi.0/pm8018-core/pm8xxx-pwrkey/input/input0
415
[    1.485365] diag: Invalid Msg type 12 proc 2
416
[    1.505631] rtc-pm8xxx rtc-pm8xxx: rtc core: registered pm8xxx_rtc as rtc0
417
[    1.511948] i2c /dev entries driver
418
[    1.518480] pm8xxx_adc_probe: failed to request pa_therm vreg with error -19
419
[    1.545551] pm8xxx_tm_probe: OK
420
[    1.547932] cpuidle: using governor ladder
421
[    1.551747] cpuidle: using governor menu
422
[    1.556508] mmc0: mci-version: 18
423
[    1.560048] mmc0: bam physical base=0x12182000
424
[    1.563467] mmc0: bam virtual base=0xc6830000
425
[    1.567892] sps:BAM 0x12182000 is registered.
426
[    1.571982] mmc0: BAM device registered. bam_handle=0xc63c5000
427
[    1.578116] sps:REVISION of BAM 0xc6830000 is 0x5.
428
[    1.583335] mmc0: Qualcomm MSM SDCC-BAM at 0x0000000012182000 irq 130
429
[    1.589195] mmc0: Qualcomm MSM SDCC-DML at 0x0000000012180800
430
[    1.597405] mmc0: Qualcomm MSM SDCC-core at 0x0000000012180000 irq 136,368 dma -1 dmacrcri -1
431
[    1.606439] mmc0: 8 bit data mode disabled
432
[    1.609674] mmc0: 4 bit data mode enabled
433
[    1.613490] mmc0: polling status mode disabled
434
[    1.618098] mmc0: MMC clock 400000 -> 48000000 Hz, PCLK 0 Hz
435
[    1.624324] mmc0: Slot eject status = 0
436
[    1.627376] mmc0: Power save feature enable = 1
437
[    1.631893] mmc0: SPS-BAM data transfer mode available
438
[    1.637295] mmc1: mci-version: 18
439
[    1.645383] mmc1: bam physical base=0x12142000
440
[    1.654753] mmc1: bam virtual base=0xc686c000
441
[    1.660125] sps:BAM 0x12142000 is registered.
442
[    1.668243] mmc1: BAM device registered. bam_handle=0xc581b200
443
[    1.678284] sps:REVISION of BAM 0xc686c000 is 0x5.
444
[    1.692659] mmc1: Qualcomm MSM SDCC-BAM at 0x0000000012142000 irq 129
445
[    1.703067] mmc1: Qualcomm MSM SDCC-DML at 0x0000000012140800
446
[    1.712955] mmc1: No card detect facilities available
447
[    1.722295] mmc1: Qualcomm MSM SDCC-core at 0x0000000012140000 irq 135,0 dma -1 dmacrcri -1
448
[    1.734594] mmc1: 8 bit data mode disabled
449
[    1.742591] mmc1: 4 bit data mode enabled
450
[    1.750556] mmc1: polling status mode disabled
451
[    1.754616] mmc1: MMC clock 400000 -> 48000000 Hz, PCLK 0 Hz
452
[    1.759682] mmc1: Slot eject status = 0
453
[    1.763497] mmc1: Power save feature enable = 1
454
[    1.767984] mmc1: SPS-BAM data transfer mode available
455
[    1.774484] logger: created 256K log 'log_main'
456
[    1.778330] logger: created 256K log 'log_events'
457
[    1.782908] logger: created 256K log 'log_radio'
458
[    1.787669] logger: created 256K log 'log_system'
459
[    1.842575] voice_allocate_shared_memory: ION memory allocation failed
460
[    1.853502] msm_pcm_probe: dev name msm-voip-dsp
461
[    1.868213] msm_pcm_probe: dev name msm-host-pcm-voice
462
[    1.873340] msm_pcm_probe: dev name msm-pcm-dsp
463
[    1.877033] msm_pcm_probe: dev name msm-multi-ch-pcm-dsp
464
[    1.883198] mdm9615_audio_init: Interface Type = -1
465
[    1.887868] ALSA device list:
466
[    1.890126]   No soundcards found.
467
[    1.893392] Netfilter messages via NETLINK v0.30.
468
[    1.898214] nf_conntrack version 0.5.0 (460 buckets, 1840 max)
469
[    1.904959] ip_set: protocol 6
470
[    1.907187] ip_tables: (C) 2000-2006 Netfilter Core Team
471
[    1.912620] TCP cubic registered
472
[    1.916954] NET: Registered protocol family 10
473
[    1.923332] ip6_tables: (C) 2000-2006 Netfilter Core Team
474
[    1.928094] NET: Registered protocol family 17
475
[    1.932153] VFP support v0.3: implementor 41 architecture 2 part 30 variant 5 rev 1
476
[    1.939783] Registering SWP/SWPB emulation handler
477
[    1.947840] clock_late_init() disabled 42 unused clocks
478
[    1.955989] MSM Watchdog Initialized
479
[    1.958828] no pmic restart interrupt specified
480
[    1.964932] rtc-pm8xxx rtc-pm8xxx: setting system clock to 1970-01-01 00:34:05 UTC (2045)
481
[    1.973172] yaffs: dev is 32505870 name is "mtdblock14" rw
482
[    1.977689] yaffs: passed flags ""
483
[    1.981016] yaffs: Attempting MTD mount of 31.14,"mtdblock14"
484
[    2.039401] yaffs: block 155 is bad
485
[    2.099435] sps:BAM 0x124c2000 is registered.
486
[    2.144208] msm_hsusb msm_hsusb: CI13XXX_CONTROLLER_RESET_EVENT received
487
[    3.018037] yaffs: yaffs_read_super: is_checkpointed 0
488
[    3.018129] VFS: Mounted root (yaffs2 filesystem) on device 31:14.
489
[    3.023805] Freeing init memory: 168K
490
[    3.319090] sps:BAM 0x12502000 is registered.
491
[    3.325194] enable_store: android_usb: already disabled
492
[    3.334014] usmd:register_sysctl_table success.
493
[    3.337982] frmnet_bind: RmNet(0) dual Speed, IN:ep8in OUT:ep5out
494
[    3.545734] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
495
[    3.551258] android_work: android_work:usb disconnect cause suspended&sw_suspended to 0
496
[    3.564596] android_work: android_work: did not send uevent (0 0   (null))
497
[    3.619960] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
498
[    3.625911] android_work: android_work: sent uevent USB_STATE=CONNECTED
499
[    3.631893] android_work: android_work:usb disconnect cause suspended&sw_suspended to 0
500
[    3.655241] android_work: android_work: sent uevent USB_STATE=DISCONNECTED
501
[    3.726629] android_usb gadget: high speed config #1: android_usb
502
[    3.731848] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
503
[    3.738013] msm_otg msm_otg: Avail curr from USB = 500
504
[    3.743293] diag: USB connected
505
[    3.744575] sps:REVISION of BAM 0xc68b8000 is 0x5.
506
[    3.749855] android_work: android_work: sent uevent USB_STATE=CONNECTED
507
[    3.776468] diag: USB connected
508
[    3.834976] android_work: android_work: sent uevent USB_STATE=CONFIGURED
509
[    6.987578] yaffs: dev is 32505871 name is "mtdblock15" rw
510
[    6.992034] yaffs: passed flags ""
511
[    6.995513] yaffs: Attempting MTD mount of 31.15,"mtdblock15"
512
[    8.647001] yaffs: yaffs_read_super: is_checkpointed 0
513
[    8.682405] yaffs: dev is 32505865 name is "mtdblock9" rw
514
[    8.686983] yaffs: passed flags ""
515
[    8.690187] yaffs: Attempting MTD mount of 31.9,"mtdblock9"
516
[    8.692507] yaffs: yaffs_read_super: is_checkpointed 1
517
[    8.984709] adb_open
518
[    9.579856] yaffs: dev is 32505869 name is "mtdblock13" rw
519
[    9.590325] yaffs: passed flags ""
520
[    9.597192] yaffs: Attempting MTD mount of 31.13,"mtdblock13"
521
[    9.597222] yaffs: auto selecting yaffs2
522
[    9.676789] yaffs: yaffs_read_super: is_checkpointed 1
523
[    9.955012] mbim_open: Open mbim driver
524
[    9.959957] mbim_open: Lock mbim_dev->open_excl for open
525
[    9.971738] mbim_open: USB cable not connected
526
[    9.975553] mbim_open: Exit, mbim file opened
527
[   10.053410] smd_pkt_open: DATA9_CNTL open failed -19
528
[   10.085731] smd_pkt_open: DATA12_CNTL open failed -19
529
[   10.127941] smd_pkt_open: DATA13_CNTL open failed -19
530
[   10.175919] smd_pkt_open: DATA14_CNTL open failed -19
531
[   10.805707] qsmem_poll_timer_cb:67 Modem Msg received.
532
[   10.860521] nmea: smd opened
533
[   11.087746] dtr_smd_open smd_open_ret = 0(0 SUCCESS)
534
[   11.091744] DTR SMD EVENT OPEN
535
[   11.113016] buf:dtr_low-
536
[   11.115000] enter rt5616_modinit
537
[   11.125316] enter rt5616_i2c_probe
538
[   11.135571] enter rt5616_probe
539
[   11.137982] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1300c8, irq:183
540
[   11.144239] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
541
[   11.150404] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
542
[   11.156874] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
543
[   11.178391] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1300c8, irq:183
544
[   11.184098] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
545
[   11.193010] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
546
[   11.198687] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
547
[   11.204761] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
548
[   11.211597] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
549
[   11.217610] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
550
[   11.224019] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
551
[   11.230154] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
552
[   11.236593] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
553
[   11.242697] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
554
[   11.249290] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
555
[   11.255241] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
556
[   11.261742] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
557
[   11.267938] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
558
[   11.274408] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
559
[   11.280482] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
560
[   11.286952] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
561
[   11.292995] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
562
[   11.299496] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
563
[   11.305569] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
564
[   11.312314] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
565
[   11.318663] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
566
[   11.327697] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
567
[   11.333801] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
568
[   11.343567] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
569
[   11.349641] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
570
[   11.356111] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
571
[   11.362185] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
572
[   11.368655] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
573
[   11.374790] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
574
[   11.381291] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
575
[   11.387456] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
576
[   11.393834] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
577
[   11.400244] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
578
[   11.407172] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
579
[   11.413215] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
580
[   11.420845] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
581
[   11.426552] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
582
[   11.432992] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
583
[   11.439127] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
584
[   11.445566] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
585
[   11.451854] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
586
[   11.458263] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
587
[   11.464306] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
588
[   11.470746] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
589
[   11.476911] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
590
[   11.483351] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
591
[   11.489485] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
592
[   11.495925] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
593
[   11.501999] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
594
[   11.509720] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
595
[   11.514939] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
596
[   11.521471] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
597
[   11.527575] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
598
[   11.534472] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
599
[   11.540088] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
600
[   11.546864] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
601
[   11.552662] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
602
[   11.559133] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
603
[   11.565206] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
604
[   11.571799] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
605
[   11.577872] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
606
[   11.585502] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
607
[   11.590813] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
608
[   11.597192] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
609
[   11.603235] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
610
[   11.610102] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
611
[   11.616023] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
612
[   11.622524] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
613
[   11.628536] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
614
[   11.634945] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
615
[   11.641049] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
616
[   11.647489] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
617
[   11.657652] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
618
[   11.663268] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
619
[   11.670318] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
620
[   11.676697] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
621
[   11.682191] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
622
[   11.688661] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
623
[   11.694674] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
624
[   11.701327] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
625
[   11.707279] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
626
[   11.713902] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
627
[   11.719945] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
628
[   11.726323] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
629
[   11.732427] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
630
[   11.738989] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
631
[   11.744971] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
632
[   11.751838] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
633
[   11.757698] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
634
[   11.764169] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
635
[   11.770242] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
636
[   11.776743] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
637
[   11.782786] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
638
[   11.789317] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
639
[   11.795360] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
640
[   11.802105] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
641
[   11.808026] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
642
[   11.814497] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
643
[   11.820570] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
644
[   11.827102] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
645
[   11.833114] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
646
[   11.839676] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
647
[   11.845688] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
648
[   11.852372] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
649
[   11.858354] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
650
[   11.866809] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
651
[   11.872028] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
652
[   11.878498] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
653
[   11.884541] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
654
[   11.891103] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
655
[   11.897146] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
656
[   11.903555] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
657
[   11.909720] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
658
[   11.916191] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
659
[   11.922264] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
660
[   11.928795] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
661
[   11.934839] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
662
[   11.941339] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
663
[   11.947474] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
664
[   11.953914] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
665
[   11.960476] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
666
[   11.966519] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
667
[   11.972592] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
668
[   11.979093] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
669
[   11.985228] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
670
[   11.991698] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
671
[   11.997833] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
672
[   12.004272] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
673
[   12.010407] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
674
[   12.016847] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
675
[   12.022951] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
676
[   12.029452] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
677
[   12.035525] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
678
[   12.042026] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
679
[   12.048161] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
680
[   12.054600] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
681
[   12.061254] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
682
[   12.067266] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
683
[   12.073370] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
684
[   12.079993] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
685
[   12.085945] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1343c8, irq:183
686
[   12.092385] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
687
[   12.098550] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
688
[   12.104959] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
689
[   12.111246] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
690
[   12.117564] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
691
[   12.123638] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
692
[   12.130138] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
693
[   12.136273] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
694
[   12.142713] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
695
[   12.148878] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
696
[   12.155318] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
697
[   12.161452] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
698
[   12.167892] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
699
[   12.173996] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
700
[   12.180894] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
701
[   12.187120] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
702
[   12.193071] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
703
[   12.199206] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
704
[   12.205646] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
705
[   12.213032] msm_dai_q6_dai_sec_auxpcm_probe
706
[   12.216297] msm_dai_q6_dai_sec_auxpcm_probe
707
[   12.224629] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1300c8, irq:183
708
[   12.230276] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
709
[   12.236441] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
710
[   12.242820] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
711
[   12.248985] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
712
[   12.255424] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
713
[   12.261559] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
714
[   12.267999] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
715
[   12.274103] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
716
[   12.280604] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
717
[   12.286769] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
718
[   12.293178] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
719
[   12.299313] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
720
[   12.305753] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
721
[   12.311918] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
722
[   12.318358] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
723
[   12.324431] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
724
[   12.330932] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
725
[   12.337066] qup_i2c qup_i2c.0: QUP: I2C status flags :0x1363c8, irq:183
726
[   12.343537] qup_i2c qup_i2c.0: I2C slave addr:0x1b not connected
727
[   12.349916] asoc: null-codec-dai <-> MultiMedia1 mapping ok
728
[   12.357698] asoc: null-codec-dai <-> MultiMedia2 mapping ok
729
[   12.364748] asoc: null-codec-dai <-> CS-VOICE mapping ok
730
[   12.372012] asoc: null-codec-dai <-> VoIP mapping ok
731
[   12.378666] asoc: null-codec-dai <-> SLIMBUS0_HOSTLESS mapping ok
732
[   12.386235] asoc: msm-stub-rx <-> msm-dai-q6.241 mapping ok
733
[   12.393285] asoc: msm-stub-tx <-> msm-dai-q6.240 mapping ok
734
[   12.400396] asoc: null-codec-dai <-> AUXPCM_HOSTLESS mapping ok
735
[   12.407843] asoc: null-codec-dai <-> VoLTE mapping ok
736
[   12.414375] asoc: null-codec-dai <-> DTMF_RX_HOSTLESS mapping ok
737
[   12.421822] asoc: msm-stub-tx <-> msm-dai-stub mapping ok
738
[   12.428658] asoc: msm-stub-tx <-> msm-dai-stub mapping ok
739
[   12.435464] asoc: msm-stub-rx <-> msm-dai-stub mapping ok
740
[   12.442301] asoc: msm-stub-tx <-> msm-dai-stub mapping ok
741
[   12.449107] asoc: msm-stub-rx <-> msm-dai-stub mapping ok
742
[   12.456096] asoc: msm-stub-rx <-> msm-dai-q6.12288 mapping ok
743
[   12.463238] asoc: msm-stub-tx <-> msm-dai-q6.12289 mapping ok
744
[   12.470441] asoc: msm-stub-rx <-> msm-dai-q6.224 mapping ok
745
[   12.477460] asoc: msm-stub-tx <-> msm-dai-q6.225 mapping ok
746
[   12.484541] asoc: rt5616-aif1 <-> msm-dai-q6.2 mapping ok
747
[   12.491530] asoc: rt5616-aif1 <-> msm-dai-q6.3 mapping ok
748
[   12.498397] asoc: msm-stub-rx <-> msm-dai-q6.12 mapping ok
749
[   12.505264] asoc: msm-stub-tx <-> msm-dai-q6.13 mapping ok
750
[   12.512223] asoc: msm-stub-rx <-> msm-dai-q6.32773 mapping ok
751
[   12.519395] asoc: msm-stub-tx <-> msm-dai-q6.32772 mapping ok
752
[   12.526598] asoc: msm-stub-tx <-> msm-dai-q6.32771 mapping ok
753
-   47.270715] buf:+QFOPEN  passwd 
754
-  104.919975] buf:+QFCLOSE 0
755
-  121.510392] buf:+QFOPEN ?
756
[  391.714603] sps:BAM is already registered: 12502000
757
[  391.718571] usb_bam_init: register bam error -17
758
[  391.723088] usb_bam usb_bam: failed to initialize usb bam
759
[  391.728887] diag: USB disconnected
760
[  391.731603] frmnet_bind: RmNet(0) dual Speed, IN:ep13in OUT:ep7out
761
[  391.737158] sps:sps_device_reset:device handle should not be 0.
762
[  391.746009] usb_bam_reset: BAM reset failed
763
[  391.755959] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
764
[  391.761269] msm_otg msm_otg: Avail curr from USB = 2
765
[  391.766213] msm_hsusb msm_hsusb: CI13XXX_CONTROLLER_SUSPEND_EVENT received
766
[  391.773264] android_work: android_work: did not send uevent (1 1   (null))
767
[  392.126384] msm_hsusb msm_hsusb: CI13XXX_CONTROLLER_RESUME_EVENT received
768
[  392.132305] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
769
[  392.138562] msm_otg msm_otg: Avail curr from USB = 0
770
[  392.144025] android_work: android_work:usb disconnect cause suspended&sw_suspended to 0
771
[  392.155409] android_work: android_work: sent uevent USB_STATE=DISCONNECTED
772
[  392.198687] android_work: android_work: sent uevent USB_STATE=CONNECTED
773
[  392.204578] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
774
[  392.216145] android_work: android_work:usb disconnect cause suspended&sw_suspended to 0
775
[  392.235678] android_work: android_work: sent uevent USB_STATE=DISCONNECTED
776
[  392.291957] android_usb gadget: high speed config #1: android_usb
777
[  392.298214] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
778
[  392.303586] msm_otg msm_otg: Avail curr from USB = 500
779
[  392.309110] diag: USB connected
780
[  392.315366] android_work: android_work: sent uevent USB_STATE=CONNECTED
781
[  392.341492] diag: USB connected
782
[  392.387700] android_work: android_work: sent uevent USB_STATE=CONFIGURED
783
[  436.916496] sps:BAM is already registered: 12502000
784
[  436.920158] usb_bam_init: register bam error -17
785
[  436.925041] usb_bam usb_bam: failed to initialize usb bam
786
[  436.930749] diag: USB disconnected
787
[  436.933221] adb_bind_config
788
[  436.935144] sps:sps_device_reset:device handle should not be 0.
789
[  436.945307] frmnet_bind: RmNet(0) dual Speed, IN:ep14in OUT:ep8out
790
[  436.950617] usb_bam_reset: BAM reset failed
791
[  436.960750] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
792
[  436.966091] msm_otg msm_otg: Avail curr from USB = 2
793
[  436.971036] msm_hsusb msm_hsusb: CI13XXX_CONTROLLER_SUSPEND_EVENT received
794
[  436.978055] android_work: android_work: did not send uevent (1 1   (null))
795
[  437.171158] msm_hsusb msm_hsusb: CI13XXX_CONTROLLER_RESUME_EVENT received
796
[  437.177079] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
797
[  437.183335] msm_otg msm_otg: Avail curr from USB = 0
798
[  437.188768] android_work: android_work:usb disconnect cause suspended&sw_suspended to 0
799
[  437.198168] android_work: android_work: sent uevent USB_STATE=DISCONNECTED
800
[  437.243644] android_work: android_work: sent uevent USB_STATE=CONNECTED
801
[  437.249565] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
802
[  437.260491] android_work: android_work:usb disconnect cause suspended&sw_suspended to 0
803
[  437.279078] android_work: android_work: sent uevent USB_STATE=DISCONNECTED
804
[  437.336578] android_usb gadget: high speed config #1: android_usb
805
[  437.342713] msm_otg msm_otg: Failed notifying 1 charger type to PMIC
806
[  437.348115] msm_otg msm_otg: Avail curr from USB = 500
807
[  437.353670] diag: USB connected
808
[  437.354768] msm_hsusb msm_hsusb: [ep_enable] enabling a non-empty endpoint!
809
[  437.363741] android_work: android_work: sent uevent USB_STATE=CONNECTED
810
[  437.437540] android_work: android_work: sent uevent USB_STATE=CONFIGURED
811
[  728.231893] [dsp_debug.c:dsp_read] Memory Invalid or not initialized, Base = 0x0, size = 0x0
812
[  748.249992] Ramdump(ramdump_smem-modem): Read when there's no dump available!
813 1 zecke
[  754.749549] Ramdump(ramdump_modem_sw): Read when there's no dump available!
814 4 zecke
</pre>
Add picture from clipboard (Maximum size: 48.8 MB)