blob: 235c18a22393d04e0ba86ec5f511d086149f6d75 [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
Kristen Accardi783c49f2006-03-03 10:16:05 -0800107
108
109
110static int
111shpchprm_get_physical_slot_number(struct controller *ctrl, u32 *sun,
112 u8 busnum, u8 devnum)
113{
114 int offset = devnum - ctrl->slot_device_offset;
115
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);
119 return 0;
120}
121
122
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static int init_slots(struct controller *ctrl)
125{
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900126 struct slot *slot;
127 struct hotplug_slot *hotplug_slot;
128 struct hotplug_slot_info *info;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900129 int retval = -ENOMEM;
130 int i;
131 u32 sun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900133 for (i = 0; i < ctrl->num_slots; i++) {
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900134 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900135 if (!slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 goto error;
137
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900138 hotplug_slot = kzalloc(sizeof(*hotplug_slot), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900139 if (!hotplug_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 goto error_slot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900141 slot->hotplug_slot = hotplug_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900143 info = kzalloc(sizeof(*info), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900144 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 goto error_hpslot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900146 hotplug_slot->info = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900148 hotplug_slot->name = slot->name;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900149
150 slot->hp_slot = i;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900151 slot->ctrl = ctrl;
152 slot->bus = ctrl->slot_bus;
153 slot->device = ctrl->slot_device_offset + i;
154 slot->hpc_ops = ctrl->hpc_ops;
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800155 mutex_init(&slot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 if (shpchprm_get_physical_slot_number(ctrl, &sun,
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900158 slot->bus, slot->device))
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900159 goto error_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900161 slot->number = sun;
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800162 INIT_WORK(&slot->work, queue_pushbutton_work, slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /* register this slot with the hotplug pci core */
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900165 hotplug_slot->private = slot;
166 hotplug_slot->release = &release_slot;
167 make_slot_name(slot);
168 hotplug_slot->ops = &shpchp_hotplug_slot_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900170 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900175 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);
179 if (retval) {
180 err("pci_hp_register failed with error %d\n", retval);
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900181 goto error_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900184 list_add(&slot->slot_list, &ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186
187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188error_info:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900189 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190error_hpslot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900191 kfree(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192error_slot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900193 kfree(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194error:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900195 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800198void cleanup_slots(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900200 struct list_head *tmp;
201 struct list_head *next;
202 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900204 list_for_each_safe(tmp, next, &ctrl->slot_list) {
205 slot = list_entry(tmp, struct slot, slot_list);
206 list_del(&slot->slot_list);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800207 cancel_delayed_work(&slot->work);
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800208 flush_scheduled_work();
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800209 flush_workqueue(shpchp_wq);
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900210 pci_hp_deregister(slot->hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212}
213
214static int get_ctlr_slot_config(struct controller *ctrl)
215{
216 int num_ctlr_slots;
217 int first_device_num;
218 int physical_slot_num;
219 int updown;
220 int rc;
221 int flags;
222
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900223 rc = shpc_get_ctlr_slot_config(ctrl, &num_ctlr_slots,
224 &first_device_num, &physical_slot_num,
225 &updown, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (rc) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900227 err("%s: get_ctlr_slot_config fail for b:d (%x:%x)\n",
228 __FUNCTION__, ctrl->bus, ctrl->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return -1;
230 }
231
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 */
236
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900237 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 return 0;
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * set_attention_status - Turns the Amber LED for a slot on, off or blink
246 */
247static int set_attention_status (struct hotplug_slot *hotplug_slot, u8 status)
248{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900249 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
252
253 hotplug_slot->info->attention_status = status;
254 slot->hpc_ops->set_attention_status(slot, status);
255
256 return 0;
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static int enable_slot (struct hotplug_slot *hotplug_slot)
260{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900261 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
264
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800265 return shpchp_sysfs_enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268static int disable_slot (struct hotplug_slot *hotplug_slot)
269{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900270 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
273
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800274 return shpchp_sysfs_disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value)
278{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900279 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 int retval;
281
282 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
283
284 retval = slot->hpc_ops->get_power_status(slot, value);
285 if (retval < 0)
286 *value = hotplug_slot->info->power_status;
287
288 return 0;
289}
290
291static int get_attention_status (struct hotplug_slot *hotplug_slot, u8 *value)
292{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900293 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 int retval;
295
296 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
297
298 retval = slot->hpc_ops->get_attention_status(slot, value);
299 if (retval < 0)
300 *value = hotplug_slot->info->attention_status;
301
302 return 0;
303}
304
305static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value)
306{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900307 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int retval;
309
310 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
311
312 retval = slot->hpc_ops->get_latch_status(slot, value);
313 if (retval < 0)
314 *value = hotplug_slot->info->latch_status;
315
316 return 0;
317}
318
319static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value)
320{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900321 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 int retval;
323
324 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
325
326 retval = slot->hpc_ops->get_adapter_status(slot, value);
327 if (retval < 0)
328 *value = hotplug_slot->info->adapter_status;
329
330 return 0;
331}
332
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900333static int get_address (struct hotplug_slot *hotplug_slot, u32 *value)
334{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900335 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900336 struct pci_bus *bus = slot->ctrl->pci_dev->subordinate;
337
338 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
339
340 *value = (pci_domain_nr(bus) << 16) | (slot->bus << 8) | slot->device;
341
342 return 0;
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static int get_max_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
346{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900347 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int retval;
349
350 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 retval = slot->hpc_ops->get_max_bus_speed(slot, value);
353 if (retval < 0)
354 *value = PCI_SPEED_UNKNOWN;
355
356 return 0;
357}
358
359static int get_cur_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
360{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900361 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 int retval;
363
364 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
367 if (retval < 0)
368 *value = PCI_SPEED_UNKNOWN;
369
370 return 0;
371}
372
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700373static int is_shpc_capable(struct pci_dev *dev)
374{
375 if ((dev->vendor == PCI_VENDOR_ID_AMD) || (dev->device ==
376 PCI_DEVICE_ID_AMD_GOLAM_7450))
377 return 1;
378 if (pci_find_capability(dev, PCI_CAP_ID_SHPC))
379 return 1;
380
381 return 0;
382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384static int shpc_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
385{
386 int rc;
387 struct controller *ctrl;
388 struct slot *t_slot;
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900389 int first_device_num; /* first PCI device number */
390 int num_ctlr_slots; /* number of slots implemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700392 if (!is_shpc_capable(pdev))
393 return -ENODEV;
394
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900395 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (!ctrl) {
397 err("%s : out of memory\n", __FUNCTION__);
398 goto err_out_none;
399 }
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900400 INIT_LIST_HEAD(&ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
rajesh.shah@intel.comee138332005-10-13 12:05:42 -0700402 rc = shpc_init(ctrl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (rc) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900404 dbg("%s: controller initialization failed\n",
405 SHPC_MODULE_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 goto err_out_free_ctrl;
407 }
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 pci_set_drvdata(pdev, ctrl);
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 ctrl->bus = pdev->bus->number;
412 ctrl->slot_bus = pdev->subordinate->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 ctrl->device = PCI_SLOT(pdev->devfn);
414 ctrl->function = PCI_FUNC(pdev->devfn);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900415
416 dbg("ctrl bus=0x%x, device=%x, function=%x, irq=%x\n",
417 ctrl->bus, ctrl->device, ctrl->function, pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 /*
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900420 * Save configuration headers for this and subordinate PCI buses
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 rc = get_ctlr_slot_config(ctrl);
423 if (rc) {
424 err(msg_initialization_err, rc);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800425 goto err_out_release_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
427 first_device_num = ctrl->slot_device_offset;
428 num_ctlr_slots = ctrl->num_slots;
429
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -0700430 ctrl->add_support = 1;
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* Setup the slot information structures */
433 rc = init_slots(ctrl);
434 if (rc) {
435 err(msg_initialization_err, 6);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800436 goto err_out_release_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
439 /* Now hpc_functions (slot->hpc_ops->functions) are ready */
440 t_slot = shpchp_find_slot(ctrl, first_device_num);
441
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);
445
446 if (rc || ctrl->speed == PCI_SPEED_UNKNOWN) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900447 err(SHPC_MODULE_NAME ": Can't get current bus speed. "
448 "Set to 33MHz PCI.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ctrl->speed = PCI_SPEED_33MHz;
450 }
451
Greg Kroah-Hartmane1b95dc2006-08-28 11:43:25 -0700452 rc = shpchp_create_ctrl_files(ctrl);
453 if (rc)
454 goto err_cleanup_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 return 0;
457
Greg Kroah-Hartmane1b95dc2006-08-28 11:43:25 -0700458err_cleanup_slots:
459 cleanup_slots(ctrl);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800460err_out_release_ctlr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 ctrl->hpc_ops->release_ctlr(ctrl);
462err_out_free_ctrl:
463 kfree(ctrl);
464err_out_none:
465 return -ENODEV;
466}
467
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800468static void shpc_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800470 struct controller *ctrl = pci_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800472 shpchp_remove_ctrl_files(ctrl);
473 ctrl->hpc_ops->release_ctlr(ctrl);
474 kfree(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477static struct pci_device_id shpcd_pci_tbl[] = {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900478 {PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 { /* end: all zeroes */ }
480};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481MODULE_DEVICE_TABLE(pci, shpcd_pci_tbl);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static struct pci_driver shpc_driver = {
484 .name = SHPC_MODULE_NAME,
485 .id_table = shpcd_pci_tbl,
486 .probe = shpc_probe,
Kenji Kaneshigee6b82b132006-02-21 15:45:50 -0800487 .remove = shpc_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488};
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static int __init shpcd_init(void)
491{
492 int retval = 0;
493
494#ifdef CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE
495 shpchp_poll_mode = 1;
496#endif
497
rajesh.shah@intel.com424600f2005-10-13 12:05:38 -0700498 retval = pci_register_driver(&shpc_driver);
499 dbg("%s: pci_register_driver = %d\n", __FUNCTION__, retval);
500 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return retval;
502}
503
504static void __exit shpcd_cleanup(void)
505{
506 dbg("unload_shpchpd()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 pci_unregister_driver(&shpc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
509}
510
511module_init(shpcd_init);
512module_exit(shpcd_cleanup);