aboutsummaryrefslogtreecommitdiff
path: root/target-ia64/cpu.h
blob: fd00bbb1414f3ac451e3688fd2157ec96c3e4311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * IA64 virtual CPU header
 *
 *  Copyright (c) 2003 Fabrice Bellard
 *
 *  Copyright (c) 2007 Intel Corporation
 *  Zhang xiantao <xiantao.zhang@intel.com>
 *
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#ifndef CPU_IA64_H
#define CPU_IA64_H
#include "config.h"
#include "ia64intrin.h"

#include<string.h>
#include<stdio.h>

#define TARGET_LONG_BITS 64

#define TARGET_PAGE_BITS 16

#define ELF_MACHINE	EM_IA_64

#define NB_MMU_MODES 2
#define CPU_PAL_HALT 1
#define HF_HALTED_MASK       (1 << CPU_PAL_HALT)

#include "cpu-defs.h"

#include "softfloat.h"
typedef struct CPUIA64State {
    CPU_COMMON;
    uint32_t hflags;
    int mp_state;
} CPUIA64State;

#define CPUState CPUIA64State
#define cpu_gen_code cpu_ia64_gen_code
#define cpu_init cpu_ia64_init
#define cpu_signal_handler cpu_ia64_signal_handler

struct CPUIA64State *env;
int cpu_get_pic_interrupt(CPUIA64State *s);
int cpu_exec(CPUState *env1);
void cpu_dump_state(CPUState *env, FILE *f,
                    int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
                    int flags);
CPUState *cpu_ia64_init(const char * cpu_model);

static inline int cpu_mmu_index (CPUState *env)
{
    return 0;
}

#define CPU_PC_FROM_TB(env, tb) do{}while(0)

#include "cpu-all.h"

/*
 * These ones really should go to the appropriate tcg header file, if/when
 * tcg support is added for ia64.
 */
void flush_icache_range(unsigned long start, unsigned long stop);
void tcg_dump_info(FILE *f,
                   int (*cpu_fprintf)(FILE *f, const char *fmt, ...));

#endif