统计Linux kernel的启动时间

http://blog.chinaunix.net/uid-23028407-id-3058667.html

1. 首先修改kernel的bootargs,在bootargs中添加以下内容:
     initcall_debug
     printk.time=y
 
    我使用的bootargs修改后如下:
          mem=64M console=ttySAC0,115200 noinitrd init=/linuxrc root=/dev/nfs rw nfsroot=192.168.0.100:/home/moran/rootfs ip=192.168.0.123:192.168.0.100:192.168.0.1:255.255.255.0:moran:eth0:off display=dh240 initcall_debug printk.time=y
    这样kernel在启动时,将会打印出每个模块的启动耗时,将此log信息保存下来。


    Ps:之前跟守业讨论这个问题时,其有提到要在kernel中打开以下选项:
     Kernel hacking
        --->Show timing information on printks
    但是我在没有打开此选项的情况下,依然能够打印出启动时间。

2. 使用kernel里的脚本协助分析启动时间
    kernel中提供了一个“show_delta”的脚本,可以使用此脚本来协助我们分析kernel启动时每个模块的耗时情况。使用方法如下:
    $kernel/scripts/show_delta log_file > boot_time_info
    这样脚本将会把具体的信息保存在boot_time_info中,其中每一行的前面显示了自启动到目前的耗时、以及加载本模块的耗时,可以很方便的分析Linux kernel的启动耗时情况。如下所示:

1.Starting kernel ...
2.

