Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[deliverable/linux.git] / drivers / pci / hotplug / pciehp_core.c
CommitLineData
1da177e4
LT
1/*
2 * PCI Express 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>
5a0e3ad6 33#include <linux/slab.h>
1da177e4 34#include <linux/types.h>
1da177e4 35#include <linux/pci.h>
1da177e4 36#include "pciehp.h"
1da177e4 37#include <linux/interrupt.h>
34d03419 38#include <linux/time.h>
1da177e4
LT
39
40/* Global variables */
41int pciehp_debug;
42int pciehp_poll_mode;
43int pciehp_poll_time;
a3a45ec8 44int pciehp_force;
5d386e1a 45struct workqueue_struct *pciehp_wq;
a827ea30 46struct workqueue_struct *pciehp_ordered_wq;
1da177e4
LT
47
48#define DRIVER_VERSION "0.4"
49#define DRIVER_AUTHOR "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
50#define DRIVER_DESC "PCI Express Hot Plug Controller Driver"
51
52MODULE_AUTHOR(DRIVER_AUTHOR);
53MODULE_DESCRIPTION(DRIVER_DESC);
54MODULE_LICENSE("GPL");
55
56module_param(pciehp_debug, bool, 0644);
57module_param(pciehp_poll_mode, bool, 0644);
58module_param(pciehp_poll_time, int, 0644);
a3a45ec8 59module_param(pciehp_force, bool, 0644);
1da177e4
LT
60MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not");
61MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not");
62MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds");
28eb5f27 63MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if OSHP is missing");
1da177e4
LT
64
65#define PCIE_MODULE_NAME "pciehp"
66
1da177e4
LT
67static int set_attention_status (struct hotplug_slot *slot, u8 value);
68static int enable_slot (struct hotplug_slot *slot);
69static int disable_slot (struct hotplug_slot *slot);
70static int get_power_status (struct hotplug_slot *slot, u8 *value);
71static int get_attention_status (struct hotplug_slot *slot, u8 *value);
72static int get_latch_status (struct hotplug_slot *slot, u8 *value);
73static int get_adapter_status (struct hotplug_slot *slot, u8 *value);
1da177e4 74
b308240b
DS
75/**
76 * release_slot - free up the memory used by a slot
77 * @hotplug_slot: slot to free
78 */
79static void release_slot(struct hotplug_slot *hotplug_slot)
80{
7f2feec1
TI
81 struct slot *slot = hotplug_slot->private;
82
18b341b7 83 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 84 __func__, hotplug_slot_name(hotplug_slot));
b308240b 85
586f1d66 86 kfree(hotplug_slot->ops);
c4635eb0
KK
87 kfree(hotplug_slot->info);
88 kfree(hotplug_slot);
a0b17257
KK
89}
90
8720d27d 91static int init_slot(struct controller *ctrl)
1da177e4 92{
8720d27d
KK
93 struct slot *slot = ctrl->slot;
94 struct hotplug_slot *hotplug = NULL;
95 struct hotplug_slot_info *info = NULL;
586f1d66 96 struct hotplug_slot_ops *ops = NULL;
e1acb24f 97 char name[SLOT_NAME_SIZE];
a0b17257 98 int retval = -ENOMEM;
1da177e4 99
8720d27d
KK
100 hotplug = kzalloc(sizeof(*hotplug), GFP_KERNEL);
101 if (!hotplug)
102 goto out;
103
104 info = kzalloc(sizeof(*info), GFP_KERNEL);
105 if (!info)
106 goto out;
107
586f1d66
KK
108 /* Setup hotplug slot ops */
109 ops = kzalloc(sizeof(*ops), GFP_KERNEL);
110 if (!ops)
111 goto out;
112 ops->enable_slot = enable_slot;
113 ops->disable_slot = disable_slot;
114 ops->get_power_status = get_power_status;
115 ops->get_adapter_status = get_adapter_status;
586f1d66
KK
116 if (MRL_SENS(ctrl))
117 ops->get_latch_status = get_latch_status;
118 if (ATTN_LED(ctrl)) {
119 ops->get_attention_status = get_attention_status;
120 ops->set_attention_status = set_attention_status;
121 }
122
8720d27d
KK
123 /* register this slot with the hotplug pci core */
124 hotplug->info = info;
125 hotplug->private = slot;
126 hotplug->release = &release_slot;
586f1d66 127 hotplug->ops = ops;
8720d27d 128 slot->hotplug_slot = hotplug;
07a09694 129 snprintf(name, SLOT_NAME_SIZE, "%u", PSN(ctrl));
8720d27d 130
a2359a33 131 ctrl_dbg(ctrl, "Registering domain:bus:dev=%04x:%02x:00 sun=%x\n",
385e2491 132 pci_domain_nr(ctrl->pcie->port->subordinate),
07a09694 133 ctrl->pcie->port->subordinate->number, PSN(ctrl));
8720d27d 134 retval = pci_hp_register(hotplug,
385e2491 135 ctrl->pcie->port->subordinate, 0, name);
445f7985 136 if (retval)
8720d27d
KK
137 ctrl_err(ctrl,
138 "pci_hp_register failed with error %d\n", retval);
8720d27d
KK
139out:
140 if (retval) {
586f1d66 141 kfree(ops);
8720d27d
KK
142 kfree(info);
143 kfree(hotplug);
1da177e4 144 }
a0b17257 145 return retval;
1da177e4
LT
146}
147
8720d27d 148static void cleanup_slot(struct controller *ctrl)
1da177e4 149{
8720d27d 150 pci_hp_deregister(ctrl->slot->hotplug_slot);
1da177e4
LT
151}
152
1da177e4
LT
153/*
154 * set_attention_status - Turns the Amber LED for a slot on, off or blink
155 */
156static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
157{
158 struct slot *slot = hotplug_slot->private;
159
18b341b7 160 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 161 __func__, slot_name(slot));
1da177e4 162
445f7985 163 return pciehp_set_attention_status(slot, status);
1da177e4
LT
164}
165
166
167static int enable_slot(struct hotplug_slot *hotplug_slot)
168{
169 struct slot *slot = hotplug_slot->private;
170
18b341b7 171 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 172 __func__, slot_name(slot));
1da177e4 173
5d386e1a 174 return pciehp_sysfs_enable_slot(slot);
1da177e4
LT
175}
176
177
178static int disable_slot(struct hotplug_slot *hotplug_slot)
179{
180 struct slot *slot = hotplug_slot->private;
181
18b341b7 182 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 183 __func__, slot_name(slot));
1da177e4 184
5d386e1a 185 return pciehp_sysfs_disable_slot(slot);
1da177e4
LT
186}
187
188static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
189{
190 struct slot *slot = hotplug_slot->private;
1da177e4 191
18b341b7 192 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 193 __func__, slot_name(slot));
1da177e4 194
445f7985 195 return pciehp_get_power_status(slot, value);
1da177e4
LT
196}
197
198static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
199{
200 struct slot *slot = hotplug_slot->private;
1da177e4 201
18b341b7 202 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 203 __func__, slot_name(slot));
1da177e4 204
445f7985 205 return pciehp_get_attention_status(slot, value);
1da177e4
LT
206}
207
208static int get_latch_status(struct hotplug_slot *hotplug_slot, u8 *value)
209{
210 struct slot *slot = hotplug_slot->private;
1da177e4 211
18b341b7 212 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 213 __func__, slot_name(slot));
1da177e4 214
445f7985 215 return pciehp_get_latch_status(slot, value);
1da177e4
LT
216}
217
218static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
219{
220 struct slot *slot = hotplug_slot->private;
1da177e4 221
18b341b7 222 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
e1acb24f 223 __func__, slot_name(slot));
1da177e4 224
445f7985 225 return pciehp_get_adapter_status(slot, value);
1da177e4
LT
226}
227
0516c8bc 228static int pciehp_probe(struct pcie_device *dev)
1da177e4
LT
229{
230 int rc;
231 struct controller *ctrl;
8720d27d 232 struct slot *slot;
8792e11f 233 u8 occupied, poweron;
125c39f7
KK
234
235 if (pciehp_force)
7f2feec1
TI
236 dev_info(&dev->device,
237 "Bypassing BIOS check for pciehp use on %s\n",
8792e11f 238 pci_name(dev->port));
28eb5f27 239 else if (pciehp_acpi_slot_detection_check(dev->port))
125c39f7 240 goto err_out_none;
a073a826 241
c4635eb0 242 ctrl = pcie_init(dev);
1da177e4 243 if (!ctrl) {
18b341b7 244 dev_err(&dev->device, "Controller initialization failed\n");
c4635eb0 245 goto err_out_none;
1da177e4 246 }
b9708940 247 set_service_data(dev, ctrl);
1da177e4 248
1da177e4 249 /* Setup the slot information structures */
8720d27d 250 rc = init_slot(ctrl);
1da177e4 251 if (rc) {
f46753c5 252 if (rc == -EBUSY)
18b341b7 253 ctrl_warn(ctrl, "Slot already registered by another "
7f2feec1 254 "hotplug driver\n");
f46753c5 255 else
18b341b7 256 ctrl_err(ctrl, "Slot initialization failed\n");
a8c2b635 257 goto err_out_release_ctlr;
1da177e4
LT
258 }
259
dbc7e1e5
EB
260 /* Enable events after we have setup the data structures */
261 rc = pcie_init_notification(ctrl);
262 if (rc) {
263 ctrl_err(ctrl, "Notification initialization failed\n");
65b947bc 264 goto err_out_free_ctrl_slot;
dbc7e1e5
EB
265 }
266
db9aaf0b 267 /* Check if slot is occupied */
8720d27d 268 slot = ctrl->slot;
8792e11f
KK
269 pciehp_get_adapter_status(slot, &occupied);
270 pciehp_get_power_status(slot, &poweron);
271 if (occupied && pciehp_force)
272 pciehp_enable_slot(slot);
273 /* If empty slot's power status is on, turn power off */
274 if (!occupied && poweron && POWER_CTRL(ctrl))
275 pciehp_power_off_slot(slot);
1da177e4 276
1da177e4
LT
277 return 0;
278
279err_out_free_ctrl_slot:
8720d27d 280 cleanup_slot(ctrl);
a8c2b635 281err_out_release_ctlr:
82a9e79e 282 pciehp_release_ctrl(ctrl);
1da177e4
LT
283err_out_none:
284 return -ENODEV;
285}
286
82a9e79e 287static void pciehp_remove(struct pcie_device *dev)
1da177e4 288{
b9708940 289 struct controller *ctrl = get_service_data(dev);
1da177e4 290
8720d27d 291 cleanup_slot(ctrl);
82a9e79e 292 pciehp_release_ctrl(ctrl);
1da177e4
LT
293}
294
295#ifdef CONFIG_PM
3a3c244c 296static int pciehp_suspend (struct pcie_device *dev)
1da177e4 297{
7f2feec1 298 dev_info(&dev->device, "%s ENTRY\n", __func__);
1da177e4
LT
299 return 0;
300}
301
302static int pciehp_resume (struct pcie_device *dev)
303{
7f2feec1 304 dev_info(&dev->device, "%s ENTRY\n", __func__);
cd2fe83a 305 if (pciehp_force) {
b9708940 306 struct controller *ctrl = get_service_data(dev);
8720d27d 307 struct slot *slot;
cd2fe83a
ML
308 u8 status;
309
310 /* reinitialize the chipset's event detection logic */
c4635eb0 311 pcie_enable_notification(ctrl);
cd2fe83a 312
8720d27d 313 slot = ctrl->slot;
cd2fe83a
ML
314
315 /* Check if slot is occupied */
82a9e79e 316 pciehp_get_adapter_status(slot, &status);
cd2fe83a 317 if (status)
8720d27d 318 pciehp_enable_slot(slot);
cd2fe83a 319 else
8720d27d 320 pciehp_disable_slot(slot);
cd2fe83a 321 }
1da177e4
LT
322 return 0;
323}
3a3c244c 324#endif /* PM */
1da177e4 325
1da177e4 326static struct pcie_port_service_driver hpdriver_portdrv = {
83e9ad54 327 .name = PCIE_MODULE_NAME,
22106368
RW
328 .port_type = PCIE_ANY_PORT,
329 .service = PCIE_PORT_SERVICE_HP,
1da177e4
LT
330
331 .probe = pciehp_probe,
332 .remove = pciehp_remove,
333
334#ifdef CONFIG_PM
335 .suspend = pciehp_suspend,
336 .resume = pciehp_resume,
337#endif /* PM */
338};
339
340static int __init pcied_init(void)
341{
342 int retval = 0;
343
a827ea30
TH
344 pciehp_wq = alloc_workqueue("pciehp", 0, 0);
345 if (!pciehp_wq)
346 return -ENOMEM;
347
348 pciehp_ordered_wq = alloc_ordered_workqueue("pciehp_ordered", 0);
349 if (!pciehp_ordered_wq) {
350 destroy_workqueue(pciehp_wq);
351 return -ENOMEM;
352 }
353
c9ffa5a5 354 pciehp_firmware_init();
a8a2be94 355 retval = pcie_port_service_register(&hpdriver_portdrv);
356 dbg("pcie_port_service_register = %d\n", retval);
357 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
a827ea30
TH
358 if (retval) {
359 destroy_workqueue(pciehp_ordered_wq);
360 destroy_workqueue(pciehp_wq);
18b341b7 361 dbg("Failure to register service\n");
a827ea30 362 }
1da177e4
LT
363 return retval;
364}
365
366static void __exit pcied_cleanup(void)
367{
368 dbg("unload_pciehpd()\n");
a827ea30
TH
369 destroy_workqueue(pciehp_ordered_wq);
370 destroy_workqueue(pciehp_wq);
1da177e4 371 pcie_port_service_unregister(&hpdriver_portdrv);
1da177e4
LT
372 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
373}
374
375module_init(pcied_init);
376module_exit(pcied_cleanup);
This page took 0.976091 seconds and 5 git commands to generate.