blob: 547bf5d6fccabf025f56321daa34643d83880ab0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "shpchp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/* Global variables */
38int shpchp_debug;
39int shpchp_poll_mode;
40int shpchp_poll_time;
41struct controller *shpchp_ctrl_list; /* = NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#define DRIVER_VERSION "0.4"
44#define DRIVER_AUTHOR "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
45#define DRIVER_DESC "Standard Hot Plug PCI Controller Driver"
46
47MODULE_AUTHOR(DRIVER_AUTHOR);
48MODULE_DESCRIPTION(DRIVER_DESC);
49MODULE_LICENSE("GPL");
50
51module_param(shpchp_debug, bool, 0644);
52module_param(shpchp_poll_mode, bool, 0644);
53module_param(shpchp_poll_time, int, 0644);
54MODULE_PARM_DESC(shpchp_debug, "Debugging mode enabled or not");
55MODULE_PARM_DESC(shpchp_poll_mode, "Using polling mechanism for hot-plug events or not");
56MODULE_PARM_DESC(shpchp_poll_time, "Polling mechanism frequency, in seconds");
57
58#define SHPC_MODULE_NAME "shpchp"
59
60static int shpc_start_thread (void);
61static 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);
97 kfree(slot->hotplug_slot->name);
98 kfree(slot->hotplug_slot);
99 kfree(slot);
100}
101
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900102#define SLOT_NAME_SIZE 10
103static void make_slot_name(struct slot *slot)
104{
105 snprintf(slot->hotplug_slot->name, SLOT_NAME_SIZE, "%04d_%04d",
106 slot->bus, slot->number);
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static int init_slots(struct controller *ctrl)
110{
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900111 struct slot *slot;
112 struct hotplug_slot *hotplug_slot;
113 struct hotplug_slot_info *info;
114 char *name;
115 int retval = -ENOMEM;
116 int i;
117 u32 sun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900119 for (i = 0; i < ctrl->num_slots; i++) {
120 slot = kmalloc(sizeof(struct slot), GFP_KERNEL);
121 if (!slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 goto error;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900123 memset(slot, 0, sizeof(struct slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900125 hotplug_slot = kmalloc(sizeof(struct hotplug_slot),
126 GFP_KERNEL);
127 if (!hotplug_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 goto error_slot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900129 memset(hotplug_slot, 0, sizeof(struct hotplug_slot));
130 slot->hotplug_slot = hotplug_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900132 info = kmalloc(sizeof(struct hotplug_slot_info), GFP_KERNEL);
133 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 goto error_hpslot;
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900135 memset(info, 0, sizeof (struct hotplug_slot_info));
136 hotplug_slot->info = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900138 name = kmalloc(SLOT_NAME_SIZE, GFP_KERNEL);
139 if (!name)
140 goto error_info;
141 hotplug_slot->name = name;
142
143 slot->hp_slot = i;
144 slot->magic = SLOT_MAGIC;
145 slot->ctrl = ctrl;
146 slot->bus = ctrl->slot_bus;
147 slot->device = ctrl->slot_device_offset + i;
148 slot->hpc_ops = ctrl->hpc_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (shpchprm_get_physical_slot_number(ctrl, &sun,
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900151 slot->bus, slot->device))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 goto error_name;
153
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900154 slot->number = sun;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 /* register this slot with the hotplug pci core */
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900157 hotplug_slot->private = slot;
158 hotplug_slot->release = &release_slot;
159 make_slot_name(slot);
160 hotplug_slot->ops = &shpchp_hotplug_slot_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900162 get_power_status(hotplug_slot, &info->power_status);
163 get_attention_status(hotplug_slot, &info->attention_status);
164 get_latch_status(hotplug_slot, &info->latch_status);
165 get_adapter_status(hotplug_slot, &info->adapter_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900167 dbg("Registering bus=%x dev=%x hp_slot=%x sun=%x "
168 "slot_device_offset=%x\n", slot->bus, slot->device,
169 slot->hp_slot, slot->number, ctrl->slot_device_offset);
170 retval = pci_hp_register(slot->hotplug_slot);
171 if (retval) {
172 err("pci_hp_register failed with error %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 goto error_name;
174 }
175
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900176 list_add(&slot->slot_list, &ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180error_name:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900181 kfree(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182error_info:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900183 kfree(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184error_hpslot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900185 kfree(hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186error_slot:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900187 kfree(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188error:
Kenji Kaneshige926030f2006-01-26 09:55:35 +0900189 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192static void cleanup_slots(struct controller *ctrl)
193{
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900194 struct list_head *tmp;
195 struct list_head *next;
196 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900198 list_for_each_safe(tmp, next, &ctrl->slot_list) {
199 slot = list_entry(tmp, struct slot, slot_list);
200 list_del(&slot->slot_list);
201 pci_hp_deregister(slot->hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203}
204
205static int get_ctlr_slot_config(struct controller *ctrl)
206{
207 int num_ctlr_slots;
208 int first_device_num;
209 int physical_slot_num;
210 int updown;
211 int rc;
212 int flags;
213
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900214 rc = shpc_get_ctlr_slot_config(ctrl, &num_ctlr_slots,
215 &first_device_num, &physical_slot_num,
216 &updown, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 if (rc) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900218 err("%s: get_ctlr_slot_config fail for b:d (%x:%x)\n",
219 __FUNCTION__, ctrl->bus, ctrl->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -1;
221 }
222
223 ctrl->num_slots = num_ctlr_slots;
224 ctrl->slot_device_offset = first_device_num;
225 ctrl->first_slot = physical_slot_num;
226 ctrl->slot_num_inc = updown; /* either -1 or 1 */
227
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900228 dbg("%s: num_slot(0x%x) 1st_dev(0x%x) psn(0x%x) updown(%d) for b:d "
229 "(%x:%x)\n", __FUNCTION__, num_ctlr_slots, first_device_num,
230 physical_slot_num, updown, ctrl->bus, ctrl->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 return 0;
233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
236 * set_attention_status - Turns the Amber LED for a slot on, off or blink
237 */
238static int set_attention_status (struct hotplug_slot *hotplug_slot, u8 status)
239{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900240 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
243
244 hotplug_slot->info->attention_status = status;
245 slot->hpc_ops->set_attention_status(slot, status);
246
247 return 0;
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static int enable_slot (struct hotplug_slot *hotplug_slot)
251{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900252 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
255
256 return shpchp_enable_slot(slot);
257}
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static int disable_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
265 return shpchp_disable_slot(slot);
266}
267
268static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value)
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 int retval;
272
273 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
274
275 retval = slot->hpc_ops->get_power_status(slot, value);
276 if (retval < 0)
277 *value = hotplug_slot->info->power_status;
278
279 return 0;
280}
281
282static int get_attention_status (struct hotplug_slot *hotplug_slot, u8 *value)
283{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900284 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 int retval;
286
287 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
288
289 retval = slot->hpc_ops->get_attention_status(slot, value);
290 if (retval < 0)
291 *value = hotplug_slot->info->attention_status;
292
293 return 0;
294}
295
296static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value)
297{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900298 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 int retval;
300
301 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
302
303 retval = slot->hpc_ops->get_latch_status(slot, value);
304 if (retval < 0)
305 *value = hotplug_slot->info->latch_status;
306
307 return 0;
308}
309
310static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value)
311{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900312 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 int retval;
314
315 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
316
317 retval = slot->hpc_ops->get_adapter_status(slot, value);
318 if (retval < 0)
319 *value = hotplug_slot->info->adapter_status;
320
321 return 0;
322}
323
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900324static int get_address (struct hotplug_slot *hotplug_slot, u32 *value)
325{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900326 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Kenji Kaneshige81f15442005-12-05 19:31:00 +0900327 struct pci_bus *bus = slot->ctrl->pci_dev->subordinate;
328
329 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
330
331 *value = (pci_domain_nr(bus) << 16) | (slot->bus << 8) | slot->device;
332
333 return 0;
334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static int get_max_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
337{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900338 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 int retval;
340
341 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 retval = slot->hpc_ops->get_max_bus_speed(slot, value);
344 if (retval < 0)
345 *value = PCI_SPEED_UNKNOWN;
346
347 return 0;
348}
349
350static int get_cur_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
351{
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900352 struct slot *slot = get_slot(hotplug_slot, __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 int retval;
354
355 dbg("%s - physical_slot = %s\n", __FUNCTION__, hotplug_slot->name);
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
358 if (retval < 0)
359 *value = PCI_SPEED_UNKNOWN;
360
361 return 0;
362}
363
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700364static int is_shpc_capable(struct pci_dev *dev)
365{
366 if ((dev->vendor == PCI_VENDOR_ID_AMD) || (dev->device ==
367 PCI_DEVICE_ID_AMD_GOLAM_7450))
368 return 1;
369 if (pci_find_capability(dev, PCI_CAP_ID_SHPC))
370 return 1;
371
372 return 0;
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375static int shpc_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
376{
377 int rc;
378 struct controller *ctrl;
379 struct slot *t_slot;
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900380 int first_device_num; /* first PCI device number */
381 int num_ctlr_slots; /* number of slots implemented */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
rajesh.shah@intel.com1410dc12005-10-13 12:05:39 -0700383 if (!is_shpc_capable(pdev))
384 return -ENODEV;
385
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900386 ctrl = kmalloc(sizeof(struct controller), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!ctrl) {
388 err("%s : out of memory\n", __FUNCTION__);
389 goto err_out_none;
390 }
391 memset(ctrl, 0, sizeof(struct controller));
Kenji Kaneshige5b1a9602006-01-26 09:57:40 +0900392 INIT_LIST_HEAD(&ctrl->slot_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
rajesh.shah@intel.comee138332005-10-13 12:05:42 -0700394 rc = shpc_init(ctrl, pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (rc) {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900396 dbg("%s: controller initialization failed\n",
397 SHPC_MODULE_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 goto err_out_free_ctrl;
399 }
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 pci_set_drvdata(pdev, ctrl);
402
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900403 ctrl->pci_bus = kmalloc(sizeof (*ctrl->pci_bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (!ctrl->pci_bus) {
405 err("out of memory\n");
406 rc = -ENOMEM;
407 goto err_out_unmap_mmio_region;
408 }
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 memcpy (ctrl->pci_bus, pdev->bus, sizeof (*ctrl->pci_bus));
411 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);
425 goto err_out_free_ctrl_bus;
426 }
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);
436 goto err_out_free_ctrl_slot;
437 }
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
452 /* Finish setting up the hot plug ctrl device */
453 ctrl->next_event = 0;
454
455 if (!shpchp_ctrl_list) {
456 shpchp_ctrl_list = ctrl;
457 ctrl->next = NULL;
458 } else {
459 ctrl->next = shpchp_ctrl_list;
460 shpchp_ctrl_list = ctrl;
461 }
462
463 shpchp_create_ctrl_files(ctrl);
464
465 return 0;
466
467err_out_free_ctrl_slot:
468 cleanup_slots(ctrl);
469err_out_free_ctrl_bus:
470 kfree(ctrl->pci_bus);
471err_out_unmap_mmio_region:
472 ctrl->hpc_ops->release_ctlr(ctrl);
473err_out_free_ctrl:
474 kfree(ctrl);
475err_out_none:
476 return -ENODEV;
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479static int shpc_start_thread(void)
480{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 int retval = 0;
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 dbg("Initialize + Start the notification/polling mechanism \n");
484
485 retval = shpchp_event_start_thread();
486 if (retval) {
487 dbg("shpchp_event_start_thread() failed\n");
488 return retval;
489 }
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return retval;
492}
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static void __exit unload_shpchpd(void)
495{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 struct controller *ctrl;
497 struct controller *tctrl;
498
499 ctrl = shpchp_ctrl_list;
500
501 while (ctrl) {
rajesh.shah@intel.comc2608a12005-10-13 12:05:44 -0700502 shpchp_remove_ctrl_files(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 cleanup_slots(ctrl);
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 kfree (ctrl->pci_bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ctrl->hpc_ops->release_ctlr(ctrl);
507
508 tctrl = ctrl;
509 ctrl = ctrl->next;
510
511 kfree(tctrl);
512 }
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /* Stop the notification mechanism */
515 shpchp_event_stop_thread();
516
517}
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519static struct pci_device_id shpcd_pci_tbl[] = {
Kenji Kaneshigedfcd5f62006-01-26 09:56:53 +0900520 {PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 { /* end: all zeroes */ }
522};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523MODULE_DEVICE_TABLE(pci, shpcd_pci_tbl);
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525static struct pci_driver shpc_driver = {
526 .name = SHPC_MODULE_NAME,
527 .id_table = shpcd_pci_tbl,
528 .probe = shpc_probe,
529 /* remove: shpc_remove_one, */
530};
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532static int __init shpcd_init(void)
533{
534 int retval = 0;
535
536#ifdef CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE
537 shpchp_poll_mode = 1;
538#endif
539
540 retval = shpc_start_thread();
541 if (retval)
542 goto error_hpc_init;
543
rajesh.shah@intel.com424600f2005-10-13 12:05:38 -0700544 retval = pci_register_driver(&shpc_driver);
545 dbg("%s: pci_register_driver = %d\n", __FUNCTION__, retval);
546 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
548error_hpc_init:
549 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 shpchp_event_stop_thread();
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -0700551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return retval;
553}
554
555static void __exit shpcd_cleanup(void)
556{
557 dbg("unload_shpchpd()\n");
558 unload_shpchpd();
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 pci_unregister_driver(&shpc_driver);
561
562 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
563}
564
565module_init(shpcd_init);
566module_exit(shpcd_cleanup);