mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	- Re-use i.MX 93 Makefile target as similar boot process - Create imx8ulp-u-boot.dtsi for binman image architecture - Create both SPL and U-Boot containers configuration Key differences between the 93 and 8ULP SPL container are: - No LPDDR training library needed for 8ULP - 8ULP requires a uPower binary (RISC-V core) for power management - 8ULP also requires a M33 binary to work properly Signed-off-by: Gary Bisson <bisson.gary@gmail.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
		
			
				
	
	
		
			64 lines
		
	
	
		
			918 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			918 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| 
 | |
| #ifdef CONFIG_BINMAN
 | |
| / {
 | |
| 	binman: binman {
 | |
| 		multiple-images;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &binman {
 | |
| 	u-boot-spl-ddr {
 | |
| 		align = <4>;
 | |
| 		align-size = <4>;
 | |
| 		filename = "u-boot-spl-ddr.bin";
 | |
| 		pad-byte = <0xff>;
 | |
| 
 | |
| 		u-boot-spl {
 | |
| 			align-end = <4>;
 | |
| 			filename = "u-boot-spl.bin";
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	spl {
 | |
| 		filename = "spl.bin";
 | |
| 
 | |
| 		mkimage {
 | |
| 			args = "-n spl/u-boot-spl.cfgout -T imx8image -e 0x22020000";
 | |
| 
 | |
| 			blob {
 | |
| 				filename = "u-boot-spl-ddr.bin";
 | |
| 			};
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	u-boot-container {
 | |
| 		filename = "u-boot-container.bin";
 | |
| 
 | |
| 		mkimage {
 | |
| 			args = "-n u-boot-container.cfgout -T imx8image -e 0x0";
 | |
| 
 | |
| 			blob {
 | |
| 				filename = "u-boot.bin";
 | |
| 			};
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	imx-boot {
 | |
| 		filename = "flash.bin";
 | |
| 		pad-byte = <0x00>;
 | |
| 
 | |
| 		spl: blob-ext@1 {
 | |
| 			filename = "spl.bin";
 | |
| 			offset = <0x0>;
 | |
| 			align-size = <0x400>;
 | |
| 			align = <0x400>;
 | |
| 		};
 | |
| 
 | |
| 		uboot: blob-ext@2 {
 | |
| 			filename = "u-boot-container.bin";
 | |
| 		};
 | |
| 	};
 | |
| };
 | |
| #endif
 |