Release 4.7 drivers/pci/hotplug/shpchp_sysfs.c
/*
* Compaq Hot Plug Controller Driver
*
* Copyright (c) 1995,2001 Compaq Computer Corporation
* Copyright (c) 2001,2003 Greg Kroah-Hartman (greg@kroah.com)
* Copyright (c) 2001 IBM Corp.
*
* All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
* NON INFRINGEMENT. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Send feedback to <greg@kroah.com>
*
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/pci.h>
#include "shpchp.h"
/* A few routines that create sysfs entries for the hot plug controller */
static ssize_t show_ctrl(struct device *dev, struct device_attribute *attr, char *buf)
{
struct pci_dev *pdev;
char *out = buf;
int index, busnr;
struct resource *res;
struct pci_bus *bus;
pdev = to_pci_dev(dev);
bus = pdev->subordinate;
out += sprintf(buf, "Free resources: memory\n");
pci_bus_for_each_resource(bus, res, index) {
if (res && (res->flags & IORESOURCE_MEM) &&
!(res->flags & IORESOURCE_PREFETCH)) {
out += sprintf(out, "start = %8.8llx, length = %8.8llx\n",
(unsigned long long)res->start,
(unsigned long long)resource_size(res));
}
}
out += sprintf(out, "Free resources: prefetchable memory\n");
pci_bus_for_each_resource(bus, res, index) {
if (res && (res->flags & IORESOURCE_MEM) &&
(res->flags & IORESOURCE_PREFETCH)) {
out += sprintf(out, "start = %8.8llx, length = %8.8llx\n",
(unsigned long long)res->start,
(unsigned long long)resource_size(res));
}
}
out += sprintf(out, "Free resources: IO\n");
pci_bus_for_each_resource(bus, res, index) {
if (res && (res->flags & IORESOURCE_IO)) {
out += sprintf(out, "start = %8.8llx, length = %8.8llx\n",
(unsigned long long)res->start,
(unsigned long long)resource_size(res));
}
}
out += sprintf(out, "Free resources: bus numbers\n");
for (busnr = bus->busn_res.start; busnr <= bus->busn_res.end; busnr++) {
if (!pci_find_bus(pci_domain_nr(bus), busnr))
break;
}
if (busnr < bus->busn_res.end)
out += sprintf(out, "start = %8.8x, length = %8.8x\n",
busnr, (int)(bus->busn_res.end - busnr));
return out - buf;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
dely sy | dely sy | 149 | 43.31% | 1 | 11.11% |
rajesh shah | rajesh shah | 105 | 30.52% | 1 | 11.11% |
greg kroah-hartman | greg kroah-hartman | 31 | 9.01% | 2 | 22.22% |
bjorn helgaas | bjorn helgaas | 24 | 6.98% | 1 | 11.11% |
yinghai lu | yinghai lu | 17 | 4.94% | 1 | 11.11% |
joe perches | joe perches | 12 | 3.49% | 1 | 11.11% |
yani ioannou | yani ioannou | 5 | 1.45% | 1 | 11.11% |
geliang tang | geliang tang | 1 | 0.29% | 1 | 11.11% |
| Total | 344 | 100.00% | 9 | 100.00% |
static DEVICE_ATTR(ctrl, S_IRUGO, show_ctrl, NULL);
int shpchp_create_ctrl_files(struct controller *ctrl)
{
return device_create_file(&ctrl->pci_dev->dev, &dev_attr_ctrl);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
dely sy | dely sy | 21 | 87.50% | 1 | 50.00% |
greg kroah-hartman | greg kroah-hartman | 3 | 12.50% | 1 | 50.00% |
| Total | 24 | 100.00% | 2 | 100.00% |
void shpchp_remove_ctrl_files(struct controller *ctrl)
{
device_remove_file(&ctrl->pci_dev->dev, &dev_attr_ctrl);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rajesh shah | rajesh shah | 23 | 100.00% | 1 | 100.00% |
| Total | 23 | 100.00% | 1 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
dely sy | dely sy | 199 | 47.38% | 1 | 9.09% |
rajesh shah | rajesh shah | 128 | 30.48% | 2 | 18.18% |
greg kroah-hartman | greg kroah-hartman | 34 | 8.10% | 3 | 27.27% |
bjorn helgaas | bjorn helgaas | 24 | 5.71% | 1 | 9.09% |
yinghai lu | yinghai lu | 17 | 4.05% | 1 | 9.09% |
joe perches | joe perches | 12 | 2.86% | 1 | 9.09% |
yani ioannou | yani ioannou | 5 | 1.19% | 1 | 9.09% |
geliang tang | geliang tang | 1 | 0.24% | 1 | 9.09% |
| Total | 420 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.