1 /******************************************************************************
3 * Management physical cpu in dom0, get pcpu info and provide sys interface
5 * Copyright (c) 2012 Intel Corporation
6 * Author: Liu, Jinsong <jinsong.liu@intel.com>
7 * Author: Jiang, Yunhong <yunhong.jiang@intel.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation; or, when distributed
12 * separately from the Linux kernel or incorporated into other
13 * software packages, subject to the following license:
15 * Permission is hereby granted, free of charge, to any person obtaining a copy
16 * of this source file (the "Software"), to deal in the Software without
17 * restriction, including without limitation the rights to use, copy, modify,
18 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
19 * and to permit persons to whom the Software is furnished to do so, subject to
20 * the following conditions:
22 * The above copyright notice and this permission notice shall be included in
23 * all copies or substantial portions of the Software.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
34 #define pr_fmt(fmt) "xen_cpu: " fmt
36 #include <linux/interrupt.h>
37 #include <linux/spinlock.h>
38 #include <linux/cpu.h>
39 #include <linux/stat.h>
40 #include <linux/capability.h>
44 #include <xen/xenbus.h>
45 #include <xen/events.h>
46 #include <xen/interface/platform.h>
47 #include <asm/xen/hypervisor.h>
48 #include <asm/xen/hypercall.h>
51 #include <acpi/processor.h>
55 * @cpu_id: Xen physical cpu logic number
56 * @flags: Xen physical cpu status flag
57 * - XEN_PCPU_FLAGS_ONLINE: cpu is online
58 * - XEN_PCPU_FLAGS_INVALID: cpu is not present
61 struct list_head list
;
68 static const struct bus_type xen_pcpu_subsys
= {
70 .dev_name
= "xen_cpu",
73 static DEFINE_MUTEX(xen_pcpu_lock
);
75 static LIST_HEAD(xen_pcpus
);
77 static int xen_pcpu_down(uint32_t cpu_id
)
79 struct xen_platform_op op
= {
80 .cmd
= XENPF_cpu_offline
,
81 .interface_version
= XENPF_INTERFACE_VERSION
,
82 .u
.cpu_ol
.cpuid
= cpu_id
,
85 return HYPERVISOR_platform_op(&op
);
88 static int xen_pcpu_up(uint32_t cpu_id
)
90 struct xen_platform_op op
= {
91 .cmd
= XENPF_cpu_online
,
92 .interface_version
= XENPF_INTERFACE_VERSION
,
93 .u
.cpu_ol
.cpuid
= cpu_id
,
96 return HYPERVISOR_platform_op(&op
);
99 static ssize_t
online_show(struct device
*dev
,
100 struct device_attribute
*attr
,
103 struct pcpu
*cpu
= container_of(dev
, struct pcpu
, dev
);
105 return sprintf(buf
, "%u\n", !!(cpu
->flags
& XEN_PCPU_FLAGS_ONLINE
));
108 static ssize_t __ref
online_store(struct device
*dev
,
109 struct device_attribute
*attr
,
110 const char *buf
, size_t count
)
112 struct pcpu
*pcpu
= container_of(dev
, struct pcpu
, dev
);
113 unsigned long long val
;
116 if (!capable(CAP_SYS_ADMIN
))
119 if (kstrtoull(buf
, 0, &val
) < 0)
124 ret
= xen_pcpu_down(pcpu
->cpu_id
);
127 ret
= xen_pcpu_up(pcpu
->cpu_id
);
137 static DEVICE_ATTR_RW(online
);
139 static struct attribute
*pcpu_dev_attrs
[] = {
140 &dev_attr_online
.attr
,
144 static umode_t
pcpu_dev_is_visible(struct kobject
*kobj
,
145 struct attribute
*attr
, int idx
)
147 struct device
*dev
= kobj_to_dev(kobj
);
149 * Xen never offline cpu0 due to several restrictions
150 * and assumptions. This basically doesn't add a sys control
151 * to user, one cannot attempt to offline BSP.
153 return dev
->id
? attr
->mode
: 0;
156 static const struct attribute_group pcpu_dev_group
= {
157 .attrs
= pcpu_dev_attrs
,
158 .is_visible
= pcpu_dev_is_visible
,
161 static const struct attribute_group
*pcpu_dev_groups
[] = {
166 static bool xen_pcpu_online(uint32_t flags
)
168 return !!(flags
& XEN_PCPU_FLAGS_ONLINE
);
171 static void pcpu_online_status(struct xenpf_pcpuinfo
*info
,
174 if (xen_pcpu_online(info
->flags
) &&
175 !xen_pcpu_online(pcpu
->flags
)) {
176 /* the pcpu is onlined */
177 pcpu
->flags
|= XEN_PCPU_FLAGS_ONLINE
;
178 kobject_uevent(&pcpu
->dev
.kobj
, KOBJ_ONLINE
);
179 } else if (!xen_pcpu_online(info
->flags
) &&
180 xen_pcpu_online(pcpu
->flags
)) {
181 /* The pcpu is offlined */
182 pcpu
->flags
&= ~XEN_PCPU_FLAGS_ONLINE
;
183 kobject_uevent(&pcpu
->dev
.kobj
, KOBJ_OFFLINE
);
187 static struct pcpu
*get_pcpu(uint32_t cpu_id
)
191 list_for_each_entry(pcpu
, &xen_pcpus
, list
) {
192 if (pcpu
->cpu_id
== cpu_id
)
199 static void pcpu_release(struct device
*dev
)
201 struct pcpu
*pcpu
= container_of(dev
, struct pcpu
, dev
);
203 list_del(&pcpu
->list
);
207 static void unregister_and_remove_pcpu(struct pcpu
*pcpu
)
215 /* pcpu remove would be implicitly done */
216 device_unregister(dev
);
219 static int register_pcpu(struct pcpu
*pcpu
)
228 dev
->bus
= &xen_pcpu_subsys
;
229 dev
->id
= pcpu
->cpu_id
;
230 dev
->release
= pcpu_release
;
231 dev
->groups
= pcpu_dev_groups
;
233 err
= device_register(dev
);
242 static struct pcpu
*create_and_register_pcpu(struct xenpf_pcpuinfo
*info
)
247 if (info
->flags
& XEN_PCPU_FLAGS_INVALID
)
248 return ERR_PTR(-ENODEV
);
250 pcpu
= kzalloc(sizeof(struct pcpu
), GFP_KERNEL
);
252 return ERR_PTR(-ENOMEM
);
254 INIT_LIST_HEAD(&pcpu
->list
);
255 pcpu
->cpu_id
= info
->xen_cpuid
;
256 pcpu
->acpi_id
= info
->acpi_id
;
257 pcpu
->flags
= info
->flags
;
259 /* Need hold on xen_pcpu_lock before pcpu list manipulations */
260 list_add_tail(&pcpu
->list
, &xen_pcpus
);
262 err
= register_pcpu(pcpu
);
264 pr_warn("Failed to register pcpu%u\n", info
->xen_cpuid
);
265 return ERR_PTR(-ENOENT
);
272 * Caller should hold the xen_pcpu_lock
274 static int sync_pcpu(uint32_t cpu
, uint32_t *max_cpu
)
277 struct pcpu
*pcpu
= NULL
;
278 struct xenpf_pcpuinfo
*info
;
279 struct xen_platform_op op
= {
280 .cmd
= XENPF_get_cpuinfo
,
281 .interface_version
= XENPF_INTERFACE_VERSION
,
282 .u
.pcpu_info
.xen_cpuid
= cpu
,
285 ret
= HYPERVISOR_platform_op(&op
);
289 info
= &op
.u
.pcpu_info
;
291 *max_cpu
= info
->max_present
;
293 pcpu
= get_pcpu(cpu
);
296 * Only those at cpu present map has its sys interface.
298 if (info
->flags
& XEN_PCPU_FLAGS_INVALID
) {
299 unregister_and_remove_pcpu(pcpu
);
304 pcpu
= create_and_register_pcpu(info
);
305 if (IS_ERR_OR_NULL(pcpu
))
308 pcpu_online_status(info
, pcpu
);
314 * Sync dom0's pcpu information with xen hypervisor's
316 static int xen_sync_pcpus(void)
319 * Boot cpu always have cpu_id 0 in xen
321 uint32_t cpu
= 0, max_cpu
= 0;
323 struct pcpu
*pcpu
, *tmp
;
325 mutex_lock(&xen_pcpu_lock
);
327 while (!err
&& (cpu
<= max_cpu
)) {
328 err
= sync_pcpu(cpu
, &max_cpu
);
333 list_for_each_entry_safe(pcpu
, tmp
, &xen_pcpus
, list
)
334 unregister_and_remove_pcpu(pcpu
);
336 mutex_unlock(&xen_pcpu_lock
);
341 static void xen_pcpu_work_fn(struct work_struct
*work
)
345 static DECLARE_WORK(xen_pcpu_work
, xen_pcpu_work_fn
);
347 static irqreturn_t
xen_pcpu_interrupt(int irq
, void *dev_id
)
349 schedule_work(&xen_pcpu_work
);
353 static int __init
xen_pcpu_init(void)
357 if (!xen_initial_domain())
360 irq
= bind_virq_to_irqhandler(VIRQ_PCPU_STATE
, 0,
361 xen_pcpu_interrupt
, 0,
364 pr_warn("Failed to bind pcpu virq\n");
368 ret
= subsys_system_register(&xen_pcpu_subsys
, NULL
);
370 pr_warn("Failed to register pcpu subsys\n");
374 ret
= xen_sync_pcpus();
376 pr_warn("Failed to sync pcpu info\n");
383 bus_unregister(&xen_pcpu_subsys
);
385 unbind_from_irqhandler(irq
, NULL
);
388 arch_initcall(xen_pcpu_init
);
391 bool __init
xen_processor_present(uint32_t acpi_id
)
393 const struct pcpu
*pcpu
;
396 mutex_lock(&xen_pcpu_lock
);
397 list_for_each_entry(pcpu
, &xen_pcpus
, list
)
398 if (pcpu
->acpi_id
== acpi_id
) {
399 online
= pcpu
->flags
& XEN_PCPU_FLAGS_ONLINE
;
402 mutex_unlock(&xen_pcpu_lock
);
407 void xen_sanitize_proc_cap_bits(uint32_t *cap
)
409 struct xen_platform_op op
= {
410 .cmd
= XENPF_set_processor_pminfo
,
411 .u
.set_pminfo
.id
= -1,
412 .u
.set_pminfo
.type
= XEN_PM_PDC
,
414 u32 buf
[3] = { ACPI_PDC_REVISION_ID
, 1, *cap
};
417 set_xen_guest_handle(op
.u
.set_pminfo
.pdc
, buf
);
418 ret
= HYPERVISOR_platform_op(&op
);
420 pr_err("sanitize of _PDC buffer bits from Xen failed: %d\n",