blob: 3132d60a79f561e87ea19ff4589cdf71d2505c59 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Standard 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 *
Kristen Accardi8cf4c192005-08-16 15:16:10 -070026 * Send feedback to <greg@kroah.com>, <kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
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 "shpchp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* Global variables */
44int shpchp_debug;
45int shpchp_poll_mode;
46int shpchp_poll_time;
47struct controller *shpchp_ctrl_list; /* = NULL */
48struct pci_func *shpchp_slot_list[256];
49
50#define DRIVER_VERSION "0.4"
51#define DRIVER_AUTHOR "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
52#define DRIVER_DESC "Standard Hot Plug PCI Controller Driver"
53
54MODULE_AUTHOR(DRIVER_AUTHOR);
55MODULE_DESCRIPTION(DRIVER_DESC);
56MODULE_LICENSE("GPL");
57
58module_param(shpchp_debug, bool, 0644);
59module_param(shpchp_poll_mode, bool, 0644);
60module_param(shpchp_poll_time, int, 0644);
61MODULE_PARM_DESC(shpchp_debug, "Debugging mode enabled or not");
62MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not");
63MODULE_PARM_DESC(shpchp_poll_time, "Polling mechanism frequency, in seconds");
64
65#define SHPC_MODULE_NAME "shpchp"
66
67static int shpc_start_thread (void);
68static int set_attention_status (struct hotplug_slot *slot, u8 value);
69static int enable_slot (struct hotplug_slot *slot);
70static int disable_slot (struct hotplug_slot *slot);
71static int get_power_status (struct hotplug_slot *slot, u8 *value);
72static int get_attention_status (struct hotplug_slot *slot, u8 *value);
73static int get_latch_status (struct hotplug_slot *slot, u8 *value);
74static int get_adapter_status (struct hotplug_slot *slot, u8 *value);
75static int get_max_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
76static int get_cur_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
77
78static struct hotplug_slot_ops shpchp_hotplug_slot_ops = {
79 .owner = THIS_MODULE,
80 .set_attention_status = set_attention_status,
81 .enable_slot = enable_slot,
82 .disable_slot = disable_slot,
83 .get_power_status = get_power_status,
84 .get_attention_status = get_attention_status,
85 .get_latch_status = get_latch_status,
86 .get_adapter_status = get_adapter_status,
87 .get_max_bus_speed = get_max_bus_speed,
88 .get_cur_bus_speed = get_cur_bus_speed,
89};
90
91/**
92 * release_slot - free up the memory used by a slot
93 * @hotplug_slot: slot to free
94 */
95static void release_slot(struct hotplug_slot *hotplug_slot)
96{
Dely Syee17fd92005-05-05 11:57:25 -070097 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
100
101 kfree(slot->hotplug_slot->info);
102 kfree(slot->hotplug_slot->name);
103 kfree(slot->hotplug_slot);
104 kfree(slot);
105}
106
107static int init_slots(struct controller *ctrl)
108{
109 struct slot *new_slot;
110 u8 number_of_slots;
111 u8 slot_device;
112 u32 slot_number, sun;
113 int result = -ENOMEM;
114
115 dbg("%s\n",__FUNCTION__);
116
117 number_of_slots = ctrl->num_slots;
118 slot_device = ctrl->slot_device_offset;
119 slot_number = ctrl->first_slot;
120
121 while (number_of_slots) {
122 new_slot = (struct slot *) kmalloc(sizeof(struct slot), GFP_KERNEL);
123 if (!new_slot)
124 goto error;
125
126 memset(new_slot, 0, sizeof(struct slot));
127 new_slot->hotplug_slot = kmalloc (sizeof (struct hotplug_slot), GFP_KERNEL);
128 if (!new_slot->hotplug_slot)
129 goto error_slot;
130 memset(new_slot->hotplug_slot, 0, sizeof (struct hotplug_slot));
131
132 new_slot->hotplug_slot->info = kmalloc (sizeof (struct hotplug_slot_info), GFP_KERNEL);
133 if (!new_slot->hotplug_slot->info)
134 goto error_hpslot;
135 memset(new_slot->hotplug_slot->info, 0, sizeof (struct hotplug_slot_info));
136 new_slot->hotplug_slot->name = kmalloc (SLOT_NAME_SIZE, GFP_KERNEL);
137 if (!new_slot->hotplug_slot->name)
138 goto error_info;
139
140 new_slot->magic = SLOT_MAGIC;
141 new_slot->ctrl = ctrl;
142 new_slot->bus = ctrl->slot_bus;
143 new_slot->device = slot_device;
144 new_slot->hpc_ops = ctrl->hpc_ops;
145
146 if (shpchprm_get_physical_slot_number(ctrl, &sun,
147 new_slot->bus, new_slot->device))
148 goto error_name;
149
150 new_slot->number = sun;
151 new_slot->hp_slot = slot_device - ctrl->slot_device_offset;
152
153 /* register this slot with the hotplug pci core */
154 new_slot->hotplug_slot->private = new_slot;
155 new_slot->hotplug_slot->release = &release_slot;
156 make_slot_name(new_slot->hotplug_slot->name, SLOT_NAME_SIZE, new_slot);
157 new_slot->hotplug_slot->ops = &shpchp_hotplug_slot_ops;
158
159 new_slot->hpc_ops->get_power_status(new_slot, &(new_slot->hotplug_slot->info->power_status));
160 new_slot->hpc_ops->get_attention_status(new_slot, &(new_slot->hotplug_slot->info->attention_status));
161 new_slot->hpc_ops->get_latch_status(new_slot, &(new_slot->hotplug_slot->info->latch_status));
162 new_slot->hpc_ops->get_adapter_status(new_slot, &(new_slot->hotplug_slot->info->adapter_status));
163
164 dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x slot_device_offset=%x\n", new_slot->bus,
165 new_slot->device, new_slot->hp_slot, new_slot->number, ctrl->slot_device_offset);
166 result = pci_hp_register (new_slot->hotplug_slot);
167 if (result) {
168 err ("pci_hp_register failed with error %d\n", result);
169 goto error_name;
170 }
171
172 new_slot->next = ctrl->slot;
173 ctrl->slot = new_slot;
174
175 number_of_slots--;
176 slot_device++;
177 slot_number += ctrl->slot_num_inc;
178 }
179
180 return 0;
181
182error_name:
183 kfree(new_slot->hotplug_slot->name);
184error_info:
185 kfree(new_slot->hotplug_slot->info);
186error_hpslot:
187 kfree(new_slot->hotplug_slot);
188error_slot:
189 kfree(new_slot);
190error:
191 return result;
192}
193
194static void cleanup_slots(struct controller *ctrl)
195{
196 struct slot *old_slot, *next_slot;
197
198 old_slot = ctrl->slot;
199 ctrl->slot = NULL;
200
201 while (old_slot) {
202 next_slot = old_slot->next;
203 pci_hp_deregister(old_slot->hotplug_slot);
204 old_slot = next_slot;
205 }
206}
207
208static int get_ctlr_slot_config(struct controller *ctrl)
209{
210 int num_ctlr_slots;
211 int first_device_num;
212 int physical_slot_num;
213 int updown;
214 int rc;
215 int flags;
216
217 rc = shpc_get_ctlr_slot_config(ctrl, &num_ctlr_slots, &first_device_num, &physical_slot_num, &updown, &flags);
218 if (rc) {
219 err("%s: get_ctlr_slot_config fail for b:d (%x:%x)\n", __FUNCTION__, ctrl->bus, ctrl->device);
220 return -1;
221 }
222
223 ctrl->num_slots = num_ctlr_slots;
224 ctrl->slot_device_offset = first_device_num;
225 ctrl->first_slot = physical_slot_num;
226 ctrl->slot_num_inc = updown; /* either -1 or 1 */
227
228 dbg("%s: num_slot(0x%x) 1st_dev(0x%x) psn(0x%x) updown(%d) for b:d (%x:%x)\n",
229 __FUNCTION__, num_ctlr_slots, first_device_num, physical_slot_num, updown, ctrl->bus, ctrl->device);
230
231 return 0;
232}
233
234
235/*
236 * set_attention_status - Turns the Amber LED for a slot on, off or blink
237 */
238static int set_attention_status (struct hotplug_slot *hotplug_slot, u8 status)
239{
240 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
241
242 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
243
244 hotplug_slot->info->attention_status = status;
245 slot->hpc_ops->set_attention_status(slot, status);
246
247 return 0;
248}
249
250
251static int enable_slot (struct hotplug_slot *hotplug_slot)
252{
253 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
254
255 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
256
257 return shpchp_enable_slot(slot);
258}
259
260
261static int disable_slot (struct hotplug_slot *hotplug_slot)
262{
263 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
264
265 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
266
267 return shpchp_disable_slot(slot);
268}
269
270static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value)
271{
272 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
273 int retval;
274
275 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
276
277 retval = slot->hpc_ops->get_power_status(slot, value);
278 if (retval < 0)
279 *value = hotplug_slot->info->power_status;
280
281 return 0;
282}
283
284static int get_attention_status (struct hotplug_slot *hotplug_slot, u8 *value)
285{
286 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
287 int retval;
288
289 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
290
291 retval = slot->hpc_ops->get_attention_status(slot, value);
292 if (retval < 0)
293 *value = hotplug_slot->info->attention_status;
294
295 return 0;
296}
297
298static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value)
299{
300 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
301 int retval;
302
303 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
304
305 retval = slot->hpc_ops->get_latch_status(slot, value);
306 if (retval < 0)
307 *value = hotplug_slot->info->latch_status;
308
309 return 0;
310}
311
312static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value)
313{
314 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
315 int retval;
316
317 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
318
319 retval = slot->hpc_ops->get_adapter_status(slot, value);
320 if (retval < 0)
321 *value = hotplug_slot->info->adapter_status;
322
323 return 0;
324}
325
326static int get_max_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
327{
328 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
329 int retval;
330
331 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
332
333 retval = slot->hpc_ops->get_max_bus_speed(slot, value);
334 if (retval < 0)
335 *value = PCI_SPEED_UNKNOWN;
336
337 return 0;
338}
339
340static int get_cur_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
341{
342 struct slot *slot = get_slot (hotplug_slot, __FUNCTION__);
343 int retval;
344
345 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
346
347 retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
348 if (retval < 0)
349 *value = PCI_SPEED_UNKNOWN;
350
351 return 0;
352}
353
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700354static int is_shpc_capable(struct pci_dev *dev)
355{
356 if ((dev->vendor == PCI_VENDOR_ID_AMD) || (dev->device ==
357 PCI_DEVICE_ID_AMD_GOLAM_7450))
358 return 1;
359 if (pci_find_capability(dev, PCI_CAP_ID_SHPC))
360 return 1;
361
362 return 0;
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365static int shpc_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
366{
367 int rc;
368 struct controller *ctrl;
369 struct slot *t_slot;
370 int first_device_num; /* first PCI device number supported by this SHPC */
371 int num_ctlr_slots; /* number of slots supported by this SHPC */
372
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700373 if (!is_shpc_capable(pdev))
374 return -ENODEV;
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 ctrl = (struct controller *) kmalloc(sizeof(struct controller), GFP_KERNEL);
377 if (!ctrl) {
378 err("%s : out of memory\n", __FUNCTION__);
379 goto err_out_none;
380 }
381 memset(ctrl, 0, sizeof(struct controller));
382
383 dbg("DRV_thread pid = %d\n", current->pid);
384
385 rc = shpc_init(ctrl, pdev,
386 (php_intr_callback_t) shpchp_handle_attention_button,
387 (php_intr_callback_t) shpchp_handle_switch_change,
388 (php_intr_callback_t) shpchp_handle_presence_change,
389 (php_intr_callback_t) shpchp_handle_power_fault);
390 if (rc) {
391 dbg("%s: controller initialization failed\n", SHPC_MODULE_NAME);
392 goto err_out_free_ctrl;
393 }
394
395 dbg("%s: controller initialization success\n", __FUNCTION__);
396 ctrl->pci_dev = pdev; /* pci_dev of the P2P bridge */
397
398 pci_set_drvdata(pdev, ctrl);
399
400 ctrl->pci_bus = kmalloc (sizeof (*ctrl->pci_bus), GFP_KERNEL);
401 if (!ctrl->pci_bus) {
402 err("out of memory\n");
403 rc = -ENOMEM;
404 goto err_out_unmap_mmio_region;
405 }
406
407 memcpy (ctrl->pci_bus, pdev->bus, sizeof (*ctrl->pci_bus));
408 ctrl->bus = pdev->bus->number;
409 ctrl->slot_bus = pdev->subordinate->number;
410
411 ctrl->device = PCI_SLOT(pdev->devfn);
412 ctrl->function = PCI_FUNC(pdev->devfn);
413 dbg("ctrl bus=0x%x, device=%x, function=%x, irq=%x\n", ctrl->bus, ctrl->device, ctrl->function, pdev->irq);
414
415 /*
416 * Save configuration headers for this and subordinate PCI buses
417 */
418
419 rc = get_ctlr_slot_config(ctrl);
420 if (rc) {
421 err(msg_initialization_err, rc);
422 goto err_out_free_ctrl_bus;
423 }
424 first_device_num = ctrl->slot_device_offset;
425 num_ctlr_slots = ctrl->num_slots;
426
427 /* Store PCI Config Space for all devices on this bus */
428 rc = shpchp_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
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -0700434 ctrl->add_support = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /* 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 /* Now hpc_functions (slot->hpc_ops->functions) are ready */
444 t_slot = shpchp_find_slot(ctrl, first_device_num);
445
446 /* Check for operation bus speed */
447 rc = t_slot->hpc_ops->get_cur_bus_speed(t_slot, &ctrl->speed);
448 dbg("%s: t_slot->hp_slot %x\n", __FUNCTION__,t_slot->hp_slot);
449
450 if (rc || ctrl->speed == PCI_SPEED_UNKNOWN) {
451 err(SHPC_MODULE_NAME ": Can't get current bus speed. Set to 33MHz PCI.\n");
452 ctrl->speed = PCI_SPEED_33MHz;
453 }
454
455 /* Finish setting up the hot plug ctrl device */
456 ctrl->next_event = 0;
457
458 if (!shpchp_ctrl_list) {
459 shpchp_ctrl_list = ctrl;
460 ctrl->next = NULL;
461 } else {
462 ctrl->next = shpchp_ctrl_list;
463 shpchp_ctrl_list = ctrl;
464 }
465
466 shpchp_create_ctrl_files(ctrl);
467
468 return 0;
469
470err_out_free_ctrl_slot:
471 cleanup_slots(ctrl);
472err_out_free_ctrl_bus:
473 kfree(ctrl->pci_bus);
474err_out_unmap_mmio_region:
475 ctrl->hpc_ops->release_ctlr(ctrl);
476err_out_free_ctrl:
477 kfree(ctrl);
478err_out_none:
479 return -ENODEV;
480}
481
482
483static int shpc_start_thread(void)
484{
485 int loop;
486 int retval = 0;
487
488 dbg("Initialize + Start the notification/polling mechanism \n");
489
490 retval = shpchp_event_start_thread();
491 if (retval) {
492 dbg("shpchp_event_start_thread() failed\n");
493 return retval;
494 }
495
496 dbg("Initialize slot lists\n");
497 /* One slot list for each bus in the system */
498 for (loop = 0; loop < 256; loop++) {
499 shpchp_slot_list[loop] = NULL;
500 }
501
502 return retval;
503}
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505static void __exit unload_shpchpd(void)
506{
507 struct pci_func *next;
508 struct pci_func *TempSlot;
509 int loop;
510 struct controller *ctrl;
511 struct controller *tctrl;
512
513 ctrl = shpchp_ctrl_list;
514
515 while (ctrl) {
516 cleanup_slots(ctrl);
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 kfree (ctrl->pci_bus);
519
520 dbg("%s: calling release_ctlr\n", __FUNCTION__);
521 ctrl->hpc_ops->release_ctlr(ctrl);
522
523 tctrl = ctrl;
524 ctrl = ctrl->next;
525
526 kfree(tctrl);
527 }
528
529 for (loop = 0; loop < 256; loop++) {
530 next = shpchp_slot_list[loop];
531 while (next != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 TempSlot = next;
533 next = next->next;
534 kfree(TempSlot);
535 }
536 }
537
538 /* Stop the notification mechanism */
539 shpchp_event_stop_thread();
540
541}
542
543
544static struct pci_device_id shpcd_pci_tbl[] = {
545 {
546 .class = ((PCI_CLASS_BRIDGE_PCI << 8) | 0x00),
547 .class_mask = ~0,
548 .vendor = PCI_ANY_ID,
549 .device = PCI_ANY_ID,
550 .subvendor = PCI_ANY_ID,
551 .subdevice = PCI_ANY_ID,
552 },
553
554 { /* end: all zeroes */ }
555};
556
557MODULE_DEVICE_TABLE(pci, shpcd_pci_tbl);
558
559
560
561static struct pci_driver shpc_driver = {
562 .name = SHPC_MODULE_NAME,
563 .id_table = shpcd_pci_tbl,
564 .probe = shpc_probe,
565 /* remove: shpc_remove_one, */
566};
567
568
569
570static int __init shpcd_init(void)
571{
572 int retval = 0;
573
574#ifdef CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE
575 shpchp_poll_mode = 1;
576#endif
577
578 retval = shpc_start_thread();
579 if (retval)
580 goto error_hpc_init;
581
rajesh.shah@intel.com424600f2005-10-13 12:05:38 -0700582 retval = pci_register_driver(&shpc_driver);
583 dbg("%s: pci_register_driver = %d\n", __FUNCTION__, retval);
584 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586error_hpc_init:
587 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 shpchp_event_stop_thread();
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -0700589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return retval;
591}
592
593static void __exit shpcd_cleanup(void)
594{
595 dbg("unload_shpchpd()\n");
596 unload_shpchpd();
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 dbg("pci_unregister_driver\n");
599 pci_unregister_driver(&shpc_driver);
600
601 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
602}
603
604module_init(shpcd_init);
605module_exit(shpcd_cleanup);