blob: 3979f89b250ad86ec622d4aa90d1450422324db8 [file] [log] [blame]
Bjorn Helgaas736759e2018-01-26 14:22:04 -06001// SPDX-License-Identifier: GPL-2.0+
Kristen Accardi783c49f2006-03-03 10:16:05 -08002/*
3 * Common ACPI functions for hot plug platforms
4 *
5 * Copyright (C) 2006 Intel Corporation
6 *
7 * All rights reserved.
8 *
Kristen Accardi783c49f2006-03-03 10:16:05 -08009 * Send feedback to <kristen.c.accardi@intel.com>
10 *
11 */
12
13#include <linux/module.h>
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090014#include <linux/moduleparam.h>
Kristen Accardi783c49f2006-03-03 10:16:05 -080015#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070018#include <linux/pci_hotplug.h>
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +090019#include <linux/acpi.h>
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090020#include <linux/pci-acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Kristen Accardi783c49f2006-03-03 10:16:05 -080022
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090023#define MY_NAME "acpi_pcihp"
24
Bogicevic Sasaff3ce482015-12-27 13:21:11 -080025#define dbg(fmt, arg...) do { if (debug_acpi) printk(KERN_DEBUG "%s: %s: " fmt, MY_NAME, __func__, ## arg); } while (0)
26#define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg)
27#define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg)
28#define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg)
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090029
Kristen Accardi783c49f2006-03-03 10:16:05 -080030#define METHOD_NAME__SUN "_SUN"
Kristen Accardi783c49f2006-03-03 10:16:05 -080031#define METHOD_NAME_OSHP "OSHP"
32
Rusty Russell90ab5ee2012-01-13 09:32:20 +103033static bool debug_acpi;
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090034
Kristen Accardi783c49f2006-03-03 10:16:05 -080035/* acpi_run_oshp - get control of hotplug from the firmware
36 *
37 * @handle - the handle of the hotplug controller.
38 */
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090039static acpi_status acpi_run_oshp(acpi_handle handle)
Kristen Accardi783c49f2006-03-03 10:16:05 -080040{
41 acpi_status status;
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +090042 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
43
44 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
Kristen Accardi783c49f2006-03-03 10:16:05 -080045
46 /* run OSHP */
47 status = acpi_evaluate_object(handle, METHOD_NAME_OSHP, NULL, NULL);
48 if (ACPI_FAILURE(status))
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090049 if (status != AE_NOT_FOUND)
50 printk(KERN_ERR "%s:%s OSHP fails=0x%x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -080051 __func__, (char *)string.pointer, status);
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090052 else
53 dbg("%s:%s OSHP not found\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -080054 __func__, (char *)string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -080055 else
Harvey Harrison66bef8c2008-03-03 19:09:46 -080056 pr_debug("%s:%s OSHP passes\n", __func__,
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +090057 (char *)string.pointer);
58
Kristen Accardi81b26bc2006-04-18 14:36:43 -070059 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -080060 return status;
61}
Kristen Accardi783c49f2006-03-03 10:16:05 -080062
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090063/**
64 * acpi_get_hp_hw_control_from_firmware
65 * @dev: the pci_dev of the bridge that has a hotplug controller
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090066 *
67 * Attempt to take hotplug control from firmware.
68 */
Mika Westerberg6f77fa42018-05-23 17:32:23 -050069int acpi_get_hp_hw_control_from_firmware(struct pci_dev *pdev)
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090070{
Mika Westerbergaa6be072018-05-24 14:45:55 -050071 const struct pci_host_bridge *host;
72 const struct acpi_pci_root *root;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090073 acpi_status status;
Jiri Slabye0d94be2008-08-11 17:47:40 +020074 acpi_handle chandle, handle;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090075 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
76
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090077 /*
78 * Per PCI firmware specification, we should run the ACPI _OSC
79 * method to get control of hotplug hardware before using it. If
80 * an _OSC is missing, we look for an OSHP to do the same thing.
Jiri Slabye0d94be2008-08-11 17:47:40 +020081 * To handle different BIOS behavior, we look for _OSC on a root
82 * bridge preferentially (according to PCI fw spec). Later for
83 * OSHP within the scope of the hotplug controller and its parents,
Lucas De Marchi25985ed2011-03-30 22:57:33 -030084 * up to the host bridge under which this controller exists.
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090085 */
Mika Westerberg90cc0c32018-05-31 11:42:11 -050086 if (shpchp_is_native(pdev))
Mika Westerbergaa6be072018-05-24 14:45:55 -050087 return 0;
88
89 /* If _OSC exists, we should not evaluate OSHP */
Mika Westerberg90cc0c32018-05-31 11:42:11 -050090 host = pci_find_host_bridge(pdev->bus);
Mika Westerbergaa6be072018-05-24 14:45:55 -050091 root = acpi_pci_find_root(ACPI_HANDLE(&host->dev));
92 if (root->osc_support_set)
93 goto no_control;
Jiri Slabye0d94be2008-08-11 17:47:40 +020094
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +010095 handle = ACPI_HANDLE(&pdev->dev);
Kenji Kaneshiged391f002009-02-17 14:13:59 +090096 if (!handle) {
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090097 /*
98 * This hotplug controller was not listed in the ACPI name
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -050099 * space at all. Try to get ACPI handle of parent PCI bus.
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900100 */
Kenji Kaneshiged391f002009-02-17 14:13:59 +0900101 struct pci_bus *pbus;
102 for (pbus = pdev->bus; pbus; pbus = pbus->parent) {
103 handle = acpi_pci_get_bridge_handle(pbus);
104 if (handle)
105 break;
106 }
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900107 }
108
109 while (handle) {
110 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -0500111 pci_info(pdev, "Requesting control of SHPC hotplug via OSHP (%s)\n",
112 (char *)string.pointer);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200113 status = acpi_run_oshp(handle);
114 if (ACPI_SUCCESS(status))
115 goto got_one;
Alexander Chiang27558202009-06-10 19:55:14 +0000116 if (acpi_is_root_bridge(handle))
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900117 break;
118 chandle = handle;
119 status = acpi_get_parent(chandle, &handle);
120 if (ACPI_FAILURE(status))
121 break;
122 }
Kenji Kaneshige9b536e02009-11-04 05:59:55 +0200123no_control:
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -0500124 pci_info(pdev, "Cannot get control of SHPC hotplug\n");
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900125 kfree(string.pointer);
126 return -ENODEV;
Jiri Slabye0d94be2008-08-11 17:47:40 +0200127got_one:
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -0500128 pci_info(pdev, "Gained control of SHPC hotplug (%s)\n",
129 (char *)string.pointer);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200130 kfree(string.pointer);
131 return 0;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900132}
133EXPORT_SYMBOL(acpi_get_hp_hw_control_from_firmware);
Kristen Accardi783c49f2006-03-03 10:16:05 -0800134
Thomas Renningerefe6d722011-05-27 10:23:00 +0200135static int pcihp_is_ejectable(acpi_handle handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900136{
137 acpi_status status;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900138 unsigned long long removable;
Zhang Rui2fd6f9c2013-09-03 08:32:01 +0800139 if (!acpi_has_method(handle, "_ADR"))
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900140 return 0;
Zhang Rui2fd6f9c2013-09-03 08:32:01 +0800141 if (acpi_has_method(handle, "_EJ0"))
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900142 return 1;
143 status = acpi_evaluate_integer(handle, "_RMV", NULL, &removable);
144 if (ACPI_SUCCESS(status) && removable)
145 return 1;
146 return 0;
147}
148
149/**
150 * acpi_pcihp_check_ejectable - check if handle is ejectable ACPI PCI slot
151 * @pbus: the PCI bus of the PCI slot corresponding to 'handle'
152 * @handle: ACPI handle to check
153 *
154 * Return 1 if handle is ejectable PCI slot, 0 otherwise.
155 */
156int acpi_pci_check_ejectable(struct pci_bus *pbus, acpi_handle handle)
157{
158 acpi_handle bridge_handle, parent_handle;
159
Quentin Lambert79e50e72014-09-07 20:03:32 +0200160 bridge_handle = acpi_pci_get_bridge_handle(pbus);
161 if (!bridge_handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900162 return 0;
163 if ((ACPI_FAILURE(acpi_get_parent(handle, &parent_handle))))
164 return 0;
165 if (bridge_handle != parent_handle)
166 return 0;
Thomas Renningerefe6d722011-05-27 10:23:00 +0200167 return pcihp_is_ejectable(handle);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900168}
169EXPORT_SYMBOL_GPL(acpi_pci_check_ejectable);
170
171static acpi_status
172check_hotplug(acpi_handle handle, u32 lvl, void *context, void **rv)
173{
174 int *found = (int *)context;
Thomas Renningerefe6d722011-05-27 10:23:00 +0200175 if (pcihp_is_ejectable(handle)) {
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900176 *found = 1;
177 return AE_CTRL_TERMINATE;
178 }
179 return AE_OK;
180}
181
182/**
183 * acpi_pci_detect_ejectable - check if the PCI bus has ejectable slots
Alex Chiang7f538662009-09-10 12:34:09 -0600184 * @handle - handle of the PCI bus to scan
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900185 *
186 * Returns 1 if the PCI bus has ACPI based ejectable slots, 0 otherwise.
187 */
Alex Chiang7f538662009-09-10 12:34:09 -0600188int acpi_pci_detect_ejectable(acpi_handle handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900189{
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900190 int found = 0;
191
Alex Chiang7f538662009-09-10 12:34:09 -0600192 if (!handle)
193 return found;
194
195 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Lin Ming22635762009-11-13 10:06:08 +0800196 check_hotplug, NULL, (void *)&found, NULL);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900197 return found;
198}
199EXPORT_SYMBOL_GPL(acpi_pci_detect_ejectable);
200
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +0900201module_param(debug_acpi, bool, 0644);
202MODULE_PARM_DESC(debug_acpi, "Debugging mode for ACPI enabled or not");