mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-30 19:48:19 +00:00 
			
		
		
		
	Update kernel load address for FIT examples to avoid relocation:
- Kernel example uses Image.gz with U-Boot gzip decompression
  at final kernel location 0x0xC0008000.
- Copro example loads zImage at a correct location (0xC4000000),
  to avoid zImage relocation before decompression by kernel code.
An other solution to avoid zImage relocation is to align
the kernel load and entry address with the real location in FIT
(the relocation of zImage is skipped in U-Boot bootm command for
identical address) but it is less flexible because this offset
depends on FIT content:
For example:
## Loading kernel from FIT Image at c2000000 ...
   Using 'ev1' configuration
   Trying 'kernel' kernel subimage
     Description:  Linux kernel
     Created:      2020-10-22   9:08:32 UTC
     Type:         Kernel Image
     Compression:  uncompressed
     Data Start:   0xc20000cc
The kernel offset in FIT is 0xCC in FIT and zImage is decompressed at
0xC0008000 by kernel code:
kernel {
	description = "Linux kernel";
	data = /incbin/("zImage");
	type = "kernel";
	arch = "arm";
	os = "linux";
	compression = "none";
	load = <0xC20000cc>;
	entry = <0xC20000cc>;
	hash-1 {
		algo = "sha1";
	};
};
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@st.com>
		
	
			
		
			
				
	
	
		
			118 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| /*
 | |
|  * Compilation:
 | |
|  * mkimage -f fit_copro_kernel_dtb.its fit_copro_kernel_dtb.itb
 | |
|  *
 | |
|  * M4 firmware to load with remoteproc: rproc-m4-fw.elf
 | |
|  *
 | |
|  * Files in linux build dir:
 | |
|  * - arch/arm/boot/zImage
 | |
|  * - arch/arm/boot/dts/stm32mp157c-dk2.dtb
 | |
|  * - arch/arm/boot/dts/stm32mp157c-ev1.dtb
 | |
|  *
 | |
|  * load mmc 0:4 $kernel_addr_r fit_copro_kernel_dtb.itb
 | |
|  * bootm $kernel_addr_r
 | |
|  * bootm $kernel_addr_r#dk2
 | |
|  * bootm $kernel_addr_r#ev1
 | |
|  * bootm $kernel_addr_r#dk2-m4
 | |
|  * bootm $kernel_addr_r#ev1-m4
 | |
|  */
 | |
| 
 | |
| /dts-v1/;
 | |
| / {
 | |
| 	description = "U-Boot fitImage for stm32mp157";
 | |
| 	#address-cells = <1>;
 | |
| 
 | |
| 	images {
 | |
| 
 | |
| 		copro {
 | |
| 			description = "M4 copro";
 | |
| 			data = /incbin/("rproc-m4-fw.elf");
 | |
| 			type = "copro";
 | |
| 			arch = "arm";
 | |
| 			compression = "none";
 | |
| 			load = <0xC0800000>;
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		kernel {
 | |
| 			description = "Linux kernel";
 | |
| 			data = /incbin/("zImage");
 | |
| 			type = "kernel";
 | |
| 			arch = "arm";
 | |
| 			os = "linux";
 | |
| 			compression = "none";
 | |
| 			load = <0xC4000000>;
 | |
| 			entry = <0xC4000000>;
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		fdt-dk2 {
 | |
| 			description = "FDT dk2";
 | |
| 			data = /incbin/("stm32mp157c-dk2.dtb");
 | |
| 			type = "flat_dt";
 | |
| 			arch = "arm";
 | |
| 			compression = "none";
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		fdt-ev1 {
 | |
| 			description = "FDT ev1";
 | |
| 			data = /incbin/("stm32mp157c-ev1.dtb");
 | |
| 			type = "flat_dt";
 | |
| 			arch = "arm";
 | |
| 			compression = "none";
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	configurations {
 | |
| 		default = "dk2-m4";
 | |
| 
 | |
| 		dk2-m4 {
 | |
| 			description = "dk2-m4";
 | |
| 			loadables = "copro";
 | |
| 			kernel = "kernel";
 | |
| 			fdt = "fdt-dk2";
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		dk2 {
 | |
| 			description = "dk2";
 | |
| 			kernel = "kernel";
 | |
| 			fdt = "fdt-dk2";
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		ev1-m4 {
 | |
| 			description = "ev1-m4";
 | |
| 			loadables = "copro";
 | |
| 			kernel = "kernel";
 | |
| 			fdt = "fdt-ev1";
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		ev1 {
 | |
| 			description = "ev1";
 | |
| 			kernel = "kernel";
 | |
| 			fdt = "fdt-ev1";
 | |
| 			hash-1 {
 | |
| 				algo = "sha1";
 | |
| 			};
 | |
| 		};
 | |
| 	};
 | |
| };
 |