| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * acpi_processor.c - ACPI Processor Driver ($Revision: 71 $) | 
 | 3 |  * | 
 | 4 |  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> | 
 | 5 |  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> | 
 | 6 |  *  Copyright (C) 2004       Dominik Brodowski <linux@brodo.de> | 
 | 7 |  *  Copyright (C) 2004  Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | 
 | 8 |  *  			- Added processor hotplug support | 
 | 9 |  * | 
 | 10 |  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
 | 11 |  * | 
 | 12 |  *  This program is free software; you can redistribute it and/or modify | 
 | 13 |  *  it under the terms of the GNU General Public License as published by | 
 | 14 |  *  the Free Software Foundation; either version 2 of the License, or (at | 
 | 15 |  *  your option) any later version. | 
 | 16 |  * | 
 | 17 |  *  This program is distributed in the hope that it will be useful, but | 
 | 18 |  *  WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 19 |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
 | 20 |  *  General Public License for more details. | 
 | 21 |  * | 
 | 22 |  *  You should have received a copy of the GNU General Public License along | 
 | 23 |  *  with this program; if not, write to the Free Software Foundation, Inc., | 
 | 24 |  *  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. | 
 | 25 |  * | 
 | 26 |  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
 | 27 |  *  TBD: | 
 | 28 |  *	1. Make # power states dynamic. | 
 | 29 |  *	2. Support duty_cycle values that span bit 4. | 
 | 30 |  *	3. Optimize by having scheduler determine business instead of | 
 | 31 |  *	   having us try to calculate it here. | 
 | 32 |  *	4. Need C1 timing -- must modify kernel (IRQ handler) to get this. | 
 | 33 |  */ | 
 | 34 |  | 
 | 35 | #include <linux/kernel.h> | 
 | 36 | #include <linux/module.h> | 
 | 37 | #include <linux/init.h> | 
 | 38 | #include <linux/types.h> | 
 | 39 | #include <linux/pci.h> | 
 | 40 | #include <linux/pm.h> | 
 | 41 | #include <linux/cpufreq.h> | 
 | 42 | #include <linux/cpu.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <linux/dmi.h> | 
 | 44 | #include <linux/moduleparam.h> | 
| Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 45 | #include <linux/cpuidle.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 46 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 |  | 
 | 48 | #include <asm/io.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | #include <asm/cpu.h> | 
 | 50 | #include <asm/delay.h> | 
 | 51 | #include <asm/uaccess.h> | 
 | 52 | #include <asm/processor.h> | 
 | 53 | #include <asm/smp.h> | 
 | 54 | #include <asm/acpi.h> | 
 | 55 |  | 
 | 56 | #include <acpi/acpi_bus.h> | 
 | 57 | #include <acpi/acpi_drivers.h> | 
 | 58 | #include <acpi/processor.h> | 
 | 59 |  | 
| Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 60 | #define PREFIX "ACPI: " | 
 | 61 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #define ACPI_PROCESSOR_CLASS		"processor" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define ACPI_PROCESSOR_DEVICE_NAME	"Processor" | 
 | 64 | #define ACPI_PROCESSOR_FILE_INFO	"info" | 
 | 65 | #define ACPI_PROCESSOR_FILE_THROTTLING	"throttling" | 
 | 66 | #define ACPI_PROCESSOR_FILE_LIMIT	"limit" | 
 | 67 | #define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80 | 
 | 68 | #define ACPI_PROCESSOR_NOTIFY_POWER	0x81 | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 69 | #define ACPI_PROCESSOR_NOTIFY_THROTTLING	0x82 | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 70 | #define ACPI_PROCESSOR_DEVICE_HID	"ACPI0007" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 |  | 
 | 72 | #define ACPI_PROCESSOR_LIMIT_USER	0 | 
 | 73 | #define ACPI_PROCESSOR_LIMIT_THERMAL	1 | 
 | 74 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #define _COMPONENT		ACPI_PROCESSOR_COMPONENT | 
