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> |
| 43 | #include <linux/proc_fs.h> |
| 44 | #include <linux/seq_file.h> |
| 45 | #include <linux/dmi.h> |
| 46 | #include <linux/moduleparam.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 47 | #include <linux/cpuidle.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 48 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | #include <asm/io.h> |
| 51 | #include <asm/system.h> |
| 52 | #include <asm/cpu.h> |
| 53 | #include <asm/delay.h> |
| 54 | #include <asm/uaccess.h> |
| 55 | #include <asm/processor.h> |
| 56 | #include <asm/smp.h> |
| 57 | #include <asm/acpi.h> |
| 58 | |
| 59 | #include <acpi/acpi_bus.h> |
| 60 | #include <acpi/acpi_drivers.h> |
| 61 | #include <acpi/processor.h> |
| 62 | |
Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 63 | #define PREFIX "ACPI: " |
| 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #define ACPI_PROCESSOR_CLASS "processor" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #define ACPI_PROCESSOR_DEVICE_NAME "Processor" |
| 67 | #define ACPI_PROCESSOR_FILE_INFO "info" |
| 68 | #define ACPI_PROCESSOR_FILE_THROTTLING "throttling" |
| 69 | #define ACPI_PROCESSOR_FILE_LIMIT "limit" |
| 70 | #define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80 |
| 71 | #define ACPI_PROCESSOR_NOTIFY_POWER 0x81 |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 72 | #define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | #define ACPI_PROCESSOR_LIMIT_USER 0 |
| 75 | #define ACPI_PROCESSOR_LIMIT_THERMAL 1 |
| 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #define _COMPONENT ACPI_PROCESSOR_COMPONENT |
Alex Chiang | 0131aa3 | 2010-02-22 12:11:08 -0700 | [diff] [blame] | 78 | ACPI_MODULE_NAME("processor_driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 80 | MODULE_AUTHOR("Paul Diefenbaugh"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 81 | MODULE_DESCRIPTION("ACPI Processor Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | MODULE_LICENSE("GPL"); |
| 83 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 84 | static int acpi_processor_add(struct acpi_device *device); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 85 | static int acpi_processor_remove(struct acpi_device *device, int type); |
Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 86 | static void acpi_processor_notify(struct acpi_device *device, u32 event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu); |
| 88 | static int acpi_processor_handle_eject(struct acpi_processor *pr); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 91 | static const struct acpi_device_id processor_device_ids[] = { |
Myron Stowe | ad93a76 | 2008-11-04 14:52:55 -0700 | [diff] [blame] | 92 | {ACPI_PROCESSOR_OBJECT_HID, 0}, |
Bjorn Helgaas | 9eccbc2 | 2009-04-27 16:33:46 -0600 | [diff] [blame] | 93 | {"ACPI0007", 0}, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 94 | {"", 0}, |
| 95 | }; |
| 96 | MODULE_DEVICE_TABLE(acpi, processor_device_ids); |
| 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | static struct acpi_driver acpi_processor_driver = { |
Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 99 | .name = "processor", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 100 | .class = ACPI_PROCESSOR_CLASS, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 101 | .ids = processor_device_ids, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | .ops = { |
| 103 | .add = acpi_processor_add, |
| 104 | .remove = acpi_processor_remove, |
Thomas Gleixner | b04e7bd | 2007-09-22 22:29:05 +0000 | [diff] [blame] | 105 | .suspend = acpi_processor_suspend, |
| 106 | .resume = acpi_processor_resume, |
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 | }, |
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 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 247 | static struct proc_dir_entry *acpi_processor_dir = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Thomas Renninger | bf8b454 | 2009-10-26 17:44:18 +0100 | [diff] [blame] | 249 | static int __cpuinit acpi_processor_add_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 251 | struct proc_dir_entry *entry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | if (!acpi_device_dir(device)) { |
| 255 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 256 | acpi_processor_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | if (!acpi_device_dir(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 258 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | /* 'throttling' [R/W] */ |
Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 262 | entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING, |
| 263 | S_IFREG | S_IRUGO | S_IWUSR, |
| 264 | acpi_device_dir(device), |
| 265 | &acpi_processor_throttling_fops, |
| 266 | acpi_driver_data(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 268 | return -EIO; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 269 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 271 | static int acpi_processor_remove_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
| 274 | if (acpi_device_dir(device)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 276 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | remove_proc_entry(acpi_device_bid(device), acpi_processor_dir); |
| 278 | acpi_device_dir(device) = NULL; |
| 279 | } |
| 280 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 281 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | /* -------------------------------------------------------------------------- |
| 285 | Driver Interface |
| 286 | -------------------------------------------------------------------------- */ |
| 287 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 288 | static int acpi_processor_get_info(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 290 | acpi_status status = 0; |
| 291 | union acpi_object object = { 0 }; |
| 292 | struct acpi_buffer buffer = { sizeof(union acpi_object), &object }; |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 293 | struct acpi_processor *pr; |
| 294 | int cpu_index, device_declaration = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 295 | static int cpu0_initialized; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 297 | pr = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 299 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | if (num_online_cpus() > 1) |
| 302 | errata.smp = TRUE; |
| 303 | |
| 304 | acpi_processor_errata(pr); |
| 305 | |
| 306 | /* |
| 307 | * Check to see if we have bus mastering arbitration control. This |
| 308 | * is required for proper C3 usage (to maintain cache coherency). |
| 309 | */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 310 | 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] | 311 | pr->flags.bm_control = 1; |
| 312 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 313 | "Bus mastering arbitration control present\n")); |
| 314 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 316 | "No bus mastering arbitration control\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
Bjorn Helgaas | 6cc73b4 | 2009-04-27 16:33:41 -0600 | [diff] [blame] | 318 | if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) { |
| 319 | /* Declared with "Processor" statement; match ProcessorID */ |
| 320 | status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer); |
| 321 | if (ACPI_FAILURE(status)) { |
| 322 | printk(KERN_ERR PREFIX "Evaluating processor object\n"); |
| 323 | return -ENODEV; |
| 324 | } |
| 325 | |
| 326 | /* |
| 327 | * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP. |
| 328 | * >>> 'acpi_get_processor_id(acpi_id, &id)' in |
| 329 | * arch/xxx/acpi.c |
| 330 | */ |
| 331 | pr->acpi_id = object.processor.proc_id; |
| 332 | } else { |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 333 | /* |
| 334 | * Declared with "Device" statement; match _UID. |
| 335 | * Note that we don't handle string _UIDs yet. |
| 336 | */ |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 337 | unsigned long long value; |
Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 338 | status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID, |
| 339 | NULL, &value); |
| 340 | if (ACPI_FAILURE(status)) { |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 341 | printk(KERN_ERR PREFIX |
| 342 | "Evaluating processor _UID [%#x]\n", status); |
Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 343 | return -ENODEV; |
| 344 | } |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 345 | device_declaration = 1; |
Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 346 | pr->acpi_id = value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | } |
Alex Chiang | 2e9d5e4 | 2010-02-22 12:11:19 -0700 | [diff] [blame] | 348 | cpu_index = acpi_get_cpuid(pr->handle, device_declaration, pr->acpi_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 350 | /* Handle UP system running SMP kernel, with no LAPIC in MADT */ |
Ashok Raj | df42baa | 2006-03-28 17:04:00 -0500 | [diff] [blame] | 351 | if (!cpu0_initialized && (cpu_index == -1) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 352 | (num_online_cpus() == 1)) { |
| 353 | cpu_index = 0; |
| 354 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 356 | cpu0_initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 358 | pr->id = cpu_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 360 | /* |
| 361 | * Extra Processor objects may be enumerated on MP systems with |
| 362 | * less than the max # of CPUs. They should be ignored _iff |
| 363 | * they are physically not present. |
| 364 | */ |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 365 | if (pr->id == -1) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 366 | if (ACPI_FAILURE |
| 367 | (acpi_processor_hotadd_init(pr->handle, &pr->id))) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 368 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 369 | } |
| 370 | } |
Zhao Yakui | 7a04b84 | 2009-06-24 11:46:44 +0800 | [diff] [blame] | 371 | /* |
| 372 | * On some boxes several processors use the same processor bus id. |
| 373 | * But they are located in different scope. For example: |
| 374 | * \_SB.SCK0.CPU0 |
| 375 | * \_SB.SCK1.CPU0 |
| 376 | * Rename the processor device bus id. And the new bus id will be |
| 377 | * generated as the following format: |
| 378 | * CPU+CPU ID. |
| 379 | */ |
| 380 | sprintf(acpi_device_bid(device), "CPU%X", pr->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 382 | pr->acpi_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | |
| 384 | if (!object.processor.pblk_address) |
| 385 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n")); |
| 386 | else if (object.processor.pblk_length != 6) |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 387 | printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n", |
| 388 | object.processor.pblk_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | else { |
| 390 | pr->throttling.address = object.processor.pblk_address; |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 391 | pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset; |
| 392 | pr->throttling.duty_width = acpi_gbl_FADT.duty_width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | |
| 394 | pr->pblk = object.processor.pblk_address; |
| 395 | |
| 396 | /* |
| 397 | * We don't care about error returns - we just try to mark |
| 398 | * these reserved so that nobody else is confused into thinking |
| 399 | * that this region might be unused.. |
| 400 | * |
| 401 | * (In particular, allocating the IO range for Cardbus) |
| 402 | */ |
| 403 | request_region(pr->throttling.address, 6, "ACPI CPU throttle"); |
| 404 | } |
| 405 | |
Alex Chiang | fe086a7 | 2008-04-29 15:05:29 -0700 | [diff] [blame] | 406 | /* |
| 407 | * If ACPI describes a slot number for this CPU, we can use it |
| 408 | * ensure we get the right value in the "physical id" field |
| 409 | * of /proc/cpuinfo |
| 410 | */ |
| 411 | status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer); |
| 412 | if (ACPI_SUCCESS(status)) |
| 413 | arch_fix_phys_package_id(pr->id, object.integer.value); |
| 414 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 415 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 418 | static DEFINE_PER_CPU(void *, processor_device_array); |
Venkatesh Pallipadi | cd8e2b4 | 2005-10-21 19:22:00 -0400 | [diff] [blame] | 419 | |
Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 420 | static void acpi_processor_notify(struct acpi_device *device, u32 event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | { |
Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 422 | struct acpi_processor *pr = acpi_driver_data(device); |
Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 423 | int saved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
| 425 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 426 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | switch (event) { |
| 429 | case ACPI_PROCESSOR_NOTIFY_PERFORMANCE: |
Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 430 | saved = pr->performance_platform_limit; |
Zhao Yakui | d81c45e1 | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 431 | acpi_processor_ppc_has_changed(pr, 1); |
Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 432 | if (saved == pr->performance_platform_limit) |
| 433 | break; |
Len Brown | 14e04fb3 | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 434 | acpi_bus_generate_proc_event(device, event, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 435 | pr->performance_platform_limit); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 436 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 437 | dev_name(&device->dev), event, |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 438 | pr->performance_platform_limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | break; |
| 440 | case ACPI_PROCESSOR_NOTIFY_POWER: |
| 441 | acpi_processor_cst_has_changed(pr); |
Len Brown | 14e04fb3 | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 442 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 443 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 444 | dev_name(&device->dev), event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | break; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 446 | case ACPI_PROCESSOR_NOTIFY_THROTTLING: |
| 447 | acpi_processor_tstate_has_changed(pr); |
Len Brown | 14e04fb3 | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 448 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 449 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 450 | dev_name(&device->dev), event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | default: |
| 452 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 453 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | break; |
| 455 | } |
| 456 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 457 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 460 | static int acpi_cpu_soft_notify(struct notifier_block *nfb, |
| 461 | unsigned long action, void *hcpu) |
| 462 | { |
| 463 | unsigned int cpu = (unsigned long)hcpu; |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 464 | struct acpi_processor *pr = per_cpu(processors, cpu); |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 465 | |
| 466 | if (action == CPU_ONLINE && pr) { |
Zhao Yakui | d81c45e1 | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 467 | acpi_processor_ppc_has_changed(pr, 0); |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 468 | acpi_processor_cst_has_changed(pr); |
| 469 | acpi_processor_tstate_has_changed(pr); |
| 470 | } |
| 471 | return NOTIFY_OK; |
| 472 | } |
| 473 | |
| 474 | static struct notifier_block acpi_cpu_notifier = |
| 475 | { |
| 476 | .notifier_call = acpi_cpu_soft_notify, |
| 477 | }; |
| 478 | |
Rakib Mullick | 941b10f | 2009-11-05 16:51:40 -0500 | [diff] [blame] | 479 | static int __cpuinit acpi_processor_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 481 | struct acpi_processor *pr = NULL; |
Bjorn Helgaas | 970b049 | 2009-06-22 20:41:19 +0000 | [diff] [blame] | 482 | int result = 0; |
| 483 | struct sys_device *sysdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 485 | pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 487 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Yinghai Lu | eaa9584 | 2009-06-06 14:51:36 -0700 | [diff] [blame] | 489 | if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) { |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 490 | kfree(pr); |
| 491 | return -ENOMEM; |
| 492 | } |
| 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | pr->handle = device->handle; |
| 495 | strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME); |
| 496 | strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 497 | device->driver_data = pr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | result = acpi_processor_get_info(device); |
| 500 | if (result) { |
| 501 | /* Processor is physically not present */ |
| 502 | return 0; |
| 503 | } |
| 504 | |
Thomas Renninger | 75cbfb9 | 2010-05-26 17:03:33 +0200 | [diff] [blame] | 505 | #ifdef CONFIG_SMP |
| 506 | if (pr->id >= setup_max_cpus && pr->id != 0) |
| 507 | return 0; |
| 508 | #endif |
| 509 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0)); |
| 511 | |
| 512 | /* |
| 513 | * Buggy BIOS check |
| 514 | * ACPI id of processors can be reported wrongly by the BIOS. |
| 515 | * Don't trust it blindly |
| 516 | */ |
| 517 | if (per_cpu(processor_device_array, pr->id) != NULL && |
| 518 | per_cpu(processor_device_array, pr->id) != device) { |
| 519 | printk(KERN_WARNING "BIOS reported wrong ACPI id " |
| 520 | "for the processor\n"); |
Bjorn Helgaas | 970b049 | 2009-06-22 20:41:19 +0000 | [diff] [blame] | 521 | result = -ENODEV; |
| 522 | goto err_free_cpumask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | } |
| 524 | per_cpu(processor_device_array, pr->id) = device; |
| 525 | |
| 526 | per_cpu(processors, pr->id) = pr; |
| 527 | |
| 528 | result = acpi_processor_add_fs(device); |
| 529 | if (result) |
Bjorn Helgaas | 970b049 | 2009-06-22 20:41:19 +0000 | [diff] [blame] | 530 | goto err_free_cpumask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
| 532 | sysdev = get_cpu_sysdev(pr->id); |
Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 533 | if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) { |
| 534 | result = -EFAULT; |
| 535 | goto err_remove_fs; |
| 536 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | #ifdef CONFIG_CPU_FREQ |
Zhao Yakui | d81c45e1 | 2009-10-16 09:20:41 +0800 | [diff] [blame] | 539 | acpi_processor_ppc_has_changed(pr, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | #endif |
| 541 | acpi_processor_get_throttling_info(pr); |
| 542 | acpi_processor_get_limit_info(pr); |
| 543 | |
| 544 | |
Len Brown | 541adf7 | 2010-05-22 17:03:29 -0400 | [diff] [blame] | 545 | if (cpuidle_get_driver() == &acpi_idle_driver) |
| 546 | acpi_processor_power_init(pr, device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | |
| 548 | pr->cdev = thermal_cooling_device_register("Processor", device, |
| 549 | &processor_cooling_ops); |
| 550 | if (IS_ERR(pr->cdev)) { |
| 551 | result = PTR_ERR(pr->cdev); |
Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 552 | goto err_power_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Mike Travis | 13c4115 | 2009-12-14 13:38:30 -0800 | [diff] [blame] | 555 | dev_dbg(&device->dev, "registered as cooling_device%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | pr->cdev->id); |
| 557 | |
| 558 | result = sysfs_create_link(&device->dev.kobj, |
| 559 | &pr->cdev->device.kobj, |
| 560 | "thermal_cooling"); |
Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 561 | if (result) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | printk(KERN_ERR PREFIX "Create sysfs link\n"); |
Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 563 | goto err_thermal_unregister; |
| 564 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | result = sysfs_create_link(&pr->cdev->device.kobj, |
| 566 | &device->dev.kobj, |
| 567 | "device"); |
Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 568 | if (result) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | printk(KERN_ERR PREFIX "Create sysfs link\n"); |
Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 570 | goto err_remove_sysfs; |
| 571 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 573 | return 0; |
Bjorn Helgaas | d4e0526 | 2009-06-22 20:41:09 +0000 | [diff] [blame] | 574 | |
| 575 | err_remove_sysfs: |
| 576 | sysfs_remove_link(&device->dev.kobj, "thermal_cooling"); |
| 577 | err_thermal_unregister: |
| 578 | thermal_cooling_device_unregister(pr->cdev); |
| 579 | err_power_exit: |
| 580 | acpi_processor_power_exit(pr, device); |
| 581 | err_remove_fs: |
| 582 | acpi_processor_remove_fs(device); |
Bjorn Helgaas | 970b049 | 2009-06-22 20:41:19 +0000 | [diff] [blame] | 583 | err_free_cpumask: |
| 584 | free_cpumask_var(pr->throttling.shared_cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
| 586 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } |
| 588 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 589 | static int acpi_processor_remove(struct acpi_device *device, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 591 | struct acpi_processor *pr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
| 594 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 595 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 597 | pr = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 599 | if (pr->id >= nr_cpu_ids) |
| 600 | goto free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | |
| 602 | if (type == ACPI_BUS_REMOVAL_EJECT) { |
| 603 | if (acpi_processor_handle_eject(pr)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 604 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | acpi_processor_power_exit(pr, device); |
| 608 | |
Zhang Rui | 9f1eb99 | 2008-04-29 02:36:07 -0400 | [diff] [blame] | 609 | sysfs_remove_link(&device->dev.kobj, "sysdev"); |
| 610 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | acpi_processor_remove_fs(device); |
| 612 | |
Zhao Yakui | f28bb45 | 2008-02-15 08:34:37 +0800 | [diff] [blame] | 613 | if (pr->cdev) { |
| 614 | sysfs_remove_link(&device->dev.kobj, "thermal_cooling"); |
| 615 | sysfs_remove_link(&pr->cdev->device.kobj, "device"); |
| 616 | thermal_cooling_device_unregister(pr->cdev); |
| 617 | pr->cdev = NULL; |
| 618 | } |
Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 619 | |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 620 | per_cpu(processors, pr->id) = NULL; |
| 621 | per_cpu(processor_device_array, pr->id) = NULL; |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 622 | |
| 623 | free: |
| 624 | free_cpumask_var(pr->throttling.shared_cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | kfree(pr); |
| 626 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 627 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
| 631 | /**************************************************************************** |
| 632 | * Acpi processor hotplug support * |
| 633 | ****************************************************************************/ |
| 634 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 635 | static int is_processor_present(acpi_handle handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 637 | acpi_status status; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 638 | unsigned long long sta = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
| 641 | status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); |
Zhang Rui | cfaf374 | 2008-01-09 02:17:47 -0500 | [diff] [blame] | 642 | |
| 643 | if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT)) |
| 644 | return 1; |
| 645 | |
Zhang Rui | d0ce46f | 2008-02-23 01:53:09 -0500 | [diff] [blame] | 646 | /* |
| 647 | * _STA is mandatory for a processor that supports hot plug |
| 648 | */ |
| 649 | if (status == AE_NOT_FOUND) |
| 650 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 651 | "Processor does not support hot plug\n")); |
| 652 | else |
| 653 | ACPI_EXCEPTION((AE_INFO, status, |
| 654 | "Processor Device is not present")); |
Zhang Rui | cfaf374 | 2008-01-09 02:17:47 -0500 | [diff] [blame] | 655 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | } |
| 657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | static |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 659 | int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 661 | acpi_handle phandle; |
| 662 | struct acpi_device *pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | |
| 665 | if (acpi_get_parent(handle, &phandle)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 666 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | if (acpi_bus_get_device(phandle, &pdev)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 670 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 674 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | } |
| 676 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 677 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | } |
| 679 | |
Sam Ravnborg | b95e9e8 | 2008-02-17 13:22:48 +0100 | [diff] [blame] | 680 | static void __ref acpi_processor_hotplug_notify(acpi_handle handle, |
| 681 | u32 event, void *data) |
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 | struct acpi_processor *pr; |
| 684 | struct acpi_device *device = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | int result; |
| 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
| 688 | switch (event) { |
| 689 | case ACPI_NOTIFY_BUS_CHECK: |
| 690 | case ACPI_NOTIFY_DEVICE_CHECK: |
Glauber Costa | d6f882e | 2008-03-04 15:06:36 -0800 | [diff] [blame] | 691 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 692 | "Processor driver received %s event\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 693 | (event == ACPI_NOTIFY_BUS_CHECK) ? |
Glauber Costa | d6f882e | 2008-03-04 15:06:36 -0800 | [diff] [blame] | 694 | "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
| 696 | if (!is_processor_present(handle)) |
| 697 | break; |
| 698 | |
| 699 | if (acpi_bus_get_device(handle, &device)) { |
| 700 | result = acpi_processor_device_add(handle, &device); |
| 701 | if (result) |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 702 | printk(KERN_ERR PREFIX |
| 703 | "Unable to add the device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | break; |
| 705 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 706 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | case ACPI_NOTIFY_EJECT_REQUEST: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 708 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 709 | "received ACPI_NOTIFY_EJECT_REQUEST\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | |
| 711 | if (acpi_bus_get_device(handle, &device)) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 712 | printk(KERN_ERR PREFIX |
| 713 | "Device don't exist, dropping EJECT\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | break; |
| 715 | } |
| 716 | pr = acpi_driver_data(device); |
| 717 | if (!pr) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 718 | printk(KERN_ERR PREFIX |
| 719 | "Driver data is NULL, dropping EJECT\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 720 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | break; |
| 723 | default: |
| 724 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 725 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | break; |
| 727 | } |
| 728 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 729 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | } |
| 731 | |
| 732 | static acpi_status |
| 733 | processor_walk_namespace_cb(acpi_handle handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 734 | u32 lvl, void *context, void **rv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 736 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | int *action = context; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 738 | acpi_object_type type = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
| 740 | status = acpi_get_type(handle, &type); |
| 741 | if (ACPI_FAILURE(status)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 742 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | |
| 744 | if (type != ACPI_TYPE_PROCESSOR) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 745 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 747 | switch (*action) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | case INSTALL_NOTIFY_HANDLER: |
| 749 | acpi_install_notify_handler(handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 750 | ACPI_SYSTEM_NOTIFY, |
| 751 | acpi_processor_hotplug_notify, |
| 752 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | break; |
| 754 | case UNINSTALL_NOTIFY_HANDLER: |
| 755 | acpi_remove_notify_handler(handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 756 | ACPI_SYSTEM_NOTIFY, |
| 757 | acpi_processor_hotplug_notify); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | break; |
| 759 | default: |
| 760 | break; |
| 761 | } |
| 762 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 763 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | } |
| 765 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 766 | static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | |
| 769 | if (!is_processor_present(handle)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 770 | return AE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | if (acpi_map_lsapic(handle, p_cpu)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 774 | return AE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
| 776 | if (arch_register_cpu(*p_cpu)) { |
| 777 | acpi_unmap_lsapic(*p_cpu); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 778 | return AE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 781 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | } |
| 783 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 784 | static int acpi_processor_handle_eject(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | { |
Zhang Rui | b62b8ef | 2008-04-29 02:35:56 -0400 | [diff] [blame] | 786 | if (cpu_online(pr->id)) |
| 787 | cpu_down(pr->id); |
| 788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | arch_unregister_cpu(pr->id); |
| 790 | acpi_unmap_lsapic(pr->id); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 791 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | } |
| 793 | #else |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 794 | static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | { |
| 796 | return AE_ERROR; |
| 797 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 798 | static int acpi_processor_handle_eject(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 800 | return (-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | } |
| 802 | #endif |
| 803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | static |
| 805 | void acpi_processor_install_hotplug_notify(void) |
| 806 | { |
| 807 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
| 808 | int action = INSTALL_NOTIFY_HANDLER; |
| 809 | acpi_walk_namespace(ACPI_TYPE_PROCESSOR, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 810 | ACPI_ROOT_OBJECT, |
| 811 | ACPI_UINT32_MAX, |
Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 812 | processor_walk_namespace_cb, NULL, &action, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | #endif |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 814 | register_hotcpu_notifier(&acpi_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | } |
| 816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | static |
| 818 | void acpi_processor_uninstall_hotplug_notify(void) |
| 819 | { |
| 820 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
| 821 | int action = UNINSTALL_NOTIFY_HANDLER; |
| 822 | acpi_walk_namespace(ACPI_TYPE_PROCESSOR, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 823 | ACPI_ROOT_OBJECT, |
| 824 | ACPI_UINT32_MAX, |
Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 825 | processor_walk_namespace_cb, NULL, &action, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | #endif |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 827 | unregister_hotcpu_notifier(&acpi_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | /* |
| 831 | * We keep the driver loaded even when ACPI is not running. |
| 832 | * This is needed for the powernow-k8 driver, that works even without |
| 833 | * ACPI, but needs symbols from this driver |
| 834 | */ |
| 835 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 836 | static int __init acpi_processor_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 838 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
Yinghai Lu | ce8442b | 2009-08-26 14:29:26 -0700 | [diff] [blame] | 840 | if (acpi_disabled) |
| 841 | return 0; |
| 842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | memset(&errata, 0, sizeof(errata)); |
| 844 | |
| 845 | acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
| 846 | if (!acpi_processor_dir) |
Akinobu Mita | 83822fc | 2006-12-19 12:56:10 -0800 | [diff] [blame] | 847 | return -ENOMEM; |
Len Brown | 541adf7 | 2010-05-22 17:03:29 -0400 | [diff] [blame] | 848 | |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 849 | if (!cpuidle_register_driver(&acpi_idle_driver)) { |
Len Brown | 541adf7 | 2010-05-22 17:03:29 -0400 | [diff] [blame] | 850 | printk(KERN_DEBUG "ACPI: %s registered with cpuidle\n", |
| 851 | acpi_idle_driver.name); |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 852 | } else { |
Len Brown | e9a64ed | 2010-09-24 20:50:02 -0400 | [diff] [blame^] | 853 | printk(KERN_DEBUG "ACPI: acpi_idle yielding to %s\n", |
Len Brown | 2671717 | 2010-03-08 14:07:30 -0500 | [diff] [blame] | 854 | cpuidle_get_driver()->name); |
| 855 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 856 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | result = acpi_bus_register_driver(&acpi_processor_driver); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 858 | if (result < 0) |
| 859 | goto out_cpuidle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | |
| 861 | acpi_processor_install_hotplug_notify(); |
| 862 | |
| 863 | acpi_thermal_cpufreq_init(); |
| 864 | |
| 865 | acpi_processor_ppc_init(); |
| 866 | |
Zhao Yakui | 1180509 | 2008-01-28 13:53:42 +0800 | [diff] [blame] | 867 | acpi_processor_throttling_init(); |
| 868 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 869 | return 0; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 870 | |
| 871 | out_cpuidle: |
| 872 | cpuidle_unregister_driver(&acpi_idle_driver); |
| 873 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 874 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
| 875 | |
| 876 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | } |
| 878 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 879 | static void __exit acpi_processor_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | { |
Yinghai Lu | ce8442b | 2009-08-26 14:29:26 -0700 | [diff] [blame] | 881 | if (acpi_disabled) |
| 882 | return; |
| 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | acpi_processor_ppc_exit(); |
| 885 | |
| 886 | acpi_thermal_cpufreq_exit(); |
| 887 | |
| 888 | acpi_processor_uninstall_hotplug_notify(); |
| 889 | |
| 890 | acpi_bus_unregister_driver(&acpi_processor_driver); |
| 891 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 892 | cpuidle_unregister_driver(&acpi_idle_driver); |
| 893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
| 895 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 896 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 897 | } |
| 898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | module_init(acpi_processor_init); |
| 900 | module_exit(acpi_processor_exit); |
| 901 | |
| 902 | EXPORT_SYMBOL(acpi_processor_set_thermal_limit); |
| 903 | |
| 904 | MODULE_ALIAS("processor"); |