mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	 c6c7cfb01a
			
		
	
	
		c6c7cfb01a
		
	
	
	
	
		
			
			Configure the size of the RAM of the SOC using a property to propagate the value down to the memory controller from the board level. Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Andrew Jeffery <andrew@aj.id.au> Message-id: 1473438177-26079-14-git-send-email-clg@kaod.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
		
			
				
	
	
		
			34 lines
		
	
	
		
			706 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			706 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * ASPEED SDRAM Memory Controller
 | |
|  *
 | |
|  * Copyright (C) 2016 IBM Corp.
 | |
|  *
 | |
|  * This code is licensed under the GPL version 2 or later. See the
 | |
|  * COPYING file in the top-level directory.
 | |
|  */
 | |
| #ifndef ASPEED_SDMC_H
 | |
| #define ASPEED_SDMC_H
 | |
| 
 | |
| #include "hw/sysbus.h"
 | |
| 
 | |
| #define TYPE_ASPEED_SDMC "aspeed.sdmc"
 | |
| #define ASPEED_SDMC(obj) OBJECT_CHECK(AspeedSDMCState, (obj), TYPE_ASPEED_SDMC)
 | |
| 
 | |
| #define ASPEED_SDMC_NR_REGS (0x8 >> 2)
 | |
| 
 | |
| typedef struct AspeedSDMCState {
 | |
|     /*< private >*/
 | |
|     SysBusDevice parent_obj;
 | |
| 
 | |
|     /*< public >*/
 | |
|     MemoryRegion iomem;
 | |
| 
 | |
|     uint32_t regs[ASPEED_SDMC_NR_REGS];
 | |
|     uint32_t silicon_rev;
 | |
|     uint32_t ram_bits;
 | |
|     uint64_t ram_size;
 | |
| 
 | |
| } AspeedSDMCState;
 | |
| 
 | |
| #endif /* ASPEED_SDMC_H */
 |