Bjorn Helgaas | 736759e | 2018-01-26 14:22:04 -0600 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Common ACPI functions for hot plug platforms |
| 4 | * |
| 5 | * Copyright (C) 2006 Intel Corporation |
| 6 | * |
| 7 | * All rights reserved. |
| 8 | * |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 9 | * Send feedback to <kristen.c.accardi@intel.com> |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
Kenji Kaneshige | aad20ca | 2006-05-10 22:20:34 +0900 | [diff] [blame] | 13 | #include <linux/moduleparam.h> |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 14 | #include <linux/kernel.h> |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/pci.h> |
Greg Kroah-Hartman | 7a54f25 | 2006-10-13 20:05:19 -0700 | [diff] [blame] | 17 | #include <linux/pci_hotplug.h> |
Kenji Kaneshige | 9f5404d | 2009-02-09 16:00:04 +0900 | [diff] [blame] | 18 | #include <linux/acpi.h> |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 19 | #include <linux/pci-acpi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 21 | |
Kenji Kaneshige | aad20ca | 2006-05-10 22:20:34 +0900 | [diff] [blame] | 22 | #define MY_NAME "acpi_pcihp" |
| 23 | |
Bogicevic Sasa | ff3ce48 | 2015-12-27 13:21:11 -0800 | [diff] [blame] | 24 | #define dbg(fmt, arg...) do { if (debug_acpi) printk(KERN_DEBUG "%s: %s: " fmt, MY_NAME, __func__, ## arg); } while (0) |
| 25 | #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg) |
| 26 | #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg) |
| 27 | #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg) |
Kenji Kaneshige | aad20ca | 2006-05-10 22:20:34 +0900 | [diff] [blame] | 28 | |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 29 | #define METHOD_NAME__SUN "_SUN" |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 30 | #define METHOD_NAME_OSHP "OSHP" |
| 31 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 32 | static bool debug_acpi; |
Kenji Kaneshige | aad20ca | 2006-05-10 22:20:34 +0900 | [diff] [blame] | 33 | |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 34 | /* acpi_run_oshp - get control of hotplug from the firmware |
| 35 | * |
| 36 | * @handle - the handle of the hotplug controller. |
| 37 | */ |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 38 | static acpi_status acpi_run_oshp(acpi_handle handle) |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 39 | { |
| 40 | acpi_status status; |
MUNEDA Takahiro | b2e6e3b | 2006-03-17 09:18:39 +0900 | [diff] [blame] | 41 | struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 42 | |
| 43 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &string); |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 44 | |
| 45 | /* run OSHP */ |
| 46 | status = acpi_evaluate_object(handle, METHOD_NAME_OSHP, NULL, NULL); |
| 47 | if (ACPI_FAILURE(status)) |
Kenji Kaneshige | aad20ca | 2006-05-10 22:20:34 +0900 | [diff] [blame] | 48 | if (status != AE_NOT_FOUND) |
| 49 | printk(KERN_ERR "%s:%s OSHP fails=0x%x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 50 | __func__, (char *)string.pointer, status); |
Kenji Kaneshige | aad20ca | 2006-05-10 22:20:34 +0900 | [diff] [blame] | 51 | else |
| 52 | dbg("%s:%s OSHP not found\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 53 | __func__, (char *)string.pointer); |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 54 | else |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 55 | pr_debug("%s:%s OSHP passes\n", __func__, |
MUNEDA Takahiro | b2e6e3b | 2006-03-17 09:18:39 +0900 | [diff] [blame] | 56 | (char *)string.pointer); |
| 57 | |
Kristen Accardi | 81b26bc | 2006-04-18 14:36:43 -0700 | [diff] [blame] | 58 | kfree(string.pointer); |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 59 | return status; |
| 60 | } |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 61 | |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 62 | /** |
| 63 | * acpi_get_hp_hw_control_from_firmware |
| 64 | * @dev: the pci_dev of the bridge that has a hotplug controller |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 65 | * |
| 66 | * Attempt to take hotplug control from firmware. |
| 67 | */ |
Mika Westerberg | 6f77fa4 | 2018-05-23 17:32:23 -0500 | [diff] [blame] | 68 | int acpi_get_hp_hw_control_from_firmware(struct pci_dev *pdev) |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 69 | { |
Mika Westerberg | aa6be07 | 2018-05-24 14:45:55 -0500 | [diff] [blame] | 70 | const struct pci_host_bridge *host; |
| 71 | const struct acpi_pci_root *root; |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 72 | acpi_status status; |
Jiri Slaby | e0d94be | 2008-08-11 17:47:40 +0200 | [diff] [blame] | 73 | acpi_handle chandle, handle; |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 74 | struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 75 | |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 76 | /* |
| 77 | * Per PCI firmware specification, we should run the ACPI _OSC |
| 78 | * method to get control of hotplug hardware before using it. If |
| 79 | * an _OSC is missing, we look for an OSHP to do the same thing. |
Jiri Slaby | e0d94be | 2008-08-11 17:47:40 +0200 | [diff] [blame] | 80 | * To handle different BIOS behavior, we look for _OSC on a root |
| 81 | * bridge preferentially (according to PCI fw spec). Later for |
| 82 | * OSHP within the scope of the hotplug controller and its parents, |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 83 | * up to the host bridge under which this controller exists. |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 84 | */ |
Mika Westerberg | 90cc0c3 | 2018-05-31 11:42:11 -0500 | [diff] [blame] | 85 | if (shpchp_is_native(pdev)) |
Mika Westerberg | aa6be07 | 2018-05-24 14:45:55 -0500 | [diff] [blame] | 86 | return 0; |
| 87 | |
| 88 | /* If _OSC exists, we should not evaluate OSHP */ |
Bjorn Helgaas | 6f6f424 | 2018-06-25 08:17:33 -0500 | [diff] [blame] | 89 | |
| 90 | /* |
| 91 | * If there's no ACPI host bridge (i.e., ACPI support is compiled |
| 92 | * into the kernel but the hardware platform doesn't support ACPI), |
| 93 | * there's nothing to do here. |
| 94 | */ |
Mika Westerberg | 90cc0c3 | 2018-05-31 11:42:11 -0500 | [diff] [blame] | 95 | host = pci_find_host_bridge(pdev->bus); |
Mika Westerberg | aa6be07 | 2018-05-24 14:45:55 -0500 | [diff] [blame] | 96 | root = acpi_pci_find_root(ACPI_HANDLE(&host->dev)); |
Bjorn Helgaas | 6f6f424 | 2018-06-25 08:17:33 -0500 | [diff] [blame] | 97 | if (!root) |
| 98 | return 0; |
| 99 | |
Mika Westerberg | aa6be07 | 2018-05-24 14:45:55 -0500 | [diff] [blame] | 100 | if (root->osc_support_set) |
| 101 | goto no_control; |
Jiri Slaby | e0d94be | 2008-08-11 17:47:40 +0200 | [diff] [blame] | 102 | |
Rafael J. Wysocki | 3a83f99 | 2013-11-14 23:17:21 +0100 | [diff] [blame] | 103 | handle = ACPI_HANDLE(&pdev->dev); |
Kenji Kaneshige | d391f00 | 2009-02-17 14:13:59 +0900 | [diff] [blame] | 104 | if (!handle) { |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 105 | /* |
| 106 | * This hotplug controller was not listed in the ACPI name |
Bjorn Helgaas | f2b775f | 2018-05-24 16:36:04 -0500 | [diff] [blame] | 107 | * space at all. Try to get ACPI handle of parent PCI bus. |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 108 | */ |
Kenji Kaneshige | d391f00 | 2009-02-17 14:13:59 +0900 | [diff] [blame] | 109 | struct pci_bus *pbus; |
| 110 | for (pbus = pdev->bus; pbus; pbus = pbus->parent) { |
| 111 | handle = acpi_pci_get_bridge_handle(pbus); |
| 112 | if (handle) |
| 113 | break; |
| 114 | } |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | while (handle) { |
| 118 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &string); |
Bjorn Helgaas | f2b775f | 2018-05-24 16:36:04 -0500 | [diff] [blame] | 119 | pci_info(pdev, "Requesting control of SHPC hotplug via OSHP (%s)\n", |
| 120 | (char *)string.pointer); |
Jiri Slaby | e0d94be | 2008-08-11 17:47:40 +0200 | [diff] [blame] | 121 | status = acpi_run_oshp(handle); |
| 122 | if (ACPI_SUCCESS(status)) |
| 123 | goto got_one; |
Alexander Chiang | 2755820 | 2009-06-10 19:55:14 +0000 | [diff] [blame] | 124 | if (acpi_is_root_bridge(handle)) |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 125 | break; |
| 126 | chandle = handle; |
| 127 | status = acpi_get_parent(chandle, &handle); |
| 128 | if (ACPI_FAILURE(status)) |
| 129 | break; |
| 130 | } |
Kenji Kaneshige | 9b536e0 | 2009-11-04 05:59:55 +0200 | [diff] [blame] | 131 | no_control: |
Bjorn Helgaas | f2b775f | 2018-05-24 16:36:04 -0500 | [diff] [blame] | 132 | pci_info(pdev, "Cannot get control of SHPC hotplug\n"); |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 133 | kfree(string.pointer); |
| 134 | return -ENODEV; |
Jiri Slaby | e0d94be | 2008-08-11 17:47:40 +0200 | [diff] [blame] | 135 | got_one: |
Bjorn Helgaas | f2b775f | 2018-05-24 16:36:04 -0500 | [diff] [blame] | 136 | pci_info(pdev, "Gained control of SHPC hotplug (%s)\n", |
| 137 | (char *)string.pointer); |
Jiri Slaby | e0d94be | 2008-08-11 17:47:40 +0200 | [diff] [blame] | 138 | kfree(string.pointer); |
| 139 | return 0; |
Kenji Kaneshige | ac9c052 | 2008-05-28 15:01:03 +0900 | [diff] [blame] | 140 | } |
| 141 | EXPORT_SYMBOL(acpi_get_hp_hw_control_from_firmware); |
Kristen Accardi | 783c49f | 2006-03-03 10:16:05 -0800 | [diff] [blame] | 142 | |
Thomas Renninger | efe6d72 | 2011-05-27 10:23:00 +0200 | [diff] [blame] | 143 | static int pcihp_is_ejectable(acpi_handle handle) |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 144 | { |
| 145 | acpi_status status; |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 146 | unsigned long long removable; |
Zhang Rui | 2fd6f9c | 2013-09-03 08:32:01 +0800 | [diff] [blame] | 147 | if (!acpi_has_method(handle, "_ADR")) |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 148 | return 0; |
Zhang Rui | 2fd6f9c | 2013-09-03 08:32:01 +0800 | [diff] [blame] | 149 | if (acpi_has_method(handle, "_EJ0")) |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 150 | return 1; |
| 151 | status = acpi_evaluate_integer(handle, "_RMV", NULL, &removable); |
| 152 | if (ACPI_SUCCESS(status) && removable) |
| 153 | return 1; |
| 154 | return 0; |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * acpi_pcihp_check_ejectable - check if handle is ejectable ACPI PCI slot |
| 159 | * @pbus: the PCI bus of the PCI slot corresponding to 'handle' |
| 160 | * @handle: ACPI handle to check |
| 161 | * |
| 162 | * Return 1 if handle is ejectable PCI slot, 0 otherwise. |
| 163 | */ |
| 164 | int acpi_pci_check_ejectable(struct pci_bus *pbus, acpi_handle handle) |
| 165 | { |
| 166 | acpi_handle bridge_handle, parent_handle; |
| 167 | |
Quentin Lambert | 79e50e7 | 2014-09-07 20:03:32 +0200 | [diff] [blame] | 168 | bridge_handle = acpi_pci_get_bridge_handle(pbus); |
| 169 | if (!bridge_handle) |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 170 | return 0; |
| 171 | if ((ACPI_FAILURE(acpi_get_parent(handle, &parent_handle)))) |
| 172 | return 0; |
| 173 | if (bridge_handle != parent_handle) |
| 174 | return 0; |
Thomas Renninger | efe6d72 | 2011-05-27 10:23:00 +0200 | [diff] [blame] | 175 | return pcihp_is_ejectable(handle); |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 176 | } |
| 177 | EXPORT_SYMBOL_GPL(acpi_pci_check_ejectable); |
| 178 | |
| 179 | static acpi_status |
| 180 | check_hotplug(acpi_handle handle, u32 lvl, void *context, void **rv) |
| 181 | { |
| 182 | int *found = (int *)context; |
Thomas Renninger | efe6d72 | 2011-05-27 10:23:00 +0200 | [diff] [blame] | 183 | if (pcihp_is_ejectable(handle)) { |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 184 | *found = 1; |
| 185 | return AE_CTRL_TERMINATE; |
| 186 | } |
| 187 | return AE_OK; |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * acpi_pci_detect_ejectable - check if the PCI bus has ejectable slots |
Alex Chiang | 7f53866 | 2009-09-10 12:34:09 -0600 | [diff] [blame] | 192 | * @handle - handle of the PCI bus to scan |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 193 | * |
| 194 | * Returns 1 if the PCI bus has ACPI based ejectable slots, 0 otherwise. |
| 195 | */ |
Alex Chiang | 7f53866 | 2009-09-10 12:34:09 -0600 | [diff] [blame] | 196 | int acpi_pci_detect_ejectable(acpi_handle handle) |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 197 | { |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 198 | int found = 0; |
| 199 | |
Alex Chiang | 7f53866 | 2009-09-10 12:34:09 -0600 | [diff] [blame] | 200 | if (!handle) |
| 201 | return found; |
| 202 | |
| 203 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1, |
Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 204 | check_hotplug, NULL, (void *)&found, NULL); |
Kenji Kaneshige | e8c331e | 2008-12-17 12:09:12 +0900 | [diff] [blame] | 205 | return found; |
| 206 | } |
| 207 | EXPORT_SYMBOL_GPL(acpi_pci_detect_ejectable); |
| 208 | |
Kenji Kaneshige | aad20ca | 2006-05-10 22:20:34 +0900 | [diff] [blame] | 209 | module_param(debug_acpi, bool, 0644); |
| 210 | MODULE_PARM_DESC(debug_acpi, "Debugging mode for ACPI enabled or not"); |