edac_module.h 4.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

/*
 * edac_module.h
 *
 * For defining functions/data for within the EDAC_CORE module only
 *
 * written by doug thompson <norsk5@xmission.h>
 */

#ifndef	__EDAC_MODULE_H__
#define	__EDAC_MODULE_H__

#include "edac_core.h"

/*
 * INTERNAL EDAC MODULE:
 * EDAC memory controller sysfs create/remove functions
 * and setup/teardown functions
19 20
 *
 * edac_mc objects
21
 */
22 23 24
	/* on edac_mc_sysfs.c */
int edac_mc_sysfs_init(void);
void edac_mc_sysfs_exit(void);
25 26
extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci,
					const struct attribute_group **groups);
27
extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
28
void edac_unregister_sysfs(struct mem_ctl_info *mci);
29 30 31
extern int edac_get_log_ue(void);
extern int edac_get_log_ce(void);
extern int edac_get_panic_on_ue(void);
D
Dave Jiang 已提交
32 33 34
extern int edac_mc_get_log_ue(void);
extern int edac_mc_get_log_ce(void);
extern int edac_mc_get_panic_on_ue(void);
35
extern int edac_get_poll_msec(void);
36
extern int edac_mc_get_poll_msec(void);
37

38 39 40
unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf,
				 unsigned len);

41
	/* on edac_device.c */
42 43 44 45
extern int edac_device_register_sysfs_main_kobj(
				struct edac_device_ctl_info *edac_dev);
extern void edac_device_unregister_sysfs_main_kobj(
				struct edac_device_ctl_info *edac_dev);
46 47 48
extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev);
extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev);

49 50
/* edac core workqueue: single CPU mode */
extern struct workqueue_struct *edac_workqueue;
51 52
extern void edac_device_reset_delay_period(struct edac_device_ctl_info
					   *edac_dev, unsigned long value);
53
extern void edac_mc_reset_delay_period(unsigned long value);
54

55
extern void *edac_align_ptr(void **p, unsigned size, int n_elems);
56

57 58 59
/*
 * EDAC debugfs functions
 */
B
Borislav Petkov 已提交
60 61 62

#define edac_debugfs_remove_recursive debugfs_remove_recursive
#define edac_debugfs_remove debugfs_remove
63 64 65
#ifdef CONFIG_EDAC_DEBUG
int edac_debugfs_init(void);
void edac_debugfs_exit(void);
66
int edac_create_debugfs_nodes(struct mem_ctl_info *mci);
B
Borislav Petkov 已提交
67 68 69 70 71 72 73 74 75 76
struct dentry *edac_debugfs_create_dir(const char *dirname);
struct dentry *
edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent);
struct dentry *
edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
			 void *data, const struct file_operations *fops);
struct dentry *
edac_debugfs_create_x8(const char *name, umode_t mode, struct dentry *parent, u8 *value);
struct dentry *
edac_debugfs_create_x16(const char *name, umode_t mode, struct dentry *parent, u16 *value);
77
#else
B
Borislav Petkov 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
static inline int edac_debugfs_init(void)					{ return -ENODEV; }
static inline void edac_debugfs_exit(void)					{ }
static inline int edac_create_debugfs_nodes(struct mem_ctl_info *mci)		{ return 0; }
static inline struct dentry *edac_debugfs_create_dir(const char *dirname)	{ return NULL; }
static inline struct dentry *
edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent)		{ return NULL; }
static inline struct dentry *
edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
			 void *data, const struct file_operations *fops)	{ return NULL; }
static inline struct dentry *
edac_debugfs_create_x8(const char *name, umode_t mode,
		       struct dentry *parent, u8 *value)			{ return NULL; }
static inline struct dentry *
edac_debugfs_create_x16(const char *name, umode_t mode,
		       struct dentry *parent, u16 *value)			{ return NULL; }
93 94
#endif

95 96 97 98 99 100 101 102
/*
 * EDAC PCI functions
 */
#ifdef	CONFIG_PCI
extern void edac_pci_do_parity_check(void);
extern void edac_pci_clear_parity_errors(void);
extern int edac_sysfs_pci_setup(void);
extern void edac_sysfs_pci_teardown(void);
D
Dave Jiang 已提交
103 104
extern int edac_pci_get_check_errors(void);
extern int edac_pci_get_poll_msec(void);
D
Doug Thompson 已提交
105 106 107 108
extern void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci);
extern void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg);
extern void edac_pci_handle_npe(struct edac_pci_ctl_info *pci,
				const char *msg);
109
#else				/* CONFIG_PCI */
110 111 112 113 114
/* pre-process these away */
#define edac_pci_do_parity_check()
#define edac_pci_clear_parity_errors()
#define edac_sysfs_pci_setup()  (0)
#define edac_sysfs_pci_teardown()
D
Dave Jiang 已提交
115 116
#define edac_pci_get_check_errors()
#define edac_pci_get_poll_msec()
D
Doug Thompson 已提交
117 118
#define edac_pci_handle_pe()
#define edac_pci_handle_npe()
119
#endif				/* CONFIG_PCI */
120

121
#endif				/* __EDAC_MODULE_H__ */