-
Notifications
You must be signed in to change notification settings - Fork 1
/
reboot_am43x.log
1047 lines (1021 loc) · 55.3 KB
/
reboot_am43x.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Test case:
---------
- CAN bus contains AM437x-evm DCAN0, J6-evm DCAN1 and J6-eco DCAN1.
- J6-evm is sending packets continuously to J6-eco
- AM437x-evm is in a reboot loop. At each boot it brings up DCAN0,
attempts to receive packets for 1 second, brings down DCAN0 and reboots.
--partial log at end of ~600 iterations--
interface = can0, family = 29, type = 3, proto = 1
[ 27.245216] can: controller area network core (rev 20120528 abi 9)
[ 27.252026] c_can_platform 481cc000.can can0: msg lost in buffer 16
[ 27.260099] NET: Registered protocol family 29
[ 27.299539] can: raw protocol (rev 20120528)
candump size 54672
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Boots: 614, UP fails: 28, OFF fails: 0, READ fails: 0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Broadcast message from root@am437x-evm (ttyO0) (Sun Oct 12 22:09:36 2014):
The system is going down for reboot NOW!
INIT: Switching to runlevel: 6
INIT: Sending processes the TERM signal
UIM SYSFS Node Found at /sys/./devices/kim.8/install
Stopping uim-sysfs daemon.
Stopping Dropbear SSH server: stopped /usr/sbin/dropbear (pid 1536)
dropbear.
Stopping telnet daemon.
Stopping system message bus: dbus.
Stopping syslogd/klogd: stopped syslogd (pid 1573)
stopped klogd (pid 1576)
done
Stopping thttpd.
Stopping Weston
stopping statd: done
ALSA: Storing mixer settings...
Stopping PVR
rmmod: ERROR: Module bufferclass_ti is not currently loaded
Stopping rpcbind daemon...
done.
Stopping Lighttpd Web Server: stopped /usr/sbin/lighttpd (pid 1623)
lighttpd.
Deconfiguring network interfaces... done.
***************************************************************
***************************************************************
NOTICE: This file system contains the followin GPLv3 packages:
binutils
elfutils
gdbserver
libdw1
libelf1
m4
If you do not wish to distribute GPLv3 components please remove
the above packages prior to distribution. This can be done using
the opkg remove command. i.e.:
opkg remove <package>
Where <package> is the name printed in the list above
NOTE: If the package is a dependency of another package you
will be notified of the dependent packages. You should
use the --force-removal-of-dependent-packages option to
also remove the dependent packages as well
***************************************************************
***************************************************************
Sending all processes the TERM signal...
Sending all processes the KILL signal...
Unmounting remote filesystems...
Deactivating swap...
Unmounting local filesystems...
[ 44.450148] EXT4-fs (mmcblk0p2): re-mounted. Opts: data=ordered
Rebooting... [ 46.704755] reboot: Restarting system
U-Boot SPL 2014.07-00079-g355bcb1 (Dec 10 2014 - 15:39:06)
SPL: Please implement spl_start_uboot() for your board
SPL: Direct Linux boot not active!
reading u-boot.img
reading u-boot.img
U-Boot 2014.07-00079-g355bcb1 (Dec 10 2014 - 15:39:06)
I2C: ready
DRAM: 1 GiB
NAND: 512 MiB
MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1
Using default environment
Net: <ethaddr> not set. Validating first E-fuse MAC
cpsw
Hit any key to stop autoboot: 1 0
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
reading uEnv.txt
911 bytes read in 4 ms (221.7 KiB/s)
Loaded environment from uEnv.txt
Importing environment from mmc ...
Running uenvcmd ...
4326128 bytes read in 246 ms (16.8 MiB/s)
47299 bytes read in 40 ms (1.1 MiB/s)
Kernel image @ 0x82000000 [ 0x000000 - 0x4202f0 ]
## Flattened Device Tree blob at 88000000
Booting using the fdt blob at 0x88000000
Loading Device Tree to 8fff1000, end 8ffff8c2 ... OK
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 3.14.26-02525-gf5caa9e-dirty (roger@rockdesk) (gcc version 4.8.2 (Ubuntu/Linaro 4.8.2-16ubuntu4) ) #850 SMP Tue Dec 9 20:03:25 EET 2014
[ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] Machine model: TI AM437x GP EVM
[ 0.000000] cma: CMA: reserved 24 MiB at ae000000
[ 0.000000] Memory policy: Data cache writeback
[ 0.000000] CPU: All CPU(s) started in SVC mode.
[ 0.000000] AM437x ES1.1 (sgx neon )
[ 0.000000] PERCPU: Embedded 8 pages/cpu @ed7cb000 s8832 r8192 d15744 u32768
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 260112
[ 0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext4 rootwait
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Memory: 1003716K/1046528K available (6059K kernel code, 386K rwdata, 1952K rodata, 336K init, 244K bss, 42812K reserved, 268288K highmem)
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
[ 0.000000] vmalloc : 0xf0000000 - 0xff000000 ( 240 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xef800000 ( 760 MB)
[ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
[ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
[ 0.000000] .text : 0xc0008000 - 0xc07db01c (8013 kB)
[ 0.000000] .init : 0xc07dc000 - 0xc0830280 ( 337 kB)
[ 0.000000] .data : 0xc0832000 - 0xc0892890 ( 387 kB)
[ 0.000000] .bss : 0xc0892898 - 0xc08cfa3c ( 245 kB)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.000000] NR_IRQS:16 nr_irqs:16 16
[ 0.000000] GIC CPU mask not found - kernel will fail to boot.
[ 0.000000] GIC CPU mask not found - kernel will fail to boot.
[ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz
[ 0.000021] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956969942ns
[ 0.000049] OMAP clocksource: timer1 at 24000000 Hz
[ 0.000339] Console: colour dummy device 80x30
[ 0.000391] Calibrating delay loop... 1993.93 BogoMIPS (lpj=9969664)
[ 0.059148] pid_max: default: 32768 minimum: 301
[ 0.059306] Security Framework initialized
[ 0.059392] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.059412] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.068417] CPU: Testing write buffer coherency: ok
[ 0.068909] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.068988] Setting up static identity map for 0x805f0b98 - 0x805f0bf0
[ 0.069097] L310 cache controller enabled
[ 0.069118] l2x0: 16 ways, CACHE_ID 0x410000c9, AUX_CTRL 0x7e030000, Cache size: 256 kB
[ 0.069886] Brought up 1 CPUs
[ 0.069894] SMP: Total of 1 processors activated.
[ 0.069902] CPU: All CPU(s) started in SVC mode.
[ 0.070421] devtmpfs: initialized
[ 0.074648] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
[ 0.085847] omap_hwmod: tptc0 using broken dt data from edma
[ 0.085946] omap_hwmod: tptc1 using broken dt data from edma
[ 0.086027] omap_hwmod: tptc2 using broken dt data from edma
[ 0.147395] omap_hwmod: dss_dispc: cannot be enabled for reset (3)
[ 0.150680] omap_hwmod: dss_rfbi: cannot be enabled for reset (3)
[ 0.151365] pinctrl core: initialized pinctrl subsystem
[ 0.152270] regulator-dummy: no parameters
[ 0.154184] NET: Registered protocol family 16
[ 0.156244] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.158541] cpuidle: using governor ladder
[ 0.158553] cpuidle: using governor menu
[ 0.169103] syscon 44e10000.control_module: regmap [mem 0x44e10000-0x44e107f3] registered
[ 0.170587] platform 49000000.edma: alias fck already exists
[ 0.170610] platform 49000000.edma: alias fck already exists
[ 0.170621] platform 49000000.edma: alias fck already exists
[ 0.173864] OMAP GPIO hardware version 0.1
[ 0.186941] omap-gpmc 50000000.gpmc: could not find pctldev for node /pinmux@44e10800/nand_flash_x8_default, deferring probe
[ 0.186969] platform 50000000.gpmc: Driver omap-gpmc requests probe deferral
[ 0.194353] No ATAGs?
[ 0.194380] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
[ 0.194391] hw-breakpoint: maximum watchpoint size is 4 bytes.
[ 0.224439] bio: create slab <bio-0> at 0
[ 0.241072] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver
[ 0.242157] evm_v3_3d: 3300 mV
[ 0.242625] vtt_fixed: 1500 mV
[ 0.243072] vmmcwl_fixed: 1800 mV
[ 0.245127] vgaarb: loaded
[ 0.245633] i2c-core: driver [palmas] using legacy suspend method
[ 0.245644] i2c-core: driver [palmas] using legacy resume method
[ 0.246315] SCSI subsystem initialized
[ 0.247783] usbcore: registered new interface driver usbfs
[ 0.247971] usbcore: registered new interface driver hub
[ 0.248191] usbcore: registered new device driver usb
[ 0.249319] omap_i2c 44e0b000.i2c: could not find pctldev for node /pinmux@44e10800/i2c0_pins, deferring probe
[ 0.249346] platform 44e0b000.i2c: Driver omap_i2c requests probe deferral
[ 0.249373] omap_i2c 4802a000.i2c: could not find pctldev for node /pinmux@44e10800/i2c1_pins_default, deferring probe
[ 0.249386] platform 4802a000.i2c: Driver omap_i2c requests probe deferral
[ 0.249903] pps_core: LinuxPPS API ver. 1 registered
[ 0.249916] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.250056] PTP clock support registered
[ 0.251961] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
[ 0.253062] Advanced Linux Sound Architecture Driver Initialized.
[ 0.254677] Switched to clocksource timer1
[ 0.275749] NET: Registered protocol family 2
[ 0.276484] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.276557] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.276663] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.276797] TCP: reno registered
[ 0.276809] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.276862] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.277123] NET: Registered protocol family 1
[ 0.277516] RPC: Registered named UNIX socket transport module.
[ 0.277528] RPC: Registered udp transport module.
[ 0.277533] RPC: Registered tcp transport module.
[ 0.277538] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.280960] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 0.379948] bounce pool size: 64 pages
[ 0.380273] VFS: Disk quotas dquot_6.5.2
[ 0.380415] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.380939] NFS: Registering the id_resolver key type
[ 0.380998] Key type id_resolver registered
[ 0.381005] Key type id_legacy registered
[ 0.381040] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc.
[ 0.381176] msgmni has been set to 1484
[ 0.382740] NET: Registered protocol family 38
[ 0.382784] io scheduler noop registered
[ 0.382791] io scheduler deadline registered
[ 0.382815] io scheduler cfq registered (default)
[ 0.384562] omap-usb2 483a8000.phy: could not find pctldev for node /pinmux@44e10800/usb2_phy1_default, deferring probe
[ 0.384589] platform 483a8000.phy: Driver omap-usb2 requests probe deferral
[ 0.384613] omap-usb2 483e8000.phy: could not find pctldev for node /pinmux@44e10800/usb2_phy2_default, deferring probe
[ 0.384625] platform 483e8000.phy: Driver omap-usb2 requests probe deferral
[ 0.385970] pinctrl-single 44e10800.pinmux: 199 pins at pa f9e10800 size 796
[ 0.389557] backlight.5 supply power not found, using dummy regulator
[ 0.391274] OMAP DSS rev 2.0
[ 0.397602] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.400669] omap_uart 44e09000.serial: no wakeirq for uart0
[ 0.400693] omap_uart 44e09000.serial: No clock speed specified: using default: 48000000
[ 0.400814] 44e09000.serial: ttyO0 at MMIO 0x44e09000 (irq = 104, base_baud = 3000000) is a OMAP UART0
[ 1.204272] console [ttyO0] enabled
[ 1.208857] omap_uart 481a6000.serial: no wakeirq for uart0
[ 1.214854] omap_uart 481a6000.serial: No clock speed specified: using default: 48000000
[ 1.223476] 481a6000.serial: ttyO3 at MMIO 0x481a6000 (irq = 76, base_baud = 3000000) is a OMAP UART3
[ 1.234793] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
[ 1.242239] [drm] Initialized drm 1.1.0 20060810
[ 1.258399] brd: module loaded
[ 1.267811] loop: module loaded
[ 1.271414] (stk) :sysfs entries created
[ 1.275660] (stk) : debugfs entries creation failed
[ 1.281352] (hci_tty): inside hci_tty_init
[ 1.286455] (hci_tty): allocated 249, 0
[ 1.293808] mtdoops: mtd device (mtddev=name/number) must be supplied
[ 1.305575] usbcore: registered new interface driver asix
[ 1.311466] usbcore: registered new interface driver ax88179_178a
[ 1.318435] usbcore: registered new interface driver cdc_ether
[ 1.324864] usbcore: registered new interface driver smsc95xx
[ 1.331067] usbcore: registered new interface driver net1080
[ 1.337378] usbcore: registered new interface driver cdc_subset
[ 1.343788] usbcore: registered new interface driver zaurus
[ 1.349909] usbcore: registered new interface driver cdc_ncm
[ 1.356447] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.363322] ehci-pci: EHCI PCI platform driver
[ 1.368274] ehci-omap: OMAP-EHCI Host Controller driver
[ 1.374372] usbcore: registered new interface driver cdc_wdm
[ 1.380624] usbcore: registered new interface driver usb-storage
[ 1.388340] mousedev: PS/2 mouse device common for all mice
[ 1.395966] i2c-core: driver [rtc-ds1307] using legacy suspend method
[ 1.402754] i2c-core: driver [rtc-ds1307] using legacy resume method
[ 1.410317] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
[ 1.418014] 44e3e000.rtc: already running
[ 1.422969] i2c /dev entries driver
[ 1.426907] Driver for 1-wire Dallas network protocol.
[ 1.434921] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[ 1.522164] mmc0: host does not support reading read-only switch. assuming write-enable.
[ 1.533205] mmc0: new high speed SDHC card at address 1234
[ 1.539679] mmcblk0: mmc0:1234 SA04G 3.63 GiB
[ 1.546473] mmcblk0: p1 p2
[ 1.605579] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.615335] omap-aes 53501000.aes: OMAP AES hw accel rev: 0.1
[ 1.622520] omap-des 53701000.des: OMAP DES hw accel rev: 0.33
[ 1.630172] omap-sham 53100000.sham: hw accel on OMAP rev 0.0
[ 1.639543] usbcore: registered new interface driver usbhid
[ 1.645527] usbhid: USB HID core driver
[ 1.650491] remoteproc0: wkup_m3 is available
[ 1.655240] remoteproc0: Note: remoteproc is still under development and considered experimental.
[ 1.664683] remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[ 1.675719] remoteproc0: Direct firmware load failed with error -2
[ 1.682313] remoteproc0: Falling back to user helper
[ 1.691547] platform sound.10: Driver asoc-simple-card requests probe deferral
[ 1.701372] oprofile: no performance counters
[ 1.706643] oprofile: using timer interrupt.
[ 1.711385] TCP: cubic registered
[ 1.714928] Initializing XFRM netlink socket
[ 1.719496] NET: Registered protocol family 17
[ 1.724203] NET: Registered protocol family 15
[ 1.729105] Key type dns_resolver registered
[ 1.734253] cpu cpu0: of_pm_voltdm_notifier_register: Failed to get cpu0 regulator/voltdm: -517
[ 1.743494] cpu cpu0: cpu0 clock notifier not ready, retry
[ 1.749541] platform cpufreq-cpu0.0: Driver cpufreq-cpu0 requests probe deferral
[ 1.758134] PM: bootloader does not support rtc-only!
[ 1.763472] ThumbEE CPU extension supported.
[ 1.768124] Registering SWP/SWPB emulation handler
[ 1.774838] vmmcwl_fixed: disabling
[ 1.778525] regulator-dummy: disabling
[ 1.783169] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 1.791871] omap-gpmc 50000000.gpmc: GPMC revision 6.0
[ 1.797396] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
[ 1.804917] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xdc
[ 1.811606] nand: Micron MT29F4G08ABAEAWP
[ 1.815842] nand: 512MiB, SLC, page size: 4096, OOB size: 224
[ 1.821879] using OMAP_ECC_BCH16_CODE_HW ECC scheme
[ 1.827182] 10 ofpart partitions found on MTD device omap2-nand.0
[ 1.833589] Creating 10 MTD partitions on "omap2-nand.0":
[ 1.839388] 0x000000000000-0x000000040000 : "NAND.SPL"
[ 1.846542] 0x000000040000-0x000000080000 : "NAND.SPL.backup1"
[ 1.854212] 0x000000080000-0x0000000c0000 : "NAND.SPL.backup2"
[ 1.861997] 0x0000000c0000-0x000000100000 : "NAND.SPL.backup3"
[ 1.869757] 0x000000100000-0x000000180000 : "NAND.u-boot-spl-os"
[ 1.877884] 0x000000180000-0x000000280000 : "NAND.u-boot"
[ 1.885356] 0x000000280000-0x0000002c0000 : "NAND.u-boot-env"
[ 1.892940] 0x0000002c0000-0x000000300000 : "NAND.u-boot-env.backup1"
[ 1.901484] 0x000000300000-0x000000a00000 : "NAND.kernel"
[ 1.910216] 0x000000a00000-0x000020000000 : "NAND.file-system"
[ 2.027842] vdd_core: 920 <--> 1140 mV at 1100 mV
[ 2.035320] vdd_mpu: 920 <--> 1375 mV at 1330 mV
[ 2.043322] vdcdc3: 1500 mV
[ 2.047399] v1_0bat: 1000 mV
[ 2.051763] v1_8bat: 1800 mV
[ 2.057433] LDO1: 1800 mV
[ 2.061364] omap_i2c 44e0b000.i2c: bus 0 rev0.12 at 100 kHz
[ 2.070464] omap_i2c 4802a000.i2c: bus 1 rev0.12 at 100 kHz
[ 2.080032] asoc-simple-card sound.10: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
[ 2.090904] cpu cpu0: of_pm_voltdm_notifier_register: Fail calculating voltage latency[950000<->1325000]:-22
[ 2.101921] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.164699] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
[ 2.171133] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
[ 2.178365] libphy: 4a101000.mdio: probed
[ 2.182591] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver unknown
[ 2.191269] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.198950] cpsw 4a100000.ethernet: Detected MACID = 34:b1:f7:30:e9:7a
[ 2.206104] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.214497] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.222228] omap_rtc 44e3e000.rtc: setting system clock to 2014-10-12 22:09:59 UTC (1413151799)
[ 2.231721] ALSA device list:
[ 2.234926] #0: AM437x-GP-EVM
[ 2.252756] EXT4-fs (mmcblk0p2): warning: mounting fs with errors, running e2fsck is recommended
[ 2.265660] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[ 2.274225] VFS: Mounted root (ext4 filesystem) on device 179:2.
[ 2.282425] devtmpfs: mounted
[ 2.286178] Freeing unused kernel memory: 336K (c07dc000 - c0830000)
INIT: version 2.88 booting
Error opening /dev/fb0: No such file or directory
Starting udev
[ 2.957403] udevd[923]: starting version 182
[ 3.578727] CAN device driver interface
[ 3.633305] c_can_platform 481cc000.can: c_can_platform device registered (regs=fa1cc000, irq=84)
[ 3.696305] media: Linux media interface: v0.10
[ 3.798415] Linux video capture interface: v2.00
[ 3.822445] remoteproc0: powering up wkup_m3
[ 3.831602] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 3.843556] c_can_platform 481d0000.can: c_can_platform device registered (regs=fa1d0000, irq=81)
[ 3.881503] remoteproc0: Booting fw image am335x-pm-firmware.elf, size 154896
[ 3.925198] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 3.998780] PM: CM3 Firmware Version = 0x189
[ 4.050773] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 4.117422] remoteproc0: remote processor wkup_m3 is now up
[ 5.380134] ov2659 0-0030: ov2659_probe: debug: 0
[ 5.394198] input: pixcir_tangoc as /devices/44000000.ocp/4802a000.i2c/i2c-1/1-005c/input/input0
[ 5.480774] omapdrm omapdrm.0: DMM not available, disable DMM support
[ 5.564239] ov2659 0-0030: Sensor detection failed (3030, 0)
[ 5.583575] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 5.590645] [drm] No driver support for vblank timestamp query.
[ 5.607905] ov2659 1-0030: ov2659_probe: debug: 0
[ 5.624524] omapdrm omapdrm.0: fb0: omapdrm frame buffer device
[ 5.630862] omapdrm omapdrm.0: registered panic notifier
[ 5.652594] [drm] Initialized omapdrm 1.0.0 20110917 on minor 0
[ 5.660599] ov2659 1-0030: Found OV2656 sensor
[ 5.667871] ov2659 1-0030: ov2659 sensor driver registered !!
[ 5.706909] vpfe0: v4l2 sub device ov2659 registered
[ 5.725350] vpfe0: vpfe0 video device registered as /dev/video0
[ 6.304049] input: matrix_keypad.6 as /devices/matrix_keypad.6/input/input1
udevadm settle - timeout of 3 seconds reached, the event queue contains:
/sys/devices/44000000.ocp/48060000.mmc/mmc_host/mmc0/mmc0:1234/block/mmcblk0 (862)
/sys/devices/44000000.ocp/48060000.mmc/mmc_host/mmc0/mmc0:1234/block/mmcblk0/mmcblk0p1 (863)
/sys/devices/44000000.ocp/48060000.mmc/mmc_host/mmc0/mmc0:1234/block/mmcblk0/mmcblk0p2 (864)
/sys/devices/44000000.ocp/4a100000.ethernet/net/eth0 (895)
/sys/devices/sound.10/sound/card0/controlC0 (1005)
/sys/devices/virtual/block/loop0 (1049)
/sys/devices/virtual/block/loop1 (1050)
/sys/devices/virtual/block/loop2 (1051)
/sys/devices/virtual/block/loop3 (1052)
/sys/devices/virtual/block/loop4 (1053)
/sys/devices/virtual/block/loop5 (1054)
/sys/devices/virtual/block/loop6 (1055)
/sys/devices/virtual/block/loop7 (1056)
/sys/devices/virtual/block/ram0 (1057)
/sys/devices/virtual/block/ram1 (1058)
/sys/devices/virtual/block/ram10 (1059)
/sys/devices/virtual/block/ram11 (1060)
/sys/devices/virtual/block/ram12 (1061)
/sys/devices/virtual/block/ram13 (1062)
/sys/devices/virtual/block/ram14 (1063)
/sys/devices/virtual/block/ram15 [ 7.127629] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
(1064)
/sys/devices/virtual/block/ram2 (1065)
/sys/devices/virtual/block/ram3 (1066)
/sys/devices/virtual/block/ram4 (1067)
/sys/devices/virtual/block/ram5 (1068)
/sys/devices/virtual/block/ram6 (1069)
/sys/devices/virtual/block/ram7 (1070)
/sys/devices/virtual/block/ram8 (1071)
/sys/devices/virtual/block/ram9 (1072)
/sys/devices/virtual/mtd/mtd0/mtdblock0 (1082)
/sys/devices/virtual/mtd/mtd1/mtdblock1 (1085)
/sys/devices/virtual/mtd/mtd2/mtdblock2 (1088)
/sys/devices/virtual/mtd/mtd3/mtdblock3 (1091)
/sys/devices/virtual/mtd/mtd4/mtdblock4 (1094)
/sys/devices/virtual/mtd/mtd5/mtdblock5 (1097)
/sys/devices/virtual/mtd/mtd6/mtdblock6 (1100)
/sys/devices/virtual/mtd/mtd7/mtdblock7 (1103)
/sys/devices/virtual/mtd/mtd8/mtdblock8 (1106)
/sys/devices/virtual/mtd/mtd9/mtdblock9 (1109)
/sys/devices/virtual/net/lo (1111)
/sys/devices/44000000.ocp/481cc000.can/net/can0 (1119)
/sys/devices/44000000.ocp/481cc000.can/net/can0/queues/rx-0 (1120)
/sys/devices/44000000.ocp/481cc000.can/net/can0/queues/tx-0 (1121)
/sys/devices/44000000.ocp/481d0000.can/net/can1 (1131)
/sys/devices/44000000.ocp/481d0000.can/net/can1/queues/rx-0 (1132)
/sys/devices/44000000.ocp/481d0000.can/net/can1/queues/tx-0 (1133)
/sys/devices/sound.10/sound/card0 (1135)
/sys/devices/matrix_keypad.6/input/input1 (1166)
/sys/devices/matrix_keypad.6/input/input1/event1 (1170)
/sys/devices/44000000.ocp/483c0000.omap_dwc3/483d0000.usb/xhci-hcd.0.auto (1173)
[ 7.574465] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 7.590343] xhci-hcd xhci-hcd.0.auto: irq 206, io mem 0x483d0000
[ 7.728125] random: nonblocking pool is initialized
[ 7.740635] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 7.747871] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 7.755484] usb usb1: Product: xHCI Host Controller
[ 7.760617] usb usb1: Manufacturer: Linux 3.14.26-02525-gf5caa9e-dirty xhci-hcd
[ 7.768310] usb usb1: SerialNumber: xhci-hcd.0.auto
[ 7.784381] hub 1-0:1.0: USB hub found
[ 7.788454] hub 1-0:1.0: 1 port detected
[ 7.792934] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 7.799148] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 7.807450] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 7.814597] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 7.822258] usb usb2: Product: xHCI Host Controller
[ 7.827416] usb usb2: Manufacturer: Linux 3.14.26-02525-gf5caa9e-dirty xhci-hcd
[ 7.835124] usb usb2: SerialNumber: xhci-hcd.0.auto
[ 7.841317] hub 2-0:1.0: USB hub found
[ 7.845489] hub 2-0:1.0: 1 port detected
[ 10.098373] EXT4-fs (mmcblk0p2): re-mounted. Opts: data=ordered
Starting Bootlog daemon: bootlogd: cannot allocate pseudo tty: No such file or directory
bootlogd.
[ 10.350323] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
ALSA: Restoring mixer settings...
INIT: Entering runlevel: 5
Configuring network interfaces... [ 11.193874] net eth0: initializing cpsw version 1.15 (0)
[ 11.275194] net eth0: phy found : id is : 0x221622
udhcpc (v1.22.1) started
Sending discover...
[ 13.275726] libphy: 4a101000.mdio:00 - Link is Up - 100/Full
Sending discover...
Sending select for 192.168.1.61...
Lease of 192.168.1.61 obtained, lease time 86400
/etc/udhcpc.d/50default: Adding DNS 192.168.1.1
done.
Starting system message bus: dbus.
UIM SYSFS Node Found at /sys/./devices/kim.8/install
Starting uim-sysfs daemon.
uim:@ main
uim:install = /sys/./devices/kim.8/install
uim:dev_name = /sys/./devices/kim.8/dev_name
uim:baud_rate = /sys/./devices/kim.8/baud_rate
uim:flow_cntrl = /sys/./devices/kim.8/flow_cntrl
uim:begin polling...
Starting Dropbear SSH server: dropbear.
Starting telnet daemon.
Starting rpcbind daemon...rpcbind: cannot create socket for udp6
rpcbind: cannot create socket for tcp6
done.
creating NFS state directory: done
starting statd: done
Starting syslogd/klogd: done
Starting thttpd.
ioctl FBIOPUT_VSCREENINFO: Invalid argument
Starting PVR
insmod: ERROR: missing filename.
Could not find pvrsrvkm driver
Starting Lighttpd Web Server: lighttpd.
2014-10-12 22:10:13: (/scratch/jenkins/coresdk-nightly-build/build-CORTEX_2/arago-tmp-external-linaro-toolchain/work/cortexa9t2hf-vfp-neon-oe-linux-gnueabi/lighttpd/1.4.33-r1/lighttpd-1.4.33/src/log.c.166) server started
***************************************************************
***************************************************************
NOTICE: This file system contains the followin GPLv3 packages:
binutils
elfutils
gdbserver
libdw1
libelf1
m4
If you do not wish to distribute GPLv3 components please remove
the above packages prior to distribution. This can be done using
the opkg remove command. i.e.:
opkg remove <package>
Where <package> is the name printed in the list above
NOTE: If the package is a dependency of another package you
will be notified of the dependent packages. You should
use the --force-removal-of-dependent-packages option to
also remove the dependent packages as well
***************************************************************
***************************************************************
Stopping Bootlog daemon: bootlogd.
custom script
DCANRXPACKETREBOOT test iteration: 615
[ 26.710070] c_can_platform 481cc000.can can0: setting BTR=1c05 BRPE=0000
[ 27.784488] c_can_platform 481cc000.can can0: msg lost in buffer 16
interface = can0, family = 29, type = 3, proto = 1
[ 27.855791] can: controller area network core (rev 20120528 abi 9)
[ 27.863511] NET: Registered protocol family 29
[ 27.903185] can: raw protocol (rev 20120528)
candump size 55136
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Boots: 615, UP fails: 28, OFF fails: 0, READ fails: 0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Broadcast message from root@am437x-evm (ttyO0) (Sun Oct 12 22:10:27 2014):
The system is going down for reboot NOW!
INIT: Switching to runlevel: 6
INIT: Sending processes the TERM signal
UIM SYSFS Node Found at /sys/./devices/kim.8/install
Stopping uim-sysfs daemon.
Stopping Dropbear SSH server: stopped /usr/sbin/dropbear (pid 1530)
dropbear.
Stopping telnet daemon.
Stopping system message bus: dbus.
Stopping syslogd/klogd: stopped syslogd (pid 1567)
stopped klogd (pid 1570)
done
Stopping thttpd.
Stopping Weston
stopping statd: done
ALSA: Storing mixer settings...
Stopping PVR
rmmod: ERROR: Module bufferclass_ti is not currently loaded
Stopping rpcbind daemon...
done.
Stopping Lighttpd Web Server: stopped /usr/sbin/lighttpd (pid 1617)
lighttpd.
Deconfiguring network interfaces... done.
***************************************************************
***************************************************************
NOTICE: This file system contains the followin GPLv3 packages:
binutils
elfutils
gdbserver
libdw1
libelf1
m4
If you do not wish to distribute GPLv3 components please remove
the above packages prior to distribution. This can be done using
the opkg remove command. i.e.:
opkg remove <package>
Where <package> is the name printed in the list above
NOTE: If the package is a dependency of another package you
will be notified of the dependent packages. You should
use the --force-removal-of-dependent-packages option to
also remove the dependent packages as well
***************************************************************
***************************************************************
Sending all processes the TERM signal...
Sending all processes the KILL signal...
Unmounting remote filesystems...
Deactivating swap...
Unmounting local filesystems...
[ 45.562254] EXT4-fs (mmcblk0p2): re-mounted. Opts: data=ordered
Rebooting... [ 47.808519] reboot: Restarting system
U-Boot SPL 2014.07-00079-g355bcb1 (Dec 10 2014 - 15:39:06)
SPL: Please implement spl_start_uboot() for your board
SPL: Direct Linux boot not active!
reading u-boot.img
reading u-boot.img
U-Boot 2014.07-00079-g355bcb1 (Dec 10 2014 - 15:39:06)
I2C: ready
DRAM: 1 GiB
NAND: 512 MiB
MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1
Using default environment
Net: <ethaddr> not set. Validating first E-fuse MAC
cpsw
Hit any key to stop autoboot: 1 0
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
reading uEnv.txt
911 bytes read in 4 ms (221.7 KiB/s)
Loaded environment from uEnv.txt
Importing environment from mmc ...
Running uenvcmd ...
4326128 bytes read in 246 ms (16.8 MiB/s)
47299 bytes read in 40 ms (1.1 MiB/s)
Kernel image @ 0x82000000 [ 0x000000 - 0x4202f0 ]
## Flattened Device Tree blob at 88000000
Booting using the fdt blob at 0x88000000
Loading Device Tree to 8fff1000, end 8ffff8c2 ... OK
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 3.14.26-02525-gf5caa9e-dirty (roger@rockdesk) (gcc version 4.8.2 (Ubuntu/Linaro 4.8.2-16ubuntu4) ) #850 SMP Tue Dec 9 20:03:25 EET 2014
[ 0.000000] CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c5387d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] Machine model: TI AM437x GP EVM
[ 0.000000] cma: CMA: reserved 24 MiB at ae000000
[ 0.000000] Memory policy: Data cache writeback
[ 0.000000] CPU: All CPU(s) started in SVC mode.
[ 0.000000] AM437x ES1.1 (sgx neon )
[ 0.000000] PERCPU: Embedded 8 pages/cpu @ed7cb000 s8832 r8192 d15744 u32768
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 260112
[ 0.000000] Kernel command line: console=ttyO0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext4 rootwait
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Memory: 1003716K/1046528K available (6059K kernel code, 386K rwdata, 1952K rodata, 336K init, 244K bss, 42812K reserved, 268288K highmem)
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB)
[ 0.000000] vmalloc : 0xf0000000 - 0xff000000 ( 240 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xef800000 ( 760 MB)
[ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
[ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
[ 0.000000] .text : 0xc0008000 - 0xc07db01c (8013 kB)
[ 0.000000] .init : 0xc07dc000 - 0xc0830280 ( 337 kB)
[ 0.000000] .data : 0xc0832000 - 0xc0892890 ( 387 kB)
[ 0.000000] .bss : 0xc0892898 - 0xc08cfa3c ( 245 kB)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.000000] NR_IRQS:16 nr_irqs:16 16
[ 0.000000] GIC CPU mask not found - kernel will fail to boot.
[ 0.000000] GIC CPU mask not found - kernel will fail to boot.
[ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz
[ 0.000019] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956969942ns
[ 0.000046] OMAP clocksource: timer1 at 24000000 Hz
[ 0.000339] Console: colour dummy device 80x30
[ 0.000392] Calibrating delay loop... 1993.93 BogoMIPS (lpj=9969664)
[ 0.059158] pid_max: default: 32768 minimum: 301
[ 0.059319] Security Framework initialized
[ 0.059403] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.059424] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.068424] CPU: Testing write buffer coherency: ok
[ 0.068925] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.069006] Setting up static identity map for 0x805f0b98 - 0x805f0bf0
[ 0.069116] L310 cache controller enabled
[ 0.069197] l2x0: 16 ways, CACHE_ID 0x410000c9, AUX_CTRL 0x7e030000, Cache size: 256 kB
[ 0.069904] Brought up 1 CPUs
[ 0.069913] SMP: Total of 1 processors activated.
[ 0.069920] CPU: All CPU(s) started in SVC mode.
[ 0.070442] devtmpfs: initialized
[ 0.074681] VFP support v0.3: implementor 41 architecture 3 part 30 variant 9 rev 4
[ 0.085871] omap_hwmod: tptc0 using broken dt data from edma
[ 0.085969] omap_hwmod: tptc1 using broken dt data from edma
[ 0.086050] omap_hwmod: tptc2 using broken dt data from edma
[ 0.147436] omap_hwmod: dss_dispc: cannot be enabled for reset (3)
[ 0.150722] omap_hwmod: dss_rfbi: cannot be enabled for reset (3)
[ 0.151409] pinctrl core: initialized pinctrl subsystem
[ 0.152289] regulator-dummy: no parameters
[ 0.154204] NET: Registered protocol family 16
[ 0.156266] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.158560] cpuidle: using governor ladder
[ 0.158572] cpuidle: using governor menu
[ 0.169121] syscon 44e10000.control_module: regmap [mem 0x44e10000-0x44e107f3] registered
[ 0.170608] platform 49000000.edma: alias fck already exists
[ 0.170630] platform 49000000.edma: alias fck already exists
[ 0.170641] platform 49000000.edma: alias fck already exists
[ 0.173854] OMAP GPIO hardware version 0.1
[ 0.186927] omap-gpmc 50000000.gpmc: could not find pctldev for node /pinmux@44e10800/nand_flash_x8_default, deferring probe
[ 0.186957] platform 50000000.gpmc: Driver omap-gpmc requests probe deferral
[ 0.194320] No ATAGs?
[ 0.194348] hw-breakpoint: found 5 (+1 reserved) breakpoint and 1 watchpoint registers.
[ 0.194358] hw-breakpoint: maximum watchpoint size is 4 bytes.
[ 0.224439] bio: create slab <bio-0> at 0
[ 0.241065] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver
[ 0.242150] evm_v3_3d: 3300 mV
[ 0.242626] vtt_fixed: 1500 mV
[ 0.243074] vmmcwl_fixed: 1800 mV
[ 0.245149] vgaarb: loaded
[ 0.245638] i2c-core: driver [palmas] using legacy suspend method
[ 0.245648] i2c-core: driver [palmas] using legacy resume method
[ 0.246311] SCSI subsystem initialized
[ 0.247781] usbcore: registered new interface driver usbfs
[ 0.247969] usbcore: registered new interface driver hub
[ 0.248188] usbcore: registered new device driver usb
[ 0.249306] omap_i2c 44e0b000.i2c: could not find pctldev for node /pinmux@44e10800/i2c0_pins, deferring probe
[ 0.249333] platform 44e0b000.i2c: Driver omap_i2c requests probe deferral
[ 0.249359] omap_i2c 4802a000.i2c: could not find pctldev for node /pinmux@44e10800/i2c1_pins_default, deferring probe
[ 0.249371] platform 4802a000.i2c: Driver omap_i2c requests probe deferral
[ 0.249872] pps_core: LinuxPPS API ver. 1 registered
[ 0.249883] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.250020] PTP clock support registered
[ 0.251910] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400
[ 0.252994] Advanced Linux Sound Architecture Driver Initialized.
[ 0.254611] Switched to clocksource timer1
[ 0.275644] NET: Registered protocol family 2
[ 0.276383] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.276455] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.276561] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.276694] TCP: reno registered
[ 0.276707] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.276759] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.277023] NET: Registered protocol family 1
[ 0.277405] RPC: Registered named UNIX socket transport module.
[ 0.277418] RPC: Registered udp transport module.
[ 0.277423] RPC: Registered tcp transport module.
[ 0.277429] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.280861] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 0.379425] bounce pool size: 64 pages
[ 0.379748] VFS: Disk quotas dquot_6.5.2
[ 0.379892] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.380430] NFS: Registering the id_resolver key type
[ 0.380486] Key type id_resolver registered
[ 0.380495] Key type id_legacy registered
[ 0.380530] jffs2: version 2.2. (NAND) (SUMMARY) © 2001-2006 Red Hat, Inc.
[ 0.380668] msgmni has been set to 1484
[ 0.382238] NET: Registered protocol family 38
[ 0.382281] io scheduler noop registered
[ 0.382288] io scheduler deadline registered
[ 0.382312] io scheduler cfq registered (default)
[ 0.384063] omap-usb2 483a8000.phy: could not find pctldev for node /pinmux@44e10800/usb2_phy1_default, deferring probe
[ 0.384088] platform 483a8000.phy: Driver omap-usb2 requests probe deferral
[ 0.384113] omap-usb2 483e8000.phy: could not find pctldev for node /pinmux@44e10800/usb2_phy2_default, deferring probe
[ 0.384124] platform 483e8000.phy: Driver omap-usb2 requests probe deferral
[ 0.385445] pinctrl-single 44e10800.pinmux: 199 pins at pa f9e10800 size 796
[ 0.389015] backlight.5 supply power not found, using dummy regulator
[ 0.390726] OMAP DSS rev 2.0
[ 0.397046] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.400095] omap_uart 44e09000.serial: no wakeirq for uart0
[ 0.400120] omap_uart 44e09000.serial: No clock speed specified: using default: 48000000
[ 0.400238] 44e09000.serial: ttyO0 at MMIO 0x44e09000 (irq = 104, base_baud = 3000000) is a OMAP UART0
[ 1.203601] console [ttyO0] enabled
[ 1.208190] omap_uart 481a6000.serial: no wakeirq for uart0
[ 1.214074] omap_uart 481a6000.serial: No clock speed specified: using default: 48000000
[ 1.222802] 481a6000.serial: ttyO3 at MMIO 0x481a6000 (irq = 76, base_baud = 3000000) is a OMAP UART3
[ 1.234042] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20
[ 1.241614] [drm] Initialized drm 1.1.0 20060810
[ 1.257717] brd: module loaded
[ 1.267124] loop: module loaded
[ 1.270715] (stk) :sysfs entries created
[ 1.274953] (stk) : debugfs entries creation failed
[ 1.280638] (hci_tty): inside hci_tty_init
[ 1.285727] (hci_tty): allocated 249, 0
[ 1.293063] mtdoops: mtd device (mtddev=name/number) must be supplied
[ 1.304690] usbcore: registered new interface driver asix
[ 1.310647] usbcore: registered new interface driver ax88179_178a
[ 1.317591] usbcore: registered new interface driver cdc_ether
[ 1.323949] usbcore: registered new interface driver smsc95xx
[ 1.330232] usbcore: registered new interface driver net1080
[ 1.336430] usbcore: registered new interface driver cdc_subset
[ 1.342824] usbcore: registered new interface driver zaurus
[ 1.349015] usbcore: registered new interface driver cdc_ncm
[ 1.355509] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.362379] ehci-pci: EHCI PCI platform driver
[ 1.367372] ehci-omap: OMAP-EHCI Host Controller driver
[ 1.373473] usbcore: registered new interface driver cdc_wdm
[ 1.379715] usbcore: registered new interface driver usb-storage
[ 1.387435] mousedev: PS/2 mouse device common for all mice
[ 1.395042] i2c-core: driver [rtc-ds1307] using legacy suspend method
[ 1.401831] i2c-core: driver [rtc-ds1307] using legacy resume method
[ 1.409368] omap_rtc 44e3e000.rtc: rtc core: registered 44e3e000.rtc as rtc0
[ 1.417042] 44e3e000.rtc: already running
[ 1.421989] i2c /dev entries driver
[ 1.425911] Driver for 1-wire Dallas network protocol.
[ 1.433787] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[ 1.512105] mmc0: host does not support reading read-only switch. assuming write-enable.
[ 1.523131] mmc0: new high speed SDHC card at address 1234
[ 1.529621] mmcblk0: mmc0:1234 SA04G 3.63 GiB
[ 1.536412] mmcblk0: p1 p2
[ 1.595503] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.605261] omap-aes 53501000.aes: OMAP AES hw accel rev: 0.1
[ 1.612472] omap-des 53701000.des: OMAP DES hw accel rev: 0.33
[ 1.620117] omap-sham 53100000.sham: hw accel on OMAP rev 0.0
[ 1.629463] usbcore: registered new interface driver usbhid
[ 1.635440] usbhid: USB HID core driver
[ 1.640403] remoteproc0: wkup_m3 is available
[ 1.645145] remoteproc0: Note: remoteproc is still under development and considered experimental.
[ 1.654583] remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[ 1.665640] remoteproc0: Direct firmware load failed with error -2
[ 1.672231] remoteproc0: Falling back to user helper
[ 1.681467] platform sound.10: Driver asoc-simple-card requests probe deferral
[ 1.691270] oprofile: no performance counters
[ 1.696539] oprofile: using timer interrupt.
[ 1.701281] TCP: cubic registered
[ 1.704826] Initializing XFRM netlink socket
[ 1.709390] NET: Registered protocol family 17
[ 1.714098] NET: Registered protocol family 15
[ 1.718985] Key type dns_resolver registered
[ 1.724129] cpu cpu0: of_pm_voltdm_notifier_register: Failed to get cpu0 regulator/voltdm: -517
[ 1.733365] cpu cpu0: cpu0 clock notifier not ready, retry
[ 1.739404] platform cpufreq-cpu0.0: Driver cpufreq-cpu0 requests probe deferral
[ 1.748006] PM: bootloader does not support rtc-only!
[ 1.753351] ThumbEE CPU extension supported.
[ 1.758000] Registering SWP/SWPB emulation handler
[ 1.764690] vmmcwl_fixed: disabling
[ 1.768382] regulator-dummy: disabling
[ 1.773029] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 1.781758] omap-gpmc 50000000.gpmc: GPMC revision 6.0
[ 1.787282] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
[ 1.794826] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xdc
[ 1.801511] nand: Micron MT29F4G08ABAEAWP
[ 1.805743] nand: 512MiB, SLC, page size: 4096, OOB size: 224
[ 1.811785] using OMAP_ECC_BCH16_CODE_HW ECC scheme
[ 1.817091] 10 ofpart partitions found on MTD device omap2-nand.0
[ 1.823501] Creating 10 MTD partitions on "omap2-nand.0":
[ 1.829298] 0x000000000000-0x000000040000 : "NAND.SPL"
[ 1.836432] 0x000000040000-0x000000080000 : "NAND.SPL.backup1"
[ 1.844081] 0x000000080000-0x0000000c0000 : "NAND.SPL.backup2"
[ 1.851878] 0x0000000c0000-0x000000100000 : "NAND.SPL.backup3"
[ 1.859640] 0x000000100000-0x000000180000 : "NAND.u-boot-spl-os"
[ 1.867776] 0x000000180000-0x000000280000 : "NAND.u-boot"
[ 1.875232] 0x000000280000-0x0000002c0000 : "NAND.u-boot-env"
[ 1.882831] 0x0000002c0000-0x000000300000 : "NAND.u-boot-env.backup1"
[ 1.891395] 0x000000300000-0x000000a00000 : "NAND.kernel"
[ 1.900138] 0x000000a00000-0x000020000000 : "NAND.file-system"
[ 2.017768] vdd_core: 920 <--> 1140 mV at 1100 mV
[ 2.025264] vdd_mpu: 920 <--> 1375 mV at 1330 mV
[ 2.033276] vdcdc3: 1500 mV
[ 2.037173] v1_0bat: 1000 mV
[ 2.041515] v1_8bat: 1800 mV
[ 2.047346] LDO1: 1800 mV
[ 2.051289] omap_i2c 44e0b000.i2c: bus 0 rev0.12 at 100 kHz
[ 2.060359] omap_i2c 4802a000.i2c: bus 1 rev0.12 at 100 kHz
[ 2.069914] asoc-simple-card sound.10: tlv320aic3x-hifi <-> 4803c000.mcasp mapping ok
[ 2.080795] cpu cpu0: of_pm_voltdm_notifier_register: Fail calculating voltage latency[950000<->1325000]:-22
[ 2.091808] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.154635] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6
[ 2.161054] davinci_mdio 4a101000.mdio: detected phy mask fffffffe
[ 2.168299] libphy: 4a101000.mdio: probed
[ 2.172524] davinci_mdio 4a101000.mdio: phy[0]: device 4a101000.mdio:00, driver unknown
[ 2.181207] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.188888] cpsw 4a100000.ethernet: Detected MACID = 34:b1:f7:30:e9:7a
[ 2.196051] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.204453] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 2.212190] omap_rtc 44e3e000.rtc: setting system clock to 2014-10-12 22:10:50 UTC (1413151850)
[ 2.221681] ALSA device list:
[ 2.224881] #0: AM437x-GP-EVM
[ 2.242745] EXT4-fs (mmcblk0p2): warning: mounting fs with errors, running e2fsck is recommended
[ 2.255679] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[ 2.264239] VFS: Mounted root (ext4 filesystem) on device 179:2.
[ 2.272441] devtmpfs: mounted
[ 2.276200] Freeing unused kernel memory: 336K (c07dc000 - c0830000)
INIT: version 2.88 booting
Error opening /dev/fb0: No such file or directory
Starting udev
[ 2.947522] udevd[923]: starting version 182
[ 3.565932] CAN device driver interface
[ 3.633199] c_can_platform 481cc000.can: c_can_platform device registered (regs=fa1cc000, irq=84)
[ 3.679505] media: Linux media interface: v0.10
[ 3.788382] Linux video capture interface: v2.00
[ 3.831686] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 3.842265] c_can_platform 481d0000.can: c_can_platform device registered (regs=fa1d0000, irq=81)
[ 3.901797] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 4.004977] platform omapdrm.0: Driver omapdrm requests probe deferral
[ 5.308575] ov2659 0-0030: ov2659_probe: debug: 0
[ 5.326024] input: pixcir_tangoc as /devices/44000000.ocp/4802a000.i2c/i2c-1/1-005c/input/input0
[ 5.370917] omapdrm omapdrm.0: DMM not available, disable DMM support
[ 5.828104] ov2659 0-0030: Sensor detection failed (3030, 0)
[ 5.835799] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 5.843224] [drm] No driver support for vblank timestamp query.
[ 5.855930] ov2659 1-0030: ov2659_probe: debug: 0
[ 5.994167] remoteproc0: powering up wkup_m3
[ 6.052238] ov2659 1-0030: Found OV2656 sensor
[ 6.071534] remoteproc0: Booting fw image am335x-pm-firmware.elf, size 154896
[ 6.107787] omapdrm omapdrm.0: fb0: omapdrm frame buffer device
[ 6.114061] omapdrm omapdrm.0: registered panic notifier
[ 6.120378] vpfe0: v4l2 sub device ov2659 registered
[ 6.139071] PM: CM3 Firmware Version = 0x189
[ 6.144962] [drm] Initialized omapdrm 1.0.0 20110917 on minor 0
[ 6.155175] vpfe0: vpfe0 video device registered as /dev/video0
[ 6.161461] ov2659 1-0030: ov2659 sensor driver registered !!
[ 6.168365] remoteproc0: remote processor wkup_m3 is now up
[ 6.206205] input: matrix_keypad.6 as /devices/matrix_keypad.6/input/input1
udevadm settle - timeout of 3 seconds reached, the event queue contains:
/sys/devices/44000000.ocp/44e0d000.tscadc/TI-am335x-adc (841)
/sys/devices/44000000.ocp/48060000.mmc/mmc_host/mmc0/mmc0:1234/block/mmcblk0 (862)
/sys/devices/44000000.ocp/48060000.mmc/mmc_host/mmc0/mmc0:1234/block/mmcblk0/mmcblk0p1 (863)
/sys/devices/44000000.ocp/48060000.mmc/mmc_host/mmc0/mmc0:1234/block/mmcblk0/mmcblk0p2 (864)
/sys/devices/44000000.ocp/4a100000.ethernet/net/eth0 (895)
/sys/devices/matrix_keypad.6 (923)
/sys/devices/sound.10/sound/card0/controlC0 (1005)
/sys/devices/virtual/block/loop0 (1049)
/sys/devices/virtual/block/loop1 (1050)
/sys/devices/virtual/block/loop2 (1051)
/sys/devices/virtual/block/loop3 (1052)
/sys/devices/virtual/block/loop4 (1053)
/sys/devices/virtual/block/loop5 (1054)
/sys/devices/virtual/block/loop6 (1055)
/sys/devices/virtual/block/loop7 (1056)
/sys/devices/virtual/block/ram0 (1057)
/sys/devices/virtual/block/ram1 (1058)
/sys/devices/virtual/block/ram10 (1059)
/sys/devices/virtual/block/ram11 (1060)
/sys/devices/virtual/block/ram12 (1061)
/sys/devices/virtual/block/ram13 (1062)
/sys/devices/virtual/block/ram14 (1063)
/sys/devices/virtual/block/ram15 (1064)
/sys/devices/virtual/block/ram2 (1065)
/sys/devices/virtual/block/ram3 (1066)
/sys/devices/virtual/block/ram4 (1067)
/sys/devices/virtual/block/ram5 (1068)
/sys/devices/virtual/block/ram6 (1069)
/sys/devices/virtual/block/ram7 (1070)
/sys/devices/virtual/block/ram8 (1071)
/sys/devices/virtual/block/ram9 (1072)
/sys/devices/virtual/mtd/mtd0/mtdblock0 (1082)
/sys/devices/virtual/mtd/mtd1/mtdblock1 (1085)
/sys/devices/virtual/mtd/mtd2/mtdblock2 (1088)
/sys/devices/virtual/mtd/mtd3/mtdblock3 (1091)
/sys/devices/virtual/mtd/mtd4/mtdblock4 (1094)
/sys/devices/virtual/mtd/mtd5/mtdblock5 (1097)
/sys/devices/virtual/mtd/mtd6/mtdblock6 (1100)
/sys/devices/virtual/mtd/mtd7/mtdblock7 (1103)
/sys/devices/virtual/mtd/mtd8/mtdblock8 (1106)
/sys/devices/virtual/mtd/mtd9/mtdblock9 (1109)
/sys/devices/virtual/net/lo (1111)
/sys/devices/44000000.ocp/481cc000.can/net/can0 (1119)
/sys/devices/44000000.ocp/481cc000.can/net/can0/queues/rx-0 (1120)
/sys/devices/44000000.ocp/481cc000.can/net/can0/queues/tx-0 (1121)
/sys/devices/44000000.ocp/48380000.omap_dwc3/48390000.usb (1127)
/sys/devices/44000000.ocp/483c0000.omap_dwc3/483d0000.usb (1128)
/sys/devices/44000000.ocp/481d0000.can/net/can1 (1130)
/sys/devices/44000000.ocp/481d0000.can/net/can1/queues/rx-0 (1131)
/sys/devices/44000000.ocp/481d0000.can/net/can1/queues/tx-0 (1132)
/sys/devices/sound.10/sound/card0 (1134)
/sys/devices/matrix_keypad.6/input/input1 (1165)
/sys/devices/matrix_keypad.6/input/input1/event1 (1166)
/sys/devices/44000000.ocp/48380000.omap_dwc3/48390000.usb/udc/48390000.usb (1169)
/sys/devices/44000000.ocp/483c0000.omap_dwc3/483d0000.usb/xhci-hcd.0.auto (1170)
/sys/devices/44000000.ocp/44e0d000.tscadc/TI-am335x-adc/iio:device0 (1173)
[ 7.602664] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 7.672972] random: nonblocking pool is initialized
[ 7.896591] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 7.990547] xhci-hcd xhci-hcd.0.auto: irq 206, io mem 0x483d0000
[ 8.019486] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 8.026727] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 8.034322] usb usb1: Product: xHCI Host Controller
[ 8.039469] usb usb1: Manufacturer: Linux 3.14.26-02525-gf5caa9e-dirty xhci-hcd
[ 8.047172] usb usb1: SerialNumber: xhci-hcd.0.auto
[ 8.053775] hub 1-0:1.0: USB hub found
[ 8.057983] hub 1-0:1.0: 1 port detected
[ 8.062459] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 8.068708] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 8.083478] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 8.090717] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 8.098355] usb usb2: Product: xHCI Host Controller
[ 8.103487] usb usb2: Manufacturer: Linux 3.14.26-02525-gf5caa9e-dirty xhci-hcd
[ 8.111186] usb usb2: SerialNumber: xhci-hcd.0.auto
[ 8.126913] hub 2-0:1.0: USB hub found
[ 8.131182] hub 2-0:1.0: 1 port detected
[ 9.811803] EXT4-fs (mmcblk0p2): re-mounted. Opts: data=ordered
Starting Bootlog daemon: bootlogd: cannot allocate pseudo tty: No such file or directory
bootlogd.
[ 10.227832] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
ALSA: Restoring mixer settings...
INIT: Entering runlevel: 5
Configuring network interfaces... [ 11.093645] net eth0: initializing cpsw version 1.15 (0)
[ 11.175165] net eth0: phy found : id is : 0x221622
udhcpc (v1.22.1) started
Sending discover...
[ 13.175626] libphy: 4a101000.mdio:00 - Link is Up - 100/Full
Sending discover...
Sending select for 192.168.1.61...
Lease of 192.168.1.61 obtained, lease time 86400
/etc/udhcpc.d/50default: Adding DNS 192.168.1.1
done.
Starting system message bus: dbus.
UIM SYSFS Node Found at /sys/./devices/kim.8/install
Starting uim-sysfs daemon.
uim:@ main
uim:install = /sys/./devices/kim.8/install
uim:dev_name = /sys/./devices/kim.8/dev_name
uim:baud_rate = /sys/./devices/kim.8/baud_rate
uim:flow_cntrl = /sys/./devices/kim.8/flow_cntrl
uim:begin polling...
Starting Dropbear SSH server: dropbear.
Starting telnet daemon.
Starting rpcbind daemon...rpcbind: cannot create socket for udp6
rpcbind: cannot create socket for tcp6
done.
creating NFS state directory: done