blob: 29fa9d26adae28b0e49e0a39e16796439f1c4b4f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Compaq Hot Plug Controller Driver
3 *
4 * Copyright (c) 1995,2001 Compaq Computer Corporation
5 * Copyright (c) 2001,2003 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (c) 2001 IBM Corp.
7 *
8 * All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
18 * NON INFRINGEMENT. See the GNU General Public License for more
19 * details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 * Send feedback to <greg@kroah.com>
26 *
27 */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
30#include <linux/kernel.h>
31#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/pci.h>
33#include "shpchp.h"
34
35
36/* A few routines that create sysfs entries for the hot plug controller */
37
Yani Ioannoue404e272005-05-17 06:42:58 -040038static ssize_t show_ctrl (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070040 struct pci_dev *pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 char * out = buf;
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070042 int index, busnr;
43 struct resource *res;
44 struct pci_bus *bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070046 pdev = container_of (dev, struct pci_dev, dev);
47 bus = pdev->subordinate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 out += sprintf(buf, "Free resources: memory\n");
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070050 for (index = 0; index < PCI_BUS_NUM_RESOURCES; index++) {
51 res = bus->resource[index];
52 if (res && (res->flags & IORESOURCE_MEM) &&
53 !(res->flags & IORESOURCE_PREFETCH)) {
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -070054 out += sprintf(out, "start = %8.8llx, "
55 "length = %8.8llx\n",
56 (unsigned long long)res->start,
57 (unsigned long long)(res->end - res->start));
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 }
60 out += sprintf(out, "Free resources: prefetchable memory\n");
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070061 for (index = 0; index < PCI_BUS_NUM_RESOURCES; index++) {
62 res = bus->resource[index];
63 if (res && (res->flags & IORESOURCE_MEM) &&
64 (res->flags & IORESOURCE_PREFETCH)) {
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -070065 out += sprintf(out, "start = %8.8llx, "
66 "length = %8.8llx\n",
67 (unsigned long long)res->start,
68 (unsigned long long)(res->end - res->start));
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71 out += sprintf(out, "Free resources: IO\n");
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070072 for (index = 0; index < PCI_BUS_NUM_RESOURCES; index++) {
73 res = bus->resource[index];
74 if (res && (res->flags & IORESOURCE_IO)) {
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -070075 out += sprintf(out, "start = %8.8llx, "
76 "length = %8.8llx\n",
77 (unsigned long long)res->start,
78 (unsigned long long)(res->end - res->start));
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
81 out += sprintf(out, "Free resources: bus numbers\n");
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070082 for (busnr = bus->secondary; busnr <= bus->subordinate; busnr++) {
83 if (!pci_find_bus(pci_domain_nr(bus), busnr))
84 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
rajesh.shah@intel.comdbd7a782005-10-13 12:05:36 -070086 if (busnr < bus->subordinate)
87 out += sprintf(out, "start = %8.8x, length = %8.8x\n",
88 busnr, (bus->subordinate - busnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 return out - buf;
91}
92static DEVICE_ATTR (ctrl, S_IRUGO, show_ctrl, NULL);
93
Greg Kroah-Hartmane1b95dc2006-08-28 11:43:25 -070094int __must_check shpchp_create_ctrl_files (struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Greg Kroah-Hartmane1b95dc2006-08-28 11:43:25 -070096 return device_create_file (&ctrl->pci_dev->dev, &dev_attr_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
rajesh.shah@intel.comc2608a12005-10-13 12:05:44 -070098
99void shpchp_remove_ctrl_files(struct controller *ctrl)
100{
101 device_remove_file(&ctrl->pci_dev->dev, &dev_attr_ctrl);
102}