123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418 |
- #define pr_fmt(fmt) "xen_cpu: " fmt
- #include <linux/interrupt.h>
- #include <linux/spinlock.h>
- #include <linux/cpu.h>
- #include <linux/stat.h>
- #include <linux/capability.h>
- #include <xen/xen.h>
- #include <xen/acpi.h>
- #include <xen/xenbus.h>
- #include <xen/events.h>
- #include <xen/interface/platform.h>
- #include <asm/xen/hypervisor.h>
- #include <asm/xen/hypercall.h>
- struct pcpu {
- struct list_head list;
- struct device dev;
- uint32_t cpu_id;
- uint32_t flags;
- };
- static struct bus_type xen_pcpu_subsys = {
- .name = "xen_cpu",
- .dev_name = "xen_cpu",
- };
- static DEFINE_MUTEX(xen_pcpu_lock);
- static LIST_HEAD(xen_pcpus);
- static int xen_pcpu_down(uint32_t cpu_id)
- {
- struct xen_platform_op op = {
- .cmd = XENPF_cpu_offline,
- .interface_version = XENPF_INTERFACE_VERSION,
- .u.cpu_ol.cpuid = cpu_id,
- };
- return HYPERVISOR_platform_op(&op);
- }
- static int xen_pcpu_up(uint32_t cpu_id)
- {
- struct xen_platform_op op = {
- .cmd = XENPF_cpu_online,
- .interface_version = XENPF_INTERFACE_VERSION,
- .u.cpu_ol.cpuid = cpu_id,
- };
- return HYPERVISOR_platform_op(&op);
- }
- static ssize_t show_online(struct device *dev,
- struct device_attribute *attr,
- char *buf)
- {
- struct pcpu *cpu = container_of(dev, struct pcpu, dev);
- return sprintf(buf, "%u\n", !!(cpu->flags & XEN_PCPU_FLAGS_ONLINE));
- }
- static ssize_t __ref store_online(struct device *dev,
- struct device_attribute *attr,
- const char *buf, size_t count)
- {
- struct pcpu *pcpu = container_of(dev, struct pcpu, dev);
- unsigned long long val;
- ssize_t ret;
- if (!capable(CAP_SYS_ADMIN))
- return -EPERM;
- if (kstrtoull(buf, 0, &val) < 0)
- return -EINVAL;
- switch (val) {
- case 0:
- ret = xen_pcpu_down(pcpu->cpu_id);
- break;
- case 1:
- ret = xen_pcpu_up(pcpu->cpu_id);
- break;
- default:
- ret = -EINVAL;
- }
- if (ret >= 0)
- ret = count;
- return ret;
- }
- static DEVICE_ATTR(online, S_IRUGO | S_IWUSR, show_online, store_online);
- static struct attribute *pcpu_dev_attrs[] = {
- &dev_attr_online.attr,
- NULL
- };
- static umode_t pcpu_dev_is_visible(struct kobject *kobj,
- struct attribute *attr, int idx)
- {
- struct device *dev = kobj_to_dev(kobj);
-
- return dev->id ? attr->mode : 0;
- }
- static const struct attribute_group pcpu_dev_group = {
- .attrs = pcpu_dev_attrs,
- .is_visible = pcpu_dev_is_visible,
- };
- static const struct attribute_group *pcpu_dev_groups[] = {
- &pcpu_dev_group,
- NULL
- };
- static bool xen_pcpu_online(uint32_t flags)
- {
- return !!(flags & XEN_PCPU_FLAGS_ONLINE);
- }
- static void pcpu_online_status(struct xenpf_pcpuinfo *info,
- struct pcpu *pcpu)
- {
- if (xen_pcpu_online(info->flags) &&
- !xen_pcpu_online(pcpu->flags)) {
-
- pcpu->flags |= XEN_PCPU_FLAGS_ONLINE;
- kobject_uevent(&pcpu->dev.kobj, KOBJ_ONLINE);
- } else if (!xen_pcpu_online(info->flags) &&
- xen_pcpu_online(pcpu->flags)) {
-
- pcpu->flags &= ~XEN_PCPU_FLAGS_ONLINE;
- kobject_uevent(&pcpu->dev.kobj, KOBJ_OFFLINE);
- }
- }
- static struct pcpu *get_pcpu(uint32_t cpu_id)
- {
- struct pcpu *pcpu;
- list_for_each_entry(pcpu, &xen_pcpus, list) {
- if (pcpu->cpu_id == cpu_id)
- return pcpu;
- }
- return NULL;
- }
- static void pcpu_release(struct device *dev)
- {
- struct pcpu *pcpu = container_of(dev, struct pcpu, dev);
- list_del(&pcpu->list);
- kfree(pcpu);
- }
- static void unregister_and_remove_pcpu(struct pcpu *pcpu)
- {
- struct device *dev;
- if (!pcpu)
- return;
- dev = &pcpu->dev;
-
- device_unregister(dev);
- }
- static int register_pcpu(struct pcpu *pcpu)
- {
- struct device *dev;
- int err = -EINVAL;
- if (!pcpu)
- return err;
- dev = &pcpu->dev;
- dev->bus = &xen_pcpu_subsys;
- dev->id = pcpu->cpu_id;
- dev->release = pcpu_release;
- dev->groups = pcpu_dev_groups;
- err = device_register(dev);
- if (err) {
- pcpu_release(dev);
- return err;
- }
- return 0;
- }
- static struct pcpu *create_and_register_pcpu(struct xenpf_pcpuinfo *info)
- {
- struct pcpu *pcpu;
- int err;
- if (info->flags & XEN_PCPU_FLAGS_INVALID)
- return ERR_PTR(-ENODEV);
- pcpu = kzalloc(sizeof(struct pcpu), GFP_KERNEL);
- if (!pcpu)
- return ERR_PTR(-ENOMEM);
- INIT_LIST_HEAD(&pcpu->list);
- pcpu->cpu_id = info->xen_cpuid;
- pcpu->flags = info->flags;
-
- list_add_tail(&pcpu->list, &xen_pcpus);
- err = register_pcpu(pcpu);
- if (err) {
- pr_warn("Failed to register pcpu%u\n", info->xen_cpuid);
- return ERR_PTR(-ENOENT);
- }
- return pcpu;
- }
- static int sync_pcpu(uint32_t cpu, uint32_t *max_cpu)
- {
- int ret;
- struct pcpu *pcpu = NULL;
- struct xenpf_pcpuinfo *info;
- struct xen_platform_op op = {
- .cmd = XENPF_get_cpuinfo,
- .interface_version = XENPF_INTERFACE_VERSION,
- .u.pcpu_info.xen_cpuid = cpu,
- };
- ret = HYPERVISOR_platform_op(&op);
- if (ret)
- return ret;
- info = &op.u.pcpu_info;
- if (max_cpu)
- *max_cpu = info->max_present;
- pcpu = get_pcpu(cpu);
-
- if (info->flags & XEN_PCPU_FLAGS_INVALID) {
- unregister_and_remove_pcpu(pcpu);
- return 0;
- }
- if (!pcpu) {
- pcpu = create_and_register_pcpu(info);
- if (IS_ERR_OR_NULL(pcpu))
- return -ENODEV;
- } else
- pcpu_online_status(info, pcpu);
- return 0;
- }
- static int xen_sync_pcpus(void)
- {
-
- uint32_t cpu = 0, max_cpu = 0;
- int err = 0;
- struct pcpu *pcpu, *tmp;
- mutex_lock(&xen_pcpu_lock);
- while (!err && (cpu <= max_cpu)) {
- err = sync_pcpu(cpu, &max_cpu);
- cpu++;
- }
- if (err)
- list_for_each_entry_safe(pcpu, tmp, &xen_pcpus, list)
- unregister_and_remove_pcpu(pcpu);
- mutex_unlock(&xen_pcpu_lock);
- return err;
- }
- static void xen_pcpu_work_fn(struct work_struct *work)
- {
- xen_sync_pcpus();
- }
- static DECLARE_WORK(xen_pcpu_work, xen_pcpu_work_fn);
- static irqreturn_t xen_pcpu_interrupt(int irq, void *dev_id)
- {
- schedule_work(&xen_pcpu_work);
- return IRQ_HANDLED;
- }
- void xen_pcpu_hotplug_sync(void)
- {
- schedule_work(&xen_pcpu_work);
- }
- EXPORT_SYMBOL_GPL(xen_pcpu_hotplug_sync);
- int xen_pcpu_id(uint32_t acpi_id)
- {
- int cpu_id = 0, max_id = 0;
- struct xen_platform_op op;
- op.cmd = XENPF_get_cpuinfo;
- while (cpu_id <= max_id) {
- op.u.pcpu_info.xen_cpuid = cpu_id;
- if (HYPERVISOR_platform_op(&op)) {
- cpu_id++;
- continue;
- }
- if (acpi_id == op.u.pcpu_info.acpi_id)
- return cpu_id;
- if (op.u.pcpu_info.max_present > max_id)
- max_id = op.u.pcpu_info.max_present;
- cpu_id++;
- }
- return -ENODEV;
- }
- EXPORT_SYMBOL_GPL(xen_pcpu_id);
- static int __init xen_pcpu_init(void)
- {
- int irq, ret;
- if (!xen_initial_domain())
- return -ENODEV;
- irq = bind_virq_to_irqhandler(VIRQ_PCPU_STATE, 0,
- xen_pcpu_interrupt, 0,
- "xen-pcpu", NULL);
- if (irq < 0) {
- pr_warn("Failed to bind pcpu virq\n");
- return irq;
- }
- ret = subsys_system_register(&xen_pcpu_subsys, NULL);
- if (ret) {
- pr_warn("Failed to register pcpu subsys\n");
- goto err1;
- }
- ret = xen_sync_pcpus();
- if (ret) {
- pr_warn("Failed to sync pcpu info\n");
- goto err2;
- }
- return 0;
- err2:
- bus_unregister(&xen_pcpu_subsys);
- err1:
- unbind_from_irqhandler(irq, NULL);
- return ret;
- }
- arch_initcall(xen_pcpu_init);
|