]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/xen/time.c
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / drivers / xen / time.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
4ccefbe5
SS
2/*
3 * Xen stolen ticks accounting.
4 */
5#include <linux/kernel.h>
6#include <linux/kernel_stat.h>
7#include <linux/math64.h>
8#include <linux/gfp.h>
9
ecb23dc6 10#include <asm/paravirt.h>
4ccefbe5
SS
11#include <asm/xen/hypervisor.h>
12#include <asm/xen/hypercall.h>
13
14#include <xen/events.h>
15#include <xen/features.h>
16#include <xen/interface/xen.h>
17#include <xen/interface/vcpu.h>
18#include <xen/xen-ops.h>
19
20/* runstate info updated by Xen */
21static DEFINE_PER_CPU(struct vcpu_runstate_info, xen_runstate);
22
23/* return an consistent snapshot of 64-bit time/counter value */
24static u64 get64(const u64 *p)
25{
26 u64 ret;
27
28 if (BITS_PER_LONG < 64) {
29 u32 *p32 = (u32 *)p;
2dd887e3 30 u32 h, l, h2;
4ccefbe5
SS
31
32 /*
33 * Read high then low, and then make sure high is
34 * still the same; this will only loop if low wraps
35 * and carries into high.
36 * XXX some clean way to make this endian-proof?
37 */
38 do {
2dd887e3
SS
39 h = READ_ONCE(p32[1]);
40 l = READ_ONCE(p32[0]);
41 h2 = READ_ONCE(p32[1]);
42 } while(h2 != h);
4ccefbe5
SS
43
44 ret = (((u64)h) << 32) | l;
45 } else
2dd887e3 46 ret = READ_ONCE(*p);
4ccefbe5
SS
47
48 return ret;
49}
50
6ba286ad
JG
51static void xen_get_runstate_snapshot_cpu(struct vcpu_runstate_info *res,
52 unsigned int cpu)
4ccefbe5
SS
53{
54 u64 state_time;
55 struct vcpu_runstate_info *state;
56
57 BUG_ON(preemptible());
58
6ba286ad 59 state = per_cpu_ptr(&xen_runstate, cpu);
4ccefbe5 60
4ccefbe5
SS
61 do {
62 state_time = get64(&state->state_entry_time);
6ba286ad 63 rmb(); /* Hypervisor might update data. */
2dd887e3 64 *res = READ_ONCE(*state);
6ba286ad
JG
65 rmb(); /* Hypervisor might update data. */
66 } while (get64(&state->state_entry_time) != state_time ||
67 (state_time & XEN_RUNSTATE_UPDATE));
68}
69
70/*
71 * Runstate accounting
72 */
73void xen_get_runstate_snapshot(struct vcpu_runstate_info *res)
74{
75 xen_get_runstate_snapshot_cpu(res, smp_processor_id());
4ccefbe5
SS
76}
77
78/* return true when a vcpu could run but has no real cpu to run on */
79bool xen_vcpu_stolen(int vcpu)
80{
81 return per_cpu(xen_runstate, vcpu).state == RUNSTATE_runnable;
82}
83
d34c30cc 84u64 xen_steal_clock(int cpu)
ecb23dc6
JG
85{
86 struct vcpu_runstate_info state;
87
6ba286ad 88 xen_get_runstate_snapshot_cpu(&state, cpu);
ecb23dc6
JG
89 return state.time[RUNSTATE_runnable] + state.time[RUNSTATE_offline];
90}
91
4ccefbe5
SS
92void xen_setup_runstate_info(int cpu)
93{
94 struct vcpu_register_runstate_memory_area area;
95
96 area.addr.v = &per_cpu(xen_runstate, cpu);
97
98 if (HYPERVISOR_vcpu_op(VCPUOP_register_runstate_memory_area,
ad5475f9 99 xen_vcpu_nr(cpu), &area))
4ccefbe5
SS
100 BUG();
101}
102
ecb23dc6
JG
103void __init xen_time_setup_guest(void)
104{
6ba286ad
JG
105 bool xen_runstate_remote;
106
107 xen_runstate_remote = !HYPERVISOR_vm_assist(VMASST_CMD_enable,
108 VMASST_TYPE_runstate_update_flag);
109
ecb23dc6
JG
110 pv_time_ops.steal_clock = xen_steal_clock;
111
112 static_key_slow_inc(&paravirt_steal_enabled);
6ba286ad
JG
113 if (xen_runstate_remote)
114 static_key_slow_inc(&paravirt_steal_rq_enabled);
ecb23dc6 115}