mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	Commit 37dc958947ed ("global_data.h: Change ram_top type to phys_addr_t")
changed type of ram_top member from ulong to phys_addr_t but did not
changed types in board_get_usable_ram_top() function which returns value
for ram_top.
So change ulong to phys_addr_t type also in board_get_usable_ram_top()
signature and implementations.
Fixes: 37dc958947ed ("global_data.h: Change ram_top type to phys_addr_t")
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
		
	
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			559 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			559 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright (c) 2015 Google, Inc
 | |
|  */
 | |
| 
 | |
| #include <common.h>
 | |
| #include <efi.h>
 | |
| #include <init.h>
 | |
| #include <asm/global_data.h>
 | |
| #include <asm/u-boot-x86.h>
 | |
| 
 | |
| DECLARE_GLOBAL_DATA_PTR;
 | |
| 
 | |
| phys_size_t board_get_usable_ram_top(phys_size_t total_size)
 | |
| {
 | |
| 	return (ulong)efi_get_ram_base() + gd->ram_size;
 | |
| }
 | |
| 
 | |
| int dram_init(void)
 | |
| {
 | |
| 	/* gd->ram_size is set as part of EFI init */
 | |
| 
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| int dram_init_banksize(void)
 | |
| {
 | |
| 	gd->bd->bi_dram[0].start = efi_get_ram_base();
 | |
| 	gd->bd->bi_dram[0].size = CONFIG_EFI_RAM_SIZE;
 | |
| 
 | |
| 	return 0;
 | |
| }
 |