eeh_sysfs.c 4.2 KB
Newer Older
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
/*
 * Sysfs entries for PCI Error Recovery for PAPR-compliant platform.
 * Copyright IBM Corporation 2007
 * Copyright Linas Vepstas <linas@austin.ibm.com> 2007
 *
 * 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 comments and feedback to Linas Vepstas <linas@austin.ibm.com>
 */
#include <linux/pci.h>
26
#include <linux/stat.h>
27 28 29 30
#include <asm/ppc-pci.h>
#include <asm/pci-bridge.h>

/**
31
 * EEH_SHOW_ATTR -- Create sysfs entry for eeh statistic
32 33 34 35 36 37 38 39 40 41 42 43
 * @_name: name of file in sysfs directory
 * @_memb: name of member in struct pci_dn to access
 * @_format: printf format for display
 *
 * All of the attributes look very similar, so just
 * auto-gen a cut-n-paste routine to display them.
 */
#define EEH_SHOW_ATTR(_name,_memb,_format)               \
static ssize_t eeh_show_##_name(struct device *dev,      \
		struct device_attribute *attr, char *buf)          \
{                                                        \
	struct pci_dev *pdev = to_pci_dev(dev);               \
44
	struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);      \
45
	                                                      \
46 47
	if (!edev)                                            \
		return 0;                                     \
48
	                                                      \
49
	return sprintf(buf, _format "\n", edev->_memb);       \
50 51 52
}                                                        \
static DEVICE_ATTR(_name, S_IRUGO, eeh_show_##_name, NULL);

53 54 55
EEH_SHOW_ATTR(eeh_mode,            mode,            "0x%x");
EEH_SHOW_ATTR(eeh_config_addr,     config_addr,     "0x%x");
EEH_SHOW_ATTR(eeh_pe_config_addr,  pe_config_addr,  "0x%x");
56

57 58 59 60 61 62 63 64 65 66 67
static ssize_t eeh_pe_state_show(struct device *dev,
				 struct device_attribute *attr, char *buf)
{
	struct pci_dev *pdev = to_pci_dev(dev);
	struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
	int state;

	if (!edev || !edev->pe)
		return -ENODEV;

	state = eeh_ops->get_state(edev->pe, NULL);
68
	return sprintf(buf, "%0x08x %0x08x\n",
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
		       state, edev->pe->state);
}

static ssize_t eeh_pe_state_store(struct device *dev,
				  struct device_attribute *attr,
				  const char *buf, size_t count)
{
	struct pci_dev *pdev = to_pci_dev(dev);
	struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);

	if (!edev || !edev->pe)
		return -ENODEV;

	/* Nothing to do if it's not frozen */
	if (!(edev->pe->state & EEH_PE_ISOLATED))
		return count;

G
Gavin Shan 已提交
86
	if (eeh_unfreeze_pe(edev->pe, true))
87 88 89 90 91 92 93
		return -EIO;

	return count;
}

static DEVICE_ATTR_RW(eeh_pe_state);

94 95
void eeh_sysfs_add_device(struct pci_dev *pdev)
{
96
	struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
97 98
	int rc=0;

99 100 101
	if (!eeh_enabled())
		return;

102 103 104
	if (edev && (edev->mode & EEH_DEV_SYSFS))
		return;

105 106 107
	rc += device_create_file(&pdev->dev, &dev_attr_eeh_mode);
	rc += device_create_file(&pdev->dev, &dev_attr_eeh_config_addr);
	rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
108
	rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_state);
109 110

	if (rc)
111
		pr_warn("EEH: Unable to create sysfs entries\n");
112 113
	else if (edev)
		edev->mode |= EEH_DEV_SYSFS;
114 115 116 117
}

void eeh_sysfs_remove_device(struct pci_dev *pdev)
{
118 119
	struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);

120 121 122 123
	/*
	 * The parent directory might have been removed. We needn't
	 * continue for that case.
	 */
124 125 126
	if (!pdev->dev.kobj.sd) {
		if (edev)
			edev->mode &= ~EEH_DEV_SYSFS;
127
		return;
128
	}
129

130 131 132
	device_remove_file(&pdev->dev, &dev_attr_eeh_mode);
	device_remove_file(&pdev->dev, &dev_attr_eeh_config_addr);
	device_remove_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
133
	device_remove_file(&pdev->dev, &dev_attr_eeh_pe_state);
134 135 136

	if (edev)
		edev->mode &= ~EEH_DEV_SYSFS;
137
}