blob: 728b119f71ad4dbaadfe65ce51ce1e7b1271bf99 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI HotPlug Controller Core
3 *
4 * Copyright (C) 2001-2002 Greg Kroah-Hartman (greg@kroah.com)
5 * Copyright (C) 2001-2002 IBM Corp.
6 *
7 * All rights reserved.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
17 * NON INFRINGEMENT. See the GNU General Public License for more
18 * details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
Kristen Carlson Accardifb5f4d72006-09-29 10:30:27 -070024 * Send feedback to <kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 *
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/kernel.h>
31#include <linux/types.h>
32#include <linux/list.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070033#include <linux/kobject.h>
34#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/pagemap.h>
36#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
38#include <linux/mount.h>
39#include <linux/namei.h>
Kenji Kaneshige95cb9092008-10-20 17:40:57 -060040#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070042#include <linux/pci_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/uaccess.h>
Alex Chiangf46753c2008-06-10 15:28:50 -060044#include "../pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define MY_NAME "pci_hotplug"
47
Harvey Harrison66bef8c2008-03-03 19:09:46 -080048#define dbg(fmt, arg...) do { if (debug) printk(KERN_DEBUG "%s: %s: " fmt , MY_NAME , __func__ , ## arg); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define err(format, arg...) printk(KERN_ERR "%s: " format , MY_NAME , ## arg)
50#define info(format, arg...) printk(KERN_INFO "%s: " format , MY_NAME , ## arg)
51#define warn(format, arg...) printk(KERN_WARNING "%s: " format , MY_NAME , ## arg)
52
53
54/* local variables */
55static int debug;
56
57#define DRIVER_VERSION "0.5"
58#define DRIVER_AUTHOR "Greg Kroah-Hartman <greg@kroah.com>, Scott Murray <scottm@somanetworks.com>"
59#define DRIVER_DESC "PCI Hot Plug PCI Core"
60
61
62//////////////////////////////////////////////////////////////////
63
64static LIST_HEAD(pci_hotplug_slot_list);
Kenji Kaneshige95cb9092008-10-20 17:40:57 -060065static DEFINE_MUTEX(pci_hp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef CONFIG_HOTPLUG_PCI_CPCI
68extern int cpci_hotplug_init(int debug);
69extern void cpci_hotplug_exit(void);
70#else
71static inline int cpci_hotplug_init(int debug) { return 0; }
72static inline void cpci_hotplug_exit(void) { }
73#endif
74
75/* Weee, fun with macros... */
76#define GET_STATUS(name,type) \
77static int get_##name (struct hotplug_slot *slot, type *value) \
78{ \
79 struct hotplug_slot_ops *ops = slot->ops; \
80 int retval = 0; \
Kenji Kaneshigebd1d9852008-09-29 17:37:05 +090081 if (!try_module_get(ops->owner)) \
Zhao, Yuc8761fe2008-09-22 14:26:05 +080082 return -ENODEV; \
83 if (ops->get_##name) \
84 retval = ops->get_##name(slot, value); \
85 else \
86 *value = slot->info->name; \
87 module_put(ops->owner); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return retval; \
89}
90
91GET_STATUS(power_status, u8)
92GET_STATUS(attention_status, u8)
93GET_STATUS(latch_status, u8)
94GET_STATUS(adapter_status, u8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Alex Chiangf46753c2008-06-10 15:28:50 -060096static ssize_t power_read_file(struct pci_slot *slot, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 int retval;
99 u8 value;
100
Alex Chiangf46753c2008-06-10 15:28:50 -0600101 retval = get_power_status(slot->hotplug, &value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (retval)
103 goto exit;
104 retval = sprintf (buf, "%d\n", value);
105exit:
106 return retval;
107}
108
Alex Chiangf46753c2008-06-10 15:28:50 -0600109static ssize_t power_write_file(struct pci_slot *pci_slot, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 size_t count)
111{
Alex Chiangf46753c2008-06-10 15:28:50 -0600112 struct hotplug_slot *slot = pci_slot->hotplug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 unsigned long lpower;
114 u8 power;
115 int retval = 0;
116
117 lpower = simple_strtoul (buf, NULL, 10);
118 power = (u8)(lpower & 0xff);
119 dbg ("power = %d\n", power);
120
121 if (!try_module_get(slot->ops->owner)) {
122 retval = -ENODEV;
123 goto exit;
124 }
125 switch (power) {
126 case 0:
127 if (slot->ops->disable_slot)
128 retval = slot->ops->disable_slot(slot);
129 break;
130
131 case 1:
132 if (slot->ops->enable_slot)
133 retval = slot->ops->enable_slot(slot);
134 break;
135
136 default:
137 err ("Illegal value specified for power\n");
138 retval = -EINVAL;
139 }
140 module_put(slot->ops->owner);
141
142exit:
143 if (retval)
144 return retval;
145 return count;
146}
147
Alex Chiangf46753c2008-06-10 15:28:50 -0600148static struct pci_slot_attribute hotplug_slot_attr_power = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 .attr = {.name = "power", .mode = S_IFREG | S_IRUGO | S_IWUSR},
150 .show = power_read_file,
151 .store = power_write_file
152};
153
Alex Chiangf46753c2008-06-10 15:28:50 -0600154static ssize_t attention_read_file(struct pci_slot *slot, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 int retval;
157 u8 value;
158
Alex Chiangf46753c2008-06-10 15:28:50 -0600159 retval = get_attention_status(slot->hotplug, &value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (retval)
161 goto exit;
Alex Chiangf46753c2008-06-10 15:28:50 -0600162 retval = sprintf(buf, "%d\n", value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164exit:
165 return retval;
166}
167
Alex Chiangf46753c2008-06-10 15:28:50 -0600168static ssize_t attention_write_file(struct pci_slot *slot, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 size_t count)
170{
Alex Chiangf46753c2008-06-10 15:28:50 -0600171 struct hotplug_slot_ops *ops = slot->hotplug->ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 unsigned long lattention;
173 u8 attention;
174 int retval = 0;
175
176 lattention = simple_strtoul (buf, NULL, 10);
177 attention = (u8)(lattention & 0xff);
178 dbg (" - attention = %d\n", attention);
179
Alex Chiangf46753c2008-06-10 15:28:50 -0600180 if (!try_module_get(ops->owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 retval = -ENODEV;
182 goto exit;
183 }
Alex Chiangf46753c2008-06-10 15:28:50 -0600184 if (ops->set_attention_status)
185 retval = ops->set_attention_status(slot->hotplug, attention);
186 module_put(ops->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188exit:
189 if (retval)
190 return retval;
191 return count;
192}
193
Alex Chiangf46753c2008-06-10 15:28:50 -0600194static struct pci_slot_attribute hotplug_slot_attr_attention = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 .attr = {.name = "attention", .mode = S_IFREG | S_IRUGO | S_IWUSR},
196 .show = attention_read_file,
197 .store = attention_write_file
198};
199
Alex Chiangf46753c2008-06-10 15:28:50 -0600200static ssize_t latch_read_file(struct pci_slot *slot, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 int retval;
203 u8 value;
204
Alex Chiangf46753c2008-06-10 15:28:50 -0600205 retval = get_latch_status(slot->hotplug, &value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (retval)
207 goto exit;
208 retval = sprintf (buf, "%d\n", value);
209
210exit:
211 return retval;
212}
213
Alex Chiangf46753c2008-06-10 15:28:50 -0600214static struct pci_slot_attribute hotplug_slot_attr_latch = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .attr = {.name = "latch", .mode = S_IFREG | S_IRUGO},
216 .show = latch_read_file,
217};
218
Alex Chiangf46753c2008-06-10 15:28:50 -0600219static ssize_t presence_read_file(struct pci_slot *slot, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int retval;
222 u8 value;
223
Alex Chiangf46753c2008-06-10 15:28:50 -0600224 retval = get_adapter_status(slot->hotplug, &value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (retval)
226 goto exit;
227 retval = sprintf (buf, "%d\n", value);
228
229exit:
230 return retval;
231}
232
Alex Chiangf46753c2008-06-10 15:28:50 -0600233static struct pci_slot_attribute hotplug_slot_attr_presence = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 .attr = {.name = "adapter", .mode = S_IFREG | S_IRUGO},
235 .show = presence_read_file,
236};
237
Alex Chiangf46753c2008-06-10 15:28:50 -0600238static ssize_t test_write_file(struct pci_slot *pci_slot, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 size_t count)
240{
Alex Chiangf46753c2008-06-10 15:28:50 -0600241 struct hotplug_slot *slot = pci_slot->hotplug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 unsigned long ltest;
243 u32 test;
244 int retval = 0;
245
246 ltest = simple_strtoul (buf, NULL, 10);
247 test = (u32)(ltest & 0xffffffff);
248 dbg ("test = %d\n", test);
249
250 if (!try_module_get(slot->ops->owner)) {
251 retval = -ENODEV;
252 goto exit;
253 }
254 if (slot->ops->hardware_test)
255 retval = slot->ops->hardware_test(slot, test);
256 module_put(slot->ops->owner);
257
258exit:
259 if (retval)
260 return retval;
261 return count;
262}
263
Alex Chiangf46753c2008-06-10 15:28:50 -0600264static struct pci_slot_attribute hotplug_slot_attr_test = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 .attr = {.name = "test", .mode = S_IFREG | S_IRUGO | S_IWUSR},
266 .store = test_write_file
267};
268
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900269static bool has_power_file(struct pci_slot *pci_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Alex Chiangf46753c2008-06-10 15:28:50 -0600271 struct hotplug_slot *slot = pci_slot->hotplug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if ((!slot) || (!slot->ops))
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900273 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if ((slot->ops->enable_slot) ||
275 (slot->ops->disable_slot) ||
276 (slot->ops->get_power_status))
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900277 return true;
278 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900281static bool has_attention_file(struct pci_slot *pci_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Alex Chiangf46753c2008-06-10 15:28:50 -0600283 struct hotplug_slot *slot = pci_slot->hotplug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if ((!slot) || (!slot->ops))
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900285 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if ((slot->ops->set_attention_status) ||
287 (slot->ops->get_attention_status))
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900288 return true;
289 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900292static bool has_latch_file(struct pci_slot *pci_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Alex Chiangf46753c2008-06-10 15:28:50 -0600294 struct hotplug_slot *slot = pci_slot->hotplug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if ((!slot) || (!slot->ops))
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900296 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (slot->ops->get_latch_status)
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900298 return true;
299 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900302static bool has_adapter_file(struct pci_slot *pci_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Alex Chiangf46753c2008-06-10 15:28:50 -0600304 struct hotplug_slot *slot = pci_slot->hotplug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if ((!slot) || (!slot->ops))
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900306 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (slot->ops->get_adapter_status)
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900308 return true;
309 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900312static bool has_test_file(struct pci_slot *pci_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Alex Chiangf46753c2008-06-10 15:28:50 -0600314 struct hotplug_slot *slot = pci_slot->hotplug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if ((!slot) || (!slot->ops))
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900316 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (slot->ops->hardware_test)
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900318 return true;
319 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
Alex Chiangf46753c2008-06-10 15:28:50 -0600322static int fs_add_slot(struct pci_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700324 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900326 /* Create symbolic link to the hotplug driver module */
327 pci_hp_create_module_link(slot);
328
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900329 if (has_power_file(slot)) {
330 retval = sysfs_create_file(&slot->kobj,
331 &hotplug_slot_attr_power.attr);
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700332 if (retval)
333 goto exit_power;
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900336 if (has_attention_file(slot)) {
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700337 retval = sysfs_create_file(&slot->kobj,
338 &hotplug_slot_attr_attention.attr);
339 if (retval)
340 goto exit_attention;
341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900343 if (has_latch_file(slot)) {
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700344 retval = sysfs_create_file(&slot->kobj,
345 &hotplug_slot_attr_latch.attr);
346 if (retval)
347 goto exit_latch;
348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900350 if (has_adapter_file(slot)) {
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700351 retval = sysfs_create_file(&slot->kobj,
352 &hotplug_slot_attr_presence.attr);
353 if (retval)
354 goto exit_adapter;
355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900357 if (has_test_file(slot)) {
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700358 retval = sysfs_create_file(&slot->kobj,
359 &hotplug_slot_attr_test.attr);
360 if (retval)
361 goto exit_test;
362 }
363
364 goto exit;
365
366exit_test:
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900367 if (has_adapter_file(slot))
368 sysfs_remove_file(&slot->kobj,
369 &hotplug_slot_attr_presence.attr);
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700370exit_adapter:
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900371 if (has_latch_file(slot))
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700372 sysfs_remove_file(&slot->kobj, &hotplug_slot_attr_latch.attr);
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700373exit_latch:
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900374 if (has_attention_file(slot))
375 sysfs_remove_file(&slot->kobj,
376 &hotplug_slot_attr_attention.attr);
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700377exit_attention:
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900378 if (has_power_file(slot))
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700379 sysfs_remove_file(&slot->kobj, &hotplug_slot_attr_power.attr);
380exit_power:
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900381 pci_hp_remove_module_link(slot);
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700382exit:
383 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Alex Chiangf46753c2008-06-10 15:28:50 -0600386static void fs_remove_slot(struct pci_slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900388 if (has_power_file(slot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 sysfs_remove_file(&slot->kobj, &hotplug_slot_attr_power.attr);
390
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900391 if (has_attention_file(slot))
392 sysfs_remove_file(&slot->kobj,
393 &hotplug_slot_attr_attention.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900395 if (has_latch_file(slot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 sysfs_remove_file(&slot->kobj, &hotplug_slot_attr_latch.attr);
397
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900398 if (has_adapter_file(slot))
399 sysfs_remove_file(&slot->kobj,
400 &hotplug_slot_attr_presence.attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Kenji Kaneshige498a8fa2009-06-16 11:00:47 +0900402 if (has_test_file(slot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 sysfs_remove_file(&slot->kobj, &hotplug_slot_attr_test.attr);
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900404
405 pci_hp_remove_module_link(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
408static struct hotplug_slot *get_slot_from_name (const char *name)
409{
410 struct hotplug_slot *slot;
411 struct list_head *tmp;
412
413 list_for_each (tmp, &pci_hotplug_slot_list) {
414 slot = list_entry (tmp, struct hotplug_slot, slot_list);
Alex Chiang58319b82008-10-20 17:41:58 -0600415 if (strcmp(hotplug_slot_name(slot), name) == 0)
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600416 return slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600418 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
421/**
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900422 * __pci_hp_register - register a hotplug_slot with the PCI hotplug subsystem
Jesse Barnes65b943f2008-06-25 15:27:34 -0700423 * @bus: bus this slot is on
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * @slot: pointer to the &struct hotplug_slot to register
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900425 * @devnr: device number
Alex Chiang1359f272008-10-20 17:40:42 -0600426 * @name: name registered with kobject core
Randy Dunlap503998c2009-06-24 09:18:14 -0700427 * @owner: caller module owner
428 * @mod_name: caller module name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 *
430 * Registers a hotplug slot with the pci hotplug subsystem, which will allow
431 * userspace interaction to the slot.
432 *
433 * Returns 0 if successful, anything else for an error.
434 */
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900435int __pci_hp_register(struct hotplug_slot *slot, struct pci_bus *bus,
436 int devnr, const char *name,
437 struct module *owner, const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
439 int result;
Alex Chiangf46753c2008-06-10 15:28:50 -0600440 struct pci_slot *pci_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (slot == NULL)
443 return -ENODEV;
444 if ((slot->info == NULL) || (slot->ops == NULL))
445 return -EINVAL;
446 if (slot->release == NULL) {
Joe Perchesa6f29a92007-11-19 17:48:29 -0800447 dbg("Why are you trying to register a hotplug slot "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 "without a proper release function?\n");
449 return -EINVAL;
450 }
451
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900452 slot->ops->owner = owner;
453 slot->ops->mod_name = mod_name;
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600454
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900455 mutex_lock(&pci_hp_mutex);
Alex Chiang8344b562008-06-10 15:30:42 -0600456 /*
457 * No problems if we call this interface from both ACPI_PCI_SLOT
458 * driver and call it here again. If we've already created the
459 * pci_slot, the interface will simply bump the refcount.
460 */
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900461 pci_slot = pci_create_slot(bus, devnr, name, slot);
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600462 if (IS_ERR(pci_slot)) {
463 result = PTR_ERR(pci_slot);
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600464 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
Greg Kroah-Hartman64dbcac2007-12-17 15:54:39 -0400466
Alex Chiangf46753c2008-06-10 15:28:50 -0600467 slot->pci_slot = pci_slot;
468 pci_slot->hotplug = slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Alex Chiangf46753c2008-06-10 15:28:50 -0600470 list_add(&slot->slot_list, &pci_hotplug_slot_list);
Alex Chiangf46753c2008-06-10 15:28:50 -0600471
472 result = fs_add_slot(pci_slot);
473 kobject_uevent(&pci_slot->kobj, KOBJ_ADD);
Alex Chiang1359f272008-10-20 17:40:42 -0600474 dbg("Added slot %s to the list\n", name);
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600475out:
476 mutex_unlock(&pci_hp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return result;
478}
479
480/**
481 * pci_hp_deregister - deregister a hotplug_slot with the PCI hotplug subsystem
Jesse Barnes65b943f2008-06-25 15:27:34 -0700482 * @hotplug: pointer to the &struct hotplug_slot to deregister
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 *
484 * The @slot must have been registered with the pci hotplug subsystem
485 * previously with a call to pci_hp_register().
486 *
487 * Returns 0 if successful, anything else for an error.
488 */
Alex Chiangf46753c2008-06-10 15:28:50 -0600489int pci_hp_deregister(struct hotplug_slot *hotplug)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct hotplug_slot *temp;
Alex Chiangf46753c2008-06-10 15:28:50 -0600492 struct pci_slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Alex Chiangf46753c2008-06-10 15:28:50 -0600494 if (!hotplug)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return -ENODEV;
496
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600497 mutex_lock(&pci_hp_mutex);
Alex Chiang58319b82008-10-20 17:41:58 -0600498 temp = get_slot_from_name(hotplug_slot_name(hotplug));
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600499 if (temp != hotplug) {
500 mutex_unlock(&pci_hp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return -ENODEV;
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Alex Chiangf46753c2008-06-10 15:28:50 -0600504 list_del(&hotplug->slot_list);
Alex Chiangf46753c2008-06-10 15:28:50 -0600505
506 slot = hotplug->pci_slot;
507 fs_remove_slot(slot);
Alex Chiang58319b82008-10-20 17:41:58 -0600508 dbg("Removed slot %s from the list\n", hotplug_slot_name(hotplug));
Alex Chiangf46753c2008-06-10 15:28:50 -0600509
510 hotplug->release(hotplug);
511 slot->hotplug = NULL;
512 pci_destroy_slot(slot);
Kenji Kaneshige95cb9092008-10-20 17:40:57 -0600513 mutex_unlock(&pci_hp_mutex);
Alex Chiangf46753c2008-06-10 15:28:50 -0600514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 0;
516}
517
518/**
519 * pci_hp_change_slot_info - changes the slot's information structure in the core
Jesse Barnes65b943f2008-06-25 15:27:34 -0700520 * @hotplug: pointer to the slot whose info has changed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 * @info: pointer to the info copy into the slot's info structure
522 *
523 * @slot must have been registered with the pci
524 * hotplug subsystem previously with a call to pci_hp_register().
525 *
526 * Returns 0 if successful, anything else for an error.
527 */
Alex Chiangf46753c2008-06-10 15:28:50 -0600528int __must_check pci_hp_change_slot_info(struct hotplug_slot *hotplug,
Greg Kroah-Hartman660a0e82006-08-28 11:43:25 -0700529 struct hotplug_slot_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Alex Chiangf46753c2008-06-10 15:28:50 -0600531 struct pci_slot *slot;
532 if (!hotplug || !info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return -ENODEV;
Alex Chiangf46753c2008-06-10 15:28:50 -0600534 slot = hotplug->pci_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Alex Chiangf46753c2008-06-10 15:28:50 -0600536 memcpy(hotplug->info, info, sizeof(struct hotplug_slot_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 return 0;
539}
540
541static int __init pci_hotplug_init (void)
542{
543 int result;
Greg Kroah-Hartman0fed80f2007-11-01 19:41:16 -0700544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 result = cpci_hotplug_init(debug);
546 if (result) {
547 err ("cpci_hotplug_init with error %d\n", result);
Alex Chiangf46753c2008-06-10 15:28:50 -0600548 goto err_cpci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550
551 info (DRIVER_DESC " version: " DRIVER_VERSION "\n");
Greg Kroah-Hartman81ace5c2007-10-29 23:22:26 -0500552
Alex Chiangf46753c2008-06-10 15:28:50 -0600553err_cpci:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return result;
555}
556
557static void __exit pci_hotplug_exit (void)
558{
559 cpci_hotplug_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562module_init(pci_hotplug_init);
563module_exit(pci_hotplug_exit);
564
565MODULE_AUTHOR(DRIVER_AUTHOR);
566MODULE_DESCRIPTION(DRIVER_DESC);
567MODULE_LICENSE("GPL");
568module_param(debug, bool, 0644);
569MODULE_PARM_DESC(debug, "Debugging mode enabled or not");
570
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900571EXPORT_SYMBOL_GPL(__pci_hp_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572EXPORT_SYMBOL_GPL(pci_hp_deregister);
573EXPORT_SYMBOL_GPL(pci_hp_change_slot_info);