blob: 7d3bf31d224d90956f1e3c5d908557585dffc7c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IBM Hot Plug Controller Driver
3 *
4 * Written By: Tong Yu, IBM Corporation
5 *
6 * Copyright (C) 2001,2003 Greg Kroah-Hartman (greg@kroah.com)
7 * Copyright (C) 2001-2003 IBM Corp.
8 *
9 * All rights reserved.
10 *
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.
15 *
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
20 * details.
21 *
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.
25 *
26 * Send feedback to <gregkh@us.ibm.com>
27 *
28 */
29
30#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/errno.h>
32#include <linux/mm.h>
33#include <linux/slab.h>
34#include <linux/pci.h>
35#include <linux/list.h>
36#include <linux/init.h>
37#include "ibmphp.h"
38
39/*
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.
44 *
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...)
49 */
50
51/* Global lists */
52LIST_HEAD (ibmphp_ebda_pci_rsrc_head);
53LIST_HEAD (ibmphp_slot_head);
54
55/* Local variables */
56static struct ebda_hpc_list *hpc_list_ptr;
57static struct ebda_rsrc_list *rsrc_list_ptr;
58static struct rio_table_hdr *rio_table_ptr = NULL;
59static LIST_HEAD (ebda_hpc_head);
60static LIST_HEAD (bus_info_head);
61static LIST_HEAD (rio_vg_head);
62static LIST_HEAD (rio_lo_head);
63static LIST_HEAD (opt_vg_head);
64static LIST_HEAD (opt_lo_head);
65static void __iomem *io_mem;
66
67/* Local functions */
68static int ebda_rsrc_controller (void);
69static int ebda_rsrc_rsrc (void);
70static int ebda_rio_table (void);
71
72static struct ebda_hpc_list * __init alloc_ebda_hpc_list (void)
73{
Eric Sesterhennf5afe802006-02-28 15:34:49 +010074 return kzalloc(sizeof(struct ebda_hpc_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77static struct controller *alloc_ebda_hpc (u32 slot_count, u32 bus_count)
78{
79 struct controller *controller;
80 struct ebda_hpc_slot *slots;
81 struct ebda_hpc_bus *buses;
82
Eric Sesterhennf5afe802006-02-28 15:34:49 +010083 controller = kzalloc(sizeof(struct controller), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!controller)
85 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Eric Sesterhennf5afe802006-02-28 15:34:49 +010087 slots = kcalloc(slot_count, sizeof(struct ebda_hpc_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (!slots)
89 goto error_contr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 controller->slots = slots;
91
Eric Sesterhennf5afe802006-02-28 15:34:49 +010092 buses = kcalloc(bus_count, sizeof(struct ebda_hpc_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if (!buses)
94 goto error_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 controller->buses = buses;
96
97 return controller;
98error_slots:
99 kfree(controller->slots);
100error_contr:
101 kfree(controller);
102error:
103 return NULL;
104}
105
106static void free_ebda_hpc (struct controller *controller)
107{
108 kfree (controller->slots);
109 kfree (controller->buses);
110 kfree (controller);
111}
112
113static struct ebda_rsrc_list * __init alloc_ebda_rsrc_list (void)
114{
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100115 return kzalloc(sizeof(struct ebda_rsrc_list), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118static struct ebda_pci_rsrc *alloc_ebda_pci_rsrc (void)
119{
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100120 return kzalloc(sizeof(struct ebda_pci_rsrc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123static void __init print_bus_info (void)
124{
125 struct bus_info *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700127 list_for_each_entry(ptr, &bus_info_head, bus_info_list) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800128 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800135 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 }
142}
143
144static void print_lo_info (void)
145{
146 struct rio_detail *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 debug ("print_lo_info ----\n");
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700148 list_for_each_entry(ptr, &rio_lo_head, rio_detail_list) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800149 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 }
157}
158
159static void print_vg_info (void)
160{
161 struct rio_detail *ptr;
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800162 debug ("%s ---\n", __func__);
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700163 list_for_each_entry(ptr, &rio_vg_head, rio_detail_list) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800164 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 }
172}
173
174static void __init print_ebda_pci_rsrc (void)
175{
176 struct ebda_pci_rsrc *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700178 list_for_each_entry(ptr, &ibmphp_ebda_pci_rsrc_head, ebda_pci_rsrc_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 debug ("%s - rsrc type: %x bus#: %x dev_func: %x start addr: %x end addr: %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800180 __func__, ptr->rsrc_type ,ptr->bus_num, ptr->dev_fun,ptr->start_addr, ptr->end_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182}
183
184static void __init print_ibm_slot (void)
185{
186 struct slot *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700188 list_for_each_entry(ptr, &ibmphp_slot_head, ibm_slot_list) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800189 debug ("%s - slot_number: %x\n", __func__, ptr->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191}
192
193static void __init print_opt_vg (void)
194{
195 struct opt_rio *ptr;
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800196 debug ("%s ---\n", __func__);
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700197 list_for_each_entry(ptr, &opt_vg_head, opt_rio_list) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800198 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203}
204
205static void __init print_ebda_hpc (void)
206{
207 struct controller *hpc_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 u16 index;
209
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700210 list_for_each_entry(hpc_ptr, &ebda_hpc_head, ebda_hpc_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 for (index = 0; index < hpc_ptr->slot_count; index++) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800212 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217
218 for (index = 0; index < hpc_ptr->bus_count; index++) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800219 debug ("%s - bus# of each bus controlled by this ctlr: %x\n", __func__, hpc_ptr->buses[index].bus_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800222 debug ("%s - type of hpc: %x\n", __func__, hpc_ptr->ctlr_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 switch (hpc_ptr->ctlr_type) {
224 case 1:
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800225 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 break;
229
230 case 0:
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800231 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
235
236 case 2:
237 case 4:
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800238 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 break;
242 }
243 }
244}
245
246int __init ibmphp_access_ebda (void)
247{
Chandrub0fc8892010-01-11 11:49:21 +0530248 u8 format, num_ctlrs, rio_complete, hs_complete, ebda_sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 u16 ebda_seg, num_entries, next_offset, offset, blk_id, sub_addr, re, rc_id, re_id, base;
250 int rc = 0;
251
252
253 rio_complete = 0;
254 hs_complete = 0;
255
256 io_mem = ioremap ((0x40 << 4) + 0x0e, 2);
257 if (!io_mem )
258 return -ENOMEM;
259 ebda_seg = readw (io_mem);
260 iounmap (io_mem);
261 debug ("returned ebda segment: %x\n", ebda_seg);
262
Chandrub0fc8892010-01-11 11:49:21 +0530263 io_mem = ioremap(ebda_seg<<4, 1);
264 ebda_sz = readb(io_mem);
265 iounmap(io_mem);
266 debug("ebda size: %d(KiB)\n", ebda_sz);
267 if (ebda_sz == 0)
268 return -ENOMEM;
269
270 io_mem = ioremap(ebda_seg<<4, (ebda_sz * 1024));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (!io_mem )
272 return -ENOMEM;
273 next_offset = 0x180;
274
275 for (;;) {
276 offset = next_offset;
277 next_offset = readw (io_mem + offset); /* offset of next blk */
278
279 offset += 2;
280 if (next_offset == 0) /* 0 indicate it's last blk */
281 break;
282 blk_id = readw (io_mem + offset); /* this blk id */
283
284 offset += 2;
285 /* check if it is hot swap block or rio block */
286 if (blk_id != 0x4853 && blk_id != 0x4752)
287 continue;
288 /* found hs table */
289 if (blk_id == 0x4853) {
290 debug ("now enter hot swap block---\n");
291 debug ("hot blk id: %x\n", blk_id);
292 format = readb (io_mem + offset);
293
294 offset += 1;
295 if (format != 4)
296 goto error_nodev;
297 debug ("hot blk format: %x\n", format);
298 /* hot swap sub blk */
299 base = offset;
300
301 sub_addr = base;
302 re = readw (io_mem + sub_addr); /* next sub blk */
303
304 sub_addr += 2;
305 rc_id = readw (io_mem + sub_addr); /* sub blk id */
306
307 sub_addr += 2;
308 if (rc_id != 0x5243)
309 goto error_nodev;
310 /* rc sub blk signature */
311 num_ctlrs = readb (io_mem + sub_addr);
312
313 sub_addr += 1;
314 hpc_list_ptr = alloc_ebda_hpc_list ();
315 if (!hpc_list_ptr) {
316 rc = -ENOMEM;
317 goto out;
318 }
319 hpc_list_ptr->format = format;
320 hpc_list_ptr->num_ctlrs = num_ctlrs;
321 hpc_list_ptr->phys_addr = sub_addr; /* offset of RSRC_CONTROLLER blk */
322 debug ("info about hpc descriptor---\n");
323 debug ("hot blk format: %x\n", format);
324 debug ("num of controller: %x\n", num_ctlrs);
325 debug ("offset of hpc data structure enteries: %x\n ", sub_addr);
326
327 sub_addr = base + re; /* re sub blk */
328 /* FIXME: rc is never used/checked */
329 rc = readw (io_mem + sub_addr); /* next sub blk */
330
331 sub_addr += 2;
332 re_id = readw (io_mem + sub_addr); /* sub blk id */
333
334 sub_addr += 2;
335 if (re_id != 0x5245)
336 goto error_nodev;
337
338 /* signature of re */
339 num_entries = readw (io_mem + sub_addr);
340
341 sub_addr += 2; /* offset of RSRC_ENTRIES blk */
342 rsrc_list_ptr = alloc_ebda_rsrc_list ();
343 if (!rsrc_list_ptr ) {
344 rc = -ENOMEM;
345 goto out;
346 }
347 rsrc_list_ptr->format = format;
348 rsrc_list_ptr->num_entries = num_entries;
349 rsrc_list_ptr->phys_addr = sub_addr;
350
351 debug ("info about rsrc descriptor---\n");
352 debug ("format: %x\n", format);
353 debug ("num of rsrc: %x\n", num_entries);
354 debug ("offset of rsrc data structure enteries: %x\n ", sub_addr);
355
356 hs_complete = 1;
357 } else {
358 /* found rio table, blk_id == 0x4752 */
359 debug ("now enter io table ---\n");
360 debug ("rio blk id: %x\n", blk_id);
361
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100362 rio_table_ptr = kzalloc(sizeof(struct rio_table_hdr), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (!rio_table_ptr)
364 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 rio_table_ptr->ver_num = readb (io_mem + offset);
366 rio_table_ptr->scal_count = readb (io_mem + offset + 1);
367 rio_table_ptr->riodev_count = readb (io_mem + offset + 2);
368 rio_table_ptr->offset = offset +3 ;
369
370 debug("info about rio table hdr ---\n");
371 debug("ver_num: %x\nscal_count: %x\nriodev_count: %x\noffset of rio table: %x\n ",
372 rio_table_ptr->ver_num, rio_table_ptr->scal_count,
373 rio_table_ptr->riodev_count, rio_table_ptr->offset);
374
375 rio_complete = 1;
376 }
377 }
378
379 if (!hs_complete && !rio_complete)
380 goto error_nodev;
381
382 if (rio_table_ptr) {
383 if (rio_complete && rio_table_ptr->ver_num == 3) {
384 rc = ebda_rio_table ();
385 if (rc)
386 goto out;
387 }
388 }
389 rc = ebda_rsrc_controller ();
390 if (rc)
391 goto out;
392
393 rc = ebda_rsrc_rsrc ();
394 goto out;
395error_nodev:
396 rc = -ENODEV;
397out:
398 iounmap (io_mem);
399 return rc;
400}
401
402/*
403 * map info of scalability details and rio details from physical address
404 */
405static int __init ebda_rio_table (void)
406{
407 u16 offset;
408 u8 i;
409 struct rio_detail *rio_detail_ptr;
410
411 offset = rio_table_ptr->offset;
412 offset += 12 * rio_table_ptr->scal_count;
413
414 // we do concern about rio details
415 for (i = 0; i < rio_table_ptr->riodev_count; i++) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100416 rio_detail_ptr = kzalloc(sizeof(struct rio_detail), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (!rio_detail_ptr)
418 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 rio_detail_ptr->rio_node_id = readb (io_mem + offset);
420 rio_detail_ptr->bbar = readl (io_mem + offset + 1);
421 rio_detail_ptr->rio_type = readb (io_mem + offset + 5);
422 rio_detail_ptr->owner_id = readb (io_mem + offset + 6);
423 rio_detail_ptr->port0_node_connect = readb (io_mem + offset + 7);
424 rio_detail_ptr->port0_port_connect = readb (io_mem + offset + 8);
425 rio_detail_ptr->port1_node_connect = readb (io_mem + offset + 9);
426 rio_detail_ptr->port1_port_connect = readb (io_mem + offset + 10);
427 rio_detail_ptr->first_slot_num = readb (io_mem + offset + 11);
428 rio_detail_ptr->status = readb (io_mem + offset + 12);
429 rio_detail_ptr->wpindex = readb (io_mem + offset + 13);
430 rio_detail_ptr->chassis_num = readb (io_mem + offset + 14);
431// 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);
432 //create linked list of chassis
433 if (rio_detail_ptr->rio_type == 4 || rio_detail_ptr->rio_type == 5)
434 list_add (&rio_detail_ptr->rio_detail_list, &rio_vg_head);
435 //create linked list of expansion box
436 else if (rio_detail_ptr->rio_type == 6 || rio_detail_ptr->rio_type == 7)
437 list_add (&rio_detail_ptr->rio_detail_list, &rio_lo_head);
438 else
439 // not in my concern
440 kfree (rio_detail_ptr);
441 offset += 15;
442 }
443 print_lo_info ();
444 print_vg_info ();
445 return 0;
446}
447
448/*
449 * reorganizing linked list of chassis
450 */
451static struct opt_rio *search_opt_vg (u8 chassis_num)
452{
453 struct opt_rio *ptr;
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700454 list_for_each_entry(ptr, &opt_vg_head, opt_rio_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (ptr->chassis_num == chassis_num)
456 return ptr;
457 }
458 return NULL;
459}
460
461static int __init combine_wpg_for_chassis (void)
462{
463 struct opt_rio *opt_rio_ptr = NULL;
464 struct rio_detail *rio_detail_ptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700466 list_for_each_entry(rio_detail_ptr, &rio_vg_head, rio_detail_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 opt_rio_ptr = search_opt_vg (rio_detail_ptr->chassis_num);
468 if (!opt_rio_ptr) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100469 opt_rio_ptr = kzalloc(sizeof(struct opt_rio), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (!opt_rio_ptr)
471 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 opt_rio_ptr->rio_type = rio_detail_ptr->rio_type;
473 opt_rio_ptr->chassis_num = rio_detail_ptr->chassis_num;
474 opt_rio_ptr->first_slot_num = rio_detail_ptr->first_slot_num;
475 opt_rio_ptr->middle_num = rio_detail_ptr->first_slot_num;
476 list_add (&opt_rio_ptr->opt_rio_list, &opt_vg_head);
477 } else {
478 opt_rio_ptr->first_slot_num = min (opt_rio_ptr->first_slot_num, rio_detail_ptr->first_slot_num);
479 opt_rio_ptr->middle_num = max (opt_rio_ptr->middle_num, rio_detail_ptr->first_slot_num);
480 }
481 }
482 print_opt_vg ();
483 return 0;
484}
485
486/*
akpm@linux-foundation.orga8d2dbd2008-08-22 13:28:17 -0700487 * reorganizing linked list of expansion box
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 */
489static struct opt_rio_lo *search_opt_lo (u8 chassis_num)
490{
491 struct opt_rio_lo *ptr;
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700492 list_for_each_entry(ptr, &opt_lo_head, opt_rio_lo_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (ptr->chassis_num == chassis_num)
494 return ptr;
495 }
496 return NULL;
497}
498
499static int combine_wpg_for_expansion (void)
500{
501 struct opt_rio_lo *opt_rio_lo_ptr = NULL;
502 struct rio_detail *rio_detail_ptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700504 list_for_each_entry(rio_detail_ptr, &rio_lo_head, rio_detail_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 opt_rio_lo_ptr = search_opt_lo (rio_detail_ptr->chassis_num);
506 if (!opt_rio_lo_ptr) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100507 opt_rio_lo_ptr = kzalloc(sizeof(struct opt_rio_lo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (!opt_rio_lo_ptr)
509 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 opt_rio_lo_ptr->rio_type = rio_detail_ptr->rio_type;
511 opt_rio_lo_ptr->chassis_num = rio_detail_ptr->chassis_num;
512 opt_rio_lo_ptr->first_slot_num = rio_detail_ptr->first_slot_num;
513 opt_rio_lo_ptr->middle_num = rio_detail_ptr->first_slot_num;
514 opt_rio_lo_ptr->pack_count = 1;
515
516 list_add (&opt_rio_lo_ptr->opt_rio_lo_list, &opt_lo_head);
517 } else {
518 opt_rio_lo_ptr->first_slot_num = min (opt_rio_lo_ptr->first_slot_num, rio_detail_ptr->first_slot_num);
519 opt_rio_lo_ptr->middle_num = max (opt_rio_lo_ptr->middle_num, rio_detail_ptr->first_slot_num);
520 opt_rio_lo_ptr->pack_count = 2;
521 }
522 }
523 return 0;
524}
525
526
527/* Since we don't know the max slot number per each chassis, hence go
528 * through the list of all chassis to find out the range
529 * Arguments: slot_num, 1st slot number of the chassis we think we are on,
530 * var (0 = chassis, 1 = expansion box)
531 */
532static int first_slot_num (u8 slot_num, u8 first_slot, u8 var)
533{
534 struct opt_rio *opt_vg_ptr = NULL;
535 struct opt_rio_lo *opt_lo_ptr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int rc = 0;
537
538 if (!var) {
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700539 list_for_each_entry(opt_vg_ptr, &opt_vg_head, opt_rio_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if ((first_slot < opt_vg_ptr->first_slot_num) && (slot_num >= opt_vg_ptr->first_slot_num)) {
541 rc = -ENODEV;
542 break;
543 }
544 }
545 } else {
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700546 list_for_each_entry(opt_lo_ptr, &opt_lo_head, opt_rio_lo_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 if ((first_slot < opt_lo_ptr->first_slot_num) && (slot_num >= opt_lo_ptr->first_slot_num)) {
548 rc = -ENODEV;
549 break;
550 }
551 }
552 }
553 return rc;
554}
555
556static struct opt_rio_lo * find_rxe_num (u8 slot_num)
557{
558 struct opt_rio_lo *opt_lo_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700560 list_for_each_entry(opt_lo_ptr, &opt_lo_head, opt_rio_lo_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 //check to see if this slot_num belongs to expansion box
562 if ((slot_num >= opt_lo_ptr->first_slot_num) && (!first_slot_num (slot_num, opt_lo_ptr->first_slot_num, 1)))
563 return opt_lo_ptr;
564 }
565 return NULL;
566}
567
568static struct opt_rio * find_chassis_num (u8 slot_num)
569{
570 struct opt_rio *opt_vg_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700572 list_for_each_entry(opt_vg_ptr, &opt_vg_head, opt_rio_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 //check to see if this slot_num belongs to chassis
574 if ((slot_num >= opt_vg_ptr->first_slot_num) && (!first_slot_num (slot_num, opt_vg_ptr->first_slot_num, 0)))
575 return opt_vg_ptr;
576 }
577 return NULL;
578}
579
580/* This routine will find out how many slots are in the chassis, so that
581 * the slot numbers for rxe100 would start from 1, and not from 7, or 6 etc
582 */
583static u8 calculate_first_slot (u8 slot_num)
584{
585 u8 first_slot = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct slot * slot_cur;
587
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700588 list_for_each_entry(slot_cur, &ibmphp_slot_head, ibm_slot_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (slot_cur->ctrl) {
590 if ((slot_cur->ctrl->ctlr_type != 4) && (slot_cur->ctrl->ending_slot_num > first_slot) && (slot_num > slot_cur->ctrl->ending_slot_num))
591 first_slot = slot_cur->ctrl->ending_slot_num;
592 }
593 }
594 return first_slot + 1;
595
596}
Alex Chianga32615a2008-10-20 17:41:33 -0600597
598#define SLOT_NAME_SIZE 30
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static char *create_file_name (struct slot * slot_cur)
601{
602 struct opt_rio *opt_vg_ptr = NULL;
603 struct opt_rio_lo *opt_lo_ptr = NULL;
Alex Chianga32615a2008-10-20 17:41:33 -0600604 static char str[SLOT_NAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int which = 0; /* rxe = 1, chassis = 0 */
606 u8 number = 1; /* either chassis or rxe # */
607 u8 first_slot = 1;
608 u8 slot_num;
609 u8 flag = 0;
610
611 if (!slot_cur) {
612 err ("Structure passed is empty\n");
613 return NULL;
614 }
615
616 slot_num = slot_cur->number;
617
618 memset (str, 0, sizeof(str));
619
620 if (rio_table_ptr) {
621 if (rio_table_ptr->ver_num == 3) {
622 opt_vg_ptr = find_chassis_num (slot_num);
623 opt_lo_ptr = find_rxe_num (slot_num);
624 }
625 }
626 if (opt_vg_ptr) {
627 if (opt_lo_ptr) {
628 if ((slot_num - opt_vg_ptr->first_slot_num) > (slot_num - opt_lo_ptr->first_slot_num)) {
629 number = opt_lo_ptr->chassis_num;
630 first_slot = opt_lo_ptr->first_slot_num;
631 which = 1; /* it is RXE */
632 } else {
633 first_slot = opt_vg_ptr->first_slot_num;
634 number = opt_vg_ptr->chassis_num;
635 which = 0;
636 }
637 } else {
638 first_slot = opt_vg_ptr->first_slot_num;
639 number = opt_vg_ptr->chassis_num;
640 which = 0;
641 }
642 ++flag;
643 } else if (opt_lo_ptr) {
644 number = opt_lo_ptr->chassis_num;
645 first_slot = opt_lo_ptr->first_slot_num;
646 which = 1;
647 ++flag;
648 } else if (rio_table_ptr) {
649 if (rio_table_ptr->ver_num == 3) {
650 /* if both NULL and we DO have correct RIO table in BIOS */
651 return NULL;
652 }
653 }
654 if (!flag) {
655 if (slot_cur->ctrl->ctlr_type == 4) {
656 first_slot = calculate_first_slot (slot_num);
657 which = 1;
658 } else {
659 which = 0;
660 }
661 }
662
663 sprintf(str, "%s%dslot%d",
664 which == 0 ? "chassis" : "rxe",
665 number, slot_num - first_slot + 1);
666 return str;
667}
668
669static int fillslotinfo(struct hotplug_slot *hotplug_slot)
670{
671 struct slot *slot;
672 int rc = 0;
673
674 if (!hotplug_slot || !hotplug_slot->private)
675 return -EINVAL;
676
677 slot = hotplug_slot->private;
678 rc = ibmphp_hpc_readslot(slot, READ_ALLSTAT, NULL);
679 if (rc)
680 return rc;
681
682 // power - enabled:1 not:0
683 hotplug_slot->info->power_status = SLOT_POWER(slot->status);
684
685 // attention - off:0, on:1, blinking:2
686 hotplug_slot->info->attention_status = SLOT_ATTN(slot->status, slot->ext_status);
687
688 // latch - open:1 closed:0
689 hotplug_slot->info->latch_status = SLOT_LATCH(slot->status);
690
691 // pci board - present:1 not:0
692 if (SLOT_PRESENT (slot->status))
693 hotplug_slot->info->adapter_status = 1;
694 else
695 hotplug_slot->info->adapter_status = 0;
696/*
697 if (slot->bus_on->supported_bus_mode
698 && (slot->bus_on->supported_speed == BUS_SPEED_66))
699 hotplug_slot->info->max_bus_speed_status = BUS_SPEED_66PCIX;
700 else
701 hotplug_slot->info->max_bus_speed_status = slot->bus_on->supported_speed;
702*/
703
704 return rc;
705}
706
707static void release_slot(struct hotplug_slot *hotplug_slot)
708{
709 struct slot *slot;
710
711 if (!hotplug_slot || !hotplug_slot->private)
712 return;
713
714 slot = hotplug_slot->private;
715 kfree(slot->hotplug_slot->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 kfree(slot->hotplug_slot);
717 slot->ctrl = NULL;
718 slot->bus_on = NULL;
719
720 /* we don't want to actually remove the resources, since free_resources will do just that */
721 ibmphp_unconfigure_card(&slot, -1);
722
723 kfree (slot);
724}
725
726static struct pci_driver ibmphp_driver;
727
728/*
729 * map info (ctlr-id, slot count, slot#.. bus count, bus#, ctlr type...) of
730 * each hpc from physical address to a list of hot plug controllers based on
731 * hpc descriptors.
732 */
733static int __init ebda_rsrc_controller (void)
734{
735 u16 addr, addr_slot, addr_bus;
736 u8 ctlr_id, temp, bus_index;
737 u16 ctlr, slot, bus;
738 u16 slot_num, bus_num, index;
739 struct hotplug_slot *hp_slot_ptr;
740 struct controller *hpc_ptr;
741 struct ebda_hpc_bus *bus_ptr;
742 struct ebda_hpc_slot *slot_ptr;
743 struct bus_info *bus_info_ptr1, *bus_info_ptr2;
744 int rc;
745 struct slot *tmp_slot;
Alex Chianga32615a2008-10-20 17:41:33 -0600746 char name[SLOT_NAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 addr = hpc_list_ptr->phys_addr;
749 for (ctlr = 0; ctlr < hpc_list_ptr->num_ctlrs; ctlr++) {
750 bus_index = 1;
751 ctlr_id = readb (io_mem + addr);
752 addr += 1;
753 slot_num = readb (io_mem + addr);
754
755 addr += 1;
756 addr_slot = addr; /* offset of slot structure */
757 addr += (slot_num * 4);
758
759 bus_num = readb (io_mem + addr);
760
761 addr += 1;
762 addr_bus = addr; /* offset of bus */
763 addr += (bus_num * 9); /* offset of ctlr_type */
764 temp = readb (io_mem + addr);
765
766 addr += 1;
767 /* init hpc structure */
768 hpc_ptr = alloc_ebda_hpc (slot_num, bus_num);
769 if (!hpc_ptr ) {
770 rc = -ENOMEM;
771 goto error_no_hpc;
772 }
773 hpc_ptr->ctlr_id = ctlr_id;
774 hpc_ptr->ctlr_relative_id = ctlr;
775 hpc_ptr->slot_count = slot_num;
776 hpc_ptr->bus_count = bus_num;
777 debug ("now enter ctlr data struture ---\n");
778 debug ("ctlr id: %x\n", ctlr_id);
779 debug ("ctlr_relative_id: %x\n", hpc_ptr->ctlr_relative_id);
780 debug ("count of slots controlled by this ctlr: %x\n", slot_num);
781 debug ("count of buses controlled by this ctlr: %x\n", bus_num);
782
783 /* init slot structure, fetch slot, bus, cap... */
784 slot_ptr = hpc_ptr->slots;
785 for (slot = 0; slot < slot_num; slot++) {
786 slot_ptr->slot_num = readb (io_mem + addr_slot);
787 slot_ptr->slot_bus_num = readb (io_mem + addr_slot + slot_num);
788 slot_ptr->ctl_index = readb (io_mem + addr_slot + 2*slot_num);
789 slot_ptr->slot_cap = readb (io_mem + addr_slot + 3*slot_num);
790
791 // create bus_info lined list --- if only one slot per bus: slot_min = slot_max
792
793 bus_info_ptr2 = ibmphp_find_same_bus_num (slot_ptr->slot_bus_num);
794 if (!bus_info_ptr2) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100795 bus_info_ptr1 = kzalloc(sizeof(struct bus_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (!bus_info_ptr1) {
797 rc = -ENOMEM;
798 goto error_no_hp_slot;
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 bus_info_ptr1->slot_min = slot_ptr->slot_num;
801 bus_info_ptr1->slot_max = slot_ptr->slot_num;
802 bus_info_ptr1->slot_count += 1;
803 bus_info_ptr1->busno = slot_ptr->slot_bus_num;
804 bus_info_ptr1->index = bus_index++;
805 bus_info_ptr1->current_speed = 0xff;
806 bus_info_ptr1->current_bus_mode = 0xff;
807
808 bus_info_ptr1->controller_id = hpc_ptr->ctlr_id;
809
810 list_add_tail (&bus_info_ptr1->bus_info_list, &bus_info_head);
811
812 } else {
813 bus_info_ptr2->slot_min = min (bus_info_ptr2->slot_min, slot_ptr->slot_num);
814 bus_info_ptr2->slot_max = max (bus_info_ptr2->slot_max, slot_ptr->slot_num);
815 bus_info_ptr2->slot_count += 1;
816
817 }
818
819 // end of creating the bus_info linked list
820
821 slot_ptr++;
822 addr_slot += 1;
823 }
824
825 /* init bus structure */
826 bus_ptr = hpc_ptr->buses;
827 for (bus = 0; bus < bus_num; bus++) {
828 bus_ptr->bus_num = readb (io_mem + addr_bus + bus);
829 bus_ptr->slots_at_33_conv = readb (io_mem + addr_bus + bus_num + 8 * bus);
830 bus_ptr->slots_at_66_conv = readb (io_mem + addr_bus + bus_num + 8 * bus + 1);
831
832 bus_ptr->slots_at_66_pcix = readb (io_mem + addr_bus + bus_num + 8 * bus + 2);
833
834 bus_ptr->slots_at_100_pcix = readb (io_mem + addr_bus + bus_num + 8 * bus + 3);
835
836 bus_ptr->slots_at_133_pcix = readb (io_mem + addr_bus + bus_num + 8 * bus + 4);
837
838 bus_info_ptr2 = ibmphp_find_same_bus_num (bus_ptr->bus_num);
839 if (bus_info_ptr2) {
840 bus_info_ptr2->slots_at_33_conv = bus_ptr->slots_at_33_conv;
841 bus_info_ptr2->slots_at_66_conv = bus_ptr->slots_at_66_conv;
842 bus_info_ptr2->slots_at_66_pcix = bus_ptr->slots_at_66_pcix;
843 bus_info_ptr2->slots_at_100_pcix = bus_ptr->slots_at_100_pcix;
844 bus_info_ptr2->slots_at_133_pcix = bus_ptr->slots_at_133_pcix;
845 }
846 bus_ptr++;
847 }
848
849 hpc_ptr->ctlr_type = temp;
850
851 switch (hpc_ptr->ctlr_type) {
852 case 1:
853 hpc_ptr->u.pci_ctlr.bus = readb (io_mem + addr);
854 hpc_ptr->u.pci_ctlr.dev_fun = readb (io_mem + addr + 1);
855 hpc_ptr->irq = readb (io_mem + addr + 2);
856 addr += 3;
857 debug ("ctrl bus = %x, ctlr devfun = %x, irq = %x\n",
858 hpc_ptr->u.pci_ctlr.bus,
859 hpc_ptr->u.pci_ctlr.dev_fun, hpc_ptr->irq);
860 break;
861
862 case 0:
863 hpc_ptr->u.isa_ctlr.io_start = readw (io_mem + addr);
864 hpc_ptr->u.isa_ctlr.io_end = readw (io_mem + addr + 2);
865 if (!request_region (hpc_ptr->u.isa_ctlr.io_start,
866 (hpc_ptr->u.isa_ctlr.io_end - hpc_ptr->u.isa_ctlr.io_start + 1),
867 "ibmphp")) {
868 rc = -ENODEV;
869 goto error_no_hp_slot;
870 }
871 hpc_ptr->irq = readb (io_mem + addr + 4);
872 addr += 5;
873 break;
874
875 case 2:
876 case 4:
877 hpc_ptr->u.wpeg_ctlr.wpegbbar = readl (io_mem + addr);
878 hpc_ptr->u.wpeg_ctlr.i2c_addr = readb (io_mem + addr + 4);
879 hpc_ptr->irq = readb (io_mem + addr + 5);
880 addr += 6;
881 break;
882 default:
883 rc = -ENODEV;
884 goto error_no_hp_slot;
885 }
886
887 //reorganize chassis' linked list
888 combine_wpg_for_chassis ();
889 combine_wpg_for_expansion ();
890 hpc_ptr->revision = 0xff;
891 hpc_ptr->options = 0xff;
892 hpc_ptr->starting_slot_num = hpc_ptr->slots[0].slot_num;
893 hpc_ptr->ending_slot_num = hpc_ptr->slots[slot_num-1].slot_num;
894
895 // register slots with hpc core as well as create linked list of ibm slot
896 for (index = 0; index < hpc_ptr->slot_count; index++) {
897
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100898 hp_slot_ptr = kzalloc(sizeof(*hp_slot_ptr), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (!hp_slot_ptr) {
900 rc = -ENOMEM;
901 goto error_no_hp_slot;
902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100904 hp_slot_ptr->info = kzalloc(sizeof(struct hotplug_slot_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (!hp_slot_ptr->info) {
906 rc = -ENOMEM;
907 goto error_no_hp_info;
908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100910 tmp_slot = kzalloc(sizeof(*tmp_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!tmp_slot) {
912 rc = -ENOMEM;
913 goto error_no_slot;
914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Kristen Accardidc6712d2006-03-14 16:24:47 -0800916 tmp_slot->flag = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 tmp_slot->capabilities = hpc_ptr->slots[index].slot_cap;
919 if ((hpc_ptr->slots[index].slot_cap & EBDA_SLOT_133_MAX) == EBDA_SLOT_133_MAX)
920 tmp_slot->supported_speed = 3;
921 else if ((hpc_ptr->slots[index].slot_cap & EBDA_SLOT_100_MAX) == EBDA_SLOT_100_MAX)
922 tmp_slot->supported_speed = 2;
923 else if ((hpc_ptr->slots[index].slot_cap & EBDA_SLOT_66_MAX) == EBDA_SLOT_66_MAX)
924 tmp_slot->supported_speed = 1;
925
926 if ((hpc_ptr->slots[index].slot_cap & EBDA_SLOT_PCIX_CAP) == EBDA_SLOT_PCIX_CAP)
927 tmp_slot->supported_bus_mode = 1;
928 else
929 tmp_slot->supported_bus_mode = 0;
930
931
932 tmp_slot->bus = hpc_ptr->slots[index].slot_bus_num;
933
934 bus_info_ptr1 = ibmphp_find_same_bus_num (hpc_ptr->slots[index].slot_bus_num);
935 if (!bus_info_ptr1) {
Jesper Juhlb91aac22008-03-08 02:16:07 +0100936 kfree(tmp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 rc = -ENODEV;
938 goto error;
939 }
940 tmp_slot->bus_on = bus_info_ptr1;
941 bus_info_ptr1 = NULL;
942 tmp_slot->ctrl = hpc_ptr;
943
944 tmp_slot->ctlr_index = hpc_ptr->slots[index].ctl_index;
945 tmp_slot->number = hpc_ptr->slots[index].slot_num;
946 tmp_slot->hotplug_slot = hp_slot_ptr;
947
948 hp_slot_ptr->private = tmp_slot;
949 hp_slot_ptr->release = release_slot;
950
951 rc = fillslotinfo(hp_slot_ptr);
952 if (rc)
953 goto error;
954
955 rc = ibmphp_init_devno ((struct slot **) &hp_slot_ptr->private);
956 if (rc)
957 goto error;
958 hp_slot_ptr->ops = &ibmphp_hotplug_slot_ops;
959
960 // end of registering ibm slot with hotplug core
961
962 list_add (& ((struct slot *)(hp_slot_ptr->private))->ibm_slot_list, &ibmphp_slot_head);
963 }
964
965 print_bus_info ();
966 list_add (&hpc_ptr->ebda_hpc_list, &ebda_hpc_head );
967
968 } /* each hpc */
969
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -0700970 list_for_each_entry(tmp_slot, &ibmphp_slot_head, ibm_slot_list) {
Alex Chianga32615a2008-10-20 17:41:33 -0600971 snprintf(name, SLOT_NAME_SIZE, "%s", create_file_name(tmp_slot));
Alex Chiangf46753c2008-06-10 15:28:50 -0600972 pci_hp_register(tmp_slot->hotplug_slot,
Alex Chianga32615a2008-10-20 17:41:33 -0600973 pci_find_bus(0, tmp_slot->bus), tmp_slot->device, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 }
975
976 print_ebda_hpc ();
977 print_ibm_slot ();
978 return 0;
979
980error:
981 kfree (hp_slot_ptr->private);
982error_no_slot:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 kfree (hp_slot_ptr->info);
984error_no_hp_info:
985 kfree (hp_slot_ptr);
986error_no_hp_slot:
987 free_ebda_hpc (hpc_ptr);
988error_no_hpc:
989 iounmap (io_mem);
990 return rc;
991}
992
993/*
994 * map info (bus, devfun, start addr, end addr..) of i/o, memory,
995 * pfm from the physical addr to a list of resource.
996 */
997static int __init ebda_rsrc_rsrc (void)
998{
999 u16 addr;
1000 short rsrc;
1001 u8 type, rsrc_type;
1002 struct ebda_pci_rsrc *rsrc_ptr;
1003
1004 addr = rsrc_list_ptr->phys_addr;
1005 debug ("now entering rsrc land\n");
1006 debug ("offset of rsrc: %x\n", rsrc_list_ptr->phys_addr);
1007
1008 for (rsrc = 0; rsrc < rsrc_list_ptr->num_entries; rsrc++) {
1009 type = readb (io_mem + addr);
1010
1011 addr += 1;
1012 rsrc_type = type & EBDA_RSRC_TYPE_MASK;
1013
1014 if (rsrc_type == EBDA_IO_RSRC_TYPE) {
1015 rsrc_ptr = alloc_ebda_pci_rsrc ();
1016 if (!rsrc_ptr) {
1017 iounmap (io_mem);
1018 return -ENOMEM;
1019 }
1020 rsrc_ptr->rsrc_type = type;
1021
1022 rsrc_ptr->bus_num = readb (io_mem + addr);
1023 rsrc_ptr->dev_fun = readb (io_mem + addr + 1);
1024 rsrc_ptr->start_addr = readw (io_mem + addr + 2);
1025 rsrc_ptr->end_addr = readw (io_mem + addr + 4);
1026 addr += 6;
1027
1028 debug ("rsrc from io type ----\n");
1029 debug ("rsrc type: %x bus#: %x dev_func: %x start addr: %x end addr: %x\n",
1030 rsrc_ptr->rsrc_type, rsrc_ptr->bus_num, rsrc_ptr->dev_fun, rsrc_ptr->start_addr, rsrc_ptr->end_addr);
1031
1032 list_add (&rsrc_ptr->ebda_pci_rsrc_list, &ibmphp_ebda_pci_rsrc_head);
1033 }
1034
1035 if (rsrc_type == EBDA_MEM_RSRC_TYPE || rsrc_type == EBDA_PFM_RSRC_TYPE) {
1036 rsrc_ptr = alloc_ebda_pci_rsrc ();
1037 if (!rsrc_ptr ) {
1038 iounmap (io_mem);
1039 return -ENOMEM;
1040 }
1041 rsrc_ptr->rsrc_type = type;
1042
1043 rsrc_ptr->bus_num = readb (io_mem + addr);
1044 rsrc_ptr->dev_fun = readb (io_mem + addr + 1);
1045 rsrc_ptr->start_addr = readl (io_mem + addr + 2);
1046 rsrc_ptr->end_addr = readl (io_mem + addr + 6);
1047 addr += 10;
1048
1049 debug ("rsrc from mem or pfm ---\n");
1050 debug ("rsrc type: %x bus#: %x dev_func: %x start addr: %x end addr: %x\n",
1051 rsrc_ptr->rsrc_type, rsrc_ptr->bus_num, rsrc_ptr->dev_fun, rsrc_ptr->start_addr, rsrc_ptr->end_addr);
1052
1053 list_add (&rsrc_ptr->ebda_pci_rsrc_list, &ibmphp_ebda_pci_rsrc_head);
1054 }
1055 }
1056 kfree (rsrc_list_ptr);
1057 rsrc_list_ptr = NULL;
1058 print_ebda_pci_rsrc ();
1059 return 0;
1060}
1061
1062u16 ibmphp_get_total_controllers (void)
1063{
1064 return hpc_list_ptr->num_ctlrs;
1065}
1066
1067struct slot *ibmphp_get_slot_from_physical_num (u8 physical_num)
1068{
1069 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -07001071 list_for_each_entry(slot, &ibmphp_slot_head, ibm_slot_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (slot->number == physical_num)
1073 return slot;
1074 }
1075 return NULL;
1076}
1077
1078/* To find:
1079 * - the smallest slot number
1080 * - the largest slot number
1081 * - the total number of the slots based on each bus
1082 * (if only one slot per bus slot_min = slot_max )
1083 */
1084struct bus_info *ibmphp_find_same_bus_num (u32 num)
1085{
1086 struct bus_info *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -07001088 list_for_each_entry(ptr, &bus_info_head, bus_info_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (ptr->busno == num)
1090 return ptr;
1091 }
1092 return NULL;
1093}
1094
1095/* Finding relative bus number, in order to map corresponding
1096 * bus register
1097 */
1098int ibmphp_get_bus_index (u8 num)
1099{
1100 struct bus_info *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -07001102 list_for_each_entry(ptr, &bus_info_head, bus_info_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (ptr->busno == num)
1104 return ptr->index;
1105 }
1106 return -ENODEV;
1107}
1108
1109void ibmphp_free_bus_info_queue (void)
1110{
1111 struct bus_info *bus_info;
1112 struct list_head *list;
1113 struct list_head *next;
1114
1115 list_for_each_safe (list, next, &bus_info_head ) {
1116 bus_info = list_entry (list, struct bus_info, bus_info_list);
1117 kfree (bus_info);
1118 }
1119}
1120
1121void ibmphp_free_ebda_hpc_queue (void)
1122{
1123 struct controller *controller = NULL;
1124 struct list_head *list;
1125 struct list_head *next;
1126 int pci_flag = 0;
1127
1128 list_for_each_safe (list, next, &ebda_hpc_head) {
1129 controller = list_entry (list, struct controller, ebda_hpc_list);
1130 if (controller->ctlr_type == 0)
1131 release_region (controller->u.isa_ctlr.io_start, (controller->u.isa_ctlr.io_end - controller->u.isa_ctlr.io_start + 1));
1132 else if ((controller->ctlr_type == 1) && (!pci_flag)) {
1133 ++pci_flag;
1134 pci_unregister_driver (&ibmphp_driver);
1135 }
1136 free_ebda_hpc (controller);
1137 }
1138}
1139
1140void ibmphp_free_ebda_pci_rsrc_queue (void)
1141{
1142 struct ebda_pci_rsrc *resource;
1143 struct list_head *list;
1144 struct list_head *next;
1145
1146 list_for_each_safe (list, next, &ibmphp_ebda_pci_rsrc_head) {
1147 resource = list_entry (list, struct ebda_pci_rsrc, ebda_pci_rsrc_list);
1148 kfree (resource);
1149 resource = NULL;
1150 }
1151}
1152
1153static struct pci_device_id id_table[] = {
1154 {
1155 .vendor = PCI_VENDOR_ID_IBM,
1156 .device = HPC_DEVICE_ID,
1157 .subvendor = PCI_VENDOR_ID_IBM,
1158 .subdevice = HPC_SUBSYSTEM_ID,
1159 .class = ((PCI_CLASS_SYSTEM_PCI_HOTPLUG << 8) | 0x00),
1160 }, {}
1161};
1162
1163MODULE_DEVICE_TABLE(pci, id_table);
1164
1165static int ibmphp_probe (struct pci_dev *, const struct pci_device_id *);
1166static struct pci_driver ibmphp_driver = {
1167 .name = "ibmphp",
1168 .id_table = id_table,
1169 .probe = ibmphp_probe,
1170};
1171
1172int ibmphp_register_pci (void)
1173{
1174 struct controller *ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 int rc = 0;
1176
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -07001177 list_for_each_entry(ctrl, &ebda_hpc_head, ebda_hpc_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (ctrl->ctlr_type == 1) {
1179 rc = pci_register_driver(&ibmphp_driver);
1180 break;
1181 }
1182 }
1183 return rc;
1184}
1185static int ibmphp_probe (struct pci_dev * dev, const struct pci_device_id *ids)
1186{
1187 struct controller *ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 debug ("inside ibmphp_probe\n");
1190
akpm@linux-foundation.org2fd39aa2008-08-22 13:30:14 -07001191 list_for_each_entry(ctrl, &ebda_hpc_head, ebda_hpc_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (ctrl->ctlr_type == 1) {
1193 if ((dev->devfn == ctrl->u.pci_ctlr.dev_fun) && (dev->bus->number == ctrl->u.pci_ctlr.bus)) {
1194 ctrl->ctrl_dev = dev;
1195 debug ("found device!!!\n");
1196 debug ("dev->device = %x, dev->subsystem_device = %x\n", dev->device, dev->subsystem_device);
1197 return 0;
1198 }
1199 }
1200 }
1201 return -ENODEV;
1202}
1203