Embedsky007的个人空间 https://www.eechina.com/space-uid-114045.html [收藏] [复制] [RSS]

博客

TQIMX6Q教程--内核启动与文件系统挂载之二

已有 2093 次阅读2015-7-27 15:15 |个人分类:技术文章| Freescale, 内核, 文件系统

  效果展示

  按照上面的步骤修改后内核就可以正常启动了,下面是启动Log:

  1. U-Boot 2009.08-dirty ( 3月 23 2015 - 23:14:02)  
  2.   
  3. CPU: Freescale i.MX6 family TO1.2 at 792 MHz  
  4. Thermal sensor with ratio = 174  
  5. Temperature:   23 C, calibration data 0x54e4bb69  
  6. mx6q pll1: 792MHz  
  7. mx6q pll2: 528MHz  
  8. mx6q pll3: 480MHz  
  9. mx6q pll8: 50MHz  
  10. ipg clock     : 66000000Hz  
  11. ipg per clock : 66000000Hz  
  12. uart clock    : 80000000Hz  
  13. cspi clock    : 60000000Hz  
  14. ahb clock     : 132000000Hz  
  15. axi clock   : 264000000Hz  
  16. emi_slow clock: 132000000Hz  
  17. ddr clock     : 528000000Hz  
  18. usdhc1 clock  : 198000000Hz  
  19. usdhc2 clock  : 198000000Hz  
  20. usdhc3 clock  : 198000000Hz  
  21. usdhc4 clock  : 198000000Hz  
  22. nfc clock     : 24000000Hz  
  23. Board: i.MX6Q-SABRESD: unknown-board Board: 0x63012 [POR ]  
  24. Boot Device: SD  
  25. I2C:   ready  
  26. DRAM:   1 GB  
  27. MMC:   FSL_USDHC: 0,FSL_USDHC: 1,FSL_USDHC: 2,FSL_USDHC: 3  
  28. In:    serial  
  29. Out:   serial  
  30. Err:   serial  
  31. Net:   got MAC address from IIM: 00:00:00:00:00:00  
  32. FEC0 [PRIME]  
  33. Hit any key to stop autoboot:  0   
  34. mmc1 is current device  
  35.   
  36. MMC read: dev # 1, block # 2048, count 8192 ... 8192 blocks read: OK  
  37. ## Booting kernel from Legacy Image at 10800000 ...  
  38.    Image Name:   Linux-3.0.35-2666-gbdde708-g3344  
  39.    Image Type:   ARM Linux Kernel Image (uncompressed)  
  40.    Data Size:    3866004 Bytes =  3.7 MB  
  41.    Load Address: 10008000  
  42.    Entry Point:  10008000  
  43.    Verifying Checksum ... OK  
  44.    Loading Kernel Image ... OK  
  45. OK  
  46.   
  47. Starting kernel ...  
  48.   
  49. Uncompressing Linux... done, booting the kernel.  
  50. Linux version 3.0.35-2666-gbdde708-g334422e-dirty (lilianrong@ubuntu) (gcc version 4.6.2 20110630 (prerelease) (Freescale MAD -- Linaro 2011.07 -- Built at 2011/08/10 09:20) ) #5 SMP PREEMPT Wed Mar 25 19:29:24 CST 2015  
  51. CPU: ARMv7 Processor [412fc09a] revision 10 (ARMv7), cr=10c53c7d  
  52. CPU: VIPT nonaliasing data cache, VIPT aliasing instruction cache  
  53. Machine: Freescale i.MX 6Quad/DualLite/Solo Sabre-SD Board  
  54. Ignoring unrecognised tag 0x54410008  
  55. Memory policy: ECC disabled, Data cache writealloc  
  56. CPU identified as i.MX6Q, silicon rev 1.2  
  57. PERCPU: Embedded 7 pages/cpu @8c008000 s5440 r8192 d15040 u32768  
  58. Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 194560  
  59. Kernel command line: console=ttymxc0,115200 root=/dev/mmcblk1p1 rootwait rw  
  60. PID hash table entries: 4096 (order: 2, 16384 bytes)  
  61. Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)  
  62. Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)  
  63. Memory: 512MB 256MB = 768MB total  
  64. Memory: 765764k/765764k available, 282812k reserved, 0K highmem  
  65. Virtual kernel memory layout:  
  66.     vector  : 0xffff0000 - 0xffff1000   (   4 kB)  
  67.     fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)  
  68.     DMA     : 0xf4600000 - 0xffe00000   ( 184 MB)  
  69.     vmalloc : 0xc0800000 - 0xf2000000   ( 792 MB)  
  70.     lowmem  : 0x80000000 - 0xc0000000   (1024 MB)  
  71.     pkmap   : 0x7fe00000 - 0x80000000   (   2 MB)  
  72.     modules : 0x7f000000 - 0x7fe00000   (  14 MB)  
  73.       .init : 0x80008000 - 0x8003c000   ( 208 kB)  
  74.       .text : 0x8003c000 - 0x80a8f8f4   (10575 kB)  
  75.       .data : 0x80a90000 - 0x80af3e00   ( 400 kB)  
  76.        .bss : 0x80af3e24 - 0x80b41d4c   ( 312 kB)  
  77. SLUB: Genslabs=13, HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1  
  78. Preemptible hierarchical RCU implementation.  
  79. NR_IRQS:624  
  80. MXC GPIO hardware  
  81. sched_clock: 32 bits at 3000kHz, resolution 333ns, wraps every 1431655ms  
  82. arm_max_freq=1GHz  
  83. MXC_Early serial console at MMIO 0x2020000 (options '115200')  
  84. bootconsole [ttymxc0] enabled  
  85. Console: colour dummy device 80x30  
  86. Calibrating delay loop... 1581.05 BogoMIPS (lpj=7905280)  
  87. pid_max: default: 32768 minimum: 301  
  88. Mount-cache hash table entries: 512  
  89. CPU: Testing write buffer coherency: ok  
  90. hw perfevents: enabled with ARMv7 Cortex-A9 PMU driver, 7 counters available  
  91. CPU1: Booted secondary processor  
  92. CPU2: Booted secondary processor  
  93. CPU3: Booted secondary processor  
  94. Brought up 4 CPUs  
  95. SMP: Total of 4 processors activated (6324.22 BogoMIPS).  
  96. print_constraints: dummy:   
  97. NET: Registered protocol family 16  
  98. print_constraints: vddpu: 725 <--> 1300 mV at 700 mV fast normal   
  99. print_constraints: vddcore: 725 <--> 1300 mV at 1150 mV fast normal   
  100. print_constraints: vddsoc: 725 <--> 1300 mV at 1200 mV fast normal   
  101. print_constraints: vdd2p5: 2000 <--> 2775 mV at 2400 mV fast normal   

  102. 路过

    鸡蛋

    鲜花

    握手

    雷人

评论 (0 个评论)

facelist

您需要登录后才可以评论 登录 | 立即注册

关于我们  -  服务条款  -  使用指南  -  站点地图  -  友情链接  -  联系我们
电子工程网 © 版权所有   京ICP备16069177号 | 京公网安备11010502021702
返回顶部