blob: 590cd3cbe0104fd8a3e1eba2a70f28aa8d3e9260 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/moduleparam.h>
32#include <linux/kernel.h>
33#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/pci.h>
Kenji Kaneshigef7391f52006-02-21 15:45:45 -080035#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "shpchp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Global variables */
39int shpchp_debug;
40int shpchp_poll_mode;
41int shpchp_poll_time;
Kenji Kaneshigef7391f52006-02-21 15:45:45 -080042struct workqueue_struct *shpchp_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
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"
47
48MODULE_AUTHOR(DRIVER_AUTHOR);
49MODULE_DESCRIPTION(DRIVER_DESC);
50MODULE_LICENSE("GPL");
51
52module_param(shpchp_debug, bool, 0644);
53module_param(shpchp_poll_mode, bool, 0644);
54module_param(shpchp_poll_time, int, 0644);
55MODULE_PARM_DESC(shpchp_debug, "Debugging mode enabled or not");
56MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not");
57MODULE_PARM_DESC(shpchp_poll_time, "Polling mechanism frequency, in seconds");
58
59#define SHPC_MODULE_NAME "shpchp"
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static int set_attention_status (struct hotplug_slot *slot, u8 value);
62static int enable_slot (struct hotplug_slot *slot);
63static int disable_slot (struct hotplug_slot *slot);
64static int get_power_status (struct hotplug_slot *slot, u8 *value);
65static int get_attention_status (struct hotplug_slot *slot, u8 *value);
66static int get_latch_status (struct hotplug_slot *slot, u8 *value);
67static int get_adapter_status (struct hotplug_slot *slot, u8 *value);
Kenji Kaneshige81f15442005-12-05 19:31:00 +090068static int get_address (struct hotplug_slot *slot, u32 *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int get_max_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
70static int get_cur_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
71
72static struct hotplug_slot_ops shpchp_hotplug_slot_ops = {
73 .owner = THIS_MODULE,
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,
Kenji Kaneshige81f15442005-12-05 19:31:00 +090081 .get_address = get_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .get_max_bus_speed = get_max_bus_speed,
83 .get_cur_bus_speed = get_cur_bus_speed,
84};
85
86/**
87 * release_slot - free up the memory used by a slot
88 * @hotplug_slot: slot to free
89 */
90static void release_slot(struct hotplug_slot *hotplug_slot)
91{
Dely Syee17fd92005-05-05 11:57:25 -070092 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
95
96 kfree(slot->hotplug_slot->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 kfree(slot->hotplug_slot);
98 kfree(slot);
99}
100
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900101static void make_slot_name(struct slot *slot)
102{
103 snprintf(slot->hotplug_slot->name, SLOT_NAME_SIZE, "%04d_%04d",
104 slot->bus, slot->number);
105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static int init_slots(struct controller *ctrl)
108{
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900109 struct slot *slot;
110 struct hotplug_slot *hotplug_slot;
111 struct hotplug_slot_info *info;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900112 int retval = -ENOMEM;
113 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900115 for (i = 0; i < ctrl->num_slots; i++) {
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900116 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900117 if (!slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 goto error;
119
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900120 hotplug_slot = kzalloc(sizeof(*hotplug_slot), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900121 if (!hotplug_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto error_slot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900123 slot->hotplug_slot = hotplug_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900125 info = kzalloc(sizeof(*info), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900126 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 goto error_hpslot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900128 hotplug_slot->info = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900130 hotplug_slot->name = slot->name;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900131
132 slot->hp_slot = i;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900133 slot->ctrl = ctrl;
Kenji Kaneshige227b84c2006-12-16 15:25:42 -0800134 slot->bus = ctrl->pci_dev->subordinate->number;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900135 slot->device = ctrl->slot_device_offset + i;
136 slot->hpc_ops = ctrl->hpc_ops;
Kenji Kaneshige6f39be22006-12-16 15:25:49 -0800137 slot->number = ctrl->first_slot + (ctrl->slot_num_inc * i);
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800138 mutex_init(&slot->lock);
David Howellsc4028952006-11-22 14:57:56 +0000139 INIT_DELAYED_WORK(&slot->work, queue_pushbutton_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 /* register this slot with the hotplug pci core */
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900142 hotplug_slot->private = slot;
143 hotplug_slot->release = &release_slot;
144 make_slot_name(slot);
145 hotplug_slot->ops = &shpchp_hotplug_slot_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900147 get_power_status(hotplug_slot, &info->power_status);
148 get_attention_status(hotplug_slot, &info->attention_status);
149 get_latch_status(hotplug_slot, &info->latch_status);
150 get_adapter_status(hotplug_slot, &info->adapter_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900152 dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x "
153 "slot_device_offset=%x\n", slot->bus, slot->device,
154 slot->hp_slot, slot->number, ctrl->slot_device_offset);
155 retval = pci_hp_register(slot->hotplug_slot);
156 if (retval) {
157 err("pci_hp_register failed with error %d\n", retval);
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900158 goto error_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900161 list_add(&slot->slot_list, &ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163
164 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165error_info:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900166 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167error_hpslot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900168 kfree(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169error_slot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900170 kfree(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171error:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900172 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800175void cleanup_slots(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900177 struct list_head *tmp;
178 struct list_head *next;
179 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900181 list_for_each_safe(tmp, next, &ctrl->slot_list) {
182 slot = list_entry(tmp, struct slot, slot_list);
183 list_del(&slot->slot_list);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800184 cancel_delayed_work(&slot->work);
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800185 flush_scheduled_work();
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800186 flush_workqueue(shpchp_wq);
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900187 pci_hp_deregister(slot->hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
192 * set_attention_status - Turns the Amber LED for a slot on, off or blink
193 */
194static int set_attention_status (struct hotplug_slot *hotplug_slot, u8 status)
195{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800196 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
199
200 hotplug_slot->info->attention_status = status;
201 slot->hpc_ops->set_attention_status(slot, status);
202
203 return 0;
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static int enable_slot (struct hotplug_slot *hotplug_slot)
207{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800208 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
211
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800212 return shpchp_sysfs_enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215static int disable_slot (struct hotplug_slot *hotplug_slot)
216{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800217 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
220
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800221 return shpchp_sysfs_disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
224static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value)
225{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800226 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int retval;
228
229 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
230
231 retval = slot->hpc_ops->get_power_status(slot, value);
232 if (retval < 0)
233 *value = hotplug_slot->info->power_status;
234
235 return 0;
236}
237
238static int get_attention_status (struct hotplug_slot *hotplug_slot, u8 *value)
239{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800240 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int retval;
242
243 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
244
245 retval = slot->hpc_ops->get_attention_status(slot, value);
246 if (retval < 0)
247 *value = hotplug_slot->info->attention_status;
248
249 return 0;
250}
251
252static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value)
253{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800254 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 int retval;
256
257 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
258
259 retval = slot->hpc_ops->get_latch_status(slot, value);
260 if (retval < 0)
261 *value = hotplug_slot->info->latch_status;
262
263 return 0;
264}
265
266static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value)
267{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800268 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int retval;
270
271 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
272
273 retval = slot->hpc_ops->get_adapter_status(slot, value);
274 if (retval < 0)
275 *value = hotplug_slot->info->adapter_status;
276
277 return 0;
278}
279
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900280static int get_address (struct hotplug_slot *hotplug_slot, u32 *value)
281{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800282 struct slot *slot = get_slot(hotplug_slot);
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900283 struct pci_bus *bus = slot->ctrl->pci_dev->subordinate;
284
285 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
286
287 *value = (pci_domain_nr(bus) << 16) | (slot->bus << 8) | slot->device;
288
289 return 0;
290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292static int get_max_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
293{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800294 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int retval;
296
297 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 retval = slot->hpc_ops->get_max_bus_speed(slot, value);
300 if (retval < 0)
301 *value = PCI_SPEED_UNKNOWN;
302
303 return 0;
304}
305
306static int get_cur_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
307{
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800308 struct slot *slot = get_slot(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 int retval;
310
311 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
314 if (retval < 0)
315 *value = PCI_SPEED_UNKNOWN;
316
317 return 0;
318}
319
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700320static int is_shpc_capable(struct pci_dev *dev)
321{
322 if ((dev->vendor == PCI_VENDOR_ID_AMD) || (dev->device ==
323 PCI_DEVICE_ID_AMD_GOLAM_7450))
324 return 1;
325 if (pci_find_capability(dev, PCI_CAP_ID_SHPC))
326 return 1;
327
328 return 0;
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331static int shpc_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
332{
333 int rc;
334 struct controller *ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700336 if (!is_shpc_capable(pdev))
337 return -ENODEV;
338
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900339 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (!ctrl) {
341 err("%s : out of memory\n", __FUNCTION__);
342 goto err_out_none;
343 }
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900344 INIT_LIST_HEAD(&ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
rajesh.shah@intel.comee138332005-10-13 12:05:42 -0700346 rc = shpc_init(ctrl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (rc) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900348 dbg("%s: controller initialization failed\n",
349 SHPC_MODULE_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 goto err_out_free_ctrl;
351 }
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 pci_set_drvdata(pdev, ctrl);
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /* Setup the slot information structures */
356 rc = init_slots(ctrl);
357 if (rc) {
Kenji Kaneshige8352e042006-12-16 15:25:57 -0800358 err("%s: slot initialization failed\n", SHPC_MODULE_NAME);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800359 goto err_out_release_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
Greg Kroah-Hartmane1b95dc2006-08-28 11:43:25 -0700362 rc = shpchp_create_ctrl_files(ctrl);
363 if (rc)
364 goto err_cleanup_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 return 0;
367
Greg Kroah-Hartmane1b95dc2006-08-28 11:43:25 -0700368err_cleanup_slots:
369 cleanup_slots(ctrl);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800370err_out_release_ctlr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ctrl->hpc_ops->release_ctlr(ctrl);
372err_out_free_ctrl:
373 kfree(ctrl);
374err_out_none:
375 return -ENODEV;
376}
377
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800378static void shpc_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800380 struct controller *ctrl = pci_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800382 shpchp_remove_ctrl_files(ctrl);
383 ctrl->hpc_ops->release_ctlr(ctrl);
384 kfree(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387static struct pci_device_id shpcd_pci_tbl[] = {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900388 {PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 { /* end: all zeroes */ }
390};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391MODULE_DEVICE_TABLE(pci, shpcd_pci_tbl);
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393static struct pci_driver shpc_driver = {
394 .name = SHPC_MODULE_NAME,
395 .id_table = shpcd_pci_tbl,
396 .probe = shpc_probe,
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800397 .remove = shpc_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static int __init shpcd_init(void)
401{
402 int retval = 0;
403
404#ifdef CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE
405 shpchp_poll_mode = 1;
406#endif
407
rajesh.shah@intel.com424600f2005-10-13 12:05:38 -0700408 retval = pci_register_driver(&shpc_driver);
409 dbg("%s: pci_register_driver = %d\n", __FUNCTION__, retval);
410 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return retval;
412}
413
414static void __exit shpcd_cleanup(void)
415{
416 dbg("unload_shpchpd()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 pci_unregister_driver(&shpc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
419}
420
421module_init(shpcd_init);
422module_exit(shpcd_cleanup);