blob: 4bd3fce93fa4e01a4eb0a1f28dbf0e8b05074e23 [file] [log] [blame]
Alex Chiangf46753c2008-06-10 15:28:50 -06001/*
2 * drivers/pci/slot.c
3 * Copyright (C) 2006 Matthew Wilcox <matthew@wil.cx>
Alex Chiang62795042009-02-04 11:25:22 -07004 * Copyright (C) 2006-2009 Hewlett-Packard Development Company, L.P.
5 * Alex Chiang <achiang@hp.com>
Alex Chiangf46753c2008-06-10 15:28:50 -06006 */
7
8#include <linux/kobject.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Paul Gortmakereefa9cf2011-05-27 09:42:30 -040010#include <linux/module.h>
Alex Chiangf46753c2008-06-10 15:28:50 -060011#include <linux/pci.h>
12#include <linux/err.h>
13#include "pci.h"
14
15struct kset *pci_slots_kset;
16EXPORT_SYMBOL_GPL(pci_slots_kset);
Yijing Wang67546762015-07-17 17:16:31 +080017static DEFINE_MUTEX(pci_slot_mutex);
Alex Chiangf46753c2008-06-10 15:28:50 -060018
19static ssize_t pci_slot_attr_show(struct kobject *kobj,
20 struct attribute *attr, char *buf)
21{
22 struct pci_slot *slot = to_pci_slot(kobj);
23 struct pci_slot_attribute *attribute = to_pci_slot_attr(attr);
24 return attribute->show ? attribute->show(slot, buf) : -EIO;
25}
26
27static ssize_t pci_slot_attr_store(struct kobject *kobj,
28 struct attribute *attr, const char *buf, size_t len)
29{
30 struct pci_slot *slot = to_pci_slot(kobj);
31 struct pci_slot_attribute *attribute = to_pci_slot_attr(attr);
32 return attribute->store ? attribute->store(slot, buf, len) : -EIO;
33}
34
Emese Revfy52cf25d2010-01-19 02:58:23 +010035static const struct sysfs_ops pci_slot_sysfs_ops = {
Alex Chiangf46753c2008-06-10 15:28:50 -060036 .show = pci_slot_attr_show,
37 .store = pci_slot_attr_store,
38};
39
40static ssize_t address_read_file(struct pci_slot *slot, char *buf)
41{
42 if (slot->number == 0xff)
43 return sprintf(buf, "%04x:%02x\n",
44 pci_domain_nr(slot->bus),
45 slot->bus->number);
46 else
47 return sprintf(buf, "%04x:%02x:%02x\n",
48 pci_domain_nr(slot->bus),
49 slot->bus->number,
50 slot->number);
51}
52
Matthew Wilcox3749c512009-12-13 08:11:32 -050053/* these strings match up with the values in pci_bus_speed */
Stephen Hemminger17134d92010-08-31 15:25:55 -070054static const char *pci_bus_speed_strings[] = {
Matthew Wilcox3749c512009-12-13 08:11:32 -050055 "33 MHz PCI", /* 0x00 */
56 "66 MHz PCI", /* 0x01 */
Bjorn Helgaasf7625982013-11-14 11:28:18 -070057 "66 MHz PCI-X", /* 0x02 */
Matthew Wilcox3749c512009-12-13 08:11:32 -050058 "100 MHz PCI-X", /* 0x03 */
59 "133 MHz PCI-X", /* 0x04 */
60 NULL, /* 0x05 */
61 NULL, /* 0x06 */
62 NULL, /* 0x07 */
63 NULL, /* 0x08 */
64 "66 MHz PCI-X 266", /* 0x09 */
65 "100 MHz PCI-X 266", /* 0x0a */
66 "133 MHz PCI-X 266", /* 0x0b */
Matthew Wilcox45b4cdd52009-12-13 08:11:34 -050067 "Unknown AGP", /* 0x0c */
68 "1x AGP", /* 0x0d */
69 "2x AGP", /* 0x0e */
70 "4x AGP", /* 0x0f */
71 "8x AGP", /* 0x10 */
Matthew Wilcox3749c512009-12-13 08:11:32 -050072 "66 MHz PCI-X 533", /* 0x11 */
73 "100 MHz PCI-X 533", /* 0x12 */
74 "133 MHz PCI-X 533", /* 0x13 */
75 "2.5 GT/s PCIe", /* 0x14 */
76 "5.0 GT/s PCIe", /* 0x15 */
Matthew Wilcox9dfd97f2009-12-13 08:11:35 -050077 "8.0 GT/s PCIe", /* 0x16 */
Matthew Wilcox3749c512009-12-13 08:11:32 -050078};
79
80static ssize_t bus_speed_read(enum pci_bus_speed speed, char *buf)
81{
82 const char *speed_string;
83
84 if (speed < ARRAY_SIZE(pci_bus_speed_strings))
85 speed_string = pci_bus_speed_strings[speed];
86 else
87 speed_string = "Unknown";
88
89 return sprintf(buf, "%s\n", speed_string);
90}
91
92static ssize_t max_speed_read_file(struct pci_slot *slot, char *buf)
93{
94 return bus_speed_read(slot->bus->max_bus_speed, buf);
95}
96
97static ssize_t cur_speed_read_file(struct pci_slot *slot, char *buf)
98{
99 return bus_speed_read(slot->bus->cur_bus_speed, buf);
100}
101
Alex Chiangf46753c2008-06-10 15:28:50 -0600102static void pci_slot_release(struct kobject *kobj)
103{
Alex Chiangcef354d2008-09-02 09:40:51 -0600104 struct pci_dev *dev;
Alex Chiangf46753c2008-06-10 15:28:50 -0600105 struct pci_slot *slot = to_pci_slot(kobj);
106
Alex Chiang62795042009-02-04 11:25:22 -0700107 dev_dbg(&slot->bus->dev, "dev %02x, released physical slot %s\n",
108 slot->number, pci_slot_name(slot));
Alex Chiangf46753c2008-06-10 15:28:50 -0600109
Yijing Wang67546762015-07-17 17:16:31 +0800110 down_read(&pci_bus_sem);
Alex Chiangcef354d2008-09-02 09:40:51 -0600111 list_for_each_entry(dev, &slot->bus->devices, bus_list)
112 if (PCI_SLOT(dev->devfn) == slot->number)
113 dev->slot = NULL;
Yijing Wang67546762015-07-17 17:16:31 +0800114 up_read(&pci_bus_sem);
Alex Chiangcef354d2008-09-02 09:40:51 -0600115
Alex Chiangf46753c2008-06-10 15:28:50 -0600116 list_del(&slot->list);
117
118 kfree(slot);
119}
120
121static struct pci_slot_attribute pci_slot_attr_address =
Rusty Russell58f86cc2014-03-24 12:00:34 +1030122 __ATTR(address, S_IRUGO, address_read_file, NULL);
Matthew Wilcox3749c512009-12-13 08:11:32 -0500123static struct pci_slot_attribute pci_slot_attr_max_speed =
Rusty Russell58f86cc2014-03-24 12:00:34 +1030124 __ATTR(max_bus_speed, S_IRUGO, max_speed_read_file, NULL);
Matthew Wilcox3749c512009-12-13 08:11:32 -0500125static struct pci_slot_attribute pci_slot_attr_cur_speed =
Rusty Russell58f86cc2014-03-24 12:00:34 +1030126 __ATTR(cur_bus_speed, S_IRUGO, cur_speed_read_file, NULL);
Alex Chiangf46753c2008-06-10 15:28:50 -0600127
128static struct attribute *pci_slot_default_attrs[] = {
129 &pci_slot_attr_address.attr,
Matthew Wilcox3749c512009-12-13 08:11:32 -0500130 &pci_slot_attr_max_speed.attr,
131 &pci_slot_attr_cur_speed.attr,
Alex Chiangf46753c2008-06-10 15:28:50 -0600132 NULL,
133};
134
135static struct kobj_type pci_slot_ktype = {
136 .sysfs_ops = &pci_slot_sysfs_ops,
137 .release = &pci_slot_release,
138 .default_attrs = pci_slot_default_attrs,
139};
140
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600141static char *make_slot_name(const char *name)
142{
143 char *new_name;
144 int len, max, dup;
145
146 new_name = kstrdup(name, GFP_KERNEL);
147 if (!new_name)
148 return NULL;
149
150 /*
151 * Make sure we hit the realloc case the first time through the
152 * loop. 'len' will be strlen(name) + 3 at that point which is
153 * enough space for "name-X" and the trailing NUL.
154 */
155 len = strlen(name) + 2;
156 max = 1;
157 dup = 1;
158
159 for (;;) {
160 struct kobject *dup_slot;
161 dup_slot = kset_find_obj(pci_slots_kset, new_name);
162 if (!dup_slot)
163 break;
164 kobject_put(dup_slot);
165 if (dup == max) {
166 len++;
167 max *= 10;
168 kfree(new_name);
169 new_name = kmalloc(len, GFP_KERNEL);
170 if (!new_name)
171 break;
172 }
173 sprintf(new_name, "%s-%d", name, dup++);
174 }
175
176 return new_name;
177}
178
179static int rename_slot(struct pci_slot *slot, const char *name)
180{
181 int result = 0;
182 char *slot_name;
183
Alex Chiang0ad772e2008-10-20 17:41:07 -0600184 if (strcmp(pci_slot_name(slot), name) == 0)
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600185 return result;
186
187 slot_name = make_slot_name(name);
188 if (!slot_name)
189 return -ENOMEM;
190
191 result = kobject_rename(&slot->kobj, slot_name);
192 kfree(slot_name);
193
194 return result;
195}
196
197static struct pci_slot *get_slot(struct pci_bus *parent, int slot_nr)
198{
199 struct pci_slot *slot;
Yijing Wang67546762015-07-17 17:16:31 +0800200
201 /* We already hold pci_slot_mutex */
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600202 list_for_each_entry(slot, &parent->slots, list)
203 if (slot->number == slot_nr) {
204 kobject_get(&slot->kobj);
205 return slot;
206 }
207
208 return NULL;
209}
210
Alex Chiangf46753c2008-06-10 15:28:50 -0600211/**
212 * pci_create_slot - create or increment refcount for physical PCI slot
213 * @parent: struct pci_bus of parent bridge
214 * @slot_nr: PCI_SLOT(pci_dev->devfn) or -1 for placeholder
215 * @name: user visible string presented in /sys/bus/pci/slots/<name>
Alex Chiang828f3762008-10-20 17:40:52 -0600216 * @hotplug: set if caller is hotplug driver, NULL otherwise
Alex Chiangf46753c2008-06-10 15:28:50 -0600217 *
218 * PCI slots have first class attributes such as address, speed, width,
219 * and a &struct pci_slot is used to manage them. This interface will
220 * either return a new &struct pci_slot to the caller, or if the pci_slot
221 * already exists, its refcount will be incremented.
222 *
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600223 * Slots are uniquely identified by a @pci_bus, @slot_nr tuple.
224 *
225 * There are known platforms with broken firmware that assign the same
226 * name to multiple slots. Workaround these broken platforms by renaming
227 * the slots on behalf of the caller. If firmware assigns name N to
228 * multiple slots:
229 *
230 * The first slot is assigned N
231 * The second slot is assigned N-1
232 * The third slot is assigned N-2
233 * etc.
Alex Chiangf46753c2008-06-10 15:28:50 -0600234 *
235 * Placeholder slots:
236 * In most cases, @pci_bus, @slot_nr will be sufficient to uniquely identify
237 * a slot. There is one notable exception - pSeries (rpaphp), where the
238 * @slot_nr cannot be determined until a device is actually inserted into
239 * the slot. In this scenario, the caller may pass -1 for @slot_nr.
240 *
241 * The following semantics are imposed when the caller passes @slot_nr ==
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600242 * -1. First, we no longer check for an existing %struct pci_slot, as there
243 * may be many slots with @slot_nr of -1. The other change in semantics is
Alex Chiangf46753c2008-06-10 15:28:50 -0600244 * user-visible, which is the 'address' parameter presented in sysfs will
245 * consist solely of a dddd:bb tuple, where dddd is the PCI domain of the
246 * %struct pci_bus and bb is the bus number. In other words, the devfn of
247 * the 'placeholder' slot will not be displayed.
248 */
Alex Chiangf46753c2008-06-10 15:28:50 -0600249struct pci_slot *pci_create_slot(struct pci_bus *parent, int slot_nr,
Alex Chiang828f3762008-10-20 17:40:52 -0600250 const char *name,
251 struct hotplug_slot *hotplug)
Alex Chiangf46753c2008-06-10 15:28:50 -0600252{
Alex Chiangcef354d2008-09-02 09:40:51 -0600253 struct pci_dev *dev;
Alex Chiangf46753c2008-06-10 15:28:50 -0600254 struct pci_slot *slot;
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600255 int err = 0;
256 char *slot_name = NULL;
Alex Chiangf46753c2008-06-10 15:28:50 -0600257
Yijing Wang67546762015-07-17 17:16:31 +0800258 mutex_lock(&pci_slot_mutex);
Alex Chiangf46753c2008-06-10 15:28:50 -0600259
260 if (slot_nr == -1)
261 goto placeholder;
262
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600263 /*
264 * Hotplug drivers are allowed to rename an existing slot,
265 * but only if not already claimed.
266 */
267 slot = get_slot(parent, slot_nr);
268 if (slot) {
269 if (hotplug) {
270 if ((err = slot->hotplug ? -EBUSY : 0)
271 || (err = rename_slot(slot, name))) {
272 kobject_put(&slot->kobj);
273 slot = NULL;
274 goto err;
275 }
Alex Chiangf46753c2008-06-10 15:28:50 -0600276 }
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600277 goto out;
Alex Chiangf46753c2008-06-10 15:28:50 -0600278 }
279
280placeholder:
281 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
282 if (!slot) {
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600283 err = -ENOMEM;
284 goto err;
Alex Chiangf46753c2008-06-10 15:28:50 -0600285 }
286
287 slot->bus = parent;
288 slot->number = slot_nr;
289
290 slot->kobj.kset = pci_slots_kset;
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600291
292 slot_name = make_slot_name(name);
293 if (!slot_name) {
294 err = -ENOMEM;
Alex Chiangf46753c2008-06-10 15:28:50 -0600295 goto err;
296 }
297
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600298 err = kobject_init_and_add(&slot->kobj, &pci_slot_ktype, NULL,
299 "%s", slot_name);
300 if (err)
301 goto err;
302
Alex Chiangf46753c2008-06-10 15:28:50 -0600303 INIT_LIST_HEAD(&slot->list);
304 list_add(&slot->list, &parent->slots);
305
Yijing Wang67546762015-07-17 17:16:31 +0800306 down_read(&pci_bus_sem);
Alex Chiangcef354d2008-09-02 09:40:51 -0600307 list_for_each_entry(dev, &parent->devices, bus_list)
308 if (PCI_SLOT(dev->devfn) == slot_nr)
309 dev->slot = slot;
Yijing Wang67546762015-07-17 17:16:31 +0800310 up_read(&pci_bus_sem);
Alex Chiangcef354d2008-09-02 09:40:51 -0600311
Alex Chiang62795042009-02-04 11:25:22 -0700312 dev_dbg(&parent->dev, "dev %02x, created physical slot %s\n",
313 slot_nr, pci_slot_name(slot));
Alex Chiangf46753c2008-06-10 15:28:50 -0600314
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600315out:
Alex Chiang3b5dd452008-12-01 18:17:21 -0700316 kfree(slot_name);
Yijing Wang67546762015-07-17 17:16:31 +0800317 mutex_unlock(&pci_slot_mutex);
Alex Chiangf46753c2008-06-10 15:28:50 -0600318 return slot;
Alex Chiang5fe6cc62008-10-20 17:41:02 -0600319err:
Alex Chiangf46753c2008-06-10 15:28:50 -0600320 kfree(slot);
321 slot = ERR_PTR(err);
322 goto out;
323}
324EXPORT_SYMBOL_GPL(pci_create_slot);
325
326/**
Alex Chiangf46753c2008-06-10 15:28:50 -0600327 * pci_destroy_slot - decrement refcount for physical PCI slot
328 * @slot: struct pci_slot to decrement
329 *
330 * %struct pci_slot is refcounted, so destroying them is really easy; we
331 * just call kobject_put on its kobj and let our release methods do the
332 * rest.
333 */
Alex Chiangf46753c2008-06-10 15:28:50 -0600334void pci_destroy_slot(struct pci_slot *slot)
335{
Alex Chiang62795042009-02-04 11:25:22 -0700336 dev_dbg(&slot->bus->dev, "dev %02x, dec refcount to %d\n",
337 slot->number, atomic_read(&slot->kobj.kref.refcount) - 1);
Alex Chiangf46753c2008-06-10 15:28:50 -0600338
Yijing Wang67546762015-07-17 17:16:31 +0800339 mutex_lock(&pci_slot_mutex);
Alex Chiangf46753c2008-06-10 15:28:50 -0600340 kobject_put(&slot->kobj);
Yijing Wang67546762015-07-17 17:16:31 +0800341 mutex_unlock(&pci_slot_mutex);
Alex Chiangf46753c2008-06-10 15:28:50 -0600342}
343EXPORT_SYMBOL_GPL(pci_destroy_slot);
344
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900345#if defined(CONFIG_HOTPLUG_PCI) || defined(CONFIG_HOTPLUG_PCI_MODULE)
346#include <linux/pci_hotplug.h>
347/**
348 * pci_hp_create_link - create symbolic link to the hotplug driver module.
Randy Dunlap503998c2009-06-24 09:18:14 -0700349 * @pci_slot: struct pci_slot
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900350 *
351 * Helper function for pci_hotplug_core.c to create symbolic link to
352 * the hotplug driver module.
353 */
354void pci_hp_create_module_link(struct pci_slot *pci_slot)
355{
356 struct hotplug_slot *slot = pci_slot->hotplug;
357 struct kobject *kobj = NULL;
Bjorn Helgaas9fc9eea2013-04-12 11:35:40 -0600358 int ret;
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900359
360 if (!slot || !slot->ops)
361 return;
362 kobj = kset_find_obj(module_kset, slot->ops->mod_name);
363 if (!kobj)
364 return;
Bjorn Helgaas9fc9eea2013-04-12 11:35:40 -0600365 ret = sysfs_create_link(&pci_slot->kobj, kobj, "module");
366 if (ret)
367 dev_err(&pci_slot->bus->dev, "Error creating sysfs link (%d)\n",
368 ret);
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900369 kobject_put(kobj);
370}
371EXPORT_SYMBOL_GPL(pci_hp_create_module_link);
372
373/**
374 * pci_hp_remove_link - remove symbolic link to the hotplug driver module.
Randy Dunlap503998c2009-06-24 09:18:14 -0700375 * @pci_slot: struct pci_slot
Kenji Kaneshigec825bc92009-06-16 11:01:25 +0900376 *
377 * Helper function for pci_hotplug_core.c to remove symbolic link to
378 * the hotplug driver module.
379 */
380void pci_hp_remove_module_link(struct pci_slot *pci_slot)
381{
382 sysfs_remove_link(&pci_slot->kobj, "module");
383}
384EXPORT_SYMBOL_GPL(pci_hp_remove_module_link);
385#endif
386
Alex Chiangf46753c2008-06-10 15:28:50 -0600387static int pci_slot_init(void)
388{
389 struct kset *pci_bus_kset;
390
391 pci_bus_kset = bus_get_kset(&pci_bus_type);
392 pci_slots_kset = kset_create_and_add("slots", NULL,
393 &pci_bus_kset->kobj);
394 if (!pci_slots_kset) {
395 printk(KERN_ERR "PCI: Slot initialization failure\n");
396 return -ENOMEM;
397 }
398 return 0;
399}
400
401subsys_initcall(pci_slot_init);