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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #define ACPI_PROCESSOR_CLASS "processor" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define ACPI_PROCESSOR_DEVICE_NAME "Processor" |
| 64 | #define ACPI_PROCESSOR_FILE_INFO "info" |
| 65 | #define ACPI_PROCESSOR_FILE_THROTTLING "throttling" |
| 66 | #define ACPI_PROCESSOR_FILE_LIMIT "limit" |
| 67 | #define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80 |
| 68 | #define ACPI_PROCESSOR_NOTIFY_POWER 0x81 |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 69 | #define ACPI_PROCESSOR_NOTIFY_THROTTLING 0x82 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | #define ACPI_PROCESSOR_LIMIT_USER 0 |
| 72 | #define ACPI_PROCESSOR_LIMIT_THERMAL 1 |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #define _COMPONENT ACPI_PROCESSOR_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 75 | ACPI_MODULE_NAME("processor_core"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 77 | MODULE_AUTHOR("Paul Diefenbaugh"); |
Len Brown | 7cda93e | 2007-02-12 23:50:02 -0500 | [diff] [blame] | 78 | MODULE_DESCRIPTION("ACPI Processor Driver"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | MODULE_LICENSE("GPL"); |
| 80 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 81 | static int acpi_processor_add(struct acpi_device *device); |
| 82 | static int acpi_processor_start(struct acpi_device *device); |
| 83 | static int acpi_processor_remove(struct acpi_device *device, int type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | static int acpi_processor_info_open_fs(struct inode *inode, struct file *file); |
Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 85 | static void acpi_processor_notify(struct acpi_device *device, u32 event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | static acpi_status acpi_processor_hotadd_init(acpi_handle handle, int *p_cpu); |
| 87 | static int acpi_processor_handle_eject(struct acpi_processor *pr); |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 90 | static const struct acpi_device_id processor_device_ids[] = { |
Myron Stowe | ad93a76 | 2008-11-04 14:52:55 -0700 | [diff] [blame] | 91 | {ACPI_PROCESSOR_OBJECT_HID, 0}, |
Bjorn Helgaas | 9eccbc2 | 2009-04-27 16:33:46 -0600 | [diff] [blame] | 92 | {"ACPI0007", 0}, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 93 | {"", 0}, |
| 94 | }; |
| 95 | MODULE_DEVICE_TABLE(acpi, processor_device_ids); |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | static struct acpi_driver acpi_processor_driver = { |
Len Brown | c2b6705 | 2007-02-12 23:33:40 -0500 | [diff] [blame] | 98 | .name = "processor", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 99 | .class = ACPI_PROCESSOR_CLASS, |
Thomas Renninger | 1ba90e3 | 2007-07-23 14:44:41 +0200 | [diff] [blame] | 100 | .ids = processor_device_ids, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 101 | .ops = { |
| 102 | .add = acpi_processor_add, |
| 103 | .remove = acpi_processor_remove, |
| 104 | .start = acpi_processor_start, |
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 |
| 113 | |
Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 114 | static const struct file_operations acpi_processor_info_fops = { |
Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 115 | .owner = THIS_MODULE, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 116 | .open = acpi_processor_info_open_fs, |
| 117 | .read = seq_read, |
| 118 | .llseek = seq_lseek, |
| 119 | .release = single_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 122 | DEFINE_PER_CPU(struct acpi_processor *, processors); |
Andreas Mohr | 9f22271 | 2006-06-23 02:04:27 -0700 | [diff] [blame] | 123 | struct acpi_processor_errata errata __read_mostly; |
Zhao Yakui | 2a2a647 | 2008-06-24 18:02:57 +0800 | [diff] [blame] | 124 | static int set_no_mwait(const struct dmi_system_id *id) |
| 125 | { |
| 126 | printk(KERN_NOTICE PREFIX "%s detected - " |
Pavel Machek | d005741 | 2008-08-12 12:24:34 +0200 | [diff] [blame] | 127 | "disabling mwait for CPU C-states\n", id->ident); |
Zhao Yakui | 2a2a647 | 2008-06-24 18:02:57 +0800 | [diff] [blame] | 128 | idle_nomwait = 1; |
| 129 | return 0; |
| 130 | } |
| 131 | |
| 132 | static struct dmi_system_id __cpuinitdata processor_idle_dmi_table[] = { |
| 133 | { |
| 134 | set_no_mwait, "IFL91 board", { |
| 135 | DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"), |
| 136 | DMI_MATCH(DMI_SYS_VENDOR, "ZEPTO"), |
| 137 | DMI_MATCH(DMI_PRODUCT_VERSION, "3215W"), |
| 138 | DMI_MATCH(DMI_BOARD_NAME, "IFL91") }, NULL}, |
| 139 | { |
| 140 | set_no_mwait, "Extensa 5220", { |
| 141 | DMI_MATCH(DMI_BIOS_VENDOR, "Phoenix Technologies LTD"), |
Dennis Jansen | 3df8a90 | 2008-08-15 01:28:57 +0200 | [diff] [blame] | 142 | DMI_MATCH(DMI_SYS_VENDOR, "Acer"), |
Zhao Yakui | 2a2a647 | 2008-06-24 18:02:57 +0800 | [diff] [blame] | 143 | DMI_MATCH(DMI_PRODUCT_VERSION, "0100"), |
| 144 | DMI_MATCH(DMI_BOARD_NAME, "Columbia") }, NULL}, |
| 145 | {}, |
| 146 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* -------------------------------------------------------------------------- |
| 149 | Errata Handling |
| 150 | -------------------------------------------------------------------------- */ |
| 151 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 152 | static int acpi_processor_errata_piix4(struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 154 | u8 value1 = 0; |
| 155 | u8 value2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | if (!dev) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 159 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | /* |
| 162 | * Note that 'dev' references the PIIX4 ACPI Controller. |
| 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 | case 0: |
| 167 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 A-step\n")); |
| 168 | break; |
| 169 | case 1: |
| 170 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4 B-step\n")); |
| 171 | break; |
| 172 | case 2: |
| 173 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4E\n")); |
| 174 | break; |
| 175 | case 3: |
| 176 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found PIIX4M\n")); |
| 177 | break; |
| 178 | default: |
| 179 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found unknown PIIX4\n")); |
| 180 | break; |
| 181 | } |
| 182 | |
Auke Kok | 44c1013 | 2007-06-08 15:46:36 -0700 | [diff] [blame] | 183 | switch (dev->revision) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
| 185 | case 0: /* PIIX4 A-step */ |
| 186 | case 1: /* PIIX4 B-step */ |
| 187 | /* |
| 188 | * See specification changes #13 ("Manual Throttle Duty Cycle") |
| 189 | * and #14 ("Enabling and Disabling Manual Throttle"), plus |
| 190 | * erratum #5 ("STPCLK# Deassertion Time") from the January |
| 191 | * 2002 PIIX4 specification update. Applies to only older |
| 192 | * PIIX4 models. |
| 193 | */ |
| 194 | errata.piix4.throttle = 1; |
| 195 | |
| 196 | case 2: /* PIIX4E */ |
| 197 | case 3: /* PIIX4M */ |
| 198 | /* |
| 199 | * See erratum #18 ("C3 Power State/BMIDE and Type-F DMA |
| 200 | * Livelock") from the January 2002 PIIX4 specification update. |
| 201 | * Applies to all PIIX4 models. |
| 202 | */ |
| 203 | |
| 204 | /* |
| 205 | * BM-IDE |
| 206 | * ------ |
| 207 | * Find the PIIX4 IDE Controller and get the Bus Master IDE |
| 208 | * Status register address. We'll use this later to read |
| 209 | * each IDE controller's DMA status to make sure we catch all |
| 210 | * DMA activity. |
| 211 | */ |
| 212 | dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 213 | PCI_DEVICE_ID_INTEL_82371AB, |
| 214 | PCI_ANY_ID, PCI_ANY_ID, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | if (dev) { |
| 216 | errata.piix4.bmisx = pci_resource_start(dev, 4); |
| 217 | pci_dev_put(dev); |
| 218 | } |
| 219 | |
| 220 | /* |
| 221 | * Type-F DMA |
| 222 | * ---------- |
| 223 | * Find the PIIX4 ISA Controller and read the Motherboard |
| 224 | * DMA controller's status to see if Type-F (Fast) DMA mode |
| 225 | * is enabled (bit 7) on either channel. Note that we'll |
| 226 | * disable C3 support if this is enabled, as some legacy |
| 227 | * devices won't operate well if fast DMA is disabled. |
| 228 | */ |
| 229 | dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 230 | PCI_DEVICE_ID_INTEL_82371AB_0, |
| 231 | PCI_ANY_ID, PCI_ANY_ID, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | if (dev) { |
| 233 | pci_read_config_byte(dev, 0x76, &value1); |
| 234 | pci_read_config_byte(dev, 0x77, &value2); |
| 235 | if ((value1 & 0x80) || (value2 & 0x80)) |
| 236 | errata.piix4.fdma = 1; |
| 237 | pci_dev_put(dev); |
| 238 | } |
| 239 | |
| 240 | break; |
| 241 | } |
| 242 | |
| 243 | if (errata.piix4.bmisx) |
| 244 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 245 | "Bus master activity detection (BM-IDE) erratum enabled\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | if (errata.piix4.fdma) |
| 247 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 248 | "Type-F DMA livelock erratum (C3 disabled)\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 250 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | } |
| 252 | |
Adrian Bunk | 8713cbe | 2005-09-02 17:16:48 -0400 | [diff] [blame] | 253 | static int acpi_processor_errata(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 255 | int result = 0; |
| 256 | struct pci_dev *dev = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
| 259 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 260 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | |
| 262 | /* |
| 263 | * PIIX4 |
| 264 | */ |
| 265 | dev = pci_get_subsys(PCI_VENDOR_ID_INTEL, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 266 | PCI_DEVICE_ID_INTEL_82371AB_3, PCI_ANY_ID, |
| 267 | PCI_ANY_ID, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | if (dev) { |
| 269 | result = acpi_processor_errata_piix4(dev); |
| 270 | pci_dev_put(dev); |
| 271 | } |
| 272 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 273 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* -------------------------------------------------------------------------- |
Akinobu Mita | 0b28002 | 2006-03-26 01:38:58 -0800 | [diff] [blame] | 277 | Common ACPI processor functions |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 278 | -------------------------------------------------------------------------- */ |
| 279 | |
| 280 | /* |
| 281 | * _PDC is required for a BIOS-OS handshake for most of the newer |
| 282 | * ACPI processor features. |
| 283 | */ |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 284 | static int acpi_processor_set_pdc(struct acpi_processor *pr) |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 285 | { |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 286 | struct acpi_object_list *pdc_in = pr->pdc; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 287 | acpi_status status = AE_OK; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 288 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 289 | |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 290 | if (!pdc_in) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 291 | return status; |
Zhao Yakui | da5e09a | 2008-06-24 18:01:09 +0800 | [diff] [blame] | 292 | if (idle_nomwait) { |
| 293 | /* |
| 294 | * If mwait is disabled for CPU C-states, the C2C3_FFH access |
| 295 | * mode will be disabled in the parameter of _PDC object. |
| 296 | * Of course C1_FFH access mode will also be disabled. |
| 297 | */ |
| 298 | union acpi_object *obj; |
| 299 | u32 *buffer = NULL; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 300 | |
Zhao Yakui | da5e09a | 2008-06-24 18:01:09 +0800 | [diff] [blame] | 301 | obj = pdc_in->pointer; |
| 302 | buffer = (u32 *)(obj->buffer.pointer); |
| 303 | buffer[2] &= ~(ACPI_PDC_C_C2C3_FFH | ACPI_PDC_C_C1_FFH); |
| 304 | |
| 305 | } |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 306 | status = acpi_evaluate_object(pr->handle, "_PDC", pdc_in, NULL); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 307 | |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 308 | if (ACPI_FAILURE(status)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 309 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 310 | "Could not evaluate _PDC, using legacy perf. control...\n")); |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 311 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 312 | return status; |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 313 | } |
| 314 | |
Venkatesh Pallipadi | 02df8b9 | 2005-04-15 15:07:10 -0400 | [diff] [blame] | 315 | /* -------------------------------------------------------------------------- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | FS Interface (/proc) |
| 317 | -------------------------------------------------------------------------- */ |
| 318 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 319 | static struct proc_dir_entry *acpi_processor_dir = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | static int acpi_processor_info_seq_show(struct seq_file *seq, void *offset) |
| 322 | { |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 323 | struct acpi_processor *pr = seq->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
| 326 | if (!pr) |
| 327 | goto end; |
| 328 | |
| 329 | seq_printf(seq, "processor id: %d\n" |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 330 | "acpi id: %d\n" |
| 331 | "bus mastering control: %s\n" |
| 332 | "power management: %s\n" |
| 333 | "throttling control: %s\n" |
| 334 | "limit interface: %s\n", |
| 335 | pr->id, |
| 336 | pr->acpi_id, |
| 337 | pr->flags.bm_control ? "yes" : "no", |
| 338 | pr->flags.power ? "yes" : "no", |
| 339 | pr->flags.throttling ? "yes" : "no", |
| 340 | pr->flags.limit ? "yes" : "no"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 342 | end: |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 343 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | static int acpi_processor_info_open_fs(struct inode *inode, struct file *file) |
| 347 | { |
| 348 | return single_open(file, acpi_processor_info_seq_show, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 349 | PDE(inode)->data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 352 | static int acpi_processor_add_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 354 | struct proc_dir_entry *entry = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
| 357 | if (!acpi_device_dir(device)) { |
| 358 | acpi_device_dir(device) = proc_mkdir(acpi_device_bid(device), |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 359 | acpi_processor_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | if (!acpi_device_dir(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 361 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
| 364 | /* 'info' [R] */ |
Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 365 | entry = proc_create_data(ACPI_PROCESSOR_FILE_INFO, |
| 366 | S_IRUGO, acpi_device_dir(device), |
| 367 | &acpi_processor_info_fops, |
| 368 | acpi_driver_data(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 370 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
| 372 | /* 'throttling' [R/W] */ |
Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 373 | entry = proc_create_data(ACPI_PROCESSOR_FILE_THROTTLING, |
| 374 | S_IFREG | S_IRUGO | S_IWUSR, |
| 375 | acpi_device_dir(device), |
| 376 | &acpi_processor_throttling_fops, |
| 377 | acpi_driver_data(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 379 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | /* 'limit' [R/W] */ |
Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 382 | entry = proc_create_data(ACPI_PROCESSOR_FILE_LIMIT, |
| 383 | S_IFREG | S_IRUGO | S_IWUSR, |
| 384 | acpi_device_dir(device), |
| 385 | &acpi_processor_limit_fops, |
| 386 | acpi_driver_data(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | if (!entry) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 388 | return -EIO; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 389 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | } |
| 391 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 392 | static int acpi_processor_remove_fs(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
| 395 | if (acpi_device_dir(device)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 396 | remove_proc_entry(ACPI_PROCESSOR_FILE_INFO, |
| 397 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | remove_proc_entry(ACPI_PROCESSOR_FILE_THROTTLING, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 399 | acpi_device_dir(device)); |
| 400 | remove_proc_entry(ACPI_PROCESSOR_FILE_LIMIT, |
| 401 | acpi_device_dir(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | remove_proc_entry(acpi_device_bid(device), acpi_processor_dir); |
| 403 | acpi_device_dir(device) = NULL; |
| 404 | } |
| 405 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 406 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | /* Use the acpiid in MADT to map cpus in case of SMP */ |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 410 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | #ifndef CONFIG_SMP |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 412 | static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) { return -1; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | #else |
| 414 | |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 415 | static struct acpi_table_madt *madt; |
| 416 | |
| 417 | static int map_lapic_id(struct acpi_subtable_header *entry, |
| 418 | u32 acpi_id, int *apic_id) |
| 419 | { |
| 420 | struct acpi_madt_local_apic *lapic = |
| 421 | (struct acpi_madt_local_apic *)entry; |
| 422 | if ((lapic->lapic_flags & ACPI_MADT_ENABLED) && |
| 423 | lapic->processor_id == acpi_id) { |
| 424 | *apic_id = lapic->id; |
| 425 | return 1; |
| 426 | } |
| 427 | return 0; |
| 428 | } |
| 429 | |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 430 | static int map_x2apic_id(struct acpi_subtable_header *entry, |
| 431 | int device_declaration, u32 acpi_id, int *apic_id) |
| 432 | { |
| 433 | struct acpi_madt_local_x2apic *apic = |
| 434 | (struct acpi_madt_local_x2apic *)entry; |
| 435 | u32 tmp = apic->local_apic_id; |
| 436 | |
| 437 | /* Only check enabled APICs*/ |
| 438 | if (!(apic->lapic_flags & ACPI_MADT_ENABLED)) |
| 439 | return 0; |
| 440 | |
| 441 | /* Device statement declaration type */ |
| 442 | if (device_declaration) { |
| 443 | if (apic->uid == acpi_id) |
| 444 | goto found; |
| 445 | } |
| 446 | |
| 447 | return 0; |
| 448 | found: |
| 449 | *apic_id = tmp; |
| 450 | return 1; |
| 451 | } |
| 452 | |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 453 | static int map_lsapic_id(struct acpi_subtable_header *entry, |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 454 | int device_declaration, u32 acpi_id, int *apic_id) |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 455 | { |
| 456 | struct acpi_madt_local_sapic *lsapic = |
| 457 | (struct acpi_madt_local_sapic *)entry; |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 458 | u32 tmp = (lsapic->id << 8) | lsapic->eid; |
| 459 | |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 460 | /* Only check enabled APICs*/ |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 461 | if (!(lsapic->lapic_flags & ACPI_MADT_ENABLED)) |
| 462 | return 0; |
| 463 | |
| 464 | /* Device statement declaration type */ |
| 465 | if (device_declaration) { |
| 466 | if (entry->length < 16) |
| 467 | printk(KERN_ERR PREFIX |
| 468 | "Invalid LSAPIC with Device type processor (SAPIC ID %#x)\n", |
| 469 | tmp); |
| 470 | else if (lsapic->uid == acpi_id) |
| 471 | goto found; |
| 472 | /* Processor statement declaration type */ |
| 473 | } else if (lsapic->processor_id == acpi_id) |
| 474 | goto found; |
| 475 | |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 476 | return 0; |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 477 | found: |
| 478 | *apic_id = tmp; |
| 479 | return 1; |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 480 | } |
| 481 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 482 | static int map_madt_entry(int type, u32 acpi_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 484 | unsigned long madt_end, entry; |
| 485 | int apic_id = -1; |
| 486 | |
| 487 | if (!madt) |
| 488 | return apic_id; |
| 489 | |
| 490 | entry = (unsigned long)madt; |
| 491 | madt_end = entry + madt->header.length; |
| 492 | |
| 493 | /* Parse all entries looking for a match. */ |
| 494 | |
| 495 | entry += sizeof(struct acpi_table_madt); |
| 496 | while (entry + sizeof(struct acpi_subtable_header) < madt_end) { |
| 497 | struct acpi_subtable_header *header = |
| 498 | (struct acpi_subtable_header *)entry; |
| 499 | if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) { |
| 500 | if (map_lapic_id(header, acpi_id, &apic_id)) |
| 501 | break; |
Suresh Siddha | 7237d3d | 2009-03-30 13:55:30 -0800 | [diff] [blame] | 502 | } else if (header->type == ACPI_MADT_TYPE_LOCAL_X2APIC) { |
| 503 | if (map_x2apic_id(header, type, acpi_id, &apic_id)) |
| 504 | break; |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 505 | } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) { |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 506 | if (map_lsapic_id(header, type, acpi_id, &apic_id)) |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 507 | break; |
| 508 | } |
| 509 | entry += header->length; |
| 510 | } |
| 511 | return apic_id; |
| 512 | } |
| 513 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 514 | static int map_mat_entry(acpi_handle handle, int type, u32 acpi_id) |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 515 | { |
| 516 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 517 | union acpi_object *obj; |
| 518 | struct acpi_subtable_header *header; |
| 519 | int apic_id = -1; |
| 520 | |
| 521 | if (ACPI_FAILURE(acpi_evaluate_object(handle, "_MAT", NULL, &buffer))) |
| 522 | goto exit; |
| 523 | |
| 524 | if (!buffer.length || !buffer.pointer) |
| 525 | goto exit; |
| 526 | |
| 527 | obj = buffer.pointer; |
| 528 | if (obj->type != ACPI_TYPE_BUFFER || |
| 529 | obj->buffer.length < sizeof(struct acpi_subtable_header)) { |
| 530 | goto exit; |
| 531 | } |
| 532 | |
| 533 | header = (struct acpi_subtable_header *)obj->buffer.pointer; |
| 534 | if (header->type == ACPI_MADT_TYPE_LOCAL_APIC) { |
| 535 | map_lapic_id(header, acpi_id, &apic_id); |
| 536 | } else if (header->type == ACPI_MADT_TYPE_LOCAL_SAPIC) { |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 537 | map_lsapic_id(header, type, acpi_id, &apic_id); |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | exit: |
| 541 | if (buffer.pointer) |
| 542 | kfree(buffer.pointer); |
| 543 | return apic_id; |
| 544 | } |
| 545 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 546 | static int get_cpu_id(acpi_handle handle, int type, u32 acpi_id) |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 547 | { |
Len Brown | 4a35a46 | 2005-09-03 12:40:06 -0400 | [diff] [blame] | 548 | int i; |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 549 | int apic_id = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 551 | apic_id = map_mat_entry(handle, type, acpi_id); |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 552 | if (apic_id == -1) |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 553 | apic_id = map_madt_entry(type, acpi_id); |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 554 | if (apic_id == -1) |
| 555 | return apic_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Christoph Lameter | fbb43ab | 2007-11-28 16:22:08 -0800 | [diff] [blame] | 557 | for_each_possible_cpu(i) { |
Mike Travis | 71b3123 | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 558 | if (cpu_physical_id(i) == apic_id) |
Len Brown | 4a35a46 | 2005-09-03 12:40:06 -0400 | [diff] [blame] | 559 | return i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | } |
| 561 | return -1; |
| 562 | } |
| 563 | #endif |
| 564 | |
| 565 | /* -------------------------------------------------------------------------- |
| 566 | Driver Interface |
| 567 | -------------------------------------------------------------------------- */ |
| 568 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 569 | static int acpi_processor_get_info(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 571 | acpi_status status = 0; |
| 572 | union acpi_object object = { 0 }; |
| 573 | struct acpi_buffer buffer = { sizeof(union acpi_object), &object }; |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 574 | struct acpi_processor *pr; |
| 575 | int cpu_index, device_declaration = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 576 | static int cpu0_initialized; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 578 | pr = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 580 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
| 582 | if (num_online_cpus() > 1) |
| 583 | errata.smp = TRUE; |
| 584 | |
| 585 | acpi_processor_errata(pr); |
| 586 | |
| 587 | /* |
| 588 | * Check to see if we have bus mastering arbitration control. This |
| 589 | * is required for proper C3 usage (to maintain cache coherency). |
| 590 | */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 591 | 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] | 592 | pr->flags.bm_control = 1; |
| 593 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 594 | "Bus mastering arbitration control present\n")); |
| 595 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 597 | "No bus mastering arbitration control\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Bjorn Helgaas | 6cc73b4 | 2009-04-27 16:33:41 -0600 | [diff] [blame] | 599 | if (!strcmp(acpi_device_hid(device), ACPI_PROCESSOR_OBJECT_HID)) { |
| 600 | /* Declared with "Processor" statement; match ProcessorID */ |
| 601 | status = acpi_evaluate_object(pr->handle, NULL, NULL, &buffer); |
| 602 | if (ACPI_FAILURE(status)) { |
| 603 | printk(KERN_ERR PREFIX "Evaluating processor object\n"); |
| 604 | return -ENODEV; |
| 605 | } |
| 606 | |
| 607 | /* |
| 608 | * TBD: Synch processor ID (via LAPIC/LSAPIC structures) on SMP. |
| 609 | * >>> 'acpi_get_processor_id(acpi_id, &id)' in |
| 610 | * arch/xxx/acpi.c |
| 611 | */ |
| 612 | pr->acpi_id = object.processor.proc_id; |
| 613 | } else { |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 614 | /* |
| 615 | * Declared with "Device" statement; match _UID. |
| 616 | * Note that we don't handle string _UIDs yet. |
| 617 | */ |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 618 | unsigned long long value; |
Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 619 | status = acpi_evaluate_integer(pr->handle, METHOD_NAME__UID, |
| 620 | NULL, &value); |
| 621 | if (ACPI_FAILURE(status)) { |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 622 | printk(KERN_ERR PREFIX |
| 623 | "Evaluating processor _UID [%#x]\n", status); |
Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 624 | return -ENODEV; |
| 625 | } |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 626 | device_declaration = 1; |
Alexey Starikovskiy | 11bf04c | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 627 | pr->acpi_id = value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | } |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 629 | cpu_index = get_cpu_id(pr->handle, device_declaration, pr->acpi_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 631 | /* Handle UP system running SMP kernel, with no LAPIC in MADT */ |
Ashok Raj | df42baa | 2006-03-28 17:04:00 -0500 | [diff] [blame] | 632 | if (!cpu0_initialized && (cpu_index == -1) && |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 633 | (num_online_cpus() == 1)) { |
| 634 | cpu_index = 0; |
| 635 | } |
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 | cpu0_initialized = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 639 | pr->id = cpu_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 641 | /* |
| 642 | * Extra Processor objects may be enumerated on MP systems with |
| 643 | * less than the max # of CPUs. They should be ignored _iff |
| 644 | * they are physically not present. |
| 645 | */ |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 646 | if (pr->id == -1) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 647 | if (ACPI_FAILURE |
| 648 | (acpi_processor_hotadd_init(pr->handle, &pr->id))) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 649 | return -ENODEV; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 650 | } |
| 651 | } |
Zhao Yakui | 7a04b84 | 2009-06-24 11:46:44 +0800 | [diff] [blame] | 652 | /* |
| 653 | * On some boxes several processors use the same processor bus id. |
| 654 | * But they are located in different scope. For example: |
| 655 | * \_SB.SCK0.CPU0 |
| 656 | * \_SB.SCK1.CPU0 |
| 657 | * Rename the processor device bus id. And the new bus id will be |
| 658 | * generated as the following format: |
| 659 | * CPU+CPU ID. |
| 660 | */ |
| 661 | sprintf(acpi_device_bid(device), "CPU%X", pr->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Processor [%d:%d]\n", pr->id, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 663 | pr->acpi_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | |
| 665 | if (!object.processor.pblk_address) |
| 666 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No PBLK (NULL address)\n")); |
| 667 | else if (object.processor.pblk_length != 6) |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 668 | printk(KERN_ERR PREFIX "Invalid PBLK length [%d]\n", |
| 669 | object.processor.pblk_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | else { |
| 671 | pr->throttling.address = object.processor.pblk_address; |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 672 | pr->throttling.duty_offset = acpi_gbl_FADT.duty_offset; |
| 673 | pr->throttling.duty_width = acpi_gbl_FADT.duty_width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | |
| 675 | pr->pblk = object.processor.pblk_address; |
| 676 | |
| 677 | /* |
| 678 | * We don't care about error returns - we just try to mark |
| 679 | * these reserved so that nobody else is confused into thinking |
| 680 | * that this region might be unused.. |
| 681 | * |
| 682 | * (In particular, allocating the IO range for Cardbus) |
| 683 | */ |
| 684 | request_region(pr->throttling.address, 6, "ACPI CPU throttle"); |
| 685 | } |
| 686 | |
Alex Chiang | fe086a7 | 2008-04-29 15:05:29 -0700 | [diff] [blame] | 687 | /* |
| 688 | * If ACPI describes a slot number for this CPU, we can use it |
| 689 | * ensure we get the right value in the "physical id" field |
| 690 | * of /proc/cpuinfo |
| 691 | */ |
| 692 | status = acpi_evaluate_object(pr->handle, "_SUN", NULL, &buffer); |
| 693 | if (ACPI_SUCCESS(status)) |
| 694 | arch_fix_phys_package_id(pr->id, object.integer.value); |
| 695 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 696 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 699 | static DEFINE_PER_CPU(void *, processor_device_array); |
Venkatesh Pallipadi | cd8e2b4 | 2005-10-21 19:22:00 -0400 | [diff] [blame] | 700 | |
Pierre Ossman | 7af8b66 | 2006-10-10 14:20:31 -0700 | [diff] [blame] | 701 | static int __cpuinit acpi_processor_start(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 703 | int result = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 704 | struct acpi_processor *pr; |
Zhang Rui | 9f1eb99 | 2008-04-29 02:36:07 -0400 | [diff] [blame] | 705 | struct sys_device *sysdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
| 707 | pr = acpi_driver_data(device); |
| 708 | |
Myron Stowe | b26e928 | 2008-11-04 14:53:00 -0700 | [diff] [blame] | 709 | result = acpi_processor_get_info(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | if (result) { |
| 711 | /* Processor is physically not present */ |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 712 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } |
| 714 | |
Christoph Lameter | fbb43ab | 2007-11-28 16:22:08 -0800 | [diff] [blame] | 715 | BUG_ON((pr->id >= nr_cpu_ids) || (pr->id < 0)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Venkatesh Pallipadi | cd8e2b4 | 2005-10-21 19:22:00 -0400 | [diff] [blame] | 717 | /* |
| 718 | * Buggy BIOS check |
| 719 | * ACPI id of processors can be reported wrongly by the BIOS. |
| 720 | * Don't trust it blindly |
| 721 | */ |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 722 | if (per_cpu(processor_device_array, pr->id) != NULL && |
| 723 | per_cpu(processor_device_array, pr->id) != device) { |
Joe Perches | 4fdb2a0 | 2007-11-19 17:48:02 -0800 | [diff] [blame] | 724 | printk(KERN_WARNING "BIOS reported wrong ACPI id " |
Len Brown | 0eacee5 | 2006-03-31 00:37:23 -0500 | [diff] [blame] | 725 | "for the processor\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 726 | return -ENODEV; |
Venkatesh Pallipadi | cd8e2b4 | 2005-10-21 19:22:00 -0400 | [diff] [blame] | 727 | } |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 728 | per_cpu(processor_device_array, pr->id) = device; |
Venkatesh Pallipadi | cd8e2b4 | 2005-10-21 19:22:00 -0400 | [diff] [blame] | 729 | |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 730 | per_cpu(processors, pr->id) = pr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
| 732 | result = acpi_processor_add_fs(device); |
| 733 | if (result) |
| 734 | goto end; |
| 735 | |
Zhang Rui | 9f1eb99 | 2008-04-29 02:36:07 -0400 | [diff] [blame] | 736 | sysdev = get_cpu_sysdev(pr->id); |
| 737 | if (sysfs_create_link(&device->dev.kobj, &sysdev->kobj, "sysdev")) |
| 738 | return -EFAULT; |
| 739 | |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 740 | /* _PDC call should be done before doing anything else (if reqd.). */ |
| 741 | arch_acpi_processor_init_pdc(pr); |
| 742 | acpi_processor_set_pdc(pr); |
Pallipadi, Venkatesh | 7b768f0 | 2009-06-19 17:14:59 -0700 | [diff] [blame] | 743 | arch_acpi_processor_cleanup_pdc(pr); |
| 744 | |
Zhao Yakui | 0ac3c57 | 2007-11-15 17:05:46 +0800 | [diff] [blame] | 745 | #ifdef CONFIG_CPU_FREQ |
| 746 | acpi_processor_ppc_has_changed(pr); |
| 747 | #endif |
| 748 | acpi_processor_get_throttling_info(pr); |
| 749 | acpi_processor_get_limit_info(pr); |
| 750 | |
Venkatesh Pallipadi | 05131ec | 2005-10-23 16:31:00 -0400 | [diff] [blame] | 751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | acpi_processor_power_init(pr, device); |
| 753 | |
Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 754 | pr->cdev = thermal_cooling_device_register("Processor", device, |
| 755 | &processor_cooling_ops); |
Thomas Sujith | d76628c | 2008-02-15 18:26:54 -0500 | [diff] [blame] | 756 | if (IS_ERR(pr->cdev)) { |
| 757 | result = PTR_ERR(pr->cdev); |
| 758 | goto end; |
| 759 | } |
Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 760 | |
Greg Kroah-Hartman | fc3a882 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 761 | dev_info(&device->dev, "registered as cooling_device%d\n", |
| 762 | pr->cdev->id); |
Julia Lawall | 9030062 | 2008-04-11 10:09:24 +0800 | [diff] [blame] | 763 | |
| 764 | result = sysfs_create_link(&device->dev.kobj, |
| 765 | &pr->cdev->device.kobj, |
| 766 | "thermal_cooling"); |
| 767 | if (result) |
| 768 | printk(KERN_ERR PREFIX "Create sysfs link\n"); |
| 769 | result = sysfs_create_link(&pr->cdev->device.kobj, |
| 770 | &device->dev.kobj, |
| 771 | "device"); |
| 772 | if (result) |
| 773 | printk(KERN_ERR PREFIX "Create sysfs link\n"); |
Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 774 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | if (pr->flags.throttling) { |
| 776 | printk(KERN_INFO PREFIX "%s [%s] (supports", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 777 | acpi_device_name(device), acpi_device_bid(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | printk(" %d throttling states", pr->throttling.state_count); |
| 779 | printk(")\n"); |
| 780 | } |
| 781 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 782 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 784 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | } |
| 786 | |
Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 787 | static void acpi_processor_notify(struct acpi_device *device, u32 event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | { |
Bjorn Helgaas | 7ec0a72 | 2009-03-30 17:48:24 +0000 | [diff] [blame] | 789 | struct acpi_processor *pr = acpi_driver_data(device); |
Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 790 | int saved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
| 792 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 793 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | switch (event) { |
| 796 | case ACPI_PROCESSOR_NOTIFY_PERFORMANCE: |
Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 797 | saved = pr->performance_platform_limit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | acpi_processor_ppc_has_changed(pr); |
Alexey Starikovskiy | e790cc8 | 2007-11-21 03:23:32 +0300 | [diff] [blame] | 799 | if (saved == pr->performance_platform_limit) |
| 800 | break; |
Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 801 | acpi_bus_generate_proc_event(device, event, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 802 | pr->performance_platform_limit); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 803 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 804 | dev_name(&device->dev), event, |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 805 | pr->performance_platform_limit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | break; |
| 807 | case ACPI_PROCESSOR_NOTIFY_POWER: |
| 808 | acpi_processor_cst_has_changed(pr); |
Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 809 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 810 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 811 | dev_name(&device->dev), event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | break; |
Luming Yu | 01854e6 | 2007-05-26 22:49:58 +0800 | [diff] [blame] | 813 | case ACPI_PROCESSOR_NOTIFY_THROTTLING: |
| 814 | acpi_processor_tstate_has_changed(pr); |
Len Brown | 14e04fb | 2007-08-23 15:20:26 -0400 | [diff] [blame] | 815 | acpi_bus_generate_proc_event(device, event, 0); |
Zhang Rui | 962ce8c | 2007-08-23 01:24:31 +0800 | [diff] [blame] | 816 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 817 | dev_name(&device->dev), event, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | default: |
| 819 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 820 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | break; |
| 822 | } |
| 823 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 824 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | } |
| 826 | |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 827 | static int acpi_cpu_soft_notify(struct notifier_block *nfb, |
| 828 | unsigned long action, void *hcpu) |
| 829 | { |
| 830 | unsigned int cpu = (unsigned long)hcpu; |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 831 | struct acpi_processor *pr = per_cpu(processors, cpu); |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 832 | |
| 833 | if (action == CPU_ONLINE && pr) { |
| 834 | acpi_processor_ppc_has_changed(pr); |
| 835 | acpi_processor_cst_has_changed(pr); |
| 836 | acpi_processor_tstate_has_changed(pr); |
| 837 | } |
| 838 | return NOTIFY_OK; |
| 839 | } |
| 840 | |
| 841 | static struct notifier_block acpi_cpu_notifier = |
| 842 | { |
| 843 | .notifier_call = acpi_cpu_soft_notify, |
| 844 | }; |
| 845 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 846 | static int acpi_processor_add(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 848 | struct acpi_processor *pr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | |
| 851 | if (!device) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 852 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 854 | pr = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 856 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
Yinghai Lu | eaa9584 | 2009-06-06 14:51:36 -0700 | [diff] [blame] | 858 | if (!zalloc_cpumask_var(&pr->throttling.shared_cpu_map, GFP_KERNEL)) { |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 859 | kfree(pr); |
| 860 | return -ENOMEM; |
| 861 | } |
| 862 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | pr->handle = device->handle; |
| 864 | strcpy(acpi_device_name(device), ACPI_PROCESSOR_DEVICE_NAME); |
| 865 | strcpy(acpi_device_class(device), ACPI_PROCESSOR_CLASS); |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 866 | device->driver_data = pr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 868 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | } |
| 870 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 871 | static int acpi_processor_remove(struct acpi_device *device, int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 873 | struct acpi_processor *pr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
| 876 | if (!device || !acpi_driver_data(device)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 877 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
Jan Engelhardt | 50dd096 | 2006-10-01 00:28:50 +0200 | [diff] [blame] | 879 | pr = acpi_driver_data(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 881 | if (pr->id >= nr_cpu_ids) |
| 882 | goto free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
| 884 | if (type == ACPI_BUS_REMOVAL_EJECT) { |
| 885 | if (acpi_processor_handle_eject(pr)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 886 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | acpi_processor_power_exit(pr, device); |
| 890 | |
Zhang Rui | 9f1eb99 | 2008-04-29 02:36:07 -0400 | [diff] [blame] | 891 | sysfs_remove_link(&device->dev.kobj, "sysdev"); |
| 892 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | acpi_processor_remove_fs(device); |
| 894 | |
Zhao Yakui | f28bb45 | 2008-02-15 08:34:37 +0800 | [diff] [blame] | 895 | if (pr->cdev) { |
| 896 | sysfs_remove_link(&device->dev.kobj, "thermal_cooling"); |
| 897 | sysfs_remove_link(&pr->cdev->device.kobj, "device"); |
| 898 | thermal_cooling_device_unregister(pr->cdev); |
| 899 | pr->cdev = NULL; |
| 900 | } |
Zhang Rui | d9460fd22 | 2008-01-17 15:51:23 +0800 | [diff] [blame] | 901 | |
Mike Travis | 706546d | 2008-06-09 16:22:23 -0700 | [diff] [blame] | 902 | per_cpu(processors, pr->id) = NULL; |
| 903 | per_cpu(processor_device_array, pr->id) = NULL; |
Rusty Russell | 2fdf66b | 2008-12-31 18:08:47 -0800 | [diff] [blame] | 904 | |
| 905 | free: |
| 906 | free_cpumask_var(pr->throttling.shared_cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | kfree(pr); |
| 908 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 909 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | } |
| 911 | |
| 912 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
| 913 | /**************************************************************************** |
| 914 | * Acpi processor hotplug support * |
| 915 | ****************************************************************************/ |
| 916 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 917 | static int is_processor_present(acpi_handle handle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 919 | acpi_status status; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 920 | unsigned long long sta = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | |
| 923 | status = acpi_evaluate_integer(handle, "_STA", NULL, &sta); |
Zhang Rui | cfaf374 | 2008-01-09 02:17:47 -0500 | [diff] [blame] | 924 | |
| 925 | if (ACPI_SUCCESS(status) && (sta & ACPI_STA_DEVICE_PRESENT)) |
| 926 | return 1; |
| 927 | |
Zhang Rui | d0ce46f | 2008-02-23 01:53:09 -0500 | [diff] [blame] | 928 | /* |
| 929 | * _STA is mandatory for a processor that supports hot plug |
| 930 | */ |
| 931 | if (status == AE_NOT_FOUND) |
| 932 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 933 | "Processor does not support hot plug\n")); |
| 934 | else |
| 935 | ACPI_EXCEPTION((AE_INFO, status, |
| 936 | "Processor Device is not present")); |
Zhang Rui | cfaf374 | 2008-01-09 02:17:47 -0500 | [diff] [blame] | 937 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | } |
| 939 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | static |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 941 | int acpi_processor_device_add(acpi_handle handle, struct acpi_device **device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 943 | acpi_handle phandle; |
| 944 | struct acpi_device *pdev; |
| 945 | struct acpi_processor *pr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
| 948 | if (acpi_get_parent(handle, &phandle)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 949 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | if (acpi_bus_get_device(phandle, &pdev)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 953 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | if (acpi_bus_add(device, pdev, handle, ACPI_BUS_TYPE_PROCESSOR)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 957 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | } |
| 959 | |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 960 | acpi_bus_start(*device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | |
| 962 | pr = acpi_driver_data(*device); |
| 963 | if (!pr) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 964 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
Christoph Lameter | fbb43ab | 2007-11-28 16:22:08 -0800 | [diff] [blame] | 966 | if ((pr->id >= 0) && (pr->id < nr_cpu_ids)) { |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 967 | kobject_uevent(&(*device)->dev.kobj, KOBJ_ONLINE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | } |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 969 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | } |
| 971 | |
Sam Ravnborg | b95e9e8 | 2008-02-17 13:22:48 +0100 | [diff] [blame] | 972 | static void __ref acpi_processor_hotplug_notify(acpi_handle handle, |
| 973 | u32 event, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 975 | struct acpi_processor *pr; |
| 976 | struct acpi_device *device = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | int result; |
| 978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | |
| 980 | switch (event) { |
| 981 | case ACPI_NOTIFY_BUS_CHECK: |
| 982 | case ACPI_NOTIFY_DEVICE_CHECK: |
Glauber Costa | d6f882e | 2008-03-04 15:06:36 -0800 | [diff] [blame] | 983 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 984 | "Processor driver received %s event\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 985 | (event == ACPI_NOTIFY_BUS_CHECK) ? |
Glauber Costa | d6f882e | 2008-03-04 15:06:36 -0800 | [diff] [blame] | 986 | "ACPI_NOTIFY_BUS_CHECK" : "ACPI_NOTIFY_DEVICE_CHECK")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | |
| 988 | if (!is_processor_present(handle)) |
| 989 | break; |
| 990 | |
| 991 | if (acpi_bus_get_device(handle, &device)) { |
| 992 | result = acpi_processor_device_add(handle, &device); |
| 993 | if (result) |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 994 | printk(KERN_ERR PREFIX |
| 995 | "Unable to add the device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | break; |
| 997 | } |
| 998 | |
| 999 | pr = acpi_driver_data(device); |
| 1000 | if (!pr) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 1001 | printk(KERN_ERR PREFIX "Driver data is NULL\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | break; |
| 1003 | } |
| 1004 | |
Christoph Lameter | fbb43ab | 2007-11-28 16:22:08 -0800 | [diff] [blame] | 1005 | if (pr->id >= 0 && (pr->id < nr_cpu_ids)) { |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 1006 | kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | break; |
| 1008 | } |
| 1009 | |
| 1010 | result = acpi_processor_start(device); |
Christoph Lameter | fbb43ab | 2007-11-28 16:22:08 -0800 | [diff] [blame] | 1011 | if ((!result) && ((pr->id >= 0) && (pr->id < nr_cpu_ids))) { |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 1012 | kobject_uevent(&device->dev.kobj, KOBJ_ONLINE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | } else { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 1014 | printk(KERN_ERR PREFIX "Device [%s] failed to start\n", |
| 1015 | acpi_device_bid(device)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1017 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | case ACPI_NOTIFY_EJECT_REQUEST: |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1019 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 1020 | "received ACPI_NOTIFY_EJECT_REQUEST\n")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
| 1022 | if (acpi_bus_get_device(handle, &device)) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 1023 | printk(KERN_ERR PREFIX |
| 1024 | "Device don't exist, dropping EJECT\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | break; |
| 1026 | } |
| 1027 | pr = acpi_driver_data(device); |
| 1028 | if (!pr) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 1029 | printk(KERN_ERR PREFIX |
| 1030 | "Driver data is NULL, dropping EJECT\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1031 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | } |
| 1033 | |
Christoph Lameter | fbb43ab | 2007-11-28 16:22:08 -0800 | [diff] [blame] | 1034 | if ((pr->id < nr_cpu_ids) && (cpu_present(pr->id))) |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 1035 | kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | break; |
| 1037 | default: |
| 1038 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1039 | "Unsupported event [0x%x]\n", event)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | break; |
| 1041 | } |
| 1042 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1043 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | } |
| 1045 | |
| 1046 | static acpi_status |
| 1047 | processor_walk_namespace_cb(acpi_handle handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1048 | u32 lvl, void *context, void **rv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1050 | acpi_status status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | int *action = context; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1052 | acpi_object_type type = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
| 1054 | status = acpi_get_type(handle, &type); |
| 1055 | if (ACPI_FAILURE(status)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1056 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | |
| 1058 | if (type != ACPI_TYPE_PROCESSOR) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1059 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1061 | switch (*action) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | case INSTALL_NOTIFY_HANDLER: |
| 1063 | acpi_install_notify_handler(handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1064 | ACPI_SYSTEM_NOTIFY, |
| 1065 | acpi_processor_hotplug_notify, |
| 1066 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | break; |
| 1068 | case UNINSTALL_NOTIFY_HANDLER: |
| 1069 | acpi_remove_notify_handler(handle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1070 | ACPI_SYSTEM_NOTIFY, |
| 1071 | acpi_processor_hotplug_notify); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | break; |
| 1073 | default: |
| 1074 | break; |
| 1075 | } |
| 1076 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1077 | return (AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1080 | 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] | 1081 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | |
| 1083 | if (!is_processor_present(handle)) { |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1084 | return AE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | if (acpi_map_lsapic(handle, p_cpu)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1088 | return AE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | |
| 1090 | if (arch_register_cpu(*p_cpu)) { |
| 1091 | acpi_unmap_lsapic(*p_cpu); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1092 | return AE_ERROR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | } |
| 1094 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1095 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | } |
| 1097 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1098 | static int acpi_processor_handle_eject(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | { |
Zhang Rui | b62b8ef | 2008-04-29 02:35:56 -0400 | [diff] [blame] | 1100 | if (cpu_online(pr->id)) |
| 1101 | cpu_down(pr->id); |
| 1102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | arch_unregister_cpu(pr->id); |
| 1104 | acpi_unmap_lsapic(pr->id); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1105 | return (0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | } |
| 1107 | #else |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1108 | 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] | 1109 | { |
| 1110 | return AE_ERROR; |
| 1111 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1112 | static int acpi_processor_handle_eject(struct acpi_processor *pr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1114 | return (-EINVAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | } |
| 1116 | #endif |
| 1117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | static |
| 1119 | void acpi_processor_install_hotplug_notify(void) |
| 1120 | { |
| 1121 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
| 1122 | int action = INSTALL_NOTIFY_HANDLER; |
| 1123 | acpi_walk_namespace(ACPI_TYPE_PROCESSOR, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1124 | ACPI_ROOT_OBJECT, |
| 1125 | ACPI_UINT32_MAX, |
| 1126 | processor_walk_namespace_cb, &action, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | #endif |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 1128 | register_hotcpu_notifier(&acpi_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | } |
| 1130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | static |
| 1132 | void acpi_processor_uninstall_hotplug_notify(void) |
| 1133 | { |
| 1134 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
| 1135 | int action = UNINSTALL_NOTIFY_HANDLER; |
| 1136 | acpi_walk_namespace(ACPI_TYPE_PROCESSOR, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1137 | ACPI_ROOT_OBJECT, |
| 1138 | ACPI_UINT32_MAX, |
| 1139 | processor_walk_namespace_cb, &action, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | #endif |
Venkatesh Pallipadi | 729c6ba | 2007-09-16 15:36:43 +0200 | [diff] [blame] | 1141 | unregister_hotcpu_notifier(&acpi_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | /* |
| 1145 | * We keep the driver loaded even when ACPI is not running. |
| 1146 | * This is needed for the powernow-k8 driver, that works even without |
| 1147 | * ACPI, but needs symbols from this driver |
| 1148 | */ |
| 1149 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1150 | static int __init acpi_processor_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1152 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | memset(&errata, 0, sizeof(errata)); |
| 1155 | |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 1156 | #ifdef CONFIG_SMP |
| 1157 | if (ACPI_FAILURE(acpi_get_table(ACPI_SIG_MADT, 0, |
| 1158 | (struct acpi_table_header **)&madt))) |
Randy Dunlap | 70c0846 | 2007-02-13 16:11:36 -0800 | [diff] [blame] | 1159 | madt = NULL; |
Alexey Starikovskiy | f18c5a0 | 2007-02-02 19:48:23 +0300 | [diff] [blame] | 1160 | #endif |
| 1161 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | acpi_processor_dir = proc_mkdir(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
| 1163 | if (!acpi_processor_dir) |
Akinobu Mita | 83822fc | 2006-12-19 12:56:10 -0800 | [diff] [blame] | 1164 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | |
Zhao Yakui | 2a2a647 | 2008-06-24 18:02:57 +0800 | [diff] [blame] | 1166 | /* |
| 1167 | * Check whether the system is DMI table. If yes, OSPM |
| 1168 | * should not use mwait for CPU-states. |
| 1169 | */ |
| 1170 | dmi_check_system(processor_idle_dmi_table); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1171 | result = cpuidle_register_driver(&acpi_idle_driver); |
| 1172 | if (result < 0) |
| 1173 | goto out_proc; |
| 1174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | result = acpi_bus_register_driver(&acpi_processor_driver); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1176 | if (result < 0) |
| 1177 | goto out_cpuidle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | |
| 1179 | acpi_processor_install_hotplug_notify(); |
| 1180 | |
| 1181 | acpi_thermal_cpufreq_init(); |
| 1182 | |
| 1183 | acpi_processor_ppc_init(); |
| 1184 | |
Zhao Yakui | 1180509 | 2008-01-28 13:53:42 +0800 | [diff] [blame] | 1185 | acpi_processor_throttling_init(); |
| 1186 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1187 | return 0; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1188 | |
| 1189 | out_cpuidle: |
| 1190 | cpuidle_unregister_driver(&acpi_idle_driver); |
| 1191 | |
| 1192 | out_proc: |
| 1193 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
| 1194 | |
| 1195 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | } |
| 1197 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1198 | static void __exit acpi_processor_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | acpi_processor_ppc_exit(); |
| 1201 | |
| 1202 | acpi_thermal_cpufreq_exit(); |
| 1203 | |
| 1204 | acpi_processor_uninstall_hotplug_notify(); |
| 1205 | |
| 1206 | acpi_bus_unregister_driver(&acpi_processor_driver); |
| 1207 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1208 | cpuidle_unregister_driver(&acpi_idle_driver); |
| 1209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir); |
| 1211 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1212 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | } |
| 1214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | module_init(acpi_processor_init); |
| 1216 | module_exit(acpi_processor_exit); |
| 1217 | |
| 1218 | EXPORT_SYMBOL(acpi_processor_set_thermal_limit); |
| 1219 | |
| 1220 | MODULE_ALIAS("processor"); |