| Alex Chiang | 0131aa3 | 2010-02-22 12:11:08 -0700 | [diff] [blame] | 76 | ACPI_MODULE_NAME("processor_driver"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 |  | 
| Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 78 | MODULE_AUTHOR("Paul Diefenbaugh"); | 
| Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 79 | MODULE_DESCRIPTION("ACPI Processor Driver"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | MODULE_LICENSE("GPL"); | 
 | 81 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 82 | static int acpi_processor_add(struct acpi_device *device); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 83 | static int acpi_processor_remove(struct acpi_device *device, int type); | 
| Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 84 | static void acpi_processor_notify(struct acpi_device *device, u32 event); | 
| Thomas Renninger | 3bd81a8 | 2012-01-17 22:40:07 +0100 | [diff] [blame] | 85 | static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | static int acpi_processor_handle_eject(struct acpi_processor *pr); | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 87 | static int acpi_processor_start(struct acpi_processor *pr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 |  | 
| Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 89 | static const struct acpi_device_id processor_device_ids[] = { | 
| Myron Stowe | ad93a76 | 2008-11-04 14:52:55 -0700 | [diff] [blame] | 90 | 	{ACPI_PROCESSOR_OBJECT_HID, 0}, | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 91 | 	{ACPI_PROCESSOR_DEVICE_HID, 0}, | 
| Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 92 | 	{"", 0}, | 
 | 93 | }; | 
 | 94 | MODULE_DEVICE_TABLE(acpi, processor_device_ids); | 
 | 95 |  | 
| Rafael J. Wysocki | e8110b6 | 2012-06-27 23:26:26 +0200 | [diff] [blame] | 96 | static SIMPLE_DEV_PM_OPS(acpi_processor_pm, | 
 | 97 | 			 acpi_processor_suspend, acpi_processor_resume); | 
 | 98 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | static struct acpi_driver acpi_processor_driver = { | 
| Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 100 | 	.name = "processor", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 101 | 	.class = ACPI_PROCESSOR_CLASS, | 
| Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 102 | 	.ids = processor_device_ids, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 103 | 	.ops = { | 
 | 104 | 		.add = acpi_processor_add, | 
 | 105 | 		.remove = acpi_processor_remove, | 
| Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 106 | 		.notify = acpi_processor_notify, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 107 | 		}, | 
| Rafael J. Wysocki | e8110b6 | 2012-06-27 23:26:26 +0200 | [diff] [blame] | 108 | 	.drv.pm = &acpi_processor_pm, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | }; | 
 | 110 |  | 
 | 111 | #define INSTALL_NOTIFY_HANDLER		1 | 
 | 112 | #define UNINSTALL_NOTIFY_HANDLER	2 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 |  | 
| Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 114 | DEFINE_PER_CPU(struct acpi_processor *, processors); | 
| Naga Chumbalkar | 0f1d683 | 2009-12-17 20:18:27 +0000 | [diff] [blame] | 115 | EXPORT_PER_CPU_SYMBOL(processors); | 
 | 116 |  | 
| Andreas Mohr | 9f22271 | 2006-06-23 02:04:27 -0700 | [diff] [blame] | 117 | struct acpi_processor_errata errata __read_mostly; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | /* -------------------------------------------------------------------------- | 
 | 120 |                                 Errata Handling | 
 | 121 |    -------------------------------------------------------------------------- */ | 
 | 122 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 123 | static int acpi_processor_errata_piix4(struct pci_dev *dev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 125 | 	u8 value1 = 0; | 
 | 126 | 	u8 value2 = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 |  | 
 | 129 | 	if (!dev) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 130 | 		return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 |  | 
 | 132 | 	/* | 
 | 133 | 	 * Note that 'dev' references the PIIX4 ACPI Controller. | 
 | 134 | 	 */ | 
 | 135 |  | 
| Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 136 | 	switch (dev->revision) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | 	case 0: | 
 | 138 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n")); | 
 | 139 | 		break; | 
 | 140 | 	case 1: | 
 | 141 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n")); | 
 | 142 | 		break; | 
 | 143 | 	case 2: | 
 | 144 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n")); | 
 | 145 | 		break; | 
 | 146 | 	case 3: | 
 | 147 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n")); | 
 | 148 | 		break; | 
 | 149 | 	default: | 
 | 150 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n")); | 
 | 151 | 		break; | 
 | 152 | 	} | 
 | 153 |  | 
| Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 154 | 	switch (dev->revision) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 |  | 
 | 156 | 	case 0:		/* PIIX4 A-step */ | 
 | 157 | 	case 1:		/* PIIX4 B-step */ | 
 | 158 | 		/* | 
 | 159 | 		 * See specification changes #13 ("Manual Throttle Duty Cycle") | 
 | 160 | 		 * and #14 ("Enabling and Disabling Manual Throttle"), plus | 
 | 161 | 		 * erratum #5 ("STPCLK# Deassertion Time") from the January | 
 | 162 | 		 * 2002 PIIX4 specification update.  Applies to only older | 
 | 163 | 		 * PIIX4 models. | 
 | 164 | 		 */ | 
 | 165 | 		errata.piix4.throttle = 1; | 
 | 166 |  | 
 | 167 | 	case 2:		/* PIIX4E */ | 
 | 168 | 	case 3:		/* PIIX4M */ | 
 | 169 | 		/* | 
 | 170 | 		 * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA | 
 | 171 | 		 * Livelock") from the January 2002 PIIX4 specification update. | 
 | 172 | 		 * Applies to all PIIX4 models. | 
 | 173 | 		 */ | 
 | 174 |  | 
 | 175 | 		/* | 
 | 176 | 		 * BM-IDE | 
 | 177 | 		 * ------ | 
 | 178 | 		 * Find the PIIX4 IDE Controller and get the Bus Master IDE | 
 | 179 | 		 * Status register address.  We'll use this later to read | 
 | 180 | 		 * each IDE controller's DMA status to make sure we catch all | 
 | 181 | 		 * DMA activity. | 
 | 182 | 		 */ | 
 | 183 | 		dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 184 | 				     PCI_DEVICE_ID_INTEL_82371AB, | 
 | 185 | 				     PCI_ANY_ID, PCI_ANY_ID, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | 		if (dev) { | 
 | 187 | 			errata.piix4.bmisx = pci_resource_start(dev, 4); | 
 | 188 | 			pci_dev_put(dev); | 
 | 189 | 		} | 
 | 190 |  | 
 | 191 | 		/* | 
 | 192 | 		 * Type-F DMA | 
 | 193 | 		 * ---------- | 
 | 194 | 		 * Find the PIIX4 ISA Controller and read the Motherboard | 
 | 195 | 		 * DMA controller's status to see if Type-F (Fast) DMA mode | 
 | 196 | 		 * is enabled (bit 7) on either channel.  Note that we'll | 
 | 197 | 		 * disable C3 support if this is enabled, as some legacy | 
 | 198 | 		 * devices won't operate well if fast DMA is disabled. | 
 | 199 | 		 */ | 
 | 200 | 		dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | 				     PCI_DEVICE_ID_INTEL_82371AB_0, | 
 | 202 | 				     PCI_ANY_ID, PCI_ANY_ID, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | 		if (dev) { | 
 | 204 | 			pci_read_config_byte(dev, 0x76, &value1); | 
 | 205 | 			pci_read_config_byte(dev, 0x77, &value2); | 
 | 206 | 			if ((value1 & 0x80) || (value2 & 0x80)) | 
 | 207 | 				errata.piix4.fdma = 1; | 
 | 208 | 			pci_dev_put(dev); | 
 | 209 | 		} | 
 | 210 |  | 
 | 211 | 		break; | 
 | 212 | 	} | 
 | 213 |  | 
 | 214 | 	if (errata.piix4.bmisx) | 
 | 215 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 216 | 				  "Bus master activity detection (BM-IDE) erratum enabled\n")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | 	if (errata.piix4.fdma) | 
 | 218 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 219 | 				  "Type-F DMA livelock erratum (C3 disabled)\n")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 221 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } | 
 | 223 |  | 
| Adrian Bunk | 8713cbe | 2005-09-02 17:16:48 -0400 | [diff] [blame] | 224 | static int acpi_processor_errata(struct acpi_processor *pr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 226 | 	int result = 0; | 
 | 227 | 	struct pci_dev *dev = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 |  | 
 | 230 | 	if (!pr) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 231 | 		return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 |  | 
 | 233 | 	/* | 
 | 234 | 	 * PIIX4 | 
 | 235 | 	 */ | 
 | 236 | 	dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 237 | 			     PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID, | 
 | 238 | 			     PCI_ANY_ID, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | 	if (dev) { | 
 | 240 | 		result = acpi_processor_errata_piix4(dev); | 
 | 241 | 		pci_dev_put(dev); | 
 | 242 | 	} | 
 | 243 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 244 | 	return result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } | 
 | 246 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | /* -------------------------------------------------------------------------- | 
 | 248 |                                  Driver Interface | 
 | 249 |    -------------------------------------------------------------------------- */ | 
 | 250 |  | 
| Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 251 | static int acpi_processor_get_info(struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 253 | 	acpi_status status = 0; | 
 | 254 | 	union acpi_object object = { 0 }; | 
 | 255 | 	struct acpi_buffer buffer = { sizeof(union acpi_object), &object }; | 
| Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 256 | 	struct acpi_processor *pr; | 
 | 257 | 	int cpu_index, device_declaration = 0; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 258 | 	static int cpu0_initialized; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 |  | 
| Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 260 | 	pr = acpi_driver_data(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | 	if (!pr) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 262 | 		return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 |  | 
 | 264 | 	if (num_online_cpus() > 1) | 
 | 265 | 		errata.smp = TRUE; | 
 | 266 |  | 
 | 267 | 	acpi_processor_errata(pr); | 
 | 268 |  | 
 | 269 | 	/* | 
 | 270 | 	 * Check to see if we have bus mastering arbitration control.  This | 
 | 271 | 	 * is required for proper C3 usage (to maintain cache coherency). | 
 | 272 | 	 */ | 
| Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 273 | 	if (acpi_gbl_FADT.pm2_control_block && acpi_gbl_FADT.pm2_control_length) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | 		pr->flags.bm_control = 1; | 
 | 275 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 276 | 				  "Bus mastering arbitration control present\n")); | 
 | 277 | 	} else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 279 | 				  "No bus mastering arbitration control\n")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 |  | 
| Bjorn Helgaas | 6cc73b4 | 2009-04-27 16:33:41 -0600 | [diff] [blame] | 281 | 	if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) { | 
 | 282 | 		/* Declared with "Processor" statement; match ProcessorID */ | 
 | 283 | 		status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer); | 
 | 284 | 		if (ACPI_FAILURE(status)) { | 
 | 285 | 			printk(KERN_ERR PREFIX "Evaluating processor object\n"); | 
 | 286 | 			return -ENODEV; | 
 | 287 | 		} | 
 | 288 |  | 
 | 289 | 		/* | 
 | 290 | 		 * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP. | 
 | 291 | 		 *      >>> 'acpi_get_processor_id(acpi_id, &id)' in | 
 | 292 | 		 *      arch/xxx/acpi.c | 
 | 293 | 		 */ | 
 | 294 | 		pr->acpi_id = object.processor.proc_id; | 
 | 295 | 	} else { | 
| Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 296 | 		/* | 
 | 297 | 		 * Declared with "Device" statement; match _UID. | 
 | 298 | 		 * Note that we don't handle string _UIDs yet. | 
 | 299 | 		 */ | 
| Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 300 | 		unsigned long long value; | 
| Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 301 | 		status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID, | 
 | 302 | 						NULL, &value); | 
 | 303 | 		if (ACPI_FAILURE(status)) { | 
| Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 304 | 			printk(KERN_ERR PREFIX | 
 | 305 | 			    "Evaluating processor _UID [%#x]\n", status); | 
| Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 306 | 			return -ENODEV; | 
 | 307 | 		} | 
| Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 308 | 		device_declaration = 1; | 
| Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 309 | 		pr->acpi_id = value; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | 	} | 
| Alex Chiang | 2e9d5e4 | 2010-02-22 12:11:19 -0700 | [diff] [blame] | 311 | 	cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 313 | 	/* Handle UP system running SMP kernel, with no LAPIC in MADT */ | 
| Ashok Raj | df42baa | 2006-03-28 17:04:00 -0500 | [diff] [blame] | 314 | 	if (!cpu0_initialized && (cpu_index == -1) && | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 315 | 	    (num_online_cpus() == 1)) { | 
 | 316 | 		cpu_index = 0; | 
 | 317 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 319 | 	cpu0_initialized = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 321 | 	pr->id = cpu_index; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 323 | 	/* | 
 | 324 | 	 *  Extra Processor objects may be enumerated on MP systems with | 
 | 325 | 	 *  less than the max # of CPUs. They should be ignored _iff | 
 | 326 | 	 *  they are physically not present. | 
 | 327 | 	 */ | 
| Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 328 | 	if (pr->id == -1) { | 
| Thomas Renninger | 3bd81a8 | 2012-01-17 22:40:07 +0100 | [diff] [blame] | 329 | 		if (ACPI_FAILURE(acpi_processor_hotadd_init(pr))) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 330 | 			return -ENODEV; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 331 | 	} | 
| Zhao Yakui | 7a04b84 | 2009-06-24 11:46:44 +0800 | [diff] [blame] | 332 | 	/* | 
 | 333 | 	 * On some boxes several processors use the same processor bus id. | 
 | 334 | 	 * But they are located in different scope. For example: | 
 | 335 | 	 * \_SB.SCK0.CPU0 | 
 | 336 | 	 * \_SB.SCK1.CPU0 | 
 | 337 | 	 * Rename the processor device bus id. And the new bus id will be | 
 | 338 | 	 * generated as the following format: | 
 | 339 | 	 * CPU+CPU ID. | 
 | 340 | 	 */ | 
 | 341 | 	sprintf(acpi_device_bid(device), "CPU%X", pr->id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | 	ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 343 | 			  pr->acpi_id)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 |  | 
 | 345 | 	if (!object.processor.pblk_address) | 
 | 346 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n")); | 
 | 347 | 	else if (object.processor.pblk_length != 6) | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 348 | 		printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n", | 
 | 349 | 			    object.processor.pblk_length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | 	else { | 
 | 351 | 		pr->throttling.address = object.processor.pblk_address; | 
| Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 352 | 		pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset; | 
 | 353 | 		pr->throttling.duty_width = acpi_gbl_FADT.duty_width; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 |  | 
 | 355 | 		pr->pblk = object.processor.pblk_address; | 
 | 356 |  | 
 | 357 | 		/* | 
 | 358 | 		 * We don't care about error returns - we just try to mark | 
 | 359 | 		 * these reserved so that nobody else is confused into thinking | 
 | 360 | 		 * that this region might be unused.. | 
 | 361 | 		 * | 
 | 362 | 		 * (In particular, allocating the IO range for Cardbus) | 
 | 363 | 		 */ | 
 | 364 | 		request_region(pr->throttling.address, 6, "ACPI CPU throttle"); | 
 | 365 | 	} | 
 | 366 |  | 
| Alex Chiang | fe086a7 | 2008-04-29 15:05:29 -0700 | [diff] [blame] | 367 | 	/* | 
 | 368 | 	 * If ACPI describes a slot number for this CPU, we can use it | 
 | 369 | 	 * ensure we get the right value in the "physical id" field | 
 | 370 | 	 * of /proc/cpuinfo | 
 | 371 | 	 */ | 
 | 372 | 	status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer); | 
 | 373 | 	if (ACPI_SUCCESS(status)) | 
 | 374 | 		arch_fix_phys_package_id(pr->id, object.integer.value); | 
 | 375 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 376 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } | 
 | 378 |  | 
| Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 379 | static DEFINE_PER_CPU(void *, processor_device_array); | 
| Venkatesh Pallipadi | cd8e2b4 | 2005-10-21 19:22:00 -0400 | [diff] [blame] | 380 |  | 
| Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 381 | static void acpi_processor_notify(struct acpi_device *device, u32 event) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | { | 
| Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 383 | 	struct acpi_processor *pr = acpi_driver_data(device); | 
| Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 384 | 	int saved; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 |  | 
 | 386 | 	if (!pr) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 387 | 		return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | 	switch (event) { | 
 | 390 | 	case ACPI_PROCESSOR_NOTIFY_PERFORMANCE: | 
| Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 391 | 		saved = pr->performance_platform_limit; | 
| Zhao Yakui | d81c45e | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 392 | 		acpi_processor_ppc_has_changed(pr, 1); | 
| Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 393 | 		if (saved == pr->performance_platform_limit) | 
 | 394 | 			break; | 
| Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 395 | 		acpi_bus_generate_proc_event(device, event, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 396 | 					pr->performance_platform_limit); | 
| Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 397 | 		acpi_bus_generate_netlink_event(device->pnp.device_class, | 
| Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 398 | 						  dev_name(&device->dev), event, | 
| Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 399 | 						  pr->performance_platform_limit); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | 		break; | 
 | 401 | 	case ACPI_PROCESSOR_NOTIFY_POWER: | 
 | 402 | 		acpi_processor_cst_has_changed(pr); | 
| Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 403 | 		acpi_bus_generate_proc_event(device, event, 0); | 
| Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 404 | 		acpi_bus_generate_netlink_event(device->pnp.device_class, | 
| Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 405 | 						  dev_name(&device->dev), event, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | 		break; | 
| Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 407 | 	case ACPI_PROCESSOR_NOTIFY_THROTTLING: | 
 | 408 | 		acpi_processor_tstate_has_changed(pr); | 
| Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 409 | 		acpi_bus_generate_proc_event(device, event, 0); | 
| Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 410 | 		acpi_bus_generate_netlink_event(device->pnp.device_class, | 
| Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 411 | 						  dev_name(&device->dev), event, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | 	default: | 
 | 413 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 414 | 				  "Unsupported event [0x%x]\n", event)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | 		break; | 
 | 416 | 	} | 
 | 417 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 418 | 	return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | } | 
 | 420 |  | 
| Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 421 | static int acpi_cpu_soft_notify(struct notifier_block *nfb, | 
 | 422 | 		unsigned long action, void *hcpu) | 
 | 423 | { | 
 | 424 | 	unsigned int cpu = (unsigned long)hcpu; | 
| Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 425 | 	struct acpi_processor *pr = per_cpu(processors, cpu); | 
| Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 426 |  | 
 | 427 | 	if (action == CPU_ONLINE && pr) { | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 428 | 		/* CPU got physically hotplugged and onlined the first time: | 
 | 429 | 		 * Initialize missing things | 
 | 430 | 		 */ | 
 | 431 | 		if (pr->flags.need_hotplug_init) { | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 432 | 			printk(KERN_INFO "Will online and init hotplugged " | 
 | 433 | 			       "CPU: %d\n", pr->id); | 
 | 434 | 			WARN(acpi_processor_start(pr), "Failed to start CPU:" | 
 | 435 | 				" %d\n", pr->id); | 
 | 436 | 			pr->flags.need_hotplug_init = 0; | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 437 | 		/* Normal CPU soft online event */ | 
 | 438 | 		} else { | 
 | 439 | 			acpi_processor_ppc_has_changed(pr, 0); | 
| Feng Tang | b7db60f | 2012-07-31 12:44:43 +0800 | [diff] [blame] | 440 | 			acpi_processor_hotplug(pr); | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 441 | 			acpi_processor_reevaluate_tstate(pr, action); | 
 | 442 | 			acpi_processor_tstate_has_changed(pr); | 
 | 443 | 		} | 
| Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 444 | 	} | 
| Zhao Yakui | 5a344a5 | 2011-01-10 16:35:45 +0800 | [diff] [blame] | 445 | 	if (action == CPU_DEAD && pr) { | 
 | 446 | 		/* invalidate the flag.throttling after one CPU is offline */ | 
 | 447 | 		acpi_processor_reevaluate_tstate(pr, action); | 
 | 448 | 	} | 
| Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 449 | 	return NOTIFY_OK; | 
 | 450 | } | 
 | 451 |  | 
 | 452 | static struct notifier_block acpi_cpu_notifier = | 
 | 453 | { | 
 | 454 | 	    .notifier_call = acpi_cpu_soft_notify, | 
 | 455 | }; | 
 | 456 |  | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 457 | /* | 
 | 458 |  * acpi_processor_start() is called by the cpu_hotplug_notifier func: | 
 | 459 |  * acpi_cpu_soft_notify(). Getting it __cpuinit{data} is difficult, the | 
 | 460 |  * root cause seem to be that acpi_processor_uninstall_hotplug_notify() | 
 | 461 |  * is in the module_exit (__exit) func. Allowing acpi_processor_start() | 
 | 462 |  * to not be in __cpuinit section, but being called from __cpuinit funcs | 
 | 463 |  * via __ref looks like the right thing to do here. | 
 | 464 |  */ | 
 | 465 | static __ref int acpi_processor_start(struct acpi_processor *pr) | 
| Thomas Renninger | 54d5dcc | 2012-01-19 18:18:42 +0100 | [diff] [blame] | 466 | { | 
 | 467 | 	struct acpi_device *device = per_cpu(processor_device_array, pr->id); | 
 | 468 | 	int result = 0; | 
 | 469 |  | 
 | 470 | #ifdef CONFIG_CPU_FREQ | 
 | 471 | 	acpi_processor_ppc_has_changed(pr, 0); | 
| Yinghai Lu | 976a0be | 2012-02-07 11:45:57 -0800 | [diff] [blame] | 472 | 	acpi_processor_load_module(pr); | 
| Thomas Renninger | 54d5dcc | 2012-01-19 18:18:42 +0100 | [diff] [blame] | 473 | #endif | 
 | 474 | 	acpi_processor_get_throttling_info(pr); | 
 | 475 | 	acpi_processor_get_limit_info(pr); | 
 | 476 |  | 
 | 477 | 	if (!cpuidle_get_driver() || cpuidle_get_driver() == &acpi_idle_driver) | 
| Daniel Lezcano | 38a991b | 2012-09-15 22:42:54 +0200 | [diff] [blame] | 478 | 		acpi_processor_power_init(pr); | 
| Thomas Renninger | 54d5dcc | 2012-01-19 18:18:42 +0100 | [diff] [blame] | 479 |  | 
 | 480 | 	pr->cdev = thermal_cooling_device_register("Processor", device, | 
 | 481 | 						   &processor_cooling_ops); | 
 | 482 | 	if (IS_ERR(pr->cdev)) { | 
 | 483 | 		result = PTR_ERR(pr->cdev); | 
 | 484 | 		goto err_power_exit; | 
 | 485 | 	} | 
 | 486 |  | 
 | 487 | 	dev_dbg(&device->dev, "registered as cooling_device%d\n", | 
 | 488 | 		pr->cdev->id); | 
 | 489 |  | 
 | 490 | 	result = sysfs_create_link(&device->dev.kobj, | 
 | 491 | 				   &pr->cdev->device.kobj, | 
 | 492 | 				   "thermal_cooling"); | 
 | 493 | 	if (result) { | 
 | 494 | 		printk(KERN_ERR PREFIX "Create sysfs link\n"); | 
 | 495 | 		goto err_thermal_unregister; | 
 | 496 | 	} | 
 | 497 | 	result = sysfs_create_link(&pr->cdev->device.kobj, | 
 | 498 | 				   &device->dev.kobj, | 
 | 499 | 				   "device"); | 
 | 500 | 	if (result) { | 
 | 501 | 		printk(KERN_ERR PREFIX "Create sysfs link\n"); | 
 | 502 | 		goto err_remove_sysfs_thermal; | 
 | 503 | 	} | 
 | 504 |  | 
 | 505 | 	return 0; | 
 | 506 |  | 
 | 507 | err_remove_sysfs_thermal: | 
 | 508 | 	sysfs_remove_link(&device->dev.kobj, "thermal_cooling"); | 
 | 509 | err_thermal_unregister: | 
 | 510 | 	thermal_cooling_device_unregister(pr->cdev); | 
 | 511 | err_power_exit: | 
| Daniel Lezcano | 38a991b | 2012-09-15 22:42:54 +0200 | [diff] [blame] | 512 | 	acpi_processor_power_exit(pr); | 
| Thomas Renninger | 54d5dcc | 2012-01-19 18:18:42 +0100 | [diff] [blame] | 513 |  | 
 | 514 | 	return result; | 
 | 515 | } | 
 | 516 |  | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 517 | /* | 
 | 518 |  * Do not put anything in here which needs the core to be online. | 
 | 519 |  * For example MSR access or setting up things which check for cpuinfo_x86 | 
 | 520 |  * (cpu_data(cpu)) values, like CPU feature flags, family, model, etc. | 
 | 521 |  * Such things have to be put in and set up above in acpi_processor_start() | 
 | 522 |  */ | 
| Rakib Mullick | 941b10f | 2009-11-05 16:51:40 -0500 | [diff] [blame] | 523 | static int __cpuinit acpi_processor_add(struct acpi_device *device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 525 | 	struct acpi_processor *pr = NULL; | 
| Bjorn Helgaas | 970b049 | 2009-06-22 20:41:19 +0000 | [diff] [blame] | 526 | 	int result = 0; | 
| Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 527 | 	struct device *dev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 |  | 
| Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 529 | 	pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | 	if (!pr) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 531 | 		return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 |  | 
| Yinghai Lu | eaa95840 | 2009-06-06 14:51:36 -0700 | [diff] [blame] | 533 | 	if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) { | 
| Julia Lawall | c80f5b3 | 2012-03-15 09:32:05 +0100 | [diff] [blame] | 534 | 		result = -ENOMEM; | 
 | 535 | 		goto err_free_pr; | 
| Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 536 | 	} | 
 | 537 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | 	pr->handle = device->handle; | 
 | 539 | 	strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME); | 
 | 540 | 	strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS); | 
| Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 541 | 	device->driver_data = pr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | 	result = acpi_processor_get_info(device); | 
 | 544 | 	if (result) { | 
 | 545 | 		/* Processor is physically not present */ | 
 | 546 | 		return 0; | 
 | 547 | 	} | 
 | 548 |  | 
| Thomas Renninger | 75cbfb9 | 2010-05-26 17:03:33 +0200 | [diff] [blame] | 549 | #ifdef CONFIG_SMP | 
 | 550 | 	if (pr->id >= setup_max_cpus && pr->id != 0) | 
 | 551 | 		return 0; | 
 | 552 | #endif | 
 | 553 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | 	BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0)); | 
 | 555 |  | 
 | 556 | 	/* | 
 | 557 | 	 * Buggy BIOS check | 
 | 558 | 	 * ACPI id of processors can be reported wrongly by the BIOS. | 
 | 559 | 	 * Don't trust it blindly | 
 | 560 | 	 */ | 
 | 561 | 	if (per_cpu(processor_device_array, pr->id) != NULL && | 
 | 562 | 	    per_cpu(processor_device_array, pr->id) != device) { | 
 | 563 | 		printk(KERN_WARNING "BIOS reported wrong ACPI id " | 
 | 564 | 			"for the processor\n"); | 
| Bjorn Helgaas | 970b049 | 2009-06-22 20:41:19 +0000 | [diff] [blame] | 565 | 		result = -ENODEV; | 
 | 566 | 		goto err_free_cpumask; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | 	} | 
 | 568 | 	per_cpu(processor_device_array, pr->id) = device; | 
 | 569 |  | 
 | 570 | 	per_cpu(processors, pr->id) = pr; | 
 | 571 |  | 
