]> git.proxmox.com Git - mirror_qemu.git/blame - target-alpha/sys_helper.c
s390x/skeys: Fix instance and class size
[mirror_qemu.git] / target-alpha / sys_helper.c
CommitLineData
69163fbb
RH
1/*
2 * Helpers for system instructions.
3 *
4 * Copyright (c) 2007 Jocelyn Mayer
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "cpu.h"
2ef6175a 21#include "exec/helper-proto.h"
9c17d615 22#include "sysemu/sysemu.h"
1de7afc9 23#include "qemu/timer.h"
69163fbb
RH
24
25
26uint64_t helper_load_pcc(CPUAlphaState *env)
27{
28#ifndef CONFIG_USER_ONLY
29 /* In system mode we have access to a decent high-resolution clock.
30 In order to make OS-level time accounting work with the RPCC,
31 present it with a well-timed clock fixed at 250MHz. */
32 return (((uint64_t)env->pcc_ofs << 32)
bc72ad67 33 | (uint32_t)(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) >> 2));
69163fbb 34#else
bc72ad67 35 /* In user-mode, QEMU_CLOCK_VIRTUAL doesn't exist. Just pass through the host cpu
69163fbb 36 clock ticks. Also, don't bother taking PCC_OFS into account. */
4a7428c5 37 return (uint32_t)cpu_get_host_ticks();
69163fbb
RH
38#endif
39}
40
41/* PALcode support special instructions */
42#ifndef CONFIG_USER_ONLY
69163fbb
RH
43void helper_tbia(CPUAlphaState *env)
44{
00c8cb0a 45 tlb_flush(CPU(alpha_env_get_cpu(env)), 1);
69163fbb
RH
46}
47
48void helper_tbis(CPUAlphaState *env, uint64_t p)
49{
31b030d4 50 tlb_flush_page(CPU(alpha_env_get_cpu(env)), p);
69163fbb
RH
51}
52
a9ead832
RH
53void helper_tb_flush(CPUAlphaState *env)
54{
bbd77c18 55 tb_flush(CPU(alpha_env_get_cpu(env)));
a9ead832
RH
56}
57
69163fbb
RH
58void helper_halt(uint64_t restart)
59{
60 if (restart) {
61 qemu_system_reset_request();
62 } else {
63 qemu_system_shutdown_request();
64 }
65}
66
19e0cbb8
RH
67uint64_t helper_get_vmtime(void)
68{
bc72ad67 69 return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
19e0cbb8
RH
70}
71
72uint64_t helper_get_walltime(void)
69163fbb 73{
884f17c2 74 return qemu_clock_get_ns(rtc_clock);
69163fbb
RH
75}
76
77void helper_set_alarm(CPUAlphaState *env, uint64_t expire)
78{
c9245853
AF
79 AlphaCPU *cpu = alpha_env_get_cpu(env);
80
69163fbb
RH
81 if (expire) {
82 env->alarm_expire = expire;
bc72ad67 83 timer_mod(cpu->alarm_timer, expire);
69163fbb 84 } else {
bc72ad67 85 timer_del(cpu->alarm_timer);
69163fbb
RH
86 }
87}
ba96394e 88
69163fbb 89#endif /* CONFIG_USER_ONLY */