blob: 449e890267a2bae74de8a2b6b0bedf30023b7de0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Procfs interface for the PCI bus.
3 *
4 * Copyright (c) 1997--1999 Martin Mares <mj@ucw.cz>
5 */
6
7#include <linux/init.h>
8#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/proc_fs.h>
12#include <linux/seq_file.h>
Mathieu Segaudadd77182008-01-10 14:27:12 +010013#include <linux/smp_lock.h>
Alexey Dobriyanaa0ac362007-07-15 23:40:39 -070014#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/uaccess.h>
16#include <asm/byteorder.h>
Greg KHbc56b9e2005-04-08 14:53:31 +090017#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19static int proc_initialized; /* = 0 */
20
21static loff_t
22proc_bus_pci_lseek(struct file *file, loff_t off, int whence)
23{
24 loff_t new = -1;
Josef Sipek46cc65a2006-12-08 02:37:28 -080025 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080027 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 switch (whence) {
29 case 0:
30 new = off;
31 break;
32 case 1:
33 new = file->f_pos + off;
34 break;
35 case 2:
36 new = inode->i_size + off;
37 break;
38 }
39 if (new < 0 || new > inode->i_size)
40 new = -EINVAL;
41 else
42 file->f_pos = new;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080043 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 return new;
45}
46
47static ssize_t
48proc_bus_pci_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
49{
Josef Sipek46cc65a2006-12-08 02:37:28 -080050 const struct inode *ino = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 const struct proc_dir_entry *dp = PDE(ino);
52 struct pci_dev *dev = dp->data;
53 unsigned int pos = *ppos;
54 unsigned int cnt, size;
55
56 /*
57 * Normal users can read only the standardized portion of the
58 * configuration space as several chips lock up when trying to read
59 * undefined locations (think of Intel PIIX4 as a typical example).
60 */
61
62 if (capable(CAP_SYS_ADMIN))
David Rientjescd686022007-09-27 13:41:16 -070063 size = dp->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 else if (dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
65 size = 128;
66 else
67 size = 64;
68
69 if (pos >= size)
70 return 0;
71 if (nbytes >= size)
72 nbytes = size;
73 if (pos + nbytes > size)
74 nbytes = size - pos;
75 cnt = nbytes;
76
77 if (!access_ok(VERIFY_WRITE, buf, cnt))
78 return -EINVAL;
79
80 if ((pos & 1) && cnt) {
81 unsigned char val;
Brian Kinge04b0ea2005-09-27 01:21:55 -070082 pci_user_read_config_byte(dev, pos, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 __put_user(val, buf);
84 buf++;
85 pos++;
86 cnt--;
87 }
88
89 if ((pos & 3) && cnt > 2) {
90 unsigned short val;
Brian Kinge04b0ea2005-09-27 01:21:55 -070091 pci_user_read_config_word(dev, pos, &val);
Harvey Harrisonf17a0772008-07-22 14:40:47 -070092 __put_user(cpu_to_le16(val), (__le16 __user *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 buf += 2;
94 pos += 2;
95 cnt -= 2;
96 }
97
98 while (cnt >= 4) {
99 unsigned int val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700100 pci_user_read_config_dword(dev, pos, &val);
Harvey Harrisonf17a0772008-07-22 14:40:47 -0700101 __put_user(cpu_to_le32(val), (__le32 __user *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 buf += 4;
103 pos += 4;
104 cnt -= 4;
105 }
106
107 if (cnt >= 2) {
108 unsigned short val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700109 pci_user_read_config_word(dev, pos, &val);
Harvey Harrisonf17a0772008-07-22 14:40:47 -0700110 __put_user(cpu_to_le16(val), (__le16 __user *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 buf += 2;
112 pos += 2;
113 cnt -= 2;
114 }
115
116 if (cnt) {
117 unsigned char val;
Brian Kinge04b0ea2005-09-27 01:21:55 -0700118 pci_user_read_config_byte(dev, pos, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 __put_user(val, buf);
120 buf++;
121 pos++;
122 cnt--;
123 }
124
125 *ppos = pos;
126 return nbytes;
127}
128
129static ssize_t
130proc_bus_pci_write(struct file *file, const char __user *buf, size_t nbytes, loff_t *ppos)
131{
David Rientjesecb39082007-09-27 13:41:17 -0700132 struct inode *ino = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 const struct proc_dir_entry *dp = PDE(ino);
134 struct pci_dev *dev = dp->data;
135 int pos = *ppos;
David Rientjescd686022007-09-27 13:41:16 -0700136 int size = dp->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int cnt;
138
139 if (pos >= size)
140 return 0;
141 if (nbytes >= size)
142 nbytes = size;
143 if (pos + nbytes > size)
144 nbytes = size - pos;
145 cnt = nbytes;
146
147 if (!access_ok(VERIFY_READ, buf, cnt))
148 return -EINVAL;
149
150 if ((pos & 1) && cnt) {
151 unsigned char val;
152 __get_user(val, buf);
Brian Kinge04b0ea2005-09-27 01:21:55 -0700153 pci_user_write_config_byte(dev, pos, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 buf++;
155 pos++;
156 cnt--;
157 }
158
159 if ((pos & 3) && cnt > 2) {
Harvey Harrisonf17a0772008-07-22 14:40:47 -0700160 __le16 val;
161 __get_user(val, (__le16 __user *) buf);
Brian Kinge04b0ea2005-09-27 01:21:55 -0700162 pci_user_write_config_word(dev, pos, le16_to_cpu(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 buf += 2;
164 pos += 2;
165 cnt -= 2;
166 }
167
168 while (cnt >= 4) {
Harvey Harrisonf17a0772008-07-22 14:40:47 -0700169 __le32 val;
170 __get_user(val, (__le32 __user *) buf);
Brian Kinge04b0ea2005-09-27 01:21:55 -0700171 pci_user_write_config_dword(dev, pos, le32_to_cpu(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 buf += 4;
173 pos += 4;
174 cnt -= 4;
175 }
176
177 if (cnt >= 2) {
Harvey Harrisonf17a0772008-07-22 14:40:47 -0700178 __le16 val;
179 __get_user(val, (__le16 __user *) buf);
Brian Kinge04b0ea2005-09-27 01:21:55 -0700180 pci_user_write_config_word(dev, pos, le16_to_cpu(val));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 buf += 2;
182 pos += 2;
183 cnt -= 2;
184 }
185
186 if (cnt) {
187 unsigned char val;
188 __get_user(val, buf);
Brian Kinge04b0ea2005-09-27 01:21:55 -0700189 pci_user_write_config_byte(dev, pos, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 buf++;
191 pos++;
192 cnt--;
193 }
194
195 *ppos = pos;
David Rientjesecb39082007-09-27 13:41:17 -0700196 i_size_write(ino, dp->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return nbytes;
198}
199
200struct pci_filp_private {
201 enum pci_mmap_state mmap_state;
202 int write_combine;
203};
204
Mathieu Segaudadd77182008-01-10 14:27:12 +0100205static long proc_bus_pci_ioctl(struct file *file, unsigned int cmd,
206 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Mathieu Segaudadd77182008-01-10 14:27:12 +0100208 const struct proc_dir_entry *dp = PDE(file->f_dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 struct pci_dev *dev = dp->data;
210#ifdef HAVE_PCI_MMAP
211 struct pci_filp_private *fpriv = file->private_data;
212#endif /* HAVE_PCI_MMAP */
213 int ret = 0;
214
Mathieu Segaudadd77182008-01-10 14:27:12 +0100215 lock_kernel();
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 switch (cmd) {
218 case PCIIOC_CONTROLLER:
219 ret = pci_domain_nr(dev->bus);
220 break;
221
222#ifdef HAVE_PCI_MMAP
223 case PCIIOC_MMAP_IS_IO:
224 fpriv->mmap_state = pci_mmap_io;
225 break;
226
227 case PCIIOC_MMAP_IS_MEM:
228 fpriv->mmap_state = pci_mmap_mem;
229 break;
230
231 case PCIIOC_WRITE_COMBINE:
232 if (arg)
233 fpriv->write_combine = 1;
234 else
235 fpriv->write_combine = 0;
236 break;
237
238#endif /* HAVE_PCI_MMAP */
239
240 default:
241 ret = -EINVAL;
242 break;
243 };
244
Mathieu Segaudadd77182008-01-10 14:27:12 +0100245 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return ret;
247}
248
249#ifdef HAVE_PCI_MMAP
250static int proc_bus_pci_mmap(struct file *file, struct vm_area_struct *vma)
251{
Josef Sipek46cc65a2006-12-08 02:37:28 -0800252 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 const struct proc_dir_entry *dp = PDE(inode);
254 struct pci_dev *dev = dp->data;
255 struct pci_filp_private *fpriv = file->private_data;
Jesse Barnes9eff02e2008-10-24 10:32:33 -0700256 int i, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 if (!capable(CAP_SYS_RAWIO))
259 return -EPERM;
260
Jesse Barnes9eff02e2008-10-24 10:32:33 -0700261 /* Make sure the caller is mapping a real resource for this device */
262 for (i = 0; i < PCI_ROM_RESOURCE; i++) {
263 if (pci_mmap_fits(dev, i, vma))
264 break;
265 }
266
267 if (i >= PCI_ROM_RESOURCE)
268 return -ENODEV;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 ret = pci_mmap_page_range(dev, vma,
271 fpriv->mmap_state,
272 fpriv->write_combine);
273 if (ret < 0)
274 return ret;
275
276 return 0;
277}
278
279static int proc_bus_pci_open(struct inode *inode, struct file *file)
280{
281 struct pci_filp_private *fpriv = kmalloc(sizeof(*fpriv), GFP_KERNEL);
282
283 if (!fpriv)
284 return -ENOMEM;
285
286 fpriv->mmap_state = pci_mmap_io;
287 fpriv->write_combine = 0;
288
289 file->private_data = fpriv;
290
291 return 0;
292}
293
294static int proc_bus_pci_release(struct inode *inode, struct file *file)
295{
296 kfree(file->private_data);
297 file->private_data = NULL;
298
299 return 0;
300}
301#endif /* HAVE_PCI_MMAP */
302
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800303static const struct file_operations proc_bus_pci_operations = {
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700304 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 .llseek = proc_bus_pci_lseek,
306 .read = proc_bus_pci_read,
307 .write = proc_bus_pci_write,
Mathieu Segaudadd77182008-01-10 14:27:12 +0100308 .unlocked_ioctl = proc_bus_pci_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#ifdef HAVE_PCI_MMAP
310 .open = proc_bus_pci_open,
311 .release = proc_bus_pci_release,
312 .mmap = proc_bus_pci_mmap,
313#ifdef HAVE_ARCH_PCI_GET_UNMAPPED_AREA
314 .get_unmapped_area = get_pci_unmapped_area,
315#endif /* HAVE_ARCH_PCI_GET_UNMAPPED_AREA */
316#endif /* HAVE_PCI_MMAP */
317};
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/* iterator */
320static void *pci_seq_start(struct seq_file *m, loff_t *pos)
321{
322 struct pci_dev *dev = NULL;
323 loff_t n = *pos;
324
325 for_each_pci_dev(dev) {
326 if (!n--)
327 break;
328 }
329 return dev;
330}
331
332static void *pci_seq_next(struct seq_file *m, void *v, loff_t *pos)
333{
334 struct pci_dev *dev = v;
335
336 (*pos)++;
337 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
338 return dev;
339}
340
341static void pci_seq_stop(struct seq_file *m, void *v)
342{
343 if (v) {
344 struct pci_dev *dev = v;
345 pci_dev_put(dev);
346 }
347}
348
349static int show_device(struct seq_file *m, void *v)
350{
351 const struct pci_dev *dev = v;
352 const struct pci_driver *drv;
353 int i;
354
355 if (dev == NULL)
356 return 0;
357
358 drv = pci_dev_driver(dev);
359 seq_printf(m, "%02x%02x\t%04x%04x\t%x",
360 dev->bus->number,
361 dev->devfn,
362 dev->vendor,
363 dev->device,
364 dev->irq);
Yu Zhaofde09c62008-11-22 02:39:32 +0800365
366 /* only print standard and ROM resources to preserve compatibility */
367 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700368 resource_size_t start, end;
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000369 pci_resource_to_user(dev, i, &dev->resource[i], &start, &end);
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -0700370 seq_printf(m, "\t%16llx",
371 (unsigned long long)(start |
372 (dev->resource[i].flags & PCI_REGION_FLAG_MASK)));
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000373 }
Yu Zhaofde09c62008-11-22 02:39:32 +0800374 for (i = 0; i <= PCI_ROM_RESOURCE; i++) {
Greg Kroah-Hartmane31dd6e2006-06-12 17:06:02 -0700375 resource_size_t start, end;
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000376 pci_resource_to_user(dev, i, &dev->resource[i], &start, &end);
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -0700377 seq_printf(m, "\t%16llx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 dev->resource[i].start < dev->resource[i].end ?
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -0700379 (unsigned long long)(end - start) + 1 : 0);
Michael Ellerman2311b1f2005-05-13 17:44:10 +1000380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 seq_putc(m, '\t');
382 if (drv)
383 seq_printf(m, "%s", drv->name);
384 seq_putc(m, '\n');
385 return 0;
386}
387
Jan Engelhardt02d90fc2008-01-22 20:53:43 +0100388static const struct seq_operations proc_bus_pci_devices_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .start = pci_seq_start,
390 .next = pci_seq_next,
391 .stop = pci_seq_stop,
392 .show = show_device
393};
394
395static struct proc_dir_entry *proc_bus_pci_dir;
396
397int pci_proc_attach_device(struct pci_dev *dev)
398{
399 struct pci_bus *bus = dev->bus;
400 struct proc_dir_entry *e;
401 char name[16];
402
403 if (!proc_initialized)
404 return -EACCES;
405
406 if (!bus->procdir) {
407 if (pci_proc_domain(bus)) {
408 sprintf(name, "%04x:%02x", pci_domain_nr(bus),
409 bus->number);
410 } else {
411 sprintf(name, "%02x", bus->number);
412 }
413 bus->procdir = proc_mkdir(name, proc_bus_pci_dir);
414 if (!bus->procdir)
415 return -ENOMEM;
416 }
417
418 sprintf(name, "%02x.%x", PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700419 e = proc_create_data(name, S_IFREG | S_IRUGO | S_IWUSR, bus->procdir,
420 &proc_bus_pci_operations, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (!e)
422 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 e->size = dev->cfg_size;
424 dev->procent = e;
425
426 return 0;
427}
428
429int pci_proc_detach_device(struct pci_dev *dev)
430{
431 struct proc_dir_entry *e;
432
433 if ((e = dev->procent)) {
Kenji Kaneshige79df4c62008-02-21 15:24:16 +0900434 if (atomic_read(&e->count) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return -EBUSY;
436 remove_proc_entry(e->name, dev->bus->procdir);
437 dev->procent = NULL;
438 }
439 return 0;
440}
441
Adrian Bunk54c762f2005-12-22 01:08:52 +0100442#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443int pci_proc_attach_bus(struct pci_bus* bus)
444{
445 struct proc_dir_entry *de = bus->procdir;
446
447 if (!proc_initialized)
448 return -EACCES;
449
450 if (!de) {
451 char name[16];
452 sprintf(name, "%02x", bus->number);
453 de = bus->procdir = proc_mkdir(name, proc_bus_pci_dir);
454 if (!de)
455 return -ENOMEM;
456 }
457 return 0;
458}
Adrian Bunk54c762f2005-12-22 01:08:52 +0100459#endif /* 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461int pci_proc_detach_bus(struct pci_bus* bus)
462{
463 struct proc_dir_entry *de = bus->procdir;
464 if (de)
465 remove_proc_entry(de->name, proc_bus_pci_dir);
466 return 0;
467}
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469static int proc_bus_pci_dev_open(struct inode *inode, struct file *file)
470{
471 return seq_open(file, &proc_bus_pci_devices_op);
472}
Arjan van de Vend54b1fd2007-02-12 00:55:34 -0800473static const struct file_operations proc_bus_pci_dev_operations = {
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700474 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 .open = proc_bus_pci_dev_open,
476 .read = seq_read,
477 .llseek = seq_lseek,
478 .release = seq_release,
479};
480
481static int __init pci_proc_init(void)
482{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 struct pci_dev *dev = NULL;
Alexey Dobriyan9c370662008-04-29 01:01:41 -0700484 proc_bus_pci_dir = proc_mkdir("bus/pci", NULL);
Denis V. Lunevc7705f32008-04-29 01:02:35 -0700485 proc_create("devices", 0, proc_bus_pci_dir,
486 &proc_bus_pci_dev_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 proc_initialized = 1;
488 while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
489 pci_proc_attach_device(dev);
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492}
493
Robert P. J. Dayeaf61142008-05-11 16:58:53 -0400494device_initcall(pci_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495