Change-Id: I7b7b75050e0139ea9a0a4f2ad3c0d69a482fb38b Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/30421 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			515 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			515 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # layout for firmware residing at top of 4GB address space
 | |
| # +-------------+ <-- 4GB - ROM_SIZE / start of flash
 | |
| # | unspecified |
 | |
| # +-------------+ <-- 4GB - BIOS_SIZE
 | |
| # | FMAP        |
 | |
| # +-------------+ <-- 4GB - BIOS_SIZE + FMAP_SIZE
 | |
| # | CBFS        |
 | |
| # +-------------+ <-- 4GB / end of flash
 | |
| 
 | |
| FLASH@##ROM_BASE## ##ROM_SIZE## {
 | |
| 	BIOS@##BIOS_BASE## ##BIOS_SIZE## {
 | |
| 		##CONSOLE_ENTRY##
 | |
| 		##MRC_CACHE_ENTRY##
 | |
| 		##SMMSTORE_ENTRY##
 | |
| 		FMAP@##FMAP_BASE## ##FMAP_SIZE##
 | |
| 		COREBOOT(CBFS)@##CBFS_BASE## ##CBFS_SIZE##
 | |
| 	}
 | |
| }
 |