blob: 5e18ccf5ab57c12132603e87fd056566c58a3ba7 [file] [log] [blame]
Jiang Liuc1836192015-02-05 13:44:49 +08001/*
2 * IOAPIC/IOxAPIC/IOSAPIC driver
3 *
4 * Copyright (C) 2009 Fujitsu Limited.
5 * (c) Copyright 2009 Hewlett-Packard Development Company, L.P.
6 *
7 * Copyright (C) 2014 Intel Corporation
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * Based on original drivers/pci/ioapic.c
14 * Yinghai Lu <yinghai@kernel.org>
15 * Jiang Liu <jiang.liu@intel.com>
16 */
17
18/*
19 * This driver manages I/O APICs added by hotplug after boot.
20 * We try to claim all I/O APIC devices, but those present at boot were
21 * registered when we parsed the ACPI MADT.
22 */
23
24#define pr_fmt(fmt) "ACPI : IOAPIC: " fmt
25
26#include <linux/slab.h>
27#include <linux/acpi.h>
28#include <linux/pci.h>
29#include <acpi/acpi.h>
30
31struct acpi_pci_ioapic {
32 acpi_handle root_handle;
33 acpi_handle handle;
34 u32 gsi_base;
35 struct resource res;
36 struct pci_dev *pdev;
37 struct list_head list;
38};
39
40static LIST_HEAD(ioapic_list);
41static DEFINE_MUTEX(ioapic_list_lock);
42
43static acpi_status setup_res(struct acpi_resource *acpi_res, void *data)
44{
45 struct resource *res = data;
46 struct resource_win win;
47
Joerg Roedel454cac52017-03-22 18:33:23 +010048 /*
49 * We might assign this to 'res' later, make sure all pointers are
50 * cleared before the resource is added to the global list
51 */
52 memset(&win, 0, sizeof(win));
53
Jiang Liuc1836192015-02-05 13:44:49 +080054 res->flags = 0;
Rui Wang6ab7eba2016-08-17 16:00:35 +080055 if (acpi_dev_filter_resource_type(acpi_res, IORESOURCE_MEM))
Jiang Liuc1836192015-02-05 13:44:49 +080056 return AE_OK;
57
58 if (!acpi_dev_resource_memory(acpi_res, res)) {
59 if (acpi_dev_resource_address_space(acpi_res, &win) ||
60 acpi_dev_resource_ext_address_space(acpi_res, &win))
61 *res = win.res;
62 }
63 if ((res->flags & IORESOURCE_PREFETCH) ||
64 (res->flags & IORESOURCE_DISABLED))
65 res->flags = 0;
66
67 return AE_CTRL_TERMINATE;
68}
69
70static bool acpi_is_ioapic(acpi_handle handle, char **type)
71{
72 acpi_status status;
73 struct acpi_device_info *info;
74 char *hid = NULL;
75 bool match = false;
76
77 if (!acpi_has_method(handle, "_GSB"))
78 return false;
79
80 status = acpi_get_object_info(handle, &info);
81 if (ACPI_SUCCESS(status)) {
82 if (info->valid & ACPI_VALID_HID)
83 hid = info->hardware_id.string;
84 if (hid) {
85 if (strcmp(hid, "ACPI0009") == 0) {
86 *type = "IOxAPIC";
87 match = true;
88 } else if (strcmp(hid, "ACPI000A") == 0) {
89 *type = "IOAPIC";
90 match = true;
91 }
92 }
93 kfree(info);
94 }
95
96 return match;
97}
98
99static acpi_status handle_ioapic_add(acpi_handle handle, u32 lvl,
100 void *context, void **rv)
101{
102 acpi_status status;
103 unsigned long long gsi_base;
104 struct acpi_pci_ioapic *ioapic;
105 struct pci_dev *dev = NULL;
Rui Wang162b83b2016-08-17 16:00:36 +0800106 struct resource *res = NULL, *pci_res = NULL, *crs_res;
Jiang Liuc1836192015-02-05 13:44:49 +0800107 char *type = NULL;
108
109 if (!acpi_is_ioapic(handle, &type))
110 return AE_OK;
111
112 mutex_lock(&ioapic_list_lock);
113 list_for_each_entry(ioapic, &ioapic_list, list)
114 if (ioapic->handle == handle) {
115 mutex_unlock(&ioapic_list_lock);
116 return AE_OK;
117 }
118
119 status = acpi_evaluate_integer(handle, "_GSB", NULL, &gsi_base);
120 if (ACPI_FAILURE(status)) {
121 acpi_handle_warn(handle, "failed to evaluate _GSB method\n");
122 goto exit;
123 }
124
125 ioapic = kzalloc(sizeof(*ioapic), GFP_KERNEL);
126 if (!ioapic) {
127 pr_err("cannot allocate memory for new IOAPIC\n");
128 goto exit;
129 } else {
130 ioapic->root_handle = (acpi_handle)context;
131 ioapic->handle = handle;
132 ioapic->gsi_base = (u32)gsi_base;
133 INIT_LIST_HEAD(&ioapic->list);
134 }
135
136 if (acpi_ioapic_registered(handle, (u32)gsi_base))
137 goto done;
138
139 dev = acpi_get_pci_dev(handle);
140 if (dev && pci_resource_len(dev, 0)) {
141 if (pci_enable_device(dev) < 0)
142 goto exit_put;
143 pci_set_master(dev);
144 if (pci_request_region(dev, 0, type))
145 goto exit_disable;
Rui Wang162b83b2016-08-17 16:00:36 +0800146 pci_res = &dev->resource[0];
Jiang Liuc1836192015-02-05 13:44:49 +0800147 ioapic->pdev = dev;
148 } else {
149 pci_dev_put(dev);
150 dev = NULL;
Jiang Liuc1836192015-02-05 13:44:49 +0800151 }
152
Rui Wang162b83b2016-08-17 16:00:36 +0800153 crs_res = &ioapic->res;
154 acpi_walk_resources(handle, METHOD_NAME__CRS, setup_res, crs_res);
Rui Wang624cad92016-08-17 16:00:37 +0800155 crs_res->name = type;
156 crs_res->flags |= IORESOURCE_BUSY;
Rui Wang162b83b2016-08-17 16:00:36 +0800157 if (crs_res->flags == 0) {
158 acpi_handle_warn(handle, "failed to get resource\n");
159 goto exit_release;
Rui Wang624cad92016-08-17 16:00:37 +0800160 } else if (insert_resource(&iomem_resource, crs_res)) {
Rui Wang162b83b2016-08-17 16:00:36 +0800161 acpi_handle_warn(handle, "failed to insert resource\n");
162 goto exit_release;
163 }
164
165 /* try pci resource first, then "_CRS" resource */
166 res = pci_res;
167 if (!res || !res->flags)
168 res = crs_res;
169
Jiang Liuc1836192015-02-05 13:44:49 +0800170 if (acpi_register_ioapic(handle, res->start, (u32)gsi_base)) {
171 acpi_handle_warn(handle, "failed to register IOAPIC\n");
172 goto exit_release;
173 }
174done:
175 list_add(&ioapic->list, &ioapic_list);
176 mutex_unlock(&ioapic_list_lock);
177
178 if (dev)
179 dev_info(&dev->dev, "%s at %pR, GSI %u\n",
180 type, res, (u32)gsi_base);
181 else
182 acpi_handle_info(handle, "%s at %pR, GSI %u\n",
183 type, res, (u32)gsi_base);
184
185 return AE_OK;
186
187exit_release:
188 if (dev)
189 pci_release_region(dev, 0);
Rui Wang162b83b2016-08-17 16:00:36 +0800190 if (ioapic->res.flags && ioapic->res.parent)
191 release_resource(&ioapic->res);
Jiang Liuc1836192015-02-05 13:44:49 +0800192exit_disable:
193 if (dev)
194 pci_disable_device(dev);
195exit_put:
196 pci_dev_put(dev);
Jiang Liuc1836192015-02-05 13:44:49 +0800197 kfree(ioapic);
198exit:
199 mutex_unlock(&ioapic_list_lock);
200 *(acpi_status *)rv = AE_ERROR;
201 return AE_OK;
202}
203
Rui Wangfe7bd582016-08-17 16:00:33 +0800204int acpi_ioapic_add(acpi_handle root_handle)
Jiang Liuc1836192015-02-05 13:44:49 +0800205{
206 acpi_status status, retval = AE_OK;
207
Rui Wangfe7bd582016-08-17 16:00:33 +0800208 status = acpi_walk_namespace(ACPI_TYPE_DEVICE, root_handle,
Jiang Liuc1836192015-02-05 13:44:49 +0800209 UINT_MAX, handle_ioapic_add, NULL,
Rui Wangfe7bd582016-08-17 16:00:33 +0800210 root_handle, (void **)&retval);
Jiang Liuc1836192015-02-05 13:44:49 +0800211
212 return ACPI_SUCCESS(status) && ACPI_SUCCESS(retval) ? 0 : -ENODEV;
213}
214
215int acpi_ioapic_remove(struct acpi_pci_root *root)
216{
217 int retval = 0;
218 struct acpi_pci_ioapic *ioapic, *tmp;
219
220 mutex_lock(&ioapic_list_lock);
221 list_for_each_entry_safe(ioapic, tmp, &ioapic_list, list) {
222 if (root->device->handle != ioapic->root_handle)
223 continue;
224
225 if (acpi_unregister_ioapic(ioapic->handle, ioapic->gsi_base))
226 retval = -EBUSY;
227
228 if (ioapic->pdev) {
229 pci_release_region(ioapic->pdev, 0);
230 pci_disable_device(ioapic->pdev);
231 pci_dev_put(ioapic->pdev);
Jiang Liuc1836192015-02-05 13:44:49 +0800232 }
Rui Wang162b83b2016-08-17 16:00:36 +0800233 if (ioapic->res.flags && ioapic->res.parent)
234 release_resource(&ioapic->res);
Jiang Liuc1836192015-02-05 13:44:49 +0800235 list_del(&ioapic->list);
236 kfree(ioapic);
237 }
238 mutex_unlock(&ioapic_list_lock);
239
240 return retval;
241}