2 * IBM Hot Plug Controller Driver
4 * Written By: Tong Yu, IBM Corporation
6 * Copyright (C) 2001,2003 Greg Kroah-Hartman (greg@kroah.com)
7 * Copyright (C) 2001-2003 IBM Corp.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 * Send feedback to <gregkh@us.ibm.com>
30 #include <linux/module.h>
31 #include <linux/errno.h>
33 #include <linux/slab.h>
34 #include <linux/pci.h>
35 #include <linux/list.h>
36 #include <linux/init.h>
40 * POST builds data blocks(in this data block definition, a char-1
41 * byte, short(or word)-2 byte, long(dword)-4 byte) in the Extended
42 * BIOS Data Area which describe the configuration of the hot-plug
43 * controllers and resources used by the PCI Hot-Plug devices.
45 * This file walks EBDA, maps data block from physical addr,
46 * reconstruct linked lists about all system resource(MEM, PFM, IO)
47 * already assigned by POST, as well as linked lists about hot plug
48 * controllers (ctlr#, slot#, bus&slot features...)
52 LIST_HEAD (ibmphp_ebda_pci_rsrc_head
);
53 LIST_HEAD (ibmphp_slot_head
);
56 static struct ebda_hpc_list
*hpc_list_ptr
;
57 static struct ebda_rsrc_list
*rsrc_list_ptr
;
58 static struct rio_table_hdr
*rio_table_ptr
= NULL
;
59 static LIST_HEAD (ebda_hpc_head
);
60 static LIST_HEAD (bus_info_head
);
61 static LIST_HEAD (rio_vg_head
);
62 static LIST_HEAD (rio_lo_head
);
63 static LIST_HEAD (opt_vg_head
);
64 static LIST_HEAD (opt_lo_head
);
65 static void __iomem
*io_mem
;
68 static int ebda_rsrc_controller (void);
69 static int ebda_rsrc_rsrc (void);
70 static int ebda_rio_table (void);
72 static struct ebda_hpc_list
* __init
alloc_ebda_hpc_list (void)
74 return kzalloc(sizeof(struct ebda_hpc_list
), GFP_KERNEL
);
77 static struct controller
*alloc_ebda_hpc (u32 slot_count
, u32 bus_count
)
79 struct controller
*controller
;
80 struct ebda_hpc_slot
*slots
;
81 struct ebda_hpc_bus
*buses
;
83 controller
= kzalloc(sizeof(struct controller
), GFP_KERNEL
);
87 slots
= kcalloc(slot_count
, sizeof(struct ebda_hpc_slot
), GFP_KERNEL
);
90 controller
->slots
= slots
;
92 buses
= kcalloc(bus_count
, sizeof(struct ebda_hpc_bus
), GFP_KERNEL
);
95 controller
->buses
= buses
;
99 kfree(controller
->slots
);
106 static void free_ebda_hpc (struct controller
*controller
)
108 kfree (controller
->slots
);
109 kfree (controller
->buses
);
113 static struct ebda_rsrc_list
* __init
alloc_ebda_rsrc_list (void)
115 return kzalloc(sizeof(struct ebda_rsrc_list
), GFP_KERNEL
);
118 static struct ebda_pci_rsrc
*alloc_ebda_pci_rsrc (void)
120 return kzalloc(sizeof(struct ebda_pci_rsrc
), GFP_KERNEL
);
123 static void __init
print_bus_info (void)
125 struct bus_info
*ptr
;
127 list_for_each_entry(ptr
, &bus_info_head
, bus_info_list
) {
128 debug ("%s - slot_min = %x\n", __func__
, ptr
->slot_min
);
129 debug ("%s - slot_max = %x\n", __func__
, ptr
->slot_max
);
130 debug ("%s - slot_count = %x\n", __func__
, ptr
->slot_count
);
131 debug ("%s - bus# = %x\n", __func__
, ptr
->busno
);
132 debug ("%s - current_speed = %x\n", __func__
, ptr
->current_speed
);
133 debug ("%s - controller_id = %x\n", __func__
, ptr
->controller_id
);
135 debug ("%s - slots_at_33_conv = %x\n", __func__
, ptr
->slots_at_33_conv
);
136 debug ("%s - slots_at_66_conv = %x\n", __func__
, ptr
->slots_at_66_conv
);
137 debug ("%s - slots_at_66_pcix = %x\n", __func__
, ptr
->slots_at_66_pcix
);
138 debug ("%s - slots_at_100_pcix = %x\n", __func__
, ptr
->slots_at_100_pcix
);
139 debug ("%s - slots_at_133_pcix = %x\n", __func__
, ptr
->slots_at_133_pcix
);
144 static void print_lo_info (void)
146 struct rio_detail
*ptr
;
147 debug ("print_lo_info ----\n");
148 list_for_each_entry(ptr
, &rio_lo_head
, rio_detail_list
) {
149 debug ("%s - rio_node_id = %x\n", __func__
, ptr
->rio_node_id
);
150 debug ("%s - rio_type = %x\n", __func__
, ptr
->rio_type
);
151 debug ("%s - owner_id = %x\n", __func__
, ptr
->owner_id
);
152 debug ("%s - first_slot_num = %x\n", __func__
, ptr
->first_slot_num
);
153 debug ("%s - wpindex = %x\n", __func__
, ptr
->wpindex
);
154 debug ("%s - chassis_num = %x\n", __func__
, ptr
->chassis_num
);
159 static void print_vg_info (void)
161 struct rio_detail
*ptr
;
162 debug ("%s ---\n", __func__
);
163 list_for_each_entry(ptr
, &rio_vg_head
, rio_detail_list
) {
164 debug ("%s - rio_node_id = %x\n", __func__
, ptr
->rio_node_id
);
165 debug ("%s - rio_type = %x\n", __func__
, ptr
->rio_type
);
166 debug ("%s - owner_id = %x\n", __func__
, ptr
->owner_id
);
167 debug ("%s - first_slot_num = %x\n", __func__
, ptr
->first_slot_num
);
168 debug ("%s - wpindex = %x\n", __func__
, ptr
->wpindex
);
169 debug ("%s - chassis_num = %x\n", __func__
, ptr
->chassis_num
);
174 static void __init
print_ebda_pci_rsrc (void)
176 struct ebda_pci_rsrc
*ptr
;
178 list_for_each_entry(ptr
, &ibmphp_ebda_pci_rsrc_head
, ebda_pci_rsrc_list
) {
179 debug ("%s - rsrc type: %x bus#: %x dev_func: %x start addr: %x end addr: %x\n",
180 __func__
, ptr
->rsrc_type
,ptr
->bus_num
, ptr
->dev_fun
,ptr
->start_addr
, ptr
->end_addr
);
184 static void __init
print_ibm_slot (void)
188 list_for_each_entry(ptr
, &ibmphp_slot_head
, ibm_slot_list
) {
189 debug ("%s - slot_number: %x\n", __func__
, ptr
->number
);
193 static void __init
print_opt_vg (void)
196 debug ("%s ---\n", __func__
);
197 list_for_each_entry(ptr
, &opt_vg_head
, opt_rio_list
) {
198 debug ("%s - rio_type %x\n", __func__
, ptr
->rio_type
);
199 debug ("%s - chassis_num: %x\n", __func__
, ptr
->chassis_num
);
200 debug ("%s - first_slot_num: %x\n", __func__
, ptr
->first_slot_num
);
201 debug ("%s - middle_num: %x\n", __func__
, ptr
->middle_num
);
205 static void __init
print_ebda_hpc (void)
207 struct controller
*hpc_ptr
;
210 list_for_each_entry(hpc_ptr
, &ebda_hpc_head
, ebda_hpc_list
) {
211 for (index
= 0; index
< hpc_ptr
->slot_count
; index
++) {
212 debug ("%s - physical slot#: %x\n", __func__
, hpc_ptr
->slots
[index
].slot_num
);
213 debug ("%s - pci bus# of the slot: %x\n", __func__
, hpc_ptr
->slots
[index
].slot_bus_num
);
214 debug ("%s - index into ctlr addr: %x\n", __func__
, hpc_ptr
->slots
[index
].ctl_index
);
215 debug ("%s - cap of the slot: %x\n", __func__
, hpc_ptr
->slots
[index
].slot_cap
);
218 for (index
= 0; index
< hpc_ptr
->bus_count
; index
++) {
219 debug ("%s - bus# of each bus controlled by this ctlr: %x\n", __func__
, hpc_ptr
->buses
[index
].bus_num
);
222 debug ("%s - type of hpc: %x\n", __func__
, hpc_ptr
->ctlr_type
);
223 switch (hpc_ptr
->ctlr_type
) {
225 debug ("%s - bus: %x\n", __func__
, hpc_ptr
->u
.pci_ctlr
.bus
);
226 debug ("%s - dev_fun: %x\n", __func__
, hpc_ptr
->u
.pci_ctlr
.dev_fun
);
227 debug ("%s - irq: %x\n", __func__
, hpc_ptr
->irq
);
231 debug ("%s - io_start: %x\n", __func__
, hpc_ptr
->u
.isa_ctlr
.io_start
);
232 debug ("%s - io_end: %x\n", __func__
, hpc_ptr
->u
.isa_ctlr
.io_end
);
233 debug ("%s - irq: %x\n", __func__
, hpc_ptr
->irq
);
238 debug ("%s - wpegbbar: %lx\n", __func__
, hpc_ptr
->u
.wpeg_ctlr
.wpegbbar
);
239 debug ("%s - i2c_addr: %x\n", __func__
, hpc_ptr
->u
.wpeg_ctlr
.i2c_addr
);
240 debug ("%s - irq: %x\n", __func__
, hpc_ptr
->irq
);
246 int __init
ibmphp_access_ebda (void)
248 u8 format
, num_ctlrs
, rio_complete
, hs_complete
, ebda_sz
;
249 u16 ebda_seg
, num_entries
, next_offset
, offset
, blk_id
, sub_addr
, re
, rc_id
, re_id
, base
;
256 io_mem
= ioremap ((0x40 << 4) + 0x0e, 2);
259 ebda_seg
= readw (io_mem
);
261 debug ("returned ebda segment: %x\n", ebda_seg
);
263 io_mem
= ioremap(ebda_seg
<<4, 1);
266 ebda_sz
= readb(io_mem
);
268 debug("ebda size: %d(KiB)\n", ebda_sz
);
272 io_mem
= ioremap(ebda_seg
<<4, (ebda_sz
* 1024));
278 offset
= next_offset
;
280 /* Make sure what we read is still in the mapped section */
281 if (WARN(offset
> (ebda_sz
* 1024 - 4),
282 "ibmphp_ebda: next read is beyond ebda_sz\n"))
285 next_offset
= readw (io_mem
+ offset
); /* offset of next blk */
288 if (next_offset
== 0) /* 0 indicate it's last blk */
290 blk_id
= readw (io_mem
+ offset
); /* this blk id */
293 /* check if it is hot swap block or rio block */
294 if (blk_id
!= 0x4853 && blk_id
!= 0x4752)
297 if (blk_id
== 0x4853) {
298 debug ("now enter hot swap block---\n");
299 debug ("hot blk id: %x\n", blk_id
);
300 format
= readb (io_mem
+ offset
);
305 debug ("hot blk format: %x\n", format
);
306 /* hot swap sub blk */
310 re
= readw (io_mem
+ sub_addr
); /* next sub blk */
313 rc_id
= readw (io_mem
+ sub_addr
); /* sub blk id */
318 /* rc sub blk signature */
319 num_ctlrs
= readb (io_mem
+ sub_addr
);
322 hpc_list_ptr
= alloc_ebda_hpc_list ();
327 hpc_list_ptr
->format
= format
;
328 hpc_list_ptr
->num_ctlrs
= num_ctlrs
;
329 hpc_list_ptr
->phys_addr
= sub_addr
; /* offset of RSRC_CONTROLLER blk */
330 debug ("info about hpc descriptor---\n");
331 debug ("hot blk format: %x\n", format
);
332 debug ("num of controller: %x\n", num_ctlrs
);
333 debug ("offset of hpc data structure entries: %x\n ", sub_addr
);
335 sub_addr
= base
+ re
; /* re sub blk */
336 /* FIXME: rc is never used/checked */
337 rc
= readw (io_mem
+ sub_addr
); /* next sub blk */
340 re_id
= readw (io_mem
+ sub_addr
); /* sub blk id */
346 /* signature of re */
347 num_entries
= readw (io_mem
+ sub_addr
);
349 sub_addr
+= 2; /* offset of RSRC_ENTRIES blk */
350 rsrc_list_ptr
= alloc_ebda_rsrc_list ();
351 if (!rsrc_list_ptr
) {
355 rsrc_list_ptr
->format
= format
;
356 rsrc_list_ptr
->num_entries
= num_entries
;
357 rsrc_list_ptr
->phys_addr
= sub_addr
;
359 debug ("info about rsrc descriptor---\n");
360 debug ("format: %x\n", format
);
361 debug ("num of rsrc: %x\n", num_entries
);
362 debug ("offset of rsrc data structure entries: %x\n ", sub_addr
);
366 /* found rio table, blk_id == 0x4752 */
367 debug ("now enter io table ---\n");
368 debug ("rio blk id: %x\n", blk_id
);
370 rio_table_ptr
= kzalloc(sizeof(struct rio_table_hdr
), GFP_KERNEL
);
371 if (!rio_table_ptr
) {
375 rio_table_ptr
->ver_num
= readb (io_mem
+ offset
);
376 rio_table_ptr
->scal_count
= readb (io_mem
+ offset
+ 1);
377 rio_table_ptr
->riodev_count
= readb (io_mem
+ offset
+ 2);
378 rio_table_ptr
->offset
= offset
+3 ;
380 debug("info about rio table hdr ---\n");
381 debug("ver_num: %x\nscal_count: %x\nriodev_count: %x\noffset of rio table: %x\n ",
382 rio_table_ptr
->ver_num
, rio_table_ptr
->scal_count
,
383 rio_table_ptr
->riodev_count
, rio_table_ptr
->offset
);
389 if (!hs_complete
&& !rio_complete
)
393 if (rio_complete
&& rio_table_ptr
->ver_num
== 3) {
394 rc
= ebda_rio_table ();
399 rc
= ebda_rsrc_controller ();
403 rc
= ebda_rsrc_rsrc ();
413 * map info of scalability details and rio details from physical address
415 static int __init
ebda_rio_table (void)
419 struct rio_detail
*rio_detail_ptr
;
421 offset
= rio_table_ptr
->offset
;
422 offset
+= 12 * rio_table_ptr
->scal_count
;
424 // we do concern about rio details
425 for (i
= 0; i
< rio_table_ptr
->riodev_count
; i
++) {
426 rio_detail_ptr
= kzalloc(sizeof(struct rio_detail
), GFP_KERNEL
);
429 rio_detail_ptr
->rio_node_id
= readb (io_mem
+ offset
);
430 rio_detail_ptr
->bbar
= readl (io_mem
+ offset
+ 1);
431 rio_detail_ptr
->rio_type
= readb (io_mem
+ offset
+ 5);
432 rio_detail_ptr
->owner_id
= readb (io_mem
+ offset
+ 6);
433 rio_detail_ptr
->port0_node_connect
= readb (io_mem
+ offset
+ 7);
434 rio_detail_ptr
->port0_port_connect
= readb (io_mem
+ offset
+ 8);
435 rio_detail_ptr
->port1_node_connect
= readb (io_mem
+ offset
+ 9);
436 rio_detail_ptr
->port1_port_connect
= readb (io_mem
+ offset
+ 10);
437 rio_detail_ptr
->first_slot_num
= readb (io_mem
+ offset
+ 11);
438 rio_detail_ptr
->status
= readb (io_mem
+ offset
+ 12);
439 rio_detail_ptr
->wpindex
= readb (io_mem
+ offset
+ 13);
440 rio_detail_ptr
->chassis_num
= readb (io_mem
+ offset
+ 14);
441 // debug ("rio_node_id: %x\nbbar: %x\nrio_type: %x\nowner_id: %x\nport0_node: %x\nport0_port: %x\nport1_node: %x\nport1_port: %x\nfirst_slot_num: %x\nstatus: %x\n", rio_detail_ptr->rio_node_id, rio_detail_ptr->bbar, rio_detail_ptr->rio_type, rio_detail_ptr->owner_id, rio_detail_ptr->port0_node_connect, rio_detail_ptr->port0_port_connect, rio_detail_ptr->port1_node_connect, rio_detail_ptr->port1_port_connect, rio_detail_ptr->first_slot_num, rio_detail_ptr->status);
442 //create linked list of chassis
443 if (rio_detail_ptr
->rio_type
== 4 || rio_detail_ptr
->rio_type
== 5)
444 list_add (&rio_detail_ptr
->rio_detail_list
, &rio_vg_head
);
445 //create linked list of expansion box
446 else if (rio_detail_ptr
->rio_type
== 6 || rio_detail_ptr
->rio_type
== 7)
447 list_add (&rio_detail_ptr
->rio_detail_list
, &rio_lo_head
);
450 kfree (rio_detail_ptr
);
459 * reorganizing linked list of chassis
461 static struct opt_rio
*search_opt_vg (u8 chassis_num
)
464 list_for_each_entry(ptr
, &opt_vg_head
, opt_rio_list
) {
465 if (ptr
->chassis_num
== chassis_num
)
471 static int __init
combine_wpg_for_chassis (void)
473 struct opt_rio
*opt_rio_ptr
= NULL
;
474 struct rio_detail
*rio_detail_ptr
= NULL
;
476 list_for_each_entry(rio_detail_ptr
, &rio_vg_head
, rio_detail_list
) {
477 opt_rio_ptr
= search_opt_vg (rio_detail_ptr
->chassis_num
);
479 opt_rio_ptr
= kzalloc(sizeof(struct opt_rio
), GFP_KERNEL
);
482 opt_rio_ptr
->rio_type
= rio_detail_ptr
->rio_type
;
483 opt_rio_ptr
->chassis_num
= rio_detail_ptr
->chassis_num
;
484 opt_rio_ptr
->first_slot_num
= rio_detail_ptr
->first_slot_num
;
485 opt_rio_ptr
->middle_num
= rio_detail_ptr
->first_slot_num
;
486 list_add (&opt_rio_ptr
->opt_rio_list
, &opt_vg_head
);
488 opt_rio_ptr
->first_slot_num
= min (opt_rio_ptr
->first_slot_num
, rio_detail_ptr
->first_slot_num
);
489 opt_rio_ptr
->middle_num
= max (opt_rio_ptr
->middle_num
, rio_detail_ptr
->first_slot_num
);
497 * reorganizing linked list of expansion box
499 static struct opt_rio_lo
*search_opt_lo (u8 chassis_num
)
501 struct opt_rio_lo
*ptr
;
502 list_for_each_entry(ptr
, &opt_lo_head
, opt_rio_lo_list
) {
503 if (ptr
->chassis_num
== chassis_num
)
509 static int combine_wpg_for_expansion (void)
511 struct opt_rio_lo
*opt_rio_lo_ptr
= NULL
;
512 struct rio_detail
*rio_detail_ptr
= NULL
;
514 list_for_each_entry(rio_detail_ptr
, &rio_lo_head
, rio_detail_list
) {
515 opt_rio_lo_ptr
= search_opt_lo (rio_detail_ptr
->chassis_num
);
516 if (!opt_rio_lo_ptr
) {
517 opt_rio_lo_ptr
= kzalloc(sizeof(struct opt_rio_lo
), GFP_KERNEL
);
520 opt_rio_lo_ptr
->rio_type
= rio_detail_ptr
->rio_type
;
521 opt_rio_lo_ptr
->chassis_num
= rio_detail_ptr
->chassis_num
;
522 opt_rio_lo_ptr
->first_slot_num
= rio_detail_ptr
->first_slot_num
;
523 opt_rio_lo_ptr
->middle_num
= rio_detail_ptr
->first_slot_num
;
524 opt_rio_lo_ptr
->pack_count
= 1;
526 list_add (&opt_rio_lo_ptr
->opt_rio_lo_list
, &opt_lo_head
);
528 opt_rio_lo_ptr
->first_slot_num
= min (opt_rio_lo_ptr
->first_slot_num
, rio_detail_ptr
->first_slot_num
);
529 opt_rio_lo_ptr
->middle_num
= max (opt_rio_lo_ptr
->middle_num
, rio_detail_ptr
->first_slot_num
);
530 opt_rio_lo_ptr
->pack_count
= 2;
537 /* Since we don't know the max slot number per each chassis, hence go
538 * through the list of all chassis to find out the range
539 * Arguments: slot_num, 1st slot number of the chassis we think we are on,
540 * var (0 = chassis, 1 = expansion box)
542 static int first_slot_num (u8 slot_num
, u8 first_slot
, u8 var
)
544 struct opt_rio
*opt_vg_ptr
= NULL
;
545 struct opt_rio_lo
*opt_lo_ptr
= NULL
;
549 list_for_each_entry(opt_vg_ptr
, &opt_vg_head
, opt_rio_list
) {
550 if ((first_slot
< opt_vg_ptr
->first_slot_num
) && (slot_num
>= opt_vg_ptr
->first_slot_num
)) {
556 list_for_each_entry(opt_lo_ptr
, &opt_lo_head
, opt_rio_lo_list
) {
557 if ((first_slot
< opt_lo_ptr
->first_slot_num
) && (slot_num
>= opt_lo_ptr
->first_slot_num
)) {
566 static struct opt_rio_lo
* find_rxe_num (u8 slot_num
)
568 struct opt_rio_lo
*opt_lo_ptr
;
570 list_for_each_entry(opt_lo_ptr
, &opt_lo_head
, opt_rio_lo_list
) {
571 //check to see if this slot_num belongs to expansion box
572 if ((slot_num
>= opt_lo_ptr
->first_slot_num
) && (!first_slot_num (slot_num
, opt_lo_ptr
->first_slot_num
, 1)))
578 static struct opt_rio
* find_chassis_num (u8 slot_num
)
580 struct opt_rio
*opt_vg_ptr
;
582 list_for_each_entry(opt_vg_ptr
, &opt_vg_head
, opt_rio_list
) {
583 //check to see if this slot_num belongs to chassis
584 if ((slot_num
>= opt_vg_ptr
->first_slot_num
) && (!first_slot_num (slot_num
, opt_vg_ptr
->first_slot_num
, 0)))
590 /* This routine will find out how many slots are in the chassis, so that
591 * the slot numbers for rxe100 would start from 1, and not from 7, or 6 etc
593 static u8
calculate_first_slot (u8 slot_num
)
596 struct slot
* slot_cur
;
598 list_for_each_entry(slot_cur
, &ibmphp_slot_head
, ibm_slot_list
) {
599 if (slot_cur
->ctrl
) {
600 if ((slot_cur
->ctrl
->ctlr_type
!= 4) && (slot_cur
->ctrl
->ending_slot_num
> first_slot
) && (slot_num
> slot_cur
->ctrl
->ending_slot_num
))
601 first_slot
= slot_cur
->ctrl
->ending_slot_num
;
604 return first_slot
+ 1;
608 #define SLOT_NAME_SIZE 30
610 static char *create_file_name (struct slot
* slot_cur
)
612 struct opt_rio
*opt_vg_ptr
= NULL
;
613 struct opt_rio_lo
*opt_lo_ptr
= NULL
;
614 static char str
[SLOT_NAME_SIZE
];
615 int which
= 0; /* rxe = 1, chassis = 0 */
616 u8 number
= 1; /* either chassis or rxe # */
622 err ("Structure passed is empty\n");
626 slot_num
= slot_cur
->number
;
628 memset (str
, 0, sizeof(str
));
631 if (rio_table_ptr
->ver_num
== 3) {
632 opt_vg_ptr
= find_chassis_num (slot_num
);
633 opt_lo_ptr
= find_rxe_num (slot_num
);
638 if ((slot_num
- opt_vg_ptr
->first_slot_num
) > (slot_num
- opt_lo_ptr
->first_slot_num
)) {
639 number
= opt_lo_ptr
->chassis_num
;
640 first_slot
= opt_lo_ptr
->first_slot_num
;
641 which
= 1; /* it is RXE */
643 first_slot
= opt_vg_ptr
->first_slot_num
;
644 number
= opt_vg_ptr
->chassis_num
;
648 first_slot
= opt_vg_ptr
->first_slot_num
;
649 number
= opt_vg_ptr
->chassis_num
;
653 } else if (opt_lo_ptr
) {
654 number
= opt_lo_ptr
->chassis_num
;
655 first_slot
= opt_lo_ptr
->first_slot_num
;
658 } else if (rio_table_ptr
) {
659 if (rio_table_ptr
->ver_num
== 3) {
660 /* if both NULL and we DO have correct RIO table in BIOS */
665 if (slot_cur
->ctrl
->ctlr_type
== 4) {
666 first_slot
= calculate_first_slot (slot_num
);
673 sprintf(str
, "%s%dslot%d",
674 which
== 0 ? "chassis" : "rxe",
675 number
, slot_num
- first_slot
+ 1);
679 static int fillslotinfo(struct hotplug_slot
*hotplug_slot
)
684 if (!hotplug_slot
|| !hotplug_slot
->private)
687 slot
= hotplug_slot
->private;
688 rc
= ibmphp_hpc_readslot(slot
, READ_ALLSTAT
, NULL
);
692 // power - enabled:1 not:0
693 hotplug_slot
->info
->power_status
= SLOT_POWER(slot
->status
);
695 // attention - off:0, on:1, blinking:2
696 hotplug_slot
->info
->attention_status
= SLOT_ATTN(slot
->status
, slot
->ext_status
);
698 // latch - open:1 closed:0
699 hotplug_slot
->info
->latch_status
= SLOT_LATCH(slot
->status
);
701 // pci board - present:1 not:0
702 if (SLOT_PRESENT (slot
->status
))
703 hotplug_slot
->info
->adapter_status
= 1;
705 hotplug_slot
->info
->adapter_status
= 0;
707 if (slot->bus_on->supported_bus_mode
708 && (slot->bus_on->supported_speed == BUS_SPEED_66))
709 hotplug_slot->info->max_bus_speed_status = BUS_SPEED_66PCIX;
711 hotplug_slot->info->max_bus_speed_status = slot->bus_on->supported_speed;
717 static void release_slot(struct hotplug_slot
*hotplug_slot
)
721 if (!hotplug_slot
|| !hotplug_slot
->private)
724 slot
= hotplug_slot
->private;
725 kfree(slot
->hotplug_slot
->info
);
726 kfree(slot
->hotplug_slot
);
730 /* we don't want to actually remove the resources, since free_resources will do just that */
731 ibmphp_unconfigure_card(&slot
, -1);
736 static struct pci_driver ibmphp_driver
;
739 * map info (ctlr-id, slot count, slot#.. bus count, bus#, ctlr type...) of
740 * each hpc from physical address to a list of hot plug controllers based on
743 static int __init
ebda_rsrc_controller (void)
745 u16 addr
, addr_slot
, addr_bus
;
746 u8 ctlr_id
, temp
, bus_index
;
748 u16 slot_num
, bus_num
, index
;
749 struct hotplug_slot
*hp_slot_ptr
;
750 struct controller
*hpc_ptr
;
751 struct ebda_hpc_bus
*bus_ptr
;
752 struct ebda_hpc_slot
*slot_ptr
;
753 struct bus_info
*bus_info_ptr1
, *bus_info_ptr2
;
755 struct slot
*tmp_slot
;
756 char name
[SLOT_NAME_SIZE
];
758 addr
= hpc_list_ptr
->phys_addr
;
759 for (ctlr
= 0; ctlr
< hpc_list_ptr
->num_ctlrs
; ctlr
++) {
761 ctlr_id
= readb (io_mem
+ addr
);
763 slot_num
= readb (io_mem
+ addr
);
766 addr_slot
= addr
; /* offset of slot structure */
767 addr
+= (slot_num
* 4);
769 bus_num
= readb (io_mem
+ addr
);
772 addr_bus
= addr
; /* offset of bus */
773 addr
+= (bus_num
* 9); /* offset of ctlr_type */
774 temp
= readb (io_mem
+ addr
);
777 /* init hpc structure */
778 hpc_ptr
= alloc_ebda_hpc (slot_num
, bus_num
);
783 hpc_ptr
->ctlr_id
= ctlr_id
;
784 hpc_ptr
->ctlr_relative_id
= ctlr
;
785 hpc_ptr
->slot_count
= slot_num
;
786 hpc_ptr
->bus_count
= bus_num
;
787 debug ("now enter ctlr data structure ---\n");
788 debug ("ctlr id: %x\n", ctlr_id
);
789 debug ("ctlr_relative_id: %x\n", hpc_ptr
->ctlr_relative_id
);
790 debug ("count of slots controlled by this ctlr: %x\n", slot_num
);
791 debug ("count of buses controlled by this ctlr: %x\n", bus_num
);
793 /* init slot structure, fetch slot, bus, cap... */
794 slot_ptr
= hpc_ptr
->slots
;
795 for (slot
= 0; slot
< slot_num
; slot
++) {
796 slot_ptr
->slot_num
= readb (io_mem
+ addr_slot
);
797 slot_ptr
->slot_bus_num
= readb (io_mem
+ addr_slot
+ slot_num
);
798 slot_ptr
->ctl_index
= readb (io_mem
+ addr_slot
+ 2*slot_num
);
799 slot_ptr
->slot_cap
= readb (io_mem
+ addr_slot
+ 3*slot_num
);
801 // create bus_info lined list --- if only one slot per bus: slot_min = slot_max
803 bus_info_ptr2
= ibmphp_find_same_bus_num (slot_ptr
->slot_bus_num
);
804 if (!bus_info_ptr2
) {
805 bus_info_ptr1
= kzalloc(sizeof(struct bus_info
), GFP_KERNEL
);
806 if (!bus_info_ptr1
) {
808 goto error_no_hp_slot
;
810 bus_info_ptr1
->slot_min
= slot_ptr
->slot_num
;
811 bus_info_ptr1
->slot_max
= slot_ptr
->slot_num
;
812 bus_info_ptr1
->slot_count
+= 1;
813 bus_info_ptr1
->busno
= slot_ptr
->slot_bus_num
;
814 bus_info_ptr1
->index
= bus_index
++;
815 bus_info_ptr1
->current_speed
= 0xff;
816 bus_info_ptr1
->current_bus_mode
= 0xff;
818 bus_info_ptr1
->controller_id
= hpc_ptr
->ctlr_id
;
820 list_add_tail (&bus_info_ptr1
->bus_info_list
, &bus_info_head
);
823 bus_info_ptr2
->slot_min
= min (bus_info_ptr2
->slot_min
, slot_ptr
->slot_num
);
824 bus_info_ptr2
->slot_max
= max (bus_info_ptr2
->slot_max
, slot_ptr
->slot_num
);
825 bus_info_ptr2
->slot_count
+= 1;
829 // end of creating the bus_info linked list
835 /* init bus structure */
836 bus_ptr
= hpc_ptr
->buses
;
837 for (bus
= 0; bus
< bus_num
; bus
++) {
838 bus_ptr
->bus_num
= readb (io_mem
+ addr_bus
+ bus
);
839 bus_ptr
->slots_at_33_conv
= readb (io_mem
+ addr_bus
+ bus_num
+ 8 * bus
);
840 bus_ptr
->slots_at_66_conv
= readb (io_mem
+ addr_bus
+ bus_num
+ 8 * bus
+ 1);
842 bus_ptr
->slots_at_66_pcix
= readb (io_mem
+ addr_bus
+ bus_num
+ 8 * bus
+ 2);
844 bus_ptr
->slots_at_100_pcix
= readb (io_mem
+ addr_bus
+ bus_num
+ 8 * bus
+ 3);
846 bus_ptr
->slots_at_133_pcix
= readb (io_mem
+ addr_bus
+ bus_num
+ 8 * bus
+ 4);
848 bus_info_ptr2
= ibmphp_find_same_bus_num (bus_ptr
->bus_num
);
850 bus_info_ptr2
->slots_at_33_conv
= bus_ptr
->slots_at_33_conv
;
851 bus_info_ptr2
->slots_at_66_conv
= bus_ptr
->slots_at_66_conv
;
852 bus_info_ptr2
->slots_at_66_pcix
= bus_ptr
->slots_at_66_pcix
;
853 bus_info_ptr2
->slots_at_100_pcix
= bus_ptr
->slots_at_100_pcix
;
854 bus_info_ptr2
->slots_at_133_pcix
= bus_ptr
->slots_at_133_pcix
;
859 hpc_ptr
->ctlr_type
= temp
;
861 switch (hpc_ptr
->ctlr_type
) {
863 hpc_ptr
->u
.pci_ctlr
.bus
= readb (io_mem
+ addr
);
864 hpc_ptr
->u
.pci_ctlr
.dev_fun
= readb (io_mem
+ addr
+ 1);
865 hpc_ptr
->irq
= readb (io_mem
+ addr
+ 2);
867 debug ("ctrl bus = %x, ctlr devfun = %x, irq = %x\n",
868 hpc_ptr
->u
.pci_ctlr
.bus
,
869 hpc_ptr
->u
.pci_ctlr
.dev_fun
, hpc_ptr
->irq
);
873 hpc_ptr
->u
.isa_ctlr
.io_start
= readw (io_mem
+ addr
);
874 hpc_ptr
->u
.isa_ctlr
.io_end
= readw (io_mem
+ addr
+ 2);
875 if (!request_region (hpc_ptr
->u
.isa_ctlr
.io_start
,
876 (hpc_ptr
->u
.isa_ctlr
.io_end
- hpc_ptr
->u
.isa_ctlr
.io_start
+ 1),
879 goto error_no_hp_slot
;
881 hpc_ptr
->irq
= readb (io_mem
+ addr
+ 4);
887 hpc_ptr
->u
.wpeg_ctlr
.wpegbbar
= readl (io_mem
+ addr
);
888 hpc_ptr
->u
.wpeg_ctlr
.i2c_addr
= readb (io_mem
+ addr
+ 4);
889 hpc_ptr
->irq
= readb (io_mem
+ addr
+ 5);
894 goto error_no_hp_slot
;
897 //reorganize chassis' linked list
898 combine_wpg_for_chassis ();
899 combine_wpg_for_expansion ();
900 hpc_ptr
->revision
= 0xff;
901 hpc_ptr
->options
= 0xff;
902 hpc_ptr
->starting_slot_num
= hpc_ptr
->slots
[0].slot_num
;
903 hpc_ptr
->ending_slot_num
= hpc_ptr
->slots
[slot_num
-1].slot_num
;
905 // register slots with hpc core as well as create linked list of ibm slot
906 for (index
= 0; index
< hpc_ptr
->slot_count
; index
++) {
908 hp_slot_ptr
= kzalloc(sizeof(*hp_slot_ptr
), GFP_KERNEL
);
911 goto error_no_hp_slot
;
914 hp_slot_ptr
->info
= kzalloc(sizeof(struct hotplug_slot_info
), GFP_KERNEL
);
915 if (!hp_slot_ptr
->info
) {
917 goto error_no_hp_info
;
920 tmp_slot
= kzalloc(sizeof(*tmp_slot
), GFP_KERNEL
);
928 tmp_slot
->capabilities
= hpc_ptr
->slots
[index
].slot_cap
;
929 if ((hpc_ptr
->slots
[index
].slot_cap
& EBDA_SLOT_133_MAX
) == EBDA_SLOT_133_MAX
)
930 tmp_slot
->supported_speed
= 3;
931 else if ((hpc_ptr
->slots
[index
].slot_cap
& EBDA_SLOT_100_MAX
) == EBDA_SLOT_100_MAX
)
932 tmp_slot
->supported_speed
= 2;
933 else if ((hpc_ptr
->slots
[index
].slot_cap
& EBDA_SLOT_66_MAX
) == EBDA_SLOT_66_MAX
)
934 tmp_slot
->supported_speed
= 1;
936 if ((hpc_ptr
->slots
[index
].slot_cap
& EBDA_SLOT_PCIX_CAP
) == EBDA_SLOT_PCIX_CAP
)
937 tmp_slot
->supported_bus_mode
= 1;
939 tmp_slot
->supported_bus_mode
= 0;
942 tmp_slot
->bus
= hpc_ptr
->slots
[index
].slot_bus_num
;
944 bus_info_ptr1
= ibmphp_find_same_bus_num (hpc_ptr
->slots
[index
].slot_bus_num
);
945 if (!bus_info_ptr1
) {
950 tmp_slot
->bus_on
= bus_info_ptr1
;
951 bus_info_ptr1
= NULL
;
952 tmp_slot
->ctrl
= hpc_ptr
;
954 tmp_slot
->ctlr_index
= hpc_ptr
->slots
[index
].ctl_index
;
955 tmp_slot
->number
= hpc_ptr
->slots
[index
].slot_num
;
956 tmp_slot
->hotplug_slot
= hp_slot_ptr
;
958 hp_slot_ptr
->private = tmp_slot
;
959 hp_slot_ptr
->release
= release_slot
;
961 rc
= fillslotinfo(hp_slot_ptr
);
965 rc
= ibmphp_init_devno ((struct slot
**) &hp_slot_ptr
->private);
968 hp_slot_ptr
->ops
= &ibmphp_hotplug_slot_ops
;
970 // end of registering ibm slot with hotplug core
972 list_add (& ((struct slot
*)(hp_slot_ptr
->private))->ibm_slot_list
, &ibmphp_slot_head
);
976 list_add (&hpc_ptr
->ebda_hpc_list
, &ebda_hpc_head
);
980 list_for_each_entry(tmp_slot
, &ibmphp_slot_head
, ibm_slot_list
) {
981 snprintf(name
, SLOT_NAME_SIZE
, "%s", create_file_name(tmp_slot
));
982 pci_hp_register(tmp_slot
->hotplug_slot
,
983 pci_find_bus(0, tmp_slot
->bus
), tmp_slot
->device
, name
);
991 kfree (hp_slot_ptr
->private);
993 kfree (hp_slot_ptr
->info
);
997 free_ebda_hpc (hpc_ptr
);
1004 * map info (bus, devfun, start addr, end addr..) of i/o, memory,
1005 * pfm from the physical addr to a list of resource.
1007 static int __init
ebda_rsrc_rsrc (void)
1012 struct ebda_pci_rsrc
*rsrc_ptr
;
1014 addr
= rsrc_list_ptr
->phys_addr
;
1015 debug ("now entering rsrc land\n");
1016 debug ("offset of rsrc: %x\n", rsrc_list_ptr
->phys_addr
);
1018 for (rsrc
= 0; rsrc
< rsrc_list_ptr
->num_entries
; rsrc
++) {
1019 type
= readb (io_mem
+ addr
);
1022 rsrc_type
= type
& EBDA_RSRC_TYPE_MASK
;
1024 if (rsrc_type
== EBDA_IO_RSRC_TYPE
) {
1025 rsrc_ptr
= alloc_ebda_pci_rsrc ();
1030 rsrc_ptr
->rsrc_type
= type
;
1032 rsrc_ptr
->bus_num
= readb (io_mem
+ addr
);
1033 rsrc_ptr
->dev_fun
= readb (io_mem
+ addr
+ 1);
1034 rsrc_ptr
->start_addr
= readw (io_mem
+ addr
+ 2);
1035 rsrc_ptr
->end_addr
= readw (io_mem
+ addr
+ 4);
1038 debug ("rsrc from io type ----\n");
1039 debug ("rsrc type: %x bus#: %x dev_func: %x start addr: %x end addr: %x\n",
1040 rsrc_ptr
->rsrc_type
, rsrc_ptr
->bus_num
, rsrc_ptr
->dev_fun
, rsrc_ptr
->start_addr
, rsrc_ptr
->end_addr
);
1042 list_add (&rsrc_ptr
->ebda_pci_rsrc_list
, &ibmphp_ebda_pci_rsrc_head
);
1045 if (rsrc_type
== EBDA_MEM_RSRC_TYPE
|| rsrc_type
== EBDA_PFM_RSRC_TYPE
) {
1046 rsrc_ptr
= alloc_ebda_pci_rsrc ();
1051 rsrc_ptr
->rsrc_type
= type
;
1053 rsrc_ptr
->bus_num
= readb (io_mem
+ addr
);
1054 rsrc_ptr
->dev_fun
= readb (io_mem
+ addr
+ 1);
1055 rsrc_ptr
->start_addr
= readl (io_mem
+ addr
+ 2);
1056 rsrc_ptr
->end_addr
= readl (io_mem
+ addr
+ 6);
1059 debug ("rsrc from mem or pfm ---\n");
1060 debug ("rsrc type: %x bus#: %x dev_func: %x start addr: %x end addr: %x\n",
1061 rsrc_ptr
->rsrc_type
, rsrc_ptr
->bus_num
, rsrc_ptr
->dev_fun
, rsrc_ptr
->start_addr
, rsrc_ptr
->end_addr
);
1063 list_add (&rsrc_ptr
->ebda_pci_rsrc_list
, &ibmphp_ebda_pci_rsrc_head
);
1066 kfree (rsrc_list_ptr
);
1067 rsrc_list_ptr
= NULL
;
1068 print_ebda_pci_rsrc ();
1072 u16
ibmphp_get_total_controllers (void)
1074 return hpc_list_ptr
->num_ctlrs
;
1077 struct slot
*ibmphp_get_slot_from_physical_num (u8 physical_num
)
1081 list_for_each_entry(slot
, &ibmphp_slot_head
, ibm_slot_list
) {
1082 if (slot
->number
== physical_num
)
1089 * - the smallest slot number
1090 * - the largest slot number
1091 * - the total number of the slots based on each bus
1092 * (if only one slot per bus slot_min = slot_max )
1094 struct bus_info
*ibmphp_find_same_bus_num (u32 num
)
1096 struct bus_info
*ptr
;
1098 list_for_each_entry(ptr
, &bus_info_head
, bus_info_list
) {
1099 if (ptr
->busno
== num
)
1105 /* Finding relative bus number, in order to map corresponding
1108 int ibmphp_get_bus_index (u8 num
)
1110 struct bus_info
*ptr
;
1112 list_for_each_entry(ptr
, &bus_info_head
, bus_info_list
) {
1113 if (ptr
->busno
== num
)
1119 void ibmphp_free_bus_info_queue (void)
1121 struct bus_info
*bus_info
;
1122 struct list_head
*list
;
1123 struct list_head
*next
;
1125 list_for_each_safe (list
, next
, &bus_info_head
) {
1126 bus_info
= list_entry (list
, struct bus_info
, bus_info_list
);
1131 void ibmphp_free_ebda_hpc_queue (void)
1133 struct controller
*controller
= NULL
;
1134 struct list_head
*list
;
1135 struct list_head
*next
;
1138 list_for_each_safe (list
, next
, &ebda_hpc_head
) {
1139 controller
= list_entry (list
, struct controller
, ebda_hpc_list
);
1140 if (controller
->ctlr_type
== 0)
1141 release_region (controller
->u
.isa_ctlr
.io_start
, (controller
->u
.isa_ctlr
.io_end
- controller
->u
.isa_ctlr
.io_start
+ 1));
1142 else if ((controller
->ctlr_type
== 1) && (!pci_flag
)) {
1144 pci_unregister_driver (&ibmphp_driver
);
1146 free_ebda_hpc (controller
);
1150 void ibmphp_free_ebda_pci_rsrc_queue (void)
1152 struct ebda_pci_rsrc
*resource
;
1153 struct list_head
*list
;
1154 struct list_head
*next
;
1156 list_for_each_safe (list
, next
, &ibmphp_ebda_pci_rsrc_head
) {
1157 resource
= list_entry (list
, struct ebda_pci_rsrc
, ebda_pci_rsrc_list
);
1163 static struct pci_device_id id_table
[] = {
1165 .vendor
= PCI_VENDOR_ID_IBM
,
1166 .device
= HPC_DEVICE_ID
,
1167 .subvendor
= PCI_VENDOR_ID_IBM
,
1168 .subdevice
= HPC_SUBSYSTEM_ID
,
1169 .class = ((PCI_CLASS_SYSTEM_PCI_HOTPLUG
<< 8) | 0x00),
1173 MODULE_DEVICE_TABLE(pci
, id_table
);
1175 static int ibmphp_probe (struct pci_dev
*, const struct pci_device_id
*);
1176 static struct pci_driver ibmphp_driver
= {
1178 .id_table
= id_table
,
1179 .probe
= ibmphp_probe
,
1182 int ibmphp_register_pci (void)
1184 struct controller
*ctrl
;
1187 list_for_each_entry(ctrl
, &ebda_hpc_head
, ebda_hpc_list
) {
1188 if (ctrl
->ctlr_type
== 1) {
1189 rc
= pci_register_driver(&ibmphp_driver
);
1195 static int ibmphp_probe (struct pci_dev
* dev
, const struct pci_device_id
*ids
)
1197 struct controller
*ctrl
;
1199 debug ("inside ibmphp_probe\n");
1201 list_for_each_entry(ctrl
, &ebda_hpc_head
, ebda_hpc_list
) {
1202 if (ctrl
->ctlr_type
== 1) {
1203 if ((dev
->devfn
== ctrl
->u
.pci_ctlr
.dev_fun
) && (dev
->bus
->number
== ctrl
->u
.pci_ctlr
.bus
)) {
1204 ctrl
->ctrl_dev
= dev
;
1205 debug ("found device!!!\n");
1206 debug ("dev->device = %x, dev->subsystem_device = %x\n", dev
->device
, dev
->subsystem_device
);