PCI: prevent duplicate slot names
[safe/jmp/linux-2.6] / 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/module.h>
31 #include <linux/moduleparam.h>
32 #include <linux/kernel.h>
33 #include <linux/types.h>
34 #include <linux/pci.h>
35 #include "pciehp.h"
36 #include <linux/interrupt.h>
37 #include <linux/time.h>
38
39 /* Global variables */
40 int pciehp_debug;
41 int pciehp_poll_mode;
42 int pciehp_poll_time;
43 int pciehp_force;
44 struct workqueue_struct *pciehp_wq;
45
46 #define DRIVER_VERSION  "0.4"
47 #define DRIVER_AUTHOR   "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
48 #define DRIVER_DESC     "PCI Express Hot Plug Controller Driver"
49
50 MODULE_AUTHOR(DRIVER_AUTHOR);
51 MODULE_DESCRIPTION(DRIVER_DESC);
52 MODULE_LICENSE("GPL");
53
54 module_param(pciehp_debug, bool, 0644);
55 module_param(pciehp_poll_mode, bool, 0644);
56 module_param(pciehp_poll_time, int, 0644);
57 module_param(pciehp_force, bool, 0644);
58 MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not");
59 MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not");
60 MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds");
61 MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if _OSC and OSHP are missing");
62
63 #define PCIE_MODULE_NAME "pciehp"
64
65 static int set_attention_status (struct hotplug_slot *slot, u8 value);
66 static int enable_slot          (struct hotplug_slot *slot);
67 static int disable_slot         (struct hotplug_slot *slot);
68 static int get_power_status     (struct hotplug_slot *slot, u8 *value);
69 static int get_attention_status (struct hotplug_slot *slot, u8 *value);
70 static int get_latch_status     (struct hotplug_slot *slot, u8 *value);
71 static int get_adapter_status   (struct hotplug_slot *slot, u8 *value);
72 static int get_max_bus_speed    (struct hotplug_slot *slot, enum pci_bus_speed *value);
73 static int get_cur_bus_speed    (struct hotplug_slot *slot, enum pci_bus_speed *value);
74
75 static struct hotplug_slot_ops pciehp_hotplug_slot_ops = {
76         .owner =                THIS_MODULE,
77         .set_attention_status = set_attention_status,
78         .enable_slot =          enable_slot,
79         .disable_slot =         disable_slot,
80         .get_power_status =     get_power_status,
81         .get_attention_status = get_attention_status,
82         .get_latch_status =     get_latch_status,
83         .get_adapter_status =   get_adapter_status,
84         .get_max_bus_speed =    get_max_bus_speed,
85         .get_cur_bus_speed =    get_cur_bus_speed,
86 };
87
88 /*
89  * Check the status of the Electro Mechanical Interlock (EMI)
90  */
91 static int get_lock_status(struct hotplug_slot *hotplug_slot, u8 *value)
92 {
93         struct slot *slot = hotplug_slot->private;
94         return (slot->hpc_ops->get_emi_status(slot, value));
95 }
96
97 /*
98  * sysfs interface for the Electro Mechanical Interlock (EMI)
99  * 1 == locked, 0 == unlocked
100  */
101 static ssize_t lock_read_file(struct hotplug_slot *slot, char *buf)
102 {
103         int retval;
104         u8 value;
105
106         retval = get_lock_status(slot, &value);
107         if (retval)
108                 goto lock_read_exit;
109         retval = sprintf (buf, "%d\n", value);
110
111 lock_read_exit:
112         return retval;
113 }
114
115 /*
116  * Change the status of the Electro Mechanical Interlock (EMI)
117  * This is a toggle - in addition there must be at least 1 second
118  * in between toggles.
119  */
120 static int set_lock_status(struct hotplug_slot *hotplug_slot, u8 status)
121 {
122         struct slot *slot = hotplug_slot->private;
123         int retval;
124         u8 value;
125
126         mutex_lock(&slot->ctrl->crit_sect);
127
128         /* has it been >1 sec since our last toggle? */
129         if ((get_seconds() - slot->last_emi_toggle) < 1)
130                 return -EINVAL;
131
132         /* see what our current state is */
133         retval = get_lock_status(hotplug_slot, &value);
134         if (retval || (value == status))
135                 goto set_lock_exit;
136
137         slot->hpc_ops->toggle_emi(slot);
138 set_lock_exit:
139         mutex_unlock(&slot->ctrl->crit_sect);
140         return 0;
141 }
142
143 /*
144  * sysfs interface which allows the user to toggle the Electro Mechanical
145  * Interlock.  Valid values are either 0 or 1.  0 == unlock, 1 == lock
146  */
147 static ssize_t lock_write_file(struct hotplug_slot *hotplug_slot,
148                 const char *buf, size_t count)
149 {
150         struct slot *slot = hotplug_slot->private;
151         unsigned long llock;
152         u8 lock;
153         int retval = 0;
154
155         llock = simple_strtoul(buf, NULL, 10);
156         lock = (u8)(llock & 0xff);
157
158         switch (lock) {
159                 case 0:
160                 case 1:
161                         retval = set_lock_status(hotplug_slot, lock);
162                         break;
163                 default:
164                         ctrl_err(slot->ctrl, "%d is an invalid lock value\n",
165                                  lock);
166                         retval = -EINVAL;
167         }
168         if (retval)
169                 return retval;
170         return count;
171 }
172
173 static struct hotplug_slot_attribute hotplug_slot_attr_lock = {
174         .attr = {.name = "lock", .mode = S_IFREG | S_IRUGO | S_IWUSR},
175         .show = lock_read_file,
176         .store = lock_write_file
177 };
178
179 /**
180  * release_slot - free up the memory used by a slot
181  * @hotplug_slot: slot to free
182  */
183 static void release_slot(struct hotplug_slot *hotplug_slot)
184 {
185         struct slot *slot = hotplug_slot->private;
186
187         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
188                  __func__, hotplug_slot->name);
189
190         kfree(hotplug_slot->info);
191         kfree(hotplug_slot);
192 }
193
194 static int init_slots(struct controller *ctrl)
195 {
196         struct slot *slot;
197         struct hotplug_slot *hotplug_slot;
198         struct hotplug_slot_info *info;
199         int retval = -ENOMEM;
200
201         list_for_each_entry(slot, &ctrl->slot_list, slot_list) {
202                 hotplug_slot = kzalloc(sizeof(*hotplug_slot), GFP_KERNEL);
203                 if (!hotplug_slot)
204                         goto error;
205
206                 info = kzalloc(sizeof(*info), GFP_KERNEL);
207                 if (!info)
208                         goto error_hpslot;
209
210                 /* register this slot with the hotplug pci core */
211                 hotplug_slot->info = info;
212                 hotplug_slot->name = slot->name;
213                 hotplug_slot->private = slot;
214                 hotplug_slot->release = &release_slot;
215                 hotplug_slot->ops = &pciehp_hotplug_slot_ops;
216                 get_power_status(hotplug_slot, &info->power_status);
217                 get_attention_status(hotplug_slot, &info->attention_status);
218                 get_latch_status(hotplug_slot, &info->latch_status);
219                 get_adapter_status(hotplug_slot, &info->adapter_status);
220                 slot->hotplug_slot = hotplug_slot;
221
222                 ctrl_dbg(ctrl, "Registering bus=%x dev=%x hp_slot=%x sun=%x "
223                          "slot_device_offset=%x\n", slot->bus, slot->device,
224                          slot->hp_slot, slot->number, ctrl->slot_device_offset);
225                 retval = pci_hp_register(hotplug_slot,
226                                          ctrl->pci_dev->subordinate,
227                                          slot->device,
228                                          slot->name);
229                 if (retval) {
230                         ctrl_err(ctrl, "pci_hp_register failed with error %d\n",
231                                  retval);
232                         goto error_info;
233                 }
234                 /* create additional sysfs entries */
235                 if (EMI(ctrl)) {
236                         retval = sysfs_create_file(&hotplug_slot->pci_slot->kobj,
237                                 &hotplug_slot_attr_lock.attr);
238                         if (retval) {
239                                 pci_hp_deregister(hotplug_slot);
240                                 ctrl_err(ctrl, "cannot create additional sysfs "
241                                          "entries\n");
242                                 goto error_info;
243                         }
244                 }
245         }
246
247         return 0;
248 error_info:
249         kfree(info);
250 error_hpslot:
251         kfree(hotplug_slot);
252 error:
253         return retval;
254 }
255
256 static void cleanup_slots(struct controller *ctrl)
257 {
258         struct slot *slot;
259
260         list_for_each_entry(slot, &ctrl->slot_list, slot_list) {
261                 if (EMI(ctrl))
262                         sysfs_remove_file(&slot->hotplug_slot->pci_slot->kobj,
263                                 &hotplug_slot_attr_lock.attr);
264                 pci_hp_deregister(slot->hotplug_slot);
265         }
266 }
267
268 /*
269  * set_attention_status - Turns the Amber LED for a slot on, off or blink
270  */
271 static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
272 {
273         struct slot *slot = hotplug_slot->private;
274
275         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
276                   __func__, hotplug_slot->name);
277
278         hotplug_slot->info->attention_status = status;
279
280         if (ATTN_LED(slot->ctrl))
281                 slot->hpc_ops->set_attention_status(slot, status);
282
283         return 0;
284 }
285
286
287 static int enable_slot(struct hotplug_slot *hotplug_slot)
288 {
289         struct slot *slot = hotplug_slot->private;
290
291         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
292                  __func__, hotplug_slot->name);
293
294         return pciehp_sysfs_enable_slot(slot);
295 }
296
297
298 static int disable_slot(struct hotplug_slot *hotplug_slot)
299 {
300         struct slot *slot = hotplug_slot->private;
301
302         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
303                   __func__, hotplug_slot->name);
304
305         return pciehp_sysfs_disable_slot(slot);
306 }
307
308 static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
309 {
310         struct slot *slot = hotplug_slot->private;
311         int retval;
312
313         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
314                   __func__, hotplug_slot->name);
315
316         retval = slot->hpc_ops->get_power_status(slot, value);
317         if (retval < 0)
318                 *value = hotplug_slot->info->power_status;
319
320         return 0;
321 }
322
323 static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
324 {
325         struct slot *slot = hotplug_slot->private;
326         int retval;
327
328         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
329                   __func__, hotplug_slot->name);
330
331         retval = slot->hpc_ops->get_attention_status(slot, value);
332         if (retval < 0)
333                 *value = hotplug_slot->info->attention_status;
334
335         return 0;
336 }
337
338 static int get_latch_status(struct hotplug_slot *hotplug_slot, u8 *value)
339 {
340         struct slot *slot = hotplug_slot->private;
341         int retval;
342
343         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
344                  __func__, hotplug_slot->name);
345
346         retval = slot->hpc_ops->get_latch_status(slot, value);
347         if (retval < 0)
348                 *value = hotplug_slot->info->latch_status;
349
350         return 0;
351 }
352
353 static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
354 {
355         struct slot *slot = hotplug_slot->private;
356         int retval;
357
358         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
359                  __func__, hotplug_slot->name);
360
361         retval = slot->hpc_ops->get_adapter_status(slot, value);
362         if (retval < 0)
363                 *value = hotplug_slot->info->adapter_status;
364
365         return 0;
366 }
367
368 static int get_max_bus_speed(struct hotplug_slot *hotplug_slot,
369                                 enum pci_bus_speed *value)
370 {
371         struct slot *slot = hotplug_slot->private;
372         int retval;
373
374         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
375                  __func__, hotplug_slot->name);
376
377         retval = slot->hpc_ops->get_max_bus_speed(slot, value);
378         if (retval < 0)
379                 *value = PCI_SPEED_UNKNOWN;
380
381         return 0;
382 }
383
384 static int get_cur_bus_speed(struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
385 {
386         struct slot *slot = hotplug_slot->private;
387         int retval;
388
389         ctrl_dbg(slot->ctrl, "%s - physical_slot = %s\n",
390                  __func__, hotplug_slot->name);
391
392         retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
393         if (retval < 0)
394                 *value = PCI_SPEED_UNKNOWN;
395
396         return 0;
397 }
398
399 static int pciehp_probe(struct pcie_device *dev, const struct pcie_port_service_id *id)
400 {
401         int rc;
402         struct controller *ctrl;
403         struct slot *t_slot;
404         u8 value;
405         struct pci_dev *pdev = dev->port;
406
407         if (pciehp_force)
408                 dev_info(&dev->device,
409                          "Bypassing BIOS check for pciehp use on %s\n",
410                          pci_name(pdev));
411         else if (pciehp_get_hp_hw_control_from_firmware(pdev))
412                 goto err_out_none;
413
414         ctrl = pcie_init(dev);
415         if (!ctrl) {
416                 dev_err(&dev->device, "controller initialization failed\n");
417                 goto err_out_none;
418         }
419         set_service_data(dev, ctrl);
420
421         /* Setup the slot information structures */
422         rc = init_slots(ctrl);
423         if (rc) {
424                 if (rc == -EBUSY)
425                         ctrl_warn(ctrl, "slot already registered by another "
426                                   "hotplug driver\n");
427                 else
428                         ctrl_err(ctrl, "slot initialization failed\n");
429                 goto err_out_release_ctlr;
430         }
431
432         t_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);
433
434         t_slot->hpc_ops->get_adapter_status(t_slot, &value); /* Check if slot is occupied */
435         if (value && pciehp_force) {
436                 rc = pciehp_enable_slot(t_slot);
437                 if (rc) /* -ENODEV: shouldn't happen, but deal with it */
438                         value = 0;
439         }
440         if ((POWER_CTRL(ctrl)) && !value) {
441                 rc = t_slot->hpc_ops->power_off_slot(t_slot); /* Power off slot if not occupied*/
442                 if (rc)
443                         goto err_out_free_ctrl_slot;
444         }
445
446         return 0;
447
448 err_out_free_ctrl_slot:
449         cleanup_slots(ctrl);
450 err_out_release_ctlr:
451         ctrl->hpc_ops->release_ctlr(ctrl);
452 err_out_none:
453         return -ENODEV;
454 }
455
456 static void pciehp_remove (struct pcie_device *dev)
457 {
458         struct controller *ctrl = get_service_data(dev);
459
460         cleanup_slots(ctrl);
461         ctrl->hpc_ops->release_ctlr(ctrl);
462 }
463
464 #ifdef CONFIG_PM
465 static int pciehp_suspend (struct pcie_device *dev, pm_message_t state)
466 {
467         dev_info(&dev->device, "%s ENTRY\n", __func__);
468         return 0;
469 }
470
471 static int pciehp_resume (struct pcie_device *dev)
472 {
473         dev_info(&dev->device, "%s ENTRY\n", __func__);
474         if (pciehp_force) {
475                 struct controller *ctrl = get_service_data(dev);
476                 struct slot *t_slot;
477                 u8 status;
478
479                 /* reinitialize the chipset's event detection logic */
480                 pcie_enable_notification(ctrl);
481
482                 t_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);
483
484                 /* Check if slot is occupied */
485                 t_slot->hpc_ops->get_adapter_status(t_slot, &status);
486                 if (status)
487                         pciehp_enable_slot(t_slot);
488                 else
489                         pciehp_disable_slot(t_slot);
490         }
491         return 0;
492 }
493 #endif
494
495 static struct pcie_port_service_id port_pci_ids[] = { {
496         .vendor = PCI_ANY_ID,
497         .device = PCI_ANY_ID,
498         .port_type = PCIE_ANY_PORT,
499         .service_type = PCIE_PORT_SERVICE_HP,
500         .driver_data =  0,
501         }, { /* end: all zeroes */ }
502 };
503
504 static struct pcie_port_service_driver hpdriver_portdrv = {
505         .name           = PCIE_MODULE_NAME,
506         .id_table       = &port_pci_ids[0],
507
508         .probe          = pciehp_probe,
509         .remove         = pciehp_remove,
510
511 #ifdef  CONFIG_PM
512         .suspend        = pciehp_suspend,
513         .resume         = pciehp_resume,
514 #endif  /* PM */
515 };
516
517 static int __init pcied_init(void)
518 {
519         int retval = 0;
520
521         retval = pcie_port_service_register(&hpdriver_portdrv);
522         dbg("pcie_port_service_register = %d\n", retval);
523         info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
524         if (retval)
525                 dbg("%s: Failure to register service\n", __func__);
526         return retval;
527 }
528
529 static void __exit pcied_cleanup(void)
530 {
531         dbg("unload_pciehpd()\n");
532         pcie_port_service_unregister(&hpdriver_portdrv);
533         info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
534 }
535
536 module_init(pcied_init);
537 module_exit(pcied_cleanup);