Blame view

kernel/linux-rt-4.4.41/drivers/pci/hotplug/shpchp_sysfs.c 3.06 KB
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  /*
   * 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 = container_of (dev, struct pci_dev, dev);
  	bus = pdev->subordinate;
  
  	out += sprintf(buf, "Free resources: memory
  ");
  	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
  ",
  				       (unsigned long long)res->start,
  				       (unsigned long long)resource_size(res));
  		}
  	}
  	out += sprintf(out, "Free resources: prefetchable memory
  ");
  	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
  ",
  				       (unsigned long long)res->start,
  				       (unsigned long long)resource_size(res));
  		}
  	}
  	out += sprintf(out, "Free resources: IO
  ");
  	pci_bus_for_each_resource(bus, res, index) {
  		if (res && (res->flags & IORESOURCE_IO)) {
  			out += sprintf(out, "start = %8.8llx, length = %8.8llx
  ",
  				       (unsigned long long)res->start,
  				       (unsigned long long)resource_size(res));
  		}
  	}
  	out += sprintf(out, "Free resources: bus numbers
  ");
  	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
  ",
  				busnr, (int)(bus->busn_res.end - busnr));
  
  	return out - buf;
  }
  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);
  }
  
  void shpchp_remove_ctrl_files(struct controller *ctrl)
  {
  	device_remove_file(&ctrl->pci_dev->dev, &dev_attr_ctrl);
  }