blob: fa60ae47d91d3080b73ce485a9c1219a1be4d771 [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 Kaneshigea4534562006-01-26 09:58:30 +090042LIST_HEAD(shpchp_ctrl_list);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -080043struct workqueue_struct *shpchp_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define DRIVER_VERSION "0.4"
46#define DRIVER_AUTHOR "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
47#define DRIVER_DESC "Standard Hot Plug PCI Controller Driver"
48
49MODULE_AUTHOR(DRIVER_AUTHOR);
50MODULE_DESCRIPTION(DRIVER_DESC);
51MODULE_LICENSE("GPL");
52
53module_param(shpchp_debug, bool, 0644);
54module_param(shpchp_poll_mode, bool, 0644);
55module_param(shpchp_poll_time, int, 0644);
56MODULE_PARM_DESC(shpchp_debug, "Debugging mode enabled or not");
57MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not");
58MODULE_PARM_DESC(shpchp_poll_time, "Polling mechanism frequency, in seconds");
59
60#define SHPC_MODULE_NAME "shpchp"
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static int set_attention_status (struct hotplug_slot *slot, u8 value);
63static int enable_slot (struct hotplug_slot *slot);
64static int disable_slot (struct hotplug_slot *slot);
65static int get_power_status (struct hotplug_slot *slot, u8 *value);
66static int get_attention_status (struct hotplug_slot *slot, u8 *value);
67static int get_latch_status (struct hotplug_slot *slot, u8 *value);
68static int get_adapter_status (struct hotplug_slot *slot, u8 *value);
Kenji Kaneshige81f15442005-12-05 19:31:00 +090069static int get_address (struct hotplug_slot *slot, u32 *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static int get_max_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
71static int get_cur_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
72
73static struct hotplug_slot_ops shpchp_hotplug_slot_ops = {
74 .owner = THIS_MODULE,
75 .set_attention_status = set_attention_status,
76 .enable_slot = enable_slot,
77 .disable_slot = disable_slot,
78 .get_power_status = get_power_status,
79 .get_attention_status = get_attention_status,
80 .get_latch_status = get_latch_status,
81 .get_adapter_status = get_adapter_status,
Kenji Kaneshige81f15442005-12-05 19:31:00 +090082 .get_address = get_address,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 .get_max_bus_speed = get_max_bus_speed,
84 .get_cur_bus_speed = get_cur_bus_speed,
85};
86
87/**
88 * release_slot - free up the memory used by a slot
89 * @hotplug_slot: slot to free
90 */
91static void release_slot(struct hotplug_slot *hotplug_slot)
92{
Dely Syee17fd92005-05-05 11:57:25 -070093 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
96
97 kfree(slot->hotplug_slot->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 kfree(slot->hotplug_slot);
99 kfree(slot);
100}
101
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900102static void make_slot_name(struct slot *slot)
103{
104 snprintf(slot->hotplug_slot->name, SLOT_NAME_SIZE, "%04d_%04d",
105 slot->bus, slot->number);
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int init_slots(struct controller *ctrl)
109{
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900110 struct slot *slot;
111 struct hotplug_slot *hotplug_slot;
112 struct hotplug_slot_info *info;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900113 int retval = -ENOMEM;
114 int i;
115 u32 sun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900117 for (i = 0; i < ctrl->num_slots; i++) {
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900118 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900119 if (!slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 goto error;
121
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900122 hotplug_slot = kzalloc(sizeof(*hotplug_slot), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900123 if (!hotplug_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 goto error_slot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900125 slot->hotplug_slot = hotplug_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900127 info = kzalloc(sizeof(*info), GFP_KERNEL);
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900128 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto error_hpslot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900130 hotplug_slot->info = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900132 hotplug_slot->name = slot->name;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900133
134 slot->hp_slot = i;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900135 slot->ctrl = ctrl;
136 slot->bus = ctrl->slot_bus;
137 slot->device = ctrl->slot_device_offset + i;
138 slot->hpc_ops = ctrl->hpc_ops;
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800139 mutex_init(&slot->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141 if (shpchprm_get_physical_slot_number(ctrl, &sun,
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900142 slot->bus, slot->device))
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900143 goto error_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900145 slot->number = sun;
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800146 INIT_WORK(&slot->work, queue_pushbutton_work, slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* register this slot with the hotplug pci core */
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900149 hotplug_slot->private = slot;
150 hotplug_slot->release = &release_slot;
151 make_slot_name(slot);
152 hotplug_slot->ops = &shpchp_hotplug_slot_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900154 get_power_status(hotplug_slot, &info->power_status);
155 get_attention_status(hotplug_slot, &info->attention_status);
156 get_latch_status(hotplug_slot, &info->latch_status);
157 get_adapter_status(hotplug_slot, &info->adapter_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900159 dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x "
160 "slot_device_offset=%x\n", slot->bus, slot->device,
161 slot->hp_slot, slot->number, ctrl->slot_device_offset);
162 retval = pci_hp_register(slot->hotplug_slot);
163 if (retval) {
164 err("pci_hp_register failed with error %d\n", retval);
Kenji Kaneshigebbe779d2006-01-26 10:04:56 +0900165 goto error_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 }
167
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900168 list_add(&slot->slot_list, &ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170
171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172error_info:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900173 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174error_hpslot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900175 kfree(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176error_slot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900177 kfree(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178error:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900179 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800182void cleanup_slots(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900184 struct list_head *tmp;
185 struct list_head *next;
186 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900188 list_for_each_safe(tmp, next, &ctrl->slot_list) {
189 slot = list_entry(tmp, struct slot, slot_list);
190 list_del(&slot->slot_list);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800191 cancel_delayed_work(&slot->work);
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800192 flush_scheduled_work();
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800193 flush_workqueue(shpchp_wq);
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900194 pci_hp_deregister(slot->hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196}
197
198static int get_ctlr_slot_config(struct controller *ctrl)
199{
200 int num_ctlr_slots;
201 int first_device_num;
202 int physical_slot_num;
203 int updown;
204 int rc;
205 int flags;
206
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900207 rc = shpc_get_ctlr_slot_config(ctrl, &num_ctlr_slots,
208 &first_device_num, &physical_slot_num,
209 &updown, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (rc) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900211 err("%s: get_ctlr_slot_config fail for b:d (%x:%x)\n",
212 __FUNCTION__, ctrl->bus, ctrl->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -1;
214 }
215
216 ctrl->num_slots = num_ctlr_slots;
217 ctrl->slot_device_offset = first_device_num;
218 ctrl->first_slot = physical_slot_num;
219 ctrl->slot_num_inc = updown; /* either -1 or 1 */
220
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900221 dbg("%s: num_slot(0x%x) 1st_dev(0x%x) psn(0x%x) updown(%d) for b:d "
222 "(%x:%x)\n", __FUNCTION__, num_ctlr_slots, first_device_num,
223 physical_slot_num, updown, ctrl->bus, ctrl->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 return 0;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*
229 * set_attention_status - Turns the Amber LED for a slot on, off or blink
230 */
231static int set_attention_status (struct hotplug_slot *hotplug_slot, u8 status)
232{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900233 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
236
237 hotplug_slot->info->attention_status = status;
238 slot->hpc_ops->set_attention_status(slot, status);
239
240 return 0;
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243static int enable_slot (struct hotplug_slot *hotplug_slot)
244{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900245 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
248
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800249 return shpchp_sysfs_enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252static int disable_slot (struct hotplug_slot *hotplug_slot)
253{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900254 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
257
Kenji Kaneshigea246fa42006-02-21 15:45:48 -0800258 return shpchp_sysfs_disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value)
262{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900263 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 int retval;
265
266 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
267
268 retval = slot->hpc_ops->get_power_status(slot, value);
269 if (retval < 0)
270 *value = hotplug_slot->info->power_status;
271
272 return 0;
273}
274
275static int get_attention_status (struct hotplug_slot *hotplug_slot, u8 *value)
276{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900277 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 int retval;
279
280 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
281
282 retval = slot->hpc_ops->get_attention_status(slot, value);
283 if (retval < 0)
284 *value = hotplug_slot->info->attention_status;
285
286 return 0;
287}
288
289static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value)
290{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900291 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 int retval;
293
294 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
295
296 retval = slot->hpc_ops->get_latch_status(slot, value);
297 if (retval < 0)
298 *value = hotplug_slot->info->latch_status;
299
300 return 0;
301}
302
303static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value)
304{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900305 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 int retval;
307
308 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
309
310 retval = slot->hpc_ops->get_adapter_status(slot, value);
311 if (retval < 0)
312 *value = hotplug_slot->info->adapter_status;
313
314 return 0;
315}
316
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900317static int get_address (struct hotplug_slot *hotplug_slot, u32 *value)
318{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900319 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900320 struct pci_bus *bus = slot->ctrl->pci_dev->subordinate;
321
322 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
323
324 *value = (pci_domain_nr(bus) << 16) | (slot->bus << 8) | slot->device;
325
326 return 0;
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329static int get_max_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
330{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900331 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int retval;
333
334 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 retval = slot->hpc_ops->get_max_bus_speed(slot, value);
337 if (retval < 0)
338 *value = PCI_SPEED_UNKNOWN;
339
340 return 0;
341}
342
343static int get_cur_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
344{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900345 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 int retval;
347
348 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
351 if (retval < 0)
352 *value = PCI_SPEED_UNKNOWN;
353
354 return 0;
355}
356
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700357static int is_shpc_capable(struct pci_dev *dev)
358{
359 if ((dev->vendor == PCI_VENDOR_ID_AMD) || (dev->device ==
360 PCI_DEVICE_ID_AMD_GOLAM_7450))
361 return 1;
362 if (pci_find_capability(dev, PCI_CAP_ID_SHPC))
363 return 1;
364
365 return 0;
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static int shpc_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
369{
370 int rc;
371 struct controller *ctrl;
372 struct slot *t_slot;
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900373 int first_device_num; /* first PCI device number */
374 int num_ctlr_slots; /* number of slots implemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700376 if (!is_shpc_capable(pdev))
377 return -ENODEV;
378
Kenji Kaneshige57c95c02006-01-26 10:02:41 +0900379 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 if (!ctrl) {
381 err("%s : out of memory\n", __FUNCTION__);
382 goto err_out_none;
383 }
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900384 INIT_LIST_HEAD(&ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
rajesh.shah@intel.comee138332005-10-13 12:05:42 -0700386 rc = shpc_init(ctrl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (rc) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900388 dbg("%s: controller initialization failed\n",
389 SHPC_MODULE_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 goto err_out_free_ctrl;
391 }
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 pci_set_drvdata(pdev, ctrl);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 ctrl->bus = pdev->bus->number;
396 ctrl->slot_bus = pdev->subordinate->number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 ctrl->device = PCI_SLOT(pdev->devfn);
398 ctrl->function = PCI_FUNC(pdev->devfn);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900399
400 dbg("ctrl bus=0x%x, device=%x, function=%x, irq=%x\n",
401 ctrl->bus, ctrl->device, ctrl->function, pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /*
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900404 * Save configuration headers for this and subordinate PCI buses
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 rc = get_ctlr_slot_config(ctrl);
407 if (rc) {
408 err(msg_initialization_err, rc);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800409 goto err_out_release_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411 first_device_num = ctrl->slot_device_offset;
412 num_ctlr_slots = ctrl->num_slots;
413
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -0700414 ctrl->add_support = 1;
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 /* Setup the slot information structures */
417 rc = init_slots(ctrl);
418 if (rc) {
419 err(msg_initialization_err, 6);
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800420 goto err_out_release_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422
423 /* Now hpc_functions (slot->hpc_ops->functions) are ready */
424 t_slot = shpchp_find_slot(ctrl, first_device_num);
425
426 /* Check for operation bus speed */
427 rc = t_slot->hpc_ops->get_cur_bus_speed(t_slot, &ctrl->speed);
428 dbg("%s: t_slot->hp_slot %x\n", __FUNCTION__,t_slot->hp_slot);
429
430 if (rc || ctrl->speed == PCI_SPEED_UNKNOWN) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900431 err(SHPC_MODULE_NAME ": Can't get current bus speed. "
432 "Set to 33MHz PCI.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 ctrl->speed = PCI_SPEED_33MHz;
434 }
435
Kenji Kaneshigea4534562006-01-26 09:58:30 +0900436 list_add(&ctrl->ctrl_list, &shpchp_ctrl_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 shpchp_create_ctrl_files(ctrl);
439
440 return 0;
441
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800442err_out_release_ctlr:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 ctrl->hpc_ops->release_ctlr(ctrl);
444err_out_free_ctrl:
445 kfree(ctrl);
446err_out_none:
447 return -ENODEV;
448}
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450static void __exit unload_shpchpd(void)
451{
Kenji Kaneshigea4534562006-01-26 09:58:30 +0900452 struct list_head *tmp;
453 struct list_head *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 struct controller *ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Kenji Kaneshigea4534562006-01-26 09:58:30 +0900456 list_for_each_safe(tmp, next, &shpchp_ctrl_list) {
457 ctrl = list_entry(tmp, struct controller, ctrl_list);
rajesh.shah@intel.comc2608a12005-10-13 12:05:44 -0700458 shpchp_remove_ctrl_files(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 ctrl->hpc_ops->release_ctlr(ctrl);
Kenji Kaneshigea4534562006-01-26 09:58:30 +0900460 kfree(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800463 destroy_workqueue(shpchp_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466static struct pci_device_id shpcd_pci_tbl[] = {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900467 {PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 { /* end: all zeroes */ }
469};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470MODULE_DEVICE_TABLE(pci, shpcd_pci_tbl);
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472static struct pci_driver shpc_driver = {
473 .name = SHPC_MODULE_NAME,
474 .id_table = shpcd_pci_tbl,
475 .probe = shpc_probe,
476 /* remove: shpc_remove_one, */
477};
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479static int __init shpcd_init(void)
480{
481 int retval = 0;
482
483#ifdef CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE
484 shpchp_poll_mode = 1;
485#endif
486
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800487 shpchp_wq = create_singlethread_workqueue("shpchpd");
488 if (!shpchp_wq)
489 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
rajesh.shah@intel.com424600f2005-10-13 12:05:38 -0700491 retval = pci_register_driver(&shpc_driver);
492 dbg("%s: pci_register_driver = %d\n", __FUNCTION__, retval);
493 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (retval) {
Kenji Kaneshigef7391f52006-02-21 15:45:45 -0800495 destroy_workqueue(shpchp_wq);
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -0700496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return retval;
498}
499
500static void __exit shpcd_cleanup(void)
501{
502 dbg("unload_shpchpd()\n");
503 unload_shpchpd();
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 pci_unregister_driver(&shpc_driver);
506
507 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
508}
509
510module_init(shpcd_init);
511module_exit(shpcd_cleanup);