| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  MIPS emulation helpers for qemu. | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |  *  Copyright (c) 2004-2005 Jocelyn Mayer | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2009-07-16 20:47:01 +00:00
										 |  |  |  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-07-04 22:17:33 +00:00
										 |  |  | #include <stdarg.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include <inttypes.h>
 | 
					
						
							|  |  |  | #include <signal.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "cpu.h"
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  | enum { | 
					
						
							|  |  |  |     TLBRET_DIRTY = -4, | 
					
						
							|  |  |  |     TLBRET_INVALID = -3, | 
					
						
							|  |  |  |     TLBRET_NOMATCH = -2, | 
					
						
							|  |  |  |     TLBRET_BADADDR = -1, | 
					
						
							|  |  |  |     TLBRET_MATCH = 0 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-01 04:11:28 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-13 13:49:44 +00:00
										 |  |  | /* no MMU emulation */ | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | int no_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |                         target_ulong address, int rw, int access_type) | 
					
						
							| 
									
										
										
										
											2007-05-13 13:49:44 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     *physical = address; | 
					
						
							|  |  |  |     *prot = PAGE_READ | PAGE_WRITE; | 
					
						
							|  |  |  |     return TLBRET_MATCH; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* fixed mapping MMU emulation */ | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | int fixed_mmu_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, | 
					
						
							| 
									
										
										
										
											2007-05-13 13:49:44 +00:00
										 |  |  |                            target_ulong address, int rw, int access_type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (address <= (int32_t)0x7FFFFFFFUL) { | 
					
						
							|  |  |  |         if (!(env->CP0_Status & (1 << CP0St_ERL))) | 
					
						
							|  |  |  |             *physical = address + 0x40000000UL; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             *physical = address; | 
					
						
							|  |  |  |     } else if (address <= (int32_t)0xBFFFFFFFUL) | 
					
						
							|  |  |  |         *physical = address & 0x1FFFFFFF; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         *physical = address; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *prot = PAGE_READ | PAGE_WRITE; | 
					
						
							|  |  |  |     return TLBRET_MATCH; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* MIPS32/MIPS64 R4000-style MMU emulation */ | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | int r4k_map_address (CPUMIPSState *env, hwaddr *physical, int *prot, | 
					
						
							| 
									
										
										
										
											2007-05-13 13:49:44 +00:00
										 |  |  |                      target_ulong address, int rw, int access_type) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-02-18 00:19:08 +00:00
										 |  |  |     uint8_t ASID = env->CP0_EntryHi & 0xFF; | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |     for (i = 0; i < env->tlb->tlb_in_use; i++) { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |         r4k_tlb_t *tlb = &env->tlb->mmu.r4k.tlb[i]; | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |         /* 1k pages are not supported. */ | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |         target_ulong mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1); | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |         target_ulong tag = address & ~mask; | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |         target_ulong VPN = tlb->VPN & ~mask; | 
					
						
							| 
									
										
										
										
											2007-11-08 18:05:37 +00:00
										 |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							| 
									
										
										
										
											2007-06-23 18:04:12 +00:00
										 |  |  |         tag &= env->SEGMask; | 
					
						
							| 
									
										
										
										
											2007-05-13 19:22:13 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         /* Check ASID, virtual page number & size */ | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |         if ((tlb->G == 1 || tlb->ASID == ASID) && VPN == tag) { | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |             /* TLB match */ | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |             int n = !!(address & mask & ~(mask >> 1)); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |             /* Check access rights */ | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |             if (!(n ? tlb->V1 : tlb->V0)) | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |                 return TLBRET_INVALID; | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |             if (rw == 0 || (n ? tlb->D1 : tlb->D0)) { | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |                 *physical = tlb->PFN[n] | (address & (mask >> 1)); | 
					
						
							| 
									
										
										
										
											2005-07-02 15:07:44 +00:00
										 |  |  |                 *prot = PAGE_READ; | 
					
						
							| 
									
										
										
										
											2006-03-11 16:20:36 +00:00
										 |  |  |                 if (n ? tlb->D1 : tlb->D0) | 
					
						
							| 
									
										
										
										
											2005-07-02 15:07:44 +00:00
										 |  |  |                     *prot |= PAGE_WRITE; | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |                 return TLBRET_MATCH; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |             return TLBRET_DIRTY; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |     return TLBRET_NOMATCH; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | static int get_physical_address (CPUMIPSState *env, hwaddr *physical, | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |                                 int *prot, target_ulong address, | 
					
						
							|  |  |  |                                 int rw, int access_type) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |     /* User mode can only access useg/xuseg */ | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |     int user_mode = (env->hflags & MIPS_HFLAG_MODE) == MIPS_HFLAG_UM; | 
					
						
							| 
									
										
										
										
											2007-09-29 19:21:36 +00:00
										 |  |  |     int supervisor_mode = (env->hflags & MIPS_HFLAG_MODE) == MIPS_HFLAG_SM; | 
					
						
							|  |  |  |     int kernel_mode = !user_mode && !supervisor_mode; | 
					
						
							| 
									
										
										
										
											2007-11-08 18:05:37 +00:00
										 |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |     int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0; | 
					
						
							|  |  |  |     int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0; | 
					
						
							|  |  |  |     int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |     int ret = TLBRET_MATCH; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |     qemu_log("user mode %d h %08x\n", user_mode, env->hflags); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (address <= (int32_t)0x7FFFFFFFUL) { | 
					
						
							|  |  |  |         /* useg */ | 
					
						
							| 
									
										
										
										
											2007-06-25 17:34:33 +00:00
										 |  |  |         if (env->CP0_Status & (1 << CP0St_ERL)) { | 
					
						
							| 
									
										
										
										
											2007-05-13 13:49:44 +00:00
										 |  |  |             *physical = address & 0xFFFFFFFF; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |             *prot = PAGE_READ | PAGE_WRITE; | 
					
						
							| 
									
										
										
										
											2007-06-25 17:34:33 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |             ret = env->tlb->map_address(env, physical, prot, address, rw, access_type); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-11-08 18:05:37 +00:00
										 |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							| 
									
										
										
										
											2007-10-13 17:29:09 +00:00
										 |  |  |     } else if (address < 0x4000000000000000ULL) { | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |         /* xuseg */ | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |         if (UX && address <= (0x3FFFFFFFFFFFFFFFULL & env->SEGMask)) { | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |             ret = env->tlb->map_address(env, physical, prot, address, rw, access_type); | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-10-13 17:29:09 +00:00
										 |  |  |     } else if (address < 0x8000000000000000ULL) { | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |         /* xsseg */ | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |         if ((supervisor_mode || kernel_mode) && | 
					
						
							|  |  |  |             SX && address <= (0x7FFFFFFFFFFFFFFFULL & env->SEGMask)) { | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |             ret = env->tlb->map_address(env, physical, prot, address, rw, access_type); | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-10-13 17:29:09 +00:00
										 |  |  |     } else if (address < 0xC000000000000000ULL) { | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |         /* xkphys */ | 
					
						
							| 
									
										
										
										
											2007-09-29 19:21:36 +00:00
										 |  |  |         if (kernel_mode && KX && | 
					
						
							| 
									
										
										
										
											2007-12-25 03:13:56 +00:00
										 |  |  |             (address & 0x07FFFFFFFFFFFFFFULL) <= env->PAMask) { | 
					
						
							|  |  |  |             *physical = address & env->PAMask; | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |             *prot = PAGE_READ | PAGE_WRITE; | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-10-13 17:29:09 +00:00
										 |  |  |     } else if (address < 0xFFFFFFFF80000000ULL) { | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  |         /* xkseg */ | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |         if (kernel_mode && KX && | 
					
						
							|  |  |  |             address <= (0xFFFFFFFF7FFFFFFFULL & env->SEGMask)) { | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |             ret = env->tlb->map_address(env, physical, prot, address, rw, access_type); | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2007-05-09 09:34:30 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2006-12-21 13:48:28 +00:00
										 |  |  |     } else if (address < (int32_t)0xA0000000UL) { | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         /* kseg0 */ | 
					
						
							| 
									
										
										
										
											2007-09-29 19:21:36 +00:00
										 |  |  |         if (kernel_mode) { | 
					
						
							|  |  |  |             *physical = address - (int32_t)0x80000000UL; | 
					
						
							|  |  |  |             *prot = PAGE_READ | PAGE_WRITE; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-12-21 13:48:28 +00:00
										 |  |  |     } else if (address < (int32_t)0xC0000000UL) { | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         /* kseg1 */ | 
					
						
							| 
									
										
										
										
											2007-09-29 19:21:36 +00:00
										 |  |  |         if (kernel_mode) { | 
					
						
							|  |  |  |             *physical = address - (int32_t)0xA0000000UL; | 
					
						
							|  |  |  |             *prot = PAGE_READ | PAGE_WRITE; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-12-21 13:48:28 +00:00
										 |  |  |     } else if (address < (int32_t)0xE0000000UL) { | 
					
						
							| 
									
										
										
										
											2007-10-13 17:29:09 +00:00
										 |  |  |         /* sseg (kseg2) */ | 
					
						
							| 
									
										
										
										
											2007-09-29 19:21:36 +00:00
										 |  |  |         if (supervisor_mode || kernel_mode) { | 
					
						
							|  |  |  |             ret = env->tlb->map_address(env, physical, prot, address, rw, access_type); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     } else { | 
					
						
							|  |  |  |         /* kseg3 */ | 
					
						
							|  |  |  |         /* XXX: debug segment is not emulated */ | 
					
						
							| 
									
										
										
										
											2007-09-29 19:21:36 +00:00
										 |  |  |         if (kernel_mode) { | 
					
						
							|  |  |  |             ret = env->tlb->map_address(env, physical, prot, address, rw, access_type); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ret = TLBRET_BADADDR; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2013-08-27 17:48:36 +01:00
										 |  |  |     qemu_log(TARGET_FMT_lx " %d %d => %" HWADDR_PRIx " %d (%d)\n", | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |             address, rw, access_type, *physical, *prot, ret); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:22 +01:00
										 |  |  | static void raise_mmu_exception(CPUMIPSState *env, target_ulong address, | 
					
						
							| 
									
										
										
										
											2009-11-22 13:41:18 +01:00
										 |  |  |                                 int rw, int tlb_error) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int exception = 0, error_code = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (tlb_error) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case TLBRET_BADADDR: | 
					
						
							|  |  |  |         /* Reference to kernel address from user mode or supervisor mode */ | 
					
						
							|  |  |  |         /* Reference to supervisor address from user mode */ | 
					
						
							|  |  |  |         if (rw) | 
					
						
							|  |  |  |             exception = EXCP_AdES; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             exception = EXCP_AdEL; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case TLBRET_NOMATCH: | 
					
						
							|  |  |  |         /* No TLB match for a mapped address */ | 
					
						
							|  |  |  |         if (rw) | 
					
						
							|  |  |  |             exception = EXCP_TLBS; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             exception = EXCP_TLBL; | 
					
						
							|  |  |  |         error_code = 1; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case TLBRET_INVALID: | 
					
						
							|  |  |  |         /* TLB match with no valid bit */ | 
					
						
							|  |  |  |         if (rw) | 
					
						
							|  |  |  |             exception = EXCP_TLBS; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             exception = EXCP_TLBL; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case TLBRET_DIRTY: | 
					
						
							|  |  |  |         /* TLB match but 'D' bit is cleared */ | 
					
						
							|  |  |  |         exception = EXCP_LTLBL; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Raise exception */ | 
					
						
							|  |  |  |     env->CP0_BadVAddr = address; | 
					
						
							|  |  |  |     env->CP0_Context = (env->CP0_Context & ~0x007fffff) | | 
					
						
							|  |  |  |                        ((address >> 9) & 0x007ffff0); | 
					
						
							|  |  |  |     env->CP0_EntryHi = | 
					
						
							|  |  |  |         (env->CP0_EntryHi & 0xFF) | (address & (TARGET_PAGE_MASK << 1)); | 
					
						
							|  |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							|  |  |  |     env->CP0_EntryHi &= env->SEGMask; | 
					
						
							|  |  |  |     env->CP0_XContext = (env->CP0_XContext & ((~0ULL) << (env->SEGBITS - 7))) | | 
					
						
							|  |  |  |                         ((address & 0xC00000000000ULL) >> (55 - env->SEGBITS)) | | 
					
						
							|  |  |  |                         ((address & ((1ULL << env->SEGBITS) - 1) & 0xFFFFFFFFFFFFE000ULL) >> 9); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     env->exception_index = exception; | 
					
						
							|  |  |  |     env->error_code = error_code; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-01 03:46:18 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2013-06-29 18:55:54 +02:00
										 |  |  | hwaddr mips_cpu_get_phys_page_debug(CPUState *cs, vaddr addr) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-06-29 18:55:54 +02:00
										 |  |  |     MIPSCPU *cpu = MIPS_CPU(cs); | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |     hwaddr phys_addr; | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |     int prot; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-29 18:55:54 +02:00
										 |  |  |     if (get_physical_address(&cpu->env, &phys_addr, &prot, addr, 0, | 
					
						
							|  |  |  |                              ACCESS_INT) != 0) { | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2013-06-29 18:55:54 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |     return phys_addr; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-03-01 03:46:18 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:22 +01:00
										 |  |  | int cpu_mips_handle_mmu_fault (CPUMIPSState *env, target_ulong address, int rw, | 
					
						
							| 
									
										
										
										
											2011-08-01 16:12:17 +00:00
										 |  |  |                                int mmu_idx) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |     hwaddr physical; | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     int prot; | 
					
						
							|  |  |  |     int access_type; | 
					
						
							| 
									
										
										
										
											2011-05-15 01:00:20 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-05 19:59:36 +00:00
										 |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2013-06-16 07:28:50 +02:00
										 |  |  |     log_cpu_state(CPU(mips_env_get_cpu(env)), 0); | 
					
						
							| 
									
										
										
										
											2005-12-05 19:59:36 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-08-01 16:12:17 +00:00
										 |  |  |     qemu_log("%s pc " TARGET_FMT_lx " ad " TARGET_FMT_lx " rw %d mmu_idx %d\n", | 
					
						
							|  |  |  |               __func__, env->active_tc.PC, address, rw, mmu_idx); | 
					
						
							| 
									
										
										
										
											2005-12-05 19:59:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rw &= 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     /* data access */ | 
					
						
							| 
									
										
										
										
											2011-05-15 01:00:20 +02:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     /* XXX: put correct access by using cpu_restore_state()
 | 
					
						
							|  |  |  |        correctly */ | 
					
						
							|  |  |  |     access_type = ACCESS_INT; | 
					
						
							|  |  |  |     ret = get_physical_address(env, &physical, &prot, | 
					
						
							|  |  |  |                                address, rw, access_type); | 
					
						
							| 
									
										
										
										
											2009-11-22 14:37:04 +01:00
										 |  |  |     qemu_log("%s address=" TARGET_FMT_lx " ret %d physical " TARGET_FMT_plx " prot %d\n", | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |               __func__, address, ret, physical, prot); | 
					
						
							| 
									
										
										
										
											2006-06-14 17:15:19 +00:00
										 |  |  |     if (ret == TLBRET_MATCH) { | 
					
						
							| 
									
										
										
										
											2011-05-15 01:00:20 +02:00
										 |  |  |         tlb_set_page(env, address & TARGET_PAGE_MASK, | 
					
						
							|  |  |  |                      physical & TARGET_PAGE_MASK, prot | PAGE_EXEC, | 
					
						
							|  |  |  |                      mmu_idx, TARGET_PAGE_SIZE); | 
					
						
							|  |  |  |         ret = 0; | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |     } else if (ret < 0) | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-11-22 13:41:18 +01:00
										 |  |  |         raise_mmu_exception(env, address, rw, ret); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         ret = 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-30 01:39:22 +01:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  | hwaddr cpu_mips_translate_address(CPUMIPSState *env, target_ulong address, int rw) | 
					
						
							| 
									
										
										
										
											2009-11-30 01:39:22 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |     hwaddr physical; | 
					
						
							| 
									
										
										
										
											2009-11-30 01:39:22 +01:00
										 |  |  |     int prot; | 
					
						
							|  |  |  |     int access_type; | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rw &= 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* data access */ | 
					
						
							|  |  |  |     access_type = ACCESS_INT; | 
					
						
							|  |  |  |     ret = get_physical_address(env, &physical, &prot, | 
					
						
							|  |  |  |                                address, rw, access_type); | 
					
						
							|  |  |  |     if (ret != TLBRET_MATCH) { | 
					
						
							|  |  |  |         raise_mmu_exception(env, address, rw, ret); | 
					
						
							| 
									
										
										
										
											2010-02-06 17:02:45 +01:00
										 |  |  |         return -1LL; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         return physical; | 
					
						
							| 
									
										
										
										
											2009-11-30 01:39:22 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-03 21:26:23 +00:00
										 |  |  | static const char * const excp_names[EXCP_LAST + 1] = { | 
					
						
							|  |  |  |     [EXCP_RESET] = "reset", | 
					
						
							|  |  |  |     [EXCP_SRESET] = "soft reset", | 
					
						
							|  |  |  |     [EXCP_DSS] = "debug single step", | 
					
						
							|  |  |  |     [EXCP_DINT] = "debug interrupt", | 
					
						
							|  |  |  |     [EXCP_NMI] = "non-maskable interrupt", | 
					
						
							|  |  |  |     [EXCP_MCHECK] = "machine check", | 
					
						
							|  |  |  |     [EXCP_EXT_INTERRUPT] = "interrupt", | 
					
						
							|  |  |  |     [EXCP_DFWATCH] = "deferred watchpoint", | 
					
						
							|  |  |  |     [EXCP_DIB] = "debug instruction breakpoint", | 
					
						
							|  |  |  |     [EXCP_IWATCH] = "instruction fetch watchpoint", | 
					
						
							|  |  |  |     [EXCP_AdEL] = "address error load", | 
					
						
							|  |  |  |     [EXCP_AdES] = "address error store", | 
					
						
							|  |  |  |     [EXCP_TLBF] = "TLB refill", | 
					
						
							|  |  |  |     [EXCP_IBE] = "instruction bus error", | 
					
						
							|  |  |  |     [EXCP_DBp] = "debug breakpoint", | 
					
						
							|  |  |  |     [EXCP_SYSCALL] = "syscall", | 
					
						
							|  |  |  |     [EXCP_BREAK] = "break", | 
					
						
							|  |  |  |     [EXCP_CpU] = "coprocessor unusable", | 
					
						
							|  |  |  |     [EXCP_RI] = "reserved instruction", | 
					
						
							|  |  |  |     [EXCP_OVERFLOW] = "arithmetic overflow", | 
					
						
							|  |  |  |     [EXCP_TRAP] = "trap", | 
					
						
							|  |  |  |     [EXCP_FPE] = "floating point", | 
					
						
							|  |  |  |     [EXCP_DDBS] = "debug data break store", | 
					
						
							|  |  |  |     [EXCP_DWATCH] = "data watchpoint", | 
					
						
							|  |  |  |     [EXCP_LTLBL] = "TLB modify", | 
					
						
							|  |  |  |     [EXCP_TLBL] = "TLB load", | 
					
						
							|  |  |  |     [EXCP_TLBS] = "TLB store", | 
					
						
							|  |  |  |     [EXCP_DBE] = "data bus error", | 
					
						
							|  |  |  |     [EXCP_DDBL] = "debug data break load", | 
					
						
							|  |  |  |     [EXCP_THREAD] = "thread", | 
					
						
							|  |  |  |     [EXCP_MDMX] = "MDMX", | 
					
						
							|  |  |  |     [EXCP_C2E] = "precise coprocessor 2", | 
					
						
							|  |  |  |     [EXCP_CACHE] = "cache error", | 
					
						
							| 
									
										
										
										
											2007-12-26 19:34:03 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 14:51:21 -07:00
										 |  |  | target_ulong exception_resume_pc (CPUMIPSState *env) | 
					
						
							| 
									
										
										
										
											2009-12-08 08:06:23 -08:00
										 |  |  | { | 
					
						
							|  |  |  |     target_ulong bad_pc; | 
					
						
							|  |  |  |     target_ulong isa_mode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     isa_mode = !!(env->hflags & MIPS_HFLAG_M16); | 
					
						
							|  |  |  |     bad_pc = env->active_tc.PC | isa_mode; | 
					
						
							|  |  |  |     if (env->hflags & MIPS_HFLAG_BMASK) { | 
					
						
							|  |  |  |         /* If the exception was raised from a delay slot, come back to
 | 
					
						
							|  |  |  |            the jump.  */ | 
					
						
							|  |  |  |         bad_pc -= (env->hflags & MIPS_HFLAG_B16 ? 2 : 4); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return bad_pc; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-06-08 13:30:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 14:51:21 -07:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:22 +01:00
										 |  |  | static void set_hflags_for_handler (CPUMIPSState *env) | 
					
						
							| 
									
										
										
										
											2010-06-08 13:30:01 -07:00
										 |  |  | { | 
					
						
							|  |  |  |     /* Exception handlers are entered in 32-bit mode.  */ | 
					
						
							|  |  |  |     env->hflags &= ~(MIPS_HFLAG_M16); | 
					
						
							|  |  |  |     /* ...except that microMIPS lets you choose.  */ | 
					
						
							|  |  |  |     if (env->insn_flags & ASE_MICROMIPS) { | 
					
						
							|  |  |  |         env->hflags |= (!!(env->CP0_Config3 | 
					
						
							|  |  |  |                            & (1 << CP0C3_ISA_ON_EXC)) | 
					
						
							|  |  |  |                         << MIPS_HFLAG_M16_SHIFT); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-12-08 08:06:23 -08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 10:57:51 +01:00
										 |  |  | void mips_cpu_do_interrupt(CPUState *cs) | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-02-02 10:57:51 +01:00
										 |  |  |     MIPSCPU *cpu = MIPS_CPU(cs); | 
					
						
							|  |  |  |     CPUMIPSState *env = &cpu->env; | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							|  |  |  |     target_ulong offset; | 
					
						
							|  |  |  |     int cause = -1; | 
					
						
							|  |  |  |     const char *name; | 
					
						
							| 
									
										
										
										
											2007-05-13 19:22:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |     if (qemu_log_enabled() && env->exception_index != EXCP_EXT_INTERRUPT) { | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         if (env->exception_index < 0 || env->exception_index > EXCP_LAST) | 
					
						
							|  |  |  |             name = "unknown"; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             name = excp_names[env->exception_index]; | 
					
						
							| 
									
										
										
										
											2008-01-04 17:52:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |         qemu_log("%s enter: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " %s exception\n", | 
					
						
							|  |  |  |                  __func__, env->active_tc.PC, env->CP0_EPC, name); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     if (env->exception_index == EXCP_EXT_INTERRUPT && | 
					
						
							|  |  |  |         (env->hflags & MIPS_HFLAG_DM)) | 
					
						
							|  |  |  |         env->exception_index = EXCP_DINT; | 
					
						
							|  |  |  |     offset = 0x180; | 
					
						
							|  |  |  |     switch (env->exception_index) { | 
					
						
							|  |  |  |     case EXCP_DSS: | 
					
						
							|  |  |  |         env->CP0_Debug |= 1 << CP0DB_DSS; | 
					
						
							|  |  |  |         /* Debug single step cannot be raised inside a delay slot and
 | 
					
						
							|  |  |  |            resume will always occur on the next instruction | 
					
						
							|  |  |  |            (but we assume the pc has always been updated during | 
					
						
							|  |  |  |            code translation). */ | 
					
						
							| 
									
										
										
										
											2009-12-08 08:06:23 -08:00
										 |  |  |         env->CP0_DEPC = env->active_tc.PC | !!(env->hflags & MIPS_HFLAG_M16); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         goto enter_debug_mode; | 
					
						
							|  |  |  |     case EXCP_DINT: | 
					
						
							|  |  |  |         env->CP0_Debug |= 1 << CP0DB_DINT; | 
					
						
							|  |  |  |         goto set_DEPC; | 
					
						
							|  |  |  |     case EXCP_DIB: | 
					
						
							|  |  |  |         env->CP0_Debug |= 1 << CP0DB_DIB; | 
					
						
							|  |  |  |         goto set_DEPC; | 
					
						
							|  |  |  |     case EXCP_DBp: | 
					
						
							|  |  |  |         env->CP0_Debug |= 1 << CP0DB_DBp; | 
					
						
							|  |  |  |         goto set_DEPC; | 
					
						
							|  |  |  |     case EXCP_DDBS: | 
					
						
							|  |  |  |         env->CP0_Debug |= 1 << CP0DB_DDBS; | 
					
						
							|  |  |  |         goto set_DEPC; | 
					
						
							|  |  |  |     case EXCP_DDBL: | 
					
						
							|  |  |  |         env->CP0_Debug |= 1 << CP0DB_DDBL; | 
					
						
							|  |  |  |     set_DEPC: | 
					
						
							| 
									
										
										
										
											2009-12-08 08:06:23 -08:00
										 |  |  |         env->CP0_DEPC = exception_resume_pc(env); | 
					
						
							|  |  |  |         env->hflags &= ~MIPS_HFLAG_BMASK; | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  |  enter_debug_mode: | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         env->hflags |= MIPS_HFLAG_DM | MIPS_HFLAG_64 | MIPS_HFLAG_CP0; | 
					
						
							|  |  |  |         env->hflags &= ~(MIPS_HFLAG_KSU); | 
					
						
							|  |  |  |         /* EJTAG probe trap enable is not implemented... */ | 
					
						
							|  |  |  |         if (!(env->CP0_Status & (1 << CP0St_EXL))) | 
					
						
							|  |  |  |             env->CP0_Cause &= ~(1 << CP0Ca_BD); | 
					
						
							|  |  |  |         env->active_tc.PC = (int32_t)0xBFC00480; | 
					
						
							| 
									
										
										
										
											2010-06-08 13:30:01 -07:00
										 |  |  |         set_hflags_for_handler(env); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case EXCP_RESET: | 
					
						
							| 
									
										
										
										
											2012-05-05 12:53:17 +02:00
										 |  |  |         cpu_reset(CPU(cpu)); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case EXCP_SRESET: | 
					
						
							|  |  |  |         env->CP0_Status |= (1 << CP0St_SR); | 
					
						
							|  |  |  |         memset(env->CP0_WatchLo, 0, sizeof(*env->CP0_WatchLo)); | 
					
						
							|  |  |  |         goto set_error_EPC; | 
					
						
							|  |  |  |     case EXCP_NMI: | 
					
						
							|  |  |  |         env->CP0_Status |= (1 << CP0St_NMI); | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  |  set_error_EPC: | 
					
						
							| 
									
										
										
										
											2009-12-08 08:06:23 -08:00
										 |  |  |         env->CP0_ErrorEPC = exception_resume_pc(env); | 
					
						
							|  |  |  |         env->hflags &= ~MIPS_HFLAG_BMASK; | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         env->CP0_Status |= (1 << CP0St_ERL) | (1 << CP0St_BEV); | 
					
						
							|  |  |  |         env->hflags |= MIPS_HFLAG_64 | MIPS_HFLAG_CP0; | 
					
						
							|  |  |  |         env->hflags &= ~(MIPS_HFLAG_KSU); | 
					
						
							|  |  |  |         if (!(env->CP0_Status & (1 << CP0St_EXL))) | 
					
						
							|  |  |  |             env->CP0_Cause &= ~(1 << CP0Ca_BD); | 
					
						
							|  |  |  |         env->active_tc.PC = (int32_t)0xBFC00000; | 
					
						
							| 
									
										
										
										
											2010-06-08 13:30:01 -07:00
										 |  |  |         set_hflags_for_handler(env); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case EXCP_EXT_INTERRUPT: | 
					
						
							|  |  |  |         cause = 0; | 
					
						
							|  |  |  |         if (env->CP0_Cause & (1 << CP0Ca_IV)) | 
					
						
							|  |  |  |             offset = 0x200; | 
					
						
							| 
									
										
										
										
											2010-08-06 12:21:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (env->CP0_Config3 & ((1 << CP0C3_VInt) | (1 << CP0C3_VEIC))) { | 
					
						
							|  |  |  |             /* Vectored Interrupts.  */ | 
					
						
							|  |  |  |             unsigned int spacing; | 
					
						
							|  |  |  |             unsigned int vector; | 
					
						
							|  |  |  |             unsigned int pending = (env->CP0_Cause & CP0Ca_IP_mask) >> 8; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-29 23:07:36 +02:00
										 |  |  |             pending &= env->CP0_Status >> 8; | 
					
						
							| 
									
										
										
										
											2010-08-06 12:21:16 +02:00
										 |  |  |             /* Compute the Vector Spacing.  */ | 
					
						
							|  |  |  |             spacing = (env->CP0_IntCtl >> CP0IntCtl_VS) & ((1 << 6) - 1); | 
					
						
							|  |  |  |             spacing <<= 5; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (env->CP0_Config3 & (1 << CP0C3_VInt)) { | 
					
						
							|  |  |  |                 /* For VInt mode, the MIPS computes the vector internally.  */ | 
					
						
							| 
									
										
										
										
											2011-08-29 23:07:36 +02:00
										 |  |  |                 for (vector = 7; vector > 0; vector--) { | 
					
						
							|  |  |  |                     if (pending & (1 << vector)) { | 
					
						
							| 
									
										
										
										
											2010-08-06 12:21:16 +02:00
										 |  |  |                         /* Found it.  */ | 
					
						
							|  |  |  |                         break; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 /* For VEIC mode, the external interrupt controller feeds the
 | 
					
						
							| 
									
										
										
										
											2011-12-10 00:19:46 +01:00
										 |  |  |                    vector through the CP0Cause IP lines.  */ | 
					
						
							| 
									
										
										
										
											2010-08-06 12:21:16 +02:00
										 |  |  |                 vector = pending; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             offset = 0x200 + vector * spacing; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_LTLBL: | 
					
						
							|  |  |  |         cause = 1; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_TLBL: | 
					
						
							|  |  |  |         cause = 2; | 
					
						
							|  |  |  |         if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) { | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |             int R = env->CP0_BadVAddr >> 62; | 
					
						
							|  |  |  |             int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0; | 
					
						
							|  |  |  |             int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0; | 
					
						
							|  |  |  |             int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0; | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-15 23:13:11 +02:00
										 |  |  |             if (((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX)) && | 
					
						
							|  |  |  |                 (!(env->insn_flags & (INSN_LOONGSON2E | INSN_LOONGSON2F)))) | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |                 offset = 0x080; | 
					
						
							|  |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |                 offset = 0x000; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_TLBS: | 
					
						
							|  |  |  |         cause = 3; | 
					
						
							|  |  |  |         if (env->error_code == 1 && !(env->CP0_Status & (1 << CP0St_EXL))) { | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |             int R = env->CP0_BadVAddr >> 62; | 
					
						
							|  |  |  |             int UX = (env->CP0_Status & (1 << CP0St_UX)) != 0; | 
					
						
							|  |  |  |             int SX = (env->CP0_Status & (1 << CP0St_SX)) != 0; | 
					
						
							|  |  |  |             int KX = (env->CP0_Status & (1 << CP0St_KX)) != 0; | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-15 23:13:11 +02:00
										 |  |  |             if (((R == 0 && UX) || (R == 1 && SX) || (R == 3 && KX)) && | 
					
						
							|  |  |  |                 (!(env->insn_flags & (INSN_LOONGSON2E | INSN_LOONGSON2F)))) | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |                 offset = 0x080; | 
					
						
							|  |  |  |             else | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |                 offset = 0x000; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_AdEL: | 
					
						
							|  |  |  |         cause = 4; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_AdES: | 
					
						
							|  |  |  |         cause = 5; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_IBE: | 
					
						
							|  |  |  |         cause = 6; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_DBE: | 
					
						
							|  |  |  |         cause = 7; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_SYSCALL: | 
					
						
							|  |  |  |         cause = 8; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_BREAK: | 
					
						
							|  |  |  |         cause = 9; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_RI: | 
					
						
							|  |  |  |         cause = 10; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_CpU: | 
					
						
							|  |  |  |         cause = 11; | 
					
						
							|  |  |  |         env->CP0_Cause = (env->CP0_Cause & ~(0x3 << CP0Ca_CE)) | | 
					
						
							|  |  |  |                          (env->error_code << CP0Ca_CE); | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_OVERFLOW: | 
					
						
							|  |  |  |         cause = 12; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_TRAP: | 
					
						
							|  |  |  |         cause = 13; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_FPE: | 
					
						
							|  |  |  |         cause = 15; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_C2E: | 
					
						
							|  |  |  |         cause = 18; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_MDMX: | 
					
						
							|  |  |  |         cause = 22; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_DWATCH: | 
					
						
							|  |  |  |         cause = 23; | 
					
						
							|  |  |  |         /* XXX: TODO: manage defered watch exceptions */ | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_MCHECK: | 
					
						
							|  |  |  |         cause = 24; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							|  |  |  |     case EXCP_THREAD: | 
					
						
							|  |  |  |         cause = 25; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							| 
									
										
										
										
											2012-10-24 22:17:02 +08:00
										 |  |  |     case EXCP_DSPDIS: | 
					
						
							|  |  |  |         cause = 26; | 
					
						
							|  |  |  |         goto set_EPC; | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |     case EXCP_CACHE: | 
					
						
							|  |  |  |         cause = 30; | 
					
						
							|  |  |  |         if (env->CP0_Status & (1 << CP0St_BEV)) { | 
					
						
							|  |  |  |             offset = 0x100; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             offset = 0x20000100; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  |  set_EPC: | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         if (!(env->CP0_Status & (1 << CP0St_EXL))) { | 
					
						
							| 
									
										
										
										
											2009-12-08 08:06:23 -08:00
										 |  |  |             env->CP0_EPC = exception_resume_pc(env); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |             if (env->hflags & MIPS_HFLAG_BMASK) { | 
					
						
							|  |  |  |                 env->CP0_Cause |= (1 << CP0Ca_BD); | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |                 env->CP0_Cause &= ~(1 << CP0Ca_BD); | 
					
						
							| 
									
										
										
										
											2008-07-23 16:14:22 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |             env->CP0_Status |= (1 << CP0St_EXL); | 
					
						
							|  |  |  |             env->hflags |= MIPS_HFLAG_64 | MIPS_HFLAG_CP0; | 
					
						
							|  |  |  |             env->hflags &= ~(MIPS_HFLAG_KSU); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         env->hflags &= ~MIPS_HFLAG_BMASK; | 
					
						
							|  |  |  |         if (env->CP0_Status & (1 << CP0St_BEV)) { | 
					
						
							|  |  |  |             env->active_tc.PC = (int32_t)0xBFC00200; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             env->active_tc.PC = (int32_t)(env->CP0_EBase & ~0x3ff); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         env->active_tc.PC += offset; | 
					
						
							| 
									
										
										
										
											2010-06-08 13:30:01 -07:00
										 |  |  |         set_hflags_for_handler(env); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         env->CP0_Cause = (env->CP0_Cause & ~(0x1f << CP0Ca_EC)) | (cause << CP0Ca_EC); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |         qemu_log("Invalid MIPS exception %d. Exiting\n", env->exception_index); | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |         printf("Invalid MIPS exception %d. Exiting\n", env->exception_index); | 
					
						
							|  |  |  |         exit(1); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-15 22:34:14 +00:00
										 |  |  |     if (qemu_log_enabled() && env->exception_index != EXCP_EXT_INTERRUPT) { | 
					
						
							|  |  |  |         qemu_log("%s: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx " cause %d\n" | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  |                 "    S %08x C %08x A " TARGET_FMT_lx " D " TARGET_FMT_lx "\n", | 
					
						
							|  |  |  |                 __func__, env->active_tc.PC, env->CP0_EPC, cause, | 
					
						
							|  |  |  |                 env->CP0_Status, env->CP0_Cause, env->CP0_BadVAddr, | 
					
						
							|  |  |  |                 env->CP0_DEPC); | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-01-12 21:33:13 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-07-02 14:58:51 +00:00
										 |  |  |     env->exception_index = EXCP_NONE; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-01-03 15:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-01 04:11:28 +00:00
										 |  |  | #if !defined(CONFIG_USER_ONLY)
 | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:22 +01:00
										 |  |  | void r4k_invalidate_tlb (CPUMIPSState *env, int idx, int use_extra) | 
					
						
							| 
									
										
										
										
											2007-01-03 15:18:08 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  |     r4k_tlb_t *tlb; | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |     target_ulong addr; | 
					
						
							|  |  |  |     target_ulong end; | 
					
						
							|  |  |  |     uint8_t ASID = env->CP0_EntryHi & 0xFF; | 
					
						
							|  |  |  |     target_ulong mask; | 
					
						
							| 
									
										
										
										
											2007-01-03 15:18:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |     tlb = &env->tlb->mmu.r4k.tlb[idx]; | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |     /* The qemu TLB is flushed when the ASID changes, so no need to
 | 
					
						
							| 
									
										
										
										
											2007-01-03 15:18:08 +00:00
										 |  |  |        flush these entries again.  */ | 
					
						
							|  |  |  |     if (tlb->G == 0 && tlb->ASID != ASID) { | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |     if (use_extra && env->tlb->tlb_in_use < MIPS_TLB_MAX) { | 
					
						
							| 
									
										
										
										
											2007-01-03 15:18:08 +00:00
										 |  |  |         /* For tlbwr, we can shadow the discarded entry into
 | 
					
						
							| 
									
										
										
										
											2009-01-14 19:40:36 +00:00
										 |  |  |            a new (fake) TLB entry, as long as the guest can not | 
					
						
							|  |  |  |            tell that it's there.  */ | 
					
						
							| 
									
										
										
										
											2007-09-06 00:18:15 +00:00
										 |  |  |         env->tlb->mmu.r4k.tlb[env->tlb->tlb_in_use] = *tlb; | 
					
						
							|  |  |  |         env->tlb->tlb_in_use++; | 
					
						
							| 
									
										
										
										
											2007-01-03 15:18:08 +00:00
										 |  |  |         return; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |     /* 1k pages are not supported. */ | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |     mask = tlb->PageMask | ~(TARGET_PAGE_MASK << 1); | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |     if (tlb->V0) { | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |         addr = tlb->VPN & ~mask; | 
					
						
							| 
									
										
										
										
											2007-11-08 18:05:37 +00:00
										 |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							| 
									
										
										
										
											2007-06-23 18:04:12 +00:00
										 |  |  |         if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) { | 
					
						
							| 
									
										
										
										
											2007-05-13 19:22:13 +00:00
										 |  |  |             addr |= 0x3FFFFF0000000000ULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |         end = addr | (mask >> 1); | 
					
						
							|  |  |  |         while (addr < end) { | 
					
						
							|  |  |  |             tlb_flush_page (env, addr); | 
					
						
							|  |  |  |             addr += TARGET_PAGE_SIZE; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (tlb->V1) { | 
					
						
							| 
									
										
										
										
											2007-05-13 14:07:26 +00:00
										 |  |  |         addr = (tlb->VPN & ~mask) | ((mask >> 1) + 1); | 
					
						
							| 
									
										
										
										
											2007-11-08 18:05:37 +00:00
										 |  |  | #if defined(TARGET_MIPS64)
 | 
					
						
							| 
									
										
										
										
											2007-06-23 18:04:12 +00:00
										 |  |  |         if (addr >= (0xFFFFFFFF80000000ULL & env->SEGMask)) { | 
					
						
							| 
									
										
										
										
											2007-05-13 19:22:13 +00:00
										 |  |  |             addr |= 0x3FFFFF0000000000ULL; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |         end = addr | mask; | 
					
						
							| 
									
										
										
										
											2008-03-29 21:43:23 +00:00
										 |  |  |         while (addr - 1 < end) { | 
					
						
							| 
									
										
										
										
											2007-01-22 20:50:42 +00:00
										 |  |  |             tlb_flush_page (env, addr); | 
					
						
							|  |  |  |             addr += TARGET_PAGE_SIZE; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-01-03 15:18:08 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-03-01 04:11:28 +00:00
										 |  |  | #endif
 |