2 * pci_link.c - ACPI PCI Interrupt Link Device Driver ($Revision: 34 $)
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
6 * Copyright (C) 2002 Dominik Brodowski <devel@brodo.de>
8 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27 * 1. Support more than one IRQ resource entry per link device (index).
28 * 2. Implement start/stop mechanism and use ACPI Bus Driver facilities
29 * for IRQ management (e.g. start()->_SRS).
32 #include <linux/sysdev.h>
33 #include <linux/kernel.h>
34 #include <linux/module.h>
35 #include <linux/init.h>
36 #include <linux/types.h>
37 #include <linux/proc_fs.h>
38 #include <linux/spinlock.h>
40 #include <linux/pci.h>
41 #include <linux/mutex.h>
43 #include <acpi/acpi_bus.h>
44 #include <acpi/acpi_drivers.h>
46 #define _COMPONENT ACPI_PCI_COMPONENT
47 ACPI_MODULE_NAME("pci_link")
48 #define ACPI_PCI_LINK_CLASS "pci_irq_routing"
49 #define ACPI_PCI_LINK_HID "PNP0C0F"
50 #define ACPI_PCI_LINK_DRIVER_NAME "ACPI PCI Interrupt Link Driver"
51 #define ACPI_PCI_LINK_DEVICE_NAME "PCI Interrupt Link"
52 #define ACPI_PCI_LINK_FILE_INFO "info"
53 #define ACPI_PCI_LINK_FILE_STATUS "state"
54 #define ACPI_PCI_LINK_MAX_POSSIBLE 16
55 static int acpi_pci_link_add(struct acpi_device
*device
);
56 static int acpi_pci_link_remove(struct acpi_device
*device
, int type
);
58 static struct acpi_driver acpi_pci_link_driver
= {
59 .name
= ACPI_PCI_LINK_DRIVER_NAME
,
60 .class = ACPI_PCI_LINK_CLASS
,
61 .ids
= ACPI_PCI_LINK_HID
,
63 .add
= acpi_pci_link_add
,
64 .remove
= acpi_pci_link_remove
,
69 * If a link is initialized, we never change its active and initialized
70 * later even the link is disable. Instead, we just repick the active irq
72 struct acpi_pci_link_irq
{
73 u8 active
; /* Current IRQ */
74 u8 triggering
; /* All IRQs */
75 u8 polarity
; /* All IRQs */
78 u8 possible
[ACPI_PCI_LINK_MAX_POSSIBLE
];
83 struct acpi_pci_link
{
84 struct list_head node
;
85 struct acpi_device
*device
;
87 struct acpi_pci_link_irq irq
;
93 struct list_head entries
;
95 DEFINE_MUTEX(acpi_link_lock
);
97 /* --------------------------------------------------------------------------
98 PCI Link Device Management
99 -------------------------------------------------------------------------- */
102 * set context (link) possible list from resource list
105 acpi_pci_link_check_possible(struct acpi_resource
*resource
, void *context
)
107 struct acpi_pci_link
*link
= (struct acpi_pci_link
*)context
;
110 ACPI_FUNCTION_TRACE("acpi_pci_link_check_possible");
112 switch (resource
->type
) {
113 case ACPI_RESOURCE_TYPE_START_DEPENDENT
:
114 return_ACPI_STATUS(AE_OK
);
115 case ACPI_RESOURCE_TYPE_IRQ
:
117 struct acpi_resource_irq
*p
= &resource
->data
.irq
;
118 if (!p
|| !p
->interrupt_count
) {
119 ACPI_DEBUG_PRINT((ACPI_DB_WARN
,
120 "Blank IRQ resource\n"));
121 return_ACPI_STATUS(AE_OK
);
124 (i
< p
->interrupt_count
125 && i
< ACPI_PCI_LINK_MAX_POSSIBLE
); i
++) {
126 if (!p
->interrupts
[i
]) {
127 ACPI_DEBUG_PRINT((ACPI_DB_WARN
,
132 link
->irq
.possible
[i
] = p
->interrupts
[i
];
133 link
->irq
.possible_count
++;
135 link
->irq
.triggering
= p
->triggering
;
136 link
->irq
.polarity
= p
->polarity
;
137 link
->irq
.resource_type
= ACPI_RESOURCE_TYPE_IRQ
;
140 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ
:
142 struct acpi_resource_extended_irq
*p
=
143 &resource
->data
.extended_irq
;
144 if (!p
|| !p
->interrupt_count
) {
145 ACPI_DEBUG_PRINT((ACPI_DB_WARN
,
146 "Blank EXT IRQ resource\n"));
147 return_ACPI_STATUS(AE_OK
);
150 (i
< p
->interrupt_count
151 && i
< ACPI_PCI_LINK_MAX_POSSIBLE
); i
++) {
152 if (!p
->interrupts
[i
]) {
153 ACPI_DEBUG_PRINT((ACPI_DB_WARN
,
158 link
->irq
.possible
[i
] = p
->interrupts
[i
];
159 link
->irq
.possible_count
++;
161 link
->irq
.triggering
= p
->triggering
;
162 link
->irq
.polarity
= p
->polarity
;
163 link
->irq
.resource_type
= ACPI_RESOURCE_TYPE_EXTENDED_IRQ
;
167 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
168 "Resource is not an IRQ entry\n"));
169 return_ACPI_STATUS(AE_OK
);
172 return_ACPI_STATUS(AE_CTRL_TERMINATE
);
175 static int acpi_pci_link_get_possible(struct acpi_pci_link
*link
)
179 ACPI_FUNCTION_TRACE("acpi_pci_link_get_possible");
182 return_VALUE(-EINVAL
);
184 status
= acpi_walk_resources(link
->handle
, METHOD_NAME__PRS
,
185 acpi_pci_link_check_possible
, link
);
186 if (ACPI_FAILURE(status
)) {
187 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Error evaluating _PRS\n"));
188 return_VALUE(-ENODEV
);
191 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
192 "Found %d possible IRQs\n",
193 link
->irq
.possible_count
));
199 acpi_pci_link_check_current(struct acpi_resource
*resource
, void *context
)
201 int *irq
= (int *)context
;
203 ACPI_FUNCTION_TRACE("acpi_pci_link_check_current");
205 switch (resource
->type
) {
206 case ACPI_RESOURCE_TYPE_IRQ
:
208 struct acpi_resource_irq
*p
= &resource
->data
.irq
;
209 if (!p
|| !p
->interrupt_count
) {
211 * IRQ descriptors may have no IRQ# bits set,
212 * particularly those those w/ _STA disabled
214 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
215 "Blank IRQ resource\n"));
216 return_ACPI_STATUS(AE_OK
);
218 *irq
= p
->interrupts
[0];
221 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ
:
223 struct acpi_resource_extended_irq
*p
=
224 &resource
->data
.extended_irq
;
225 if (!p
|| !p
->interrupt_count
) {
227 * extended IRQ descriptors must
228 * return at least 1 IRQ
230 ACPI_DEBUG_PRINT((ACPI_DB_WARN
,
231 "Blank EXT IRQ resource\n"));
232 return_ACPI_STATUS(AE_OK
);
234 *irq
= p
->interrupts
[0];
239 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Resource %d isn't an IRQ\n", resource
->type
));
240 case ACPI_RESOURCE_TYPE_END_TAG
:
241 return_ACPI_STATUS(AE_OK
);
243 return_ACPI_STATUS(AE_CTRL_TERMINATE
);
247 * Run _CRS and set link->irq.active
253 static int acpi_pci_link_get_current(struct acpi_pci_link
*link
)
256 acpi_status status
= AE_OK
;
259 ACPI_FUNCTION_TRACE("acpi_pci_link_get_current");
261 if (!link
|| !link
->handle
)
262 return_VALUE(-EINVAL
);
264 link
->irq
.active
= 0;
266 /* in practice, status disabled is meaningless, ignore it */
268 /* Query _STA, set link->device->status */
269 result
= acpi_bus_get_status(link
->device
);
271 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
272 "Unable to read status\n"));
276 if (!link
->device
->status
.enabled
) {
277 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Link disabled\n"));
283 * Query and parse _CRS to get the current IRQ assignment.
286 status
= acpi_walk_resources(link
->handle
, METHOD_NAME__CRS
,
287 acpi_pci_link_check_current
, &irq
);
288 if (ACPI_FAILURE(status
)) {
289 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Error evaluating _CRS\n"));
294 if (acpi_strict
&& !irq
) {
295 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "_CRS returned 0\n"));
299 link
->irq
.active
= irq
;
301 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Link at IRQ %d \n", link
->irq
.active
));
304 return_VALUE(result
);
307 static int acpi_pci_link_set(struct acpi_pci_link
*link
, int irq
)
310 acpi_status status
= AE_OK
;
312 struct acpi_resource res
;
313 struct acpi_resource end
;
315 struct acpi_buffer buffer
= { 0, NULL
};
317 ACPI_FUNCTION_TRACE("acpi_pci_link_set");
320 return_VALUE(-EINVAL
);
322 resource
= kmalloc(sizeof(*resource
) + 1, GFP_ATOMIC
);
324 return_VALUE(-ENOMEM
);
326 memset(resource
, 0, sizeof(*resource
) + 1);
327 buffer
.length
= sizeof(*resource
) + 1;
328 buffer
.pointer
= resource
;
330 switch (link
->irq
.resource_type
) {
331 case ACPI_RESOURCE_TYPE_IRQ
:
332 resource
->res
.type
= ACPI_RESOURCE_TYPE_IRQ
;
333 resource
->res
.length
= sizeof(struct acpi_resource
);
334 resource
->res
.data
.irq
.triggering
= link
->irq
.triggering
;
335 resource
->res
.data
.irq
.polarity
=
337 if (link
->irq
.triggering
== ACPI_EDGE_SENSITIVE
)
338 resource
->res
.data
.irq
.sharable
=
341 resource
->res
.data
.irq
.sharable
= ACPI_SHARED
;
342 resource
->res
.data
.irq
.interrupt_count
= 1;
343 resource
->res
.data
.irq
.interrupts
[0] = irq
;
346 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ
:
347 resource
->res
.type
= ACPI_RESOURCE_TYPE_EXTENDED_IRQ
;
348 resource
->res
.length
= sizeof(struct acpi_resource
);
349 resource
->res
.data
.extended_irq
.producer_consumer
=
351 resource
->res
.data
.extended_irq
.triggering
=
352 link
->irq
.triggering
;
353 resource
->res
.data
.extended_irq
.polarity
=
355 if (link
->irq
.triggering
== ACPI_EDGE_SENSITIVE
)
356 resource
->res
.data
.irq
.sharable
=
359 resource
->res
.data
.irq
.sharable
= ACPI_SHARED
;
360 resource
->res
.data
.extended_irq
.interrupt_count
= 1;
361 resource
->res
.data
.extended_irq
.interrupts
[0] = irq
;
362 /* ignore resource_source, it's optional */
365 printk("ACPI BUG: resource_type %d\n", link
->irq
.resource_type
);
370 resource
->end
.type
= ACPI_RESOURCE_TYPE_END_TAG
;
372 /* Attempt to set the resource */
373 status
= acpi_set_current_resources(link
->handle
, &buffer
);
375 /* check for total failure */
376 if (ACPI_FAILURE(status
)) {
377 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Error evaluating _SRS\n"));
382 /* Query _STA, set device->status */
383 result
= acpi_bus_get_status(link
->device
);
385 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Unable to read status\n"));
388 if (!link
->device
->status
.enabled
) {
389 printk(KERN_WARNING PREFIX
390 "%s [%s] disabled and referenced, BIOS bug.\n",
391 acpi_device_name(link
->device
),
392 acpi_device_bid(link
->device
));
395 /* Query _CRS, set link->irq.active */
396 result
= acpi_pci_link_get_current(link
);
402 * Is current setting not what we set?
403 * set link->irq.active
405 if (link
->irq
.active
!= irq
) {
407 * policy: when _CRS doesn't return what we just _SRS
408 * assume _SRS worked and override _CRS value.
410 printk(KERN_WARNING PREFIX
411 "%s [%s] BIOS reported IRQ %d, using IRQ %d\n",
412 acpi_device_name(link
->device
),
413 acpi_device_bid(link
->device
), link
->irq
.active
, irq
);
414 link
->irq
.active
= irq
;
417 ACPI_DEBUG_PRINT((ACPI_DB_INFO
, "Set IRQ %d\n", link
->irq
.active
));
421 return_VALUE(result
);
424 /* --------------------------------------------------------------------------
425 PCI Link IRQ Management
426 -------------------------------------------------------------------------- */
429 * "acpi_irq_balance" (default in APIC mode) enables ACPI to use PIC Interrupt
430 * Link Devices to move the PIRQs around to minimize sharing.
432 * "acpi_irq_nobalance" (default in PIC mode) tells ACPI not to move any PIC IRQs
433 * that the BIOS has already set to active. This is necessary because
434 * ACPI has no automatic means of knowing what ISA IRQs are used. Note that
435 * if the BIOS doesn't set a Link Device active, ACPI needs to program it
436 * even if acpi_irq_nobalance is set.
438 * A tables of penalties avoids directing PCI interrupts to well known
439 * ISA IRQs. Boot params are available to over-ride the default table:
441 * List interrupts that are free for PCI use.
444 * List interrupts that should not be used for PCI:
447 * Note that PCI IRQ routers have a list of possible IRQs,
448 * which may not include the IRQs this table says are available.
450 * Since this heuristic can't tell the difference between a link
451 * that no device will attach to, vs. a link which may be shared
452 * by multiple active devices -- it is not optimal.
454 * If interrupt performance is that important, get an IO-APIC system
455 * with a pin dedicated to each device. Or for that matter, an MSI
459 #define ACPI_MAX_IRQS 256
460 #define ACPI_MAX_ISA_IRQ 16
462 #define PIRQ_PENALTY_PCI_AVAILABLE (0)
463 #define PIRQ_PENALTY_PCI_POSSIBLE (16*16)
464 #define PIRQ_PENALTY_PCI_USING (16*16*16)
465 #define PIRQ_PENALTY_ISA_TYPICAL (16*16*16*16)
466 #define PIRQ_PENALTY_ISA_USED (16*16*16*16*16)
467 #define PIRQ_PENALTY_ISA_ALWAYS (16*16*16*16*16*16)
469 static int acpi_irq_penalty
[ACPI_MAX_IRQS
] = {
470 PIRQ_PENALTY_ISA_ALWAYS
, /* IRQ0 timer */
471 PIRQ_PENALTY_ISA_ALWAYS
, /* IRQ1 keyboard */
472 PIRQ_PENALTY_ISA_ALWAYS
, /* IRQ2 cascade */
473 PIRQ_PENALTY_ISA_TYPICAL
, /* IRQ3 serial */
474 PIRQ_PENALTY_ISA_TYPICAL
, /* IRQ4 serial */
475 PIRQ_PENALTY_ISA_TYPICAL
, /* IRQ5 sometimes SoundBlaster */
476 PIRQ_PENALTY_ISA_TYPICAL
, /* IRQ6 */
477 PIRQ_PENALTY_ISA_TYPICAL
, /* IRQ7 parallel, spurious */
478 PIRQ_PENALTY_ISA_TYPICAL
, /* IRQ8 rtc, sometimes */
479 PIRQ_PENALTY_PCI_AVAILABLE
, /* IRQ9 PCI, often acpi */
480 PIRQ_PENALTY_PCI_AVAILABLE
, /* IRQ10 PCI */
481 PIRQ_PENALTY_PCI_AVAILABLE
, /* IRQ11 PCI */
482 PIRQ_PENALTY_ISA_USED
, /* IRQ12 mouse */
483 PIRQ_PENALTY_ISA_USED
, /* IRQ13 fpe, sometimes */
484 PIRQ_PENALTY_ISA_USED
, /* IRQ14 ide0 */
485 PIRQ_PENALTY_ISA_USED
, /* IRQ15 ide1 */
489 int __init
acpi_irq_penalty_init(void)
491 struct list_head
*node
= NULL
;
492 struct acpi_pci_link
*link
= NULL
;
495 ACPI_FUNCTION_TRACE("acpi_irq_penalty_init");
498 * Update penalties to facilitate IRQ balancing.
500 list_for_each(node
, &acpi_link
.entries
) {
502 link
= list_entry(node
, struct acpi_pci_link
, node
);
504 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
505 "Invalid link context\n"));
510 * reflect the possible and active irqs in the penalty table --
511 * useful for breaking ties.
513 if (link
->irq
.possible_count
) {
515 PIRQ_PENALTY_PCI_POSSIBLE
/
516 link
->irq
.possible_count
;
518 for (i
= 0; i
< link
->irq
.possible_count
; i
++) {
519 if (link
->irq
.possible
[i
] < ACPI_MAX_ISA_IRQ
)
520 acpi_irq_penalty
[link
->irq
.
525 } else if (link
->irq
.active
) {
526 acpi_irq_penalty
[link
->irq
.active
] +=
527 PIRQ_PENALTY_PCI_POSSIBLE
;
530 /* Add a penalty for the SCI */
531 acpi_irq_penalty
[acpi_fadt
.sci_int
] += PIRQ_PENALTY_PCI_USING
;
536 static int acpi_irq_balance
; /* 0: static, 1: balance */
538 static int acpi_pci_link_allocate(struct acpi_pci_link
*link
)
543 ACPI_FUNCTION_TRACE("acpi_pci_link_allocate");
545 if (link
->irq
.initialized
) {
546 if (link
->refcnt
== 0)
547 /* This means the link is disabled but initialized */
548 acpi_pci_link_set(link
, link
->irq
.active
);
553 * search for active IRQ in list of possible IRQs.
555 for (i
= 0; i
< link
->irq
.possible_count
; ++i
) {
556 if (link
->irq
.active
== link
->irq
.possible
[i
])
560 * forget active IRQ that is not in possible list
562 if (i
== link
->irq
.possible_count
) {
564 printk(KERN_WARNING PREFIX
"_CRS %d not found"
565 " in _PRS\n", link
->irq
.active
);
566 link
->irq
.active
= 0;
570 * if active found, use it; else pick entry from end of possible list.
572 if (link
->irq
.active
) {
573 irq
= link
->irq
.active
;
575 irq
= link
->irq
.possible
[link
->irq
.possible_count
- 1];
578 if (acpi_irq_balance
|| !link
->irq
.active
) {
580 * Select the best IRQ. This is done in reverse to promote
581 * the use of IRQs 9, 10, 11, and >15.
583 for (i
= (link
->irq
.possible_count
- 1); i
>= 0; i
--) {
584 if (acpi_irq_penalty
[irq
] >
585 acpi_irq_penalty
[link
->irq
.possible
[i
]])
586 irq
= link
->irq
.possible
[i
];
590 /* Attempt to enable the link device at this IRQ. */
591 if (acpi_pci_link_set(link
, irq
)) {
593 "Unable to set IRQ for %s [%s] (likely buggy ACPI BIOS).\n"
594 "Try pci=noacpi or acpi=off\n",
595 acpi_device_name(link
->device
),
596 acpi_device_bid(link
->device
));
597 return_VALUE(-ENODEV
);
599 acpi_irq_penalty
[link
->irq
.active
] += PIRQ_PENALTY_PCI_USING
;
600 printk(PREFIX
"%s [%s] enabled at IRQ %d\n",
601 acpi_device_name(link
->device
),
602 acpi_device_bid(link
->device
), link
->irq
.active
);
605 link
->irq
.initialized
= 1;
611 * acpi_pci_link_allocate_irq
612 * success: return IRQ >= 0
617 acpi_pci_link_allocate_irq(acpi_handle handle
,
619 int *triggering
, int *polarity
, char **name
)
622 struct acpi_device
*device
= NULL
;
623 struct acpi_pci_link
*link
= NULL
;
625 ACPI_FUNCTION_TRACE("acpi_pci_link_allocate_irq");
627 result
= acpi_bus_get_device(handle
, &device
);
629 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Invalid link device\n"));
633 link
= (struct acpi_pci_link
*)acpi_driver_data(device
);
635 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Invalid link context\n"));
639 /* TBD: Support multiple index (IRQ) entries per Link Device */
641 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Invalid index %d\n", index
));
645 mutex_lock(&acpi_link_lock
);
646 if (acpi_pci_link_allocate(link
)) {
647 mutex_unlock(&acpi_link_lock
);
651 if (!link
->irq
.active
) {
652 mutex_unlock(&acpi_link_lock
);
653 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Link active IRQ is 0!\n"));
657 mutex_unlock(&acpi_link_lock
);
660 *triggering
= link
->irq
.triggering
;
662 *polarity
= link
->irq
.polarity
;
664 *name
= acpi_device_bid(link
->device
);
665 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
666 "Link %s is referenced\n",
667 acpi_device_bid(link
->device
)));
668 return_VALUE(link
->irq
.active
);
672 * We don't change link's irq information here. After it is reenabled, we
673 * continue use the info
675 int acpi_pci_link_free_irq(acpi_handle handle
)
677 struct acpi_device
*device
= NULL
;
678 struct acpi_pci_link
*link
= NULL
;
681 ACPI_FUNCTION_TRACE("acpi_pci_link_free_irq");
683 result
= acpi_bus_get_device(handle
, &device
);
685 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Invalid link device\n"));
689 link
= (struct acpi_pci_link
*)acpi_driver_data(device
);
691 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Invalid link context\n"));
695 mutex_lock(&acpi_link_lock
);
696 if (!link
->irq
.initialized
) {
697 mutex_unlock(&acpi_link_lock
);
698 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
, "Link isn't initialized\n"));
703 * The Link reference count allows us to _DISable an unused link
704 * and suspend time, and set it again on resume.
705 * However, 2.6.12 still has irq_router.resume
706 * which blindly restores the link state.
707 * So we disable the reference count method
708 * to prevent duplicate acpi_pci_link_set()
709 * which would harm some systems
713 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
714 "Link %s is dereferenced\n",
715 acpi_device_bid(link
->device
)));
717 if (link
->refcnt
== 0) {
718 acpi_ut_evaluate_object(link
->handle
, "_DIS", 0, NULL
);
720 mutex_unlock(&acpi_link_lock
);
721 return_VALUE(link
->irq
.active
);
724 /* --------------------------------------------------------------------------
726 -------------------------------------------------------------------------- */
728 static int acpi_pci_link_add(struct acpi_device
*device
)
731 struct acpi_pci_link
*link
= NULL
;
735 ACPI_FUNCTION_TRACE("acpi_pci_link_add");
738 return_VALUE(-EINVAL
);
740 link
= kmalloc(sizeof(struct acpi_pci_link
), GFP_KERNEL
);
742 return_VALUE(-ENOMEM
);
743 memset(link
, 0, sizeof(struct acpi_pci_link
));
745 link
->device
= device
;
746 link
->handle
= device
->handle
;
747 strcpy(acpi_device_name(device
), ACPI_PCI_LINK_DEVICE_NAME
);
748 strcpy(acpi_device_class(device
), ACPI_PCI_LINK_CLASS
);
749 acpi_driver_data(device
) = link
;
751 mutex_lock(&acpi_link_lock
);
752 result
= acpi_pci_link_get_possible(link
);
756 /* query and set link->irq.active */
757 acpi_pci_link_get_current(link
);
759 printk(PREFIX
"%s [%s] (IRQs", acpi_device_name(device
),
760 acpi_device_bid(device
));
761 for (i
= 0; i
< link
->irq
.possible_count
; i
++) {
762 if (link
->irq
.active
== link
->irq
.possible
[i
]) {
763 printk(" *%d", link
->irq
.possible
[i
]);
766 printk(" %d", link
->irq
.possible
[i
]);
772 printk(" *%d", link
->irq
.active
);
774 if (!link
->device
->status
.enabled
)
775 printk(", disabled.");
779 /* TBD: Acquire/release lock */
780 list_add_tail(&link
->node
, &acpi_link
.entries
);
784 /* disable all links -- to be activated on use */
785 acpi_ut_evaluate_object(link
->handle
, "_DIS", 0, NULL
);
786 mutex_unlock(&acpi_link_lock
);
791 return_VALUE(result
);
794 static int acpi_pci_link_resume(struct acpi_pci_link
*link
)
796 ACPI_FUNCTION_TRACE("acpi_pci_link_resume");
798 if (link
->refcnt
&& link
->irq
.active
&& link
->irq
.initialized
)
799 return_VALUE(acpi_pci_link_set(link
, link
->irq
.active
));
805 * FIXME: this is a workaround to avoid nasty warning. It will be removed
806 * after every device calls pci_disable_device in .resume.
809 static int irqrouter_resume(struct sys_device
*dev
)
811 struct list_head
*node
= NULL
;
812 struct acpi_pci_link
*link
= NULL
;
814 ACPI_FUNCTION_TRACE("irqrouter_resume");
816 /* Make sure SCI is enabled again (Apple firmware bug?) */
817 acpi_set_register(ACPI_BITREG_SCI_ENABLE
, 1, ACPI_MTX_DO_NOT_LOCK
);
820 list_for_each(node
, &acpi_link
.entries
) {
821 link
= list_entry(node
, struct acpi_pci_link
, node
);
823 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
824 "Invalid link context\n"));
827 acpi_pci_link_resume(link
);
833 static int acpi_pci_link_remove(struct acpi_device
*device
, int type
)
835 struct acpi_pci_link
*link
= NULL
;
837 ACPI_FUNCTION_TRACE("acpi_pci_link_remove");
839 if (!device
|| !acpi_driver_data(device
))
840 return_VALUE(-EINVAL
);
842 link
= (struct acpi_pci_link
*)acpi_driver_data(device
);
844 mutex_lock(&acpi_link_lock
);
845 list_del(&link
->node
);
846 mutex_unlock(&acpi_link_lock
);
854 * modify acpi_irq_penalty[] from cmdline
856 static int __init
acpi_irq_penalty_update(char *str
, int used
)
860 for (i
= 0; i
< 16; i
++) {
864 retval
= get_option(&str
, &irq
);
867 break; /* no number found */
872 if (irq
>= ACPI_MAX_IRQS
)
876 acpi_irq_penalty
[irq
] += PIRQ_PENALTY_ISA_USED
;
878 acpi_irq_penalty
[irq
] = PIRQ_PENALTY_PCI_AVAILABLE
;
880 if (retval
!= 2) /* no next number */
887 * We'd like PNP to call this routine for the
888 * single ISA_USED value for each legacy device.
889 * But instead it calls us with each POSSIBLE setting.
890 * There is no ISA_POSSIBLE weight, so we simply use
891 * the (small) PCI_USING penalty.
893 void acpi_penalize_isa_irq(int irq
, int active
)
896 acpi_irq_penalty
[irq
] += PIRQ_PENALTY_ISA_USED
;
898 acpi_irq_penalty
[irq
] += PIRQ_PENALTY_PCI_USING
;
902 * Over-ride default table to reserve additional IRQs for use by ISA
903 * e.g. acpi_irq_isa=5
904 * Useful for telling ACPI how not to interfere with your ISA sound card.
906 static int __init
acpi_irq_isa(char *str
)
908 return acpi_irq_penalty_update(str
, 1);
911 __setup("acpi_irq_isa=", acpi_irq_isa
);
914 * Over-ride default table to free additional IRQs for use by PCI
915 * e.g. acpi_irq_pci=7,15
916 * Used for acpi_irq_balance to free up IRQs to reduce PCI IRQ sharing.
918 static int __init
acpi_irq_pci(char *str
)
920 return acpi_irq_penalty_update(str
, 0);
923 __setup("acpi_irq_pci=", acpi_irq_pci
);
925 static int __init
acpi_irq_nobalance_set(char *str
)
927 acpi_irq_balance
= 0;
931 __setup("acpi_irq_nobalance", acpi_irq_nobalance_set
);
933 int __init
acpi_irq_balance_set(char *str
)
935 acpi_irq_balance
= 1;
939 __setup("acpi_irq_balance", acpi_irq_balance_set
);
941 /* FIXME: we will remove this interface after all drivers call pci_disable_device */
942 static struct sysdev_class irqrouter_sysdev_class
= {
943 set_kset_name("irqrouter"),
944 .resume
= irqrouter_resume
,
947 static struct sys_device device_irqrouter
= {
949 .cls
= &irqrouter_sysdev_class
,
952 static int __init
irqrouter_init_sysfs(void)
956 ACPI_FUNCTION_TRACE("irqrouter_init_sysfs");
958 if (acpi_disabled
|| acpi_noirq
)
961 error
= sysdev_class_register(&irqrouter_sysdev_class
);
963 error
= sysdev_register(&device_irqrouter
);
968 device_initcall(irqrouter_init_sysfs
);
970 static int __init
acpi_pci_link_init(void)
972 ACPI_FUNCTION_TRACE("acpi_pci_link_init");
978 INIT_LIST_HEAD(&acpi_link
.entries
);
980 if (acpi_bus_register_driver(&acpi_pci_link_driver
) < 0)
981 return_VALUE(-ENODEV
);
986 subsys_initcall(acpi_pci_link_init
);