mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	In int-ll64.h, we always use the following typedefs: typedef unsigned int u32; typedef unsigned long uintptr_t; typedef unsigned long long u64; This does not need to match to the compiler's <inttypes.h>. Do not include it. The use of PRI* makes the code super-ugly. You can simply use "l" for printing uintptr_t, "ll" for u64, and no modifier for u32. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  *  EFI application tables support
 | |
|  *
 | |
|  *  Copyright (c) 2016 Alexander Graf
 | |
|  */
 | |
| 
 | |
| #include <common.h>
 | |
| #include <efi_loader.h>
 | |
| #include <smbios.h>
 | |
| 
 | |
| static const efi_guid_t smbios_guid = SMBIOS_TABLE_GUID;
 | |
| 
 | |
| /*
 | |
|  * Install the SMBIOS table as a configuration table.
 | |
|  *
 | |
|  * @return	status code
 | |
|  */
 | |
| efi_status_t efi_smbios_register(void)
 | |
| {
 | |
| 	/* Map within the low 32 bits, to allow for 32bit SMBIOS tables */
 | |
| 	u64 dmi = U32_MAX;
 | |
| 	efi_status_t ret;
 | |
| 
 | |
| 	/* Reserve 4kiB page for SMBIOS */
 | |
| 	ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
 | |
| 				 EFI_RUNTIME_SERVICES_DATA, 1, &dmi);
 | |
| 
 | |
| 	if (ret != EFI_SUCCESS) {
 | |
| 		/* Could not find space in lowmem, use highmem instead */
 | |
| 		ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
 | |
| 					 EFI_RUNTIME_SERVICES_DATA, 1, &dmi);
 | |
| 
 | |
| 		if (ret != EFI_SUCCESS)
 | |
| 			return ret;
 | |
| 	}
 | |
| 
 | |
| 	/*
 | |
| 	 * Generate SMBIOS tables - we know that efi_allocate_pages() returns
 | |
| 	 * a 4k-aligned address, so it is safe to assume that
 | |
| 	 * write_smbios_table() will write the table at that address.
 | |
| 	 */
 | |
| 	assert(!(dmi & 0xf));
 | |
| 	write_smbios_table(dmi);
 | |
| 
 | |
| 	/* And expose them to our EFI payload */
 | |
| 	return efi_install_configuration_table(&smbios_guid,
 | |
| 					       (void *)(uintptr_t)dmi);
 | |
| }
 |