2003-08-10 23:35:13 +02:00
|
|
|
/*
|
|
|
|
* common defines for all CPUs
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2003-08-10 23:35:13 +02:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* 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 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2003-08-10 23:35:13 +02:00
|
|
|
*/
|
|
|
|
#ifndef CPU_DEFS_H
|
|
|
|
#define CPU_DEFS_H
|
|
|
|
|
2007-11-17 18:14:51 +01:00
|
|
|
#ifndef NEED_CPU_H
|
|
|
|
#error cpu.h included from common code
|
|
|
|
#endif
|
|
|
|
|
2003-08-10 23:35:13 +02:00
|
|
|
#include "config.h"
|
2004-02-16 23:17:43 +01:00
|
|
|
#include <inttypes.h>
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "qemu/queue.h"
|
2013-05-28 14:02:38 +02:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/hwaddr.h"
|
2013-05-28 14:02:38 +02:00
|
|
|
#endif
|
2003-08-10 23:35:13 +02:00
|
|
|
|
2004-01-24 16:26:06 +01:00
|
|
|
#ifndef TARGET_LONG_BITS
|
|
|
|
#error TARGET_LONG_BITS must be defined before including this header
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define TARGET_LONG_SIZE (TARGET_LONG_BITS / 8)
|
|
|
|
|
2004-04-25 23:25:15 +02:00
|
|
|
/* target_ulong is the type of a virtual address */
|
2004-01-24 16:26:06 +01:00
|
|
|
#if TARGET_LONG_SIZE == 4
|
2013-04-17 16:26:41 +02:00
|
|
|
typedef int32_t target_long;
|
|
|
|
typedef uint32_t target_ulong;
|
2005-01-04 00:35:10 +01:00
|
|
|
#define TARGET_FMT_lx "%08x"
|
2007-04-04 09:58:14 +02:00
|
|
|
#define TARGET_FMT_ld "%d"
|
2007-09-19 07:46:03 +02:00
|
|
|
#define TARGET_FMT_lu "%u"
|
2004-01-24 16:26:06 +01:00
|
|
|
#elif TARGET_LONG_SIZE == 8
|
2013-04-17 16:26:41 +02:00
|
|
|
typedef int64_t target_long;
|
|
|
|
typedef uint64_t target_ulong;
|
2006-06-25 20:15:32 +02:00
|
|
|
#define TARGET_FMT_lx "%016" PRIx64
|
2007-04-04 09:58:14 +02:00
|
|
|
#define TARGET_FMT_ld "%" PRId64
|
2007-09-19 07:46:03 +02:00
|
|
|
#define TARGET_FMT_lu "%" PRIu64
|
2004-01-24 16:26:06 +01:00
|
|
|
#else
|
|
|
|
#error TARGET_LONG_SIZE undefined
|
|
|
|
#endif
|
|
|
|
|
2005-07-03 00:09:27 +02:00
|
|
|
#define EXCP_INTERRUPT 0x10000 /* async interruption */
|
|
|
|
#define EXCP_HLT 0x10001 /* hlt instruction reached */
|
|
|
|
#define EXCP_DEBUG 0x10002 /* cpu stopped after a breakpoint or singlestep */
|
2005-11-23 22:02:53 +01:00
|
|
|
#define EXCP_HALTED 0x10003 /* cpu is halted (waiting for external event) */
|
2014-03-10 15:56:30 +01:00
|
|
|
#define EXCP_YIELD 0x10004 /* cpu wants to yield timeslice to another */
|
2003-08-10 23:35:13 +02:00
|
|
|
|
2006-11-12 21:40:55 +01:00
|
|
|
/* Only the bottom TB_JMP_PAGE_BITS of the jump cache hash bits vary for
|
|
|
|
addresses on the same page. The top bits are the same. This allows
|
|
|
|
TLB invalidation to quickly clear a subset of the hash table. */
|
|
|
|
#define TB_JMP_PAGE_BITS (TB_JMP_CACHE_BITS / 2)
|
|
|
|
#define TB_JMP_PAGE_SIZE (1 << TB_JMP_PAGE_BITS)
|
|
|
|
#define TB_JMP_ADDR_MASK (TB_JMP_PAGE_SIZE - 1)
|
|
|
|
#define TB_JMP_PAGE_MASK (TB_JMP_CACHE_SIZE - TB_JMP_PAGE_SIZE)
|
|
|
|
|
2010-03-12 17:54:58 +01:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-11-28 22:19:04 +01:00
|
|
|
#define CPU_TLB_BITS 8
|
|
|
|
#define CPU_TLB_SIZE (1 << CPU_TLB_BITS)
|
2003-08-10 23:35:13 +02:00
|
|
|
|
2010-04-05 01:28:53 +02:00
|
|
|
#if HOST_LONG_BITS == 32 && TARGET_LONG_BITS == 32
|
2008-01-31 10:22:27 +01:00
|
|
|
#define CPU_TLB_ENTRY_BITS 4
|
|
|
|
#else
|
|
|
|
#define CPU_TLB_ENTRY_BITS 5
|
|
|
|
#endif
|
|
|
|
|
2003-08-10 23:35:13 +02:00
|
|
|
typedef struct CPUTLBEntry {
|
2008-06-09 02:20:13 +02:00
|
|
|
/* bit TARGET_LONG_BITS to TARGET_PAGE_BITS : virtual address
|
|
|
|
bit TARGET_PAGE_BITS-1..4 : Nonzero for accesses that should not
|
|
|
|
go directly to ram.
|
2003-10-27 22:12:17 +01:00
|
|
|
bit 3 : indicates that the entry is invalid
|
|
|
|
bit 2..0 : zero
|
|
|
|
*/
|
2007-09-16 23:08:06 +02:00
|
|
|
target_ulong addr_read;
|
|
|
|
target_ulong addr_write;
|
|
|
|
target_ulong addr_code;
|
2010-04-05 01:28:53 +02:00
|
|
|
/* Addend to virtual address to get host address. IO accesses
|
2008-11-29 14:33:23 +01:00
|
|
|
use the corresponding iotlb value. */
|
2012-04-12 20:29:36 +02:00
|
|
|
uintptr_t addend;
|
2008-01-31 10:22:27 +01:00
|
|
|
/* padding to get a power of two size */
|
2012-04-12 20:29:36 +02:00
|
|
|
uint8_t dummy[(1 << CPU_TLB_ENTRY_BITS) -
|
|
|
|
(sizeof(target_ulong) * 3 +
|
|
|
|
((-sizeof(target_ulong) * 3) & (sizeof(uintptr_t) - 1)) +
|
|
|
|
sizeof(uintptr_t))];
|
2003-08-10 23:35:13 +02:00
|
|
|
} CPUTLBEntry;
|
|
|
|
|
2013-06-04 18:51:59 +02:00
|
|
|
QEMU_BUILD_BUG_ON(sizeof(CPUTLBEntry) != (1 << CPU_TLB_ENTRY_BITS));
|
2010-04-05 01:28:53 +02:00
|
|
|
|
2010-03-12 17:54:58 +01:00
|
|
|
#define CPU_COMMON_TLB \
|
|
|
|
/* The meaning of the MMU modes is defined in the target code. */ \
|
|
|
|
CPUTLBEntry tlb_table[NB_MMU_MODES][CPU_TLB_SIZE]; \
|
2012-10-23 12:30:10 +02:00
|
|
|
hwaddr iotlb[NB_MMU_MODES][CPU_TLB_SIZE]; \
|
2010-03-17 03:14:28 +01:00
|
|
|
target_ulong tlb_flush_addr; \
|
|
|
|
target_ulong tlb_flush_mask;
|
2010-03-12 17:54:58 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define CPU_COMMON_TLB
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-04-08 21:29:54 +02:00
|
|
|
#define CPU_TEMP_BUF_NLONGS 128
|
2005-11-20 11:32:34 +01:00
|
|
|
#define CPU_COMMON \
|
|
|
|
/* soft mmu support */ \
|
2010-03-12 17:54:58 +01:00
|
|
|
CPU_COMMON_TLB \
|
2005-11-20 11:32:34 +01:00
|
|
|
|
2003-08-10 23:35:13 +02:00
|
|
|
#endif
|