Lines Matching refs:physical
362 static int no_mmu_map_address(CPUMIPSState *env, hwaddr *physical, int *prot, in no_mmu_map_address() argument
365 *physical = address; in no_mmu_map_address()
371 static int fixed_mmu_map_address(CPUMIPSState *env, hwaddr *physical, in fixed_mmu_map_address() argument
377 *physical = address + 0x40000000UL; in fixed_mmu_map_address()
379 *physical = address; in fixed_mmu_map_address()
382 *physical = address & 0x1FFFFFFF; in fixed_mmu_map_address()
384 *physical = address; in fixed_mmu_map_address()
392 static int r4k_map_address(CPUMIPSState *env, hwaddr *physical, int *prot, in r4k_map_address() argument
429 *physical = tlb->PFN[n] | (address & (mask >> 1)); in r4k_map_address()
913 hwaddr physical; in mips_cpu_tlb_fill() local
919 ret = get_physical_address(env, &physical, &prot, address, in mips_cpu_tlb_fill()
925 " prot %d\n", __func__, address, physical, prot); in mips_cpu_tlb_fill()
935 physical & TARGET_PAGE_MASK, prot, in mips_cpu_tlb_fill()
949 ret = get_physical_address(env, &physical, &prot, address, in mips_cpu_tlb_fill()
953 physical & TARGET_PAGE_MASK, prot, in mips_cpu_tlb_fill()
971 hwaddr physical; in cpu_mips_translate_address() local
977 ret = get_physical_address(env, &physical, &prot, address, access_type, in cpu_mips_translate_address()
980 return physical; in cpu_mips_translate_address()