| Kay Sievers | 8a25a2f | 2011-12-21 14:29:42 -0800 | [diff] [blame] | 572 | 	dev = get_cpu_device(pr->id); | 
 | 573 | 	if (sysfs_create_link(&device->dev.kobj, &dev->kobj, "sysdev")) { | 
| Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 574 | 		result = -EFAULT; | 
| Julia Lawall | c80f5b3 | 2012-03-15 09:32:05 +0100 | [diff] [blame] | 575 | 		goto err_clear_processor; | 
| Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 576 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 |  | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 578 | 	/* | 
 | 579 | 	 * Do not start hotplugged CPUs now, but when they | 
 | 580 | 	 * are onlined the first time | 
 | 581 | 	 */ | 
 | 582 | 	if (pr->flags.need_hotplug_init) | 
 | 583 | 		return 0; | 
 | 584 |  | 
| Thomas Renninger | 54d5dcc | 2012-01-19 18:18:42 +0100 | [diff] [blame] | 585 | 	result = acpi_processor_start(pr); | 
 | 586 | 	if (result) | 
| Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 587 | 		goto err_remove_sysfs; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 589 | 	return 0; | 
| Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 590 |  | 
 | 591 | err_remove_sysfs: | 
| Thomas Renninger | 3333ea7 | 2011-11-17 23:37:00 +0100 | [diff] [blame] | 592 | 	sysfs_remove_link(&device->dev.kobj, "sysdev"); | 
| Julia Lawall | c80f5b3 | 2012-03-15 09:32:05 +0100 | [diff] [blame] | 593 | err_clear_processor: | 
 | 594 | 	/* | 
 | 595 | 	 * processor_device_array is not cleared to allow checks for buggy BIOS | 
 | 596 | 	 */  | 
 | 597 | 	per_cpu(processors, pr->id) = NULL; | 
| Bjorn Helgaas | 970b049 | 2009-06-22 20:41:19 +0000 | [diff] [blame] | 598 | err_free_cpumask: | 
 | 599 | 	free_cpumask_var(pr->throttling.shared_cpu_map); | 
| Julia Lawall | c80f5b3 | 2012-03-15 09:32:05 +0100 | [diff] [blame] | 600 | err_free_pr: | 
 | 601 | 	kfree(pr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | 	return result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | } | 
 | 604 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 605 | static int acpi_processor_remove(struct acpi_device *device, int type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 607 | 	struct acpi_processor *pr = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 |  | 
 | 610 | 	if (!device || !acpi_driver_data(device)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 611 | 		return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 |  | 
| Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 613 | 	pr = acpi_driver_data(device); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 |  | 
| Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 615 | 	if (pr->id >= nr_cpu_ids) | 
 | 616 | 		goto free; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 |  | 
 | 618 | 	if (type == ACPI_BUS_REMOVAL_EJECT) { | 
 | 619 | 		if (acpi_processor_handle_eject(pr)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 620 | 			return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | 	} | 
 | 622 |  | 
| Daniel Lezcano | 38a991b | 2012-09-15 22:42:54 +0200 | [diff] [blame] | 623 | 	acpi_processor_power_exit(pr); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 |  | 
| Zhang Rui | 9f1eb99 | 2008-04-29 02:36:07 -0400 | [diff] [blame] | 625 | 	sysfs_remove_link(&device->dev.kobj, "sysdev"); | 
 | 626 |  | 
| Zhao Yakui | f28bb45 | 2008-02-15 08:34:37 +0800 | [diff] [blame] | 627 | 	if (pr->cdev) { | 
 | 628 | 		sysfs_remove_link(&device->dev.kobj, "thermal_cooling"); | 
 | 629 | 		sysfs_remove_link(&pr->cdev->device.kobj, "device"); | 
 | 630 | 		thermal_cooling_device_unregister(pr->cdev); | 
 | 631 | 		pr->cdev = NULL; | 
 | 632 | 	} | 
| Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 633 |  | 
| Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 634 | 	per_cpu(processors, pr->id) = NULL; | 
 | 635 | 	per_cpu(processor_device_array, pr->id) = NULL; | 
| Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 636 |  | 
 | 637 | free: | 
 | 638 | 	free_cpumask_var(pr->throttling.shared_cpu_map); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | 	kfree(pr); | 
 | 640 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 641 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | } | 
 | 643 |  | 
 | 644 | #ifdef CONFIG_ACPI_HOTPLUG_CPU | 
 | 645 | /**************************************************************************** | 
 | 646 |  * 	Acpi processor hotplug support 				       	    * | 
 | 647 |  ****************************************************************************/ | 
 | 648 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 649 | static int is_processor_present(acpi_handle handle) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 651 | 	acpi_status status; | 
| Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 652 | 	unsigned long long sta = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 |  | 
 | 655 | 	status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); | 
| Zhang Rui | cfaf374 | 2008-01-09 02:17:47 -0500 | [diff] [blame] | 656 |  | 
 | 657 | 	if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT)) | 
 | 658 | 		return 1; | 
 | 659 |  | 
| Zhang Rui | d0ce46f | 2008-02-23 01:53:09 -0500 | [diff] [blame] | 660 | 	/* | 
 | 661 | 	 * _STA is mandatory for a processor that supports hot plug | 
 | 662 | 	 */ | 
 | 663 | 	if (status == AE_NOT_FOUND) | 
 | 664 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
 | 665 | 				"Processor does not support hot plug\n")); | 
 | 666 | 	else | 
 | 667 | 		ACPI_EXCEPTION((AE_INFO, status, | 
 | 668 | 				"Processor Device is not present")); | 
| Zhang Rui | cfaf374 | 2008-01-09 02:17:47 -0500 | [diff] [blame] | 669 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } | 
 | 671 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | static | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 673 | int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 675 | 	acpi_handle phandle; | 
 | 676 | 	struct acpi_device *pdev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 |  | 
 | 679 | 	if (acpi_get_parent(handle, &phandle)) { | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 680 | 		return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | 	} | 
 | 682 |  | 
 | 683 | 	if (acpi_bus_get_device(phandle, &pdev)) { | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 684 | 		return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | 	} | 
 | 686 |  | 
 | 687 | 	if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) { | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 688 | 		return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | 	} | 
 | 690 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 691 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | } | 
 | 693 |  | 
