shpchp_sysfs.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  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. #include <linux/module.h>
  29. #include <linux/kernel.h>
  30. #include <linux/types.h>
  31. #include <linux/pci.h>
  32. #include "shpchp.h"
  33. /* A few routines that create sysfs entries for the hot plug controller */
  34. static ssize_t show_ctrl (struct device *dev, struct device_attribute *attr, char *buf)
  35. {
  36. struct pci_dev *pdev;
  37. char *out = buf;
  38. int index, busnr;
  39. struct resource *res;
  40. struct pci_bus *bus;
  41. pdev = container_of (dev, struct pci_dev, dev);
  42. bus = pdev->subordinate;
  43. out += sprintf(buf, "Free resources: memory\n");
  44. pci_bus_for_each_resource(bus, res, index) {
  45. if (res && (res->flags & IORESOURCE_MEM) &&
  46. !(res->flags & IORESOURCE_PREFETCH)) {
  47. out += sprintf(out, "start = %8.8llx, length = %8.8llx\n",
  48. (unsigned long long)res->start,
  49. (unsigned long long)resource_size(res));
  50. }
  51. }
  52. out += sprintf(out, "Free resources: prefetchable memory\n");
  53. pci_bus_for_each_resource(bus, res, index) {
  54. if (res && (res->flags & IORESOURCE_MEM) &&
  55. (res->flags & IORESOURCE_PREFETCH)) {
  56. out += sprintf(out, "start = %8.8llx, length = %8.8llx\n",
  57. (unsigned long long)res->start,
  58. (unsigned long long)resource_size(res));
  59. }
  60. }
  61. out += sprintf(out, "Free resources: IO\n");
  62. pci_bus_for_each_resource(bus, res, index) {
  63. if (res && (res->flags & IORESOURCE_IO)) {
  64. out += sprintf(out, "start = %8.8llx, length = %8.8llx\n",
  65. (unsigned long long)res->start,
  66. (unsigned long long)resource_size(res));
  67. }
  68. }
  69. out += sprintf(out, "Free resources: bus numbers\n");
  70. for (busnr = bus->busn_res.start; busnr <= bus->busn_res.end; busnr++) {
  71. if (!pci_find_bus(pci_domain_nr(bus), busnr))
  72. break;
  73. }
  74. if (busnr < bus->busn_res.end)
  75. out += sprintf(out, "start = %8.8x, length = %8.8x\n",
  76. busnr, (int)(bus->busn_res.end - busnr));
  77. return out - buf;
  78. }
  79. static DEVICE_ATTR (ctrl, S_IRUGO, show_ctrl, NULL);
  80. int shpchp_create_ctrl_files (struct controller *ctrl)
  81. {
  82. return device_create_file (&ctrl->pci_dev->dev, &dev_attr_ctrl);
  83. }
  84. void shpchp_remove_ctrl_files(struct controller *ctrl)
  85. {
  86. device_remove_file(&ctrl->pci_dev->dev, &dev_attr_ctrl);
  87. }