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