blob: 7d72c5e2eba90cc98cb233142ba6baadd778d9ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "pciehp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/interrupt.h>
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -080038#include <linux/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* Global variables */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103041bool pciehp_debug;
42bool pciehp_poll_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043int pciehp_poll_time;
Rusty Russell90ab5ee2012-01-13 09:32:20 +103044bool pciehp_force;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define DRIVER_VERSION "0.4"
47#define DRIVER_AUTHOR "Dan Zink <dan.zink@compaq.com>, Greg Kroah-Hartman <greg@kroah.com>, Dely Sy <dely.l.sy@intel.com>"
48#define DRIVER_DESC "PCI Express Hot Plug Controller Driver"
49
50MODULE_AUTHOR(DRIVER_AUTHOR);
51MODULE_DESCRIPTION(DRIVER_DESC);
52MODULE_LICENSE("GPL");
53
54module_param(pciehp_debug, bool, 0644);
55module_param(pciehp_poll_mode, bool, 0644);
56module_param(pciehp_poll_time, int, 0644);
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -080057module_param(pciehp_force, bool, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not");
59MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not");
60MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds");
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +020061MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if OSHP is missing");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63#define PCIE_MODULE_NAME "pciehp"
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int set_attention_status (struct hotplug_slot *slot, u8 value);
66static int enable_slot (struct hotplug_slot *slot);
67static int disable_slot (struct hotplug_slot *slot);
68static int get_power_status (struct hotplug_slot *slot, u8 *value);
69static int get_attention_status (struct hotplug_slot *slot, u8 *value);
70static int get_latch_status (struct hotplug_slot *slot, u8 *value);
71static int get_adapter_status (struct hotplug_slot *slot, u8 *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Dely Syb3082402005-04-28 18:08:53 -070073/**
74 * release_slot - free up the memory used by a slot
75 * @hotplug_slot: slot to free
76 */
77static void release_slot(struct hotplug_slot *hotplug_slot)
78{
Taku Izumi7f2feec2008-09-05 12:11:26 +090079 struct slot *slot = hotplug_slot->private;
80
Taku Izumi18b341b2008-10-23 11:47:32 +090081 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -060082 __func__, hotplug_slot_name(hotplug_slot));
Dely Syb3082402005-04-28 18:08:53 -070083
Kenji Kaneshige586f1d62009-10-05 17:41:37 +090084 kfree(hotplug_slot->ops);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +090085 kfree(hotplug_slot->info);
86 kfree(hotplug_slot);
Kenji Kaneshigea0b17252006-12-21 17:01:02 -080087}
88
Kenji Kaneshige8720d272009-09-15 17:24:46 +090089static int init_slot(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Kenji Kaneshige8720d272009-09-15 17:24:46 +090091 struct slot *slot = ctrl->slot;
92 struct hotplug_slot *hotplug = NULL;
93 struct hotplug_slot_info *info = NULL;
Kenji Kaneshige586f1d62009-10-05 17:41:37 +090094 struct hotplug_slot_ops *ops = NULL;
Alex Chiange1acb242008-10-20 17:41:38 -060095 char name[SLOT_NAME_SIZE];
Kenji Kaneshigea0b17252006-12-21 17:01:02 -080096 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Kenji Kaneshige8720d272009-09-15 17:24:46 +090098 hotplug = kzalloc(sizeof(*hotplug), GFP_KERNEL);
99 if (!hotplug)
100 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900102 info = kzalloc(sizeof(*info), GFP_KERNEL);
103 if (!info)
104 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900106 /* Setup hotplug slot ops */
107 ops = kzalloc(sizeof(*ops), GFP_KERNEL);
108 if (!ops)
109 goto out;
110 ops->enable_slot = enable_slot;
111 ops->disable_slot = disable_slot;
112 ops->get_power_status = get_power_status;
113 ops->get_adapter_status = get_adapter_status;
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900114 if (MRL_SENS(ctrl))
115 ops->get_latch_status = get_latch_status;
116 if (ATTN_LED(ctrl)) {
117 ops->get_attention_status = get_attention_status;
118 ops->set_attention_status = set_attention_status;
119 }
120
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900121 /* register this slot with the hotplug pci core */
122 hotplug->info = info;
123 hotplug->private = slot;
124 hotplug->release = &release_slot;
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900125 hotplug->ops = ops;
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900126 slot->hotplug_slot = hotplug;
Kenji Kaneshige07a09692009-09-15 17:31:16 +0900127 snprintf(name, SLOT_NAME_SIZE, "%u", PSN(ctrl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Kenji Kaneshigea2359a32009-09-15 17:28:28 +0900129 ctrl_dbg(ctrl, "Registering domain:bus:dev=%04x:%02x:00 sun=%x\n",
Kenji Kaneshige385e2492009-09-15 17:30:14 +0900130 pci_domain_nr(ctrl->pcie->port->subordinate),
Kenji Kaneshige07a09692009-09-15 17:31:16 +0900131 ctrl->pcie->port->subordinate->number, PSN(ctrl));
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900132 retval = pci_hp_register(hotplug,
Kenji Kaneshige385e2492009-09-15 17:30:14 +0900133 ctrl->pcie->port->subordinate, 0, name);
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900134 if (retval)
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900135 ctrl_err(ctrl,
136 "pci_hp_register failed with error %d\n", retval);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900137out:
138 if (retval) {
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900139 kfree(ops);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900140 kfree(info);
141 kfree(hotplug);
142 }
Kenji Kaneshigea0b17252006-12-21 17:01:02 -0800143 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900146static void cleanup_slot(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900148 pci_hp_deregister(ctrl->slot->hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
152 * set_attention_status - Turns the Amber LED for a slot on, off or blink
153 */
154static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
155{
156 struct slot *slot = hotplug_slot->private;
157
Taku Izumi18b341b2008-10-23 11:47:32 +0900158 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -0600159 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900161 return pciehp_set_attention_status(slot, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164
165static int enable_slot(struct hotplug_slot *hotplug_slot)
166{
167 struct slot *slot = hotplug_slot->private;
168
Taku Izumi18b341b2008-10-23 11:47:32 +0900169 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -0600170 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800172 return pciehp_sysfs_enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175
176static int disable_slot(struct hotplug_slot *hotplug_slot)
177{
178 struct slot *slot = hotplug_slot->private;
179
Taku Izumi18b341b2008-10-23 11:47:32 +0900180 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -0600181 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800183 return pciehp_sysfs_disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
187{
188 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Taku Izumi18b341b2008-10-23 11:47:32 +0900190 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -0600191 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900193 return pciehp_get_power_status(slot, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
197{
198 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Taku Izumi18b341b2008-10-23 11:47:32 +0900200 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -0600201 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900203 return pciehp_get_attention_status(slot, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206static int get_latch_status(struct hotplug_slot *hotplug_slot, u8 *value)
207{
208 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Taku Izumi18b341b2008-10-23 11:47:32 +0900210 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -0600211 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900213 return pciehp_get_latch_status(slot, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
217{
218 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Taku Izumi18b341b2008-10-23 11:47:32 +0900220 ctrl_dbg(slot->ctrl, "%s: physical_slot = %s\n",
Alex Chiange1acb242008-10-20 17:41:38 -0600221 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900223 return pciehp_get_adapter_status(slot, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Rafael J. Wysocki0516c8b2009-01-13 14:44:19 +0100226static int pciehp_probe(struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 int rc;
229 struct controller *ctrl;
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900230 struct slot *slot;
Kenji Kaneshige8792e112009-10-05 17:46:43 +0900231 u8 occupied, poweron;
Kenji Kaneshige125c39f2008-05-28 14:57:30 +0900232
233 if (pciehp_force)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900234 dev_info(&dev->device,
235 "Bypassing BIOS check for pciehp use on %s\n",
Kenji Kaneshige8792e112009-10-05 17:46:43 +0900236 pci_name(dev->port));
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +0200237 else if (pciehp_acpi_slot_detection_check(dev->port))
Kenji Kaneshige125c39f2008-05-28 14:57:30 +0900238 goto err_out_none;
Kenji Kaneshigea073a822007-08-09 16:09:35 -0700239
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900240 ctrl = pcie_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!ctrl) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900242 dev_err(&dev->device, "Controller initialization failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto err_out_none;
244 }
Kenji Kaneshigeb9708942008-06-26 20:06:24 +0900245 set_service_data(dev, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Setup the slot information structures */
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900248 rc = init_slot(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (rc) {
Alex Chiangf46753c2008-06-10 15:28:50 -0600250 if (rc == -EBUSY)
Taku Izumi18b341b2008-10-23 11:47:32 +0900251 ctrl_warn(ctrl, "Slot already registered by another "
Taku Izumi7f2feec2008-09-05 12:11:26 +0900252 "hotplug driver\n");
Alex Chiangf46753c2008-06-10 15:28:50 -0600253 else
Taku Izumi18b341b2008-10-23 11:47:32 +0900254 ctrl_err(ctrl, "Slot initialization failed\n");
Kenji Kaneshigea8c2b632006-12-21 17:01:05 -0800255 goto err_out_release_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
257
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800258 /* Enable events after we have setup the data structures */
259 rc = pcie_init_notification(ctrl);
260 if (rc) {
261 ctrl_err(ctrl, "Notification initialization failed\n");
Kenji Kaneshige65b947b2009-10-05 17:43:29 +0900262 goto err_out_free_ctrl_slot;
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800263 }
264
Kenji Kaneshigedb9aaf02008-12-08 14:30:24 +0900265 /* Check if slot is occupied */
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900266 slot = ctrl->slot;
Kenji Kaneshige8792e112009-10-05 17:46:43 +0900267 pciehp_get_adapter_status(slot, &occupied);
268 pciehp_get_power_status(slot, &poweron);
269 if (occupied && pciehp_force)
270 pciehp_enable_slot(slot);
271 /* If empty slot's power status is on, turn power off */
272 if (!occupied && poweron && POWER_CTRL(ctrl))
273 pciehp_power_off_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return 0;
276
277err_out_free_ctrl_slot:
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900278 cleanup_slot(ctrl);
Kenji Kaneshigea8c2b632006-12-21 17:01:05 -0800279err_out_release_ctlr:
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900280 pciehp_release_ctrl(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281err_out_none:
282 return -ENODEV;
283}
284
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900285static void pciehp_remove(struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Kenji Kaneshigeb9708942008-06-26 20:06:24 +0900287 struct controller *ctrl = get_service_data(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900289 cleanup_slot(ctrl);
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900290 pciehp_release_ctrl(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293#ifdef CONFIG_PM
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100294static int pciehp_suspend (struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return 0;
297}
298
299static int pciehp_resume (struct pcie_device *dev)
300{
Oliver Neukum87683e22012-09-07 23:28:30 +0200301 struct controller *ctrl;
302 struct slot *slot;
303 u8 status;
304
Oliver Neukum87683e22012-09-07 23:28:30 +0200305 ctrl = get_service_data(dev);
Mark Lordcd2fe832007-11-28 15:12:00 -0800306
Oliver Neukum87683e22012-09-07 23:28:30 +0200307 /* reinitialize the chipset's event detection logic */
308 pcie_enable_notification(ctrl);
Mark Lordcd2fe832007-11-28 15:12:00 -0800309
Oliver Neukum87683e22012-09-07 23:28:30 +0200310 slot = ctrl->slot;
Mark Lordcd2fe832007-11-28 15:12:00 -0800311
Oliver Neukum87683e22012-09-07 23:28:30 +0200312 /* Check if slot is occupied */
313 pciehp_get_adapter_status(slot, &status);
314 if (status)
315 pciehp_enable_slot(slot);
316 else
317 pciehp_disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return 0;
319}
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100320#endif /* PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322static struct pcie_port_service_driver hpdriver_portdrv = {
Taku Izumi83e9ad52008-09-05 12:09:43 +0900323 .name = PCIE_MODULE_NAME,
Rafael J. Wysocki22106362009-01-13 14:46:46 +0100324 .port_type = PCIE_ANY_PORT,
325 .service = PCIE_PORT_SERVICE_HP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 .probe = pciehp_probe,
328 .remove = pciehp_remove,
329
330#ifdef CONFIG_PM
331 .suspend = pciehp_suspend,
332 .resume = pciehp_resume,
333#endif /* PM */
334};
335
336static int __init pcied_init(void)
337{
338 int retval = 0;
339
Kenji Kaneshigec9ffa5a2008-12-17 12:07:38 +0900340 pciehp_firmware_init();
rajesh.shah@intel.coma8a2be92005-10-31 16:20:07 -0800341 retval = pcie_port_service_register(&hpdriver_portdrv);
342 dbg("pcie_port_service_register = %d\n", retval);
343 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
Yijing Wangc2be6f92013-01-11 10:15:54 +0800344 if (retval)
Taku Izumi18b341b2008-10-23 11:47:32 +0900345 dbg("Failure to register service\n");
Yijing Wangc2be6f92013-01-11 10:15:54 +0800346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return retval;
348}
349
350static void __exit pcied_cleanup(void)
351{
352 dbg("unload_pciehpd()\n");
Kenji Kaneshige027e8d52011-11-07 20:55:46 +0900353 pcie_port_service_unregister(&hpdriver_portdrv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 info(DRIVER_DESC " version: " DRIVER_VERSION " unloaded\n");
355}
356
357module_init(pcied_init);
358module_exit(pcied_cleanup);