Chinaunix首页 | 论坛 | 博客
  • 博客访问: 398813
  • 博文数量: 118
  • 博客积分: 294
  • 博客等级: 二等列兵
  • 技术积分: 667
  • 用 户 组: 普通用户
  • 注册时间: 2010-09-16 20:31
文章分类

全部博文(118)

文章存档

2014年(3)

2012年(25)

2011年(90)

分类:

2012-01-15 23:08:59

1. 首先修改kernel的bootargs,在bootargs中添加以下内容:
   
  1. initcall_debug
  2. printk.time=y
    我使用的bootargs修改后如下:
   
  1. 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中打开以下选项:
  
  1. Kernel hacking
  2.     --->Show timing information on printks
    但是我在没有打开此选项的情况下,依然能够打印出启动时间。

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

  1. Starting kernel ...

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

阅读(2028) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~