acpi_pcihp.c 6.5 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
2
 * Common ACPI functions for hot plug platforms
L
Linus Torvalds 已提交
3
 *
4
 * Copyright (C) 2006 Intel Corporation
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
 * NON INFRINGEMENT.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
23
 * Send feedback to <kristen.c.accardi@intel.com>
L
Linus Torvalds 已提交
24 25 26 27
 *
 */

#include <linux/module.h>
28
#include <linux/moduleparam.h>
L
Linus Torvalds 已提交
29 30 31
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/pci.h>
32
#include <linux/pci_hotplug.h>
33
#include <linux/acpi.h>
34
#include <linux/pci-acpi.h>
35
#include <linux/slab.h>
L
Linus Torvalds 已提交
36

37 38
#define MY_NAME	"acpi_pcihp"

B
Bogicevic Sasa 已提交
39 40 41 42
#define dbg(fmt, arg...) do { if (debug_acpi) printk(KERN_DEBUG "%s: %s: " fmt, MY_NAME, __func__, ## arg); } while (0)
#define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg)
#define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg)
#define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg)
43

L
Linus Torvalds 已提交
44 45 46
#define	METHOD_NAME__SUN	"_SUN"
#define	METHOD_NAME_OSHP	"OSHP"

47
static bool debug_acpi;
48

49 50 51 52
/* acpi_run_oshp - get control of hotplug from the firmware
 *
 * @handle - the handle of the hotplug controller.
 */
53
static acpi_status acpi_run_oshp(acpi_handle handle)
L
Linus Torvalds 已提交
54 55
{
	acpi_status		status;
56 57 58
	struct acpi_buffer	string = { ACPI_ALLOCATE_BUFFER, NULL };

	acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
L
Linus Torvalds 已提交
59 60

	/* run OSHP */
61
	status = acpi_evaluate_object(handle, METHOD_NAME_OSHP, NULL, NULL);
62
	if (ACPI_FAILURE(status))
63 64
		if (status != AE_NOT_FOUND)
			printk(KERN_ERR "%s:%s OSHP fails=0x%x\n",
65
			       __func__, (char *)string.pointer, status);
66 67
		else
			dbg("%s:%s OSHP not found\n",
68
			    __func__, (char *)string.pointer);
69
	else
70
		pr_debug("%s:%s OSHP passes\n", __func__,
71 72
			(char *)string.pointer);

73
	kfree(string.pointer);
74 75 76
	return status;
}

77 78 79 80 81 82 83
/**
 * acpi_get_hp_hw_control_from_firmware
 * @dev: the pci_dev of the bridge that has a hotplug controller
 * @flags: requested control bits for _OSC
 *
 * Attempt to take hotplug control from firmware.
 */
84
int acpi_get_hp_hw_control_from_firmware(struct pci_dev *pdev, u32 flags)
85 86
{
	acpi_status status;
87
	acpi_handle chandle, handle;
88 89
	struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };

90
	flags &= OSC_PCI_SHPC_NATIVE_HP_CONTROL;
91 92 93 94 95 96 97 98 99
	if (!flags) {
		err("Invalid flags %u specified!\n", flags);
		return -EINVAL;
	}

	/*
	 * Per PCI firmware specification, we should run the ACPI _OSC
	 * method to get control of hotplug hardware before using it. If
	 * an _OSC is missing, we look for an OSHP to do the same thing.
100 101 102
	 * To handle different BIOS behavior, we look for _OSC on a root
	 * bridge preferentially (according to PCI fw spec). Later for
	 * OSHP within the scope of the hotplug controller and its parents,
L
Lucas De Marchi 已提交
103
	 * up to the host bridge under which this controller exists.
104
	 */
105
	handle = acpi_find_root_bridge_handle(pdev);
106 107 108 109
	if (handle) {
		acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
		dbg("Trying to get hotplug control for %s\n",
				(char *)string.pointer);
110
		status = acpi_pci_osc_control_set(handle, &flags, flags);
111 112
		if (ACPI_SUCCESS(status))
			goto got_one;
K
Kenji Kaneshige 已提交
113 114
		if (status == AE_SUPPORT)
			goto no_control;
115 116 117 118
		kfree(string.pointer);
		string = (struct acpi_buffer){ ACPI_ALLOCATE_BUFFER, NULL };
	}

