eeh_sysfs.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * Sysfs entries for PCI Error Recovery for PAPR-compliant platform.
  3. * Copyright IBM Corporation 2007
  4. * Copyright Linas Vepstas <linas@austin.ibm.com> 2007
  5. *
  6. * All rights reserved.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or (at
  11. * your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  16. * NON INFRINGEMENT. See the GNU General Public License for more
  17. * details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. *
  23. * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com>
  24. */
  25. #include <linux/pci.h>
  26. #include <linux/stat.h>
  27. #include <asm/ppc-pci.h>
  28. #include <asm/pci-bridge.h>
  29. /**
  30. * EEH_SHOW_ATTR -- Create sysfs entry for eeh statistic
  31. * @_name: name of file in sysfs directory
  32. * @_memb: name of member in struct pci_dn to access
  33. * @_format: printf format for display
  34. *
  35. * All of the attributes look very similar, so just
  36. * auto-gen a cut-n-paste routine to display them.
  37. */
  38. #define EEH_SHOW_ATTR(_name,_memb,_format) \
  39. static ssize_t eeh_show_##_name(struct device *dev, \
  40. struct device_attribute *attr, char *buf) \
  41. { \
  42. struct pci_dev *pdev = to_pci_dev(dev); \
  43. struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev); \
  44. \
  45. if (!edev) \
  46. return 0; \
  47. \
  48. return sprintf(buf, _format "\n", edev->_memb); \
  49. } \
  50. static DEVICE_ATTR(_name, 0444, eeh_show_##_name, NULL);
  51. EEH_SHOW_ATTR(eeh_mode, mode, "0x%x");
  52. EEH_SHOW_ATTR(eeh_pe_config_addr, pe_config_addr, "0x%x");
  53. static ssize_t eeh_pe_state_show(struct device *dev,
  54. struct device_attribute *attr, char *buf)
  55. {
  56. struct pci_dev *pdev = to_pci_dev(dev);
  57. struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
  58. int state;
  59. if (!edev || !edev->pe)
  60. return -ENODEV;
  61. state = eeh_ops->get_state(edev->pe, NULL);
  62. return sprintf(buf, "0x%08x 0x%08x\n",
  63. state, edev->pe->state);
  64. }
  65. static ssize_t eeh_pe_state_store(struct device *dev,
  66. struct device_attribute *attr,
  67. const char *buf, size_t count)
  68. {
  69. struct pci_dev *pdev = to_pci_dev(dev);
  70. struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
  71. if (!edev || !edev->pe)
  72. return -ENODEV;
  73. /* Nothing to do if it's not frozen */
  74. if (!(edev->pe->state & EEH_PE_ISOLATED))
  75. return count;
  76. if (eeh_unfreeze_pe(edev->pe, true))
  77. return -EIO;
  78. return count;
  79. }
  80. static DEVICE_ATTR_RW(eeh_pe_state);
  81. #ifdef CONFIG_PCI_IOV
  82. static ssize_t eeh_notify_resume_show(struct device *dev,
  83. struct device_attribute *attr, char *buf)
  84. {
  85. struct pci_dev *pdev = to_pci_dev(dev);
  86. struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
  87. struct pci_dn *pdn = pci_get_pdn(pdev);
  88. if (!edev || !edev->pe)
  89. return -ENODEV;
  90. pdn = pci_get_pdn(pdev);
  91. return sprintf(buf, "%d\n", pdn->last_allow_rc);
  92. }
  93. static ssize_t eeh_notify_resume_store(struct device *dev,
  94. struct device_attribute *attr,
  95. const char *buf, size_t count)
  96. {
  97. struct pci_dev *pdev = to_pci_dev(dev);
  98. struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
  99. if (!edev || !edev->pe || !eeh_ops->notify_resume)
  100. return -ENODEV;
  101. if (eeh_ops->notify_resume(pci_get_pdn(pdev)))
  102. return -EIO;
  103. return count;
  104. }
  105. static DEVICE_ATTR_RW(eeh_notify_resume);
  106. static int eeh_notify_resume_add(struct pci_dev *pdev)
  107. {
  108. struct device_node *np;
  109. int rc = 0;
  110. np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
  111. if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
  112. rc = device_create_file(&pdev->dev, &dev_attr_eeh_notify_resume);
  113. return rc;
  114. }
  115. static void eeh_notify_resume_remove(struct pci_dev *pdev)
  116. {
  117. struct device_node *np;
  118. np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
  119. if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
  120. device_remove_file(&pdev->dev, &dev_attr_eeh_notify_resume);
  121. }
  122. #else
  123. static inline int eeh_notify_resume_add(struct pci_dev *pdev) { return 0; }
  124. static inline void eeh_notify_resume_remove(struct pci_dev *pdev) { }
  125. #endif /* CONFIG_PCI_IOV */
  126. void eeh_sysfs_add_device(struct pci_dev *pdev)
  127. {
  128. struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
  129. int rc=0;
  130. if (!eeh_enabled())
  131. return;
  132. if (edev && (edev->mode & EEH_DEV_SYSFS))
  133. return;
  134. rc += device_create_file(&pdev->dev, &dev_attr_eeh_mode);
  135. rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
  136. rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_state);
  137. rc += eeh_notify_resume_add(pdev);
  138. if (rc)
  139. pr_warn("EEH: Unable to create sysfs entries\n");
  140. else if (edev)
  141. edev->mode |= EEH_DEV_SYSFS;
  142. }
  143. void eeh_sysfs_remove_device(struct pci_dev *pdev)
  144. {
  145. struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
  146. /*
  147. * The parent directory might have been removed. We needn't
  148. * continue for that case.
  149. */
  150. if (!pdev->dev.kobj.sd) {
  151. if (edev)
  152. edev->mode &= ~EEH_DEV_SYSFS;
  153. return;
  154. }
  155. device_remove_file(&pdev->dev, &dev_attr_eeh_mode);
  156. device_remove_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
  157. device_remove_file(&pdev->dev, &dev_attr_eeh_pe_state);
  158. eeh_notify_resume_remove(pdev);
  159. if (edev)
  160. edev->mode &= ~EEH_DEV_SYSFS;
  161. }