blob: a5e66df4ad14b79601b34007c7184ec6e6d36bd9 [file] [log] [blame]
Kristen Accardi783c49f2006-03-03 10:16:05 -08001/*
2 * Common ACPI functions for hot plug platforms
3 *
4 * Copyright (C) 2006 Intel Corporation
5 *
6 * All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
16 * NON INFRINGEMENT. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 * Send feedback to <kristen.c.accardi@intel.com>
24 *
25 */
26
27#include <linux/module.h>
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090028#include <linux/moduleparam.h>
Kristen Accardi783c49f2006-03-03 10:16:05 -080029#include <linux/kernel.h>
30#include <linux/types.h>
31#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070032#include <linux/pci_hotplug.h>
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +090033#include <linux/acpi.h>
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090034#include <linux/pci-acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Kristen Accardi783c49f2006-03-03 10:16:05 -080036
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090037#define MY_NAME "acpi_pcihp"
38
Bogicevic Sasaff3ce482015-12-27 13:21:11 -080039#define dbg(fmt, arg...) do { if (debug_acpi) printk(KERN_DEBUG "%s: %s: " fmt, MY_NAME, __func__, ## arg); } while (0)
40#define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg)
41#define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg)
42#define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg)
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090043
Kristen Accardi783c49f2006-03-03 10:16:05 -080044#define METHOD_NAME__SUN "_SUN"
Kristen Accardi783c49f2006-03-03 10:16:05 -080045#define METHOD_NAME_OSHP "OSHP"
46
Rusty Russell90ab5ee2012-01-13 09:32:20 +103047static bool debug_acpi;
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090048
Kristen Accardi783c49f2006-03-03 10:16:05 -080049/* acpi_run_oshp - get control of hotplug from the firmware
50 *
51 * @handle - the handle of the hotplug controller.
52 */
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090053static acpi_status acpi_run_oshp(acpi_handle handle)
Kristen Accardi783c49f2006-03-03 10:16:05 -080054{
55 acpi_status status;
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +090056 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
57
58 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
Kristen Accardi783c49f2006-03-03 10:16:05 -080059
60 /* run OSHP */
61 status = acpi_evaluate_object(handle, METHOD_NAME_OSHP, NULL, NULL);
62 if (ACPI_FAILURE(status))
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090063 if (status != AE_NOT_FOUND)
64 printk(KERN_ERR "%s:%s OSHP fails=0x%x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -080065 __func__, (char *)string.pointer, status);
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090066 else
67 dbg("%s:%s OSHP not found\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -080068 __func__, (char *)string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -080069 else
Harvey Harrison66bef8c2008-03-03 19:09:46 -080070 pr_debug("%s:%s OSHP passes\n", __func__,
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +090071 (char *)string.pointer);
72
Kristen Accardi81b26bc2006-04-18 14:36:43 -070073 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -080074 return status;
75}
Kristen Accardi783c49f2006-03-03 10:16:05 -080076
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090077/**
78 * acpi_get_hp_hw_control_from_firmware
79 * @dev: the pci_dev of the bridge that has a hotplug controller
80 * @flags: requested control bits for _OSC
81 *
82 * Attempt to take hotplug control from firmware.
83 */
Kenji Kaneshiged391f002009-02-17 14:13:59 +090084int acpi_get_hp_hw_control_from_firmware(struct pci_dev *pdev, u32 flags)
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090085{
86 acpi_status status;
Jiri Slabye0d94be2008-08-11 17:47:40 +020087 acpi_handle chandle, handle;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090088 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
89
Bjorn Helgaas7dab9ef2013-09-05 15:07:39 -060090 flags &= OSC_PCI_SHPC_NATIVE_HP_CONTROL;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090091 if (!flags) {
92 err("Invalid flags %u specified!\n", flags);
93 return -EINVAL;
94 }
95
96 /*
97 * Per PCI firmware specification, we should run the ACPI _OSC
98 * method to get control of hotplug hardware before using it. If
99 * an _OSC is missing, we look for an OSHP to do the same thing.
Jiri Slabye0d94be2008-08-11 17:47:40 +0200100 * To handle different BIOS behavior, we look for _OSC on a root
101 * bridge preferentially (according to PCI fw spec). Later for
102 * OSHP within the scope of the hotplug controller and its parents,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300103 * up to the host bridge under which this controller exists.
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900104 */
Jiri Slaby056c58e2008-08-18 20:22:54 +0200105 handle = acpi_find_root_bridge_handle(pdev);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200106 if (handle) {
107 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
108 dbg("Trying to get hotplug control for %s\n",
109 (char *)string.pointer);
Rafael J. Wysocki75fb60f2010-08-23 23:53:11 +0200110 status = acpi_pci_osc_control_set(handle, &flags, flags);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200111 if (ACPI_SUCCESS(status))
112 goto got_one;
Kenji Kaneshige9b536e02009-11-04 05:59:55 +0200113 if (status == AE_SUPPORT)
114 goto no_control;
Jiri Slabye0d94be2008-08-11 17:47:40 +0200115 kfree(string.pointer);
116 string = (struct acpi_buffer){ ACPI_ALLOCATE_BUFFER, NULL };
117 }
118
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100119 handle = ACPI_HANDLE(&pdev->dev);
Kenji Kaneshiged391f002009-02-17 14:13:59 +0900120 if (!handle) {
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900121 /*
122 * This hotplug controller was not listed in the ACPI name
123 * space at all. Try to get acpi handle of parent pci bus.
124 */
Kenji Kaneshiged391f002009-02-17 14:13:59 +0900125 struct pci_bus *pbus;
126 for (pbus = pdev->bus; pbus; pbus = pbus->parent) {
127 handle = acpi_pci_get_bridge_handle(pbus);
128 if (handle)
129 break;
130 }
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900131 }
132
133 while (handle) {
134 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800135 dbg("Trying to get hotplug control for %s\n",
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900136 (char *)string.pointer);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200137 status = acpi_run_oshp(handle);
138 if (ACPI_SUCCESS(status))
139 goto got_one;
Alexander Chiang27558202009-06-10 19:55:14 +0000140 if (acpi_is_root_bridge(handle))
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900141 break;
142 chandle = handle;
143 status = acpi_get_parent(chandle, &handle);
144 if (ACPI_FAILURE(status))
145 break;
146 }
Kenji Kaneshige9b536e02009-11-04 05:59:55 +0200147no_control:
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900148 dbg("Cannot get control of hotplug hardware for pci %s\n",
Kenji Kaneshiged391f002009-02-17 14:13:59 +0900149 pci_name(pdev));
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900150 kfree(string.pointer);
151 return -ENODEV;
Jiri Slabye0d94be2008-08-11 17:47:40 +0200152got_one:
Kenji Kaneshiged391f002009-02-17 14:13:59 +0900153 dbg("Gained control for hotplug HW for pci %s (%s)\n",
154 pci_name(pdev), (char *)string.pointer);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200155 kfree(string.pointer);
156 return 0;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900157}
158EXPORT_SYMBOL(acpi_get_hp_hw_control_from_firmware);
Kristen Accardi783c49f2006-03-03 10:16:05 -0800159
Thomas Renningerefe6d722011-05-27 10:23:00 +0200160static int pcihp_is_ejectable(acpi_handle handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900161{
162 acpi_status status;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900163 unsigned long long removable;
Zhang Rui2fd6f9c2013-09-03 08:32:01 +0800164 if (!acpi_has_method(handle, "_ADR"))
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900165 return 0;
Zhang Rui2fd6f9c2013-09-03 08:32:01 +0800166 if (acpi_has_method(handle, "_EJ0"))
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900167 return 1;
168 status = acpi_evaluate_integer(handle, "_RMV", NULL, &removable);
169 if (ACPI_SUCCESS(status) && removable)
170 return 1;
171 return 0;
172}
173
174/**
175 * acpi_pcihp_check_ejectable - check if handle is ejectable ACPI PCI slot
176 * @pbus: the PCI bus of the PCI slot corresponding to 'handle'
177 * @handle: ACPI handle to check
178 *
179 * Return 1 if handle is ejectable PCI slot, 0 otherwise.
180 */
181int acpi_pci_check_ejectable(struct pci_bus *pbus, acpi_handle handle)
182{
183 acpi_handle bridge_handle, parent_handle;
184
Quentin Lambert79e50e72014-09-07 20:03:32 +0200185 bridge_handle = acpi_pci_get_bridge_handle(pbus);
186 if (!bridge_handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900187 return 0;
188 if ((ACPI_FAILURE(acpi_get_parent(handle, &parent_handle))))
189 return 0;
190 if (bridge_handle != parent_handle)
191 return 0;
Thomas Renningerefe6d722011-05-27 10:23:00 +0200192 return pcihp_is_ejectable(handle);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900193}
194EXPORT_SYMBOL_GPL(acpi_pci_check_ejectable);
195
196static acpi_status
197check_hotplug(acpi_handle handle, u32 lvl, void *context, void **rv)
198{
199 int *found = (int *)context;
Thomas Renningerefe6d722011-05-27 10:23:00 +0200200 if (pcihp_is_ejectable(handle)) {
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900201 *found = 1;
202 return AE_CTRL_TERMINATE;
203 }
204 return AE_OK;
205}
206
207/**
208 * acpi_pci_detect_ejectable - check if the PCI bus has ejectable slots
Alex Chiang7f538662009-09-10 12:34:09 -0600209 * @handle - handle of the PCI bus to scan
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900210 *
211 * Returns 1 if the PCI bus has ACPI based ejectable slots, 0 otherwise.
212 */
Alex Chiang7f538662009-09-10 12:34:09 -0600213int acpi_pci_detect_ejectable(acpi_handle handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900214{
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900215 int found = 0;
216
Alex Chiang7f538662009-09-10 12:34:09 -0600217 if (!handle)
218 return found;
219
220 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Lin Ming22635762009-11-13 10:06:08 +0800221 check_hotplug, NULL, (void *)&found, NULL);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900222 return found;
223}
224EXPORT_SYMBOL_GPL(acpi_pci_detect_ejectable);
225
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +0900226module_param(debug_acpi, bool, 0644);
227MODULE_PARM_DESC(debug_acpi, "Debugging mode for ACPI enabled or not");