| Jan Beulich | 6430c9c | 2011-02-17 16:33:53 +0000 | [diff] [blame] | 694 | static void acpi_processor_hotplug_notify(acpi_handle handle, | 
 | 695 | 					  u32 event, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 697 | 	struct acpi_processor *pr; | 
 | 698 | 	struct acpi_device *device = NULL; | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 699 | 	u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | 	int result; | 
 | 701 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | 	switch (event) { | 
 | 703 | 	case ACPI_NOTIFY_BUS_CHECK: | 
 | 704 | 	case ACPI_NOTIFY_DEVICE_CHECK: | 
| Glauber Costa | d6f882e | 2008-03-04 15:06:36 -0800 | [diff] [blame] | 705 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
 | 706 | 		"Processor driver received %s event\n", | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 707 | 		       (event == ACPI_NOTIFY_BUS_CHECK) ? | 
| Glauber Costa | d6f882e | 2008-03-04 15:06:36 -0800 | [diff] [blame] | 708 | 		       "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 |  | 
 | 710 | 		if (!is_processor_present(handle)) | 
 | 711 | 			break; | 
 | 712 |  | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 713 | 		if (!acpi_bus_get_device(handle, &device)) | 
 | 714 | 			break; | 
 | 715 |  | 
 | 716 | 		result = acpi_processor_device_add(handle, &device); | 
 | 717 | 		if (result) { | 
 | 718 | 			printk(KERN_ERR PREFIX "Unable to add the device\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | 			break; | 
 | 720 | 		} | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 721 |  | 
 | 722 | 		ost_code = ACPI_OST_SC_SUCCESS; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 723 | 		break; | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 724 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | 	case ACPI_NOTIFY_EJECT_REQUEST: | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 726 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
 | 727 | 				  "received ACPI_NOTIFY_EJECT_REQUEST\n")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 |  | 
 | 729 | 		if (acpi_bus_get_device(handle, &device)) { | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 730 | 			printk(KERN_ERR PREFIX | 
 | 731 | 				    "Device don't exist, dropping EJECT\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | 			break; | 
 | 733 | 		} | 
 | 734 | 		pr = acpi_driver_data(device); | 
 | 735 | 		if (!pr) { | 
| Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 736 | 			printk(KERN_ERR PREFIX | 
 | 737 | 				    "Driver data is NULL, dropping EJECT\n"); | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 738 | 			break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | 		} | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 740 |  | 
 | 741 | 		/* REVISIT: update when eject is supported */ | 
 | 742 | 		ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | 		break; | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 744 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | 	default: | 
 | 746 | 		ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 747 | 				  "Unsupported event [0x%x]\n", event)); | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 748 |  | 
 | 749 | 		/* non-hotplug event; possibly handled by other handler */ | 
 | 750 | 		return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | 	} | 
 | 752 |  | 
| Toshi Kani | 51af3b9 | 2012-05-23 20:25:21 -0600 | [diff] [blame] | 753 | 	/* Inform firmware that the hotplug operation has completed */ | 
 | 754 | 	(void) acpi_evaluate_hotplug_ost(handle, event, ost_code, NULL); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 755 | 	return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | } | 
 | 757 |  | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 758 | static acpi_status is_processor_device(acpi_handle handle) | 
 | 759 | { | 
 | 760 | 	struct acpi_device_info *info; | 
 | 761 | 	char *hid; | 
 | 762 | 	acpi_status status; | 
 | 763 |  | 
 | 764 | 	status = acpi_get_object_info(handle, &info); | 
 | 765 | 	if (ACPI_FAILURE(status)) | 
 | 766 | 		return status; | 
 | 767 |  | 
 | 768 | 	if (info->type == ACPI_TYPE_PROCESSOR) { | 
 | 769 | 		kfree(info); | 
 | 770 | 		return AE_OK;	/* found a processor object */ | 
 | 771 | 	} | 
 | 772 |  | 
 | 773 | 	if (!(info->valid & ACPI_VALID_HID)) { | 
 | 774 | 		kfree(info); | 
 | 775 | 		return AE_ERROR; | 
 | 776 | 	} | 
 | 777 |  | 
 | 778 | 	hid = info->hardware_id.string; | 
 | 779 | 	if ((hid == NULL) || strcmp(hid, ACPI_PROCESSOR_DEVICE_HID)) { | 
 | 780 | 		kfree(info); | 
 | 781 | 		return AE_ERROR; | 
 | 782 | 	} | 
 | 783 |  | 
 | 784 | 	kfree(info); | 
 | 785 | 	return AE_OK;	/* found a processor device object */ | 
 | 786 | } | 
 | 787 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | static acpi_status | 
 | 789 | processor_walk_namespace_cb(acpi_handle handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 790 | 			    u32 lvl, void *context, void **rv) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 792 | 	acpi_status status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | 	int *action = context; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 |  | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 795 | 	status = is_processor_device(handle); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | 	if (ACPI_FAILURE(status)) | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 797 | 		return AE_OK;	/* not a processor; continue to walk */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 799 | 	switch (*action) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | 	case INSTALL_NOTIFY_HANDLER: | 
 | 801 | 		acpi_install_notify_handler(handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 802 | 					    ACPI_SYSTEM_NOTIFY, | 
 | 803 | 					    acpi_processor_hotplug_notify, | 
 | 804 | 					    NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | 		break; | 
 | 806 | 	case UNINSTALL_NOTIFY_HANDLER: | 
 | 807 | 		acpi_remove_notify_handler(handle, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 808 | 					   ACPI_SYSTEM_NOTIFY, | 
 | 809 | 					   acpi_processor_hotplug_notify); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | 		break; | 
 | 811 | 	default: | 
 | 812 | 		break; | 
 | 813 | 	} | 
 | 814 |  | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 815 | 	/* found a processor; skip walking underneath */ | 
 | 816 | 	return AE_CTRL_DEPTH; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | } | 
 | 818 |  | 
