blob: f2945fa73d4ffeeb5010358b5cc63fce32b73a5a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI Hot Plug Controller Driver for RPA-compliant PPC64 platform.
3 * Copyright (C) 2003 Linda Xie <lxie@us.ibm.com>
4 *
5 * All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
15 * NON INFRINGEMENT. See the GNU General Public License for more
16 * details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 * Send feedback to <lxie@us.ibm.com>
23 *
24 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070029#include <linux/pci_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
Benjamin Herrenschmidtb4a26be2010-04-06 15:03:40 +000032#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/eeh.h> /* for eeh_add_device() */
34#include <asm/rtas.h> /* rtas_call */
35#include <asm/pci-bridge.h> /* for pci_controller */
36#include "../pci.h" /* for pci_add_new_bus */
37 /* and pci_do_scan_bus */
38#include "rpaphp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Rusty Russell90ab5ee2012-01-13 09:32:20 +103040bool rpaphp_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041LIST_HEAD(rpaphp_slot_head);
Ryan Desfossesb7fe9432014-04-25 14:32:25 -060042EXPORT_SYMBOL_GPL(rpaphp_slot_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define DRIVER_VERSION "0.1"
45#define DRIVER_AUTHOR "Linda Xie <lxie@us.ibm.com>"
46#define DRIVER_DESC "RPA HOT Plug PCI Controller Driver"
47
48#define MAX_LOC_CODE 128
49
50MODULE_AUTHOR(DRIVER_AUTHOR);
51MODULE_DESCRIPTION(DRIVER_DESC);
52MODULE_LICENSE("GPL");
53
Kristen Carlson Accardi5d9bc1f2008-10-13 09:59:12 -070054module_param_named(debug, rpaphp_debug, bool, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/**
57 * set_attention_status - set attention LED
Randy Dunlap26e6c662007-11-28 09:04:30 -080058 * @hotplug_slot: target &hotplug_slot
59 * @value: LED control value
60 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * echo 0 > attention -- set LED OFF
62 * echo 1 > attention -- set LED ON
63 * echo 2 > attention -- set LED ID(identify, light is blinking)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
65static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 value)
66{
Linas Vepstasc02929c2007-04-13 15:34:18 -070067 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 struct slot *slot = (struct slot *)hotplug_slot->private;
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 switch (value) {
71 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 case 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 case 2:
Linas Vepstasc02929c2007-04-13 15:34:18 -070074 break;
75 default:
76 value = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 break;
78 }
Linas Vepstasc02929c2007-04-13 15:34:18 -070079
80 rc = rtas_set_indicator(DR_INDICATOR, slot->index, value);
81 if (!rc)
82 hotplug_slot->info->attention_status = value;
83
84 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
87/**
88 * get_power_status - get power status of a slot
89 * @hotplug_slot: slot to get status
90 * @value: pointer to store status
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040092static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Linas Vepstas427310f2007-04-13 15:34:13 -070094 int retval, level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct slot *slot = (struct slot *)hotplug_slot->private;
96
Linas Vepstas427310f2007-04-13 15:34:13 -070097 retval = rtas_get_power_level (slot->power_domain, &level);
98 if (!retval)
99 *value = level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return retval;
101}
102
103/**
104 * get_attention_status - get attention LED status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800105 * @hotplug_slot: slot to get status
106 * @value: pointer to store status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400108static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct slot *slot = (struct slot *)hotplug_slot->private;
Linas Vepstasebf42c02007-04-13 15:34:15 -0700111 *value = slot->hotplug_slot->info->attention_status;
112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400115static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 struct slot *slot = (struct slot *)hotplug_slot->private;
Linas Vepstasbf0af512007-04-13 15:34:14 -0700118 int rc, state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linas Vepstasbf0af512007-04-13 15:34:14 -0700120 rc = rpaphp_get_sensor_state(slot, &state);
Linas Vepstasbf0af512007-04-13 15:34:14 -0700121
122 *value = NOT_VALID;
123 if (rc)
124 return rc;
125
126 if (state == EMPTY)
127 *value = EMPTY;
128 else if (state == PRESENT)
129 *value = slot->state;
130
131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Matthew Wilcox3749c512009-12-13 08:11:32 -0500134static enum pci_bus_speed get_max_bus_speed(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Matthew Wilcox3749c512009-12-13 08:11:32 -0500136 enum pci_bus_speed speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 switch (slot->type) {
138 case 1:
139 case 2:
140 case 3:
141 case 4:
142 case 5:
143 case 6:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500144 speed = PCI_SPEED_33MHz; /* speed for case 1-6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 break;
146 case 7:
147 case 8:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500148 speed = PCI_SPEED_66MHz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 break;
150 case 11:
151 case 14:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500152 speed = PCI_SPEED_66MHz_PCIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 break;
154 case 12:
155 case 15:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500156 speed = PCI_SPEED_100MHz_PCIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 break;
158 case 13:
159 case 16:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500160 speed = PCI_SPEED_133MHz_PCIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 break;
162 default:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500163 speed = PCI_SPEED_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Matthew Wilcox3749c512009-12-13 08:11:32 -0500166
167 return speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000170static int get_children_props(struct device_node *dn, const int **drc_indexes,
171 const int **drc_names, const int **drc_types,
172 const int **drc_power_domains)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000174 const int *indexes, *names, *types, *domains;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000176 indexes = of_get_property(dn, "ibm,drc-indexes", NULL);
177 names = of_get_property(dn, "ibm,drc-names", NULL);
178 types = of_get_property(dn, "ibm,drc-types", NULL);
179 domains = of_get_property(dn, "ibm,drc-power-domains", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 if (!indexes || !names || !types || !domains) {
182 /* Slot does not have dynamically-removable children */
183 return -EINVAL;
184 }
185 if (drc_indexes)
186 *drc_indexes = indexes;
187 if (drc_names)
188 /* &drc_names[1] contains NULL terminated slot names */
189 *drc_names = names;
190 if (drc_types)
191 /* &drc_types[1] contains NULL terminated slot types */
192 *drc_types = types;
193 if (drc_power_domains)
194 *drc_power_domains = domains;
195
196 return 0;
197}
198
199/* To get the DRC props describing the current node, first obtain it's
200 * my-drc-index property. Next obtain the DRC list from it's parent. Use
201 * the my-drc-index for correlation, and obtain the requested properties.
202 */
203int rpaphp_get_drc_props(struct device_node *dn, int *drc_index,
204 char **drc_name, char **drc_type, int *drc_power_domain)
205{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000206 const int *indexes, *names;
207 const int *types, *domains;
208 const unsigned int *my_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 char *name_tmp, *type_tmp;
210 int i, rc;
211
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000212 my_index = of_get_property(dn, "ibm,my-drc-index", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 if (!my_index) {
214 /* Node isn't DLPAR/hotplug capable */
215 return -EINVAL;
216 }
217
218 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains);
219 if (rc < 0) {
220 return -EINVAL;
221 }
222
223 name_tmp = (char *) &names[1];
224 type_tmp = (char *) &types[1];
225
226 /* Iterate through parent properties, looking for my-drc-index */
Laurent Dufour761ce532014-04-10 15:02:13 +0200227 for (i = 0; i < be32_to_cpu(indexes[0]); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if ((unsigned int) indexes[i + 1] == *my_index) {
229 if (drc_name)
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700230 *drc_name = name_tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (drc_type)
232 *drc_type = type_tmp;
233 if (drc_index)
Laurent Dufour761ce532014-04-10 15:02:13 +0200234 *drc_index = be32_to_cpu(*my_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (drc_power_domain)
Laurent Dufour761ce532014-04-10 15:02:13 +0200236 *drc_power_domain = be32_to_cpu(domains[i+1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
238 }
239 name_tmp += (strlen(name_tmp) + 1);
240 type_tmp += (strlen(type_tmp) + 1);
241 }
242
243 return -EINVAL;
244}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600245EXPORT_SYMBOL_GPL(rpaphp_get_drc_props);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247static int is_php_type(char *drc_type)
248{
249 unsigned long value;
250 char *endptr;
251
252 /* PCI Hotplug nodes have an integer for drc_type */
253 value = simple_strtoul(drc_type, &endptr, 10);
254 if (endptr == drc_type)
255 return 0;
256
257 return 1;
258}
259
Linas Vepstasda659442007-04-13 15:34:22 -0700260/**
261 * is_php_dn() - return 1 if this is a hotpluggable pci slot, else 0
Randy Dunlap26e6c662007-11-28 09:04:30 -0800262 * @dn: target &device_node
263 * @indexes: passed to get_children_props()
264 * @names: passed to get_children_props()
265 * @types: returned from get_children_props()
266 * @power_domains:
Linas Vepstasda659442007-04-13 15:34:22 -0700267 *
268 * This routine will return true only if the device node is
269 * a hotpluggable slot. This routine will return false
270 * for built-in pci slots (even when the built-in slots are
271 * dlparable.)
272 */
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000273static int is_php_dn(struct device_node *dn, const int **indexes,
274 const int **names, const int **types, const int **power_domains)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000276 const int *drc_types;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 int rc;
278
279 rc = get_children_props(dn, indexes, names, &drc_types, power_domains);
Linas Vepstasda659442007-04-13 15:34:22 -0700280 if (rc < 0)
281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linas Vepstasda659442007-04-13 15:34:22 -0700283 if (!is_php_type((char *) &drc_types[1]))
284 return 0;
285
286 *types = drc_types;
287 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600290/**
Linas Vepstasda659442007-04-13 15:34:22 -0700291 * rpaphp_add_slot -- declare a hotplug slot to the hotplug subsystem.
Randy Dunlap26e6c662007-11-28 09:04:30 -0800292 * @dn: device node of slot
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600293 *
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700294 * This subroutine will register a hotpluggable slot with the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300295 * PCI hotplug infrastructure. This routine is typically called
Linas Vepstasda659442007-04-13 15:34:22 -0700296 * during boot time, if the hotplug slots are present at boot time,
297 * or is called later, by the dlpar add code, if the slot is
298 * being dynamically added during runtime.
299 *
300 * If the device node points at an embedded (built-in) slot, this
301 * routine will just return without doing anything, since embedded
302 * slots cannot be hotplugged.
303 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800304 * To remove a slot, it suffices to call rpaphp_deregister_slot().
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306int rpaphp_add_slot(struct device_node *dn)
307{
308 struct slot *slot;
309 int retval = 0;
John Rose56d84562005-07-25 10:17:03 -0500310 int i;
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000311 const int *indexes, *names, *types, *power_domains;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 char *name, *type;
313
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700314 if (!dn->name || strcmp(dn->name, "pci"))
315 return 0;
316
Linas Vepstasda659442007-04-13 15:34:22 -0700317 /* If this is not a hotplug slot, return without doing anything. */
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700318 if (!is_php_dn(dn, &indexes, &names, &types, &power_domains))
319 return 0;
320
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800321 dbg("Entry %s: dn->full_name=%s\n", __func__, dn->full_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* register PCI devices */
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700324 name = (char *) &names[1];
325 type = (char *) &types[1];
Laurent Dufour761ce532014-04-10 15:02:13 +0200326 for (i = 0; i < be32_to_cpu(indexes[0]); i++) {
327 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Laurent Dufour761ce532014-04-10 15:02:13 +0200329 index = be32_to_cpu(indexes[i + 1]);
330 slot = alloc_slot_struct(dn, index, name,
331 be32_to_cpu(power_domains[i + 1]));
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700332 if (!slot)
333 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700335 slot->type = simple_strtoul(type, NULL, 10);
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700336
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700337 dbg("Found drc-index:0x%x drc-name:%s drc-type:%s\n",
Laurent Dufour761ce532014-04-10 15:02:13 +0200338 index, name, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linas Vepstasfea54b82007-04-13 15:34:20 -0700340 retval = rpaphp_enable_slot(slot);
Linas Vepstas6f79eb72007-04-13 15:34:19 -0700341 if (!retval)
342 retval = rpaphp_register_slot(slot);
343
Linas Vepstas31be7582007-04-13 15:34:09 -0700344 if (retval)
345 dealloc_slot_struct(slot);
346
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700347 name += strlen(name) + 1;
348 type += strlen(type) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800350 dbg("%s - Exit: rc[%d]\n", __func__, retval);
Linas Vepstas31be7582007-04-13 15:34:09 -0700351
352 /* XXX FIXME: reports a failure only if last entry in loop failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return retval;
354}
Ryan Desfossesb7fe9432014-04-25 14:32:25 -0600355EXPORT_SYMBOL_GPL(rpaphp_add_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357static void __exit cleanup_slots(void)
358{
359 struct list_head *tmp, *n;
360 struct slot *slot;
361
362 /*
363 * Unregister all of our slots with the pci_hotplug subsystem,
364 * and free up all memory that we had allocated.
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700365 * memory will be freed in release_slot callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 */
367
368 list_for_each_safe(tmp, n, &rpaphp_slot_head) {
369 slot = list_entry(tmp, struct slot, rpaphp_slot_list);
370 list_del(&slot->rpaphp_slot_list);
371 pci_hp_deregister(slot->hotplug_slot);
372 }
373 return;
374}
375
376static int __init rpaphp_init(void)
377{
Grant Likelyccdb8ed2014-06-04 16:42:26 +0100378 struct device_node *dn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
John Rose5eeb8c62005-07-25 10:16:42 -0500380 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
John Rose5eeb8c62005-07-25 10:16:42 -0500381
Grant Likelyccdb8ed2014-06-04 16:42:26 +0100382 for_each_node_by_name(dn, "pci")
John Rose5eeb8c62005-07-25 10:16:42 -0500383 rpaphp_add_slot(dn);
384
John Rose5eeb8c62005-07-25 10:16:42 -0500385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388static void __exit rpaphp_exit(void)
389{
390 cleanup_slots();
391}
392
Linas Vepstasac1f0e92007-04-13 15:34:25 -0700393static int enable_slot(struct hotplug_slot *hotplug_slot)
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600394{
Linas Vepstasac1f0e92007-04-13 15:34:25 -0700395 struct slot *slot = (struct slot *)hotplug_slot->private;
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600396 int state;
397 int retval;
398
399 if (slot->state == CONFIGURED)
400 return 0;
401
402 retval = rpaphp_get_sensor_state(slot, &state);
403 if (retval)
404 return retval;
405
406 if (state == PRESENT) {
Rafael J. Wysockic4ec84c2014-01-14 12:03:14 -0700407 pci_lock_rescan_remove();
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600408 pcibios_add_pci_devices(slot->bus);
Rafael J. Wysockic4ec84c2014-01-14 12:03:14 -0700409 pci_unlock_rescan_remove();
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600410 slot->state = CONFIGURED;
411 } else if (state == EMPTY) {
412 slot->state = EMPTY;
413 } else {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800414 err("%s: slot[%s] is in invalid state\n", __func__, slot->name);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600415 slot->state = NOT_VALID;
416 return -EINVAL;
417 }
Matthew Wilcox3749c512009-12-13 08:11:32 -0500418
419 slot->bus->max_bus_speed = get_max_bus_speed(slot);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600420 return 0;
421}
422
Linas Vepstasac1f0e92007-04-13 15:34:25 -0700423static int disable_slot(struct hotplug_slot *hotplug_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct slot *slot = (struct slot *)hotplug_slot->private;
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600426 if (slot->state == NOT_CONFIGURED)
427 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Rafael J. Wysockic4ec84c2014-01-14 12:03:14 -0700429 pci_lock_rescan_remove();
Linas Vepstase70ea2632007-04-13 15:34:23 -0700430 pcibios_remove_pci_devices(slot->bus);
Rafael J. Wysockic4ec84c2014-01-14 12:03:14 -0700431 pci_unlock_rescan_remove();
Benjamin Herrenschmidtb4a26be2010-04-06 15:03:40 +0000432 vm_unmap_aliases();
433
linas934199e2005-09-28 19:33:38 -0500434 slot->state = NOT_CONFIGURED;
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600435 return 0;
436}
437
linas@austin.ibm.comb64a71a2006-01-12 18:32:58 -0600438struct hotplug_slot_ops rpaphp_hotplug_slot_ops = {
linas@austin.ibm.comb64a71a2006-01-12 18:32:58 -0600439 .enable_slot = enable_slot,
440 .disable_slot = disable_slot,
441 .set_attention_status = set_attention_status,
442 .get_power_status = get_power_status,
443 .get_attention_status = get_attention_status,
444 .get_adapter_status = get_adapter_status,
linas@austin.ibm.comb64a71a2006-01-12 18:32:58 -0600445};
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447module_init(rpaphp_init);
448module_exit(rpaphp_exit);