2 * PCIEHPRM ACPI: PHP Resource Manager for ACPI platform
4 * Copyright (C) 2003-2004 Intel Corporation
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
16 * NON INFRINGEMENT. See the GNU General Public License for more
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 * Send feedback to <kristen.c.accardi@intel.com>
27 #include <linux/config.h>
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/types.h>
31 #include <linux/pci.h>
32 #include <linux/init.h>
33 #include <linux/acpi.h>
34 #include <linux/efi.h>
35 #include <linux/pci-acpi.h>
36 #include <asm/uaccess.h>
37 #include <asm/system.h>
39 #include <asm/iosapic.h>
41 #include <acpi/acpi.h>
42 #include <acpi/acpi_bus.h>
43 #include <acpi/actypes.h>
47 #define PCI_MAX_BUS 0x100
48 #define ACPI_STA_DEVICE_PRESENT 0x01
50 #define METHOD_NAME__SUN "_SUN"
51 #define METHOD_NAME__HPP "_HPP"
52 #define METHOD_NAME_OSHP "OSHP"
54 /* Status code for running acpi method to gain native control */
56 #define OSC_NOT_EXIST 1
57 #define OSC_RUN_FAILED 2
58 #define OSHP_NOT_EXIST 3
59 #define OSHP_RUN_FAILED 4
60 #define NC_RUN_SUCCESS 5
62 #define PHP_RES_BUS 0xA0
63 #define PHP_RES_IO 0xA1
64 #define PHP_RES_MEM 0xA2
65 #define PHP_RES_PMEM 0xA3
67 #define BRIDGE_TYPE_P2P 0x00
68 #define BRIDGE_TYPE_HOST 0x01
70 /* this should go to drivers/acpi/include/ */
78 struct acpi_php_slot
{
79 struct acpi_php_slot
*next
;
80 struct acpi_bridge
*bridge
;
87 struct pci_resource
*mem_head
;
88 struct pci_resource
*p_mem_head
;
89 struct pci_resource
*io_head
;
90 struct pci_resource
*bus_head
;
91 void *slot_ops
; /* _STA, _EJx, etc */
96 struct acpi_bridge
*parent
;
97 struct acpi_bridge
*next
;
98 struct acpi_bridge
*child
;
101 int pbus
; /* pdev->bus->number */
102 int pdevice
; /* PCI_SLOT(pdev->devfn) */
103 int pfunction
; /* PCI_DEVFN(pdev->devfn) */
104 int bus
; /* pdev->subordinate->number */
105 struct acpi__hpp
*_hpp
;
106 struct acpi_php_slot
*slots
;
107 struct pci_resource
*tmem_head
; /* total from crs */
108 struct pci_resource
*tp_mem_head
; /* total from crs */
109 struct pci_resource
*tio_head
; /* total from crs */
110 struct pci_resource
*tbus_head
; /* total from crs */
111 struct pci_resource
*mem_head
; /* available */
112 struct pci_resource
*p_mem_head
; /* available */
113 struct pci_resource
*io_head
; /* available */
114 struct pci_resource
*bus_head
; /* available */
119 static struct acpi_bridge
*acpi_bridges_head
;
121 static u8
* acpi_path_name( acpi_handle handle
)
124 static u8 path_name
[ACPI_PATHNAME_MAX
];
125 struct acpi_buffer ret_buf
= { ACPI_PATHNAME_MAX
, path_name
};
127 memset(path_name
, 0, sizeof (path_name
));
128 status
= acpi_get_name(handle
, ACPI_FULL_PATHNAME
, &ret_buf
);
130 if (ACPI_FAILURE(status
))
136 static void acpi_get__hpp ( struct acpi_bridge
*ab
);
137 static int acpi_run_oshp ( struct acpi_bridge
*ab
);
138 static int osc_run_status
= NC_NOT_RUN
;
139 static int oshp_run_status
= NC_NOT_RUN
;
141 static int acpi_add_slot_to_php_slots(
142 struct acpi_bridge
*ab
,
149 struct acpi_php_slot
*aps
;
150 static long samesun
= -1;
152 aps
= (struct acpi_php_slot
*) kmalloc (sizeof(struct acpi_php_slot
), GFP_KERNEL
);
154 err ("acpi_pciehprm: alloc for aps fail\n");
157 memset(aps
, 0, sizeof(struct acpi_php_slot
));
159 aps
->handle
= handle
;
161 aps
->dev
= (adr
>> 16) & 0xffff;
162 aps
->fun
= adr
& 0xffff;
165 aps
->next
= ab
->slots
; /* cling to the bridge */
173 if (osc_run_status
== OSC_NOT_EXIST
)
174 oshp_run_status
= acpi_run_oshp(ab
);
176 if (sun
!= samesun
) {
177 info("acpi_pciehprm: Slot sun(%x) at s:b:d:f=0x%02x:%02x:%02x:%02x\n",
178 aps
->sun
, ab
->seg
, aps
->bus
, aps
->dev
, aps
->fun
);
184 static void acpi_get__hpp ( struct acpi_bridge
*ab
)
188 struct acpi_buffer ret_buf
= { 0, NULL
};
189 union acpi_object
*ext_obj
, *package
;
190 u8
*path_name
= acpi_path_name(ab
->handle
);
194 status
= acpi_evaluate_object(ab
->handle
, METHOD_NAME__HPP
, NULL
, &ret_buf
);
196 case AE_BUFFER_OVERFLOW
:
197 ret_buf
.pointer
= kmalloc (ret_buf
.length
, GFP_KERNEL
);
198 if (!ret_buf
.pointer
) {
199 err ("acpi_pciehprm:%s alloc for _HPP fail\n", path_name
);
202 status
= acpi_evaluate_object(ab
->handle
, METHOD_NAME__HPP
, NULL
, &ret_buf
);
203 if (ACPI_SUCCESS(status
))
206 if (ACPI_FAILURE(status
)) {
207 err("acpi_pciehprm:%s _HPP fail=0x%x\n", path_name
, status
);
212 ext_obj
= (union acpi_object
*) ret_buf
.pointer
;
213 if (ext_obj
->type
!= ACPI_TYPE_PACKAGE
) {
214 err ("acpi_pciehprm:%s _HPP obj not a package\n", path_name
);
215 goto free_and_return
;
218 len
= ext_obj
->package
.count
;
219 package
= (union acpi_object
*) ret_buf
.pointer
;
220 for ( i
= 0; (i
< len
) || (i
< 4); i
++) {
221 ext_obj
= (union acpi_object
*) &package
->package
.elements
[i
];
222 switch (ext_obj
->type
) {
223 case ACPI_TYPE_INTEGER
:
224 nui
[i
] = (u8
)ext_obj
->integer
.value
;
227 err ("acpi_pciehprm:%s _HPP obj type incorrect\n", path_name
);
228 goto free_and_return
;
232 ab
->_hpp
= kmalloc (sizeof (struct acpi__hpp
), GFP_KERNEL
);
234 err ("acpi_pciehprm:%s alloc for _HPP failed\n", path_name
);
235 goto free_and_return
;
237 memset(ab
->_hpp
, 0, sizeof(struct acpi__hpp
));
239 ab
->_hpp
->cache_line_size
= nui
[0];
240 ab
->_hpp
->latency_timer
= nui
[1];
241 ab
->_hpp
->enable_serr
= nui
[2];
242 ab
->_hpp
->enable_perr
= nui
[3];
244 dbg(" _HPP: cache_line_size=0x%x\n", ab
->_hpp
->cache_line_size
);
245 dbg(" _HPP: latency timer =0x%x\n", ab
->_hpp
->latency_timer
);
246 dbg(" _HPP: enable SERR =0x%x\n", ab
->_hpp
->enable_serr
);
247 dbg(" _HPP: enable PERR =0x%x\n", ab
->_hpp
->enable_perr
);
250 kfree(ret_buf
.pointer
);
253 static int acpi_run_oshp ( struct acpi_bridge
*ab
)
256 u8
*path_name
= acpi_path_name(ab
->handle
);
259 status
= acpi_evaluate_object(ab
->handle
, METHOD_NAME_OSHP
, NULL
, NULL
);
260 if (ACPI_FAILURE(status
)) {
261 err("acpi_pciehprm:%s OSHP fails=0x%x\n", path_name
, status
);
262 oshp_run_status
= (status
== AE_NOT_FOUND
) ? OSHP_NOT_EXIST
: OSHP_RUN_FAILED
;
264 oshp_run_status
= NC_RUN_SUCCESS
;
265 dbg("acpi_pciehprm:%s OSHP passes =0x%x\n", path_name
, status
);
266 dbg("acpi_pciehprm:%s oshp_run_status =0x%x\n", path_name
, oshp_run_status
);
268 return oshp_run_status
;
271 static acpi_status
acpi_evaluate_crs(
273 struct acpi_resource
**retbuf
277 struct acpi_buffer crsbuf
;
278 u8
*path_name
= acpi_path_name(handle
);
281 crsbuf
.pointer
= NULL
;
283 status
= acpi_get_current_resources (handle
, &crsbuf
);
286 case AE_BUFFER_OVERFLOW
:
289 dbg("acpi_pciehprm:%s _CRS not found\n", path_name
);
292 err ("acpi_pciehprm:%s _CRS fail=0x%x\n", path_name
, status
);
296 crsbuf
.pointer
= kmalloc (crsbuf
.length
, GFP_KERNEL
);
297 if (!crsbuf
.pointer
) {
298 err ("acpi_pciehprm: alloc %ld bytes for %s _CRS fail\n", (ulong
)crsbuf
.length
, path_name
);
302 status
= acpi_get_current_resources (handle
, &crsbuf
);
303 if (ACPI_FAILURE(status
)) {
304 err("acpi_pciehprm: %s _CRS fail=0x%x.\n", path_name
, status
);
305 kfree(crsbuf
.pointer
);
309 *retbuf
= crsbuf
.pointer
;
314 static void free_pci_resource ( struct pci_resource
*aprh
)
316 struct pci_resource
*res
, *next
;
318 for (res
= aprh
; res
; res
= next
) {
324 static void print_pci_resource ( struct pci_resource
*aprh
)
326 struct pci_resource
*res
;
328 for (res
= aprh
; res
; res
= res
->next
)
329 dbg(" base= 0x%x length= 0x%x\n", res
->base
, res
->length
);
332 static void print_slot_resources( struct acpi_php_slot
*aps
)
335 dbg(" BUS Resources:\n");
336 print_pci_resource (aps
->bus_head
);
340 dbg(" IO Resources:\n");
341 print_pci_resource (aps
->io_head
);
345 dbg(" MEM Resources:\n");
346 print_pci_resource (aps
->mem_head
);
349 if (aps
->p_mem_head
) {
350 dbg(" PMEM Resources:\n");
351 print_pci_resource (aps
->p_mem_head
);
355 static void print_pci_resources( struct acpi_bridge
*ab
)
358 dbg(" Total BUS Resources:\n");
359 print_pci_resource (ab
->tbus_head
);
362 dbg(" BUS Resources:\n");
363 print_pci_resource (ab
->bus_head
);
367 dbg(" Total IO Resources:\n");
368 print_pci_resource (ab
->tio_head
);
371 dbg(" IO Resources:\n");
372 print_pci_resource (ab
->io_head
);
376 dbg(" Total MEM Resources:\n");
377 print_pci_resource (ab
->tmem_head
);
380 dbg(" MEM Resources:\n");
381 print_pci_resource (ab
->mem_head
);
384 if (ab
->tp_mem_head
) {
385 dbg(" Total PMEM Resources:\n");
386 print_pci_resource (ab
->tp_mem_head
);
388 if (ab
->p_mem_head
) {
389 dbg(" PMEM Resources:\n");
390 print_pci_resource (ab
->p_mem_head
);
393 dbg(" _HPP: cache_line_size=0x%x\n", ab
->_hpp
->cache_line_size
);
394 dbg(" _HPP: latency timer =0x%x\n", ab
->_hpp
->latency_timer
);
395 dbg(" _HPP: enable SERR =0x%x\n", ab
->_hpp
->enable_serr
);
396 dbg(" _HPP: enable PERR =0x%x\n", ab
->_hpp
->enable_perr
);
400 static int pciehprm_delete_resource(
401 struct pci_resource
**aprh
,
405 struct pci_resource
*res
;
406 struct pci_resource
*prevnode
;
407 struct pci_resource
*split_node
;
410 pciehp_resource_sort_and_combine(aprh
);
412 for (res
= *aprh
; res
; res
= res
->next
) {
413 if (res
->base
> base
)
416 if ((res
->base
+ res
->length
) < (base
+ size
))
419 if (res
->base
< base
) {
422 if ((res
->length
- (tbase
- res
->base
)) < size
)
425 split_node
= (struct pci_resource
*) kmalloc(sizeof(struct pci_resource
), GFP_KERNEL
);
429 split_node
->base
= res
->base
;
430 split_node
->length
= tbase
- res
->base
;
432 res
->length
-= split_node
->length
;
434 split_node
->next
= res
->next
;
435 res
->next
= split_node
;
438 if (res
->length
>= size
) {
439 split_node
= (struct pci_resource
*) kmalloc(sizeof(struct pci_resource
), GFP_KERNEL
);
443 split_node
->base
= res
->base
+ size
;
444 split_node
->length
= res
->length
- size
;
447 split_node
->next
= res
->next
;
448 res
->next
= split_node
;
455 while (prevnode
->next
!= res
)
456 prevnode
= prevnode
->next
;
458 prevnode
->next
= res
->next
;
468 static int pciehprm_delete_resources(
469 struct pci_resource
**aprh
,
470 struct pci_resource
*this
473 struct pci_resource
*res
;
475 for (res
= this; res
; res
= res
->next
)
476 pciehprm_delete_resource(aprh
, res
->base
, res
->length
);
481 static int pciehprm_add_resource(
482 struct pci_resource
**aprh
,
486 struct pci_resource
*res
;
488 for (res
= *aprh
; res
; res
= res
->next
) {
489 if ((res
->base
+ res
->length
) == base
) {
494 if (res
->next
== *aprh
)
499 res
= kmalloc(sizeof(struct pci_resource
), GFP_KERNEL
);
501 err ("acpi_pciehprm: alloc for res fail\n");
504 memset(res
, 0, sizeof (struct pci_resource
));
515 static int pciehprm_add_resources(
516 struct pci_resource
**aprh
,
517 struct pci_resource
*this
520 struct pci_resource
*res
;
523 for (res
= this; res
&& !rc
; res
= res
->next
)
524 rc
= pciehprm_add_resource(aprh
, res
->base
, res
->length
);
529 static void acpi_parse_io (
530 struct acpi_bridge
*ab
,
531 union acpi_resource_data
*data
534 struct acpi_resource_io
*dataio
;
535 dataio
= (struct acpi_resource_io
*) data
;
537 dbg("Io Resource\n");
538 dbg(" %d bit decode\n", ACPI_DECODE_16
== dataio
->io_decode
? 16:10);
539 dbg(" Range minimum base: %08X\n", dataio
->min_base_address
);
540 dbg(" Range maximum base: %08X\n", dataio
->max_base_address
);
541 dbg(" Alignment: %08X\n", dataio
->alignment
);
542 dbg(" Range Length: %08X\n", dataio
->range_length
);
545 static void acpi_parse_fixed_io (
546 struct acpi_bridge
*ab
,
547 union acpi_resource_data
*data
550 struct acpi_resource_fixed_io
*datafio
;
551 datafio
= (struct acpi_resource_fixed_io
*) data
;
553 dbg("Fixed Io Resource\n");
554 dbg(" Range base address: %08X", datafio
->base_address
);
555 dbg(" Range length: %08X", datafio
->range_length
);
558 static void acpi_parse_address16_32 (
559 struct acpi_bridge
*ab
,
560 union acpi_resource_data
*data
,
561 acpi_resource_type id
565 * acpi_resource_address16 == acpi_resource_address32
566 * acpi_resource_address16 *data16 = (acpi_resource_address16 *) data;
568 struct acpi_resource_address32
*data32
= (struct acpi_resource_address32
*) data
;
569 struct pci_resource
**aprh
, **tprh
;
571 if (id
== ACPI_RSTYPE_ADDRESS16
)
572 dbg("acpi_pciehprm:16-Bit Address Space Resource\n");
574 dbg("acpi_pciehprm:32-Bit Address Space Resource\n");
576 switch (data32
->resource_type
) {
577 case ACPI_MEMORY_RANGE
:
578 dbg(" Resource Type: Memory Range\n");
579 aprh
= &ab
->mem_head
;
580 tprh
= &ab
->tmem_head
;
582 switch (data32
->attribute
.memory
.cache_attribute
) {
583 case ACPI_NON_CACHEABLE_MEMORY
:
584 dbg(" Type Specific: Noncacheable memory\n");
586 case ACPI_CACHABLE_MEMORY
:
587 dbg(" Type Specific: Cacheable memory\n");
589 case ACPI_WRITE_COMBINING_MEMORY
:
590 dbg(" Type Specific: Write-combining memory\n");
592 case ACPI_PREFETCHABLE_MEMORY
:
593 aprh
= &ab
->p_mem_head
;
594 dbg(" Type Specific: Prefetchable memory\n");
597 dbg(" Type Specific: Invalid cache attribute\n");
601 dbg(" Type Specific: Read%s\n", ACPI_READ_WRITE_MEMORY
== data32
->attribute
.memory
.read_write_attribute
? "/Write":" Only");
605 dbg(" Resource Type: I/O Range\n");
607 tprh
= &ab
->tio_head
;
609 switch (data32
->attribute
.io
.range_attribute
) {
610 case ACPI_NON_ISA_ONLY_RANGES
:
611 dbg(" Type Specific: Non-ISA Io Addresses\n");
613 case ACPI_ISA_ONLY_RANGES
:
614 dbg(" Type Specific: ISA Io Addresses\n");
616 case ACPI_ENTIRE_RANGE
:
617 dbg(" Type Specific: ISA and non-ISA Io Addresses\n");
620 dbg(" Type Specific: Invalid range attribute\n");
625 case ACPI_BUS_NUMBER_RANGE
:
626 dbg(" Resource Type: Bus Number Range(fixed)\n");
627 /* fixup to be compatible with the rest of php driver */
628 data32
->min_address_range
++;
629 data32
->address_length
--;
630 aprh
= &ab
->bus_head
;
631 tprh
= &ab
->tbus_head
;
634 dbg(" Resource Type: Invalid resource type. Exiting.\n");
638 dbg(" Resource %s\n", ACPI_CONSUMER
== data32
->producer_consumer
? "Consumer":"Producer");
639 dbg(" %s decode\n", ACPI_SUB_DECODE
== data32
->decode
? "Subtractive":"Positive");
640 dbg(" Min address is %s fixed\n", ACPI_ADDRESS_FIXED
== data32
->min_address_fixed
? "":"not");
641 dbg(" Max address is %s fixed\n", ACPI_ADDRESS_FIXED
== data32
->max_address_fixed
? "":"not");
642 dbg(" Granularity: %08X\n", data32
->granularity
);
643 dbg(" Address range min: %08X\n", data32
->min_address_range
);
644 dbg(" Address range max: %08X\n", data32
->max_address_range
);
645 dbg(" Address translation offset: %08X\n", data32
->address_translation_offset
);
646 dbg(" Address Length: %08X\n", data32
->address_length
);
648 if (0xFF != data32
->resource_source
.index
) {
649 dbg(" Resource Source Index: %X\n", data32
->resource_source
.index
);
650 /* dbg(" Resource Source: %s\n", data32->resource_source.string_ptr); */
653 pciehprm_add_resource(aprh
, data32
->min_address_range
, data32
->address_length
);
656 static acpi_status
acpi_parse_crs(
657 struct acpi_bridge
*ab
,
658 struct acpi_resource
*crsbuf
661 acpi_status status
= AE_OK
;
662 struct acpi_resource
*resource
= crsbuf
;
667 dbg("acpi_pciehprm: PCI bus 0x%x Resource structure %x.\n", ab
->bus
, count
++);
668 switch (resource
->id
) {
669 case ACPI_RSTYPE_IRQ
:
670 dbg("Irq -------- Resource\n");
672 case ACPI_RSTYPE_DMA
:
673 dbg("DMA -------- Resource\n");
675 case ACPI_RSTYPE_START_DPF
:
676 dbg("Start DPF -------- Resource\n");
678 case ACPI_RSTYPE_END_DPF
:
679 dbg("End DPF -------- Resource\n");
682 acpi_parse_io (ab
, &resource
->data
);
684 case ACPI_RSTYPE_FIXED_IO
:
685 acpi_parse_fixed_io (ab
, &resource
->data
);
687 case ACPI_RSTYPE_VENDOR
:
688 dbg("Vendor -------- Resource\n");
690 case ACPI_RSTYPE_END_TAG
:
691 dbg("End_tag -------- Resource\n");
694 case ACPI_RSTYPE_MEM24
:
695 dbg("Mem24 -------- Resource\n");
697 case ACPI_RSTYPE_MEM32
:
698 dbg("Mem32 -------- Resource\n");
700 case ACPI_RSTYPE_FIXED_MEM32
:
701 dbg("Fixed Mem32 -------- Resource\n");
703 case ACPI_RSTYPE_ADDRESS16
:
704 acpi_parse_address16_32(ab
, &resource
->data
, ACPI_RSTYPE_ADDRESS16
);
706 case ACPI_RSTYPE_ADDRESS32
:
707 acpi_parse_address16_32(ab
, &resource
->data
, ACPI_RSTYPE_ADDRESS32
);
709 case ACPI_RSTYPE_ADDRESS64
:
710 info("Address64 -------- Resource unparsed\n");
712 case ACPI_RSTYPE_EXT_IRQ
:
713 dbg("Ext Irq -------- Resource\n");
716 dbg("Invalid -------- resource type 0x%x\n", resource
->id
);
720 resource
= (struct acpi_resource
*) ((char *)resource
+ resource
->length
);
726 static acpi_status
acpi_get_crs( struct acpi_bridge
*ab
)
729 struct acpi_resource
*crsbuf
;
731 status
= acpi_evaluate_crs(ab
->handle
, &crsbuf
);
732 if (ACPI_SUCCESS(status
)) {
733 status
= acpi_parse_crs(ab
, crsbuf
);
736 pciehp_resource_sort_and_combine(&ab
->bus_head
);
737 pciehp_resource_sort_and_combine(&ab
->io_head
);
738 pciehp_resource_sort_and_combine(&ab
->mem_head
);
739 pciehp_resource_sort_and_combine(&ab
->p_mem_head
);
741 pciehprm_add_resources (&ab
->tbus_head
, ab
->bus_head
);
742 pciehprm_add_resources (&ab
->tio_head
, ab
->io_head
);
743 pciehprm_add_resources (&ab
->tmem_head
, ab
->mem_head
);
744 pciehprm_add_resources (&ab
->tp_mem_head
, ab
->p_mem_head
);
750 /* find acpi_bridge downword from ab. */
751 static struct acpi_bridge
*
752 find_acpi_bridge_by_bus(
753 struct acpi_bridge
*ab
,
755 int bus
/* pdev->subordinate->number */
758 struct acpi_bridge
*lab
= NULL
;
763 if ((ab
->bus
== bus
) && (ab
->seg
== seg
))
767 lab
= find_acpi_bridge_by_bus(ab
->child
, seg
, bus
);
771 lab
= find_acpi_bridge_by_bus(ab
->next
, seg
, bus
);
777 * Build a device tree of ACPI PCI Bridges
779 static void pciehprm_acpi_register_a_bridge (
780 struct acpi_bridge
**head
,
781 struct acpi_bridge
*pab
, /* parent bridge to which child bridge is added */
782 struct acpi_bridge
*cab
/* child bridge to add */
785 struct acpi_bridge
*lpab
;
786 struct acpi_bridge
*lcab
;
788 lpab
= find_acpi_bridge_by_bus(*head
, pab
->seg
, pab
->bus
);
790 if (!(pab
->type
& BRIDGE_TYPE_HOST
))
791 warn("PCI parent bridge s:b(%x:%x) not in list.\n", pab
->seg
, pab
->bus
);
797 if ((cab
->type
& BRIDGE_TYPE_HOST
) && (pab
== cab
))
800 lcab
= find_acpi_bridge_by_bus(*head
, cab
->seg
, cab
->bus
);
802 if ((pab
->bus
!= lcab
->parent
->bus
) || (lcab
->bus
!= cab
->bus
))
803 err("PCI child bridge s:b(%x:%x) in list with diff parent.\n", cab
->seg
, cab
->bus
);
809 lcab
->next
= lpab
->child
;
813 static acpi_status
pciehprm_acpi_build_php_slots_callback(
824 acpi_handle phandle
= NULL
;
825 struct acpi_bridge
*pab
= (struct acpi_bridge
*)context
;
826 struct acpi_bridge
*lab
;
828 u8
*path_name
= acpi_path_name(handle
);
831 status
= acpi_evaluate_integer(handle
, METHOD_NAME__SUN
, NULL
, &sun
);
836 if (ACPI_FAILURE(status
)) {
837 err("acpi_pciehprm:%s _SUN fail=0x%x\n", path_name
, status
);
842 /* get _ADR. _ADR must exist if _SUN exists */
843 status
= acpi_evaluate_integer(handle
, METHOD_NAME__ADR
, NULL
, &adr
);
844 if (ACPI_FAILURE(status
)) {
845 err("acpi_pciehprm:%s _ADR fail=0x%x\n", path_name
, status
);
849 dbg("acpi_pciehprm:%s sun=0x%08x adr=0x%08x\n", path_name
, (u32
)sun
, (u32
)adr
);
851 status
= acpi_get_parent(handle
, &phandle
);
852 if (ACPI_FAILURE(status
)) {
853 err("acpi_pciehprm:%s get_parent fail=0x%x\n", path_name
, status
);
860 if (pab
->bus
== bus_num
) {
863 dbg("WARN: pab is not parent\n");
864 lab
= find_acpi_bridge_by_bus(pab
, seg_num
, bus_num
);
866 dbg("acpi_pciehprm: alloc new P2P bridge(%x) for sun(%08x)\n", (u32
)bus_num
, (u32
)sun
);
867 lab
= (struct acpi_bridge
*)kmalloc(sizeof(struct acpi_bridge
), GFP_KERNEL
);
869 err("acpi_pciehprm: alloc for ab fail\n");
872 memset(lab
, 0, sizeof(struct acpi_bridge
));
874 lab
->handle
= phandle
;
875 lab
->pbus
= pab
->bus
;
876 lab
->pdevice
= (int)(padr
>> 16) & 0xffff;
877 lab
->pfunction
= (int)(padr
& 0xffff);
878 lab
->bus
= (int)bus_num
;
880 lab
->type
= BRIDGE_TYPE_P2P
;
882 pciehprm_acpi_register_a_bridge (&acpi_bridges_head
, pab
, lab
);
884 dbg("acpi_pciehprm: found P2P bridge(%x) for sun(%08x)\n", (u32
)bus_num
, (u32
)sun
);
887 acpi_add_slot_to_php_slots(lab
, (int)bus_num
, handle
, (u32
)adr
, (u32
)sun
);
892 static int pciehprm_acpi_build_php_slots(
893 struct acpi_bridge
*ab
,
898 u8
*path_name
= acpi_path_name(ab
->handle
);
900 /* Walk down this pci bridge to get _SUNs if any behind P2P */
901 status
= acpi_walk_namespace ( ACPI_TYPE_DEVICE
,
904 pciehprm_acpi_build_php_slots_callback
,
907 if (ACPI_FAILURE(status
)) {
908 dbg("acpi_pciehprm:%s walk for _SUN on pci bridge seg:bus(%x:%x) fail=0x%x\n", path_name
, ab
->seg
, ab
->bus
, status
);
915 static void build_a_bridge(
916 struct acpi_bridge
*pab
,
917 struct acpi_bridge
*ab
920 u8
*path_name
= acpi_path_name(ab
->handle
);
922 pciehprm_acpi_register_a_bridge (&acpi_bridges_head
, pab
, ab
);
925 case BRIDGE_TYPE_HOST
:
926 dbg("acpi_pciehprm: Registered PCI HOST Bridge(%02x) on s:b:d:f(%02x:%02x:%02x:%02x) [%s]\n",
927 ab
->bus
, ab
->seg
, ab
->pbus
, ab
->pdevice
, ab
->pfunction
, path_name
);
929 case BRIDGE_TYPE_P2P
:
930 dbg("acpi_pciehprm: Registered PCI P2P Bridge(%02x-%02x) on s:b:d:f(%02x:%02x:%02x:%02x) [%s]\n",
931 ab
->pbus
, ab
->bus
, ab
->seg
, ab
->pbus
, ab
->pdevice
, ab
->pfunction
, path_name
);
935 /* build any immediate PHP slots under this pci bridge */
936 pciehprm_acpi_build_php_slots(ab
, 1);
939 static struct acpi_bridge
* add_p2p_bridge(
941 struct acpi_bridge
*pab
, /* parent */
945 struct acpi_bridge
*ab
;
946 struct pci_dev
*pdev
;
947 ulong devnum
, funcnum
;
948 u8
*path_name
= acpi_path_name(handle
);
950 ab
= (struct acpi_bridge
*) kmalloc (sizeof(struct acpi_bridge
), GFP_KERNEL
);
952 err("acpi_pciehprm: alloc for ab fail\n");
955 memset(ab
, 0, sizeof(struct acpi_bridge
));
957 devnum
= (adr
>> 16) & 0xffff;
958 funcnum
= adr
& 0xffff;
960 pdev
= pci_find_slot(pab
->bus
, PCI_DEVFN(devnum
, funcnum
));
961 if (!pdev
|| !pdev
->subordinate
) {
962 err("acpi_pciehprm:%s is not a P2P Bridge\n", path_name
);
969 ab
->pbus
= pab
->bus
; /* or pdev->bus->number */
970 ab
->pdevice
= devnum
; /* or PCI_SLOT(pdev->devfn) */
971 ab
->pfunction
= funcnum
; /* or PCI_FUNC(pdev->devfn) */
972 ab
->bus
= pdev
->subordinate
->number
;
974 ab
->type
= BRIDGE_TYPE_P2P
;
976 dbg("acpi_pciehprm: P2P(%x-%x) on pci=b:d:f(%x:%x:%x) acpi=b:d:f(%x:%x:%x) [%s]\n",
977 pab
->bus
, ab
->bus
, pdev
->bus
->number
, PCI_SLOT(pdev
->devfn
), PCI_FUNC(pdev
->devfn
),
978 pab
->bus
, (u32
)devnum
, (u32
)funcnum
, path_name
);
980 build_a_bridge(pab
, ab
);
985 static acpi_status
scan_p2p_bridge(
992 struct acpi_bridge
*pab
= (struct acpi_bridge
*)context
;
993 struct acpi_bridge
*ab
;
996 u8
*path_name
= acpi_path_name(handle
);
997 ulong devnum
, funcnum
;
998 struct pci_dev
*pdev
;
1000 /* get device, function */
1001 status
= acpi_evaluate_integer(handle
, METHOD_NAME__ADR
, NULL
, &adr
);
1002 if (ACPI_FAILURE(status
)) {
1003 if (status
!= AE_NOT_FOUND
)
1004 err("acpi_pciehprm:%s _ADR fail=0x%x\n", path_name
, status
);
1008 devnum
= (adr
>> 16) & 0xffff;
1009 funcnum
= adr
& 0xffff;
1011 pdev
= pci_find_slot(pab
->bus
, PCI_DEVFN(devnum
, funcnum
));
1014 if (!pdev
->subordinate
)
1017 ab
= add_p2p_bridge(handle
, pab
, adr
);
1019 status
= acpi_walk_namespace ( ACPI_TYPE_DEVICE
,
1025 if (ACPI_FAILURE(status
))
1026 dbg("acpi_pciehprm:%s find_p2p fail=0x%x\n", path_name
, status
);
1032 static struct acpi_bridge
* add_host_bridge(
1040 struct acpi_bridge
*ab
;
1041 u8
*path_name
= acpi_path_name(handle
);
1043 /* get device, function: host br adr is always 0000 though. */
1044 status
= acpi_evaluate_integer(handle
, METHOD_NAME__ADR
, NULL
, &adr
);
1045 if (ACPI_FAILURE(status
)) {
1046 err("acpi_pciehprm:%s _ADR fail=0x%x\n", path_name
, status
);
1049 dbg("acpi_pciehprm: ROOT PCI seg(0x%x)bus(0x%x)dev(0x%x)func(0x%x) [%s]\n", (u32
)segnum
,
1050 (u32
)busnum
, (u32
)(adr
>> 16) & 0xffff, (u32
)adr
& 0xffff, path_name
);
1052 ab
= (struct acpi_bridge
*) kmalloc (sizeof(struct acpi_bridge
), GFP_KERNEL
);
1054 err("acpi_pciehprm: alloc for ab fail\n");
1057 memset(ab
, 0, sizeof(struct acpi_bridge
));
1059 ab
->handle
= handle
;
1060 ab
->seg
= (int)segnum
;
1061 ab
->bus
= ab
->pbus
= (int)busnum
;
1062 ab
->pdevice
= (int)(adr
>> 16) & 0xffff;
1063 ab
->pfunction
= (int)(adr
& 0xffff);
1065 ab
->type
= BRIDGE_TYPE_HOST
;
1067 /* get root pci bridge's current resources */
1068 status
= acpi_get_crs(ab
);
1069 if (ACPI_FAILURE(status
)) {
1070 err("acpi_pciehprm:%s evaluate _CRS fail=0x%x\n", path_name
, status
);
1075 status
= pci_osc_control_set (OSC_PCI_EXPRESS_NATIVE_HP_CONTROL
);
1076 if (ACPI_FAILURE(status
)) {
1077 err("%s: status %x\n", __FUNCTION__
, status
);
1078 osc_run_status
= (status
== AE_NOT_FOUND
) ? OSC_NOT_EXIST
: OSC_RUN_FAILED
;
1080 osc_run_status
= NC_RUN_SUCCESS
;
1082 dbg("%s: osc_run_status %x\n", __FUNCTION__
, osc_run_status
);
1084 build_a_bridge(ab
, ab
);
1089 static acpi_status
acpi_scan_from_root_pci_callback (
1099 struct acpi_bridge
*ab
;
1100 u8
*path_name
= acpi_path_name(handle
);
1102 /* get bus number of this pci root bridge */
1103 status
= acpi_evaluate_integer(handle
, METHOD_NAME__SEG
, NULL
, &segnum
);
1104 if (ACPI_FAILURE(status
)) {
1105 if (status
!= AE_NOT_FOUND
) {
1106 err("acpi_pciehprm:%s evaluate _SEG fail=0x%x\n", path_name
, status
);
1112 /* get bus number of this pci root bridge */
1113 status
= acpi_evaluate_integer(handle
, METHOD_NAME__BBN
, NULL
, &busnum
);
1114 if (ACPI_FAILURE(status
)) {
1115 err("acpi_pciehprm:%s evaluate _BBN fail=0x%x\n", path_name
, status
);
1119 ab
= add_host_bridge(handle
, segnum
, busnum
);
1121 status
= acpi_walk_namespace ( ACPI_TYPE_DEVICE
,
1127 if (ACPI_FAILURE(status
))
1128 dbg("acpi_pciehprm:%s find_p2p fail=0x%x\n", path_name
, status
);
1134 static int pciehprm_acpi_scan_pci (void)
1139 * TBD: traverse LDM device tree with the help of
1140 * unified ACPI augmented for php device population.
1142 status
= acpi_get_devices ( PCI_ROOT_HID_STRING
,
1143 acpi_scan_from_root_pci_callback
,
1146 if (ACPI_FAILURE(status
)) {
1147 err("acpi_pciehprm:get_device PCI ROOT HID fail=0x%x\n", status
);
1154 int pciehprm_init(enum php_ctlr_type ctlr_type
)
1158 if (ctlr_type
!= PCI
)
1161 dbg("pciehprm ACPI init <enter>\n");
1162 acpi_bridges_head
= NULL
;
1164 /* construct PCI bus:device tree of acpi_handles */
1165 rc
= pciehprm_acpi_scan_pci();
1169 if ((oshp_run_status
!= NC_RUN_SUCCESS
) && (osc_run_status
!= NC_RUN_SUCCESS
)) {
1170 err("Fails to gain control of native hot-plug\n");
1174 dbg("pciehprm ACPI init %s\n", (rc
)?"fail":"success");
1178 static void free_a_slot(struct acpi_php_slot
*aps
)
1180 dbg(" free a php func of slot(0x%02x) on PCI b:d:f=0x%02x:%02x:%02x\n", aps
->sun
, aps
->bus
, aps
->dev
, aps
->fun
);
1182 free_pci_resource (aps
->io_head
);
1183 free_pci_resource (aps
->bus_head
);
1184 free_pci_resource (aps
->mem_head
);
1185 free_pci_resource (aps
->p_mem_head
);
1190 static void free_a_bridge( struct acpi_bridge
*ab
)
1192 struct acpi_php_slot
*aps
, *next
;
1195 case BRIDGE_TYPE_HOST
:
1196 dbg("Free ACPI PCI HOST Bridge(%x) [%s] on s:b:d:f(%x:%x:%x:%x)\n",
1197 ab
->bus
, acpi_path_name(ab
->handle
), ab
->seg
, ab
->pbus
, ab
->pdevice
, ab
->pfunction
);
1199 case BRIDGE_TYPE_P2P
:
1200 dbg("Free ACPI PCI P2P Bridge(%x-%x) [%s] on s:b:d:f(%x:%x:%x:%x)\n",
1201 ab
->pbus
, ab
->bus
, acpi_path_name(ab
->handle
), ab
->seg
, ab
->pbus
, ab
->pdevice
, ab
->pfunction
);
1205 /* free slots first */
1206 for (aps
= ab
->slots
; aps
; aps
= next
) {
1211 free_pci_resource (ab
->io_head
);
1212 free_pci_resource (ab
->tio_head
);
1213 free_pci_resource (ab
->bus_head
);
1214 free_pci_resource (ab
->tbus_head
);
1215 free_pci_resource (ab
->mem_head
);
1216 free_pci_resource (ab
->tmem_head
);
1217 free_pci_resource (ab
->p_mem_head
);
1218 free_pci_resource (ab
->tp_mem_head
);
1223 static void pciehprm_free_bridges ( struct acpi_bridge
*ab
)
1229 pciehprm_free_bridges (ab
->child
);
1232 pciehprm_free_bridges (ab
->next
);
1237 void pciehprm_cleanup(void)
1239 pciehprm_free_bridges (acpi_bridges_head
);
1242 static int get_number_of_slots (
1243 struct acpi_bridge
*ab
,
1247 struct acpi_php_slot
*aps
;
1251 for ( aps
= ab
->slots
; aps
; aps
= aps
->next
)
1252 if (aps
->dev
!= prev_slot
) {
1253 prev_slot
= aps
->dev
;
1258 slot_num
+= get_number_of_slots (ab
->child
, 0);
1264 slot_num
+= get_number_of_slots (ab
->next
, 0);
1269 static int print_acpi_resources (struct acpi_bridge
*ab
)
1271 struct acpi_php_slot
*aps
;
1275 case BRIDGE_TYPE_HOST
:
1276 dbg("PCI HOST Bridge (%x) [%s]\n", ab
->bus
, acpi_path_name(ab
->handle
));
1278 case BRIDGE_TYPE_P2P
:
1279 dbg("PCI P2P Bridge (%x-%x) [%s]\n", ab
->pbus
, ab
->bus
, acpi_path_name(ab
->handle
));
1283 print_pci_resources (ab
);
1285 for ( i
= -1, aps
= ab
->slots
; aps
; aps
= aps
->next
) {
1288 dbg(" Slot sun(%x) s:b:d:f(%02x:%02x:%02x:%02x)\n", aps
->sun
, aps
->seg
, aps
->bus
, aps
->dev
, aps
->fun
);
1289 print_slot_resources(aps
);
1294 print_acpi_resources (ab
->child
);
1297 print_acpi_resources (ab
->next
);
1302 int pciehprm_print_pirt(void)
1304 dbg("PCIEHPRM ACPI Slots\n");
1305 if (acpi_bridges_head
)
1306 print_acpi_resources (acpi_bridges_head
);
1311 static struct acpi_php_slot
* get_acpi_slot (
1312 struct acpi_bridge
*ab
,
1316 struct acpi_php_slot
*aps
= NULL
;
1318 for ( aps
= ab
->slots
; aps
; aps
= aps
->next
)
1319 if (aps
->sun
== sun
)
1322 if (!aps
&& ab
->child
) {
1323 aps
= (struct acpi_php_slot
*)get_acpi_slot (ab
->child
, sun
);
1328 if (!aps
&& ab
->next
) {
1329 aps
= (struct acpi_php_slot
*)get_acpi_slot (ab
->next
, sun
);
1339 void * pciehprm_get_slot(struct slot
*slot
)
1341 struct acpi_bridge
*ab
= acpi_bridges_head
;
1342 struct acpi_php_slot
*aps
= get_acpi_slot (ab
, slot
->number
);
1346 dbg("Got acpi slot sun(%x): s:b:d:f(%x:%x:%x:%x)\n", aps
->sun
, aps
->seg
, aps
->bus
, aps
->dev
, aps
->fun
);
1352 static void pciehprm_dump_func_res( struct pci_func
*fun
)
1354 struct pci_func
*func
= fun
;
1356 if (func
->bus_head
) {
1357 dbg(": BUS Resources:\n");
1358 print_pci_resource (func
->bus_head
);
1360 if (func
->io_head
) {
1361 dbg(": IO Resources:\n");
1362 print_pci_resource (func
->io_head
);
1364 if (func
->mem_head
) {
1365 dbg(": MEM Resources:\n");
1366 print_pci_resource (func
->mem_head
);
1368 if (func
->p_mem_head
) {
1369 dbg(": PMEM Resources:\n");
1370 print_pci_resource (func
->p_mem_head
);
1374 static void pciehprm_dump_ctrl_res( struct controller
*ctlr
)
1376 struct controller
*ctrl
= ctlr
;
1378 if (ctrl
->bus_head
) {
1379 dbg(": BUS Resources:\n");
1380 print_pci_resource (ctrl
->bus_head
);
1382 if (ctrl
->io_head
) {
1383 dbg(": IO Resources:\n");
1384 print_pci_resource (ctrl
->io_head
);
1386 if (ctrl
->mem_head
) {
1387 dbg(": MEM Resources:\n");
1388 print_pci_resource (ctrl
->mem_head
);
1390 if (ctrl
->p_mem_head
) {
1391 dbg(": PMEM Resources:\n");
1392 print_pci_resource (ctrl
->p_mem_head
);
1396 static int pciehprm_get_used_resources (
1397 struct controller
*ctrl
,
1398 struct pci_func
*func
1401 return pciehp_save_used_resources (ctrl
, func
, !DISABLE_CARD
);
1404 static int configure_existing_function(
1405 struct controller
*ctrl
,
1406 struct pci_func
*func
1411 /* see how much resources the func has used. */
1412 rc
= pciehprm_get_used_resources (ctrl
, func
);
1415 /* subtract the resources used by the func from ctrl resources */
1416 rc
= pciehprm_delete_resources (&ctrl
->bus_head
, func
->bus_head
);
1417 rc
|= pciehprm_delete_resources (&ctrl
->io_head
, func
->io_head
);
1418 rc
|= pciehprm_delete_resources (&ctrl
->mem_head
, func
->mem_head
);
1419 rc
|= pciehprm_delete_resources (&ctrl
->p_mem_head
, func
->p_mem_head
);
1421 warn("aCEF: cannot del used resources\n");
1423 err("aCEF: cannot get used resources\n");
1428 static int bind_pci_resources_to_slots ( struct controller
*ctrl
)
1430 struct pci_func
*func
, new_func
;
1431 int busn
= ctrl
->slot_bus
;
1435 for (devn
= 0; devn
< 32; devn
++) {
1436 for (funn
= 0; funn
< 8; funn
++) {
1438 if (devn == ctrl->device && funn == ctrl->function)
1441 /* find out if this entry is for an occupied slot */
1443 pci_bus_read_config_dword(ctrl
->pci_dev
->subordinate
, PCI_DEVFN(devn
, funn
), PCI_VENDOR_ID
, &vid
);
1445 if (vid
!= 0xFFFFFFFF) {
1446 dbg("%s: vid = %x\n", __FUNCTION__
, vid
);
1447 func
= pciehp_slot_find(busn
, devn
, funn
);
1449 memset(&new_func
, 0, sizeof(struct pci_func
));
1450 new_func
.bus
= busn
;
1451 new_func
.device
= devn
;
1452 new_func
.function
= funn
;
1453 new_func
.is_a_board
= 1;
1454 configure_existing_function(ctrl
, &new_func
);
1455 pciehprm_dump_func_res(&new_func
);
1457 configure_existing_function(ctrl
, func
);
1458 pciehprm_dump_func_res(func
);
1460 dbg("aCCF:existing PCI 0x%x Func ResourceDump\n", ctrl
->bus
);
1468 static int bind_pci_resources(
1469 struct controller
*ctrl
,
1470 struct acpi_bridge
*ab
1476 dbg("bapr: BUS Resources add on PCI 0x%x\n", ab
->bus
);
1477 status
= pciehprm_add_resources (&ctrl
->bus_head
, ab
->bus_head
);
1478 if (pciehprm_delete_resources (&ab
->bus_head
, ctrl
->bus_head
))
1479 warn("bapr: cannot sub BUS Resource on PCI 0x%x\n", ab
->bus
);
1481 err("bapr: BUS Resource add on PCI 0x%x: fail=0x%x\n", ab
->bus
, status
);
1485 info("bapr: No BUS Resource on PCI 0x%x.\n", ab
->bus
);
1488 dbg("bapr: IO Resources add on PCI 0x%x\n", ab
->bus
);
1489 status
= pciehprm_add_resources (&ctrl
->io_head
, ab
->io_head
);
1490 if (pciehprm_delete_resources (&ab
->io_head
, ctrl
->io_head
))
1491 warn("bapr: cannot sub IO Resource on PCI 0x%x\n", ab
->bus
);
1493 err("bapr: IO Resource add on PCI 0x%x: fail=0x%x\n", ab
->bus
, status
);
1497 info("bapr: No IO Resource on PCI 0x%x.\n", ab
->bus
);
1500 dbg("bapr: MEM Resources add on PCI 0x%x\n", ab
->bus
);
1501 status
= pciehprm_add_resources (&ctrl
->mem_head
, ab
->mem_head
);
1502 if (pciehprm_delete_resources (&ab
->mem_head
, ctrl
->mem_head
))
1503 warn("bapr: cannot sub MEM Resource on PCI 0x%x\n", ab
->bus
);
1505 err("bapr: MEM Resource add on PCI 0x%x: fail=0x%x\n", ab
->bus
, status
);
1509 info("bapr: No MEM Resource on PCI 0x%x.\n", ab
->bus
);
1511 if (ab
->p_mem_head
) {
1512 dbg("bapr: PMEM Resources add on PCI 0x%x\n", ab
->bus
);
1513 status
= pciehprm_add_resources (&ctrl
->p_mem_head
, ab
->p_mem_head
);
1514 if (pciehprm_delete_resources (&ab
->p_mem_head
, ctrl
->p_mem_head
))
1515 warn("bapr: cannot sub PMEM Resource on PCI 0x%x\n", ab
->bus
);
1517 err("bapr: PMEM Resource add on PCI 0x%x: fail=0x%x\n", ab
->bus
, status
);
1521 info("bapr: No PMEM Resource on PCI 0x%x.\n", ab
->bus
);
1526 static int no_pci_resources( struct acpi_bridge
*ab
)
1528 return !(ab
->p_mem_head
|| ab
->mem_head
|| ab
->io_head
|| ab
->bus_head
);
1531 static int find_pci_bridge_resources (
1532 struct controller
*ctrl
,
1533 struct acpi_bridge
*ab
1537 struct pci_func func
;
1539 memset(&func
, 0, sizeof(struct pci_func
));
1541 func
.bus
= ab
->pbus
;
1542 func
.device
= ab
->pdevice
;
1543 func
.function
= ab
->pfunction
;
1544 func
.is_a_board
= 1;
1546 /* Get used resources for this PCI bridge */
1547 rc
= pciehp_save_used_resources (ctrl
, &func
, !DISABLE_CARD
);
1549 ab
->io_head
= func
.io_head
;
1550 ab
->mem_head
= func
.mem_head
;
1551 ab
->p_mem_head
= func
.p_mem_head
;
1552 ab
->bus_head
= func
.bus_head
;
1554 pciehprm_delete_resource(&ab
->bus_head
, ctrl
->pci_dev
->subordinate
->number
, 1);
1559 static int get_pci_resources_from_bridge(
1560 struct controller
*ctrl
,
1561 struct acpi_bridge
*ab
1566 dbg("grfb: Get Resources for PCI 0x%x from actual PCI bridge 0x%x.\n", ctrl
->bus
, ab
->bus
);
1568 rc
= find_pci_bridge_resources (ctrl
, ab
);
1570 pciehp_resource_sort_and_combine(&ab
->bus_head
);
1571 pciehp_resource_sort_and_combine(&ab
->io_head
);
1572 pciehp_resource_sort_and_combine(&ab
->mem_head
);
1573 pciehp_resource_sort_and_combine(&ab
->p_mem_head
);
1575 pciehprm_add_resources (&ab
->tbus_head
, ab
->bus_head
);
1576 pciehprm_add_resources (&ab
->tio_head
, ab
->io_head
);
1577 pciehprm_add_resources (&ab
->tmem_head
, ab
->mem_head
);
1578 pciehprm_add_resources (&ab
->tp_mem_head
, ab
->p_mem_head
);
1583 static int get_pci_resources(
1584 struct controller
*ctrl
,
1585 struct acpi_bridge
*ab
1590 if (no_pci_resources(ab
)) {
1591 dbg("spbr:PCI 0x%x has no resources. Get parent resources.\n", ab
->bus
);
1592 rc
= get_pci_resources_from_bridge(ctrl
, ab
);
1599 * Get resources for this ctrl.
1600 * 1. get total resources from ACPI _CRS or bridge (this ctrl)
1601 * 2. find used resources of existing adapters
1602 * 3. subtract used resources from total resources
1604 int pciehprm_find_available_resources( struct controller
*ctrl
)
1607 struct acpi_bridge
*ab
;
1609 ab
= find_acpi_bridge_by_bus(acpi_bridges_head
, ctrl
->seg
, ctrl
->pci_dev
->subordinate
->number
);
1611 err("pfar:cannot locate acpi bridge of PCI 0x%x.\n", ctrl
->pci_dev
->subordinate
->number
);
1614 if (no_pci_resources(ab
)) {
1615 rc
= get_pci_resources(ctrl
, ab
);
1617 err("pfar:cannot get pci resources of PCI 0x%x.\n", ctrl
->pci_dev
->subordinate
->number
);
1622 rc
= bind_pci_resources(ctrl
, ab
);
1623 dbg("pfar:pre-Bind PCI 0x%x Ctrl Resource Dump\n", ctrl
->pci_dev
->subordinate
->number
);
1624 pciehprm_dump_ctrl_res(ctrl
);
1626 bind_pci_resources_to_slots (ctrl
);
1628 dbg("pfar:post-Bind PCI 0x%x Ctrl Resource Dump\n", ctrl
->pci_dev
->subordinate
->number
);
1629 pciehprm_dump_ctrl_res(ctrl
);
1634 int pciehprm_set_hpp(
1635 struct controller
*ctrl
,
1636 struct pci_func
*func
,
1640 struct acpi_bridge
*ab
;
1641 struct pci_bus lpci_bus
, *pci_bus
;
1644 u8 cls
= 0x08; /* default cache line size */
1645 u8 lt
= 0x40; /* default latency timer */
1649 memcpy(&lpci_bus
, ctrl
->pci_bus
, sizeof(lpci_bus
));
1650 pci_bus
= &lpci_bus
;
1651 pci_bus
->number
= func
->bus
;
1652 devfn
= PCI_DEVFN(func
->device
, func
->function
);
1654 ab
= find_acpi_bridge_by_bus(acpi_bridges_head
, ctrl
->seg
, ctrl
->bus
);
1658 lt
= (u8
)ab
->_hpp
->latency_timer
;
1659 cls
= (u8
)ab
->_hpp
->cache_line_size
;
1660 ep
= (u8
)ab
->_hpp
->enable_perr
;
1661 es
= (u8
)ab
->_hpp
->enable_serr
;
1663 dbg("_hpp: no _hpp for B/D/F=%#x/%#x/%#x. use default value\n", func
->bus
, func
->device
, func
->function
);
1665 dbg("_hpp: no acpi bridge for B/D/F = %#x/%#x/%#x. use default value\n", func
->bus
, func
->device
, func
->function
);
1668 if (card_type
== PCI_HEADER_TYPE_BRIDGE
) {
1669 /* set subordinate Latency Timer */
1670 rc
|= pci_bus_write_config_byte(pci_bus
, devfn
, PCI_SEC_LATENCY_TIMER
, lt
);
1673 /* set base Latency Timer */
1674 rc
|= pci_bus_write_config_byte(pci_bus
, devfn
, PCI_LATENCY_TIMER
, lt
);
1675 dbg(" set latency timer =0x%02x: %x\n", lt
, rc
);
1677 rc
|= pci_bus_write_config_byte(pci_bus
, devfn
, PCI_CACHE_LINE_SIZE
, cls
);
1678 dbg(" set cache_line_size=0x%02x: %x\n", cls
, rc
);
1683 void pciehprm_enable_card(
1684 struct controller
*ctrl
,
1685 struct pci_func
*func
,
1688 u16 command
, cmd
, bcommand
, bcmd
;
1689 struct pci_bus lpci_bus
, *pci_bus
;
1690 struct acpi_bridge
*ab
;
1694 memcpy(&lpci_bus
, ctrl
->pci_bus
, sizeof(lpci_bus
));
1695 pci_bus
= &lpci_bus
;
1696 pci_bus
->number
= func
->bus
;
1697 devfn
= PCI_DEVFN(func
->device
, func
->function
);
1699 rc
= pci_bus_read_config_word(pci_bus
, devfn
, PCI_COMMAND
, &command
);
1701 if (card_type
== PCI_HEADER_TYPE_BRIDGE
) {
1702 rc
= pci_bus_read_config_word(pci_bus
, devfn
, PCI_BRIDGE_CONTROL
, &bcommand
);
1705 cmd
= command
= command
| PCI_COMMAND_MASTER
| PCI_COMMAND_INVALIDATE
1706 | PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
;
1707 bcmd
= bcommand
= bcommand
| PCI_BRIDGE_CTL_NO_ISA
;
1709 ab
= find_acpi_bridge_by_bus(acpi_bridges_head
, ctrl
->seg
, ctrl
->bus
);
1712 if (ab
->_hpp
->enable_perr
) {
1713 command
|= PCI_COMMAND_PARITY
;
1714 bcommand
|= PCI_BRIDGE_CTL_PARITY
;
1716 command
&= ~PCI_COMMAND_PARITY
;
1717 bcommand
&= ~PCI_BRIDGE_CTL_PARITY
;
1719 if (ab
->_hpp
->enable_serr
) {
1720 command
|= PCI_COMMAND_SERR
;
1721 bcommand
|= PCI_BRIDGE_CTL_SERR
;
1723 command
&= ~PCI_COMMAND_SERR
;
1724 bcommand
&= ~PCI_BRIDGE_CTL_SERR
;
1727 dbg("no _hpp for B/D/F = %#x/%#x/%#x.\n", func
->bus
, func
->device
, func
->function
);
1729 dbg("no acpi bridge for B/D/F = %#x/%#x/%#x.\n", func
->bus
, func
->device
, func
->function
);
1731 if (command
!= cmd
) {
1732 rc
= pci_bus_write_config_word(pci_bus
, devfn
, PCI_COMMAND
, command
);
1734 if ((card_type
== PCI_HEADER_TYPE_BRIDGE
) && (bcommand
!= bcmd
)) {
1735 rc
= pci_bus_write_config_word(pci_bus
, devfn
, PCI_BRIDGE_CONTROL
, bcommand
);