| Thomas Renninger | 3bd81a8 | 2012-01-17 22:40:07 +0100 | [diff] [blame] | 819 | static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | { | 
| Thomas Renninger | 3bd81a8 | 2012-01-17 22:40:07 +0100 | [diff] [blame] | 821 | 	acpi_handle handle = pr->handle; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 |  | 
 | 823 | 	if (!is_processor_present(handle)) { | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 824 | 		return AE_ERROR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | 	} | 
 | 826 |  | 
| Thomas Renninger | 3bd81a8 | 2012-01-17 22:40:07 +0100 | [diff] [blame] | 827 | 	if (acpi_map_lsapic(handle, &pr->id)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 828 | 		return AE_ERROR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 |  | 
| Thomas Renninger | 3bd81a8 | 2012-01-17 22:40:07 +0100 | [diff] [blame] | 830 | 	if (arch_register_cpu(pr->id)) { | 
 | 831 | 		acpi_unmap_lsapic(pr->id); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 832 | 		return AE_ERROR; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | 	} | 
 | 834 |  | 
| Thomas Renninger | 99b7250 | 2012-01-19 18:18:43 +0100 | [diff] [blame] | 835 | 	/* CPU got hot-plugged, but cpu_data is not initialized yet | 
 | 836 | 	 * Set flag to delay cpu_idle/throttling initialization | 
 | 837 | 	 * in: | 
 | 838 | 	 * acpi_processor_add() | 
 | 839 | 	 *   acpi_processor_get_info() | 
 | 840 | 	 * and do it when the CPU gets online the first time | 
 | 841 | 	 * TBD: Cleanup above functions and try to do this more elegant. | 
 | 842 | 	 */ | 
 | 843 | 	printk(KERN_INFO "CPU %d got hotplugged\n", pr->id); | 
 | 844 | 	pr->flags.need_hotplug_init = 1; | 
 | 845 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 846 | 	return AE_OK; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | } | 
 | 848 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 849 | static int acpi_processor_handle_eject(struct acpi_processor *pr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | { | 
| Zhang Rui | b62b8ef | 2008-04-29 02:35:56 -0400 | [diff] [blame] | 851 | 	if (cpu_online(pr->id)) | 
 | 852 | 		cpu_down(pr->id); | 
 | 853 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | 	arch_unregister_cpu(pr->id); | 
 | 855 | 	acpi_unmap_lsapic(pr->id); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 856 | 	return (0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | } | 
 | 858 | #else | 
| Thomas Renninger | 3bd81a8 | 2012-01-17 22:40:07 +0100 | [diff] [blame] | 859 | static acpi_status acpi_processor_hotadd_init(struct acpi_processor *pr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | { | 
 | 861 | 	return AE_ERROR; | 
 | 862 | } | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 863 | static int acpi_processor_handle_eject(struct acpi_processor *pr) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 865 | 	return (-EINVAL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | } | 
 | 867 | #endif | 
 | 868 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | static | 
 | 870 | void acpi_processor_install_hotplug_notify(void) | 
 | 871 | { | 
 | 872 | #ifdef CONFIG_ACPI_HOTPLUG_CPU | 
 | 873 | 	int action = INSTALL_NOTIFY_HANDLER; | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 874 | 	acpi_walk_namespace(ACPI_TYPE_ANY, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 875 | 			    ACPI_ROOT_OBJECT, | 
 | 876 | 			    ACPI_UINT32_MAX, | 
| Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 877 | 			    processor_walk_namespace_cb, NULL, &action, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | #endif | 
| Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 879 | 	register_hotcpu_notifier(&acpi_cpu_notifier); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | } | 
 | 881 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | static | 
 | 883 | void acpi_processor_uninstall_hotplug_notify(void) | 
 | 884 | { | 
 | 885 | #ifdef CONFIG_ACPI_HOTPLUG_CPU | 
 | 886 | 	int action = UNINSTALL_NOTIFY_HANDLER; | 
| Toshi Kani | 9f324bd | 2012-03-19 13:08:02 -0600 | [diff] [blame] | 887 | 	acpi_walk_namespace(ACPI_TYPE_ANY, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 888 | 			    ACPI_ROOT_OBJECT, | 
 | 889 | 			    ACPI_UINT32_MAX, | 
| Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 890 | 			    processor_walk_namespace_cb, NULL, &action, NULL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | #endif | 
| Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 892 | 	unregister_hotcpu_notifier(&acpi_cpu_notifier); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } | 
 | 894 |  | 
 | 895 | /* | 
 | 896 |  * We keep the driver loaded even when ACPI is not running. | 
 | 897 |  * This is needed for the powernow-k8 driver, that works even without | 
 | 898 |  * ACPI, but needs symbols from this driver | 
 | 899 |  */ | 
 | 900 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 901 | static int __init acpi_processor_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 903 | 	int result = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 |  | 
| Yinghai Lu | ce8442b | 2009-08-26 14:29:26 -0700 | [diff] [blame] | 905 | 	if (acpi_disabled) | 
 | 906 | 		return 0; | 
 | 907 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | 	result = acpi_bus_register_driver(&acpi_processor_driver); | 
| Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 909 | 	if (result < 0) | 
| Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 910 | 		return result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 |  | 
 | 912 | 	acpi_processor_install_hotplug_notify(); | 
 | 913 |  | 
 | 914 | 	acpi_thermal_cpufreq_init(); | 
 | 915 |  | 
 | 916 | 	acpi_processor_ppc_init(); | 
 | 917 |  | 
| Zhao Yakui | 1180509 | 2008-01-28 13:53:42 +0800 | [diff] [blame] | 918 | 	acpi_processor_throttling_init(); | 
 | 919 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 920 | 	return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | } | 
 | 922 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 923 | static void __exit acpi_processor_exit(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | { | 
| Yinghai Lu | ce8442b | 2009-08-26 14:29:26 -0700 | [diff] [blame] | 925 | 	if (acpi_disabled) | 
 | 926 | 		return; | 
 | 927 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | 	acpi_processor_ppc_exit(); | 
 | 929 |  | 
 | 930 | 	acpi_thermal_cpufreq_exit(); | 
 | 931 |  | 
 | 932 | 	acpi_processor_uninstall_hotplug_notify(); | 
 | 933 |  | 
 | 934 | 	acpi_bus_unregister_driver(&acpi_processor_driver); | 
 | 935 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 936 | 	return; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | } | 
 | 938 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | module_init(acpi_processor_init); | 
 | 940 | module_exit(acpi_processor_exit); | 
 | 941 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | MODULE_ALIAS("processor"); |