blob: 7d32fa33dcef902a926b1603a06f2002971675a4 [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/moduleparam.h>
31#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#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 "pciehp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/interrupt.h>
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -080037#include <linux/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/* Global variables */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103040bool pciehp_debug;
41bool pciehp_poll_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042int pciehp_poll_time;
Stephen Hemminger0b950f02014-01-10 17:14:48 -070043static bool pciehp_force;
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 "PCI Express Hot Plug Controller Driver"
48
Paul Gortmaker70626d82016-08-24 16:57:52 -040049/*
50 * not really modular, but the easiest way to keep compat with existing
51 * bootargs behaviour is to continue using module_param here.
52 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053module_param(pciehp_debug, bool, 0644);
54module_param(pciehp_poll_mode, bool, 0644);
55module_param(pciehp_poll_time, int, 0644);
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -080056module_param(pciehp_force, bool, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057MODULE_PARM_DESC(pciehp_debug, "Debugging mode enabled or not");
58MODULE_PARM_DESC(pciehp_poll_mode, "Using polling mechanism for hot-plug events or not");
59MODULE_PARM_DESC(pciehp_poll_time, "Polling mechanism frequency, in seconds");
Rafael J. Wysocki28eb5f22010-08-21 22:02:38 +020060MODULE_PARM_DESC(pciehp_force, "Force pciehp, even if OSHP is missing");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62#define PCIE_MODULE_NAME "pciehp"
63
Bogicevic Sasaff3ce482015-12-27 13:21:11 -080064static int set_attention_status(struct hotplug_slot *slot, u8 value);
65static int enable_slot(struct hotplug_slot *slot);
66static int disable_slot(struct hotplug_slot *slot);
67static int get_power_status(struct hotplug_slot *slot, u8 *value);
68static int get_attention_status(struct hotplug_slot *slot, u8 *value);
69static int get_latch_status(struct hotplug_slot *slot, u8 *value);
70static int get_adapter_status(struct hotplug_slot *slot, u8 *value);
71static int reset_slot(struct hotplug_slot *slot, int probe);
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{
Kenji Kaneshige586f1d62009-10-05 17:41:37 +090079 kfree(hotplug_slot->ops);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +090080 kfree(hotplug_slot->info);
81 kfree(hotplug_slot);
Kenji Kaneshigea0b17252006-12-21 17:01:02 -080082}
83
Kenji Kaneshige8720d272009-09-15 17:24:46 +090084static int init_slot(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Kenji Kaneshige8720d272009-09-15 17:24:46 +090086 struct slot *slot = ctrl->slot;
87 struct hotplug_slot *hotplug = NULL;
88 struct hotplug_slot_info *info = NULL;
Kenji Kaneshige586f1d62009-10-05 17:41:37 +090089 struct hotplug_slot_ops *ops = NULL;
Alex Chiange1acb242008-10-20 17:41:38 -060090 char name[SLOT_NAME_SIZE];
Kenji Kaneshigea0b17252006-12-21 17:01:02 -080091 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Kenji Kaneshige8720d272009-09-15 17:24:46 +090093 hotplug = kzalloc(sizeof(*hotplug), GFP_KERNEL);
94 if (!hotplug)
95 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Kenji Kaneshige8720d272009-09-15 17:24:46 +090097 info = kzalloc(sizeof(*info), GFP_KERNEL);
98 if (!info)
99 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900101 /* Setup hotplug slot ops */
102 ops = kzalloc(sizeof(*ops), GFP_KERNEL);
103 if (!ops)
104 goto out;
Bjorn Helgaas9cad7f52014-02-11 15:26:29 -0700105
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900106 ops->enable_slot = enable_slot;
107 ops->disable_slot = disable_slot;
108 ops->get_power_status = get_power_status;
109 ops->get_adapter_status = get_adapter_status;
Alex Williamson2e35afa2013-08-08 14:09:37 -0600110 ops->reset_slot = reset_slot;
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900111 if (MRL_SENS(ctrl))
112 ops->get_latch_status = get_latch_status;
113 if (ATTN_LED(ctrl)) {
114 ops->get_attention_status = get_attention_status;
115 ops->set_attention_status = set_attention_status;
Keith Busch576243b2016-09-13 10:31:59 -0600116 } else if (ctrl->pcie->port->hotplug_user_indicators) {
117 ops->get_attention_status = pciehp_get_raw_indicator_status;
118 ops->set_attention_status = pciehp_set_raw_indicator_status;
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900119 }
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 Kaneshige8720d272009-09-15 17:24:46 +0900129 retval = pci_hp_register(hotplug,
Kenji Kaneshige385e2492009-09-15 17:30:14 +0900130 ctrl->pcie->port->subordinate, 0, name);
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900131 if (retval)
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500132 ctrl_err(ctrl, "pci_hp_register failed: error %d\n", retval);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900133out:
134 if (retval) {
Kenji Kaneshige586f1d62009-10-05 17:41:37 +0900135 kfree(ops);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900136 kfree(info);
137 kfree(hotplug);
138 }
Kenji Kaneshigea0b17252006-12-21 17:01:02 -0800139 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900142static void cleanup_slot(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900144 pci_hp_deregister(ctrl->slot->hotplug_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
148 * set_attention_status - Turns the Amber LED for a slot on, off or blink
149 */
150static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
151{
152 struct slot *slot = hotplug_slot->private;
153
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700154 pciehp_set_attention_status(slot, status);
155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
158
159static int enable_slot(struct hotplug_slot *hotplug_slot)
160{
161 struct slot *slot = hotplug_slot->private;
162
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800163 return pciehp_sysfs_enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
166
167static int disable_slot(struct hotplug_slot *hotplug_slot)
168{
169 struct slot *slot = hotplug_slot->private;
170
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800171 return pciehp_sysfs_disable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
175{
176 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700178 pciehp_get_power_status(slot, value);
179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
183{
184 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700186 pciehp_get_attention_status(slot, value);
187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190static int get_latch_status(struct hotplug_slot *hotplug_slot, u8 *value)
191{
192 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700194 pciehp_get_latch_status(slot, value);
195 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
199{
200 struct slot *slot = hotplug_slot->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700202 pciehp_get_adapter_status(slot, value);
203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Alex Williamson2e35afa2013-08-08 14:09:37 -0600206static int reset_slot(struct hotplug_slot *hotplug_slot, int probe)
207{
208 struct slot *slot = hotplug_slot->private;
209
Alex Williamson2e35afa2013-08-08 14:09:37 -0600210 return pciehp_reset_slot(slot, probe);
211}
212
Rafael J. Wysocki0516c8b2009-01-13 14:44:19 +0100213static int pciehp_probe(struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 int rc;
216 struct controller *ctrl;
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900217 struct slot *slot;
Kenji Kaneshige8792e112009-10-05 17:46:43 +0900218 u8 occupied, poweron;
Kenji Kaneshige125c39f2008-05-28 14:57:30 +0900219
Rafael J. Wysockie705c292015-05-19 15:27:58 +0200220 /* If this is not a "hotplug" service, we have no business here. */
221 if (dev->service != PCIE_PORT_SERVICE_HP)
222 return -ENODEV;
Kenji Kaneshigea073a822007-08-09 16:09:35 -0700223
Andreas Noever62e44922014-06-09 23:03:32 +0200224 if (!dev->port->subordinate) {
225 /* Can happen if we run out of bus numbers during probe */
226 dev_err(&dev->device,
227 "Hotplug bridge without secondary bus, ignoring\n");
Rafael J. Wysocki2af31f42015-05-23 00:38:57 +0200228 return -ENODEV;
Andreas Noever62e44922014-06-09 23:03:32 +0200229 }
230
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900231 ctrl = pcie_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (!ctrl) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900233 dev_err(&dev->device, "Controller initialization failed\n");
Rafael J. Wysocki2af31f42015-05-23 00:38:57 +0200234 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
Kenji Kaneshigeb9708942008-06-26 20:06:24 +0900236 set_service_data(dev, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /* Setup the slot information structures */
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900239 rc = init_slot(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (rc) {
Alex Chiangf46753c2008-06-10 15:28:50 -0600241 if (rc == -EBUSY)
Ryan Desfosses227f0642014-04-18 20:13:50 -0400242 ctrl_warn(ctrl, "Slot already registered by another hotplug driver\n");
Alex Chiangf46753c2008-06-10 15:28:50 -0600243 else
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500244 ctrl_err(ctrl, "Slot initialization failed (%d)\n", rc);
Kenji Kaneshigea8c2b632006-12-21 17:01:05 -0800245 goto err_out_release_ctlr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800248 /* Enable events after we have setup the data structures */
249 rc = pcie_init_notification(ctrl);
250 if (rc) {
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500251 ctrl_err(ctrl, "Notification initialization failed (%d)\n", rc);
Kenji Kaneshige65b947b2009-10-05 17:43:29 +0900252 goto err_out_free_ctrl_slot;
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800253 }
254
Kenji Kaneshigedb9aaf02008-12-08 14:30:24 +0900255 /* Check if slot is occupied */
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900256 slot = ctrl->slot;
Kenji Kaneshige8792e112009-10-05 17:46:43 +0900257 pciehp_get_adapter_status(slot, &occupied);
258 pciehp_get_power_status(slot, &poweron);
Rajat Jain50b52fd2014-02-04 18:31:11 -0800259 if (occupied && pciehp_force) {
260 mutex_lock(&slot->hotplug_lock);
Kenji Kaneshige8792e112009-10-05 17:46:43 +0900261 pciehp_enable_slot(slot);
Rajat Jain50b52fd2014-02-04 18:31:11 -0800262 mutex_unlock(&slot->hotplug_lock);
263 }
Kenji Kaneshige8792e112009-10-05 17:46:43 +0900264 /* If empty slot's power status is on, turn power off */
265 if (!occupied && poweron && POWER_CTRL(ctrl))
266 pciehp_power_off_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return 0;
269
270err_out_free_ctrl_slot:
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900271 cleanup_slot(ctrl);
Kenji Kaneshigea8c2b632006-12-21 17:01:05 -0800272err_out_release_ctlr:
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900273 pciehp_release_ctrl(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return -ENODEV;
275}
276
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900277static void pciehp_remove(struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Kenji Kaneshigeb9708942008-06-26 20:06:24 +0900279 struct controller *ctrl = get_service_data(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900281 cleanup_slot(ctrl);
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900282 pciehp_release_ctrl(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285#ifdef CONFIG_PM
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400286static int pciehp_suspend(struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return 0;
289}
290
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400291static int pciehp_resume(struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Oliver Neukum87683e22012-09-07 23:28:30 +0200293 struct controller *ctrl;
294 struct slot *slot;
295 u8 status;
296
Oliver Neukum87683e22012-09-07 23:28:30 +0200297 ctrl = get_service_data(dev);
Mark Lordcd2fe832007-11-28 15:12:00 -0800298
Oliver Neukum87683e22012-09-07 23:28:30 +0200299 /* reinitialize the chipset's event detection logic */
300 pcie_enable_notification(ctrl);
Mark Lordcd2fe832007-11-28 15:12:00 -0800301
Oliver Neukum87683e22012-09-07 23:28:30 +0200302 slot = ctrl->slot;
Mark Lordcd2fe832007-11-28 15:12:00 -0800303
Oliver Neukum87683e22012-09-07 23:28:30 +0200304 /* Check if slot is occupied */
305 pciehp_get_adapter_status(slot, &status);
Rajat Jain50b52fd2014-02-04 18:31:11 -0800306 mutex_lock(&slot->hotplug_lock);
Oliver Neukum87683e22012-09-07 23:28:30 +0200307 if (status)
308 pciehp_enable_slot(slot);
309 else
310 pciehp_disable_slot(slot);
Rajat Jain50b52fd2014-02-04 18:31:11 -0800311 mutex_unlock(&slot->hotplug_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 return 0;
313}
Rafael J. Wysocki3a3c2442009-02-15 22:32:48 +0100314#endif /* PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316static struct pcie_port_service_driver hpdriver_portdrv = {
Taku Izumi83e9ad52008-09-05 12:09:43 +0900317 .name = PCIE_MODULE_NAME,
Rafael J. Wysocki22106362009-01-13 14:46:46 +0100318 .port_type = PCIE_ANY_PORT,
319 .service = PCIE_PORT_SERVICE_HP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 .probe = pciehp_probe,
322 .remove = pciehp_remove,
323
324#ifdef CONFIG_PM
325 .suspend = pciehp_suspend,
326 .resume = pciehp_resume,
327#endif /* PM */
328};
329
330static int __init pcied_init(void)
331{
332 int retval = 0;
333
rajesh.shah@intel.coma8a2be92005-10-31 16:20:07 -0800334 retval = pcie_port_service_register(&hpdriver_portdrv);
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700335 dbg("pcie_port_service_register = %d\n", retval);
336 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
Yijing Wangc2be6f92013-01-11 10:15:54 +0800337 if (retval)
Taku Izumi18b341b2008-10-23 11:47:32 +0900338 dbg("Failure to register service\n");
Yijing Wangc2be6f92013-01-11 10:15:54 +0800339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return retval;
341}
Paul Gortmaker70626d82016-08-24 16:57:52 -0400342device_initcall(pcied_init);