8)实现u-boot引导Linux内核启动。
在前面几节中,我们讲了u-boot对Nor Flash和Nand Flash的启动支持,那现在我们就再来探讨一下u-boot怎样来引导Linux内核的启动。
①、机器码的确定
通常,在u-boot和kernel中都会有一个机器码(即:MACH_TYPE),只有这两个机器码一致时才能引导内核,否则就会出现如下mach的错误信息:(如果没有错误信息则不需要一下修改,我的就没有,这些错误是摘录的)
首先,确定u-boot中的MACH_TYPE。在u-boot的include/asm-arm/mach-types.h文件中针对不同的CPU定义了非常多的MACH_TYPE,可以找到下面这个定义:
- #define MACH_TYPE_SMDK2440 1008
那么我们就修改u-boot的MACH_TYPE代码引用部分,确定u-boot的MACH_TYPE。如下:
- #vim board/samsung/yyq2440/yyq2440.c //修改board_init函数
- /* arch number of SMDK2410-Board */
- //gd->bd->bi_arch_number = MACH_TYPE_SMDK2410;
- 改为:
- gd->bd->bi_arch_number = MACH_TYPE_SMDK2440;
其次,确定kernel中的MACH_TYPE。在kernel的arch/arm/tools/mach-types文件中也针对不同的CPU定义了非常多的MACH_TYPE,也可以找到下面这个定义:
- smdk2440 MACH_SMDK2440 SMDK2440 1008
那么我们就修改kernel的MACH_TYPE代码引用部分,确定kernel的MACH_TYPE。如下:
- #vim arch/arm/mach-s3c2440/mach-smdk2440.c //修改文件最后面
- //MACHINE_START(S3C2440, "SMDK2440")
- 改为:
- MACHINE_START(SMDK2440, "SMDK2440")
- #gedit arch/arm/kernel/head.S //在ENTRY(stext)下添加如下代码(红色部分)
- ENTRY(stext)
- mov r0, #0
- mov r1, #0x3f0 //上面的MACH_TYPE值1008换成十六进制就是0x3f0
- ldr r2, =0x30000100
- msr cpsr_c, #PSR_F_BIT | PSR_I_BIT | SVC_MODE
- .......
分别重新编译u-boot和kernel。u-boot下载后,记得要saveenv;kernel用tftp下载到内存后使用go命令来测试引导内核,结果可以引导了。如下。

