added cpu_get_physical_page_desc()
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2168 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
		
							parent
							
								
									d4afc623ae
								
							
						
					
					
						commit
						ba86345802
					
				
							
								
								
									
										11
									
								
								exec.c
								
								
								
								
							
							
						
						
									
										11
									
								
								exec.c
								
								
								
								
							| 
						 | 
				
			
			@ -1801,6 +1801,17 @@ void cpu_register_physical_memory(target_phys_addr_t start_addr,
 | 
			
		|||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* XXX: temporary until new memory mapping API */
 | 
			
		||||
uint32_t cpu_get_physical_page_desc(target_phys_addr_t addr)
 | 
			
		||||
{
 | 
			
		||||
    PhysPageDesc *p;
 | 
			
		||||
 | 
			
		||||
    p = phys_page_find(addr >> TARGET_PAGE_BITS);
 | 
			
		||||
    if (!p)
 | 
			
		||||
        return IO_MEM_UNASSIGNED;
 | 
			
		||||
    return p->phys_offset;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static uint32_t unassigned_mem_readb(void *opaque, target_phys_addr_t addr)
 | 
			
		||||
{
 | 
			
		||||
    return 0;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue