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