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