119
	handle = ACPI_HANDLE(&pdev->dev);
120
	if (!handle) {
121 122 123 124
		/*
		 * This hotplug controller was not listed in the ACPI name
		 * space at all. Try to get acpi handle of parent pci bus.
		 */
125 126 127 128 129 130
		struct pci_bus *pbus;
		for (pbus = pdev->bus; pbus; pbus = pbus->parent) {
			handle = acpi_pci_get_bridge_handle(pbus);
			if (handle)
				break;
		}
131 132 133 134
	}

	while (handle) {
		acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
B
Bogicevic Sasa 已提交
135
		dbg("Trying to get hotplug control for %s\n",
136
		    (char *)string.pointer);
137 138 139
		status = acpi_run_oshp(handle);
		if (ACPI_SUCCESS(status))
			goto got_one;
140
		if (acpi_is_root_bridge(handle))
141 142 143 144 145 146
			break;
		chandle = handle;
		status = acpi_get_parent(chandle, &handle);
		if (ACPI_FAILURE(status))
			break;
	}
K
Kenji Kaneshige 已提交
147
no_control:
148
	dbg("Cannot get control of hotplug hardware for pci %s\n",
149
	    pci_name(pdev));
150 151
	kfree(string.pointer);
	return -ENODEV;
152
got_one:
153 154
	dbg("Gained control for hotplug HW for pci %s (%s)\n",
	    pci_name(pdev), (char *)string.pointer);
155 156
	kfree(string.pointer);
	return 0;
157 158
}
EXPORT_SYMBOL(acpi_get_hp_hw_control_from_firmware);
L
Linus Torvalds 已提交
159

160
static int pcihp_is_ejectable(acpi_handle handle)
161 162 163
{
	acpi_status status;
	unsigned long long removable;
164
	if (!acpi_has_method(handle, "_ADR"))
165
		return 0;
166
	if (acpi_has_method(handle, "_EJ0"))
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
		return 1;
	status = acpi_evaluate_integer(handle, "_RMV", NULL, &removable);
	if (ACPI_SUCCESS(status) && removable)
		return 1;
	return 0;
}

/**
 * acpi_pcihp_check_ejectable - check if handle is ejectable ACPI PCI slot
 * @pbus: the PCI bus of the PCI slot corresponding to 'handle'
 * @handle: ACPI handle to check
 *
 * Return 1 if handle is ejectable PCI slot, 0 otherwise.
 */
int acpi_pci_check_ejectable(struct pci_bus *pbus, acpi_handle handle)
{
	acpi_handle bridge_handle, parent_handle;

185 186
	bridge_handle = acpi_pci_get_bridge_handle(pbus);
	if (!bridge_handle)
187 188 189 190 191
		return 0;
	if ((ACPI_FAILURE(acpi_get_parent(handle, &parent_handle))))
		return 0;
	if (bridge_handle != parent_handle)
		return 0;
192
	return pcihp_is_ejectable(handle);
193 194 195 196 197 198 199
}
EXPORT_SYMBOL_GPL(acpi_pci_check_ejectable);

static acpi_status
check_hotplug(acpi_handle handle, u32 lvl, void *context, void **rv)
{
	int *found = (int *)context;
200
	if (pcihp_is_ejectable(handle)) {
201 202 203 204 205 206 207 208
		*found = 1;
		return AE_CTRL_TERMINATE;
	}
	return AE_OK;
}

/**
 * acpi_pci_detect_ejectable - check if the PCI bus has ejectable slots
209
 * @handle - handle of the PCI bus to scan
210 211 212
 *
 * Returns 1 if the PCI bus has ACPI based ejectable slots, 0 otherwise.
 */
213
int acpi_pci_detect_ejectable(acpi_handle handle)
214 215 216
{
	int found = 0;

217 218 219 220
	if (!handle)
		return found;

	acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
221
			    check_hotplug, NULL, (void *)&found, NULL);
222 223 224 225
	return found;
}
EXPORT_SYMBOL_GPL(acpi_pci_detect_ejectable);

226 227
module_param(debug_acpi, bool, 0644);
MODULE_PARM_DESC(debug_acpi, "Debugging mode for ACPI enabled or not");