blob: 6b7c1ed58e7e0a2d881a97436c87ee4bc6ab7d20 [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>
Kristen Accardi783c49f2006-03-03 10:16:05 -080010 */
11
12#include <linux/module.h>
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090013#include <linux/moduleparam.h>
Kristen Accardi783c49f2006-03-03 10:16:05 -080014#include <linux/kernel.h>
15#include <linux/types.h>
16#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070017#include <linux/pci_hotplug.h>
Kenji Kaneshige9f5404d2009-02-09 16:00:04 +090018#include <linux/acpi.h>
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090019#include <linux/pci-acpi.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Kristen Accardi783c49f2006-03-03 10:16:05 -080021
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090022#define MY_NAME "acpi_pcihp"
23
Bogicevic Sasaff3ce482015-12-27 13:21:11 -080024#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 Kaneshigeaad20ca2006-05-10 22:20:34 +090028
Kristen Accardi783c49f2006-03-03 10:16:05 -080029#define METHOD_NAME__SUN "_SUN"
Kristen Accardi783c49f2006-03-03 10:16:05 -080030#define METHOD_NAME_OSHP "OSHP"
31
Rusty Russell90ab5ee2012-01-13 09:32:20 +103032static bool debug_acpi;
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090033
Kristen Accardi783c49f2006-03-03 10:16:05 -080034/* acpi_run_oshp - get control of hotplug from the firmware
35 *
36 * @handle - the handle of the hotplug controller.
37 */
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090038static acpi_status acpi_run_oshp(acpi_handle handle)
Kristen Accardi783c49f2006-03-03 10:16:05 -080039{
40 acpi_status status;
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +090041 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
42
43 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
Kristen Accardi783c49f2006-03-03 10:16:05 -080044
45 /* run OSHP */
46 status = acpi_evaluate_object(handle, METHOD_NAME_OSHP, NULL, NULL);
47 if (ACPI_FAILURE(status))
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090048 if (status != AE_NOT_FOUND)
49 printk(KERN_ERR "%s:%s OSHP fails=0x%x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -080050 __func__, (char *)string.pointer, status);
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +090051 else
52 dbg("%s:%s OSHP not found\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -080053 __func__, (char *)string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -080054 else
Harvey Harrison66bef8c2008-03-03 19:09:46 -080055 pr_debug("%s:%s OSHP passes\n", __func__,
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +090056 (char *)string.pointer);
57
Kristen Accardi81b26bc2006-04-18 14:36:43 -070058 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -080059 return status;
60}
Kristen Accardi783c49f2006-03-03 10:16:05 -080061
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090062/**
63 * acpi_get_hp_hw_control_from_firmware
64 * @dev: the pci_dev of the bridge that has a hotplug controller
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090065 *
66 * Attempt to take hotplug control from firmware.
67 */
Mika Westerberg6f77fa42018-05-23 17:32:23 -050068int acpi_get_hp_hw_control_from_firmware(struct pci_dev *pdev)
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090069{
Mika Westerbergaa6be072018-05-24 14:45:55 -050070 const struct pci_host_bridge *host;
71 const struct acpi_pci_root *root;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090072 acpi_status status;
Jiri Slabye0d94be2008-08-11 17:47:40 +020073 acpi_handle chandle, handle;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090074 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
75
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +090076 /*
Bjorn Helgaas6f6f4242018-06-25 08:17:33 -050077 * If there's no ACPI host bridge (i.e., ACPI support is compiled
78 * into the kernel but the hardware platform doesn't support ACPI),
79 * there's nothing to do here.
80 */
Mika Westerberg90cc0c32018-05-31 11:42:11 -050081 host = pci_find_host_bridge(pdev->bus);
Mika Westerbergaa6be072018-05-24 14:45:55 -050082 root = acpi_pci_find_root(ACPI_HANDLE(&host->dev));
Bjorn Helgaas6f6f4242018-06-25 08:17:33 -050083 if (!root)
84 return 0;
85
Bjorn Helgaasb03799b2018-06-25 16:49:06 -050086 /*
87 * If _OSC exists, it determines whether we're allowed to manage
88 * the SHPC. We executed it while enumerating the host bridge.
89 */
90 if (root->osc_support_set) {
91 if (host->native_shpc_hotplug)
92 return 0;
93 return -ENODEV;
94 }
Jiri Slabye0d94be2008-08-11 17:47:40 +020095
Bjorn Helgaasb03799b2018-06-25 16:49:06 -050096 /*
97 * In the absence of _OSC, we're always allowed to manage the SHPC.
98 * However, if an OSHP method is present, we must execute it so the
99 * firmware can transfer control to the OS, e.g., direct interrupts
100 * to the OS instead of to the firmware.
101 *
102 * N.B. The PCI Firmware Spec (r3.2, sec 4.8) does not endorse
103 * searching up the ACPI hierarchy, so the loops below are suspect.
104 */
Rafael J. Wysocki3a83f992013-11-14 23:17:21 +0100105 handle = ACPI_HANDLE(&pdev->dev);
Kenji Kaneshiged391f002009-02-17 14:13:59 +0900106 if (!handle) {
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900107 /*
108 * This hotplug controller was not listed in the ACPI name
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -0500109 * space at all. Try to get ACPI handle of parent PCI bus.
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900110 */
Kenji Kaneshiged391f002009-02-17 14:13:59 +0900111 struct pci_bus *pbus;
112 for (pbus = pdev->bus; pbus; pbus = pbus->parent) {
113 handle = acpi_pci_get_bridge_handle(pbus);
114 if (handle)
115 break;
116 }
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900117 }
118
119 while (handle) {
120 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -0500121 pci_info(pdev, "Requesting control of SHPC hotplug via OSHP (%s)\n",
122 (char *)string.pointer);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200123 status = acpi_run_oshp(handle);
124 if (ACPI_SUCCESS(status))
125 goto got_one;
Alexander Chiang27558202009-06-10 19:55:14 +0000126 if (acpi_is_root_bridge(handle))
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900127 break;
128 chandle = handle;
129 status = acpi_get_parent(chandle, &handle);
130 if (ACPI_FAILURE(status))
131 break;
132 }
Bjorn Helgaasb03799b2018-06-25 16:49:06 -0500133
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -0500134 pci_info(pdev, "Cannot get control of SHPC hotplug\n");
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900135 kfree(string.pointer);
136 return -ENODEV;
Jiri Slabye0d94be2008-08-11 17:47:40 +0200137got_one:
Bjorn Helgaasf2b775f2018-05-24 16:36:04 -0500138 pci_info(pdev, "Gained control of SHPC hotplug (%s)\n",
139 (char *)string.pointer);
Jiri Slabye0d94be2008-08-11 17:47:40 +0200140 kfree(string.pointer);
141 return 0;
Kenji Kaneshigeac9c0522008-05-28 15:01:03 +0900142}
143EXPORT_SYMBOL(acpi_get_hp_hw_control_from_firmware);
Kristen Accardi783c49f2006-03-03 10:16:05 -0800144
Thomas Renningerefe6d722011-05-27 10:23:00 +0200145static int pcihp_is_ejectable(acpi_handle handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900146{
147 acpi_status status;
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900148 unsigned long long removable;
Zhang Rui2fd6f9c2013-09-03 08:32:01 +0800149 if (!acpi_has_method(handle, "_ADR"))
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900150 return 0;
Zhang Rui2fd6f9c2013-09-03 08:32:01 +0800151 if (acpi_has_method(handle, "_EJ0"))
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900152 return 1;
153 status = acpi_evaluate_integer(handle, "_RMV", NULL, &removable);
154 if (ACPI_SUCCESS(status) && removable)
155 return 1;
156 return 0;
157}
158
159/**
160 * acpi_pcihp_check_ejectable - check if handle is ejectable ACPI PCI slot
161 * @pbus: the PCI bus of the PCI slot corresponding to 'handle'
162 * @handle: ACPI handle to check
163 *
164 * Return 1 if handle is ejectable PCI slot, 0 otherwise.
165 */
166int acpi_pci_check_ejectable(struct pci_bus *pbus, acpi_handle handle)
167{
168 acpi_handle bridge_handle, parent_handle;
169
Quentin Lambert79e50e72014-09-07 20:03:32 +0200170 bridge_handle = acpi_pci_get_bridge_handle(pbus);
171 if (!bridge_handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900172 return 0;
173 if ((ACPI_FAILURE(acpi_get_parent(handle, &parent_handle))))
174 return 0;
175 if (bridge_handle != parent_handle)
176 return 0;
Thomas Renningerefe6d722011-05-27 10:23:00 +0200177 return pcihp_is_ejectable(handle);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900178}
179EXPORT_SYMBOL_GPL(acpi_pci_check_ejectable);
180
181static acpi_status
182check_hotplug(acpi_handle handle, u32 lvl, void *context, void **rv)
183{
184 int *found = (int *)context;
Thomas Renningerefe6d722011-05-27 10:23:00 +0200185 if (pcihp_is_ejectable(handle)) {
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900186 *found = 1;
187 return AE_CTRL_TERMINATE;
188 }
189 return AE_OK;
190}
191
192/**
193 * acpi_pci_detect_ejectable - check if the PCI bus has ejectable slots
Alex Chiang7f538662009-09-10 12:34:09 -0600194 * @handle - handle of the PCI bus to scan
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900195 *
196 * Returns 1 if the PCI bus has ACPI based ejectable slots, 0 otherwise.
197 */
Alex Chiang7f538662009-09-10 12:34:09 -0600198int acpi_pci_detect_ejectable(acpi_handle handle)
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900199{
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900200 int found = 0;
201
Alex Chiang7f538662009-09-10 12:34:09 -0600202 if (!handle)
203 return found;
204
205 acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
Lin Ming22635762009-11-13 10:06:08 +0800206 check_hotplug, NULL, (void *)&found, NULL);
Kenji Kaneshigee8c331e2008-12-17 12:09:12 +0900207 return found;
208}
209EXPORT_SYMBOL_GPL(acpi_pci_detect_ejectable);
210
Kenji Kaneshigeaad20ca2006-05-10 22:20:34 +0900211module_param(debug_acpi, bool, 0644);
212MODULE_PARM_DESC(debug_acpi, "Debugging mode for ACPI enabled or not");