②、准备能被u-boot直接引导的内核uImage
通常,kernel的启动需要u-boot提供一些参数信息,比如ramdisk在RAM中的地址。经过编译后的u-boot在根目录下的tools目录中,会有个叫做mkimage的工具,他可以给zImage添加一个header,也就是说使得通常我们编译的内核zImage添加一个数据头信息部分,我们把添加头后的image通常叫uImage,uImage是可以被u-boot直接引导的内核镜像。
mkimage工具的使用介绍如下:
- 使用: 中括号括起来的是可选的
- mkimage [-x] -A arch -O os -T type -C comp -a addr -e ep -n name -d data_file[:data_file...] image
- 选项:
- -A:set architecture to 'arch' //用于指定CPU类型,比如ARM
- -O:set operating system to 'os' //用于指定操作系统,比如Linux
- -T:set image type to 'type' //用于指定image类型,比如Kernel
- -C:set compression type 'comp' //指定压缩类型
- -a:set load address to 'addr' (hex) //指定image的载入地址
- -e:set entry point to 'ep' (hex) //内核的入口地址,一般为image的载入地址+0x40(信息头的大小)
- -n:set image name to 'name' //image在头结构中的命名
- -d:use image data from 'datafile' //无头信息的image文件名
- -x:set XIP (execute in place)
先将u-boot下的tools中的mkimage复制到主机的/usr/local/bin目录下,这样就可以在主机的任何目录下使用该工具了。现在我们进入kernel生成目录(一般是arch/arm/boot目录),然后执行如下命令,就会在该目录下生成一个uImage.img的镜像文件,把他复制到tftp目录下,这就是我们所说的uImage。
- [skywalker@bogon tools]$ sudo cp mkimage /usr/local/bin/
- [skywalker@bogon tools]$ cd ..
- [skywalker@bogon u-boot-2009.08]$ mkimage -n 'linux-2.6.33.7' -A arm -O linux -T kernel -C none -a 0x30008000 -e 0x30008000 -d zImage uImage.img
- Image Name: linux-2.6.33.7
- Created: Fri Mar 4 20:35:51 2011
- Image Type: ARM Linux Kernel Image (uncompressed)
- Data Size: 2026844 Bytes = 1979.34 kB = 1.93 MB
- Load Address: 30008000
- Entry Point: 30008000
- [skywalker@bogon u-boot-2009.08]$
③、Nand Flash的分区。我们查看内核在arch/arm/plat-s3c24xx/common-smdk.c中的分区情况如下:
- [0] = {
- .name = "boot",
- .size = 0x00020000,
- .offset = 0
- },
- [1] = {
- .name = "bootParam",
- .size = 0x00060000,
- .offset = 0x00020000,
- },
- [2] = {
- .name = "Kernel",
- .size = 0x00300000,
- .offset = 0x00500000,
- },
- [3] = {
- .name = "fs_yaffs",
- .size = 0x03c00000,
- .offset = 0x00800000,
- },
- [4] = {
- .name = "eboot",
- .size = 0x00080000,
- .offset = 0x04400000,
- },
- [5] = {
- .name = "WINCE",
- .size = 0x03b80000,
- .offset = 0x04480000,
- }
④、设置修改u-boot的启动参数,在u-boot命令行下输入。设置启动参数,意思是将nand中0x500000(offset)-0x00800000(offset+size)(和kernel分区一致)的内容读到内存0x31000000中,然后用bootm命令来执行
- U-Boot 2009.08 ( 3.. 03 2011 - 20:48:30)
- DRAM: 64 MB
- Flash: 512 kB
- NAND: NAND_ECC_NONE selected by board driver. This is not recommended !!
- 128 MiB
- In: serial
- Out: serial
- Err: serial
- Net: dm9000 ' - try 'help'
- [yyq2440] # set bootcmd 'nand read 0x31000000 0x500000 0x800000;bootm 0x3100000
- [yyq2440] # saveenv
Saving Environment to NAND... Erasing Nand... Erasing at 0x2 -- 262144% complete. Writing to Nand... done [yyq2440] #
⑤、把uImage.img用tftp下载到内存中,然后再固化到Nand Flash中,操作和执行图如下:
- [yyq2440] # tftp 0x30000000 uImage.img
- dm9000 i/o: 0x20000000, id: 0x90000a46
- DM9000: running in 16 bit mode
- MAC: 08:00:3e:26:0a:5b
- operating at 100M full duplex mode
- Using dm9000 device
- TFTP from server 192.168.7.11; our IP address is 192.168.7.1
- Filename 'uImage.img'.
- Load address: 0x30000000
- Loading: T T T T T T T #################################T######################
- ##T T ###############################################################
- ##T T #########
- done
- Bytes transferred = 2026908 (1eed9c hex)
- [yyq2440] #
在执行擦除和烧写的时候,却出现了坏块的提示,并失败。
- [yyq2440] # nand erase 0x500000 0x800000
-
- NAND erase: device 0 offset 0x500000, size 0x800000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Skipping bad block at 0x00000000
- Erasing at 0x8 -- 13500416% complete.
- OK
- [yyq2440] # nand write 0x30000000 0x500000 0x800000
- NAND write: device 0 offset 0x500000, size 0x800000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- Skip bad block 0x00000000
- NAND write to offset ffffffff failed 13631488
- 6422528 bytes written: ERROR
- [yyq2440] #
这个时候我擦除了整块的nandflash就好了。
- [yyq2440] # nand scrub
-
- NAND scrub: device 0 whole chip
- Warning: scrub option will erase all factory set bad
- There is no reliable way to recover them.
- Use this command only for testing purposes if you
- are sure of what you are
-
- Really scrub this NAND flash? <y/N>
- Erasing at 0x8 -- 24117248% complete..
- NAND 128MiB 3,3V 8-bit: MTD Erase failure: -5
- Erasing at 0x8000000 -- 52297728% complete.
- NAND 128MiB 3,3V 8-bit: MTD Erase failure: -5
- Erasing at 0x8000000 -- 134086656% complete.
- OK
- [yyq2440] # tftp 0x30000000 uImage.img
- dm9000 i/o: 0x20000000, id: 0x90000a46
- DM9000: running in 16 bit mode
- MAC: 08:00:3e:26:0a:5b
- operating at 100M full duplex mode
- Using dm9000 device
- TFTP from server 192.168.7.11; our IP address is 192.168.7.1
- Filename 'uImage.img'.
- Load address: 0x30000000
- Loading: #T T T T T ###################################T #######################
- ###T T ####T ###########################################T #############
- ##T T #######
- done
- Bytes transferred = 2026908 (1eed9c hex)
- [yyq2440] # nand erase 0x500000 0x800000
-
- NAND erase: device 0 offset 0x500000, size 0x800000
- Erasing at 0x8 -- 13500416% complete.
- OK
- [yyq2440] # nand write 0x30000000 0x500000 0x800000
-
- NAND write: device 0 offset 0x500000, size 0x800000
- 8388608 bytes written: OK
- [yyq2440] #
最后,我们重新启动开发板,可以看到,内核被u-boot成功引导起来了,如图:
- U-Boot 2009.08 ( 3.. 03 2011 - 20:48:30)
-
- DRAM: 64 MB
- Flash: 512 kB
- NAND: NAND_ECC_NONE selected by board driver. This is not recommended !!
- 128 MiB
- In: serial
- Out: serial
- Err: serial
- Net: dm9000
- Hit any key to stop autoboot: 0
-
- NAND read: device 0 offset 0x500000, size 0x800000
- 8388608 bytes read: OK
- ## Booting kernel from Legacy Image at 31000000 ...
- Image Name: linux-2.6.33.7
- Created: 2011-03-04 12:35:51 UTC
- Image Type: ARM Linux Kernel Image (uncompressed)
- Data Size: 2026844 Bytes = 1.9 MB
- Load Address: 30008000
- Entry Point: 30008000
- Verifying Checksum ... OK
- Loading Kernel Image ... OK
- OK
-
- Starting kernel ...
-
- Uncompressing Linux... done, booting the kernel.
- Linux version 2.6.33.7 (skywalker@localhost.localdomain) (gcc version 4.3.2 (So1
- CPU: ARM920T [41129200] revision 0 (ARMv4T), cr=00007177
- CPU: VIVT data cache, VIVT instruction cache
- Machine: SMDK2410
- Warning: bad configuration page, trying to continue
- Memory policy: ECC disabled, Data cache writeback
- CPU S3C2440A (id 0x32440001)
2011-03-04 |