1 ---------------------------------------------
2 Imximage Boot Image generation using mkimage
3 ---------------------------------------------
5 This document describes how to set up a U-Boot image
6 that can be booted by Freescale MX25, MX35 and MX51
7 processors via internal boot mode.
9 These processors can boot directly from NAND, SPI flash and SD card flash
10 using its internal boot ROM support. They can boot from an internal
11 UART, if booting from device media fails.
12 Booting from NOR flash does not require to use this image type.
14 For more details refer Chapter 2 - System Boot and section 2.14
15 (flash header description) of the processor's manual.
17 This implementation does not use at the moment the secure boot feature
18 of the processor. The image is generated disabling all security fields.
22 ./tools/mkimage -l <mx u-boot_file>
23 to list the imx image file details
25 ./tools/mkimage -T imximage \
26 -n <board specific configuration file> \
27 -e <execution address> -d <u-boot binary> <output image file>
29 For example, for the mx51evk board:
30 ./tools/mkimage -n ./board/freescale/mx51evk/imximage.cfg \
31 -T imximage -e 0x97800000 \
32 -d u-boot.bin u-boot.imx
34 You can generate directly the image when you compile u-boot with:
38 The output image can be flashed on the board SPI flash or on a SD card.
39 In both cases, you have to copy the image at the offset required for the
40 chosen media devices (0x400 for both SPI flash or SD card).
42 Please check Freescale documentation for further details.
44 Board specific configuration file specifications:
45 -------------------------------------------------
46 1. This file must present in the $(BOARDDIR) and the name should be
47 imximage.cfg (since this is used in Makefile).
48 2. This file can have empty lines and lines starting with "#" as first
49 character to put comments.
50 3. This file can have configuration command lines as mentioned below,
51 any other information in this file is treated as invalid.
53 Configuration command line syntax:
54 ---------------------------------
55 1. Each command line is must have two strings, first one command or address
56 and second one data string
57 2. Following are the valid command strings and associated data strings:-
58 Command string data string
59 -------------- -----------
60 BOOT_FROM nand/spi/sd/onenand
63 DATA type address value
65 type: word=4, halfword=2, byte=1
66 address: physycal register address
67 value: value to be set in register
68 All values are in in hexadecimal.
69 Example (write to IOMUXC):
70 DATA 4 0x73FA88a0 0x200
72 The processor support up to 60 register programming commands. An error
73 is generated if more commands are found in the configuration file.
75 3. All commands are optional to program.
77 Setup a SD Card for booting
78 --------------------------------
80 The following example prepare a SD card with u-boot and a FAT partition
81 to be used to stored the kernel to be booted.
82 I will set the SD in the most compatible mode, setting it with
83 255 heads and 63 sectors, as suggested from several documentation and
84 howto on line (I took as reference the preparation of a SD Card for the
85 Beagleboard, running u-boot as bootloader).
87 You should start clearing the partitions table on the SD card. Because
88 the u-boot image must be stored at the offset 0x400, it must be assured
89 that there is no partition at that address. A new SD card is already
90 formatted with FAT filesystem and the partition starts from the first
91 cylinder, so we need to change it.
93 You can do all steps with fdisk. If the device for the SD card is
94 /dev/mmcblk0, the following commands make the job:
96 1. Start the fdisk utility (as superuser)
99 2. Clear the actual partition
101 Command (m for help): o
105 Command (m for help): p
106 Disk /dev/mmcblk0: 1981 MB, 1981284352 bytes
108 In my case, I have a 2 GB card. I need the size to set later the correct value
111 4. Go to expert mode:
113 Command (m for help): x
117 Expert command (m for help): h
118 Number of heads (1-256, default 4): 255
120 Expert command (m for help): s
121 Number of sectors (1-63, default 16): 63
122 Warning: setting sector offset for DOS compatiblity
124 We have set 255 heads, 63 sector. We have to set the cylinder.
125 The value to be set can be calculated with:
127 cilynder = <total size> / <heads> / <sectors> / <blocksize>
130 1981284352 / 255 / 63 / 512 = 239.x = 239
133 Expert command (m for help): c
134 Number of cylinders (1-1048576, default 60032): 239
136 6. Leave the expert mode
137 Expert command (m for help): r
139 7. Set up a partition
141 Now set a partition table to store the kernel or whatever you want. Of course,
142 you can set additional partitions to store rootfs, data, etc.
143 In my example I want to set a single partition. I must take care
144 to not overwrite the space where I will put u-boot.
146 Command (m for help): n
149 p primary partition (1-4)
151 Partition number (1-4): 1
152 First cylinder (1-239, default 1): 3
153 Last cylinder, +cylinders or +size{K,M,G} (3-239, default 239): +100M
155 Command (m for help): p
157 Disk /dev/mmcblk0: 1967 MB, 1967128576 bytes
158 255 heads, 63 sectors/track, 239 cylinders
159 Units = cylinders of 16065 * 512 = 8225280 bytes
160 Disk identifier: 0xb712a870
162 Device Boot Start End Blocks Id System
163 /dev/mmcblk0p1 3 16 112455 83 Linux
165 I have set 100MB, leaving the first 2 sectors free. I will copy u-boot
168 8. Write the partition table and exit.
170 Command (m for help): w
171 The partition table has been altered!
173 Calling ioctl() to re-read partition table.
175 9. Copy u-boot.imx on the SD card
179 dd if=u-boot.imx of=/dev/mmcblk0 bs=512 seek=2
181 This command copies the u-boot image at the address 0x400, as required
184 Now remove your card from the PC and go to the target. If evrything went right,
185 the u-boot prompt should come after power on.
187 ------------------------------------------------
188 Author: Stefano babic <sbabic@denx.de>