diff options
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/Kconfig | 12 | ||||
-rw-r--r-- | drivers/acpi/Makefile | 2 | ||||
-rw-r--r-- | drivers/acpi/ac.c | 1 | ||||
-rw-r--r-- | drivers/acpi/acpi_pad.c | 514 | ||||
-rw-r--r-- | drivers/acpi/acpica/acconfig.h | 4 | ||||
-rw-r--r-- | drivers/acpi/acpica/exregion.c | 35 | ||||
-rw-r--r-- | drivers/acpi/bus.c | 49 | ||||
-rw-r--r-- | drivers/acpi/button.c | 3 | ||||
-rw-r--r-- | drivers/acpi/dock.c | 16 | ||||
-rw-r--r-- | drivers/acpi/ec.c | 56 | ||||
-rw-r--r-- | drivers/acpi/osl.c | 8 | ||||
-rw-r--r-- | drivers/acpi/pci_root.c | 11 | ||||
-rw-r--r-- | drivers/acpi/power_meter.c | 6 | ||||
-rw-r--r-- | drivers/acpi/proc.c | 4 | ||||
-rw-r--r-- | drivers/acpi/processor_core.c | 9 | ||||
-rw-r--r-- | drivers/acpi/processor_idle.c | 8 | ||||
-rw-r--r-- | drivers/acpi/processor_throttling.c | 6 | ||||
-rw-r--r-- | drivers/acpi/scan.c | 704 | ||||
-rw-r--r-- | drivers/acpi/sleep.c | 24 | ||||
-rw-r--r-- | drivers/acpi/video.c | 21 | ||||
-rw-r--r-- | drivers/acpi/video_detect.c | 2 |
21 files changed, 976 insertions, 519 deletions
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig index dd8729d674e5..93d2c7971df6 100644 --- a/drivers/acpi/Kconfig +++ b/drivers/acpi/Kconfig | |||
@@ -211,6 +211,18 @@ config ACPI_HOTPLUG_CPU | |||
211 | select ACPI_CONTAINER | 211 | select ACPI_CONTAINER |
212 | default y | 212 | default y |
213 | 213 | ||
214 | config ACPI_PROCESSOR_AGGREGATOR | ||
215 | tristate "Processor Aggregator" | ||
216 | depends on ACPI_PROCESSOR | ||
217 | depends on EXPERIMENTAL | ||
218 | depends on X86 | ||
219 | help | ||
220 | ACPI 4.0 defines processor Aggregator, which enables OS to perform | ||
221 | specific processor configuration and control that applies to all | ||
222 | processors in the platform. Currently only logical processor idling | ||
223 | is defined, which is to reduce power consumption. This driver | ||
224 | supports the new device. | ||
225 | |||
214 | config ACPI_THERMAL | 226 | config ACPI_THERMAL |
215 | tristate "Thermal Zone" | 227 | tristate "Thermal Zone" |
216 | depends on ACPI_PROCESSOR | 228 | depends on ACPI_PROCESSOR |
diff --git a/drivers/acpi/Makefile b/drivers/acpi/Makefile index 82cd49dc603b..7702118509a0 100644 --- a/drivers/acpi/Makefile +++ b/drivers/acpi/Makefile | |||
@@ -62,3 +62,5 @@ obj-$(CONFIG_ACPI_POWER_METER) += power_meter.o | |||
62 | processor-y := processor_core.o processor_throttling.o | 62 | processor-y := processor_core.o processor_throttling.o |
63 | processor-y += processor_idle.o processor_thermal.o | 63 | processor-y += processor_idle.o processor_thermal.o |
64 | processor-$(CONFIG_CPU_FREQ) += processor_perflib.o | 64 | processor-$(CONFIG_CPU_FREQ) += processor_perflib.o |
65 | |||
66 | obj-$(CONFIG_ACPI_PROCESSOR_AGGREGATOR) += acpi_pad.o | ||
diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c index 98b9690b0159..b6ed60b57b0d 100644 --- a/drivers/acpi/ac.c +++ b/drivers/acpi/ac.c | |||
@@ -245,6 +245,7 @@ static void acpi_ac_notify(struct acpi_device *device, u32 event) | |||
245 | acpi_bus_generate_netlink_event(device->pnp.device_class, | 245 | acpi_bus_generate_netlink_event(device->pnp.device_class, |
246 | dev_name(&device->dev), event, | 246 | dev_name(&device->dev), event, |
247 | (u32) ac->state); | 247 | (u32) ac->state); |
248 | acpi_notifier_call_chain(device, event, (u32) ac->state); | ||
248 | #ifdef CONFIG_ACPI_SYSFS_POWER | 249 | #ifdef CONFIG_ACPI_SYSFS_POWER |
249 | kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); | 250 | kobject_uevent(&ac->charger.dev->kobj, KOBJ_CHANGE); |
250 | #endif | 251 | #endif |
diff --git a/drivers/acpi/acpi_pad.c b/drivers/acpi/acpi_pad.c new file mode 100644 index 000000000000..0d2cdb86158b --- /dev/null +++ b/drivers/acpi/acpi_pad.c | |||
@@ -0,0 +1,514 @@ | |||
1 | /* | ||
2 | * acpi_pad.c ACPI Processor Aggregator Driver | ||
3 | * | ||
4 | * Copyright (c) 2009, Intel Corporation. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License along with | ||
16 | * this program; if not, write to the Free Software Foundation, Inc., | ||
17 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | ||
18 | * | ||
19 | */ | ||
20 | |||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/cpumask.h> | ||
23 | #include <linux/module.h> | ||
24 | #include <linux/init.h> | ||
25 | #include <linux/types.h> | ||
26 | #include <linux/kthread.h> | ||
27 | #include <linux/freezer.h> | ||
28 | #include <linux/cpu.h> | ||
29 | #include <linux/clockchips.h> | ||
30 | #include <acpi/acpi_bus.h> | ||
31 | #include <acpi/acpi_drivers.h> | ||
32 | |||
33 | #define ACPI_PROCESSOR_AGGREGATOR_CLASS "processor_aggregator" | ||
34 | #define ACPI_PROCESSOR_AGGREGATOR_DEVICE_NAME "Processor Aggregator" | ||
35 | #define ACPI_PROCESSOR_AGGREGATOR_NOTIFY 0x80 | ||
36 | static DEFINE_MUTEX(isolated_cpus_lock); | ||
37 | |||
38 | #define MWAIT_SUBSTATE_MASK (0xf) | ||
39 | #define MWAIT_CSTATE_MASK (0xf) | ||
40 | #define MWAIT_SUBSTATE_SIZE (4) | ||
41 | #define CPUID_MWAIT_LEAF (5) | ||
42 | #define CPUID5_ECX_EXTENSIONS_SUPPORTED (0x1) | ||
43 | #define CPUID5_ECX_INTERRUPT_BREAK (0x2) | ||
44 | static unsigned long power_saving_mwait_eax; | ||
45 | static void power_saving_mwait_init(void) | ||
46 | { | ||
47 | unsigned int eax, ebx, ecx, edx; | ||
48 | unsigned int highest_cstate = 0; | ||
49 | unsigned int highest_subcstate = 0; | ||
50 | int i; | ||
51 | |||
52 | if (!boot_cpu_has(X86_FEATURE_MWAIT)) | ||
53 | return; | ||
54 | if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF) | ||
55 | return; | ||
56 | |||
57 | cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &edx); | ||
58 | |||
59 | if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) || | ||
60 | !(ecx & CPUID5_ECX_INTERRUPT_BREAK)) | ||
61 | return; | ||
62 | |||
63 | edx >>= MWAIT_SUBSTATE_SIZE; | ||
64 | for (i = 0; i < 7 && edx; i++, edx >>= MWAIT_SUBSTATE_SIZE) { | ||
65 | if (edx & MWAIT_SUBSTATE_MASK) { | ||
66 | highest_cstate = i; | ||
67 | highest_subcstate = edx & MWAIT_SUBSTATE_MASK; | ||
68 | } | ||
69 | } | ||
70 | power_saving_mwait_eax = (highest_cstate << MWAIT_SUBSTATE_SIZE) | | ||
71 | (highest_subcstate - 1); | ||
72 | |||
73 | for_each_online_cpu(i) | ||
74 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ON, &i); | ||
75 | |||
76 | #if defined(CONFIG_GENERIC_TIME) && defined(CONFIG_X86) | ||
77 | switch (boot_cpu_data.x86_vendor) { | ||
78 | case X86_VENDOR_AMD: | ||
79 | case X86_VENDOR_INTEL: | ||
80 | /* | ||
81 | * AMD Fam10h TSC will tick in all | ||
82 | * C/P/S0/S1 states when this bit is set. | ||
83 | */ | ||
84 | if (boot_cpu_has(X86_FEATURE_NONSTOP_TSC)) | ||
85 | return; | ||
86 | |||
87 | /*FALL THROUGH*/ | ||
88 | default: | ||
89 | /* TSC could halt in idle, so notify users */ | ||
90 | mark_tsc_unstable("TSC halts in idle"); | ||
91 | } | ||
92 | #endif | ||
93 | } | ||
94 | |||
95 | static unsigned long cpu_weight[NR_CPUS]; | ||
96 | static int tsk_in_cpu[NR_CPUS] = {[0 ... NR_CPUS-1] = -1}; | ||
97 | static DECLARE_BITMAP(pad_busy_cpus_bits, NR_CPUS); | ||
98 | static void round_robin_cpu(unsigned int tsk_index) | ||
99 | { | ||
100 | struct cpumask *pad_busy_cpus = to_cpumask(pad_busy_cpus_bits); | ||
101 | cpumask_var_t tmp; | ||
102 | int cpu; | ||
103 | unsigned long min_weight = -1, preferred_cpu; | ||
104 | |||
105 | if (!alloc_cpumask_var(&tmp, GFP_KERNEL)) | ||
106 | return; | ||
107 | |||
108 | mutex_lock(&isolated_cpus_lock); | ||
109 | cpumask_clear(tmp); | ||
110 | for_each_cpu(cpu, pad_busy_cpus) | ||
111 | cpumask_or(tmp, tmp, topology_thread_cpumask(cpu)); | ||
112 | cpumask_andnot(tmp, cpu_online_mask, tmp); | ||
113 | /* avoid HT sibilings if possible */ | ||
114 | if (cpumask_empty(tmp)) | ||
115 | cpumask_andnot(tmp, cpu_online_mask, pad_busy_cpus); | ||
116 | if (cpumask_empty(tmp)) { | ||
117 | mutex_unlock(&isolated_cpus_lock); | ||
118 | return; | ||
119 | } | ||
120 | for_each_cpu(cpu, tmp) { | ||
121 | if (cpu_weight[cpu] < min_weight) { | ||
122 | min_weight = cpu_weight[cpu]; | ||
123 | preferred_cpu = cpu; | ||
124 | } | ||
125 | } | ||
126 | |||
127 | if (tsk_in_cpu[tsk_index] != -1) | ||
128 | cpumask_clear_cpu(tsk_in_cpu[tsk_index], pad_busy_cpus); | ||
129 | tsk_in_cpu[tsk_index] = preferred_cpu; | ||
130 | cpumask_set_cpu(preferred_cpu, pad_busy_cpus); | ||
131 | cpu_weight[preferred_cpu]++; | ||
132 | mutex_unlock(&isolated_cpus_lock); | ||
133 | |||
134 | set_cpus_allowed_ptr(current, cpumask_of(preferred_cpu)); | ||
135 | } | ||
136 | |||
137 | static void exit_round_robin(unsigned int tsk_index) | ||
138 | { | ||
139 | struct cpumask *pad_busy_cpus = to_cpumask(pad_busy_cpus_bits); | ||
140 | cpumask_clear_cpu(tsk_in_cpu[tsk_index], pad_busy_cpus); | ||
141 | tsk_in_cpu[tsk_index] = -1; | ||
142 | } | ||
143 | |||
144 | static unsigned int idle_pct = 5; /* percentage */ | ||
145 | static unsigned int round_robin_time = 10; /* second */ | ||
146 | static int power_saving_thread(void *data) | ||
147 | { | ||
148 | struct sched_param param = {.sched_priority = 1}; | ||
149 | int do_sleep; | ||
150 | unsigned int tsk_index = (unsigned long)data; | ||
151 | u64 last_jiffies = 0; | ||
152 | |||
153 | sched_setscheduler(current, SCHED_RR, ¶m); | ||
154 | |||
155 | while (!kthread_should_stop()) { | ||
156 | int cpu; | ||
157 | u64 expire_time; | ||
158 | |||
159 | try_to_freeze(); | ||
160 | |||
161 | /* round robin to cpus */ | ||
162 | if (last_jiffies + round_robin_time * HZ < jiffies) { | ||
163 | last_jiffies = jiffies; | ||
164 | round_robin_cpu(tsk_index); | ||
165 | } | ||
166 | |||
167 | do_sleep = 0; | ||
168 | |||
169 | current_thread_info()->status &= ~TS_POLLING; | ||
170 | /* | ||
171 | * TS_POLLING-cleared state must be visible before we test | ||
172 | * NEED_RESCHED: | ||
173 | */ | ||
174 | smp_mb(); | ||
175 | |||
176 | expire_time = jiffies + HZ * (100 - idle_pct) / 100; | ||
177 | |||
178 | while (!need_resched()) { | ||
179 | local_irq_disable(); | ||
180 | cpu = smp_processor_id(); | ||
181 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, | ||
182 | &cpu); | ||
183 | stop_critical_timings(); | ||
184 | |||
185 | __monitor((void *)¤t_thread_info()->flags, 0, 0); | ||
186 | smp_mb(); | ||
187 | if (!need_resched()) | ||
188 | __mwait(power_saving_mwait_eax, 1); | ||
189 | |||
190 | start_critical_timings(); | ||
191 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, | ||
192 | &cpu); | ||
193 | local_irq_enable(); | ||
194 | |||
195 | if (jiffies > expire_time) { | ||
196 | do_sleep = 1; | ||
197 | break; | ||
198 | } | ||
199 | } | ||
200 | |||
201 | current_thread_info()->status |= TS_POLLING; | ||
202 | |||
203 | /* | ||
204 | * current sched_rt has threshold for rt task running time. | ||
205 | * When a rt task uses 95% CPU time, the rt thread will be | ||
206 | * scheduled out for 5% CPU time to not starve other tasks. But | ||
207 | * the mechanism only works when all CPUs have RT task running, | ||
208 | * as if one CPU hasn't RT task, RT task from other CPUs will | ||
209 | * borrow CPU time from this CPU and cause RT task use > 95% | ||
210 | * CPU time. To make 'avoid staration' work, takes a nap here. | ||
211 | */ | ||
212 | if (do_sleep) | ||
213 | schedule_timeout_killable(HZ * idle_pct / 100); | ||
214 | } | ||
215 | |||
216 | exit_round_robin(tsk_index); | ||
217 | return 0; | ||
218 | } | ||
219 | |||
220 | static struct task_struct *ps_tsks[NR_CPUS]; | ||
221 | static unsigned int ps_tsk_num; | ||
222 | static int create_power_saving_task(void) | ||
223 | { | ||
224 | ps_tsks[ps_tsk_num] = kthread_run(power_saving_thread, | ||
225 | (void *)(unsigned long)ps_tsk_num, | ||
226 | "power_saving/%d", ps_tsk_num); | ||
227 | if (ps_tsks[ps_tsk_num]) { | ||
228 | ps_tsk_num++; | ||
229 | return 0; | ||
230 | } | ||
231 | return -EINVAL; | ||
232 | } | ||
233 | |||
234 | static void destroy_power_saving_task(void) | ||
235 | { | ||
236 | if (ps_tsk_num > 0) { | ||
237 | ps_tsk_num--; | ||
238 | kthread_stop(ps_tsks[ps_tsk_num]); | ||
239 | } | ||
240 | } | ||
241 | |||
242 | static void set_power_saving_task_num(unsigned int num) | ||
243 | { | ||
244 | if (num > ps_tsk_num) { | ||
245 | while (ps_tsk_num < num) { | ||
246 | if (create_power_saving_task()) | ||
247 | return; | ||
248 | } | ||
249 | } else if (num < ps_tsk_num) { | ||
250 | while (ps_tsk_num > num) | ||
251 | destroy_power_saving_task(); | ||
252 | } | ||
253 | } | ||
254 | |||
255 | static int acpi_pad_idle_cpus(unsigned int num_cpus) | ||
256 | { | ||
257 | get_online_cpus(); | ||
258 | |||
259 | num_cpus = min_t(unsigned int, num_cpus, num_online_cpus()); | ||
260 | set_power_saving_task_num(num_cpus); | ||
261 | |||
262 | put_online_cpus(); | ||
263 | return 0; | ||
264 | } | ||
265 | |||
266 | static uint32_t acpi_pad_idle_cpus_num(void) | ||
267 | { | ||
268 | return ps_tsk_num; | ||
269 | } | ||
270 | |||
271 | static ssize_t acpi_pad_rrtime_store(struct device *dev, | ||
272 | struct device_attribute *attr, const char *buf, size_t count) | ||
273 | { | ||
274 | unsigned long num; | ||
275 | if (strict_strtoul(buf, 0, &num)) | ||
276 | return -EINVAL; | ||
277 | if (num < 1 || num >= 100) | ||
278 | return -EINVAL; | ||
279 | mutex_lock(&isolated_cpus_lock); | ||
280 | round_robin_time = num; | ||
281 | mutex_unlock(&isolated_cpus_lock); | ||
282 | return count; | ||
283 | } | ||
284 | |||
285 | static ssize_t acpi_pad_rrtime_show(struct device *dev, | ||
286 | struct device_attribute *attr, char *buf) | ||
287 | { | ||
288 | return scnprintf(buf, PAGE_SIZE, "%d", round_robin_time); | ||
289 | } | ||
290 | static DEVICE_ATTR(rrtime, S_IRUGO|S_IWUSR, | ||
291 | acpi_pad_rrtime_show, | ||
292 | acpi_pad_rrtime_store); | ||
293 | |||
294 | static ssize_t acpi_pad_idlepct_store(struct device *dev, | ||
295 | struct device_attribute *attr, const char *buf, size_t count) | ||
296 | { | ||
297 | unsigned long num; | ||
298 | if (strict_strtoul(buf, 0, &num)) | ||
299 | return -EINVAL; | ||
300 | if (num < 1 || num >= 100) | ||
301 | return -EINVAL; | ||
302 | mutex_lock(&isolated_cpus_lock); | ||
303 | idle_pct = num; | ||
304 | mutex_unlock(&isolated_cpus_lock); | ||
305 | return count; | ||
306 | } | ||
307 | |||
308 | static ssize_t acpi_pad_idlepct_show(struct device *dev, | ||
309 | struct device_attribute *attr, char *buf) | ||
310 | { | ||
311 | return scnprintf(buf, PAGE_SIZE, "%d", idle_pct); | ||
312 | } | ||
313 | static DEVICE_ATTR(idlepct, S_IRUGO|S_IWUSR, | ||
314 | acpi_pad_idlepct_show, | ||
315 | acpi_pad_idlepct_store); | ||
316 | |||
317 | static ssize_t acpi_pad_idlecpus_store(struct device *dev, | ||
318 | struct device_attribute *attr, const char *buf, size_t count) | ||
319 | { | ||
320 | unsigned long num; | ||
321 | if (strict_strtoul(buf, 0, &num)) | ||
322 | return -EINVAL; | ||
323 | mutex_lock(&isolated_cpus_lock); | ||
324 | acpi_pad_idle_cpus(num); | ||
325 | mutex_unlock(&isolated_cpus_lock); | ||
326 | return count; | ||
327 | } | ||
328 | |||
329 | static ssize_t acpi_pad_idlecpus_show(struct device *dev, | ||
330 | struct device_attribute *attr, char *buf) | ||
331 | { | ||
332 | return cpumask_scnprintf(buf, PAGE_SIZE, | ||
333 | to_cpumask(pad_busy_cpus_bits)); | ||
334 | } | ||
335 | static DEVICE_ATTR(idlecpus, S_IRUGO|S_IWUSR, | ||
336 | acpi_pad_idlecpus_show, | ||
337 | acpi_pad_idlecpus_store); | ||
338 | |||
339 | static int acpi_pad_add_sysfs(struct acpi_device *device) | ||
340 | { | ||
341 | int result; | ||
342 | |||
343 | result = device_create_file(&device->dev, &dev_attr_idlecpus); | ||
344 | if (result) | ||
345 | return -ENODEV; | ||
346 | result = device_create_file(&device->dev, &dev_attr_idlepct); | ||
347 | if (result) { | ||
348 | device_remove_file(&device->dev, &dev_attr_idlecpus); | ||
349 | return -ENODEV; | ||
350 | } | ||
351 | result = device_create_file(&device->dev, &dev_attr_rrtime); | ||
352 | if (result) { | ||
353 | device_remove_file(&device->dev, &dev_attr_idlecpus); | ||
354 | device_remove_file(&device->dev, &dev_attr_idlepct); | ||
355 | return -ENODEV; | ||
356 | } | ||
357 | return 0; | ||
358 | } | ||
359 | |||
360 | static void acpi_pad_remove_sysfs(struct acpi_device *device) | ||
361 | { | ||
362 | device_remove_file(&device->dev, &dev_attr_idlecpus); | ||
363 | device_remove_file(&device->dev, &dev_attr_idlepct); | ||
364 | device_remove_file(&device->dev, &dev_attr_rrtime); | ||
365 | } | ||
366 | |||
367 | /* Query firmware how many CPUs should be idle */ | ||
368 | static int acpi_pad_pur(acpi_handle handle, int *num_cpus) | ||
369 | { | ||
370 | struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; | ||
371 | acpi_status status; | ||
372 | union acpi_object *package; | ||
373 | int rev, num, ret = -EINVAL; | ||
374 | |||
375 | status = acpi_evaluate_object(handle, "_PUR", NULL, &buffer); | ||
376 | if (ACPI_FAILURE(status)) | ||
377 | return -EINVAL; | ||
378 | package = buffer.pointer; | ||
379 | if (package->type != ACPI_TYPE_PACKAGE || package->package.count != 2) | ||
380 | goto out; | ||
381 | rev = package->package.elements[0].integer.value; | ||
382 | num = package->package.elements[1].integer.value; | ||
383 | if (rev != 1) | ||
384 | goto out; | ||
385 | *num_cpus = num; | ||
386 | ret = 0; | ||
387 | out: | ||
388 | kfree(buffer.pointer); | ||
389 | return ret; | ||
390 | } | ||
391 | |||
392 | /* Notify firmware how many CPUs are idle */ | ||
393 | static void acpi_pad_ost(acpi_handle handle, int stat, | ||
394 | uint32_t idle_cpus) | ||
395 | { | ||
396 | union acpi_object params[3] = { | ||
397 | {.type = ACPI_TYPE_INTEGER,}, | ||
398 | {.type = ACPI_TYPE_INTEGER,}, | ||
399 | {.type = ACPI_TYPE_BUFFER,}, | ||
400 | }; | ||
401 | struct acpi_object_list arg_list = {3, params}; | ||
402 | |||
403 | params[0].integer.value = ACPI_PROCESSOR_AGGREGATOR_NOTIFY; | ||
404 | params[1].integer.value = stat; | ||
405 | params[2].buffer.length = 4; | ||
406 | params[2].buffer.pointer = (void *)&idle_cpus; | ||
407 | acpi_evaluate_object(handle, "_OST", &arg_list, NULL); | ||
408 | } | ||
409 | |||
410 | static void acpi_pad_handle_notify(acpi_handle handle) | ||
411 | { | ||
412 | int num_cpus, ret; | ||
413 | uint32_t idle_cpus; | ||
414 | |||
415 | mutex_lock(&isolated_cpus_lock); | ||
416 | if (acpi_pad_pur(handle, &num_cpus)) { | ||
417 | mutex_unlock(&isolated_cpus_lock); | ||
418 | return; | ||
419 | } | ||
420 | ret = acpi_pad_idle_cpus(num_cpus); | ||
421 | idle_cpus = acpi_pad_idle_cpus_num(); | ||
422 | if (!ret) | ||
423 | acpi_pad_ost(handle, 0, idle_cpus); | ||
424 | else | ||
425 | acpi_pad_ost(handle, 1, 0); | ||
426 | mutex_unlock(&isolated_cpus_lock); | ||
427 | } | ||
428 | |||
429 | static void acpi_pad_notify(acpi_handle handle, u32 event, | ||
430 | void *data) | ||
431 | { | ||
432 | struct acpi_device *device = data; | ||
433 | |||
434 | switch (event) { | ||
435 | case ACPI_PROCESSOR_AGGREGATOR_NOTIFY: | ||
436 | acpi_pad_handle_notify(handle); | ||
437 | acpi_bus_generate_proc_event(device, event, 0); | ||
438 | acpi_bus_generate_netlink_event(device->pnp.device_class, | ||
439 | dev_name(&device->dev), event, 0); | ||
440 | break; | ||
441 | default: | ||
442 | printk(KERN_WARNING"Unsupported event [0x%x]\n", event); | ||
443 | break; | ||
444 | } | ||
445 | } | ||
446 | |||
447 | static int acpi_pad_add(struct acpi_device *device) | ||
448 | { | ||
449 | acpi_status status; | ||
450 | |||
451 | strcpy(acpi_device_name(device), ACPI_PROCESSOR_AGGREGATOR_DEVICE_NAME); | ||
452 | strcpy(acpi_device_class(device), ACPI_PROCESSOR_AGGREGATOR_CLASS); | ||
453 | |||
454 | if (acpi_pad_add_sysfs(device)) | ||
455 | return -ENODEV; | ||
456 | |||
457 | status = acpi_install_notify_handler(device->handle, | ||
458 | ACPI_DEVICE_NOTIFY, acpi_pad_notify, device); | ||
459 | if (ACPI_FAILURE(status)) { | ||
460 | acpi_pad_remove_sysfs(device); | ||
461 | return -ENODEV; | ||
462 | } | ||
463 | |||
464 | return 0; | ||
465 | } | ||
466 | |||
467 | static int acpi_pad_remove(struct acpi_device *device, | ||
468 | int type) | ||
469 | { | ||
470 | mutex_lock(&isolated_cpus_lock); | ||
471 | acpi_pad_idle_cpus(0); | ||
472 | mutex_unlock(&isolated_cpus_lock); | ||
473 | |||
474 | acpi_remove_notify_handler(device->handle, | ||
475 | ACPI_DEVICE_NOTIFY, acpi_pad_notify); | ||
476 | acpi_pad_remove_sysfs(device); | ||
477 | return 0; | ||
478 | } | ||
479 | |||
480 | static const struct acpi_device_id pad_device_ids[] = { | ||
481 | {"ACPI000C", 0}, | ||
482 | {"", 0}, | ||
483 | }; | ||
484 | MODULE_DEVICE_TABLE(acpi, pad_device_ids); | ||
485 | |||
486 | static struct acpi_driver acpi_pad_driver = { | ||
487 | .name = "processor_aggregator", | ||
488 | .class = ACPI_PROCESSOR_AGGREGATOR_CLASS, | ||
489 | .ids = pad_device_ids, | ||
490 | .ops = { | ||
491 | .add = acpi_pad_add, | ||
492 | .remove = acpi_pad_remove, | ||
493 | }, | ||
494 | }; | ||
495 | |||
496 | static int __init acpi_pad_init(void) | ||
497 | { | ||
498 | power_saving_mwait_init(); | ||
499 | if (power_saving_mwait_eax == 0) | ||
500 | return -EINVAL; | ||
501 | |||
502 | return acpi_bus_register_driver(&acpi_pad_driver); | ||
503 | } | ||
504 | |||
505 | static void __exit acpi_pad_exit(void) | ||
506 | { | ||
507 | acpi_bus_unregister_driver(&acpi_pad_driver); | ||
508 | } | ||
509 | |||
510 | module_init(acpi_pad_init); | ||
511 | module_exit(acpi_pad_exit); | ||
512 | MODULE_AUTHOR("Shaohua Li<shaohua.li@intel.com>"); | ||
513 | MODULE_DESCRIPTION("ACPI Processor Aggregator Driver"); | ||
514 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/acpi/acpica/acconfig.h b/drivers/acpi/acpica/acconfig.h index 8e679ef5b231..a4471e3d3853 100644 --- a/drivers/acpi/acpica/acconfig.h +++ b/drivers/acpi/acpica/acconfig.h | |||
@@ -103,9 +103,9 @@ | |||
103 | 103 | ||
104 | #define ACPI_MAX_REFERENCE_COUNT 0x1000 | 104 | #define ACPI_MAX_REFERENCE_COUNT 0x1000 |
105 | 105 | ||
106 | /* Size of cached memory mapping for system memory operation region */ | 106 | /* Default page size for use in mapping memory for operation regions */ |
107 | 107 | ||
108 | #define ACPI_SYSMEM_REGION_WINDOW_SIZE 4096 | 108 | #define ACPI_DEFAULT_PAGE_SIZE 4096 /* Must be power of 2 */ |
109 | 109 | ||
110 | /* owner_id tracking. 8 entries allows for 255 owner_ids */ | 110 | /* owner_id tracking. 8 entries allows for 255 owner_ids */ |
111 | 111 | ||
diff --git a/drivers/acpi/acpica/exregion.c b/drivers/acpi/acpica/exregion.c index 3a54b737d2da..2bd83ac57c3a 100644 --- a/drivers/acpi/acpica/exregion.c +++ b/drivers/acpi/acpica/exregion.c | |||
@@ -77,7 +77,8 @@ acpi_ex_system_memory_space_handler(u32 function, | |||
77 | void *logical_addr_ptr = NULL; | 77 | void *logical_addr_ptr = NULL; |
78 | struct acpi_mem_space_context *mem_info = region_context; | 78 | struct acpi_mem_space_context *mem_info = region_context; |
79 | u32 length; | 79 | u32 length; |
80 | acpi_size window_size; | 80 | acpi_size map_length; |
81 | acpi_size page_boundary_map_length; | ||
81 | #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED | 82 | #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED |
82 | u32 remainder; | 83 | u32 remainder; |
83 | #endif | 84 | #endif |
@@ -144,25 +145,39 @@ acpi_ex_system_memory_space_handler(u32 function, | |||
144 | } | 145 | } |
145 | 146 | ||
146 | /* | 147 | /* |
147 | * Don't attempt to map memory beyond the end of the region, and | 148 | * Attempt to map from the requested address to the end of the region. |
148 | * constrain the maximum mapping size to something reasonable. | 149 | * However, we will never map more than one page, nor will we cross |
150 | * a page boundary. | ||
149 | */ | 151 | */ |
150 | window_size = (acpi_size) | 152 | map_length = (acpi_size) |
151 | ((mem_info->address + mem_info->length) - address); | 153 | ((mem_info->address + mem_info->length) - address); |
152 | 154 | ||
153 | if (window_size > ACPI_SYSMEM_REGION_WINDOW_SIZE) { | 155 | /* |
154 | window_size = ACPI_SYSMEM_REGION_WINDOW_SIZE; | 156 | * If mapping the entire remaining portion of the region will cross |
157 | * a page boundary, just map up to the page boundary, do not cross. | ||
158 | * On some systems, crossing a page boundary while mapping regions | ||
159 | * can cause warnings if the pages have different attributes | ||
160 | * due to resource management | ||
161 | */ | ||
162 | page_boundary_map_length = | ||
163 | ACPI_ROUND_UP(address, ACPI_DEFAULT_PAGE_SIZE) - address; | ||
164 | |||
165 | if (!page_boundary_map_length) { | ||
166 | page_boundary_map_length = ACPI_DEFAULT_PAGE_SIZE; | ||
167 | } | ||
168 | |||
169 | if (map_length > page_boundary_map_length) { | ||
170 | map_length = page_boundary_map_length; | ||
155 | } | 171 | } |
156 | 172 | ||
157 | /* Create a new mapping starting at the address given */ | 173 | /* Create a new mapping starting at the address given */ |
158 | 174 | ||
159 | mem_info->mapped_logical_address = | 175 | mem_info->mapped_logical_address = acpi_os_map_memory((acpi_physical_address) address, map_length); |
160 | acpi_os_map_memory((acpi_physical_address) address, window_size); | ||
161 | if (!mem_info->mapped_logical_address) { | 176 | if (!mem_info->mapped_logical_address) { |
162 | ACPI_ERROR((AE_INFO, | 177 | ACPI_ERROR((AE_INFO, |
163 | "Could not map memory at %8.8X%8.8X, size %X", | 178 | "Could not map memory at %8.8X%8.8X, size %X", |
164 | ACPI_FORMAT_NATIVE_UINT(address), | 179 | ACPI_FORMAT_NATIVE_UINT(address), |
165 | (u32) window_size)); | 180 | (u32) map_length)); |
166 | mem_info->mapped_length = 0; | 181 | mem_info->mapped_length = 0; |
167 | return_ACPI_STATUS(AE_NO_MEMORY); | 182 | return_ACPI_STATUS(AE_NO_MEMORY); |
168 | } | 183 | } |
@@ -170,7 +185,7 @@ acpi_ex_system_memory_space_handler(u32 function, | |||
170 | /* Save the physical address and mapping size */ | 185 | /* Save the physical address and mapping size */ |
171 | 186 | ||
172 | mem_info->mapped_physical_address = address; | 187 | mem_info->mapped_physical_address = address; |
173 | mem_info->mapped_length = window_size; | 188 | mem_info->mapped_length = map_length; |
174 | } | 189 | } |
175 | 190 | ||
176 | /* | 191 | /* |
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 135fbfe1825c..741191524353 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c | |||
@@ -94,36 +94,33 @@ int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device) | |||
94 | 94 | ||
95 | EXPORT_SYMBOL(acpi_bus_get_device); | 95 | EXPORT_SYMBOL(acpi_bus_get_device); |
96 | 96 | ||
97 | int acpi_bus_get_status(struct acpi_device *device) | 97 | acpi_status acpi_bus_get_status_handle(acpi_handle handle, |
98 | unsigned long long *sta) | ||
98 | { | 99 | { |
99 | acpi_status status = AE_OK; | 100 | acpi_status status; |
100 | unsigned long long sta = 0; | ||
101 | |||
102 | 101 | ||
103 | if (!device) | 102 | status = acpi_evaluate_integer(handle, "_STA", NULL, sta); |
104 | return -EINVAL; | 103 | if (ACPI_SUCCESS(status)) |
104 | return AE_OK; | ||
105 | 105 | ||
106 | /* | 106 | if (status == AE_NOT_FOUND) { |
107 | * Evaluate _STA if present. | 107 | *sta = ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | |
108 | */ | 108 | ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING; |
109 | if (device->flags.dynamic_status) { | 109 | return AE_OK; |
110 | status = | ||
111 | acpi_evaluate_integer(device->handle, "_STA", NULL, &sta); | ||
112 | if (ACPI_FAILURE(status)) | ||
113 | return -ENODEV; | ||
114 | STRUCT_TO_INT(device->status) = (int)sta; | ||
115 | } | 110 | } |
111 | return status; | ||
112 | } | ||
116 | 113 | ||
117 | /* | 114 | int acpi_bus_get_status(struct acpi_device *device) |
118 | * According to ACPI spec some device can be present and functional | 115 | { |
119 | * even if the parent is not present but functional. | 116 | acpi_status status; |
120 | * In such conditions the child device should not inherit the status | 117 | unsigned long long sta; |
121 | * from the parent. | 118 | |
122 | */ | 119 | status = acpi_bus_get_status_handle(device->handle, &sta); |
123 | else | 120 | if (ACPI_FAILURE(status)) |
124 | STRUCT_TO_INT(device->status) = | 121 | return -ENODEV; |
125 | ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | | 122 | |
126 | ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING; | 123 | STRUCT_TO_INT(device->status) = (int) sta; |
127 | 124 | ||
128 | if (device->status.functional && !device->status.present) { | 125 | if (device->status.functional && !device->status.present) { |
129 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: " | 126 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]: " |
@@ -135,10 +132,8 @@ int acpi_bus_get_status(struct acpi_device *device) | |||
135 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n", | 132 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device [%s] status [%08x]\n", |
136 | device->pnp.bus_id, | 133 | device->pnp.bus_id, |
137 | (u32) STRUCT_TO_INT(device->status))); | 134 | (u32) STRUCT_TO_INT(device->status))); |
138 | |||
139 | return 0; | 135 | return 0; |
140 | } | 136 | } |
141 | |||
142 | EXPORT_SYMBOL(acpi_bus_get_status); | 137 | EXPORT_SYMBOL(acpi_bus_get_status); |
143 | 138 | ||
144 | void acpi_bus_private_data_handler(acpi_handle handle, | 139 | void acpi_bus_private_data_handler(acpi_handle handle, |
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index 9335b87c5174..0c9c6a9a002c 100644 --- a/drivers/acpi/button.c +++ b/drivers/acpi/button.c | |||
@@ -251,6 +251,9 @@ int acpi_lid_open(void) | |||
251 | acpi_status status; | 251 | acpi_status status; |
252 | unsigned long long state; | 252 | unsigned long long state; |
253 | 253 | ||
254 | if (!lid_device) | ||
255 | return -ENODEV; | ||
256 | |||
254 | status = acpi_evaluate_integer(lid_device->handle, "_LID", NULL, | 257 | status = acpi_evaluate_integer(lid_device->handle, "_LID", NULL, |
255 | &state); | 258 | &state); |
256 | if (ACPI_FAILURE(status)) | 259 | if (ACPI_FAILURE(status)) |
diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c index 3a2cfefc71ab..7338b6a3e049 100644 --- a/drivers/acpi/dock.c +++ b/drivers/acpi/dock.c | |||
@@ -67,7 +67,7 @@ struct dock_station { | |||
67 | struct list_head dependent_devices; | 67 | struct list_head dependent_devices; |
68 | struct list_head hotplug_devices; | 68 | struct list_head hotplug_devices; |
69 | 69 | ||
70 | struct list_head sibiling; | 70 | struct list_head sibling; |
71 | struct platform_device *dock_device; | 71 | struct platform_device *dock_device; |
72 | }; | 72 | }; |
73 | static LIST_HEAD(dock_stations); | 73 | static LIST_HEAD(dock_stations); |
@@ -275,7 +275,7 @@ int is_dock_device(acpi_handle handle) | |||
275 | 275 | ||
276 | if (is_dock(handle)) | 276 | if (is_dock(handle)) |
277 | return 1; | 277 | return 1; |
278 | list_for_each_entry(dock_station, &dock_stations, sibiling) { | 278 | list_for_each_entry(dock_station, &dock_stations, sibling) { |
279 | if (find_dock_dependent_device(dock_station, handle)) | 279 | if (find_dock_dependent_device(dock_station, handle)) |
280 | return 1; | 280 | return 1; |
281 | } | 281 | } |
@@ -619,7 +619,7 @@ register_hotplug_dock_device(acpi_handle handle, struct acpi_dock_ops *ops, | |||
619 | * make sure this handle is for a device dependent on the dock, | 619 | * make sure this handle is for a device dependent on the dock, |
620 | * this would include the dock station itself | 620 | * this would include the dock station itself |
621 | */ | 621 | */ |
622 | list_for_each_entry(dock_station, &dock_stations, sibiling) { | 622 | list_for_each_entry(dock_station, &dock_stations, sibling) { |
623 | /* | 623 | /* |
624 | * An ATA bay can be in a dock and itself can be ejected | 624 | * An ATA bay can be in a dock and itself can be ejected |
625 | * seperately, so there are two 'dock stations' which need the | 625 | * seperately, so there are two 'dock stations' which need the |
@@ -651,7 +651,7 @@ void unregister_hotplug_dock_device(acpi_handle handle) | |||
651 | if (!dock_station_count) | 651 | if (!dock_station_count) |
652 | return; | 652 | return; |
653 | 653 | ||
654 | list_for_each_entry(dock_station, &dock_stations, sibiling) { | 654 | list_for_each_entry(dock_station, &dock_stations, sibling) { |
655 | dd = find_dock_dependent_device(dock_station, handle); | 655 | dd = find_dock_dependent_device(dock_station, handle); |
656 | if (dd) | 656 | if (dd) |
657 | dock_del_hotplug_device(dock_station, dd); | 657 | dock_del_hotplug_device(dock_station, dd); |
@@ -787,7 +787,7 @@ static int acpi_dock_notifier_call(struct notifier_block *this, | |||
787 | if (event != ACPI_NOTIFY_BUS_CHECK && event != ACPI_NOTIFY_DEVICE_CHECK | 787 | if (event != ACPI_NOTIFY_BUS_CHECK && event != ACPI_NOTIFY_DEVICE_CHECK |
788 | && event != ACPI_NOTIFY_EJECT_REQUEST) | 788 | && event != ACPI_NOTIFY_EJECT_REQUEST) |
789 | return 0; | 789 | return 0; |
790 | list_for_each_entry(dock_station, &dock_stations, sibiling) { | 790 | list_for_each_entry(dock_station, &dock_stations, sibling) { |
791 | if (dock_station->handle == handle) { | 791 | if (dock_station->handle == handle) { |
792 | struct dock_data *dock_data; | 792 | struct dock_data *dock_data; |
793 | 793 | ||
@@ -958,7 +958,7 @@ static int dock_add(acpi_handle handle) | |||
958 | dock_station->last_dock_time = jiffies - HZ; | 958 | dock_station->last_dock_time = jiffies - HZ; |
959 | INIT_LIST_HEAD(&dock_station->dependent_devices); | 959 | INIT_LIST_HEAD(&dock_station->dependent_devices); |
960 | INIT_LIST_HEAD(&dock_station->hotplug_devices); | 960 | INIT_LIST_HEAD(&dock_station->hotplug_devices); |
961 | INIT_LIST_HEAD(&dock_station->sibiling); | 961 | INIT_LIST_HEAD(&dock_station->sibling); |
962 | spin_lock_init(&dock_station->dd_lock); | 962 | spin_lock_init(&dock_station->dd_lock); |
963 | mutex_init(&dock_station->hp_lock); | 963 | mutex_init(&dock_station->hp_lock); |
964 | ATOMIC_INIT_NOTIFIER_HEAD(&dock_notifier_list); | 964 | ATOMIC_INIT_NOTIFIER_HEAD(&dock_notifier_list); |
@@ -1044,7 +1044,7 @@ static int dock_add(acpi_handle handle) | |||
1044 | add_dock_dependent_device(dock_station, dd); | 1044 | add_dock_dependent_device(dock_station, dd); |
1045 | 1045 | ||
1046 | dock_station_count++; | 1046 | dock_station_count++; |
1047 | list_add(&dock_station->sibiling, &dock_stations); | 1047 | list_add(&dock_station->sibling, &dock_stations); |
1048 | return 0; | 1048 | return 0; |
1049 | 1049 | ||
1050 | dock_add_err_unregister: | 1050 | dock_add_err_unregister: |
@@ -1149,7 +1149,7 @@ static void __exit dock_exit(void) | |||
1149 | struct dock_station *tmp; | 1149 | struct dock_station *tmp; |
1150 | 1150 | ||
1151 | unregister_acpi_bus_notifier(&dock_acpi_notifier); | 1151 | unregister_acpi_bus_notifier(&dock_acpi_notifier); |
1152 | list_for_each_entry_safe(dock_station, tmp, &dock_stations, sibiling) | 1152 | list_for_each_entry_safe(dock_station, tmp, &dock_stations, sibling) |
1153 | dock_remove(dock_station); | 1153 | dock_remove(dock_station); |
1154 | } | 1154 | } |
1155 | 1155 | ||
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index f70796081c4c..baef28c1e630 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c | |||
@@ -119,6 +119,8 @@ static struct acpi_ec { | |||
119 | } *boot_ec, *first_ec; | 119 | } *boot_ec, *first_ec; |
120 | 120 | ||
121 | static int EC_FLAGS_MSI; /* Out-of-spec MSI controller */ | 121 | static int EC_FLAGS_MSI; /* Out-of-spec MSI controller */ |
122 | static int EC_FLAGS_VALIDATE_ECDT; /* ASUStec ECDTs need to be validated */ | ||
123 | static int EC_FLAGS_SKIP_DSDT_SCAN; /* Not all BIOS survive early DSDT scan */ | ||
122 | 124 | ||
123 | /* -------------------------------------------------------------------------- | 125 | /* -------------------------------------------------------------------------- |
124 | Transaction Management | 126 | Transaction Management |
@@ -232,10 +234,8 @@ static int ec_poll(struct acpi_ec *ec) | |||
232 | } | 234 | } |
233 | advance_transaction(ec, acpi_ec_read_status(ec)); | 235 | advance_transaction(ec, acpi_ec_read_status(ec)); |
234 | } while (time_before(jiffies, delay)); | 236 | } while (time_before(jiffies, delay)); |
235 | if (!ec->curr->irq_count || | 237 | if (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF) |
236 | (acpi_ec_read_status(ec) & ACPI_EC_FLAG_IBF)) | ||
237 | break; | 238 | break; |
238 | /* try restart command if we get any false interrupts */ | ||
239 | pr_debug(PREFIX "controller reset, restart transaction\n"); | 239 | pr_debug(PREFIX "controller reset, restart transaction\n"); |
240 | spin_lock_irqsave(&ec->curr_lock, flags); | 240 | spin_lock_irqsave(&ec->curr_lock, flags); |
241 | start_transaction(ec); | 241 | start_transaction(ec); |
@@ -899,6 +899,44 @@ static const struct acpi_device_id ec_device_ids[] = { | |||
899 | {"", 0}, | 899 | {"", 0}, |
900 | }; | 900 | }; |
901 | 901 | ||
902 | /* Some BIOS do not survive early DSDT scan, skip it */ | ||
903 | static int ec_skip_dsdt_scan(const struct dmi_system_id *id) | ||
904 | { | ||
905 | EC_FLAGS_SKIP_DSDT_SCAN = 1; | ||
906 | return 0; | ||
907 | } | ||
908 | |||
909 | /* ASUStek often supplies us with broken ECDT, validate it */ | ||
910 | static int ec_validate_ecdt(const struct dmi_system_id *id) | ||
911 | { | ||
912 | EC_FLAGS_VALIDATE_ECDT = 1; | ||
913 | return 0; | ||
914 | } | ||
915 | |||
916 | /* MSI EC needs special treatment, enable it */ | ||
917 | static int ec_flag_msi(const struct dmi_system_id *id) | ||
918 | { | ||
919 | EC_FLAGS_MSI = 1; | ||
920 | EC_FLAGS_VALIDATE_ECDT = 1; | ||
921 | return 0; | ||
922 | } | ||
923 | |||
924 | static struct dmi_system_id __initdata ec_dmi_table[] = { | ||
925 | { | ||
926 | ec_skip_dsdt_scan, "Compal JFL92", { | ||
927 | DMI_MATCH(DMI_BIOS_VENDOR, "COMPAL"), | ||
928 | DMI_MATCH(DMI_BOARD_NAME, "JFL92") }, NULL}, | ||
929 | { | ||
930 | ec_flag_msi, "MSI hardware", { | ||
931 | DMI_MATCH(DMI_BIOS_VENDOR, "Micro-Star"), | ||
932 | DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-Star") }, NULL}, | ||
933 | { | ||
934 | ec_validate_ecdt, "ASUS hardware", { | ||
935 | DMI_MATCH(DMI_BIOS_VENDOR, "ASUS") }, NULL}, | ||
936 | {}, | ||
937 | }; | ||
938 | |||
939 | |||
902 | int __init acpi_ec_ecdt_probe(void) | 940 | int __init acpi_ec_ecdt_probe(void) |
903 | { | 941 | { |
904 | acpi_status status; | 942 | acpi_status status; |
@@ -911,11 +949,7 @@ int __init acpi_ec_ecdt_probe(void) | |||
911 | /* | 949 | /* |
912 | * Generate a boot ec context | 950 | * Generate a boot ec context |
913 | */ | 951 | */ |
914 | if (dmi_name_in_vendors("Micro-Star") || | 952 | dmi_check_system(ec_dmi_table); |
915 | dmi_name_in_vendors("Notebook")) { | ||
916 | pr_info(PREFIX "Enabling special treatment for EC from MSI.\n"); | ||
917 | EC_FLAGS_MSI = 1; | ||
918 | } | ||
919 | status = acpi_get_table(ACPI_SIG_ECDT, 1, | 953 | status = acpi_get_table(ACPI_SIG_ECDT, 1, |
920 | (struct acpi_table_header **)&ecdt_ptr); | 954 | (struct acpi_table_header **)&ecdt_ptr); |
921 | if (ACPI_SUCCESS(status)) { | 955 | if (ACPI_SUCCESS(status)) { |
@@ -926,7 +960,7 @@ int __init acpi_ec_ecdt_probe(void) | |||
926 | boot_ec->handle = ACPI_ROOT_OBJECT; | 960 | boot_ec->handle = ACPI_ROOT_OBJECT; |
927 | acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle); | 961 | acpi_get_handle(ACPI_ROOT_OBJECT, ecdt_ptr->id, &boot_ec->handle); |
928 | /* Don't trust ECDT, which comes from ASUSTek */ | 962 | /* Don't trust ECDT, which comes from ASUSTek */ |
929 | if (!dmi_name_in_vendors("ASUS") && EC_FLAGS_MSI == 0) | 963 | if (!EC_FLAGS_VALIDATE_ECDT) |
930 | goto install; | 964 | goto install; |
931 | saved_ec = kmalloc(sizeof(struct acpi_ec), GFP_KERNEL); | 965 | saved_ec = kmalloc(sizeof(struct acpi_ec), GFP_KERNEL); |
932 | if (!saved_ec) | 966 | if (!saved_ec) |
@@ -934,6 +968,10 @@ int __init acpi_ec_ecdt_probe(void) | |||
934 | memcpy(saved_ec, boot_ec, sizeof(struct acpi_ec)); | 968 | memcpy(saved_ec, boot_ec, sizeof(struct acpi_ec)); |
935 | /* fall through */ | 969 | /* fall through */ |
936 | } | 970 | } |
971 | |||
972 | if (EC_FLAGS_SKIP_DSDT_SCAN) | ||
973 | return -ENODEV; | ||
974 | |||
937 | /* This workaround is needed only on some broken machines, | 975 | /* This workaround is needed only on some broken machines, |
938 | * which require early EC, but fail to provide ECDT */ | 976 | * which require early EC, but fail to provide ECDT */ |
939 | printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n"); | 977 | printk(KERN_DEBUG PREFIX "Look up EC in DSDT\n"); |
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 5633b86e3ed1..7c1c59ea9ec6 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -1161,7 +1161,13 @@ int acpi_check_resource_conflict(struct resource *res) | |||
1161 | res_list_elem->name, | 1161 | res_list_elem->name, |
1162 | (long long) res_list_elem->start, | 1162 | (long long) res_list_elem->start, |
1163 | (long long) res_list_elem->end); | 1163 | (long long) res_list_elem->end); |
1164 | printk(KERN_INFO "ACPI: Device needs an ACPI driver\n"); | 1164 | if (acpi_enforce_resources == ENFORCE_RESOURCES_LAX) |
1165 | printk(KERN_NOTICE "ACPI: This conflict may" | ||
1166 | " cause random problems and system" | ||
1167 | " instability\n"); | ||
1168 | printk(KERN_INFO "ACPI: If an ACPI driver is available" | ||
1169 | " for this device, you should use it instead of" | ||
1170 | " the native driver\n"); | ||
1165 | } | 1171 | } |
1166 | if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT) | 1172 | if (acpi_enforce_resources == ENFORCE_RESOURCES_STRICT) |
1167 | return -EBUSY; | 1173 | return -EBUSY; |
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index 31122214e0ec..1af808171d46 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c | |||
@@ -389,6 +389,17 @@ struct pci_dev *acpi_get_pci_dev(acpi_handle handle) | |||
389 | 389 | ||
390 | pbus = pdev->subordinate; | 390 | pbus = pdev->subordinate; |
391 | pci_dev_put(pdev); | 391 | pci_dev_put(pdev); |
392 | |||
393 | /* | ||
394 | * This function may be called for a non-PCI device that has a | ||
395 | * PCI parent (eg. a disk under a PCI SATA controller). In that | ||
396 | * case pdev->subordinate will be NULL for the parent. | ||
397 | */ | ||
398 | if (!pbus) { | ||
399 | dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n"); | ||
400 | pdev = NULL; | ||
401 | break; | ||
402 | } | ||
392 | } | 403 | } |
393 | out: | 404 | out: |
394 | list_for_each_entry_safe(node, tmp, &device_list, node) | 405 | list_for_each_entry_safe(node, tmp, &device_list, node) |
diff --git a/drivers/acpi/power_meter.c b/drivers/acpi/power_meter.c index e6bfd77986b8..2ef7030a0c28 100644 --- a/drivers/acpi/power_meter.c +++ b/drivers/acpi/power_meter.c | |||
@@ -294,7 +294,11 @@ static int set_acpi_trip(struct acpi_power_meter_resource *resource) | |||
294 | return -EINVAL; | 294 | return -EINVAL; |
295 | } | 295 | } |
296 | 296 | ||
297 | return data; | 297 | /* _PTP returns 0 on success, nonzero otherwise */ |
298 | if (data) | ||
299 | return -EINVAL; | ||
300 | |||
301 | return 0; | ||
298 | } | 302 | } |
299 | 303 | ||
300 | static ssize_t set_trip(struct device *dev, struct device_attribute *devattr, | 304 | static ssize_t set_trip(struct device *dev, struct device_attribute *devattr, |
diff --git a/drivers/acpi/proc.c b/drivers/acpi/proc.c index d0d550d22a6d..d0d25e2e1ced 100644 --- a/drivers/acpi/proc.c +++ b/drivers/acpi/proc.c | |||
@@ -393,11 +393,13 @@ acpi_system_write_wakeup_device(struct file *file, | |||
393 | struct list_head *node, *next; | 393 | struct list_head *node, *next; |
394 | char strbuf[5]; | 394 | char strbuf[5]; |
395 | char str[5] = ""; | 395 | char str[5] = ""; |
396 | int len = count; | 396 | unsigned int len = count; |
397 | struct acpi_device *found_dev = NULL; | 397 | struct acpi_device *found_dev = NULL; |
398 | 398 | ||
399 | if (len > 4) | 399 | if (len > 4) |
400 | len = 4; | 400 | len = 4; |
401 | if (len < 0) | ||
402 | return -EFAULT; | ||
401 | 403 | ||
402 | if (copy_from_user(strbuf, buffer, len)) | 404 | if (copy_from_user(strbuf, buffer, len)) |
403 | return -EFAULT; | 405 | return -EFAULT; |
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c index c2d4d6e09364..ec742a4e5635 100644 --- a/drivers/acpi/processor_core.c +++ b/drivers/acpi/processor_core.c | |||
@@ -770,7 +770,7 @@ static struct notifier_block acpi_cpu_notifier = | |||
770 | .notifier_call = acpi_cpu_soft_notify, | 770 | .notifier_call = acpi_cpu_soft_notify, |
771 | }; | 771 | }; |
772 | 772 | ||
773 | static int acpi_processor_add(struct acpi_device *device) | 773 | static int __cpuinit acpi_processor_add(struct acpi_device *device) |
774 | { | 774 | { |
775 | struct acpi_processor *pr = NULL; | 775 | struct acpi_processor *pr = NULL; |
776 | int result = 0; | 776 | int result = 0; |
@@ -863,13 +863,6 @@ static int acpi_processor_add(struct acpi_device *device) | |||
863 | goto err_remove_sysfs; | 863 | goto err_remove_sysfs; |
864 | } | 864 | } |
865 | 865 | ||
866 | if (pr->flags.throttling) { | ||
867 | printk(KERN_INFO PREFIX "%s [%s] (supports", | ||
868 | acpi_device_name(device), acpi_device_bid(device)); | ||
869 | printk(" %d throttling states", pr->throttling.state_count); | ||
870 | printk(")\n"); | ||
871 | } | ||
872 | |||
873 | return 0; | 866 | return 0; |
874 | 867 | ||
875 | err_remove_sysfs: | 868 | err_remove_sysfs: |
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index cc61a6220102..bbd066e7f854 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
@@ -1166,7 +1166,6 @@ int __cpuinit acpi_processor_power_init(struct acpi_processor *pr, | |||
1166 | #ifdef CONFIG_ACPI_PROCFS | 1166 | #ifdef CONFIG_ACPI_PROCFS |
1167 | struct proc_dir_entry *entry = NULL; | 1167 | struct proc_dir_entry *entry = NULL; |
1168 | #endif | 1168 | #endif |
1169 | unsigned int i; | ||
1170 | 1169 | ||
1171 | if (boot_option_idle_override) | 1170 | if (boot_option_idle_override) |
1172 | return 0; | 1171 | return 0; |
@@ -1214,13 +1213,6 @@ int __cpuinit acpi_processor_power_init(struct acpi_processor *pr, | |||
1214 | acpi_processor_setup_cpuidle(pr); | 1213 | acpi_processor_setup_cpuidle(pr); |
1215 | if (cpuidle_register_device(&pr->power.dev)) | 1214 | if (cpuidle_register_device(&pr->power.dev)) |
1216 | return -EIO; | 1215 | return -EIO; |
1217 | |||
1218 | printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id); | ||
1219 | for (i = 1; i <= pr->power.count; i++) | ||
1220 | if (pr->power.states[i].valid) | ||
1221 | printk(" C%d[C%d]", i, | ||
1222 | pr->power.states[i].type); | ||
1223 | printk(")\n"); | ||
1224 | } | 1216 | } |
1225 | #ifdef CONFIG_ACPI_PROCFS | 1217 | #ifdef CONFIG_ACPI_PROCFS |
1226 | /* 'power' [R] */ | 1218 | /* 'power' [R] */ |
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 4c6c14c1e307..1c5d7a8b2fdf 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c | |||
@@ -1133,15 +1133,15 @@ int acpi_processor_get_throttling_info(struct acpi_processor *pr) | |||
1133 | int result = 0; | 1133 | int result = 0; |
1134 | struct acpi_processor_throttling *pthrottling; | 1134 | struct acpi_processor_throttling *pthrottling; |
1135 | 1135 | ||
1136 | if (!pr) | ||
1137 | return -EINVAL; | ||
1138 | |||
1136 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 1139 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
1137 | "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n", | 1140 | "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n", |
1138 | pr->throttling.address, | 1141 | pr->throttling.address, |
1139 | pr->throttling.duty_offset, | 1142 | pr->throttling.duty_offset, |
1140 | pr->throttling.duty_width)); | 1143 | pr->throttling.duty_width)); |
1141 | 1144 | ||
1142 | if (!pr) | ||
1143 | return -EINVAL; | ||
1144 | |||
1145 | /* | 1145 | /* |
1146 | * Evaluate _PTC, _TSS and _TPC | 1146 | * Evaluate _PTC, _TSS and _TPC |
1147 | * They must all be present or none of them can be used. | 1147 | * They must all be present or none of them can be used. |
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 408ebde18986..14a7481c97d7 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
@@ -22,6 +22,8 @@ extern struct acpi_device *acpi_root; | |||
22 | #define ACPI_BUS_HID "LNXSYBUS" | 22 | #define ACPI_BUS_HID "LNXSYBUS" |
23 | #define ACPI_BUS_DEVICE_NAME "System Bus" | 23 | #define ACPI_BUS_DEVICE_NAME "System Bus" |
24 | 24 | ||
25 | #define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent) | ||
26 | |||
25 | static LIST_HEAD(acpi_device_list); | 27 | static LIST_HEAD(acpi_device_list); |
26 | static LIST_HEAD(acpi_bus_id_list); | 28 | static LIST_HEAD(acpi_bus_id_list); |
27 | DEFINE_MUTEX(acpi_device_lock); | 29 | DEFINE_MUTEX(acpi_device_lock); |
@@ -43,40 +45,19 @@ static int create_modalias(struct acpi_device *acpi_dev, char *modalias, | |||
43 | { | 45 | { |
44 | int len; | 46 | int len; |
45 | int count; | 47 | int count; |
46 | 48 | struct acpi_hardware_id *id; | |
47 | if (!acpi_dev->flags.hardware_id && !acpi_dev->flags.compatible_ids) | ||
48 | return -ENODEV; | ||
49 | 49 | ||
50 | len = snprintf(modalias, size, "acpi:"); | 50 | len = snprintf(modalias, size, "acpi:"); |
51 | size -= len; | 51 | size -= len; |
52 | 52 | ||
53 | if (acpi_dev->flags.hardware_id) { | 53 | list_for_each_entry(id, &acpi_dev->pnp.ids, list) { |
54 | count = snprintf(&modalias[len], size, "%s:", | 54 | count = snprintf(&modalias[len], size, "%s:", id->id); |
55 | acpi_dev->pnp.hardware_id); | ||
56 | if (count < 0 || count >= size) | 55 | if (count < 0 || count >= size) |
57 | return -EINVAL; | 56 | return -EINVAL; |
58 | len += count; | 57 | len += count; |
59 | size -= count; | 58 | size -= count; |
60 | } | 59 | } |
61 | 60 | ||
62 | if (acpi_dev->flags.compatible_ids) { | ||
63 | struct acpica_device_id_list *cid_list; | ||
64 | int i; | ||
65 | |||
66 | cid_list = acpi_dev->pnp.cid_list; | ||
67 | for (i = 0; i < cid_list->count; i++) { | ||
68 | count = snprintf(&modalias[len], size, "%s:", | ||
69 | cid_list->ids[i].string); | ||
70 | if (count < 0 || count >= size) { | ||
71 | printk(KERN_ERR PREFIX "%s cid[%i] exceeds event buffer size", | ||
72 | acpi_dev->pnp.device_name, i); | ||
73 | break; | ||
74 | } | ||
75 | len += count; | ||
76 | size -= count; | ||
77 | } | ||
78 | } | ||
79 | |||
80 | modalias[len] = '\0'; | 61 | modalias[len] = '\0'; |
81 | return len; | 62 | return len; |
82 | } | 63 | } |
@@ -183,7 +164,7 @@ static ssize_t | |||
183 | acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) { | 164 | acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) { |
184 | struct acpi_device *acpi_dev = to_acpi_device(dev); | 165 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
185 | 166 | ||
186 | return sprintf(buf, "%s\n", acpi_dev->pnp.hardware_id); | 167 | return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev)); |
187 | } | 168 | } |
188 | static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL); | 169 | static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL); |
189 | 170 | ||
@@ -219,17 +200,13 @@ static int acpi_device_setup_files(struct acpi_device *dev) | |||
219 | goto end; | 200 | goto end; |
220 | } | 201 | } |
221 | 202 | ||
222 | if (dev->flags.hardware_id) { | 203 | result = device_create_file(&dev->dev, &dev_attr_hid); |
223 | result = device_create_file(&dev->dev, &dev_attr_hid); | 204 | if (result) |
224 | if (result) | 205 | goto end; |
225 | goto end; | ||
226 | } | ||
227 | 206 | ||
228 | if (dev->flags.hardware_id || dev->flags.compatible_ids) { | 207 | result = device_create_file(&dev->dev, &dev_attr_modalias); |
229 | result = device_create_file(&dev->dev, &dev_attr_modalias); | 208 | if (result) |
230 | if (result) | 209 | goto end; |
231 | goto end; | ||
232 | } | ||
233 | 210 | ||
234 | /* | 211 | /* |
235 | * If device has _EJ0, 'eject' file is created that is used to trigger | 212 | * If device has _EJ0, 'eject' file is created that is used to trigger |
@@ -255,11 +232,8 @@ static void acpi_device_remove_files(struct acpi_device *dev) | |||
255 | if (ACPI_SUCCESS(status)) | 232 | if (ACPI_SUCCESS(status)) |
256 | device_remove_file(&dev->dev, &dev_attr_eject); | 233 | device_remove_file(&dev->dev, &dev_attr_eject); |
257 | 234 | ||
258 | if (dev->flags.hardware_id || dev->flags.compatible_ids) | 235 | device_remove_file(&dev->dev, &dev_attr_modalias); |
259 | device_remove_file(&dev->dev, &dev_attr_modalias); | 236 | device_remove_file(&dev->dev, &dev_attr_hid); |
260 | |||
261 | if (dev->flags.hardware_id) | ||
262 | device_remove_file(&dev->dev, &dev_attr_hid); | ||
263 | if (dev->handle) | 237 | if (dev->handle) |
264 | device_remove_file(&dev->dev, &dev_attr_path); | 238 | device_remove_file(&dev->dev, &dev_attr_path); |
265 | } | 239 | } |
@@ -271,6 +245,7 @@ int acpi_match_device_ids(struct acpi_device *device, | |||
271 | const struct acpi_device_id *ids) | 245 | const struct acpi_device_id *ids) |
272 | { | 246 | { |
273 | const struct acpi_device_id *id; | 247 | const struct acpi_device_id *id; |
248 | struct acpi_hardware_id *hwid; | ||
274 | 249 | ||
275 | /* | 250 | /* |
276 | * If the device is not present, it is unnecessary to load device | 251 | * If the device is not present, it is unnecessary to load device |
@@ -279,40 +254,30 @@ int acpi_match_device_ids(struct acpi_device *device, | |||
279 | if (!device->status.present) | 254 | if (!device->status.present) |
280 | return -ENODEV; | 255 | return -ENODEV; |
281 | 256 | ||
282 | if (device->flags.hardware_id) { | 257 | for (id = ids; id->id[0]; id++) |
283 | for (id = ids; id->id[0]; id++) { | 258 | list_for_each_entry(hwid, &device->pnp.ids, list) |
284 | if (!strcmp((char*)id->id, device->pnp.hardware_id)) | 259 | if (!strcmp((char *) id->id, hwid->id)) |
285 | return 0; | 260 | return 0; |
286 | } | ||
287 | } | ||
288 | |||
289 | if (device->flags.compatible_ids) { | ||
290 | struct acpica_device_id_list *cid_list = device->pnp.cid_list; | ||
291 | int i; | ||
292 | |||
293 | for (id = ids; id->id[0]; id++) { | ||
294 | /* compare multiple _CID entries against driver ids */ | ||
295 | for (i = 0; i < cid_list->count; i++) { | ||
296 | if (!strcmp((char*)id->id, | ||
297 | cid_list->ids[i].string)) | ||
298 | return 0; | ||
299 | } | ||
300 | } | ||
301 | } | ||
302 | 261 | ||
303 | return -ENOENT; | 262 | return -ENOENT; |
304 | } | 263 | } |
305 | EXPORT_SYMBOL(acpi_match_device_ids); | 264 | EXPORT_SYMBOL(acpi_match_device_ids); |
306 | 265 | ||
266 | static void acpi_free_ids(struct acpi_device *device) | ||
267 | { | ||
268 | struct acpi_hardware_id *id, *tmp; | ||
269 | |||
270 | list_for_each_entry_safe(id, tmp, &device->pnp.ids, list) { | ||
271 | kfree(id->id); | ||
272 | kfree(id); | ||
273 | } | ||
274 | } | ||
275 | |||
307 | static void acpi_device_release(struct device *dev) | 276 | static void acpi_device_release(struct device *dev) |
308 | { | 277 | { |
309 | struct acpi_device *acpi_dev = to_acpi_device(dev); | 278 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
310 | 279 | ||
311 | kfree(acpi_dev->pnp.cid_list); | 280 | acpi_free_ids(acpi_dev); |
312 | if (acpi_dev->flags.hardware_id) | ||
313 | kfree(acpi_dev->pnp.hardware_id); | ||
314 | if (acpi_dev->flags.unique_id) | ||
315 | kfree(acpi_dev->pnp.unique_id); | ||
316 | kfree(acpi_dev); | 281 | kfree(acpi_dev); |
317 | } | 282 | } |
318 | 283 | ||
@@ -378,15 +343,13 @@ static acpi_status acpi_device_notify_fixed(void *data) | |||
378 | static int acpi_device_install_notify_handler(struct acpi_device *device) | 343 | static int acpi_device_install_notify_handler(struct acpi_device *device) |
379 | { | 344 | { |
380 | acpi_status status; | 345 | acpi_status status; |
381 | char *hid; | ||
382 | 346 | ||
383 | hid = acpi_device_hid(device); | 347 | if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON) |
384 | if (!strcmp(hid, ACPI_BUTTON_HID_POWERF)) | ||
385 | status = | 348 | status = |
386 | acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, | 349 | acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, |
387 | acpi_device_notify_fixed, | 350 | acpi_device_notify_fixed, |
388 | device); | 351 | device); |
389 | else if (!strcmp(hid, ACPI_BUTTON_HID_SLEEPF)) | 352 | else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON) |
390 | status = | 353 | status = |
391 | acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, | 354 | acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, |
392 | acpi_device_notify_fixed, | 355 | acpi_device_notify_fixed, |
@@ -404,10 +367,10 @@ static int acpi_device_install_notify_handler(struct acpi_device *device) | |||
404 | 367 | ||
405 | static void acpi_device_remove_notify_handler(struct acpi_device *device) | 368 | static void acpi_device_remove_notify_handler(struct acpi_device *device) |
406 | { | 369 | { |
407 | if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_POWERF)) | 370 | if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON) |
408 | acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, | 371 | acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, |
409 | acpi_device_notify_fixed); | 372 | acpi_device_notify_fixed); |
410 | else if (!strcmp(acpi_device_hid(device), ACPI_BUTTON_HID_SLEEPF)) | 373 | else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON) |
411 | acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, | 374 | acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, |
412 | acpi_device_notify_fixed); | 375 | acpi_device_notify_fixed); |
413 | else | 376 | else |
@@ -474,12 +437,12 @@ struct bus_type acpi_bus_type = { | |||
474 | .uevent = acpi_device_uevent, | 437 | .uevent = acpi_device_uevent, |
475 | }; | 438 | }; |
476 | 439 | ||
477 | static int acpi_device_register(struct acpi_device *device, | 440 | static int acpi_device_register(struct acpi_device *device) |
478 | struct acpi_device *parent) | ||
479 | { | 441 | { |
480 | int result; | 442 | int result; |
481 | struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id; | 443 | struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id; |
482 | int found = 0; | 444 | int found = 0; |
445 | |||
483 | /* | 446 | /* |
484 | * Linkage | 447 | * Linkage |
485 | * ------- | 448 | * ------- |
@@ -501,8 +464,9 @@ static int acpi_device_register(struct acpi_device *device, | |||
501 | * If failed, create one and link it into acpi_bus_id_list | 464 | * If failed, create one and link it into acpi_bus_id_list |
502 | */ | 465 | */ |
503 | list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) { | 466 | list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) { |
504 | if(!strcmp(acpi_device_bus_id->bus_id, device->flags.hardware_id? device->pnp.hardware_id : "device")) { | 467 | if (!strcmp(acpi_device_bus_id->bus_id, |
505 | acpi_device_bus_id->instance_no ++; | 468 | acpi_device_hid(device))) { |
469 | acpi_device_bus_id->instance_no++; | ||
506 | found = 1; | 470 | found = 1; |
507 | kfree(new_bus_id); | 471 | kfree(new_bus_id); |
508 | break; | 472 | break; |
@@ -510,7 +474,7 @@ static int acpi_device_register(struct acpi_device *device, | |||
510 | } | 474 | } |
511 | if (!found) { | 475 | if (!found) { |
512 | acpi_device_bus_id = new_bus_id; | 476 | acpi_device_bus_id = new_bus_id; |
513 | strcpy(acpi_device_bus_id->bus_id, device->flags.hardware_id ? device->pnp.hardware_id : "device"); | 477 | strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device)); |
514 | acpi_device_bus_id->instance_no = 0; | 478 | acpi_device_bus_id->instance_no = 0; |
515 | list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list); | 479 | list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list); |
516 | } | 480 | } |
@@ -524,7 +488,7 @@ static int acpi_device_register(struct acpi_device *device, | |||
524 | mutex_unlock(&acpi_device_lock); | 488 | mutex_unlock(&acpi_device_lock); |
525 | 489 | ||
526 | if (device->parent) | 490 | if (device->parent) |
527 | device->dev.parent = &parent->dev; | 491 | device->dev.parent = &device->parent->dev; |
528 | device->dev.bus = &acpi_bus_type; | 492 | device->dev.bus = &acpi_bus_type; |
529 | device->dev.release = &acpi_device_release; | 493 | device->dev.release = &acpi_device_release; |
530 | result = device_register(&device->dev); | 494 | result = device_register(&device->dev); |
@@ -664,6 +628,33 @@ EXPORT_SYMBOL(acpi_bus_unregister_driver); | |||
664 | /* -------------------------------------------------------------------------- | 628 | /* -------------------------------------------------------------------------- |
665 | Device Enumeration | 629 | Device Enumeration |
666 | -------------------------------------------------------------------------- */ | 630 | -------------------------------------------------------------------------- */ |
631 | static struct acpi_device *acpi_bus_get_parent(acpi_handle handle) | ||
632 | { | ||
633 | acpi_status status; | ||
634 | int ret; | ||
635 | struct acpi_device *device; | ||
636 | |||
637 | /* | ||
638 | * Fixed hardware devices do not appear in the namespace and do not | ||
639 | * have handles, but we fabricate acpi_devices for them, so we have | ||
640 | * to deal with them specially. | ||
641 | */ | ||
642 | if (handle == NULL) | ||
643 | return acpi_root; | ||
644 | |||
645 | do { | ||
646 | status = acpi_get_parent(handle, &handle); | ||
647 | if (status == AE_NULL_ENTRY) | ||
648 | return NULL; | ||
649 | if (ACPI_FAILURE(status)) | ||
650 | return acpi_root; | ||
651 | |||
652 | ret = acpi_bus_get_device(handle, &device); | ||
653 | if (ret == 0) | ||
654 | return device; | ||
655 | } while (1); | ||
656 | } | ||
657 | |||
667 | acpi_status | 658 | acpi_status |
668 | acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd) | 659 | acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd) |
669 | { | 660 | { |
@@ -876,11 +867,6 @@ static int acpi_bus_get_flags(struct acpi_device *device) | |||
876 | if (ACPI_SUCCESS(status)) | 867 | if (ACPI_SUCCESS(status)) |
877 | device->flags.dynamic_status = 1; | 868 | device->flags.dynamic_status = 1; |
878 | 869 | ||
879 | /* Presence of _CID indicates 'compatible_ids' */ | ||
880 | status = acpi_get_handle(device->handle, "_CID", &temp); | ||
881 | if (ACPI_SUCCESS(status)) | ||
882 | device->flags.compatible_ids = 1; | ||
883 | |||
884 | /* Presence of _RMV indicates 'removable' */ | 870 | /* Presence of _RMV indicates 'removable' */ |
885 | status = acpi_get_handle(device->handle, "_RMV", &temp); | 871 | status = acpi_get_handle(device->handle, "_RMV", &temp); |
886 | if (ACPI_SUCCESS(status)) | 872 | if (ACPI_SUCCESS(status)) |
@@ -918,8 +904,7 @@ static int acpi_bus_get_flags(struct acpi_device *device) | |||
918 | return 0; | 904 | return 0; |
919 | } | 905 | } |
920 | 906 | ||
921 | static void acpi_device_get_busid(struct acpi_device *device, | 907 | static void acpi_device_get_busid(struct acpi_device *device) |
922 | acpi_handle handle, int type) | ||
923 | { | 908 | { |
924 | char bus_id[5] = { '?', 0 }; | 909 | char bus_id[5] = { '?', 0 }; |
925 | struct acpi_buffer buffer = { sizeof(bus_id), bus_id }; | 910 | struct acpi_buffer buffer = { sizeof(bus_id), bus_id }; |
@@ -931,10 +916,12 @@ static void acpi_device_get_busid(struct acpi_device *device, | |||
931 | * The device's Bus ID is simply the object name. | 916 | * The device's Bus ID is simply the object name. |
932 | * TBD: Shouldn't this value be unique (within the ACPI namespace)? | 917 | * TBD: Shouldn't this value be unique (within the ACPI namespace)? |
933 | */ | 918 | */ |
934 | switch (type) { | 919 | if (ACPI_IS_ROOT_DEVICE(device)) { |
935 | case ACPI_BUS_TYPE_SYSTEM: | ||
936 | strcpy(device->pnp.bus_id, "ACPI"); | 920 | strcpy(device->pnp.bus_id, "ACPI"); |
937 | break; | 921 | return; |
922 | } | ||
923 | |||
924 | switch (device->device_type) { | ||
938 | case ACPI_BUS_TYPE_POWER_BUTTON: | 925 | case ACPI_BUS_TYPE_POWER_BUTTON: |
939 | strcpy(device->pnp.bus_id, "PWRF"); | 926 | strcpy(device->pnp.bus_id, "PWRF"); |
940 | break; | 927 | break; |
@@ -942,7 +929,7 @@ static void acpi_device_get_busid(struct acpi_device *device, | |||
942 | strcpy(device->pnp.bus_id, "SLPF"); | 929 | strcpy(device->pnp.bus_id, "SLPF"); |
943 | break; | 930 | break; |
944 | default: | 931 | default: |
945 | acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer); | 932 | acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer); |
946 | /* Clean up trailing underscores (if any) */ | 933 | /* Clean up trailing underscores (if any) */ |
947 | for (i = 3; i > 1; i--) { | 934 | for (i = 3; i > 1; i--) { |
948 | if (bus_id[i] == '_') | 935 | if (bus_id[i] == '_') |
@@ -1000,204 +987,134 @@ static int acpi_dock_match(struct acpi_device *device) | |||
1000 | return acpi_get_handle(device->handle, "_DCK", &tmp); | 987 | return acpi_get_handle(device->handle, "_DCK", &tmp); |
1001 | } | 988 | } |
1002 | 989 | ||
1003 | static struct acpica_device_id_list* | 990 | char *acpi_device_hid(struct acpi_device *device) |
1004 | acpi_add_cid( | ||
1005 | struct acpi_device_info *info, | ||
1006 | struct acpica_device_id *new_cid) | ||
1007 | { | 991 | { |
1008 | struct acpica_device_id_list *cid; | 992 | struct acpi_hardware_id *hid; |
1009 | char *next_id_string; | ||
1010 | acpi_size cid_length; | ||
1011 | acpi_size new_cid_length; | ||
1012 | u32 i; | ||
1013 | |||
1014 | |||
1015 | /* Allocate new CID list with room for the new CID */ | ||
1016 | |||
1017 | if (!new_cid) | ||
1018 | new_cid_length = info->compatible_id_list.list_size; | ||
1019 | else if (info->compatible_id_list.list_size) | ||
1020 | new_cid_length = info->compatible_id_list.list_size + | ||
1021 | new_cid->length + sizeof(struct acpica_device_id); | ||
1022 | else | ||
1023 | new_cid_length = sizeof(struct acpica_device_id_list) + new_cid->length; | ||
1024 | |||
1025 | cid = ACPI_ALLOCATE_ZEROED(new_cid_length); | ||
1026 | if (!cid) { | ||
1027 | return NULL; | ||
1028 | } | ||
1029 | |||
1030 | cid->list_size = new_cid_length; | ||
1031 | cid->count = info->compatible_id_list.count; | ||
1032 | if (new_cid) | ||
1033 | cid->count++; | ||
1034 | next_id_string = (char *) cid->ids + (cid->count * sizeof(struct acpica_device_id)); | ||
1035 | |||
1036 | /* Copy all existing CIDs */ | ||
1037 | |||
1038 | for (i = 0; i < info->compatible_id_list.count; i++) { | ||
1039 | cid_length = info->compatible_id_list.ids[i].length; | ||
1040 | cid->ids[i].string = next_id_string; | ||
1041 | cid->ids[i].length = cid_length; | ||
1042 | 993 | ||
1043 | ACPI_MEMCPY(next_id_string, info->compatible_id_list.ids[i].string, | 994 | hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list); |
1044 | cid_length); | 995 | return hid->id; |
1045 | 996 | } | |
1046 | next_id_string += cid_length; | 997 | EXPORT_SYMBOL(acpi_device_hid); |
1047 | } | ||
1048 | 998 | ||
1049 | /* Append the new CID */ | 999 | static void acpi_add_id(struct acpi_device *device, const char *dev_id) |
1000 | { | ||
1001 | struct acpi_hardware_id *id; | ||
1050 | 1002 | ||
1051 | if (new_cid) { | 1003 | id = kmalloc(sizeof(*id), GFP_KERNEL); |
1052 | cid->ids[i].string = next_id_string; | 1004 | if (!id) |
1053 | cid->ids[i].length = new_cid->length; | 1005 | return; |
1054 | 1006 | ||
1055 | ACPI_MEMCPY(next_id_string, new_cid->string, new_cid->length); | 1007 | id->id = kmalloc(strlen(dev_id) + 1, GFP_KERNEL); |
1008 | if (!id->id) { | ||
1009 | kfree(id); | ||
1010 | return; | ||
1056 | } | 1011 | } |
1057 | 1012 | ||
1058 | return cid; | 1013 | strcpy(id->id, dev_id); |
1014 | list_add_tail(&id->list, &device->pnp.ids); | ||
1059 | } | 1015 | } |
1060 | 1016 | ||
1061 | static void acpi_device_set_id(struct acpi_device *device, | 1017 | static void acpi_device_set_id(struct acpi_device *device) |
1062 | struct acpi_device *parent, acpi_handle handle, | ||
1063 | int type) | ||
1064 | { | 1018 | { |
1065 | struct acpi_device_info *info = NULL; | ||
1066 | char *hid = NULL; | ||
1067 | char *uid = NULL; | ||
1068 | struct acpica_device_id_list *cid_list = NULL; | ||
1069 | char *cid_add = NULL; | ||
1070 | acpi_status status; | 1019 | acpi_status status; |
1020 | struct acpi_device_info *info; | ||
1021 | struct acpica_device_id_list *cid_list; | ||
1022 | int i; | ||
1071 | 1023 | ||
1072 | switch (type) { | 1024 | switch (device->device_type) { |
1073 | case ACPI_BUS_TYPE_DEVICE: | 1025 | case ACPI_BUS_TYPE_DEVICE: |
1074 | status = acpi_get_object_info(handle, &info); | 1026 | if (ACPI_IS_ROOT_DEVICE(device)) { |
1027 | acpi_add_id(device, ACPI_SYSTEM_HID); | ||
1028 | break; | ||
1029 | } else if (ACPI_IS_ROOT_DEVICE(device->parent)) { | ||
1030 | /* \_SB_, the only root-level namespace device */ | ||
1031 | acpi_add_id(device, ACPI_BUS_HID); | ||
1032 | strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME); | ||
1033 | strcpy(device->pnp.device_class, ACPI_BUS_CLASS); | ||
1034 | break; | ||
1035 | } | ||
1036 | |||
1037 | status = acpi_get_object_info(device->handle, &info); | ||
1075 | if (ACPI_FAILURE(status)) { | 1038 | if (ACPI_FAILURE(status)) { |
1076 | printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__); | 1039 | printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__); |
1077 | return; | 1040 | return; |
1078 | } | 1041 | } |
1079 | 1042 | ||
1080 | if (info->valid & ACPI_VALID_HID) | 1043 | if (info->valid & ACPI_VALID_HID) |
1081 | hid = info->hardware_id.string; | 1044 | acpi_add_id(device, info->hardware_id.string); |
1082 | if (info->valid & ACPI_VALID_UID) | 1045 | if (info->valid & ACPI_VALID_CID) { |
1083 | uid = info->unique_id.string; | ||
1084 | if (info->valid & ACPI_VALID_CID) | ||
1085 | cid_list = &info->compatible_id_list; | 1046 | cid_list = &info->compatible_id_list; |
1047 | for (i = 0; i < cid_list->count; i++) | ||
1048 | acpi_add_id(device, cid_list->ids[i].string); | ||
1049 | } | ||
1086 | if (info->valid & ACPI_VALID_ADR) { | 1050 | if (info->valid & ACPI_VALID_ADR) { |
1087 | device->pnp.bus_address = info->address; | 1051 | device->pnp.bus_address = info->address; |
1088 | device->flags.bus_address = 1; | 1052 | device->flags.bus_address = 1; |
1089 | } | 1053 | } |
1090 | 1054 | ||
1091 | /* If we have a video/bay/dock device, add our selfdefined | 1055 | kfree(info); |
1092 | HID to the CID list. Like that the video/bay/dock drivers | 1056 | |
1093 | will get autoloaded and the device might still match | 1057 | /* |
1094 | against another driver. | 1058 | * Some devices don't reliably have _HIDs & _CIDs, so add |
1095 | */ | 1059 | * synthetic HIDs to make sure drivers can find them. |
1060 | */ | ||
1096 | if (acpi_is_video_device(device)) | 1061 | if (acpi_is_video_device(device)) |
1097 | cid_add = ACPI_VIDEO_HID; | 1062 | acpi_add_id(device, ACPI_VIDEO_HID); |
1098 | else if (ACPI_SUCCESS(acpi_bay_match(device))) | 1063 | else if (ACPI_SUCCESS(acpi_bay_match(device))) |
1099 | cid_add = ACPI_BAY_HID; | 1064 | acpi_add_id(device, ACPI_BAY_HID); |
1100 | else if (ACPI_SUCCESS(acpi_dock_match(device))) | 1065 | else if (ACPI_SUCCESS(acpi_dock_match(device))) |
1101 | cid_add = ACPI_DOCK_HID; | 1066 | acpi_add_id(device, ACPI_DOCK_HID); |
1102 | 1067 | ||
1103 | break; | 1068 | break; |
1104 | case ACPI_BUS_TYPE_POWER: | 1069 | case ACPI_BUS_TYPE_POWER: |
1105 | hid = ACPI_POWER_HID; | 1070 | acpi_add_id(device, ACPI_POWER_HID); |
1106 | break; | 1071 | break; |
1107 | case ACPI_BUS_TYPE_PROCESSOR: | 1072 | case ACPI_BUS_TYPE_PROCESSOR: |
1108 | hid = ACPI_PROCESSOR_OBJECT_HID; | 1073 | acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID); |
1109 | break; | ||
1110 | case ACPI_BUS_TYPE_SYSTEM: | ||
1111 | hid = ACPI_SYSTEM_HID; | ||
1112 | break; | 1074 | break; |
1113 | case ACPI_BUS_TYPE_THERMAL: | 1075 | case ACPI_BUS_TYPE_THERMAL: |
1114 | hid = ACPI_THERMAL_HID; | 1076 | acpi_add_id(device, ACPI_THERMAL_HID); |
1115 | break; | 1077 | break; |
1116 | case ACPI_BUS_TYPE_POWER_BUTTON: | 1078 | case ACPI_BUS_TYPE_POWER_BUTTON: |
1117 | hid = ACPI_BUTTON_HID_POWERF; | 1079 | acpi_add_id(device, ACPI_BUTTON_HID_POWERF); |
1118 | break; | 1080 | break; |
1119 | case ACPI_BUS_TYPE_SLEEP_BUTTON: | 1081 | case ACPI_BUS_TYPE_SLEEP_BUTTON: |
1120 | hid = ACPI_BUTTON_HID_SLEEPF; | 1082 | acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF); |
1121 | break; | 1083 | break; |
1122 | } | 1084 | } |
1123 | 1085 | ||
1124 | /* | 1086 | /* |
1125 | * \_SB | 1087 | * We build acpi_devices for some objects that don't have _HID or _CID, |
1126 | * ---- | 1088 | * e.g., PCI bridges and slots. Drivers can't bind to these objects, |
1127 | * Fix for the system root bus device -- the only root-level device. | 1089 | * but we do use them indirectly by traversing the acpi_device tree. |
1090 | * This generic ID isn't useful for driver binding, but it provides | ||
1091 | * the useful property that "every acpi_device has an ID." | ||
1128 | */ | 1092 | */ |
1129 | if (((acpi_handle)parent == ACPI_ROOT_OBJECT) && (type == ACPI_BUS_TYPE_DEVICE)) { | 1093 | if (list_empty(&device->pnp.ids)) |
1130 | hid = ACPI_BUS_HID; | 1094 | acpi_add_id(device, "device"); |
1131 | strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME); | ||
1132 | strcpy(device->pnp.device_class, ACPI_BUS_CLASS); | ||
1133 | } | ||
1134 | |||
1135 | if (hid) { | ||
1136 | device->pnp.hardware_id = ACPI_ALLOCATE_ZEROED(strlen (hid) + 1); | ||
1137 | if (device->pnp.hardware_id) { | ||
1138 | strcpy(device->pnp.hardware_id, hid); | ||
1139 | device->flags.hardware_id = 1; | ||
1140 | } | ||
1141 | } | ||
1142 | if (!device->flags.hardware_id) | ||
1143 | device->pnp.hardware_id = ""; | ||
1144 | |||
1145 | if (uid) { | ||
1146 | device->pnp.unique_id = ACPI_ALLOCATE_ZEROED(strlen (uid) + 1); | ||
1147 | if (device->pnp.unique_id) { | ||
1148 | strcpy(device->pnp.unique_id, uid); | ||
1149 | device->flags.unique_id = 1; | ||
1150 | } | ||
1151 | } | ||
1152 | if (!device->flags.unique_id) | ||
1153 | device->pnp.unique_id = ""; | ||
1154 | |||
1155 | if (cid_list || cid_add) { | ||
1156 | struct acpica_device_id_list *list; | ||
1157 | |||
1158 | if (cid_add) { | ||
1159 | struct acpica_device_id cid; | ||
1160 | cid.length = strlen (cid_add) + 1; | ||
1161 | cid.string = cid_add; | ||
1162 | |||
1163 | list = acpi_add_cid(info, &cid); | ||
1164 | } else { | ||
1165 | list = acpi_add_cid(info, NULL); | ||
1166 | } | ||
1167 | |||
1168 | if (list) { | ||
1169 | device->pnp.cid_list = list; | ||
1170 | if (cid_add) | ||
1171 | device->flags.compatible_ids = 1; | ||
1172 | } | ||
1173 | } | ||
1174 | |||
1175 | kfree(info); | ||
1176 | } | 1095 | } |
1177 | 1096 | ||
1178 | static int acpi_device_set_context(struct acpi_device *device, int type) | 1097 | static int acpi_device_set_context(struct acpi_device *device) |
1179 | { | 1098 | { |
1180 | acpi_status status = AE_OK; | 1099 | acpi_status status; |
1181 | int result = 0; | 1100 | |
1182 | /* | 1101 | /* |
1183 | * Context | 1102 | * Context |
1184 | * ------- | 1103 | * ------- |
1185 | * Attach this 'struct acpi_device' to the ACPI object. This makes | 1104 | * Attach this 'struct acpi_device' to the ACPI object. This makes |
1186 | * resolutions from handle->device very efficient. Note that we need | 1105 | * resolutions from handle->device very efficient. Fixed hardware |
1187 | * to be careful with fixed-feature devices as they all attach to the | 1106 | * devices have no handles, so we skip them. |
1188 | * root object. | ||
1189 | */ | 1107 | */ |
1190 | if (type != ACPI_BUS_TYPE_POWER_BUTTON && | 1108 | if (!device->handle) |
1191 | type != ACPI_BUS_TYPE_SLEEP_BUTTON) { | 1109 | return 0; |
1192 | status = acpi_attach_data(device->handle, | ||
1193 | acpi_bus_data_handler, device); | ||
1194 | 1110 | ||
1195 | if (ACPI_FAILURE(status)) { | 1111 | status = acpi_attach_data(device->handle, |
1196 | printk(KERN_ERR PREFIX "Error attaching device data\n"); | 1112 | acpi_bus_data_handler, device); |
1197 | result = -ENODEV; | 1113 | if (ACPI_SUCCESS(status)) |
1198 | } | 1114 | return 0; |
1199 | } | 1115 | |
1200 | return result; | 1116 | printk(KERN_ERR PREFIX "Error attaching device data\n"); |
1117 | return -ENODEV; | ||
1201 | } | 1118 | } |
1202 | 1119 | ||
1203 | static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) | 1120 | static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) |
@@ -1223,17 +1140,14 @@ static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) | |||
1223 | return 0; | 1140 | return 0; |
1224 | } | 1141 | } |
1225 | 1142 | ||
1226 | static int | 1143 | static int acpi_add_single_object(struct acpi_device **child, |
1227 | acpi_add_single_object(struct acpi_device **child, | 1144 | acpi_handle handle, int type, |
1228 | struct acpi_device *parent, acpi_handle handle, int type, | 1145 | unsigned long long sta, |
1229 | struct acpi_bus_ops *ops) | 1146 | struct acpi_bus_ops *ops) |
1230 | { | 1147 | { |
1231 | int result = 0; | 1148 | int result; |
1232 | struct acpi_device *device = NULL; | 1149 | struct acpi_device *device; |
1233 | 1150 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | |
1234 | |||
1235 | if (!child) | ||
1236 | return -EINVAL; | ||
1237 | 1151 | ||
1238 | device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL); | 1152 | device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL); |
1239 | if (!device) { | 1153 | if (!device) { |
@@ -1241,75 +1155,31 @@ acpi_add_single_object(struct acpi_device **child, | |||
1241 | return -ENOMEM; | 1155 | return -ENOMEM; |
1242 | } | 1156 | } |
1243 | 1157 | ||
1158 | INIT_LIST_HEAD(&device->pnp.ids); | ||
1159 | device->device_type = type; | ||
1244 | device->handle = handle; | 1160 | device->handle = handle; |
1245 | device->parent = parent; | 1161 | device->parent = acpi_bus_get_parent(handle); |
1246 | device->bus_ops = *ops; /* workround for not call .start */ | 1162 | device->bus_ops = *ops; /* workround for not call .start */ |
1163 | STRUCT_TO_INT(device->status) = sta; | ||
1247 | 1164 | ||
1248 | 1165 | acpi_device_get_busid(device); | |
1249 | acpi_device_get_busid(device, handle, type); | ||
1250 | 1166 | ||
1251 | /* | 1167 | /* |
1252 | * Flags | 1168 | * Flags |
1253 | * ----- | 1169 | * ----- |
1254 | * Get prior to calling acpi_bus_get_status() so we know whether | 1170 | * Note that we only look for object handles -- cannot evaluate objects |
1255 | * or not _STA is present. Note that we only look for object | 1171 | * until we know the device is present and properly initialized. |
1256 | * handles -- cannot evaluate objects until we know the device is | ||
1257 | * present and properly initialized. | ||
1258 | */ | 1172 | */ |
1259 | result = acpi_bus_get_flags(device); | 1173 | result = acpi_bus_get_flags(device); |
1260 | if (result) | 1174 | if (result) |
1261 | goto end; | 1175 | goto end; |
1262 | 1176 | ||
1263 | /* | 1177 | /* |
1264 | * Status | ||
1265 | * ------ | ||
1266 | * See if the device is present. We always assume that non-Device | ||
1267 | * and non-Processor objects (e.g. thermal zones, power resources, | ||
1268 | * etc.) are present, functioning, etc. (at least when parent object | ||
1269 | * is present). Note that _STA has a different meaning for some | ||
1270 | * objects (e.g. power resources) so we need to be careful how we use | ||
1271 | * it. | ||
1272 | */ | ||
1273 | switch (type) { | ||
1274 | case ACPI_BUS_TYPE_PROCESSOR: | ||
1275 | case ACPI_BUS_TYPE_DEVICE: | ||
1276 | result = acpi_bus_get_status(device); | ||
1277 | if (ACPI_FAILURE(result)) { | ||
1278 | result = -ENODEV; | ||
1279 | goto end; | ||
1280 | } | ||
1281 | /* | ||
1282 | * When the device is neither present nor functional, the | ||
1283 | * device should not be added to Linux ACPI device tree. | ||
1284 | * When the status of the device is not present but functinal, | ||
1285 | * it should be added to Linux ACPI tree. For example : bay | ||
1286 | * device , dock device. | ||
1287 | * In such conditions it is unncessary to check whether it is | ||
1288 | * bay device or dock device. | ||
1289 | */ | ||
1290 | if (!device->status.present && !device->status.functional) { | ||
1291 | result = -ENODEV; | ||
1292 | goto end; | ||
1293 | } | ||
1294 | break; | ||
1295 | default: | ||
1296 | STRUCT_TO_INT(device->status) = | ||
1297 | ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | | ||
1298 | ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING; | ||
1299 | break; | ||
1300 | } | ||
1301 | |||
1302 | /* | ||
1303 | * Initialize Device | 1178 | * Initialize Device |
1304 | * ----------------- | 1179 | * ----------------- |
1305 | * TBD: Synch with Core's enumeration/initialization process. | 1180 | * TBD: Synch with Core's enumeration/initialization process. |
1306 | */ | 1181 | */ |
1307 | 1182 | acpi_device_set_id(device); | |
1308 | /* | ||
1309 | * Hardware ID, Unique ID, & Bus Address | ||
1310 | * ------------------------------------- | ||
1311 | */ | ||
1312 | acpi_device_set_id(device, parent, handle, type); | ||
1313 | 1183 | ||
1314 | /* | 1184 | /* |
1315 | * Power Management | 1185 | * Power Management |
@@ -1341,10 +1211,10 @@ acpi_add_single_object(struct acpi_device **child, | |||
1341 | goto end; | 1211 | goto end; |
1342 | } | 1212 | } |
1343 | 1213 | ||
1344 | if ((result = acpi_device_set_context(device, type))) | 1214 | if ((result = acpi_device_set_context(device))) |
1345 | goto end; | 1215 | goto end; |
1346 | 1216 | ||
1347 | result = acpi_device_register(device, parent); | 1217 | result = acpi_device_register(device); |
1348 | 1218 | ||
1349 | /* | 1219 | /* |
1350 | * Bind _ADR-Based Devices when hot add | 1220 | * Bind _ADR-Based Devices when hot add |
@@ -1355,128 +1225,117 @@ acpi_add_single_object(struct acpi_device **child, | |||
1355 | } | 1225 | } |
1356 | 1226 | ||
1357 | end: | 1227 | end: |
1358 | if (!result) | 1228 | if (!result) { |
1229 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); | ||
1230 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | ||
1231 | "Adding %s [%s] parent %s\n", dev_name(&device->dev), | ||
1232 | (char *) buffer.pointer, | ||
1233 | device->parent ? dev_name(&device->parent->dev) : | ||
1234 | "(null)")); | ||
1235 | kfree(buffer.pointer); | ||
1359 | *child = device; | 1236 | *child = device; |
1360 | else | 1237 | } else |
1361 | acpi_device_release(&device->dev); | 1238 | acpi_device_release(&device->dev); |
1362 | 1239 | ||
1363 | return result; | 1240 | return result; |
1364 | } | 1241 | } |
1365 | 1242 | ||
1366 | static int acpi_bus_scan(struct acpi_device *start, struct acpi_bus_ops *ops) | 1243 | #define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \ |
1367 | { | 1244 | ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING) |
1368 | acpi_status status = AE_OK; | ||
1369 | struct acpi_device *parent = NULL; | ||
1370 | struct acpi_device *child = NULL; | ||
1371 | acpi_handle phandle = NULL; | ||
1372 | acpi_handle chandle = NULL; | ||
1373 | acpi_object_type type = 0; | ||
1374 | u32 level = 1; | ||
1375 | |||
1376 | 1245 | ||
1377 | if (!start) | 1246 | static int acpi_bus_type_and_status(acpi_handle handle, int *type, |
1378 | return -EINVAL; | 1247 | unsigned long long *sta) |
1248 | { | ||
1249 | acpi_status status; | ||
1250 | acpi_object_type acpi_type; | ||
1379 | 1251 | ||
1380 | parent = start; | 1252 | status = acpi_get_type(handle, &acpi_type); |
1381 | phandle = start->handle; | 1253 | if (ACPI_FAILURE(status)) |
1254 | return -ENODEV; | ||
1382 | 1255 | ||
1383 | /* | 1256 | switch (acpi_type) { |
1384 | * Parse through the ACPI namespace, identify all 'devices', and | 1257 | case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */ |
1385 | * create a new 'struct acpi_device' for each. | 1258 | case ACPI_TYPE_DEVICE: |
1386 | */ | 1259 | *type = ACPI_BUS_TYPE_DEVICE; |
1387 | while ((level > 0) && parent) { | 1260 | status = acpi_bus_get_status_handle(handle, sta); |
1261 | if (ACPI_FAILURE(status)) | ||
1262 | return -ENODEV; | ||
1263 | break; | ||
1264 | case ACPI_TYPE_PROCESSOR: | ||
1265 | *type = ACPI_BUS_TYPE_PROCESSOR; | ||
1266 | status = acpi_bus_get_status_handle(handle, sta); | ||
1267 | if (ACPI_FAILURE(status)) | ||
1268 | return -ENODEV; | ||
1269 | break; | ||
1270 | case ACPI_TYPE_THERMAL: | ||
1271 | *type = ACPI_BUS_TYPE_THERMAL; | ||
1272 | *sta = ACPI_STA_DEFAULT; | ||
1273 | break; | ||
1274 | case ACPI_TYPE_POWER: | ||
1275 | *type = ACPI_BUS_TYPE_POWER; | ||
1276 | *sta = ACPI_STA_DEFAULT; | ||
1277 | break; | ||
1278 | default: | ||
1279 | return -ENODEV; | ||
1280 | } | ||
1388 | 1281 | ||
1389 | status = acpi_get_next_object(ACPI_TYPE_ANY, phandle, | 1282 | return 0; |
1390 | chandle, &chandle); | 1283 | } |
1391 | 1284 | ||
1392 | /* | 1285 | static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl, |
1393 | * If this scope is exhausted then move our way back up. | 1286 | void *context, void **return_value) |
1394 | */ | 1287 | { |
1395 | if (ACPI_FAILURE(status)) { | 1288 | struct acpi_bus_ops *ops = context; |
1396 | level--; | 1289 | int type; |
1397 | chandle = phandle; | 1290 | unsigned long long sta; |
1398 | acpi_get_parent(phandle, &phandle); | 1291 | struct acpi_device *device; |
1399 | if (parent->parent) | 1292 | acpi_status status; |
1400 | parent = parent->parent; | 1293 | int result; |
1401 | continue; | ||
1402 | } | ||
1403 | 1294 | ||
1404 | status = acpi_get_type(chandle, &type); | 1295 | result = acpi_bus_type_and_status(handle, &type, &sta); |
1405 | if (ACPI_FAILURE(status)) | 1296 | if (result) |
1406 | continue; | 1297 | return AE_OK; |
1407 | 1298 | ||
1408 | /* | 1299 | if (!(sta & ACPI_STA_DEVICE_PRESENT) && |
1409 | * If this is a scope object then parse it (depth-first). | 1300 | !(sta & ACPI_STA_DEVICE_FUNCTIONING)) |
1410 | */ | 1301 | return AE_CTRL_DEPTH; |
1411 | if (type == ACPI_TYPE_LOCAL_SCOPE) { | ||
1412 | level++; | ||
1413 | phandle = chandle; | ||
1414 | chandle = NULL; | ||
1415 | continue; | ||
1416 | } | ||
1417 | 1302 | ||
1418 | /* | 1303 | /* |
1419 | * We're only interested in objects that we consider 'devices'. | 1304 | * We may already have an acpi_device from a previous enumeration. If |
1420 | */ | 1305 | * so, we needn't add it again, but we may still have to start it. |
1421 | switch (type) { | 1306 | */ |
1422 | case ACPI_TYPE_DEVICE: | 1307 | device = NULL; |
1423 | type = ACPI_BUS_TYPE_DEVICE; | 1308 | acpi_bus_get_device(handle, &device); |
1424 | break; | 1309 | if (ops->acpi_op_add && !device) |
1425 | case ACPI_TYPE_PROCESSOR: | 1310 | acpi_add_single_object(&device, handle, type, sta, ops); |
1426 | type = ACPI_BUS_TYPE_PROCESSOR; | ||
1427 | break; | ||
1428 | case ACPI_TYPE_THERMAL: | ||
1429 | type = ACPI_BUS_TYPE_THERMAL; | ||
1430 | break; | ||
1431 | case ACPI_TYPE_POWER: | ||
1432 | type = ACPI_BUS_TYPE_POWER; | ||
1433 | break; | ||
1434 | default: | ||
1435 | continue; | ||
1436 | } | ||
1437 | 1311 | ||
1438 | if (ops->acpi_op_add) | 1312 | if (!device) |
1439 | status = acpi_add_single_object(&child, parent, | 1313 | return AE_CTRL_DEPTH; |
1440 | chandle, type, ops); | ||
1441 | else | ||
1442 | status = acpi_bus_get_device(chandle, &child); | ||
1443 | 1314 | ||
1315 | if (ops->acpi_op_start && !(ops->acpi_op_add)) { | ||
1316 | status = acpi_start_single_object(device); | ||
1444 | if (ACPI_FAILURE(status)) | 1317 | if (ACPI_FAILURE(status)) |
1445 | continue; | 1318 | return AE_CTRL_DEPTH; |
1319 | } | ||
1446 | 1320 | ||
1447 | if (ops->acpi_op_start && !(ops->acpi_op_add)) { | 1321 | if (!*return_value) |
1448 | status = acpi_start_single_object(child); | 1322 | *return_value = device; |
1449 | if (ACPI_FAILURE(status)) | 1323 | return AE_OK; |
1450 | continue; | 1324 | } |
1451 | } | ||
1452 | 1325 | ||
1453 | /* | 1326 | static int acpi_bus_scan(acpi_handle handle, struct acpi_bus_ops *ops, |
1454 | * If the device is present, enabled, and functioning then | 1327 | struct acpi_device **child) |
1455 | * parse its scope (depth-first). Note that we need to | 1328 | { |
1456 | * represent absent devices to facilitate PnP notifications | 1329 | acpi_status status; |
1457 | * -- but only the subtree head (not all of its children, | 1330 | void *device = NULL; |
1458 | * which will be enumerated when the parent is inserted). | 1331 | |
1459 | * | 1332 | status = acpi_bus_check_add(handle, 0, ops, &device); |
1460 | * TBD: Need notifications and other detection mechanisms | 1333 | if (ACPI_SUCCESS(status)) |
1461 | * in place before we can fully implement this. | 1334 | acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, |
1462 | */ | 1335 | acpi_bus_check_add, ops, &device); |
1463 | /* | ||
1464 | * When the device is not present but functional, it is also | ||
1465 | * necessary to scan the children of this device. | ||
1466 | */ | ||
1467 | if (child->status.present || (!child->status.present && | ||
1468 | child->status.functional)) { | ||
1469 | status = acpi_get_next_object(ACPI_TYPE_ANY, chandle, | ||
1470 | NULL, NULL); | ||
1471 | if (ACPI_SUCCESS(status)) { | ||
1472 | level++; | ||
1473 | phandle = chandle; | ||
1474 | chandle = NULL; | ||
1475 | parent = child; | ||
1476 | } | ||
1477 | } | ||
1478 | } | ||
1479 | 1336 | ||
1337 | if (child) | ||
1338 | *child = device; | ||
1480 | return 0; | 1339 | return 0; |
1481 | } | 1340 | } |
1482 | 1341 | ||
@@ -1484,36 +1343,25 @@ int | |||
1484 | acpi_bus_add(struct acpi_device **child, | 1343 | acpi_bus_add(struct acpi_device **child, |
1485 | struct acpi_device *parent, acpi_handle handle, int type) | 1344 | struct acpi_device *parent, acpi_handle handle, int type) |
1486 | { | 1345 | { |
1487 | int result; | ||
1488 | struct acpi_bus_ops ops; | 1346 | struct acpi_bus_ops ops; |
1489 | 1347 | ||
1490 | memset(&ops, 0, sizeof(ops)); | 1348 | memset(&ops, 0, sizeof(ops)); |
1491 | ops.acpi_op_add = 1; | 1349 | ops.acpi_op_add = 1; |
1492 | 1350 | ||
1493 | result = acpi_add_single_object(child, parent, handle, type, &ops); | 1351 | acpi_bus_scan(handle, &ops, child); |
1494 | if (!result) | 1352 | return 0; |
1495 | result = acpi_bus_scan(*child, &ops); | ||
1496 | |||
1497 | return result; | ||
1498 | } | 1353 | } |
1499 | EXPORT_SYMBOL(acpi_bus_add); | 1354 | EXPORT_SYMBOL(acpi_bus_add); |
1500 | 1355 | ||
1501 | int acpi_bus_start(struct acpi_device *device) | 1356 | int acpi_bus_start(struct acpi_device *device) |
1502 | { | 1357 | { |
1503 | int result; | ||
1504 | struct acpi_bus_ops ops; | 1358 | struct acpi_bus_ops ops; |
1505 | 1359 | ||
1360 | memset(&ops, 0, sizeof(ops)); | ||
1361 | ops.acpi_op_start = 1; | ||
1506 | 1362 | ||
1507 | if (!device) | 1363 | acpi_bus_scan(device->handle, &ops, NULL); |
1508 | return -EINVAL; | 1364 | return 0; |
1509 | |||
1510 | result = acpi_start_single_object(device); | ||
1511 | if (!result) { | ||
1512 | memset(&ops, 0, sizeof(ops)); | ||
1513 | ops.acpi_op_start = 1; | ||
1514 | result = acpi_bus_scan(device, &ops); | ||
1515 | } | ||
1516 | return result; | ||
1517 | } | 1365 | } |
1518 | EXPORT_SYMBOL(acpi_bus_start); | 1366 | EXPORT_SYMBOL(acpi_bus_start); |
1519 | 1367 | ||
@@ -1572,15 +1420,12 @@ int acpi_bus_trim(struct acpi_device *start, int rmdevice) | |||
1572 | } | 1420 | } |
1573 | EXPORT_SYMBOL_GPL(acpi_bus_trim); | 1421 | EXPORT_SYMBOL_GPL(acpi_bus_trim); |
1574 | 1422 | ||
1575 | static int acpi_bus_scan_fixed(struct acpi_device *root) | 1423 | static int acpi_bus_scan_fixed(void) |
1576 | { | 1424 | { |
1577 | int result = 0; | 1425 | int result = 0; |
1578 | struct acpi_device *device = NULL; | 1426 | struct acpi_device *device = NULL; |
1579 | struct acpi_bus_ops ops; | 1427 | struct acpi_bus_ops ops; |
1580 | 1428 | ||
1581 | if (!root) | ||
1582 | return -ENODEV; | ||
1583 | |||
1584 | memset(&ops, 0, sizeof(ops)); | 1429 | memset(&ops, 0, sizeof(ops)); |
1585 | ops.acpi_op_add = 1; | 1430 | ops.acpi_op_add = 1; |
1586 | ops.acpi_op_start = 1; | 1431 | ops.acpi_op_start = 1; |
@@ -1589,16 +1434,16 @@ static int acpi_bus_scan_fixed(struct acpi_device *root) | |||
1589 | * Enumerate all fixed-feature devices. | 1434 | * Enumerate all fixed-feature devices. |
1590 | */ | 1435 | */ |
1591 | if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) { | 1436 | if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) { |
1592 | result = acpi_add_single_object(&device, acpi_root, | 1437 | result = acpi_add_single_object(&device, NULL, |
1593 | NULL, | ||
1594 | ACPI_BUS_TYPE_POWER_BUTTON, | 1438 | ACPI_BUS_TYPE_POWER_BUTTON, |
1439 | ACPI_STA_DEFAULT, | ||
1595 | &ops); | 1440 | &ops); |
1596 | } | 1441 | } |
1597 | 1442 | ||
1598 | if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) { | 1443 | if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) { |
1599 | result = acpi_add_single_object(&device, acpi_root, | 1444 | result = acpi_add_single_object(&device, NULL, |
1600 | NULL, | ||
1601 | ACPI_BUS_TYPE_SLEEP_BUTTON, | 1445 | ACPI_BUS_TYPE_SLEEP_BUTTON, |
1446 | ACPI_STA_DEFAULT, | ||
1602 | &ops); | 1447 | &ops); |
1603 | } | 1448 | } |
1604 | 1449 | ||
@@ -1621,24 +1466,15 @@ int __init acpi_scan_init(void) | |||
1621 | } | 1466 | } |
1622 | 1467 | ||
1623 | /* | 1468 | /* |
1624 | * Create the root device in the bus's device tree | ||
1625 | */ | ||
1626 | result = acpi_add_single_object(&acpi_root, NULL, ACPI_ROOT_OBJECT, | ||
1627 | ACPI_BUS_TYPE_SYSTEM, &ops); | ||
1628 | if (result) | ||
1629 | goto Done; | ||
1630 | |||
1631 | /* | ||
1632 | * Enumerate devices in the ACPI namespace. | 1469 | * Enumerate devices in the ACPI namespace. |
1633 | */ | 1470 | */ |
1634 | result = acpi_bus_scan_fixed(acpi_root); | 1471 | result = acpi_bus_scan(ACPI_ROOT_OBJECT, &ops, &acpi_root); |
1635 | 1472 | ||
1636 | if (!result) | 1473 | if (!result) |
1637 | result = acpi_bus_scan(acpi_root, &ops); | 1474 | result = acpi_bus_scan_fixed(); |
1638 | 1475 | ||
1639 | if (result) | 1476 | if (result) |
1640 | acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL); | 1477 | acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL); |
1641 | 1478 | ||
1642 | Done: | ||
1643 | return result; | 1479 | return result; |
1644 | } | 1480 | } |
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index a90afcc723ab..4cc1b8116e76 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c | |||
@@ -413,6 +413,30 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = { | |||
413 | }, | 413 | }, |
414 | }, | 414 | }, |
415 | { | 415 | { |
416 | .callback = init_set_sci_en_on_resume, | ||
417 | .ident = "Hewlett-Packard Pavilion dv4", | ||
418 | .matches = { | ||
419 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
420 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv4"), | ||
421 | }, | ||
422 | }, | ||
423 | { | ||
424 | .callback = init_set_sci_en_on_resume, | ||
425 | .ident = "Hewlett-Packard Pavilion dv7", | ||
426 | .matches = { | ||
427 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
428 | DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion dv7"), | ||
429 | }, | ||
430 | }, | ||
431 | { | ||
432 | .callback = init_set_sci_en_on_resume, | ||
433 | .ident = "Hewlett-Packard Compaq Presario CQ40 Notebook PC", | ||
434 | .matches = { | ||
435 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
436 | DMI_MATCH(DMI_PRODUCT_NAME, "Compaq Presario CQ40 Notebook PC"), | ||
437 | }, | ||
438 | }, | ||
439 | { | ||
416 | .callback = init_old_suspend_ordering, | 440 | .callback = init_old_suspend_ordering, |
417 | .ident = "Panasonic CF51-2L", | 441 | .ident = "Panasonic CF51-2L", |
418 | .matches = { | 442 | .matches = { |
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 94b1a4c5abab..05dff631591c 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
@@ -285,7 +285,7 @@ static int acpi_video_device_brightness_open_fs(struct inode *inode, | |||
285 | struct file *file); | 285 | struct file *file); |
286 | static ssize_t acpi_video_device_write_brightness(struct file *file, | 286 | static ssize_t acpi_video_device_write_brightness(struct file *file, |
287 | const char __user *buffer, size_t count, loff_t *data); | 287 | const char __user *buffer, size_t count, loff_t *data); |
288 | static struct file_operations acpi_video_device_brightness_fops = { | 288 | static const struct file_operations acpi_video_device_brightness_fops = { |
289 | .owner = THIS_MODULE, | 289 | .owner = THIS_MODULE, |
290 | .open = acpi_video_device_brightness_open_fs, | 290 | .open = acpi_video_device_brightness_open_fs, |
291 | .read = seq_read, | 291 | .read = seq_read, |
@@ -1109,7 +1109,12 @@ static int acpi_video_bus_check(struct acpi_video_bus *video) | |||
1109 | */ | 1109 | */ |
1110 | 1110 | ||
1111 | /* Does this device support video switching? */ | 1111 | /* Does this device support video switching? */ |
1112 | if (video->cap._DOS) { | 1112 | if (video->cap._DOS || video->cap._DOD) { |
1113 | if (!video->cap._DOS) { | ||
1114 | printk(KERN_WARNING FW_BUG | ||
1115 | "ACPI(%s) defines _DOD but not _DOS\n", | ||
1116 | acpi_device_bid(video->device)); | ||
1117 | } | ||
1113 | video->flags.multihead = 1; | 1118 | video->flags.multihead = 1; |
1114 | status = 0; | 1119 | status = 0; |
1115 | } | 1120 | } |
@@ -1218,7 +1223,7 @@ acpi_video_device_write_state(struct file *file, | |||
1218 | u32 state = 0; | 1223 | u32 state = 0; |
1219 | 1224 | ||
1220 | 1225 | ||
1221 | if (!dev || count + 1 > sizeof str) | 1226 | if (!dev || count >= sizeof(str)) |
1222 | return -EINVAL; | 1227 | return -EINVAL; |
1223 | 1228 | ||
1224 | if (copy_from_user(str, buffer, count)) | 1229 | if (copy_from_user(str, buffer, count)) |
@@ -1275,7 +1280,7 @@ acpi_video_device_write_brightness(struct file *file, | |||
1275 | int i; | 1280 | int i; |
1276 | 1281 | ||
1277 | 1282 | ||
1278 | if (!dev || !dev->brightness || count + 1 > sizeof str) | 1283 | if (!dev || !dev->brightness || count >= sizeof(str)) |
1279 | return -EINVAL; | 1284 | return -EINVAL; |
1280 | 1285 | ||
1281 | if (copy_from_user(str, buffer, count)) | 1286 | if (copy_from_user(str, buffer, count)) |
@@ -1557,7 +1562,7 @@ acpi_video_bus_write_POST(struct file *file, | |||
1557 | unsigned long long opt, options; | 1562 | unsigned long long opt, options; |
1558 | 1563 | ||
1559 | 1564 | ||
1560 | if (!video || count + 1 > sizeof str) | 1565 | if (!video || count >= sizeof(str)) |
1561 | return -EINVAL; | 1566 | return -EINVAL; |
1562 | 1567 | ||
1563 | status = acpi_video_bus_POST_options(video, &options); | 1568 | status = acpi_video_bus_POST_options(video, &options); |
@@ -1597,7 +1602,7 @@ acpi_video_bus_write_DOS(struct file *file, | |||
1597 | unsigned long opt; | 1602 | unsigned long opt; |
1598 | 1603 | ||
1599 | 1604 | ||
1600 | if (!video || count + 1 > sizeof str) | 1605 | if (!video || count >= sizeof(str)) |
1601 | return -EINVAL; | 1606 | return -EINVAL; |
1602 | 1607 | ||
1603 | if (copy_from_user(str, buffer, count)) | 1608 | if (copy_from_user(str, buffer, count)) |
@@ -1986,6 +1991,10 @@ acpi_video_switch_brightness(struct acpi_video_device *device, int event) | |||
1986 | 1991 | ||
1987 | result = acpi_video_device_lcd_set_level(device, level_next); | 1992 | result = acpi_video_device_lcd_set_level(device, level_next); |
1988 | 1993 | ||
1994 | if (!result) | ||
1995 | backlight_force_update(device->backlight, | ||
1996 | BACKLIGHT_UPDATE_HOTKEY); | ||
1997 | |||
1989 | out: | 1998 | out: |
1990 | if (result) | 1999 | if (result) |
1991 | printk(KERN_ERR PREFIX "Failed to switch the brightness\n"); | 2000 | printk(KERN_ERR PREFIX "Failed to switch the brightness\n"); |
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c index 7032f25da9b5..575593a8b4e6 100644 --- a/drivers/acpi/video_detect.c +++ b/drivers/acpi/video_detect.c | |||
@@ -84,7 +84,7 @@ long acpi_is_video_device(struct acpi_device *device) | |||
84 | return 0; | 84 | return 0; |
85 | 85 | ||
86 | /* Does this device able to support video switching ? */ | 86 | /* Does this device able to support video switching ? */ |
87 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOD", &h_dummy)) && | 87 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOD", &h_dummy)) || |
88 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOS", &h_dummy))) | 88 | ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOS", &h_dummy))) |
89 | video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING; | 89 | video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING; |
90 | 90 | ||