]>
Commit | Line | Data |
---|---|---|
3aa29de0 YZ |
1 | Generic TPL framework |
2 | ===================== | |
3 | ||
4 | Overview | |
5 | -------- | |
6 | ||
7 | TPL---Third Program Loader. | |
8 | ||
9 | Due to the SPL on some boards(powerpc mpc85xx) has a size limit and cannot | |
10 | be compatible with all the external device(e.g. DDR). So add a tertiary | |
11 | program loader (TPL) to enable a loader stub loaded by the code from the | |
12 | SPL. It loads the final uboot image into DDR, then jump to it to begin | |
13 | execution. Now, only the powerpc mpc85xx has this requirement and will | |
14 | implemente it. | |
15 | ||
16 | Keep consistent with SPL, with this framework almost all source files for a | |
17 | board can be reused. No code duplication or symlinking is necessary anymore. | |
18 | ||
19 | How it works | |
20 | ------------ | |
21 | ||
4379ac61 | 22 | There has been a directory $(srctree)/spl which contains only a Makefile. The |
3aa29de0 YZ |
23 | Makefile is shared by SPL and TPL. |
24 | ||
25 | The object files are built separately for SPL/TPL and placed in the | |
26 | directory spl/tpl. The final binaries which are generated are | |
27 | u-boot-{spl|tpl}, u-boot-{spl|tpl}.bin and u-boot-{spl|tpl}.map. | |
28 | ||
29 | During the TPL build a variable named CONFIG_TPL_BUILD is exported in the | |
30 | make environment and also appended to CPPFLAGS with -DCONFIG_TPL_BUILD. | |
31 | ||
32 | The SPL options are shared by SPL and TPL, the board config file should | |
33 | determine which SPL options to choose based on whether CONFIG_TPL_BUILD | |
32f2ca2a | 34 | is set. Source files can be compiled for TPL with options chosen in the |
3aa29de0 YZ |
35 | board config file. |
36 | ||
54e1223a PD |
37 | TPL use a small device tree (u-boot-tpl.dtb), containing only the nodes with |
38 | the pre-relocation properties: 'u-boot,dm-pre-reloc' and 'u-boot,dm-tpl' | |
39 | (see README.SPL for details). | |
40 | ||
3aa29de0 YZ |
41 | For example: |
42 | ||
43 | spl/Makefile: | |
44 | LIBS-$(CONFIG_SPL_LIBCOMMON_SUPPORT) += common/libcommon.o | |
45 | ||
46 | CONFIG_SPL_LIBCOMMON_SUPPORT is defined in board config file: | |
47 | #ifdef CONFIG_TPL_BUILD | |
48 | #define CONFIG_SPL_LIBCOMMON_SUPPORT | |
49 | #endif |