This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / pci / hotplug / pciehp_core.c
1 /*
2  * PCI Express Hot Plug Controller Driver
3  *
4  * Copyright (C) 1995,2001 Compaq Computer Corporation
5  * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6  * Copyright (C) 2001 IBM Corp.
7  * Copyright (C) 2003-2004 Intel Corporation
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 <greg@kroah.com>, <dely.l.sy@intel.com>
27  *
28  */
29
30 #include <linux/config.h>
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/kernel.h>
34 #include <linux/types.h>
35 #include <linux/proc_fs.h>
36 #include <linux/miscdevice.h>
37 #include <linux/slab.h>
38 #include <linux/workqueue.h>
39 #include <linux/pci.h>
40 #include <linux/init.h>
41 #include <asm/uaccess.h>
42 #include "pciehp.h"
43 #include "pciehprm.h"
44
45 /* Global variables */
46 int pciehp_debug;
47 int pciehp_poll_mode;
48 int pciehp_poll_time;
49 struct controller *pciehp_ctrl_list;
50 struct pci_func *pciehp_slot_list[256];
51
52 #define DRIVER_VERSION  "0.4"
53 #define DRIVER_AUTHOR   "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
54 #define DRIVER_DESC     "PCI Express Hot Plug Controller Driver"
55
56 MODULE_AUTHOR(DRIVER_AUTHOR);
57 MODULE_DESCRIPTION(DRIVER_DESC);
58 MODULE_LICENSE("GPL");
59
60 module_param(pciehp_debug, bool, 0644);
61 module_param(pciehp_poll_mode, bool, 0644);
62 module_param(pciehp_poll_time, int, 0644);
63 MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not");
64 MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not");
65 MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds");
66
67 #define PCIE_MODULE_NAME "pciehp"
68
69 static int pcie_start_thread (void);
70 static int set_attention_status (struct hotplug_slot *slot, u8 value);
71 static int enable_slot          (struct hotplug_slot *slot);
72 static int disable_slot         (struct hotplug_slot *slot);
73 static int get_power_status     (struct hotplug_slot *slot, u8 *value);
74 static int get_attention_status (struct hotplug_slot *slot, u8 *value);
75 static int get_latch_status     (struct hotplug_slot *slot, u8 *value);
76 static int get_adapter_status   (struct hotplug_slot *slot, u8 *value);
77 static int get_max_bus_speed    (struct hotplug_slot *slot, enum pci_bus_speed *value);
78 static int get_cur_bus_speed    (struct hotplug_slot *slot, enum pci_bus_speed *value);
79
80 static struct hotplug_slot_ops pciehp_hotplug_slot_ops = {
81         .owner =                THIS_MODULE,
82         .set_attention_status = set_attention_status,
83         .enable_slot =          enable_slot,
84         .disable_slot =         disable_slot,
85         .get_power_status =     get_power_status,
86         .get_attention_status = get_attention_status,
87         .get_latch_status =     get_latch_status,
88         .get_adapter_status =   get_adapter_status,
89         .get_max_bus_speed =    get_max_bus_speed,
90         .get_cur_bus_speed =    get_cur_bus_speed,
91 };
92
93 static int init_slots(struct controller *ctrl)
94 {
95         struct slot *new_slot;
96         u8 number_of_slots;
97         u8 slot_device;
98         u32 slot_number;
99         int result = -ENOMEM;
100
101         dbg("%s\n",__FUNCTION__);
102
103         number_of_slots = ctrl->num_slots;
104         slot_device = ctrl->slot_device_offset;
105         slot_number = ctrl->first_slot;
106
107         while (number_of_slots) {
108                 new_slot = kmalloc(sizeof(*new_slot), GFP_KERNEL);
109                 if (!new_slot)
110                         goto error;
111
112                 memset(new_slot, 0, sizeof(struct slot));
113                 new_slot->hotplug_slot =
114                                 kmalloc(sizeof(*(new_slot->hotplug_slot)),
115                                                 GFP_KERNEL);
116                 if (!new_slot->hotplug_slot)
117                         goto error_slot;
118                 memset(new_slot->hotplug_slot, 0, sizeof(struct hotplug_slot));
119
120                 new_slot->hotplug_slot->info =
121                         kmalloc(sizeof(*(new_slot->hotplug_slot->info)),
122                                                 GFP_KERNEL);
123                 if (!new_slot->hotplug_slot->info)
124                         goto error_hpslot;
125                 memset(new_slot->hotplug_slot->info, 0,
126                                         sizeof(struct hotplug_slot_info));
127                 new_slot->hotplug_slot->name = kmalloc(SLOT_NAME_SIZE,
128                                                 GFP_KERNEL);
129                 if (!new_slot->hotplug_slot->name)
130                         goto error_info;
131
132                 new_slot->ctrl = ctrl;
133                 new_slot->bus = ctrl->slot_bus;
134                 new_slot->device = slot_device;
135                 new_slot->hpc_ops = ctrl->hpc_ops;
136
137                 new_slot->number = ctrl->first_slot;
138                 new_slot->hp_slot = slot_device - ctrl->slot_device_offset;
139
140                 /* register this slot with the hotplug pci core */
141                 new_slot->hotplug_slot->private = new_slot;
142                 make_slot_name (new_slot->hotplug_slot->name, SLOT_NAME_SIZE, new_slot);
143                 new_slot->hotplug_slot->ops = &pciehp_hotplug_slot_ops;
144
145                 new_slot->hpc_ops->get_power_status(new_slot, &(new_slot->hotplug_slot->info->power_status));
146                 new_slot->hpc_ops->get_attention_status(new_slot, &(new_slot->hotplug_slot->info->attention_status));
147                 new_slot->hpc_ops->get_latch_status(new_slot, &(new_slot->hotplug_slot->info->latch_status));
148                 new_slot->hpc_ops->get_adapter_status(new_slot, &(new_slot->hotplug_slot->info->adapter_status));
149
150                 dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x slot_device_offset=%x\n", 
151                         new_slot->bus, new_slot->device, new_slot->hp_slot, new_slot->number, ctrl->slot_device_offset);
152                 result = pci_hp_register (new_slot->hotplug_slot);
153                 if (result) {
154                         err ("pci_hp_register failed with error %d\n", result);
155                         goto error_name;
156                 }
157
158                 new_slot->next = ctrl->slot;
159                 ctrl->slot = new_slot;
160
161                 number_of_slots--;
162                 slot_device++;
163                 slot_number += ctrl->slot_num_inc;
164         }
165
166         return 0;
167
168 error_name:
169         kfree(new_slot->hotplug_slot->name);
170 error_info:
171         kfree(new_slot->hotplug_slot->info);
172 error_hpslot:
173         kfree(new_slot->hotplug_slot);
174 error_slot:
175         kfree(new_slot);
176 error:
177         return result;
178 }
179
180
181 static int cleanup_slots (struct controller * ctrl)
182 {
183         struct slot *old_slot, *next_slot;
184
185         old_slot = ctrl->slot;
186         ctrl->slot = NULL;
187
188         while (old_slot) {
189                 next_slot = old_slot->next;
190                 pci_hp_deregister (old_slot->hotplug_slot);
191                 kfree(old_slot->hotplug_slot->info);
192                 kfree(old_slot->hotplug_slot->name);
193                 kfree(old_slot->hotplug_slot);
194                 kfree(old_slot);
195                 old_slot = next_slot;
196         }
197
198
199         return(0);
200 }
201
202 static int get_ctlr_slot_config(struct controller *ctrl)
203 {
204         int num_ctlr_slots;             /* Not needed; PCI Express has 1 slot per port*/
205         int first_device_num;           /* Not needed */
206         int physical_slot_num;
207         u8 ctrlcap;                     
208         int rc;
209
210         rc = pcie_get_ctlr_slot_config(ctrl, &num_ctlr_slots, &first_device_num, &physical_slot_num, &ctrlcap);
211         if (rc) {
212                 err("%s: get_ctlr_slot_config fail for b:d (%x:%x)\n", __FUNCTION__, ctrl->bus, ctrl->device);
213                 return (-1);
214         }
215
216         ctrl->num_slots = num_ctlr_slots;       /* PCI Express has 1 slot per port */
217         ctrl->slot_device_offset = first_device_num;
218         ctrl->first_slot = physical_slot_num;
219         ctrl->ctrlcap = ctrlcap;        
220
221         dbg("%s: bus(0x%x) num_slot(0x%x) 1st_dev(0x%x) psn(0x%x) ctrlcap(%x) for b:d (%x:%x)\n",
222                 __FUNCTION__, ctrl->slot_bus, num_ctlr_slots, first_device_num, physical_slot_num, ctrlcap, 
223                 ctrl->bus, ctrl->device);
224
225         return (0);
226 }
227
228
229 /*
230  * set_attention_status - Turns the Amber LED for a slot on, off or blink
231  */
232 static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
233 {
234         struct slot *slot = hotplug_slot->private;
235
236         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
237
238         hotplug_slot->info->attention_status = status;
239         
240         if (ATTN_LED(slot->ctrl->ctrlcap)) 
241                 slot->hpc_ops->set_attention_status(slot, status);
242
243         return 0;
244 }
245
246
247 static int enable_slot(struct hotplug_slot *hotplug_slot)
248 {
249         struct slot *slot = hotplug_slot->private;
250
251         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
252
253         return pciehp_enable_slot(slot);
254 }
255
256
257 static int disable_slot(struct hotplug_slot *hotplug_slot)
258 {
259         struct slot *slot = hotplug_slot->private;
260
261         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
262
263         return pciehp_disable_slot(slot);
264 }
265
266 static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
267 {
268         struct slot *slot = hotplug_slot->private;
269         int retval;
270
271         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
272
273         retval = slot->hpc_ops->get_power_status(slot, value);
274         if (retval < 0)
275                 *value = hotplug_slot->info->power_status;
276
277         return 0;
278 }
279
280 static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
281 {
282         struct slot *slot = hotplug_slot->private;
283         int retval;
284
285         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
286
287         retval = slot->hpc_ops->get_attention_status(slot, value);
288         if (retval < 0)
289                 *value = hotplug_slot->info->attention_status;
290
291         return 0;
292 }
293
294 static int get_latch_status(struct hotplug_slot *hotplug_slot, u8 *value)
295 {
296         struct slot *slot = hotplug_slot->private;
297         int retval;
298
299         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
300
301         retval = slot->hpc_ops->get_latch_status(slot, value);
302         if (retval < 0)
303                 *value = hotplug_slot->info->latch_status;
304
305         return 0;
306 }
307
308 static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
309 {
310         struct slot *slot = hotplug_slot->private;
311         int retval;
312
313         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
314
315         retval = slot->hpc_ops->get_adapter_status(slot, value);
316         if (retval < 0)
317                 *value = hotplug_slot->info->adapter_status;
318
319         return 0;
320 }
321
322 static int get_max_bus_speed(struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
323 {
324         struct slot *slot = hotplug_slot->private;
325         int retval;
326
327         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
328         
329         retval = slot->hpc_ops->get_max_bus_speed(slot, value);
330         if (retval < 0)
331                 *value = PCI_SPEED_UNKNOWN;
332
333         return 0;
334 }
335
336 static int get_cur_bus_speed(struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
337 {
338         struct slot *slot = hotplug_slot->private;
339         int retval;
340
341         dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
342         
343         retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
344         if (retval < 0)
345                 *value = PCI_SPEED_UNKNOWN;
346
347         return 0;
348 }
349
350 static int pcie_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
351 {
352         int rc;
353         struct controller *ctrl;
354         struct slot *t_slot;
355         int first_device_num = 0 ;      /* first PCI device number supported by this PCIE */  
356         int num_ctlr_slots;             /* number of slots supported by this HPC */
357         u8 value;
358
359         ctrl = kmalloc(sizeof(*ctrl), GFP_KERNEL);
360         if (!ctrl) {
361                 err("%s : out of memory\n", __FUNCTION__);
362                 goto err_out_none;
363         }
364         memset(ctrl, 0, sizeof(struct controller));
365
366         dbg("%s: DRV_thread pid = %d\n", __FUNCTION__, current->pid);
367
368         rc = pcie_init(ctrl, pdev,
369                 (php_intr_callback_t) pciehp_handle_attention_button,
370                 (php_intr_callback_t) pciehp_handle_switch_change,
371                 (php_intr_callback_t) pciehp_handle_presence_change,
372                 (php_intr_callback_t) pciehp_handle_power_fault);
373         if (rc) {
374                 dbg("%s: controller initialization failed\n", PCIE_MODULE_NAME);
375                 goto err_out_free_ctrl;
376         }
377
378         ctrl->pci_dev = pdev;
379
380         pci_set_drvdata(pdev, ctrl);
381
382         ctrl->pci_bus = kmalloc(sizeof(*ctrl->pci_bus), GFP_KERNEL);
383         if (!ctrl->pci_bus) {
384                 err("%s: out of memory\n", __FUNCTION__);
385                 rc = -ENOMEM;
386                 goto err_out_unmap_mmio_region;
387         }
388         dbg("%s: ctrl->pci_bus %p\n", __FUNCTION__, ctrl->pci_bus);
389         memcpy (ctrl->pci_bus, pdev->bus, sizeof (*ctrl->pci_bus));
390         ctrl->bus = pdev->bus->number;  /* ctrl bus */
391         ctrl->slot_bus = pdev->subordinate->number;  /* bus controlled by this HPC */
392
393         ctrl->device = PCI_SLOT(pdev->devfn);
394         ctrl->function = PCI_FUNC(pdev->devfn);
395         dbg("%s: ctrl bus=0x%x, device=%x, function=%x, irq=%x\n", __FUNCTION__,
396                 ctrl->bus, ctrl->device, ctrl->function, pdev->irq);
397
398         /*
399          *      Save configuration headers for this and subordinate PCI buses
400          */
401
402         rc = get_ctlr_slot_config(ctrl);
403         if (rc) {
404                 err(msg_initialization_err, rc);
405                 goto err_out_free_ctrl_bus;
406         }
407         first_device_num = ctrl->slot_device_offset;
408         num_ctlr_slots = ctrl->num_slots; 
409
410         /* Store PCI Config Space for all devices on this bus */
411         dbg("%s: Before calling pciehp_save_config, ctrl->bus %x,ctrl->slot_bus %x\n", 
412                 __FUNCTION__,ctrl->bus, ctrl->slot_bus);
413         rc = pciehp_save_config(ctrl, ctrl->slot_bus, num_ctlr_slots, first_device_num);
414         if (rc) {
415                 err("%s: unable to save PCI configuration data, error %d\n", __FUNCTION__, rc);
416                 goto err_out_free_ctrl_bus;
417         }
418
419         /* Get IO, memory, and IRQ resources for new devices */
420         rc = pciehprm_find_available_resources(ctrl);
421         ctrl->add_support = !rc;
422         
423         if (rc) {
424                 dbg("pciehprm_find_available_resources = %#x\n", rc);
425                 err("unable to locate PCI configuration resources for hot plug add.\n");
426                 goto err_out_free_ctrl_bus;
427         }
428
429         /* Setup the slot information structures */
430         rc = init_slots(ctrl);
431         if (rc) {
432                 err(msg_initialization_err, 6);
433                 goto err_out_free_ctrl_slot;
434         }
435
436         t_slot = pciehp_find_slot(ctrl, first_device_num);
437         dbg("%s: t_slot %p\n", __FUNCTION__, t_slot);
438
439         /*      Finish setting up the hot plug ctrl device */
440         ctrl->next_event = 0;
441
442         if (!pciehp_ctrl_list) {
443                 pciehp_ctrl_list = ctrl;
444                 ctrl->next = NULL;
445         } else {
446                 ctrl->next = pciehp_ctrl_list;
447                 pciehp_ctrl_list = ctrl;
448         }
449
450         /* Wait for exclusive access to hardware */
451         down(&ctrl->crit_sect);
452
453         t_slot->hpc_ops->get_adapter_status(t_slot, &value); /* Check if slot is occupied */
454         dbg("%s: adpater value %x\n", __FUNCTION__, value);
455         
456         if ((POWER_CTRL(ctrl->ctrlcap)) && !value) {
457                 rc = t_slot->hpc_ops->power_off_slot(t_slot); /* Power off slot if not occupied*/
458                 if (rc) {
459                         /* Done with exclusive hardware access */
460                         up(&ctrl->crit_sect);
461                         goto err_out_free_ctrl_slot;
462                 } else
463                         /* Wait for the command to complete */
464                         wait_for_ctrl_irq (ctrl);
465         }
466
467         /* Done with exclusive hardware access */
468         up(&ctrl->crit_sect);
469
470         return 0;
471
472 err_out_free_ctrl_slot:
473         cleanup_slots(ctrl);
474 err_out_free_ctrl_bus:
475         kfree(ctrl->pci_bus);
476 err_out_unmap_mmio_region:
477         ctrl->hpc_ops->release_ctlr(ctrl);
478 err_out_free_ctrl:
479         kfree(ctrl);
480 err_out_none:
481         return -ENODEV;
482 }
483
484
485 static int pcie_start_thread(void)
486 {
487         int loop;
488         int retval = 0;
489         
490         dbg("Initialize + Start the notification/polling mechanism \n");
491
492         retval = pciehp_event_start_thread();
493         if (retval) {
494                 dbg("pciehp_event_start_thread() failed\n");
495                 return retval;
496         }
497
498         dbg("Initialize slot lists\n");
499         /* One slot list for each bus in the system */
500         for (loop = 0; loop < 256; loop++) {
501                 pciehp_slot_list[loop] = NULL;
502         }
503
504         return retval;
505 }
506
507 static inline void __exit
508 free_pciehp_res(struct pci_resource *res)
509 {
510         struct pci_resource *tres;
511
512         while (res) {
513                 tres = res;
514                 res = res->next;
515                 kfree(tres);
516         }
517 }
518
519 static void __exit unload_pciehpd(void)
520 {
521         struct pci_func *next;
522         struct pci_func *TempSlot;
523         int loop;
524         struct controller *ctrl;
525         struct controller *tctrl;
526
527         ctrl = pciehp_ctrl_list;
528
529         while (ctrl) {
530                 cleanup_slots(ctrl);
531
532                 free_pciehp_res(ctrl->io_head);
533                 free_pciehp_res(ctrl->mem_head);
534                 free_pciehp_res(ctrl->p_mem_head);
535                 free_pciehp_res(ctrl->bus_head);
536
537                 kfree (ctrl->pci_bus);
538
539                 ctrl->hpc_ops->release_ctlr(ctrl);
540
541                 tctrl = ctrl;
542                 ctrl = ctrl->next;
543
544                 kfree(tctrl);
545         }
546
547         for (loop = 0; loop < 256; loop++) {
548                 next = pciehp_slot_list[loop];
549                 while (next != NULL) {
550                         free_pciehp_res(next->io_head);
551                         free_pciehp_res(next->mem_head);
552                         free_pciehp_res(next->p_mem_head);
553                         free_pciehp_res(next->bus_head);
554
555                         TempSlot = next;
556                         next = next->next;
557                         kfree(TempSlot);
558                 }
559         }
560
561         /* Stop the notification mechanism */
562         pciehp_event_stop_thread();
563
564 }
565
566
567 static struct pci_device_id pcied_pci_tbl[] = {
568         {
569         .class =        ((PCI_CLASS_BRIDGE_PCI << 8) | 0x00),
570         .class_mask =   ~0,
571         .vendor =       PCI_ANY_ID,
572         .device =       PCI_ANY_ID,
573         .subvendor =    PCI_ANY_ID,
574         .subdevice =    PCI_ANY_ID,
575         },
576         
577         { /* end: all zeroes */ }
578 };
579
580 MODULE_DEVICE_TABLE(pci, pcied_pci_tbl);
581
582
583
584 static struct pci_driver pcie_driver = {
585         .name           =       PCIE_MODULE_NAME,
586         .id_table       =       pcied_pci_tbl,
587         .probe          =       pcie_probe,
588         /* remove:      pcie_remove_one, */
589 };
590
591
592
593 static int __init pcied_init(void)
594 {
595         int retval = 0;
596
597 #ifdef CONFIG_HOTPLUG_PCI_PCIE_POLL_EVENT_MODE
598         pciehp_poll_mode = 1;
599 #endif
600
601         retval = pcie_start_thread();
602         if (retval)
603                 goto error_hpc_init;
604
605         retval = pciehprm_init(PCI);
606         if (!retval) {
607                 retval = pci_module_init(&pcie_driver);
608                 dbg("pci_module_init = %d\n", retval);
609                 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
610         }
611
612 error_hpc_init:
613         if (retval) {
614                 pciehprm_cleanup();
615                 pciehp_event_stop_thread();
616         } else
617                 pciehprm_print_pirt();
618
619         return retval;
620 }
621
622 static void __exit pcied_cleanup(void)
623 {
624         dbg("unload_pciehpd()\n");
625         unload_pciehpd();
626
627         pciehprm_cleanup();
628
629         dbg("pci_unregister_driver\n");
630         pci_unregister_driver(&pcie_driver);
631
632         info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
633 }
634
635 module_init(pcied_init);
636 module_exit(pcied_cleanup);