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