Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 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> |
Paul Gortmaker | b56eade | 2011-05-27 13:27:45 -0400 | [diff] [blame] | 26 | #include <linux/stat.h> |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 27 | #include <asm/ppc-pci.h> |
| 28 | #include <asm/pci-bridge.h> |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 29 | |
| 30 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 31 | * EEH_SHOW_ATTR -- Create sysfs entry for eeh statistic |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 32 | * @_name: name of file in sysfs directory |
| 33 | * @_memb: name of member in struct pci_dn to access |
| 34 | * @_format: printf format for display |
| 35 | * |
| 36 | * All of the attributes look very similar, so just |
| 37 | * auto-gen a cut-n-paste routine to display them. |
| 38 | */ |
| 39 | #define EEH_SHOW_ATTR(_name,_memb,_format) \ |
| 40 | static ssize_t eeh_show_##_name(struct device *dev, \ |
| 41 | struct device_attribute *attr, char *buf) \ |
| 42 | { \ |
| 43 | struct pci_dev *pdev = to_pci_dev(dev); \ |
Gavin Shan | 44da8ed | 2012-02-27 20:04:05 +0000 | [diff] [blame] | 44 | struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev); \ |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 45 | \ |
Gavin Shan | 44da8ed | 2012-02-27 20:04:05 +0000 | [diff] [blame] | 46 | if (!edev) \ |
| 47 | return 0; \ |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 48 | \ |
Gavin Shan | 44da8ed | 2012-02-27 20:04:05 +0000 | [diff] [blame] | 49 | return sprintf(buf, _format "\n", edev->_memb); \ |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 50 | } \ |
| 51 | static DEVICE_ATTR(_name, S_IRUGO, eeh_show_##_name, NULL); |
| 52 | |
Gavin Shan | 44da8ed | 2012-02-27 20:04:05 +0000 | [diff] [blame] | 53 | EEH_SHOW_ATTR(eeh_mode, mode, "0x%x"); |
| 54 | EEH_SHOW_ATTR(eeh_config_addr, config_addr, "0x%x"); |
| 55 | EEH_SHOW_ATTR(eeh_pe_config_addr, pe_config_addr, "0x%x"); |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 56 | |
| 57 | void eeh_sysfs_add_device(struct pci_dev *pdev) |
| 58 | { |
Gavin Shan | ab55d21 | 2013-07-24 10:25:01 +0800 | [diff] [blame] | 59 | struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev); |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 60 | int rc=0; |
| 61 | |
Wei Yang | 2213fb1 | 2014-06-04 09:49:17 +0800 | [diff] [blame] | 62 | if (!eeh_enabled()) |
| 63 | return; |
| 64 | |
Gavin Shan | ab55d21 | 2013-07-24 10:25:01 +0800 | [diff] [blame] | 65 | if (edev && (edev->mode & EEH_DEV_SYSFS)) |
| 66 | return; |
| 67 | |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 68 | rc += device_create_file(&pdev->dev, &dev_attr_eeh_mode); |
| 69 | rc += device_create_file(&pdev->dev, &dev_attr_eeh_config_addr); |
| 70 | rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_config_addr); |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 71 | |
| 72 | if (rc) |
| 73 | printk(KERN_WARNING "EEH: Unable to create sysfs entries\n"); |
Gavin Shan | ab55d21 | 2013-07-24 10:25:01 +0800 | [diff] [blame] | 74 | else if (edev) |
| 75 | edev->mode |= EEH_DEV_SYSFS; |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | void eeh_sysfs_remove_device(struct pci_dev *pdev) |
| 79 | { |
Gavin Shan | ab55d21 | 2013-07-24 10:25:01 +0800 | [diff] [blame] | 80 | struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev); |
| 81 | |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 82 | /* |
| 83 | * The parent directory might have been removed. We needn't |
| 84 | * continue for that case. |
| 85 | */ |
Gavin Shan | ab55d21 | 2013-07-24 10:25:01 +0800 | [diff] [blame] | 86 | if (!pdev->dev.kobj.sd) { |
| 87 | if (edev) |
| 88 | edev->mode &= ~EEH_DEV_SYSFS; |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 89 | return; |
Gavin Shan | ab55d21 | 2013-07-24 10:25:01 +0800 | [diff] [blame] | 90 | } |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 91 | |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 92 | device_remove_file(&pdev->dev, &dev_attr_eeh_mode); |
| 93 | device_remove_file(&pdev->dev, &dev_attr_eeh_config_addr); |
| 94 | device_remove_file(&pdev->dev, &dev_attr_eeh_pe_config_addr); |
Gavin Shan | ab55d21 | 2013-07-24 10:25:01 +0800 | [diff] [blame] | 95 | |
| 96 | if (edev) |
| 97 | edev->mode &= ~EEH_DEV_SYSFS; |
Linas Vepstas | e1d04c9 | 2007-05-24 03:16:46 +1000 | [diff] [blame] | 98 | } |