Merge branch 'core/iommu' into core/urgent
[linux-2.6-block.git] / drivers / pci / hotplug / shpchp_core.c
CommitLineData
1da177e4
LT
1/*
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 *
8cf4c195 26 * Send feedback to <greg@kroah.com>, <kristen.c.accardi@intel.com>
1da177e4
LT
27 *
28 */
29
1da177e4
LT
30#include <linux/module.h>
31#include <linux/moduleparam.h>
32#include <linux/kernel.h>
33#include <linux/types.h>
1da177e4 34#include <linux/pci.h>
f7391f53 35#include <linux/workqueue.h>
1da177e4 36#include "shpchp.h"
1da177e4
LT
37
38/* Global variables */
39int shpchp_debug;
40int shpchp_poll_mode;
41int shpchp_poll_time;
f7391f53 42struct workqueue_struct *shpchp_wq;
1da177e4
LT
43
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
1da177e4
LT
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);
68static int get_max_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
69static int get_cur_bus_speed (struct hotplug_slot *slot, enum pci_bus_speed *value);
70
71static struct hotplug_slot_ops shpchp_hotplug_slot_ops = {
72 .owner = THIS_MODULE,
73 .set_attention_status = set_attention_status,
74 .enable_slot = enable_slot,
75 .disable_slot = disable_slot,
76 .get_power_status = get_power_status,
77 .get_attention_status = get_attention_status,
78 .get_latch_status = get_latch_status,
79 .get_adapter_status = get_adapter_status,
80 .get_max_bus_speed = get_max_bus_speed,
81 .get_cur_bus_speed = get_cur_bus_speed,
82};
83
84/**
85 * release_slot - free up the memory used by a slot
86 * @hotplug_slot: slot to free
87 */
88static void release_slot(struct hotplug_slot *hotplug_slot)
89{
ee17fd93 90 struct slot *slot = hotplug_slot->private;
1da177e4 91
be7bce25 92 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 93 __func__, slot_name(slot));
1da177e4
LT
94
95 kfree(slot->hotplug_slot->info);
1da177e4
LT
96 kfree(slot->hotplug_slot);
97 kfree(slot);
98}
99
100static int init_slots(struct controller *ctrl)
101{
926030f6
KK
102 struct slot *slot;
103 struct hotplug_slot *hotplug_slot;
104 struct hotplug_slot_info *info;
66f17055 105 char name[SLOT_NAME_SIZE];
926030f6 106 int retval = -ENOMEM;
5fe6cc60 107 int i;
926030f6
KK
108
109 for (i = 0; i < ctrl->num_slots; i++) {
57c95c0d 110 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
926030f6 111 if (!slot)
1da177e4
LT
112 goto error;
113
57c95c0d 114 hotplug_slot = kzalloc(sizeof(*hotplug_slot), GFP_KERNEL);
926030f6 115 if (!hotplug_slot)
1da177e4 116 goto error_slot;
926030f6 117 slot->hotplug_slot = hotplug_slot;
1da177e4 118
57c95c0d 119 info = kzalloc(sizeof(*info), GFP_KERNEL);
926030f6 120 if (!info)
1da177e4 121 goto error_hpslot;
926030f6
KK
122 hotplug_slot->info = info;
123
926030f6 124 slot->hp_slot = i;
926030f6 125 slot->ctrl = ctrl;
227b84c7 126 slot->bus = ctrl->pci_dev->subordinate->number;
926030f6
KK
127 slot->device = ctrl->slot_device_offset + i;
128 slot->hpc_ops = ctrl->hpc_ops;
6f39be2e 129 slot->number = ctrl->first_slot + (ctrl->slot_num_inc * i);
a246fa4e 130 mutex_init(&slot->lock);
e325e1f0 131 INIT_DELAYED_WORK(&slot->work, shpchp_queue_pushbutton_work);
1da177e4
LT
132
133 /* register this slot with the hotplug pci core */
926030f6
KK
134 hotplug_slot->private = slot;
135 hotplug_slot->release = &release_slot;
66f17055 136 snprintf(name, SLOT_NAME_SIZE, "%d", slot->number);
926030f6
KK
137 hotplug_slot->ops = &shpchp_hotplug_slot_ops;
138
be7bce25
TI
139 ctrl_dbg(ctrl, "Registering domain:bus:dev=%04x:%02x:%02x "
140 "hp_slot=%x sun=%x slot_device_offset=%x\n",
141 pci_domain_nr(ctrl->pci_dev->subordinate),
142 slot->bus, slot->device, slot->hp_slot, slot->number,
143 ctrl->slot_device_offset);
f46753c5 144 retval = pci_hp_register(slot->hotplug_slot,
66f17055 145 ctrl->pci_dev->subordinate, slot->device, name);
926030f6 146 if (retval) {
f98ca311
TI
147 ctrl_err(ctrl, "pci_hp_register failed with error %d\n",
148 retval);
bbe779db 149 goto error_info;
1da177e4
LT
150 }
151
66f17055
AC
152 get_power_status(hotplug_slot, &info->power_status);
153 get_attention_status(hotplug_slot, &info->attention_status);
154 get_latch_status(hotplug_slot, &info->latch_status);
155 get_adapter_status(hotplug_slot, &info->adapter_status);
156
5b1a960d 157 list_add(&slot->slot_list, &ctrl->slot_list);
1da177e4
LT
158 }
159
160 return 0;
1da177e4 161error_info:
926030f6 162 kfree(info);
1da177e4 163error_hpslot:
926030f6 164 kfree(hotplug_slot);
1da177e4 165error_slot:
926030f6 166 kfree(slot);
1da177e4 167error:
926030f6 168 return retval;
1da177e4
LT
169}
170
f7391f53 171void cleanup_slots(struct controller *ctrl)
1da177e4 172{
5b1a960d
KK
173 struct list_head *tmp;
174 struct list_head *next;
175 struct slot *slot;
1da177e4 176
5b1a960d
KK
177 list_for_each_safe(tmp, next, &ctrl->slot_list) {
178 slot = list_entry(tmp, struct slot, slot_list);
179 list_del(&slot->slot_list);
f7391f53 180 cancel_delayed_work(&slot->work);
a246fa4e 181 flush_scheduled_work();
f7391f53 182 flush_workqueue(shpchp_wq);
5b1a960d 183 pci_hp_deregister(slot->hotplug_slot);
1da177e4
LT
184 }
185}
186
1da177e4
LT
187/*
188 * set_attention_status - Turns the Amber LED for a slot on, off or blink
189 */
190static int set_attention_status (struct hotplug_slot *hotplug_slot, u8 status)
191{
8352e04e 192 struct slot *slot = get_slot(hotplug_slot);
1da177e4 193
be7bce25 194 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 195 __func__, slot_name(slot));
1da177e4
LT
196
197 hotplug_slot->info->attention_status = status;
198 slot->hpc_ops->set_attention_status(slot, status);
199
200 return 0;
201}
202
1da177e4
LT
203static int enable_slot (struct hotplug_slot *hotplug_slot)
204{
8352e04e 205 struct slot *slot = get_slot(hotplug_slot);
1da177e4 206
be7bce25 207 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 208 __func__, slot_name(slot));
1da177e4 209
a246fa4e 210 return shpchp_sysfs_enable_slot(slot);
1da177e4
LT
211}
212
1da177e4
LT
213static int disable_slot (struct hotplug_slot *hotplug_slot)
214{
8352e04e 215 struct slot *slot = get_slot(hotplug_slot);
1da177e4 216
be7bce25 217 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 218 __func__, slot_name(slot));
1da177e4 219
a246fa4e 220 return shpchp_sysfs_disable_slot(slot);
1da177e4
LT
221}
222
223static int get_power_status (struct hotplug_slot *hotplug_slot, u8 *value)
224{
8352e04e 225 struct slot *slot = get_slot(hotplug_slot);
1da177e4
LT
226 int retval;
227
be7bce25 228 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 229 __func__, slot_name(slot));
1da177e4
LT
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{
8352e04e 240 struct slot *slot = get_slot(hotplug_slot);
1da177e4
LT
241 int retval;
242
be7bce25 243 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 244 __func__, slot_name(slot));
1da177e4
LT
245
246 retval = slot->hpc_ops->get_attention_status(slot, value);
247 if (retval < 0)
248 *value = hotplug_slot->info->attention_status;
249
250 return 0;
251}
252
253static int get_latch_status (struct hotplug_slot *hotplug_slot, u8 *value)
254{
8352e04e 255 struct slot *slot = get_slot(hotplug_slot);
1da177e4
LT
256 int retval;
257
be7bce25 258 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 259 __func__, slot_name(slot));
1da177e4
LT
260
261 retval = slot->hpc_ops->get_latch_status(slot, value);
262 if (retval < 0)
263 *value = hotplug_slot->info->latch_status;
264
265 return 0;
266}
267
268static int get_adapter_status (struct hotplug_slot *hotplug_slot, u8 *value)
269{
8352e04e 270 struct slot *slot = get_slot(hotplug_slot);
1da177e4
LT
271 int retval;
272
be7bce25 273 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 274 __func__, slot_name(slot));
1da177e4
LT
275
276 retval = slot->hpc_ops->get_adapter_status(slot, value);
277 if (retval < 0)
278 *value = hotplug_slot->info->adapter_status;
279
280 return 0;
281}
282
f46753c5
AC
283static int get_max_bus_speed(struct hotplug_slot *hotplug_slot,
284 enum pci_bus_speed *value)
1da177e4 285{
8352e04e 286 struct slot *slot = get_slot(hotplug_slot);
1da177e4
LT
287 int retval;
288
be7bce25 289 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 290 __func__, slot_name(slot));
dfcd5f68 291
1da177e4
LT
292 retval = slot->hpc_ops->get_max_bus_speed(slot, value);
293 if (retval < 0)
294 *value = PCI_SPEED_UNKNOWN;
295
296 return 0;
297}
298
299static int get_cur_bus_speed (struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
300{
8352e04e 301 struct slot *slot = get_slot(hotplug_slot);
1da177e4
LT
302 int retval;
303
be7bce25 304 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
f98ca311 305 __func__, slot_name(slot));
dfcd5f68 306
1da177e4
LT
307 retval = slot->hpc_ops->get_cur_bus_speed(slot, value);
308 if (retval < 0)
309 *value = PCI_SPEED_UNKNOWN;
310
311 return 0;
312}
313
1410dc1c 314static int is_shpc_capable(struct pci_dev *dev)
315{
ac9c052d
KK
316 if ((dev->vendor == PCI_VENDOR_ID_AMD) || (dev->device ==
317 PCI_DEVICE_ID_AMD_GOLAM_7450))
318 return 1;
319 if (!pci_find_capability(dev, PCI_CAP_ID_SHPC))
320 return 0;
321 if (get_hp_hw_control_from_firmware(dev))
322 return 0;
323 return 1;
1410dc1c 324}
325
1da177e4
LT
326static int shpc_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
327{
328 int rc;
329 struct controller *ctrl;
1da177e4 330
1410dc1c 331 if (!is_shpc_capable(pdev))
332 return -ENODEV;
333
57c95c0d 334 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
1da177e4 335 if (!ctrl) {
be7bce25 336 dev_err(&pdev->dev, "%s: Out of memory\n", __func__);
1da177e4
LT
337 goto err_out_none;
338 }
5b1a960d 339 INIT_LIST_HEAD(&ctrl->slot_list);
1da177e4 340
ee138334 341 rc = shpc_init(ctrl, pdev);
1da177e4 342 if (rc) {
be7bce25 343 ctrl_dbg(ctrl, "Controller initialization failed\n");
1da177e4
LT
344 goto err_out_free_ctrl;
345 }
346
1da177e4
LT
347 pci_set_drvdata(pdev, ctrl);
348
1da177e4
LT
349 /* Setup the slot information structures */
350 rc = init_slots(ctrl);
351 if (rc) {
be7bce25 352 ctrl_err(ctrl, "Slot initialization failed\n");
f7391f53 353 goto err_out_release_ctlr;
1da177e4
LT
354 }
355
e1b95dc6
GKH
356 rc = shpchp_create_ctrl_files(ctrl);
357 if (rc)
358 goto err_cleanup_slots;
1da177e4
LT
359
360 return 0;
361
e1b95dc6
GKH
362err_cleanup_slots:
363 cleanup_slots(ctrl);
f7391f53 364err_out_release_ctlr:
1da177e4
LT
365 ctrl->hpc_ops->release_ctlr(ctrl);
366err_out_free_ctrl:
367 kfree(ctrl);
368err_out_none:
369 return -ENODEV;
370}
371
e6b82b13 372static void shpc_remove(struct pci_dev *dev)
1da177e4 373{
e6b82b13 374 struct controller *ctrl = pci_get_drvdata(dev);
1da177e4 375
e6b82b13
KK
376 shpchp_remove_ctrl_files(ctrl);
377 ctrl->hpc_ops->release_ctlr(ctrl);
378 kfree(ctrl);
1da177e4
LT
379}
380
1da177e4 381static struct pci_device_id shpcd_pci_tbl[] = {
dfcd5f68 382 {PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0)},
1da177e4
LT
383 { /* end: all zeroes */ }
384};
1da177e4
LT
385MODULE_DEVICE_TABLE(pci, shpcd_pci_tbl);
386
1da177e4
LT
387static struct pci_driver shpc_driver = {
388 .name = SHPC_MODULE_NAME,
389 .id_table = shpcd_pci_tbl,
390 .probe = shpc_probe,
e6b82b13 391 .remove = shpc_remove,
1da177e4
LT
392};
393
1da177e4
LT
394static int __init shpcd_init(void)
395{
396 int retval = 0;
397
424600f9 398 retval = pci_register_driver(&shpc_driver);
66bef8c0 399 dbg("%s: pci_register_driver = %d\n", __func__, retval);
424600f9 400 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
1da177e4
LT
401 return retval;
402}
403
404static void __exit shpcd_cleanup(void)
405{
406 dbg("unload_shpchpd()\n");
1da177e4 407 pci_unregister_driver(&shpc_driver);
1da177e4
LT
408 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
409}
410
411module_init(shpcd_init);
412module_exit(shpcd_cleanup);