2 * Standard Hot Plug Controller Driver
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
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.
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
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.
26 * Send feedback to <greg@kroah.com>, <kristen.c.accardi@intel.com>
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 <linux/workqueue.h>
38 /* Global variables */
42 struct workqueue_struct
*shpchp_wq
;
44 #define DRIVER_VERSION "0.4"
45 #define DRIVER_AUTHOR "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
46 #define DRIVER_DESC "Standard Hot Plug PCI Controller Driver"
48 MODULE_AUTHOR(DRIVER_AUTHOR
);
49 MODULE_DESCRIPTION(DRIVER_DESC
);
50 MODULE_LICENSE("GPL");
52 module_param(shpchp_debug
, bool, 0644);
53 module_param(shpchp_poll_mode
, bool, 0644);
54 module_param(shpchp_poll_time
, int, 0644);
55 MODULE_PARM_DESC(shpchp_debug
, "Debugging mode enabled or not");
56 MODULE_PARM_DESC(shpchp_poll_mode
, "Using polling mechanism for hot-plug events or not");
57 MODULE_PARM_DESC(shpchp_poll_time
, "Polling mechanism frequency, in seconds");
59 #define SHPC_MODULE_NAME "shpchp"
61 static int set_attention_status (struct hotplug_slot
*slot
, u8 value
);
62 static int enable_slot (struct hotplug_slot
*slot
);
63 static int disable_slot (struct hotplug_slot
*slot
);
64 static int get_power_status (struct hotplug_slot
*slot
, u8
*value
);
65 static int get_attention_status (struct hotplug_slot
*slot
, u8
*value
);
66 static int get_latch_status (struct hotplug_slot
*slot
, u8
*value
);
67 static int get_adapter_status (struct hotplug_slot
*slot
, u8
*value
);
68 static int get_address (struct hotplug_slot
*slot
, u32
*value
);
69 static int get_max_bus_speed (struct hotplug_slot
*slot
, enum pci_bus_speed
*value
);
70 static int get_cur_bus_speed (struct hotplug_slot
*slot
, enum pci_bus_speed
*value
);
72 static struct hotplug_slot_ops shpchp_hotplug_slot_ops
= {
74 .set_attention_status
= set_attention_status
,
75 .enable_slot
= enable_slot
,
76 .disable_slot
= disable_slot
,
77 .get_power_status
= get_power_status
,
78 .get_attention_status
= get_attention_status
,
79 .get_latch_status
= get_latch_status
,
80 .get_adapter_status
= get_adapter_status
,
81 .get_address
= get_address
,
82 .get_max_bus_speed
= get_max_bus_speed
,
83 .get_cur_bus_speed
= get_cur_bus_speed
,
87 * release_slot - free up the memory used by a slot
88 * @hotplug_slot: slot to free
90 static void release_slot(struct hotplug_slot
*hotplug_slot
)
92 struct slot
*slot
= hotplug_slot
->private;
94 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
96 kfree(slot
->hotplug_slot
->info
);
97 kfree(slot
->hotplug_slot
);
101 static void make_slot_name(struct slot
*slot
)
103 snprintf(slot
->hotplug_slot
->name
, SLOT_NAME_SIZE
, "%04d_%04d",
104 slot
->bus
, slot
->number
);
111 shpchprm_get_physical_slot_number(struct controller
*ctrl
, u32
*sun
,
112 u8 busnum
, u8 devnum
)
114 int offset
= devnum
- ctrl
->slot_device_offset
;
116 dbg("%s: ctrl->slot_num_inc %d, offset %d\n", __FUNCTION__
,
117 ctrl
->slot_num_inc
, offset
);
118 *sun
= (u8
) (ctrl
->first_slot
+ ctrl
->slot_num_inc
*offset
);
124 static int init_slots(struct controller
*ctrl
)
127 struct hotplug_slot
*hotplug_slot
;
128 struct hotplug_slot_info
*info
;
129 int retval
= -ENOMEM
;
133 for (i
= 0; i
< ctrl
->num_slots
; i
++) {
134 slot
= kzalloc(sizeof(*slot
), GFP_KERNEL
);
138 hotplug_slot
= kzalloc(sizeof(*hotplug_slot
), GFP_KERNEL
);
141 slot
->hotplug_slot
= hotplug_slot
;
143 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
146 hotplug_slot
->info
= info
;
148 hotplug_slot
->name
= slot
->name
;
152 slot
->bus
= ctrl
->slot_bus
;
153 slot
->device
= ctrl
->slot_device_offset
+ i
;
154 slot
->hpc_ops
= ctrl
->hpc_ops
;
155 mutex_init(&slot
->lock
);
157 if (shpchprm_get_physical_slot_number(ctrl
, &sun
,
158 slot
->bus
, slot
->device
))
162 INIT_WORK(&slot
->work
, queue_pushbutton_work
, slot
);
164 /* register this slot with the hotplug pci core */
165 hotplug_slot
->private = slot
;
166 hotplug_slot
->release
= &release_slot
;
167 make_slot_name(slot
);
168 hotplug_slot
->ops
= &shpchp_hotplug_slot_ops
;
170 get_power_status(hotplug_slot
, &info
->power_status
);
171 get_attention_status(hotplug_slot
, &info
->attention_status
);
172 get_latch_status(hotplug_slot
, &info
->latch_status
);
173 get_adapter_status(hotplug_slot
, &info
->adapter_status
);
175 dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x "
176 "slot_device_offset=%x\n", slot
->bus
, slot
->device
,
177 slot
->hp_slot
, slot
->number
, ctrl
->slot_device_offset
);
178 retval
= pci_hp_register(slot
->hotplug_slot
);
180 err("pci_hp_register failed with error %d\n", retval
);
184 list_add(&slot
->slot_list
, &ctrl
->slot_list
);
198 void cleanup_slots(struct controller
*ctrl
)
200 struct list_head
*tmp
;
201 struct list_head
*next
;
204 list_for_each_safe(tmp
, next
, &ctrl
->slot_list
) {
205 slot
= list_entry(tmp
, struct slot
, slot_list
);
206 list_del(&slot
->slot_list
);
207 cancel_delayed_work(&slot
->work
);
208 flush_scheduled_work();
209 flush_workqueue(shpchp_wq
);
210 pci_hp_deregister(slot
->hotplug_slot
);
214 static int get_ctlr_slot_config(struct controller
*ctrl
)
217 int first_device_num
;
218 int physical_slot_num
;
223 rc
= shpc_get_ctlr_slot_config(ctrl
, &num_ctlr_slots
,
224 &first_device_num
, &physical_slot_num
,
227 err("%s: get_ctlr_slot_config fail for b:d (%x:%x)\n",
228 __FUNCTION__
, ctrl
->bus
, ctrl
->device
);
232 ctrl
->num_slots
= num_ctlr_slots
;
233 ctrl
->slot_device_offset
= first_device_num
;
234 ctrl
->first_slot
= physical_slot_num
;
235 ctrl
->slot_num_inc
= updown
; /* either -1 or 1 */
237 dbg("%s: num_slot(0x%x) 1st_dev(0x%x) psn(0x%x) updown(%d) for b:d "
238 "(%x:%x)\n", __FUNCTION__
, num_ctlr_slots
, first_device_num
,
239 physical_slot_num
, updown
, ctrl
->bus
, ctrl
->device
);
245 * set_attention_status - Turns the Amber LED for a slot on, off or blink
247 static int set_attention_status (struct hotplug_slot
*hotplug_slot
, u8 status
)
249 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
251 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
253 hotplug_slot
->info
->attention_status
= status
;
254 slot
->hpc_ops
->set_attention_status(slot
, status
);
259 static int enable_slot (struct hotplug_slot
*hotplug_slot
)
261 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
263 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
265 return shpchp_sysfs_enable_slot(slot
);
268 static int disable_slot (struct hotplug_slot
*hotplug_slot
)
270 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
272 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
274 return shpchp_sysfs_disable_slot(slot
);
277 static int get_power_status (struct hotplug_slot
*hotplug_slot
, u8
*value
)
279 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
282 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
284 retval
= slot
->hpc_ops
->get_power_status(slot
, value
);
286 *value
= hotplug_slot
->info
->power_status
;
291 static int get_attention_status (struct hotplug_slot
*hotplug_slot
, u8
*value
)
293 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
296 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
298 retval
= slot
->hpc_ops
->get_attention_status(slot
, value
);
300 *value
= hotplug_slot
->info
->attention_status
;
305 static int get_latch_status (struct hotplug_slot
*hotplug_slot
, u8
*value
)
307 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
310 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
312 retval
= slot
->hpc_ops
->get_latch_status(slot
, value
);
314 *value
= hotplug_slot
->info
->latch_status
;
319 static int get_adapter_status (struct hotplug_slot
*hotplug_slot
, u8
*value
)
321 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
324 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
326 retval
= slot
->hpc_ops
->get_adapter_status(slot
, value
);
328 *value
= hotplug_slot
->info
->adapter_status
;
333 static int get_address (struct hotplug_slot
*hotplug_slot
, u32
*value
)
335 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
336 struct pci_bus
*bus
= slot
->ctrl
->pci_dev
->subordinate
;
338 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
340 *value
= (pci_domain_nr(bus
) << 16) | (slot
->bus
<< 8) | slot
->device
;
345 static int get_max_bus_speed (struct hotplug_slot
*hotplug_slot
, enum pci_bus_speed
*value
)
347 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
350 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
352 retval
= slot
->hpc_ops
->get_max_bus_speed(slot
, value
);
354 *value
= PCI_SPEED_UNKNOWN
;
359 static int get_cur_bus_speed (struct hotplug_slot
*hotplug_slot
, enum pci_bus_speed
*value
)
361 struct slot
*slot
= get_slot(hotplug_slot
, __FUNCTION__
);
364 dbg("%s - physical_slot = %s\n", __FUNCTION__
, hotplug_slot
->name
);
366 retval
= slot
->hpc_ops
->get_cur_bus_speed(slot
, value
);
368 *value
= PCI_SPEED_UNKNOWN
;
373 static int is_shpc_capable(struct pci_dev
*dev
)
375 if ((dev
->vendor
== PCI_VENDOR_ID_AMD
) || (dev
->device
==
376 PCI_DEVICE_ID_AMD_GOLAM_7450
))
378 if (pci_find_capability(dev
, PCI_CAP_ID_SHPC
))
384 static int shpc_probe(struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
387 struct controller
*ctrl
;
389 int first_device_num
; /* first PCI device number */
390 int num_ctlr_slots
; /* number of slots implemented */
392 if (!is_shpc_capable(pdev
))
395 ctrl
= kzalloc(sizeof(*ctrl
), GFP_KERNEL
);
397 err("%s : out of memory\n", __FUNCTION__
);
400 INIT_LIST_HEAD(&ctrl
->slot_list
);
402 rc
= shpc_init(ctrl
, pdev
);
404 dbg("%s: controller initialization failed\n",
406 goto err_out_free_ctrl
;
409 pci_set_drvdata(pdev
, ctrl
);
411 ctrl
->bus
= pdev
->bus
->number
;
412 ctrl
->slot_bus
= pdev
->subordinate
->number
;
413 ctrl
->device
= PCI_SLOT(pdev
->devfn
);
414 ctrl
->function
= PCI_FUNC(pdev
->devfn
);
416 dbg("ctrl bus=0x%x, device=%x, function=%x, irq=%x\n",
417 ctrl
->bus
, ctrl
->device
, ctrl
->function
, pdev
->irq
);
420 * Save configuration headers for this and subordinate PCI buses
422 rc
= get_ctlr_slot_config(ctrl
);
424 err(msg_initialization_err
, rc
);
425 goto err_out_release_ctlr
;
427 first_device_num
= ctrl
->slot_device_offset
;
428 num_ctlr_slots
= ctrl
->num_slots
;
430 ctrl
->add_support
= 1;
432 /* Setup the slot information structures */
433 rc
= init_slots(ctrl
);
435 err(msg_initialization_err
, 6);
436 goto err_out_release_ctlr
;
439 /* Now hpc_functions (slot->hpc_ops->functions) are ready */
440 t_slot
= shpchp_find_slot(ctrl
, first_device_num
);
442 /* Check for operation bus speed */
443 rc
= t_slot
->hpc_ops
->get_cur_bus_speed(t_slot
, &ctrl
->speed
);
444 dbg("%s: t_slot->hp_slot %x\n", __FUNCTION__
,t_slot
->hp_slot
);
446 if (rc
|| ctrl
->speed
== PCI_SPEED_UNKNOWN
) {
447 err(SHPC_MODULE_NAME
": Can't get current bus speed. "
448 "Set to 33MHz PCI.\n");
449 ctrl
->speed
= PCI_SPEED_33MHz
;
452 shpchp_create_ctrl_files(ctrl
);
456 err_out_release_ctlr
:
457 ctrl
->hpc_ops
->release_ctlr(ctrl
);
464 static void shpc_remove(struct pci_dev
*dev
)
466 struct controller
*ctrl
= pci_get_drvdata(dev
);
468 shpchp_remove_ctrl_files(ctrl
);
469 ctrl
->hpc_ops
->release_ctlr(ctrl
);
473 static struct pci_device_id shpcd_pci_tbl
[] = {
474 {PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI
<< 8) | 0x00), ~0)},
475 { /* end: all zeroes */ }
477 MODULE_DEVICE_TABLE(pci
, shpcd_pci_tbl
);
479 static struct pci_driver shpc_driver
= {
480 .name
= SHPC_MODULE_NAME
,
481 .id_table
= shpcd_pci_tbl
,
483 .remove
= shpc_remove
,
486 static int __init
shpcd_init(void)
490 #ifdef CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE
491 shpchp_poll_mode
= 1;
494 retval
= pci_register_driver(&shpc_driver
);
495 dbg("%s: pci_register_driver = %d\n", __FUNCTION__
, retval
);
496 info(DRIVER_DESC
" version: " DRIVER_VERSION
"\n");
500 static void __exit
shpcd_cleanup(void)
502 dbg("unload_shpchpd()\n");
503 pci_unregister_driver(&shpc_driver
);
504 info(DRIVER_DESC
" version: " DRIVER_VERSION
" unloaded\n");
507 module_init(shpcd_init
);
508 module_exit(shpcd_cleanup
);