3. Uncompressing Linux................................................................................................................................................................... done, booting the kernel.
4. Linux version 2.6.32.2-FriendlyARM (moran@ubuntu) (gcc version 4.3.2 (Sourcery G++ Lite 2008q3-72) ) #10 Thu Jan 5 23:18:13 CST 2012
5. CPU: ARM920T [41129200] revision 0 (ARMv4T), cr=c0007177
6. CPU: VIVT data cache, VIVT instruction cache
7. Machine: FriendlyARM Mini2440 development board
8. Memory policy: ECC disabled, Data cache writeback
9. CPU S3C2440A (id 0x32440001)
10. S3C24XX Clocks, (c) 2004 Simtec Electronics
11. S3C244X: core 405.000 MHz, memory 101.250 MHz, peripheral 50.625 MHz
12. CLOCK: Slow mode (1.500 MHz), fast, MPLL on, UPLL on
13. Built 1 zonelists in Zone order, mobility grouping on. Total pages: 16256
14. Kernel command line: 64M console=ttySAC0,115200 noinitrd init=/linuxrc root=/dev/nfs rw nfsroot=192.168.0.100:/home/moran/rootfs ip=192.168.0.123:192.168.0.100:192.168.0.1:255.2 55.255.0:moran:eth0:off display=dh240 initcall_debug printk.time=y
15. [0.000000 < -65.840000 >] PID hash table entries: 256 (order: -2, 1024 bytes)
16. [0.000000 < 0.000000 >] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)
17. [0.000000 < 0.000000 >] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)
18. [0.000000 < 0.000000 >] Memory: 64MB = 64MB total
19. [0.000000 < 0.000000 >] Memory: 59560KB available (4680K code, 469K data, 160K init, 0K highmem)
20. [0.000000 < 0.000000 >] SLUB: Genslabs=11, HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
21. [0.000000 < 0.000000 >] Hierarchical RCU implementation.
22. [0.000000 < 0.000000 >] NR_IRQS:85
23. [0.000000 < 0.000000 >] irq: clearing pending status 02000000
24. [0.000000 < 0.000000 >] irq: clearing subpending status 00000002
25. [0.000000 < 0.000000 >] Console: colour dummy device 80x30
26. [0.000000 < 0.000000 >] console [ttySAC0] enabled
27. [0.015000 < 0.015000 >] Calibrating delay loop... 201.93 BogoMIPS (lpj=504832)
28. [0.110000 < 0.095000 >] Mount-cache hash table entries: 512
29. [0.110000 < 0.000000 >] CPU: Testing write buffer coherency: ok
30. [0.115000 < 0.005000 >] calling spawn_ksoftirqd+0x0/0x5c @ 1
31. [0.120000 < 0.005000 >] initcall spawn_ksoftirqd+0x0/0x5c returned 0 after 373 usecs
32. [0.130000 < 0.010000 >] calling init_mmap_min_addr+0x0/0x2c @ 1
33. [0.130000 < 0.000000 >] initcall init_mmap_min_addr+0x0/0x2c returned 0 after 8 usecs
34. [0.135000 < 0.005000 >] calling net_ns_init+0x0/0x128 @ 1
35. [0.140000 < 0.005000 >] initcall net_ns_init+0x0/0x128 returned 0 after 18 usecs
36. [0.145000 < 0.005000 >] calling ptrace_break_init+0x0/0x2c @ 1
37. [0.150000 < 0.005000 >] initcall ptrace_break_init+0x0/0x2c returned 0 after 8 usecs
38. [0.155000 < 0.005000 >] calling consistent_init+0x0/0xd4 @ 1
39. [0.160000 < 0.005000 >] initcall consistent_init+0x0/0xd4 returned 0 after 59 usecs
40. [0.165000 < 0.005000 >] calling s3c24xx_gpiolib_init+0x0/0x34 @ 1
41. [0.170000 < 0.005000 >] initcall s3c24xx_gpiolib_init+0x0/0x34 returned 0 after 38 usecs
42. [0.175000 < 0.005000 >] calling s3c2442_core_init+0x0/0x1c @ 1
43. [0.180000 < 0.005000 >] initcall s3c2442_core_init+0x0/0x1c returned 0 after 843 usecs
44. [0.185000 < 0.005000 >] calling s3c2440_core_init+0x0/0x1c @ 1
45. [0.190000 < 0.005000 >] initcall s3c2440_core_init+0x0/0x1c returned 0 after 759 usecs
46. [0.195000 < 0.005000 >] calling s3c24xx_dma_sysclass_init+0x0/0x38 @ 1
47. [0.200000 < 0.005000 >] initcall s3c24xx_dma_sysclass_init+0x0/0x38 returned 0 after 858 usecs
48. [0.210000 < 0.010000 >] calling sysctl_init+0x0/0x24 @ 1
49. [0.210000 < 0.000000 >] initcall sysctl_init+0x0/0x24 returned 0 after 58 usecs
50. [0.215000 < 0.005000 >] calling ksysfs_init+0x0/0xbc @ 1
51. [0.215000 < 0.000000 >] initcall ksysfs_init+0x0/0xbc returned 0 after 112 usecs
52. [0.220000 < 0.005000 >] calling async_init+0x0/0x78 @ 1
53. [0.225000 < 0.005000 >] initcall async_init+0x0/0x78 returned 0 after 504 usecs
54. [0.230000 < 0.005000 >] calling init_jiffies_clocksource+0x0/0x1c @ 1
55. [0.235000 < 0.005000 >] initcall init_jiffies_clocksource+0x0/0x1c returned 0 after 10 usecs
56. [0.240000 < 0.005000 >] calling init_zero_pfn+0x0/0x3c @ 1
57. [0.245000 < 0.005000 >] initcall init_zero_pfn+0x0/0x3c returned 0 after 5 usecs
58. [0.250000 < 0.005000 >] calling filelock_init+0x0/0x4c @ 1
59. [0.255000 < 0.005000 >] initcall filelock_init+0x0/0x4c returned 0 after 45 usecs
60. [0.260000 < 0.005000 >] calling init_script_binfmt+0x0/0x20 @ 1
61. [0.265000 < 0.005000 >] initcall init_script_binfmt+0x0/0x20 returned 0 after 6 usecs
62. [0.270000 < 0.005000 >] calling init_elf_binfmt+0x0/0x20 @ 1
63. [0.275000 < 0.005000 >] initcall init_elf_binfmt+0x0/0x20 returned 0 after 5 usecs
64. [0.280000 < 0.005000 >] calling random32_init+0x0/0x114 @ 1
65. [0.285000 < 0.005000 >] initcall random32_init+0x0/0x114 returned 0 after 8 usecs
66. [0.290000 < 0.005000 >] calling sock_init+0x0/0x78 @ 1
67. [0.295000 < 0.005000 >] initcall sock_init+0x0/0x78 returned 0 after 267 usecs
68. [0.300000 < 0.005000 >] calling netlink_proto_init+0x0/0x230 @ 1
69. [0.305000 < 0.005000 >] NET: Registered protocol family 16
70. [0.310000 < 0.005000 >] initcall netlink_proto_init+0x0/0x230 returned 0 after 4475 usecs
71. [0.320000 < 0.010000 >] calling bdi_class_init+0x0/0x40 @ 1
72. [0.325000 < 0.005000 >] initcall bdi_class_init+0x0/0x40 returned 0 after 1075 usecs
73. [0.330000 < 0.005000 >] calling kobject_uevent_init+0x0/0x74 @ 1
74. [0.335000 < 0.005000 >] initcall kobject_uevent_init+0x0/0x74 returned 0 after 84 usecs
75. [0.340000 < 0.005000 >] calling tty_class_init+0x0/0x4c @ 1
76. [0.345000 < 0.005000 >] initcall tty_class_init+0x0/0x4c returned 0 after 893 usecs
77. [0.350000 < 0.005000 >] calling vtconsole_class_init+0x0/0xec @ 1
78. [0.360000 < 0.010000 >] initcall vtconsole_class_init+0x0/0xec returned 0 after 2148 usecs
79. [0.365000 < 0.005000 >] calling i2c_init+0x0/0x48 @ 1
80. [0.370000 < 0.005000 >] initcall i2c_init+0x0/0x48 returned 0 after 1843 usecs
81. [0.375000 < 0.005000 >] calling customize_machine+0x0/0x2c @ 1
82. [0.380000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000020
83. [0.395000 < 0.015000 >] initcall customize_machine+0x0/0x2c returned 0 after 16073 usecs
84. [0.395000 < 0.000000 >] calling s3c2440_irq_init+0x0/0x24 @ 1
85. [0.400000 < 0.005000 >] initcall s3c2440_irq_init+0x0/0x24 returned 0 after 15 usecs
86. [0.405000 < 0.005000 >] calling s3c24xx_clk_driver+0x0/0x24 @ 1
87. [0.410000 < 0.005000 >] initcall s3c24xx_clk_driver+0x0/0x24 returned 0 after 7 usecs
88. [0.415000 < 0.005000 >] calling s3c2440_dma_init+0x0/0x24 @ 1
89. [0.420000 < 0.005000 >] initcall s3c2440_dma_init+0x0/0x24 returned 0 after 10 usecs
90. [0.425000 < 0.005000 >] calling s3c2442_irq_init+0x0/0x24 @ 1
91. [0.430000 < 0.005000 >] initcall s3c2442_irq_init+0x0/0x24 returned 0 after 11 usecs
92. [0.435000 < 0.005000 >] calling s3c2440_irq_init+0x0/0x24 @ 1
93. [0.440000 < 0.005000 >] initcall s3c2440_irq_init+0x0/0x24 returned 0 after 12 usecs
94. [0.445000 < 0.005000 >] calling s3c2442_clk_init+0x0/0x24 @ 1
95. [0.450000 < 0.005000 >] initcall s3c2442_clk_init+0x0/0x24 returned 0 after 9 usecs
96. [0.455000 < 0.005000 >] calling s3c2440_clk_init+0x0/0x24 @ 1
97. [0.460000 < 0.005000 >] initcall s3c2440_clk_init+0x0/0x24 returned 0 after 10 usecs
98. [0.465000 < 0.005000 >] calling s3c_arch_init+0x0/0x58 @ 1
99. [0.470000 < 0.005000 >] S3C2440: Initialising architecture
100. [0.475000 < 0.005000 >] S3C2440: IRQ Support
101. [0.475000 < 0.000000 >] S3C24XX DMA Driver, (c) 2003-2004,2006 Simtec Electronics
102. [0.480000 < 0.005000 >] DMA channel 0 at c4808000, irq 33
103. [0.485000 < 0.005000 >] DMA channel 1 at c4808040, irq 34
104. [0.485000 < 0.000000 >] DMA channel 2 at c4808080, irq 35
105. [0.490000 < 0.005000 >] DMA channel 3 at c48080c0, irq 36
106. [0.495000 < 0.005000 >] S3C244X: Clock Support, DVS off
107. [0.505000 < 0.010000 >] initcall s3c_arch_init+0x0/0x58 returned 0 after 33382 usecs
108. [0.505000 < 0.000000 >] calling topology_init+0x0/0x30 @ 1
109. [0.510000 < 0.005000 >] initcall topology_init+0x0/0x30 returned 0 after 902 usecs
110. [0.515000 < 0.005000 >] calling param_sysfs_init+0x0/0x228 @ 1
111. [0.715000 < 0.200000 >] initcall param_sysfs_init+0x0/0x228 returned 0 after 187550 usecs
112. [0.715000 < 0.000000 >] calling default_bdi_init+0x0/0xbc @ 1
113. [0.720000 < 0.005000 >] initcall default_bdi_init+0x0/0xbc returned 0 after 1731 usecs
114. [0.725000 < 0.005000 >] calling init_bio+0x0/0x100 @ 1
115. [0.730000 < 0.005000 >] bio: create slab  at 0
116. [0.735000 < 0.005000 >] initcall init_bio+0x0/0x100 returned 0 after 3904 usecs
117. [0.740000 < 0.005000 >] calling cryptomgr_init+0x0/0x1c @ 1
118. [0.745000 < 0.005000 >] initcall cryptomgr_init+0x0/0x1c returned 0 after 9 usecs
119. [0.750000 < 0.005000 >] calling blk_settings_init+0x0/0x40 @ 1
120. [0.755000 < 0.005000 >] initcall blk_settings_init+0x0/0x40 returned 0 after 5 usecs
121. [0.760000 < 0.005000 >] calling blk_ioc_init+0x0/0x48 @ 1
122. [0.765000 < 0.005000 >] initcall blk_ioc_init+0x0/0x48 returned 0 after 22 usecs
123. [0.770000 < 0.005000 >] calling blk_softirq_init+0x0/0x34 @ 1
124. [0.775000 < 0.005000 >] initcall blk_softirq_init+0x0/0x34 returned 0 after 6 usecs
125. [0.780000 < 0.005000 >] calling blk_iopoll_setup+0x0/0x34 @ 1
126. [0.785000 < 0.005000 >] initcall blk_iopoll_setup+0x0/0x34 returned 0 after 6 usecs
127. [0.790000 < 0.005000 >] calling genhd_device_init+0x0/0x8c @ 1
128. [0.800000 < 0.010000 >] initcall genhd_device_init+0x0/0x8c returned 0 after 1753 usecs
129. [0.805000 < 0.005000 >] calling fbmem_init+0x0/0xc0 @ 1
130. [0.810000 < 0.005000 >] initcall fbmem_init+0x0/0xc0 returned 0 after 991 usecs
131. [0.815000 < 0.005000 >] calling misc_init+0x0/0xd0 @ 1
132. [0.820000 < 0.005000 >] initcall misc_init+0x0/0xd0 returned 0 after 1000 usecs
133. [0.825000 < 0.005000 >] calling init_scsi+0x0/0x84 @ 1
134. [0.830000 < 0.005000 >] SCSI subsystem initialized
135. [0.830000 < 0.000000 >] initcall init_scsi+0x0/0x84 returned 0 after 3509 usecs
136. [0.835000 < 0.005000 >] calling usb_init+0x0/0x118 @ 1
137. [0.840000 < 0.005000 >] usbcore: registered new interface driver usbfs
138. [0.845000 < 0.005000 >] usbcore: registered new interface driver hub
139. [0.850000 < 0.005000 >] usbcore: registered new device driver usb
140. [0.850000 < 0.000000 >] initcall usb_init+0x0/0x118 returned 0 after 15170 usecs
141. [0.855000 < 0.005000 >] calling input_init+0x0/0x16c @ 1
142. [0.860000 < 0.005000 >] initcall input_init+0x0/0x16c returned 0 after 1039 usecs
143. [0.865000 < 0.005000 >] calling rtc_init+0x0/0x74 @ 1
144. [0.870000 < 0.005000 >] initcall rtc_init+0x0/0x74 returned 0 after 932 usecs
145. [0.875000 < 0.005000 >] calling i2c_adap_s3c_init+0x0/0x1c @ 1
146. [0.880000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
147. [0.885000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
148. [0.890000 < 0.005000 >] s3c-i2c s3c2440-i2c: slave address 0x10
149. [0.895000 < 0.005000 >] s3c-i2c s3c2440-i2c: bus frequency set to 98 KHz
150. [0.900000 < 0.005000 >] s3c-i2c s3c2440-i2c: i2c-0: S3C I2C adapter
151. [0.905000 < 0.005000 >] initcall i2c_adap_s3c_init+0x0/0x1c returned 0 after 25286 usecs
152. [0.910000 < 0.005000 >] calling mmc_init+0x0/0x90 @ 1
153. [0.920000 < 0.010000 >] initcall mmc_init+0x0/0x90 returned 0 after 3432 usecs
154. [0.920000 < 0.000000 >] calling proto_init+0x0/0x1c @ 1
155. [0.925000 < 0.005000 >] initcall proto_init+0x0/0x1c returned 0 after 56 usecs
156. [0.930000 < 0.005000 >] calling net_dev_init+0x0/0x140 @ 1
157. [0.940000 < 0.010000 >] initcall net_dev_init+0x0/0x140 returned 0 after 2648 usecs
158. [0.940000 < 0.000000 >] calling neigh_init+0x0/0x8c @ 1
159. [0.945000 < 0.005000 >] initcall neigh_init+0x0/0x8c returned 0 after 10 usecs
160. [0.950000 < 0.005000 >] calling genl_init+0x0/0xa0 @ 1
161. [0.955000 < 0.005000 >] initcall genl_init+0x0/0xa0 returned 0 after 202 usecs
162. [0.960000 < 0.005000 >] calling wireless_nlevent_init+0x0/0x1c @ 1
163. [0.965000 < 0.005000 >] initcall wireless_nlevent_init+0x0/0x1c returned 0 after 8 usecs
164. [0.970000 < 0.005000 >] calling cfg80211_init+0x0/0x88 @ 1
165. [0.975000 < 0.005000 >] cfg80211: Calling CRDA to update world regulatory domain
166. [0.980000 < 0.005000 >] initcall cfg80211_init+0x0/0x88 returned 0 after 7125 usecs
167. [0.985000 < 0.005000 >] calling ieee80211_init+0x0/0x14 @ 1
168. [0.990000 < 0.005000 >] initcall ieee80211_init+0x0/0x14 returned 0 after 15 usecs
169. [0.995000 < 0.005000 >] calling sysctl_init+0x0/0x54 @ 1
170. [1.000000 < 0.005000 >] initcall sysctl_init+0x0/0x54 returned 0 after 16 usecs
171. [1.005000 < 0.005000 >] calling alignment_init+0x0/0xe8 @ 1
172. [1.005000 < 0.000000 >] initcall alignment_init+0x0/0xe8 returned 0 after 74 usecs
173. [1.010000 < 0.005000 >] calling clocksource_done_booting+0x0/0x3c @ 1
174. [1.015000 < 0.005000 >] initcall clocksource_done_booting+0x0/0x3c returned 0 after 7 usecs
175. [1.020000 < 0.005000 >] calling init_pipe_fs+0x0/0x5c @ 1
176. [1.025000 < 0.005000 >] initcall init_pipe_fs+0x0/0x5c returned 0 after 111 usecs
177. [1.030000 < 0.005000 >] calling eventpoll_init+0x0/0xc0 @ 1
178. [1.035000 < 0.005000 >] initcall eventpoll_init+0x0/0xc0 returned 0 after 98 usecs
179. [1.040000 < 0.005000 >] calling anon_inode_init+0x0/0x130 @ 1
180. [1.045000 < 0.005000 >] initcall anon_inode_init+0x0/0x130 returned 0 after 175 usecs
181. [1.050000 < 0.005000 >] calling blk_scsi_ioctl_init+0x0/0x1a8 @ 1
182. [1.055000 < 0.005000 >] initcall blk_scsi_ioctl_init+0x0/0x1a8 returned 0 after 10 usecs
183. [1.060000 < 0.005000 >] calling chr_dev_init+0x0/0xd0 @ 1
184. [1.075000 < 0.015000 >] initcall chr_dev_init+0x0/0xd0 returned 0 after 8543 usecs
185. [1.075000 < 0.000000 >] calling firmware_class_init+0x0/0x78 @ 1
186. [1.080000 < 0.005000 >] initcall firmware_class_init+0x0/0x78 returned 0 after 968 usecs
187. [1.085000 < 0.005000 >] calling sysctl_core_init+0x0/0x40 @ 1
188. [1.090000 < 0.005000 >] initcall sysctl_core_init+0x0/0x40 returned 0 after 77 usecs
189. [1.095000 < 0.005000 >] calling inet_init+0x0/0x1f4 @ 1
190. [1.100000 < 0.005000 >] NET: Registered protocol family 2
191. [1.100000 < 0.000000 >] IP route cache hash table entries: 1024 (order: 0, 4096 bytes)
192. [1.105000 < 0.005000 >] TCP established hash table entries: 2048 (order: 2, 16384 bytes)
193. [1.110000 < 0.005000 >] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)
194. [1.115000 < 0.005000 >] TCP: Hash tables configured (established 2048 bind 2048)
195. [1.120000 < 0.005000 >] TCP reno registered
196. [1.120000 < 0.000000 >] initcall inet_init+0x0/0x1f4 returned 0 after 23289 usecs
197. [1.125000 < 0.005000 >] calling af_unix_init+0x0/0x5c @ 1
198. [1.130000 < 0.005000 >] NET: Registered protocol family 1
199. [1.135000 < 0.005000 >] initcall af_unix_init+0x0/0x5c returned 0 after 4329 usecs
200. [1.140000 < 0.005000 >] calling init_sunrpc+0x0/0x64 @ 1
201. [1.145000 < 0.005000 >] RPC: Registered udp transport module.
202. [1.150000 < 0.005000 >] RPC: Registered tcp transport module.
203. [1.155000 < 0.005000 >] RPC: Registered tcp NFSv4.1 backchannel transport module.
204. [1.160000 < 0.005000 >] initcall init_sunrpc+0x0/0x64 returned 0 after 15179 usecs
205. [1.165000 < 0.005000 >] calling default_rootfs+0x0/0x7c @ 1
206. [1.170000 < 0.005000 >] initcall default_rootfs+0x0/0x7c returned 0 after 151 usecs
207. [1.175000 < 0.005000 >] calling timer_init_sysfs+0x0/0x40 @ 1
208. [1.180000 < 0.005000 >] initcall timer_init_sysfs+0x0/0x40 returned 0 after 1889 usecs
209. [1.185000 < 0.005000 >] calling fpe_init+0x0/0x80 @ 1
210. [1.190000 < 0.005000 >] NetWinder Floating Point Emulator V0.97 (double precision)
211. [1.195000 < 0.005000 >] initcall fpe_init+0x0/0x80 returned 0 after 6237 usecs
212. [1.200000 < 0.005000 >] calling proc_execdomains_init+0x0/0x40 @ 1
213. [1.210000 < 0.010000 >] initcall proc_execdomains_init+0x0/0x40 returned 0 after 86 usecs
214. [1.215000 < 0.005000 >] calling ioresources_init+0x0/0x60 @ 1
215. [1.220000 < 0.005000 >] initcall ioresources_init+0x0/0x60 returned 0 after 52 usecs
216. [1.225000 < 0.005000 >] calling uid_cache_init+0x0/0xac @ 1
217. [1.230000 < 0.005000 >] initcall uid_cache_init+0x0/0xac returned 0 after 80 usecs
218. [1.235000 < 0.005000 >] calling init_posix_timers+0x0/0x19c @ 1
219. [1.240000 < 0.005000 >] initcall init_posix_timers+0x0/0x19c returned 0 after 61 usecs
220. [1.245000 < 0.005000 >] calling init_posix_cpu_timers+0x0/0x120 @ 1
221. [1.250000 < 0.005000 >] initcall init_posix_cpu_timers+0x0/0x120 returned 0 after 13 usecs
222. [1.255000 < 0.005000 >] calling nsproxy_cache_init+0x0/0x48 @ 1
223. [1.260000 < 0.005000 >] initcall nsproxy_cache_init+0x0/0x48 returned 0 after 23 usecs
224. [1.265000 < 0.005000 >] calling timekeeping_init_device+0x0/0x30 @ 1
225. [1.275000 < 0.010000 >] initcall timekeeping_init_device+0x0/0x30 returned 0 after 1796 usecs
226. [1.280000 < 0.005000 >] calling init_clocksource_sysfs+0x0/0x58 @ 1
227. [1.285000 < 0.005000 >] initcall init_clocksource_sysfs+0x0/0x58 returned 0 after 1714 usecs
228. [1.290000 < 0.005000 >] calling init_timer_list_procfs+0x0/0x48 @ 1
229. [1.300000 < 0.010000 >] initcall init_timer_list_procfs+0x0/0x48 returned 0 after 95 usecs
230. [1.305000 < 0.005000 >] calling futex_init+0x0/0x7c @ 1
231. [1.310000 < 0.005000 >] initcall futex_init+0x0/0x7c returned 0 after 52 usecs
232. [1.315000 < 0.005000 >] calling proc_modules_init+0x0/0x40 @ 1
233. [1.320000 < 0.005000 >] initcall proc_modules_init+0x0/0x40 returned 0 after 37 usecs
234. [1.325000 < 0.005000 >] calling kallsyms_init+0x0/0x40 @ 1
235. [1.330000 < 0.005000 >] initcall kallsyms_init+0x0/0x40 returned 0 after 44 usecs
236. [1.335000 < 0.005000 >] calling utsname_sysctl_init+0x0/0x20 @ 1
237. [1.340000 < 0.005000 >] initcall utsname_sysctl_init+0x0/0x20 returned 0 after 41 usecs
238. [1.345000 < 0.005000 >] calling init_per_zone_wmark_min+0x0/0x74 @ 1
239. [1.350000 < 0.005000 >] initcall init_per_zone_wmark_min+0x0/0x74 returned 0 after 399 usecs
240. [1.355000 < 0.005000 >] calling kswapd_init+0x0/0x20 @ 1
241. [1.360000 < 0.005000 >] initcall kswapd_init+0x0/0x20 returned 0 after 436 usecs
242. [1.365000 < 0.005000 >] calling setup_vmstat+0x0/0x98 @ 1
243. [1.370000 < 0.005000 >] initcall setup_vmstat+0x0/0x98 returned 0 after 108 usecs
244. [1.375000 < 0.005000 >] calling mm_sysfs_init+0x0/0x40 @ 1
245. [1.380000 < 0.005000 >] initcall mm_sysfs_init+0x0/0x40 returned 0 after 84 usecs
246. [1.385000 < 0.005000 >] calling proc_vmalloc_init+0x0/0x40 @ 1
247. [1.390000 < 0.005000 >] initcall proc_vmalloc_init+0x0/0x40 returned 0 after 49 usecs
248. [1.395000 < 0.005000 >] calling slab_proc_init+0x0/0x40 @ 1
249. [1.400000 < 0.005000 >] initcall slab_proc_init+0x0/0x40 returned 0 after 51 usecs
250. [1.405000 < 0.005000 >] calling slab_sysfs_init+0x0/0xf0 @ 1
251. [1.470000 < 0.065000 >] initcall slab_sysfs_init+0x0/0xf0 returned 0 after 60176 usecs
252. [1.475000 < 0.005000 >] calling fasync_init+0x0/0x48 @ 1
253. [1.480000 < 0.005000 >] initcall fasync_init+0x0/0x48 returned 0 after 303 usecs
254. [1.485000 < 0.005000 >] calling proc_filesystems_init+0x0/0x40 @ 1
255. [1.490000 < 0.005000 >] initcall proc_filesystems_init+0x0/0x40 returned 0 after 73 usecs
256. [1.495000 < 0.005000 >] calling aio_setup+0x0/0x8c @ 1
257. [1.500000 < 0.005000 >] initcall aio_setup+0x0/0x8c returned 0 after 659 usecs
258. [1.505000 < 0.005000 >] calling proc_locks_init+0x0/0x40 @ 1
259. [1.510000 < 0.005000 >] initcall proc_locks_init+0x0/0x40 returned 0 after 83 usecs
260. [1.515000 < 0.005000 >] calling proc_cmdline_init+0x0/0x40 @ 1
261. [1.520000 < 0.005000 >] initcall proc_cmdline_init+0x0/0x40 returned 0 after 46 usecs
262. [1.525000 < 0.005000 >] calling proc_cpuinfo_init+0x0/0x40 @ 1
263. [1.530000 < 0.005000 >] initcall proc_cpuinfo_init+0x0/0x40 returned 0 after 44 usecs
264. [1.535000 < 0.005000 >] calling proc_devices_init+0x0/0x40 @ 1
265. [1.540000 < 0.005000 >] initcall proc_devices_init+0x0/0x40 returned 0 after 46 usecs
266. [1.545000 < 0.005000 >] calling proc_interrupts_init+0x0/0x40 @ 1
267. [1.550000 < 0.005000 >] initcall proc_interrupts_init+0x0/0x40 returned 0 after 44 usecs
268. [1.555000 < 0.005000 >] calling proc_loadavg_init+0x0/0x40 @ 1
269. [1.560000 < 0.005000 >] initcall proc_loadavg_init+0x0/0x40 returned 0 after 46 usecs
270. [1.565000 < 0.005000 >] calling proc_meminfo_init+0x0/0x40 @ 1
271. [1.570000 < 0.005000 >] initcall proc_meminfo_init+0x0/0x40 returned 0 after 55 usecs
272. [1.575000 < 0.005000 >] calling proc_stat_init+0x0/0x40 @ 1
273. [1.580000 < 0.005000 >] initcall proc_stat_init+0x0/0x40 returned 0 after 47 usecs
274. [1.585000 < 0.005000 >] calling proc_uptime_init+0x0/0x40 @ 1
275. [1.590000 < 0.005000 >] initcall proc_uptime_init+0x0/0x40 returned 0 after 45 usecs
276. [1.595000 < 0.005000 >] calling proc_version_init+0x0/0x40 @ 1
277. [1.600000 < 0.005000 >] initcall proc_version_init+0x0/0x40 returned 0 after 53 usecs
278. [1.605000 < 0.005000 >] calling proc_softirqs_init+0x0/0x40 @ 1
279. [1.610000 < 0.005000 >] initcall proc_softirqs_init+0x0/0x40 returned 0 after 48 usecs
280. [1.615000 < 0.005000 >] calling proc_kmsg_init+0x0/0x40 @ 1
281. [1.620000 < 0.005000 >] initcall proc_kmsg_init+0x0/0x40 returned 0 after 58 usecs
282. [1.625000 < 0.005000 >] calling proc_page_init+0x0/0x60 @ 1
283. [1.630000 < 0.005000 >] initcall proc_page_init+0x0/0x60 returned 0 after 58 usecs
284. [1.635000 < 0.005000 >] calling configfs_init+0x0/0xe0 @ 1
285. [1.640000 < 0.005000 >] initcall configfs_init+0x0/0xe0 returned 0 after 1658 usecs
286. [1.645000 < 0.005000 >] calling init_devpts_fs+0x0/0x5c @ 1
287. [1.650000 < 0.005000 >] initcall init_devpts_fs+0x0/0x5c returned 0 after 172 usecs
288. [1.655000 < 0.005000 >] calling init_ramfs_fs+0x0/0x1c @ 1
289. [1.660000 < 0.005000 >] initcall init_ramfs_fs+0x0/0x1c returned 0 after 12 usecs
290. [1.665000 < 0.005000 >] calling init_yaffs_fs+0x0/0xe8 @ 1
291. [1.670000 < 0.005000 >] yaffs Jul 31 2011 23:51:28 Installing.
292. [1.675000 < 0.005000 >] initcall init_yaffs_fs+0x0/0xe8 returned 0 after 4784 usecs
293. [1.680000 < 0.005000 >] calling init_fat_fs+0x0/0x6c @ 1
294. [1.690000 < 0.010000 >] initcall init_fat_fs+0x0/0x6c returned 0 after 2838 usecs
295. [1.690000 < 0.000000 >] calling init_vfat_fs+0x0/0x1c @ 1
296. [1.695000 < 0.005000 >] initcall init_vfat_fs+0x0/0x1c returned 0 after 26 usecs
297. [1.700000 < 0.005000 >] calling init_nfs_fs+0x0/0x164 @ 1
298. [1.710000 < 0.010000 >] initcall init_nfs_fs+0x0/0x164 returned 0 after 5889 usecs
299. [1.710000 < 0.000000 >] calling init_nlm+0x0/0x34 @ 1
300. [1.715000 < 0.005000 >] initcall init_nlm+0x0/0x34 returned 0 after 25 usecs
301. [1.720000 < 0.005000 >] calling init_nls_cp437+0x0/0x1c @ 1
302. [1.725000 < 0.005000 >] initcall init_nls_cp437+0x0/0x1c returned 0 after 8 usecs
303. [1.730000 < 0.005000 >] calling init_nls_cp936+0x0/0x1c @ 1
304. [1.735000 < 0.005000 >] initcall init_nls_cp936+0x0/0x1c returned 0 after 6 usecs
305. [1.740000 < 0.005000 >] calling init_nls_iso8859_1+0x0/0x1c @ 1
306. [1.745000 < 0.005000 >] initcall init_nls_iso8859_1+0x0/0x1c returned 0 after 6 usecs
307. [1.750000 < 0.005000 >] calling init_nls_utf8+0x0/0x38 @ 1
308. [1.755000 < 0.005000 >] initcall init_nls_utf8+0x0/0x38 returned 0 after 15 usecs
309. [1.760000 < 0.005000 >] calling ipc_init+0x0/0x2c @ 1
310. [1.760000 < 0.000000 >] msgmni has been set to 116
311. [1.765000 < 0.005000 >] initcall ipc_init+0x0/0x2c returned 0 after 3722 usecs
312. [1.770000 < 0.005000 >] calling ipc_sysctl_init+0x0/0x20 @ 1
313. [1.775000 < 0.005000 >] initcall ipc_sysctl_init+0x0/0x20 returned 0 after 49 usecs
314. [1.780000 < 0.005000 >] calling crypto_wq_init+0x0/0x54 @ 1
315. [1.785000 < 0.005000 >] initcall crypto_wq_init+0x0/0x54 returned 0 after 553 usecs
316. [1.790000 < 0.005000 >] calling crypto_algapi_init+0x0/0x18 @ 1
317. [1.795000 < 0.005000 >] initcall crypto_algapi_init+0x0/0x18 returned 0 after 99 usecs
318. [1.800000 < 0.005000 >] calling skcipher_module_init+0x0/0x28 @ 1
319. [1.805000 < 0.005000 >] initcall skcipher_module_init+0x0/0x28 returned 0 after 5 usecs
320. [1.810000 < 0.005000 >] calling chainiv_module_init+0x0/0x1c @ 1
321. [1.815000 < 0.005000 >] initcall chainiv_module_init+0x0/0x1c returned 0 after 21 usecs
322. [1.820000 < 0.005000 >] calling eseqiv_module_init+0x0/0x1c @ 1
323. [1.825000 < 0.005000 >] initcall eseqiv_module_init+0x0/0x1c returned 0 after 18 usecs
324. [1.830000 < 0.005000 >] calling crypto_ecb_module_init+0x0/0x1c @ 1
325. [1.835000 < 0.005000 >] initcall crypto_ecb_module_init+0x0/0x1c returned 0 after 20 usecs
326. [1.840000 < 0.005000 >] calling aes_init+0x0/0x1c @ 1
327. [1.845000 < 0.005000 >] initcall aes_init+0x0/0x1c returned 0 after 1566 usecs
328. [1.850000 < 0.005000 >] calling arc4_init+0x0/0x1c @ 1
329. [1.855000 < 0.005000 >] initcall arc4_init+0x0/0x1c returned 0 after 1147 usecs
330. [1.860000 < 0.005000 >] calling krng_mod_init+0x0/0x1c @ 1
331. [1.865000 < 0.005000 >] alg: No test for stdrng (krng)
332. [1.865000 < 0.000000 >] initcall krng_mod_init+0x0/0x1c returned 0 after 4082 usecs
333. [1.870000 < 0.005000 >] calling proc_genhd_init+0x0/0x60 @ 1
334. [1.875000 < 0.005000 >] initcall proc_genhd_init+0x0/0x60 returned 0 after 120 usecs
335. [1.880000 < 0.005000 >] calling noop_init+0x0/0x20 @ 1
336. [1.885000 < 0.005000 >] io scheduler noop registered (default)
337. [1.890000 < 0.005000 >] initcall noop_init+0x0/0x20 returned 0 after 4582 usecs
338. [1.895000 < 0.005000 >] calling fb_console_init+0x0/0x190 @ 1
339. [1.900000 < 0.005000 >] initcall fb_console_init+0x0/0x190 returned 0 after 1010 usecs
340. [1.905000 < 0.005000 >] calling s3c2410fb_init+0x0/0x30 @ 1
341. [1.925000 < 0.020000 >] Console: switching to colour frame buffer device 30x20
342. [1.930000 < 0.005000 >] fb0: s3c2410fb frame buffer device
343. [1.935000 < 0.005000 >] initcall s3c2410fb_init+0x0/0x30 returned 0 after 25136 usecs
344. [1.940000 < 0.005000 >] calling dev_init+0x0/0x58 @ 1
345. [1.945000 < 0.005000 >] backlight initialized
346. [1.950000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
347. [1.955000 < 0.005000 >] initcall dev_init+0x0/0x58 returned 0 after 7737 usecs
348. [1.960000 < 0.005000 >] calling rand_initialize+0x0/0x34 @ 1
349. [1.965000 < 0.005000 >] initcall rand_initialize+0x0/0x34 returned 0 after 175 usecs
350. [1.970000 < 0.005000 >] calling tty_init+0x0/0x110 @ 1
351. [2.055000 < 0.085000 >] initcall tty_init+0x0/0x110 returned 0 after 77949 usecs
352. [2.055000 < 0.000000 >] calling pty_init+0x0/0x2c4 @ 1
353. [2.060000 < 0.005000 >] initcall pty_init+0x0/0x2c4 returned 0 after 1290 usecs
354. [2.065000 < 0.005000 >] calling dev_init+0x0/0xfc @ 1
355. [2.070000 < 0.005000 >] s3c2410_gpio_cfgpin ioremap == 0xc4810010
356. [2.075000 < 0.005000 >] dev_init
357. [2.075000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000010
358. [2.080000 < 0.005000 >] dev_init
359. [2.085000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000010
360. [2.090000 < 0.005000 >] dev_init
361. [2.090000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000010
362. [2.095000 < 0.005000 >] dev_init
363. [2.095000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000010
364. [2.100000 < 0.005000 >] leds initialized
365. [2.105000 < 0.005000 >] initcall dev_init+0x0/0xfc returned 0 after 34345 usecs
366. [2.110000 < 0.005000 >] calling dev_init+0x0/0x30 @ 1
367. [2.115000 < 0.005000 >] buttons initialized
368. [2.115000 < 0.000000 >] initcall dev_init+0x0/0x30 returned 0 after 2993 usecs
369. [2.120000 < 0.005000 >] calling dev_init+0x0/0x4c @ 1
370. [2.125000 < 0.005000 >] pwm initialized
371. [2.125000 < 0.000000 >] initcall dev_init+0x0/0x4c returned 0 after 2666 usecs
372. [2.130000 < 0.005000 >] calling dev_init+0x0/0xe0 @ 1
373. [2.135000 < 0.005000 >] adc initialized
374. [2.140000 < 0.005000 >] initcall dev_init+0x0/0xe0 returned 0 after 2766 usecs
375. [2.145000 < 0.005000 >] calling s3c24xx_serial_modinit+0x0/0x38 @ 1
376. [2.150000 < 0.005000 >] initcall s3c24xx_serial_modinit+0x0/0x38 returned 0 after 102 usecs
377. [2.155000 < 0.005000 >] calling s3c2440_serial_init+0x0/0x20 @ 1
378. [2.160000 < 0.005000 >] s3c2440-uart.0: s3c2410_serial0 at MMIO 0x50000000 (irq = 70) is a S3C2440
379. [2.165000 < 0.005000 >] s3c2440-uart.1: s3c2410_serial1 at MMIO 0x50004000 (irq = 73) is a S3C2440
380. [2.175000 < 0.010000 >] s3c2440-uart.2: s3c2410_serial2 at MMIO 0x50008000 (irq = 76) is a S3C2440
381. [2.180000 < 0.005000 >] initcall s3c2440_serial_init+0x0/0x20 returned 0 after 20062 usecs
382. [2.185000 < 0.005000 >] calling loop_init+0x0/0x1d4 @ 1
383. [2.210000 < 0.025000 >] loop: module loaded
384. [2.210000 < 0.000000 >] initcall loop_init+0x0/0x1d4 returned 0 after 19520 usecs
385. [2.215000 < 0.005000 >] calling init_sd+0x0/0x130 @ 1
386. [2.220000 < 0.005000 >] initcall init_sd+0x0/0x130 returned 0 after 1949 usecs
387. [2.225000 < 0.005000 >] calling init_sg+0x0/0xc4 @ 1
388. [2.230000 < 0.005000 >] initcall init_sg+0x0/0xc4 returned 0 after 849 usecs
389. [2.235000 < 0.005000 >] calling init_mtd+0x0/0x70 @ 1
390. [2.240000 < 0.005000 >] initcall init_mtd+0x0/0x70 returned 0 after 925 usecs
391. [2.245000 < 0.005000 >] calling init_mtdchar+0x0/0x5c @ 1
392. [2.250000 < 0.005000 >] initcall init_mtdchar+0x0/0x5c returned 0 after 44 usecs
393. [2.255000 < 0.005000 >] calling init_mtdblock+0x0/0x34 @ 1
394. [2.260000 < 0.005000 >] initcall init_mtdblock+0x0/0x34 returned 0 after 412 usecs
395. [2.265000 < 0.005000 >] calling nand_base_init+0x0/0x14 @ 1
396. [2.270000 < 0.005000 >] initcall nand_base_init+0x0/0x14 returned 0 after 5 usecs
397. [2.275000 < 0.005000 >] calling s3c2410_nand_init+0x0/0x28 @ 1
398. [2.280000 < 0.005000 >] S3C24XX NAND Driver, (c) 2004 Simtec Electronics
399. [2.290000 < 0.010000 >] s3c24xx-nand s3c2440-nand: Tacls=3, 29ns Twrph0=7 69ns, Twrph1=3 29ns
400. [2.295000 < 0.005000 >] s3c24xx-nand s3c2440-nand: NAND soft ECC
401. [2.300000 < 0.005000 >] NAND device: Manufacturer ID: 0xec, Chip ID: 0xf1 (Samsung NAND 128MiB 3,3V 8-bit)
402. [2.305000 < 0.005000 >] Scanning device for bad blocks
403. [2.335000 < 0.030000 >] Creating 5 MTD partitions on "NAND 128MiB 3,3V 8-bit":
404. [2.335000 < 0.000000 >] 0x000000000000-0x000000040000 : "supervivi"
405. [2.345000 < 0.010000 >] 0x000000040000-0x000000060000 : "param"
406. [2.350000 < 0.005000 >] 0x000000060000-0x000000560000 : "Kernel"
407. [2.355000 < 0.005000 >] 0x000000560000-0x000040560000 : "root"
408. [2.355000 < 0.000000 >] mtd: partition "root" extends beyond the end of device "NAND 128MiB 3,3V 8-bit" -- size truncated to 0x7aa0000
409. [2.365000 < 0.010000 >] 0x000000000000-0x000040000000 : "nand"
410. [2.365000 < 0.000000 >] mtd: partition "nand" extends beyond the end of device "NAND 128MiB 3,3V 8-bit" -- size truncated to 0x8000000
411. [2.375000 < 0.010000 >] initcall s3c2410_nand_init+0x0/0x28 returned 0 after 93193 usecs
412. [2.380000 < 0.005000 >] calling net_olddevs_init+0x0/0xcc @ 1
413. [2.385000 < 0.005000 >] initcall net_olddevs_init+0x0/0xcc returned 0 after 49 usecs
414. [2.390000 < 0.005000 >] calling dm9000_init+0x0/0x60 @ 1
415. [2.395000 < 0.005000 >] dm9000 Ethernet Driver, V1.31
416. [2.400000 < 0.005000 >] eth0: dm9000e at c4818300,c481c304 IRQ 51 MAC: 08:90:90:90:90:90 (chip)
417. [2.405000 < 0.005000 >] initcall dm9000_init+0x0/0x60 returned 0 after 12150 usecs
418. [2.415000 < 0.010000 >] calling at76_mod_init+0x0/0x6c @ 1
419. [2.415000 < 0.000000 >] Atmel at76x USB Wireless LAN Driver 0.17 loading
420. [2.425000 < 0.010000 >] usbcore: registered new interface driver at76c50x-usb
421. [2.430000 < 0.005000 >] initcall at76_mod_init+0x0/0x6c returned 0 after 11460 usecs
422. [2.435000 < 0.005000 >] calling usb_init+0x0/0xac @ 1
423. [2.440000 < 0.005000 >] usbcore: registered new interface driver zd1211rw
424. [2.445000 < 0.005000 >] initcall usb_init+0x0/0xac returned 0 after 5705 usecs
425. [2.450000 < 0.005000 >] calling rtl8187_init+0x0/0x28 @ 1
426. [2.455000 < 0.005000 >] usbcore: registered new interface driver rtl8187
427. [2.460000 < 0.005000 >] initcall rtl8187_init+0x0/0x28 returned 0 after 5605 usecs
428. [2.465000 < 0.005000 >] calling zd1201_init+0x0/0x28 @ 1
429. [2.470000 < 0.005000 >] usbcore: registered new interface driver zd1201
430. [2.475000 < 0.005000 >] initcall zd1201_init+0x0/0x28 returned 0 after 5530 usecs
431. [2.480000 < 0.005000 >] calling rt2500usb_init+0x0/0x28 @ 1
432. [2.485000 < 0.005000 >] usbcore: registered new interface driver rt2500usb
433. [2.490000 < 0.005000 >] initcall rt2500usb_init+0x0/0x28 returned 0 after 5781 usecs
434. [2.495000 < 0.005000 >] calling rt73usb_init+0x0/0x28 @ 1
435. [2.500000 < 0.005000 >] usbcore: registered new interface driver rt73usb
436. [2.505000 < 0.005000 >] initcall rt73usb_init+0x0/0x28 returned 0 after 5621 usecs
437. [2.510000 < 0.005000 >] calling rt2800usb_init+0x0/0x28 @ 1
438. [2.515000 < 0.005000 >] usbcore: registered new interface driver rt2800usb
439. [2.520000 < 0.005000 >] initcall rt2800usb_init+0x0/0x28 returned 0 after 5820 usecs
440. [2.525000 < 0.005000 >] calling ar9170_init+0x0/0x28 @ 1
441. [2.530000 < 0.005000 >] usbcore: registered new interface driver ar9170usb
442. [2.535000 < 0.005000 >] initcall ar9170_init+0x0/0x28 returned 0 after 5787 usecs
443. [2.540000 < 0.005000 >] calling ohci_hcd_mod_init+0x0/0x88 @ 1
444. [2.545000 < 0.005000 >] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
445. [2.550000 < 0.005000 >] s3c2410-ohci s3c2410-ohci: S3C24XX OHCI
446. [2.555000 < 0.005000 >] s3c2410-ohci s3c2410-ohci: new USB bus registered, assigned bus number 1
447. [2.565000 < 0.010000 >] s3c2410-ohci s3c2410-ohci: irq 42, io mem 0x49000000
448. [2.625000 < 0.060000 >] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
449. [2.630000 < 0.005000 >] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
450. [2.635000 < 0.005000 >] usb usb1: Product: S3C24XX OHCI
451. [2.640000 < 0.005000 >] usb usb1: Manufacturer: Linux 2.6.32.2-FriendlyARM ohci_hcd
452. [2.645000 < 0.005000 >] usb usb1: SerialNumber: s3c24xx
453. [2.650000 < 0.005000 >] usb usb1: configuration #1 chosen from 1 choice
454. [2.655000 < 0.005000 >] hub 1-0:1.0: USB hub found
455. [2.660000 < 0.005000 >] hub 1-0:1.0: 2 ports detected
456. [2.665000 < 0.005000 >] initcall ohci_hcd_mod_init+0x0/0x88 returned 0 after 117482 usecs
457. [2.670000 < 0.005000 >] calling usb_stor_init+0x0/0x50 @ 1
458. [2.675000 < 0.005000 >] Initializing USB Mass Storage driver...
459. [2.680000 < 0.005000 >] usbcore: registered new interface driver usb-storage
460. [2.685000 < 0.005000 >] USB Mass Storage support registered.
461. [2.690000 < 0.005000 >] initcall usb_stor_init+0x0/0x50 returned 0 after 14834 usecs
462. [2.695000 < 0.005000 >] calling alauda_init+0x0/0x28 @ 1
463. [2.700000 < 0.005000 >] usbcore: registered new interface driver ums-alauda
464. [2.705000 < 0.005000 >] initcall alauda_init+0x0/0x28 returned 0 after 5864 usecs
465. [2.710000 < 0.005000 >] calling cypress_init+0x0/0x28 @ 1
466. [2.720000 < 0.010000 >] usbcore: registered new interface driver ums-cypress
467. [2.725000 < 0.005000 >] initcall cypress_init+0x0/0x28 returned 0 after 5886 usecs
468. [2.730000 < 0.005000 >] calling datafab_init+0x0/0x28 @ 1
469. [2.735000 < 0.005000 >] usbcore: registered new interface driver ums-datafab
470. [2.740000 < 0.005000 >] initcall datafab_init+0x0/0x28 returned 0 after 5940 usecs
471. [2.745000 < 0.005000 >] calling freecom_init+0x0/0x28 @ 1
472. [2.750000 < 0.005000 >] usbcore: registered new interface driver ums-freecom
473. [2.755000 < 0.005000 >] initcall freecom_init+0x0/0x28 returned 0 after 5946 usecs
474. [2.760000 < 0.005000 >] calling isd200_init+0x0/0x28 @ 1
475. [2.770000 < 0.010000 >] usbcore: registered new interface driver ums-isd200
476. [2.770000 < 0.000000 >] initcall isd200_init+0x0/0x28 returned 0 after 5686 usecs
477. [2.775000 < 0.005000 >] calling jumpshot_init+0x0/0x28 @ 1
478. [2.780000 < 0.005000 >] usbcore: registered new interface driver ums-jumpshot
479. [2.785000 < 0.005000 >] initcall jumpshot_init+0x0/0x28 returned 0 after 6031 usecs
480. [2.790000 < 0.005000 >] calling karma_init+0x0/0x28 @ 1
481. [2.795000 < 0.005000 >] usbcore: registered new interface driver ums-karma
482. [2.800000 < 0.005000 >] initcall karma_init+0x0/0x28 returned 0 after 5785 usecs
483. [2.805000 < 0.005000 >] calling onetouch_init+0x0/0x28 @ 1
484. [2.810000 < 0.005000 >] usbcore: registered new interface driver ums-onetouch
485. [2.815000 < 0.005000 >] initcall onetouch_init+0x0/0x28 returned 0 after 6041 usecs
486. [2.820000 < 0.005000 >] calling sddr09_init+0x0/0x28 @ 1
487. [2.825000 < 0.005000 >] usbcore: registered new interface driver ums-sddr09
488. [2.830000 < 0.005000 >] initcall sddr09_init+0x0/0x28 returned 0 after 5873 usecs
489. [2.835000 < 0.005000 >] calling sddr55_init+0x0/0x28 @ 1
490. [2.840000 < 0.005000 >] usbcore: registered new interface driver ums-sddr55
491. [2.845000 < 0.005000 >] initcall sddr55_init+0x0/0x28 returned 0 after 5871 usecs
492. [2.850000 < 0.005000 >] calling usbat_init+0x0/0x28 @ 1
493. [2.855000 < 0.005000 >] usbcore: registered new interface driver ums-usbat
494. [2.860000 < 0.005000 >] initcall usbat_init+0x0/0x28 returned 0 after 5786 usecs
495. [2.870000 < 0.010000 >] calling usb_serial_init+0x0/0x1f8 @ 1
496. [2.875000 < 0.005000 >] usbcore: registered new interface driver usbserial
497. [2.880000 < 0.005000 >] USB Serial support registered for generic
498. [3.000000 < 0.120000 >] usb 1-1: new full speed USB device using s3c2410-ohci and address 2
499. [3.155000 < 0.155000 >] usb 1-1: New USB device found, idVendor=058f, idProduct=9254
500. [3.155000 < 0.000000 >] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
501. [3.160000 < 0.005000 >] usb 1-1: Product: Generic USB Hub
502. [3.165000 < 0.005000 >] usb 1-1: Manufacturer: ALCOR
503. [3.170000 < 0.005000 >] usb 1-1: configuration #1 chosen from 1 choice
504. [3.175000 < 0.005000 >] hub 1-1:1.0: USB hub found
505. [3.180000 < 0.005000 >] hub 1-1:1.0: 4 ports detected
506. [3.195000 < 0.015000 >] usbcore: registered new interface driver usbserial_generic
507. [3.195000 < 0.000000 >] usbserial: USB Serial Driver core
508. [3.200000 < 0.005000 >] initcall usb_serial_init+0x0/0x1f8 returned 0 after 320761 usecs
509. [3.205000 < 0.005000 >] calling aircable_init+0x0/0x54 @ 1
510. [3.215000 < 0.010000 >] USB Serial support registered for aircable
511. [3.220000 < 0.005000 >] usbcore: registered new interface driver aircable
512. [3.225000 < 0.005000 >] initcall aircable_init+0x0/0x54 returned 0 after 10524 usecs
513. [3.230000 < 0.005000 >] calling ark3116_init+0x0/0x54 @ 1
514. [3.235000 < 0.005000 >] USB Serial support registered for ark3116
515. [3.240000 < 0.005000 >] usbcore: registered new interface driver ark3116
516. [3.245000 < 0.005000 >] initcall ark3116_init+0x0/0x54 returned 0 after 10402 usecs
517. [3.250000 < 0.005000 >] calling belkin_sa_init+0x0/0x64 @ 1
518. [3.255000 < 0.005000 >] USB Serial support registered for Belkin / Peracom / GoHubs USB Serial Adapter
519. [3.260000 < 0.005000 >] usbcore: registered new interface driver belkin
520. [3.265000 < 0.005000 >] belkin_sa: v1.2:USB Belkin Serial converter driver
521. [3.270000 < 0.005000 >] initcall belkin_sa_init+0x0/0x64 returned 0 after 13993 usecs
522. [3.275000 < 0.005000 >] calling ch341_init+0x0/0x54 @ 1
523. [3.280000 < 0.005000 >] USB Serial support registered for ch341-uart
524. [3.285000 < 0.005000 >] usbcore: registered new interface driver ch341
525. [3.290000 < 0.005000 >] initcall ch341_init+0x0/0x54 returned 0 after 10493 usecs
526. [3.295000 < 0.005000 >] calling cp210x_init+0x0/0x64 @ 1
527. [3.300000 < 0.005000 >] USB Serial support registered for cp210x
528. [3.310000 < 0.010000 >] usbcore: registered new interface driver cp210x
529. [3.310000 < 0.000000 >] cp210x: v0.09:Silicon Labs CP210x RS232 serial adaptor driver
530. [3.315000 < 0.005000 >] initcall cp210x_init+0x0/0x64 returned 0 after 11784 usecs
531. [3.320000 < 0.005000 >] calling cyberjack_init+0x0/0x70 @ 1
532. [3.325000 < 0.005000 >] USB Serial support registered for Reiner SCT Cyberjack USB card reader
533. [3.335000 < 0.010000 >] usbcore: registered new interface driver cyberjack
534. [3.335000 < 0.000000 >] cyberjack: v1.01 Matthias Bruestle
535. [3.340000 < 0.005000 >] cyberjack: REINER SCT cyberJack pinpad/e-com USB Chipcard Reader Driver
536. [3.345000 < 0.005000 >] initcall cyberjack_init+0x0/0x70 returned 0 after 19481 usecs
537. [3.350000 < 0.005000 >] calling cypress_init+0x0/0xd0 @ 1
538. [3.355000 < 0.005000 >] USB Serial support registered for DeLorme Earthmate USB
539. [3.360000 < 0.005000 >] USB Serial support registered for HID->COM RS232 Adapter
540. [3.365000 < 0.005000 >] USB Serial support registered for Nokia CA-42 V2 Adapter
541. [3.370000 < 0.005000 >] usbcore: registered new interface driver cypress
542. [3.375000 < 0.005000 >] cypress_m8: v1.09:Cypress USB to Serial Driver
543. [3.380000 < 0.005000 >] initcall cypress_init+0x0/0xd0 returned 0 after 23967 usecs
544. [3.385000 < 0.005000 >] calling digi_init+0x0/0x80 @ 1
545. [3.390000 < 0.005000 >] USB Serial support registered for Digi 2 port USB adapter
546. [3.400000 < 0.010000 >] USB Serial support registered for Digi 4 port USB adapter
547. [3.405000 < 0.005000 >] usbcore: registered new interface driver digi_acceleport
548. [3.410000 < 0.005000 >] digi_acceleport: v1.80.1.2:Digi AccelePort USB-2/USB-4 Serial Converter driver
549. [3.415000 < 0.005000 >] initcall digi_init+0x0/0x80 returned 0 after 26354 usecs
550. [3.420000 < 0.005000 >] calling edgeport_init+0x0/0xc4 @ 1
551. [3.425000 < 0.005000 >] USB Serial support registered for Edgeport 2 port adapter
552. [3.430000 < 0.005000 >] USB Serial support registered for Edgeport 4 port adapter
553. [3.435000 < 0.005000 >] USB Serial support registered for Edgeport 8 port adapter
554. [3.445000 < 0.010000 >] USB Serial support registered for EPiC device
555. [3.450000 < 0.005000 >] usbcore: registered new interface driver io_edgeport
556. [3.455000 < 0.005000 >] io_edgeport: v2.7:Edgeport USB Serial Driver
557. [3.460000 < 0.005000 >] initcall edgeport_init+0x0/0xc4 returned 0 after 34524 usecs
558. [3.465000 < 0.005000 >] calling edgeport_init+0x0/0x80 @ 1
559. [3.470000 < 0.005000 >] USB Serial support registered for Edgeport TI 1 port adapter
560. [3.475000 < 0.005000 >] USB Serial support registered for Edgeport TI 2 port adapter
561. [3.485000 < 0.010000 >] usbcore: registered new interface driver io_ti
562. [3.490000 < 0.005000 >] io_ti: v0.7mode043006:Edgeport USB Serial Driver
563. [3.495000 < 0.005000 >] initcall edgeport_init+0x0/0x80 returned 0 after 23528 usecs
564. [3.500000 < 0.005000 >] calling empeg_init+0x0/0x10c @ 1
565. [3.505000 < 0.005000 >] USB Serial support registered for empeg
566. [3.510000 < 0.005000 >] usbcore: registered new interface driver empeg
567. [3.515000 < 0.005000 >] empeg: v1.2:USB Empeg Mark I/II Driver
568. [3.520000 < 0.005000 >] initcall empeg_init+0x0/0x10c returned 0 after 14566 usecs
569. [3.525000 < 0.005000 >] calling ftdi_init+0x0/0x104 @ 1
570. [3.530000 < 0.005000 >] USB Serial support registered for FTDI USB Serial Device
571. [3.535000 < 0.005000 >] usbcore: registered new interface driver ftdi_sio
572. [3.540000 < 0.005000 >] ftdi_sio: v1.5.0:USB FTDI Serial Converters Driver
573. [3.545000 < 0.005000 >] initcall ftdi_init+0x0/0x104 returned 0 after 17172 usecs
574. [3.550000 < 0.005000 >] calling funsoft_init+0x0/0x54 @ 1
575. [3.555000 < 0.005000 >] USB Serial support registered for funsoft
576. [3.560000 < 0.005000 >] usbcore: registered new interface driver funsoft
577. [3.565000 < 0.005000 >] initcall funsoft_init+0x0/0x54 returned 0 after 10406 usecs
578. [3.570000 < 0.005000 >] calling garmin_init+0x0/0x64 @ 1
579. [3.575000 < 0.005000 >] USB Serial support registered for Garmin GPS usb/tty
580. [3.580000 < 0.005000 >] usbcore: registered new interface driver garmin_gps
581. [3.585000 < 0.005000 >] garmin_gps: v0.33:garmin gps driver
582. [3.590000 < 0.005000 >] initcall garmin_init+0x0/0x64 returned 0 after 15779 usecs
583. [3.595000 < 0.005000 >] calling hp49gp_init+0x0/0x64 @ 1
584. [3.600000 < 0.005000 >] USB Serial support registered for hp4X
585. [3.605000 < 0.005000 >] usbcore: registered new interface driver hp4X
586. [3.610000 < 0.005000 >] hp4x: v1.00:HP4x (48/49) Generic Serial driver
587. [3.615000 < 0.005000 >] initcall hp49gp_init+0x0/0x64 returned 0 after 15029 usecs
588. [3.620000 < 0.005000 >] calling ipaq_init+0x0/0x84 @ 1
589. [3.625000 < 0.005000 >] USB Serial support registered for PocketPC PDA
590. [3.630000 < 0.005000 >] usbcore: registered new interface driver ipaq
591. [3.630000 < 0.000000 >] ipaq: v0.5:USB PocketPC PDA driver
592. [3.635000 < 0.005000 >] initcall ipaq_init+0x0/0x84 returned 0 after 14803 usecs
593. [3.640000 < 0.005000 >] calling usb_ipw_init+0x0/0x64 @ 1
594. [3.645000 < 0.005000 >] USB Serial support registered for IPWireless converter
595. [3.650000 < 0.005000 >] usbcore: registered new interface driver ipwtty
596. [3.655000 < 0.005000 >] ipw: v0.3:IPWireless tty driver
597. [3.660000 < 0.005000 >] initcall usb_ipw_init+0x0/0x64 returned 0 after 15286 usecs
598. [3.665000 < 0.005000 >] calling ir_init+0x0/0x64 @ 1
599. [3.670000 < 0.005000 >] USB Serial support registered for IR Dongle
600. [3.675000 < 0.005000 >] usbcore: registered new interface driver ir-usb
601. [3.680000 < 0.005000 >] ir_usb: v0.4:USB IR Dongle driver
602. [3.685000 < 0.005000 >] initcall ir_init+0x0/0x64 returned 0 after 14525 usecs
603. [3.690000 < 0.005000 >] calling iuu_init+0x0/0x64 @ 1
604. [3.695000 < 0.005000 >] USB Serial support registered for iuu_phoenix
605. [3.700000 < 0.005000 >] usbcore: registered new interface driver iuu_phoenix
606. [3.705000 < 0.005000 >] iuu_phoenix: v0.11:Infinity USB Unlimited Phoenix driver
607. [3.710000 < 0.005000 >] initcall iuu_init+0x0/0x64 returned 0 after 17027 usecs
608. [3.715000 < 0.005000 >] calling keyspan_init+0x0/0xb8 @ 1
609. [3.720000 < 0.005000 >] USB Serial support registered for Keyspan - (without firmware)
610. [3.725000 < 0.005000 >] USB Serial support registered for Keyspan 1 port adapter
611. [3.730000 < 0.005000 >] USB Serial support registered for Keyspan 2 port adapter
612. [3.735000 < 0.005000 >] USB Serial support registered for Keyspan 4 port adapter
613. [3.745000 < 0.010000 >] usbcore: registered new interface driver keyspan
614. [3.745000 < 0.000000 >] keyspan: v1.1.5:Keyspan USB to Serial Converter Driver
615. [3.750000 < 0.005000 >] initcall keyspan_init+0x0/0xb8 returned 0 after 26439 usecs
616. [3.755000 < 0.005000 >] calling keyspan_pda_init+0x0/0x9c @ 1
617. [3.760000 < 0.005000 >] USB Serial support registered for Keyspan PDA
618. [3.765000 < 0.005000 >] USB Serial support registered for Keyspan PDA - (prerenumeration)
619. [3.775000 < 0.010000 >] USB Serial support registered for Xircom / Entregra PGS - (prerenumeration)
620. [3.780000 < 0.005000 >] usbcore: registered new interface driver keyspan_pda
621. [3.785000 < 0.005000 >] keyspan_pda: v1.1:USB Keyspan PDA Converter driver
622. [3.790000 < 0.005000 >] initcall keyspan_pda_init+0x0/0x9c returned 0 after 31017 usecs
623. [3.795000 < 0.005000 >] calling klsi_105_init+0x0/0x64 @ 1
624. [3.800000 < 0.005000 >] USB Serial support registered for KL5KUSB105D / PalmConnect
625. [3.805000 < 0.005000 >] usbcore: registered new interface driver kl5kusb105d
626. [3.810000 < 0.005000 >] kl5kusb105: v0.3a:KLSI KL5KUSB105 chipset USB->Serial Converter driver
627. [3.815000 < 0.005000 >] initcall klsi_105_init+0x0/0x64 returned 0 after 19370 usecs
628. [3.820000 < 0.005000 >] calling kobil_init+0x0/0x64 @ 1
629. [3.825000 < 0.005000 >] USB Serial support registered for KOBIL USB smart card terminal
630. [3.830000 < 0.005000 >] usbcore: registered new interface driver kobil
631. [3.835000 < 0.005000 >] kobil_sct: 21/05/2004:KOBIL USB Smart Card Terminal Driver (experimental)
632. [3.840000 < 0.005000 >] initcall kobil_init+0x0/0x64 returned 0 after 14563 usecs
633. [3.845000 < 0.005000 >] calling mct_u232_init+0x0/0x64 @ 1
634. [3.850000 < 0.005000 >] USB Serial support registered for MCT U232
635. [3.855000 < 0.005000 >] usbcore: registered new interface driver mct_u232
636. [3.860000 < 0.005000 >] mct_u232: z2.1:Magic Control Technology USB-RS232 converter driver
637. [3.865000 < 0.005000 >] initcall mct_u232_init+0x0/0x64 returned 0 after 17362 usecs
638. [3.870000 < 0.005000 >] calling moschip7720_init+0x0/0x94 @ 1
639. [3.875000 < 0.005000 >] USB Serial support registered for Moschip 2 port adapter
640. [3.880000 < 0.005000 >] mos7720: 1.0.0.4F:Moschip USB Serial Driver
641. [3.885000 < 0.005000 >] usbcore: registered new interface driver moschip7720
642. [3.890000 < 0.005000 >] initcall moschip7720_init+0x0/0x94 returned 0 after 16984 usecs
643. [3.895000 < 0.005000 >] calling moschip7840_init+0x0/0xdc @ 1
644. [3.900000 < 0.005000 >] USB Serial support registered for Moschip 7840/7820 USB Serial Driver
645. [3.905000 < 0.005000 >] mos7840: 1.3.2:Moschip 7840/7820 USB Serial Driver
646. [3.910000 < 0.005000 >] usbcore: registered new interface driver mos7840
647. [3.915000 < 0.005000 >] initcall moschip7840_init+0x0/0xdc returned 0 after 13438 usecs
648. [3.920000 < 0.005000 >] calling moto_init+0x0/0x54 @ 1
649. [3.925000 < 0.005000 >] USB Serial support registered for moto-modem
650. [3.930000 < 0.005000 >] usbcore: registered new interface driver moto-modem
651. [3.935000 < 0.005000 >] initcall moto_init+0x0/0x54 returned 0 after 10844 usecs
652. [3.940000 < 0.005000 >] calling navman_init+0x0/0x54 @ 1
653. [3.945000 < 0.005000 >] USB Serial support registered for navman
654. [3.950000 < 0.005000 >] usbcore: registered new interface driver navman
655. [3.955000 < 0.005000 >] initcall navman_init+0x0/0x54 returned 0 after 10248 usecs
656. [3.960000 < 0.005000 >] calling omninet_init+0x0/0x64 @ 1
657. [3.965000 < 0.005000 >] USB Serial support registered for ZyXEL - omni.net lcd plus usb
658. [3.970000 < 0.005000 >] usbcore: registered new interface driver omninet
659. [3.975000 < 0.005000 >] omninet: v1.1:USB ZyXEL omni.net LCD PLUS Driver
660. [3.980000 < 0.005000 >] initcall omninet_init+0x0/0x64 returned 0 after 17527 usecs
661. [3.985000 < 0.005000 >] calling opticon_init+0x0/0x54 @ 1
662. [3.990000 < 0.005000 >] USB Serial support registered for opticon
663. [3.995000 < 0.005000 >] usbcore: registered new interface driver opticon
664. [4.000000 < 0.005000 >] initcall opticon_init+0x0/0x54 returned 0 after 10424 usecs
665. [4.005000 < 0.005000 >] calling option_init+0x0/0x64 @ 1
666. [4.010000 < 0.005000 >] USB Serial support registered for GSM modem (1-port)
667. [4.015000 < 0.005000 >] usbcore: registered new interface driver option
668. [4.020000 < 0.005000 >] option: v0.7.2:USB Driver for GSM modems
669. [4.025000 < 0.005000 >] initcall option_init+0x0/0x64 returned 0 after 15858 usecs
670. [4.030000 < 0.005000 >] calling oti6858_init+0x0/0x54 @ 1
671. [4.035000 < 0.005000 >] USB Serial support registered for oti6858
672. [4.040000 < 0.005000 >] usbcore: registered new interface driver oti6858
673. [4.045000 < 0.005000 >] initcall oti6858_init+0x0/0x54 returned 0 after 10408 usecs
674. [4.050000 < 0.005000 >] calling pl2303_init+0x0/0x64 @ 1
675. [4.060000 < 0.010000 >] USB Serial support registered for pl2303
676. [4.065000 < 0.005000 >] usbcore: registered new interface driver pl2303
677. [4.065000 < 0.000000 >] pl2303: Prolific PL2303 USB to serial adaptor driver
678. [4.070000 < 0.005000 >] initcall pl2303_init+0x0/0x64 returned 0 after 11079 usecs
679. [4.075000 < 0.005000 >] calling qcinit+0x0/0x54 @ 1
680. [4.080000 < 0.005000 >] USB Serial support registered for Qualcomm USB modem
681. [4.085000 < 0.005000 >] usbcore: registered new interface driver qcserial
682. [4.090000 < 0.005000 >] initcall qcinit+0x0/0x54 returned 0 after 11453 usecs
683. [4.095000 < 0.005000 >] calling safe_init+0x0/0xfc @ 1
684. [4.100000 < 0.005000 >] safe_serial: v0.0b:USB Safe Encapsulated Serial
685. [4.105000 < 0.005000 >] USB Serial support registered for safe_serial
686. [4.110000 < 0.005000 >] usbcore: registered new interface driver safe_serial
687. [4.115000 < 0.005000 >] initcall safe_init+0x0/0xfc returned 0 after 16409 usecs
688. [4.120000 < 0.005000 >] calling siemens_usb_mpi_init+0x0/0x70 @ 1
689. [4.125000 < 0.005000 >] USB Serial support registered for siemens_mpi
690. [4.130000 < 0.005000 >] usbcore: registered new interface driver siemens_mpi
691. [4.135000 < 0.005000 >] Driver for Siemens USB/MPI adapter
692. [4.140000 < 0.005000 >] Version 0.1 09/26/2005 Thomas [email protected] http://libnodave.sf.net
693. [4.145000 < 0.005000 >] initcall siemens_usb_mpi_init+0x0/0x70 returned 0 after 22438 usecs
694. [4.150000 < 0.005000 >] calling sierra_init+0x0/0x64 @ 1
695. [4.155000 < 0.005000 >] USB Serial support registered for Sierra USB modem
696. [4.160000 < 0.005000 >] usbcore: registered new interface driver sierra
697. [4.165000 < 0.005000 >] sierra: v.1.3.8:USB Driver for Sierra Wireless USB modems
698. [4.170000 < 0.005000 >] initcall sierra_init+0x0/0x64 returned 0 after 17123 usecs
699. [4.175000 < 0.005000 >] calling spcp8x5_init+0x0/0x64 @ 1
700. [4.180000 < 0.005000 >] USB Serial support registered for SPCP8x5
701. [4.185000 < 0.005000 >] usbcore: registered new interface driver spcp8x5
702. [4.190000 < 0.005000 >] spcp8x5: v0.04:SPCP8x5 USB to serial adaptor driver
703. [4.195000 < 0.005000 >] initcall spcp8x5_init+0x0/0x64 returned 0 after 15945 usecs
704. [4.200000 < 0.005000 >] calling symbol_init+0x0/0x54 @ 1
705. [4.205000 < 0.005000 >] USB Serial support registered for symbol
706. [4.210000 < 0.005000 >] usbcore: registered new interface driver symbol
707. [4.215000 < 0.005000 >] initcall symbol_init+0x0/0x54 returned 0 after 10245 usecs
708. [4.220000 < 0.005000 >] calling ti_init+0x0/0x1b4 @ 1
709. [4.225000 < 0.005000 >] USB Serial support registered for TI USB 3410 1 port adapter
710. [4.230000 < 0.005000 >] USB Serial support registered for TI USB 5052 2 port adapter
711. [4.240000 < 0.010000 >] usbcore: registered new interface driver ti_usb_3410_5052
712. [4.245000 < 0.005000 >] ti_usb_3410_5052: v0.9:TI USB 3410/5052 Serial Driver
713. [4.250000 < 0.005000 >] initcall ti_init+0x0/0x1b4 returned 0 after 24833 usecs
714. [4.255000 < 0.005000 >] calling visor_init+0x0/0x200 @ 1
715. [4.260000 < 0.005000 >] USB Serial support registered for Handspring Visor / Palm OS
716. [4.265000 < 0.005000 >] USB Serial support registered for Sony Clie 3.5
717. [4.270000 < 0.005000 >] USB Serial support registered for Sony Clie 5.0
718. [4.280000 < 0.010000 >] usbcore: registered new interface driver visor
719. [4.280000 < 0.000000 >] visor: USB HandSpring Visor / Palm OS driver
720. [4.285000 < 0.005000 >] initcall visor_init+0x0/0x200 returned 0 after 27495 usecs
721. [4.290000 < 0.005000 >] calling whiteheat_init+0x0/0x80 @ 1
722. [4.295000 < 0.005000 >] USB Serial support registered for Connect Tech - WhiteHEAT - (prerenumeration)
723. [4.300000 < 0.005000 >] USB Serial support registered for Connect Tech - WhiteHEAT
724. [4.310000 < 0.010000 >] usbcore: registered new interface driver whiteheat
725. [4.315000 < 0.005000 >] whiteheat: v2.0:USB ConnectTech WhiteHEAT driver
726. [4.320000 < 0.005000 >] initcall whiteheat_init+0x0/0x80 returned 0 after 25210 usecs
727. [4.325000 < 0.005000 >] calling mousedev_init+0x0/0x6c @ 1
728. [4.330000 < 0.005000 >] mice: PS/2 mouse device common for all mice
729. [4.335000 < 0.005000 >] initcall mousedev_init+0x0/0x6c returned 0 after 5128 usecs
730. [4.340000 < 0.005000 >] calling evdev_init+0x0/0x1c @ 1
731. [4.345000 < 0.005000 >] initcall evdev_init+0x0/0x1c returned 0 after 10 usecs
732. [4.350000 < 0.005000 >] calling s3c2410ts_init+0x0/0x238 @ 1
733. [4.355000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
734. [4.360000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
735. [4.365000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
736. [4.370000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000060
737. [4.375000 < 0.005000 >] s3c2410 TouchScreen successfully loaded
738. [4.380000 < 0.005000 >] input: s3c2410 TouchScreen as /devices/virtual/input/input0
739. [4.390000 < 0.010000 >] initcall s3c2410ts_init+0x0/0x238 returned 0 after 30747 usecs
740. [4.395000 < 0.005000 >] calling s3c_rtc_init+0x0/0x28 @ 1
741. [4.395000 < 0.000000 >] S3C24XX RTC, (c) 2004,2006 Simtec Electronics
742. [4.400000 < 0.005000 >] s3c2410-rtc s3c2410-rtc: rtc disabled, re-enabling
743. [4.405000 < 0.005000 >] s3c2410-rtc s3c2410-rtc: rtc core: registered s3c as rtc0
744. [4.410000 < 0.005000 >] initcall s3c_rtc_init+0x0/0x28 returned 0 after 13022 usecs
745. [4.415000 < 0.005000 >] calling i2c_dev_init+0x0/0xc8 @ 1
746. [4.420000 < 0.005000 >] i2c /dev entries driver
747. [4.425000 < 0.005000 >] initcall i2c_dev_init+0x0/0xc8 returned 0 after 6209 usecs
748. [4.430000 < 0.005000 >] calling videodev_init+0x0/0x90 @ 1
749. [4.435000 < 0.005000 >] Linux video capture interface: v2.00
750. [4.440000 < 0.005000 >] initcall videodev_init+0x0/0x90 returned 0 after 5204 usecs
751. [4.445000 < 0.005000 >] calling gspca_init+0x0/0x2c @ 1
752. [4.450000 < 0.005000 >] gspca: main v2.7.0 registered
753. [4.455000 < 0.005000 >] initcall gspca_init+0x0/0x2c returned 0 after 3772 usecs
754. [4.460000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
755. [4.465000 < 0.005000 >] usbcore: registered new interface driver conex
756. [4.470000 < 0.005000 >] conex: registered
757. [4.475000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8129 usecs
758. [4.480000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
759. [4.485000 < 0.005000 >] usbcore: registered new interface driver etoms
760. [4.490000 < 0.005000 >] etoms: registered
761. [4.490000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8066 usecs
762. [4.495000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
763. [4.500000 < 0.005000 >] usbcore: registered new interface driver finepix
764. [4.505000 < 0.005000 >] finepix: registered
765. [4.505000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8419 usecs
766. [4.510000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
767. [4.515000 < 0.005000 >] usbcore: registered new interface driver jeilinj
768. [4.520000 < 0.005000 >] jeilinj: registered
769. [4.525000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8488 usecs
770. [4.530000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
771. [4.535000 < 0.005000 >] usbcore: registered new interface driver mars
772. [4.540000 < 0.005000 >] mars: registered
773. [4.545000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 7947 usecs
774. [4.550000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
775. [4.555000 < 0.005000 >] usbcore: registered new interface driver mr97310a
776. [4.560000 < 0.005000 >] mr97310a: registered
777. [4.565000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8633 usecs
778. [4.570000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
779. [4.575000 < 0.005000 >] usbcore: registered new interface driver ov519
780. [4.580000 < 0.005000 >] ov519: registered
781. [4.580000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8066 usecs
782. [4.585000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
783. [4.590000 < 0.005000 >] usbcore: registered new interface driver ov534
784. [4.595000 < 0.005000 >] ov534: registered
785. [4.595000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8087 usecs
786. [4.600000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
787. [4.605000 < 0.005000 >] usbcore: registered new interface driver pac207
788. [4.610000 < 0.005000 >] pac207: registered
789. [4.615000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8314 usecs
790. [4.620000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
791. [4.625000 < 0.005000 >] usbcore: registered new interface driver pac7311
792. [4.630000 < 0.005000 >] pac7311: registered
793. [4.635000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8465 usecs
794. [4.640000 < 0.005000 >] calling sd_mod_init+0x0/0x40 @ 1
795. [4.645000 < 0.005000 >] usbcore: registered new interface driver sn9c20x
796. [4.650000 < 0.005000 >] sn9c20x: registered
797. [4.655000 < 0.005000 >] initcall sd_mod_init+0x0/0x40 returned 0 after 8468 usecs
798. [4.660000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
799. [4.665000 < 0.005000 >] usbcore: registered new interface driver sonixb
800. [4.670000 < 0.005000 >] sonixb: registered
801. [4.670000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8230 usecs
802. [4.675000 < 0.005000 >] calling sd_mod_init+0x0/0x40 @ 1
803. [4.680000 < 0.005000 >] usbcore: registered new interface driver sonixj
804. [4.685000 < 0.005000 >] sonixj: registered
805. [4.685000 < 0.000000 >] initcall sd_mod_init+0x0/0x40 returned 0 after 8247 usecs
806. [4.690000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
807. [4.695000 < 0.005000 >] usbcore: registered new interface driver spca500
808. [4.695000 < 0.000000 >] spca500: registered
809. [4.700000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8509 usecs
810. [4.705000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
811. [4.710000 < 0.005000 >] usbcore: registered new interface driver spca501
812. [4.715000 < 0.005000 >] spca501: registered
813. [4.720000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8486 usecs
814. [4.725000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
815. [4.730000 < 0.005000 >] usbcore: registered new interface driver spca505
816. [4.735000 < 0.005000 >] spca505: registered
817. [4.740000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8454 usecs
818. [4.745000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
819. [4.750000 < 0.005000 >] usbcore: registered new interface driver spca506
820. [4.755000 < 0.005000 >] spca506: registered
821. [4.760000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8468 usecs
822. [4.765000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
823. [4.770000 < 0.005000 >] usbcore: registered new interface driver spca508
824. [4.775000 < 0.005000 >] spca508: registered
825. [4.775000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8397 usecs
826. [4.780000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
827. [4.785000 < 0.005000 >] usbcore: registered new interface driver spca561
828. [4.790000 < 0.005000 >] spca561: registered
829. [4.790000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8412 usecs
830. [4.795000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
831. [4.800000 < 0.005000 >] usbcore: registered new interface driver sq905
832. [4.800000 < 0.000000 >] sq905: registered
833. [4.805000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8244 usecs
834. [4.810000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
835. [4.815000 < 0.005000 >] usbcore: registered new interface driver sq905c
836. [4.820000 < 0.005000 >] sq905c: registered
837. [4.825000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8316 usecs
838. [4.830000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
839. [4.835000 < 0.005000 >] usbcore: registered new interface driver sunplus
840. [4.840000 < 0.005000 >] sunplus: registered
841. [4.845000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8468 usecs
842. [4.850000 < 0.005000 >] calling sd_mod_init+0x0/0x40 @ 1
843. [4.855000 < 0.005000 >] usbcore: registered new interface driver stk014
844. [4.860000 < 0.005000 >] stk014: registered
845. [4.865000 < 0.005000 >] initcall sd_mod_init+0x0/0x40 returned 0 after 8302 usecs
846. [4.870000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
847. [4.875000 < 0.005000 >] usbcore: registered new interface driver t613
848. [4.880000 < 0.005000 >] t613: registered
849. [4.880000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 7898 usecs
850. [4.885000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
851. [4.890000 < 0.005000 >] usbcore: registered new interface driver tv8532
852. [4.890000 < 0.000000 >] tv8532: registered
853. [4.895000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8341 usecs
854. [4.900000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
855. [4.905000 < 0.005000 >] usbcore: registered new interface driver vc032x
856. [4.910000 < 0.005000 >] vc032x: registered
857. [4.915000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8274 usecs
858. [4.920000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
859. [4.925000 < 0.005000 >] usbcore: registered new interface driver zc3xx
860. [4.930000 < 0.005000 >] zc3xx: registered
861. [4.935000 < 0.005000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8077 usecs
862. [4.940000 < 0.005000 >] calling mod_m5602_init+0x0/0x54 @ 1
863. [4.945000 < 0.005000 >] usbcore: registered new interface driver ALi m5602
864. [4.950000 < 0.005000 >] ALi m5602: registered
865. [4.955000 < 0.005000 >] initcall mod_m5602_init+0x0/0x54 returned 0 after 8798 usecs
866. [4.960000 < 0.005000 >] calling sd_mod_init+0x0/0x54 @ 1
867. [4.965000 < 0.005000 >] usbcore: registered new interface driver STV06xx
868. [4.970000 < 0.005000 >] STV06xx: registered
869. [4.970000 < 0.000000 >] initcall sd_mod_init+0x0/0x54 returned 0 after 8414 usecs
870. [4.975000 < 0.005000 >] calling sd_mod_init+0x0/0x7c @ 1
871. [4.980000 < 0.005000 >] gspca_gl860: driver startup - version 0.9d10
872. [4.985000 < 0.005000 >] usbcore: registered new interface driver gspca_gl860
873. [4.990000 < 0.005000 >] gspca_gl860: driver registered
874. [4.995000 < 0.005000 >] initcall sd_mod_init+0x0/0x7c returned 0 after 14815 usecs
875. [5.000000 < 0.005000 >] calling uvc_init+0x0/0x90 @ 1
876. [5.005000 < 0.005000 >] usbcore: registered new interface driver uvcvideo
877. [5.010000 < 0.005000 >] USB Video Class driver (v0.1.0)
878. [5.015000 < 0.005000 >] initcall uvc_init+0x0/0x90 returned 0 after 9538 usecs
879. [5.020000 < 0.005000 >] calling camif_init+0x0/0x288 @ 1
880. [5.025000 < 0.005000 >] initializing s3c2440 camera interface......
881. [5.030000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
882. [5.035000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
883. [5.040000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
884. [5.045000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
885. [5.045000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
886. [5.050000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
887. [5.055000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
888. [5.060000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
889. [5.065000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
890. [5.070000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
891. [5.075000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
892. [5.080000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
893. [5.085000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb0000d0
894. [5.190000 < 0.105000 >] s3c2440 camif init done
895. [5.190000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
896. [5.195000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
897. [5.220000 < 0.025000 >] Loading OV9650 driver.........
898. [5.220000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000060
899. [5.340000 < 0.120000 >] s3c2410_gpio_cfgpin base == 0xfb000040
900. [5.340000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
901. [5.345000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
902. [5.350000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
903. [5.355000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
904. [5.360000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
905. [5.365000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
906. [5.370000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
907. [5.375000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
908. [5.380000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
909. [5.385000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
910. [5.390000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
911. [5.390000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
912. [5.395000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
913. [5.400000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
914. [5.405000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
915. [5.415000 < 0.010000 >] s3c2410_gpio_cfgpin base == 0xfb000040
916. [5.415000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
917. [5.420000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
918. [5.425000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
919. [5.430000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
920. [5.435000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
921. [5.440000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
922. [5.445000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
923. [5.450000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
924. [5.455000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
925. [5.460000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
926. [5.465000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
927. [5.465000 < 0.000000 >] SCCB address 0x60, manufacture ID 0xFFFF, expect 0x7FA2
928. [5.470000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
929. [5.475000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
930. [5.480000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
931. [5.485000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
932. [5.490000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
933. [5.490000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
934. [5.495000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
935. [5.500000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
936. [5.505000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
937. [5.510000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
938. [5.515000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
939. [5.520000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
940. [5.525000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
941. [5.530000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
942. [5.535000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
943. [5.540000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
944. [5.545000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
945. [5.550000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
946. [5.555000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
947. [5.560000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
948. [5.565000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
949. [5.565000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
950. [5.570000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
951. [5.580000 < 0.010000 >] s3c2410_gpio_cfgpin base == 0xfb000040
952. [5.580000 < 0.000000 >] s3c2410_gpio_cfgpin base == 0xfb000040
953. [5.585000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
954. [5.590000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
955. [5.595000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
956. [5.600000 < 0.005000 >] SCCB address 0x60, manufacture ID 0xFFFF, expect 0x7FA2
957. [5.605000 < 0.005000 >] No OV9650 found!!!
958. [5.610000 < 0.005000 >] initcall camif_init+0x0/0x288 returned 0 after 571779 usecs
959. [5.615000 < 0.005000 >] calling watchdog_init+0x0/0x28 @ 1
960. [5.620000 < 0.005000 >] S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics
961. [5.630000 < 0.010000 >] s3c2410-wdt s3c2410-wdt: watchdog inactive, reset disabled, irq enabled
962. [5.635000 < 0.005000 >] initcall watchdog_init+0x0/0x28 returned 0 after 13891 usecs
963. [5.640000 < 0.005000 >] calling mmc_blk_init+0x0/0x50 @ 1
964. [5.645000 < 0.005000 >] initcall mmc_blk_init+0x0/0x50 returned 0 after 879 usecs
965. [5.650000 < 0.005000 >] calling s3cmci_init+0x0/0x1c @ 1
966. [5.655000 < 0.005000 >] s3c-sdi s3c2440-sdi: powered down.
967. [5.660000 < 0.005000 >] s3c-sdi s3c2440-sdi: mmc0 - using pio, sw SDIO IRQ
968. [5.665000 < 0.005000 >] initcall s3cmci_init+0x0/0x1c returned 0 after 10751 usecs
969. [5.670000 < 0.005000 >] calling hid_init+0x0/0x5c @ 1
970. [5.675000 < 0.005000 >] initcall hid_init+0x0/0x5c returned 0 after 936 usecs
971. [5.680000 < 0.005000 >] calling a4_init+0x0/0x28 @ 1
972. [5.685000 < 0.005000 >] initcall a4_init+0x0/0x28 returned 0 after 980 usecs
973. [5.690000 < 0.005000 >] calling apple_init+0x0/0x44 @ 1
974. [5.695000 < 0.005000 >] initcall apple_init+0x0/0x44 returned 0 after 1019 usecs
975. [5.700000 < 0.005000 >] calling belkin_init+0x0/0x28 @ 1
976. [5.705000 < 0.005000 >] initcall belkin_init+0x0/0x28 returned 0 after 978 usecs
977. [5.710000 < 0.005000 >] calling ch_init+0x0/0x28 @ 1
978. [5.715000 < 0.005000 >] initcall ch_init+0x0/0x28 returned 0 after 984 usecs
979. [5.720000 < 0.005000 >] calling ch_init+0x0/0x28 @ 1
980. [5.725000 < 0.005000 >] initcall ch_init+0x0/0x28 returned 0 after 1044 usecs
981. [5.730000 < 0.005000 >] calling cp_init+0x0/0x28 @ 1
982. [5.735000 < 0.005000 >] initcall cp_init+0x0/0x28 returned 0 after 985 usecs
983. [5.740000 < 0.005000 >] calling dr_init+0x0/0x28 @ 1
984. [5.745000 < 0.005000 >] initcall dr_init+0x0/0x28 returned 0 after 989 usecs
985. [5.750000 < 0.005000 >] calling ez_init+0x0/0x28 @ 1
986. [5.755000 < 0.005000 >] initcall ez_init+0x0/0x28 returned 0 after 1000 usecs
987. [5.760000 < 0.005000 >] calling gyration_init+0x0/0x28 @ 1
988. [5.765000 < 0.005000 >] initcall gyration_init+0x0/0x28 returned 0 after 1003 usecs
989. [5.770000 < 0.005000 >] calling ks_init+0x0/0x28 @ 1
990. [5.775000 < 0.005000 >] initcall ks_init+0x0/0x28 returned 0 after 1013 usecs
991. [5.780000 < 0.005000 >] calling kye_init+0x0/0x28 @ 1
992. [5.785000 < 0.005000 >] initcall kye_init+0x0/0x28 returned 0 after 1004 usecs
993. [5.790000 < 0.005000 >] calling lg_init+0x0/0x28 @ 1
994. [5.795000 < 0.005000 >] initcall lg_init+0x0/0x28 returned 0 after 1060 usecs
995. [5.800000 < 0.005000 >] calling ms_init+0x0/0x28 @ 1
996. [5.805000 < 0.005000 >] initcall ms_init+0x0/0x28 returned 0 after 981 usecs
997. [5.810000 < 0.005000 >] calling mr_init+0x0/0x28 @ 1
998. [5.815000 < 0.005000 >] initcall mr_init+0x0/0x28 returned 0 after 1026 usecs
999. [5.820000 < 0.005000 >] calling ntrig_init+0x0/0x28 @ 1
1000. [5.825000 < 0.005000 >] initcall ntrig_init+0x0/0x28 returned 0 after 1106 usecs
1001. [5.830000 < 0.005000 >] calling pl_init+0x0/0x28 @ 1
1002. [5.835000 < 0.005000 >] initcall pl_init+0x0/0x28 returned 0 after 1018 usecs
1003. [5.840000 < 0.005000 >] calling pl_init+0x0/0x28 @ 1
1004. [5.845000 < 0.005000 >] initcall pl_init+0x0/0x28 returned 0 after 1008 usecs
1005. [5.850000 < 0.005000 >] calling samsung_init+0x0/0x28 @ 1
1006. [5.855000 < 0.005000 >] initcall samsung_init+0x0/0x28 returned 0 after 1018 usecs
1007. [5.860000 < 0.005000 >] calling sjoy_init+0x0/0x28 @ 1
1008. [5.865000 < 0.005000 >] initcall sjoy_init+0x0/0x28 returned 0 after 1161 usecs
1009. [5.870000 < 0.005000 >] calling sony_init+0x0/0x28 @ 1
1010. [5.875000 < 0.005000 >] initcall sony_init+0x0/0x28 returned 0 after 1160 usecs
1011. [5.880000 < 0.005000 >] calling sp_init+0x0/0x28 @ 1
1012. [5.885000 < 0.005000 >] initcall sp_init+0x0/0x28 returned 0 after 1160 usecs
1013. [5.890000 < 0.005000 >] calling ga_init+0x0/0x28 @ 1
1014. [5.895000 < 0.005000 >] initcall ga_init+0x0/0x28 returned 0 after 1167 usecs
1015. [5.900000 < 0.005000 >] calling tm_init+0x0/0x28 @ 1
1016. [5.905000 < 0.005000 >] initcall tm_init+0x0/0x28 returned 0 after 1179 usecs
1017. [5.910000 < 0.005000 >] calling ts_init+0x0/0x28 @ 1
1018. [5.915000 < 0.005000 >] initcall ts_init+0x0/0x28 returned 0 after 1124 usecs
1019. [5.920000 < 0.005000 >] calling twinhan_init+0x0/0x28 @ 1
1020. [5.925000 < 0.005000 >] initcall twinhan_init+0x0/0x28 returned 0 after 1184 usecs
1021. [5.930000 < 0.005000 >] calling zp_init+0x0/0x28 @ 1
1022. [5.935000 < 0.005000 >] initcall zp_init+0x0/0x28 returned 0 after 1178 usecs
1023. [5.940000 < 0.005000 >] calling hid_init+0x0/0xc8 @ 1
1024. [5.945000 < 0.005000 >] usbcore: registered new interface driver usbhid
1025. [5.950000 < 0.005000 >] usbhid: v2.6:USB HID core driver
1026. [5.950000 < 0.000000 >] initcall hid_init+0x0/0xc8 returned 0 after 9415 usecs
1027. [5.955000 < 0.005000 >] calling init_soundcore+0x0/0xc0 @ 1
1028. [5.960000 < 0.005000 >] initcall init_soundcore+0x0/0xc0 returned 0 after 875 usecs
1029. [5.965000 < 0.005000 >] calling alsa_sound_init+0x0/0xb0 @ 1
1030. [5.970000 < 0.005000 >] Advanced Linux Sound Architecture Driver Version 1.0.21.
1031. [5.975000 < 0.005000 >] initcall alsa_sound_init+0x0/0xb0 returned 0 after 6096 usecs
1032. [5.980000 < 0.005000 >] calling alsa_timer_init+0x0/0x1b4 @ 1
1033. [5.985000 < 0.005000 >] initcall alsa_timer_init+0x0/0x1b4 returned 0 after 1111 usecs
1034. [5.990000 < 0.005000 >] calling alsa_pcm_init+0x0/0x78 @ 1
1035. [5.995000 < 0.005000 >] initcall alsa_pcm_init+0x0/0x78 returned 0 after 122 usecs
1036. [6.000000 < 0.005000 >] calling snd_mem_init+0x0/0x4c @ 1
1037. [6.005000 < 0.005000 >] initcall snd_mem_init+0x0/0x4c returned 0 after 76 usecs
1038. [6.010000 < 0.005000 >] calling alsa_mixer_oss_init+0x0/0x50 @ 1
1039. [6.015000 < 0.005000 >] initcall alsa_mixer_oss_init+0x0/0x50 returned 0 after 6 usecs
1040. [6.020000 < 0.005000 >] calling alsa_pcm_oss_init+0x0/0xbc @ 1
1041. [6.025000 < 0.005000 >] initcall alsa_pcm_oss_init+0x0/0xbc returned 0 after 13 usecs
1042. [6.030000 < 0.005000 >] calling snd_soc_init+0x0/0x1c @ 1
1043. [6.035000 < 0.005000 >] initcall snd_soc_init+0x0/0x1c returned 0 after 1082 usecs
1044. [6.040000 < 0.005000 >] calling uda134x_init+0x0/0x1c @ 1
1045. [6.045000 < 0.005000 >] No device for DAI UDA134X
1046. [6.045000 < 0.000000 >] initcall uda134x_init+0x0/0x1c returned 0 after 3493 usecs
1047. [6.050000 < 0.005000 >] calling s3c24xx_soc_platform_init+0x0/0x1c @ 1
1048. [6.055000 < 0.005000 >] initcall s3c24xx_soc_platform_init+0x0/0x1c returned 0 after 5 usecs
1049. [6.060000 < 0.005000 >] calling s3c24xx_i2s_init+0x0/0x1c @ 1
1050. [6.065000 < 0.005000 >] No device for DAI s3c24xx-i2s
1051. [6.070000 < 0.005000 >] initcall s3c24xx_i2s_init+0x0/0x1c returned 0 after 3827 usecs
1052. [6.075000 < 0.005000 >] calling s3c24xx_uda134x_init+0x0/0x1c @ 1
1053. [6.080000 < 0.005000 >] S3C24XX_UDA134X SoC Audio driver
1054. [6.085000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
1055. [6.090000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
1056. [6.095000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
1057. [6.100000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
1058. [6.105000 < 0.005000 >] s3c2410_gpio_cfgpin base == 0xfb000040
1059. [6.110000 < 0.005000 >] UDA134X SoC Audio Codec
1060. [6.120000 < 0.010000 >] asoc: UDA134X <-> s3c24xx-i2s mapping ok
1061. [6.130000 < 0.010000 >] initcall s3c24xx_uda134x_init+0x0/0x1c returned 0 after 50057 usecs
1062. [6.135000 < 0.005000 >] calling alsa_sound_last_init+0x0/0x7c @ 1
1063. [6.140000 < 0.005000 >] ALSA device list:
1064. [6.140000 < 0.000000 >] #0: S3C24XX_UDA134X (UDA134X)
1065. [6.145000 < 0.005000 >] initcall alsa_sound_last_init+0x0/0x7c returned 0 after 6771 usecs
1066. [6.150000 < 0.005000 >] calling sysctl_ipv4_init+0x0/0x4c @ 1
1067. [6.155000 < 0.005000 >] initcall sysctl_ipv4_init+0x0/0x4c returned 0 after 130 usecs
1068. [6.160000 < 0.005000 >] calling cubictcp_register+0x0/0x7c @ 1
1069. [6.165000 < 0.005000 >] TCP cubic registered
1070. [6.165000 < 0.000000 >] initcall cubictcp_register+0x0/0x7c returned 0 after 3072 usecs
1071. [6.170000 < 0.005000 >] calling lib80211_init+0x0/0x28 @ 1
1072. [6.175000 < 0.005000 >] lib80211: common routines for IEEE802.11 drivers
1073. [6.180000 < 0.005000 >] initcall lib80211_init+0x0/0x28 returned 0 after 5447 usecs
1074. [6.185000 < 0.005000 >] calling s3c24xx_dma_sysdev_register+0x0/0x80 @ 1
1075. [6.195000 < 0.010000 >] initcall s3c24xx_dma_sysdev_register+0x0/0x80 returned 0 after 3224 usecs
1076. [6.200000 < 0.005000 >] calling init_oops_id+0x0/0x58 @ 1
1077. [6.205000 < 0.005000 >] initcall init_oops_id+0x0/0x58 returned 0 after 58 usecs
1078. [6.210000 < 0.005000 >] calling disable_boot_consoles+0x0/0x60 @ 1
1079. [6.215000 < 0.005000 >] initcall disable_boot_consoles+0x0/0x60 returned 0 after 5 usecs
1080. [6.220000 < 0.005000 >] calling pm_qos_power_init+0x0/0xb8 @ 1
1081. [6.230000 < 0.010000 >] initcall pm_qos_power_init+0x0/0xb8 returned 0 after 3519 usecs
1082. [6.235000 < 0.005000 >] calling random32_reseed+0x0/0x64 @ 1
1083. [6.240000 < 0.005000 >] initcall random32_reseed+0x0/0x64 returned 0 after 79 usecs
1084. [6.245000 < 0.005000 >] calling seqgen_init+0x0/0x1c @ 1
1085. [6.250000 < 0.005000 >] initcall seqgen_init+0x0/0x1c returned 0 after 127 usecs
1086. [6.255000 < 0.005000 >] calling scsi_complete_async_scans+0x0/0xf8 @ 1
1087. [6.260000 < 0.005000 >] initcall scsi_complete_async_scans+0x0/0xf8 returned 0 after 5 usecs
1088. [6.265000 < 0.005000 >] calling rtc_hctosys+0x0/0x144 @ 1
1089. [6.270000 < 0.005000 >] s3c2410-rtc s3c2410-rtc: hctosys: invalid date/time
1090. [6.280000 < 0.010000 >] initcall rtc_hctosys+0x0/0x144 returned 0 after 5701 usecs
1091. [6.285000 < 0.005000 >] calling tcp_congestion_default+0x0/0x1c @ 1
1092. [6.290000 < 0.005000 >] initcall tcp_congestion_default+0x0/0x1c returned 0 after 10 usecs
1093. [6.295000 < 0.005000 >] calling ip_auto_config+0x0/0x7b0 @ 1
1094. [6.825000 < 0.530000 >] eth0: link down
1095. [7.830000 < 1.005000 >] IP-Config: Unable to set interface netmask (-22).
1096. [7.830000 < 0.000000 >] initcall ip_auto_config+0x0/0x7b0 returned -1 after 1491554 usecs
1097. [7.835000 < 0.005000 >] initcall ip_auto_config+0x0/0x7b0 returned with error code -1
1098. [7.840000 < 0.005000 >] calling initialize_hashrnd+0x0/0x24 @ 1
1099. [7.845000 < 0.005000 >] initcall initialize_hashrnd+0x0/0x24 returned 0 after 46 usecs
1100. [7.850000 < 0.005000 >] async_waiting @ 1
1101. [7.850000 < 0.000000 >] async_continuing @ 1 after 5 usec
1102. [7.855000 < 0.005000 >] Looking up port of RPC 100003/2 on 192.168.0.100
1103. [8.865000 < 1.010000 >] eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
1104. [9.865000 < 1.000000 >] Looking up port of RPC 100005/1 on 192.168.0.100
1105. [9.885000 < 0.020000 >] VFS: Mounted root (nfs filesystem) on device 0:11.
1106. [9.885000 < 0.000000 >] async_waiting @ 1
1107. [9.890000 < 0.005000 >] async_continuing @ 1 after 5 usec
1108. [9.895000 < 0.005000 >] Freeing init memory: 160K

猜你喜欢

转载自blog.csdn.net/victorwjw/article/details/88233604