PageRenderTime 48ms CodeModel.GetById 23ms RepoModel.GetById 2ms app.codeStats 0ms

/arch/powerpc/platforms/pseries/eeh_sysfs.c

https://bitbucket.org/cresqo/cm7-p500-kernel
C | 87 lines | 46 code | 8 blank | 33 comment | 4 complexity | 9e6ac4ae9f7fef2b9ea13d316a4bd356 MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
  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 <asm/ppc-pci.h>
  27. #include <asm/pci-bridge.h>
  28. #include <linux/kobject.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 device_node *dn = pci_device_to_OF_node(pdev); \
  44. struct pci_dn *pdn; \
  45. \
  46. if (!dn || PCI_DN(dn) == NULL) \
  47. return 0; \
  48. \
  49. pdn = PCI_DN(dn); \
  50. return sprintf(buf, _format "\n", pdn->_memb); \
  51. } \
  52. static DEVICE_ATTR(_name, S_IRUGO, eeh_show_##_name, NULL);
  53. EEH_SHOW_ATTR(eeh_mode, eeh_mode, "0x%x");
  54. EEH_SHOW_ATTR(eeh_config_addr, eeh_config_addr, "0x%x");
  55. EEH_SHOW_ATTR(eeh_pe_config_addr, eeh_pe_config_addr, "0x%x");
  56. EEH_SHOW_ATTR(eeh_check_count, eeh_check_count, "%d");
  57. EEH_SHOW_ATTR(eeh_freeze_count, eeh_freeze_count, "%d");
  58. EEH_SHOW_ATTR(eeh_false_positives, eeh_false_positives, "%d");
  59. void eeh_sysfs_add_device(struct pci_dev *pdev)
  60. {
  61. int rc=0;
  62. rc += device_create_file(&pdev->dev, &dev_attr_eeh_mode);
  63. rc += device_create_file(&pdev->dev, &dev_attr_eeh_config_addr);
  64. rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
  65. rc += device_create_file(&pdev->dev, &dev_attr_eeh_check_count);
  66. rc += device_create_file(&pdev->dev, &dev_attr_eeh_false_positives);
  67. rc += device_create_file(&pdev->dev, &dev_attr_eeh_freeze_count);
  68. if (rc)
  69. printk(KERN_WARNING "EEH: Unable to create sysfs entries\n");
  70. }
  71. void eeh_sysfs_remove_device(struct pci_dev *pdev)
  72. {
  73. device_remove_file(&pdev->dev, &dev_attr_eeh_mode);
  74. device_remove_file(&pdev->dev, &dev_attr_eeh_config_addr);
  75. device_remove_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
  76. device_remove_file(&pdev->dev, &dev_attr_eeh_check_count);
  77. device_remove_file(&pdev->dev, &dev_attr_eeh_false_positives);
  78. device_remove_file(&pdev->dev, &dev_attr_eeh_freeze_count);
  79. }