Merge tag 'platform-drivers-x86-v4.7-1' of git://git.infradead.org/users/dvhart/linux...
[linux-2.6-block.git] / drivers / edac / edac_module.h
CommitLineData
7c9281d7
DT
1
2/*
3 * edac_module.h
4 *
5 * For defining functions/data for within the EDAC_CORE module only
6 *
7 * written by doug thompson <norsk5@xmission.h>
8 */
9
10#ifndef __EDAC_MODULE_H__
11#define __EDAC_MODULE_H__
12
7c9281d7
DT
13#include "edac_core.h"
14
15/*
16 * INTERNAL EDAC MODULE:
17 * EDAC memory controller sysfs create/remove functions
18 * and setup/teardown functions
8096cfaf
DT
19 *
20 * edac_mc objects
7c9281d7 21 */
7a623c03
MCC
22 /* on edac_mc_sysfs.c */
23int edac_mc_sysfs_init(void);
24void edac_mc_sysfs_exit(void);
4e8d230d
TI
25extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci,
26 const struct attribute_group **groups);
7c9281d7 27extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
7a623c03 28void edac_unregister_sysfs(struct mem_ctl_info *mci);
7c9281d7
DT
29extern int edac_get_log_ue(void);
30extern int edac_get_log_ce(void);
31extern int edac_get_panic_on_ue(void);
4de78c68
DJ
32extern int edac_mc_get_log_ue(void);
33extern int edac_mc_get_log_ce(void);
34extern int edac_mc_get_panic_on_ue(void);
7c9281d7 35extern int edac_get_poll_msec(void);
81d87cb1 36extern int edac_mc_get_poll_msec(void);
7c9281d7 37
6e84d359
MCC
38unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf,
39 unsigned len);
40
7a623c03 41 /* on edac_device.c */
1c3631ff
DT
42extern int edac_device_register_sysfs_main_kobj(
43 struct edac_device_ctl_info *edac_dev);
44extern void edac_device_unregister_sysfs_main_kobj(
45 struct edac_device_ctl_info *edac_dev);
7c9281d7
DT
46extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev);
47extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev);
7c9281d7 48
e27e3dac 49/* edac core workqueue: single CPU mode */
c4cf3b45
BP
50int edac_workqueue_setup(void);
51void edac_workqueue_teardown(void);
52bool edac_queue_work(struct delayed_work *work, unsigned long delay);
53bool edac_stop_work(struct delayed_work *work);
54bool edac_mod_work(struct delayed_work *work, unsigned long delay);
55
079708b9
DT
56extern void edac_device_reset_delay_period(struct edac_device_ctl_info
57 *edac_dev, unsigned long value);
9da21b15 58extern void edac_mc_reset_delay_period(unsigned long value);
bce19683 59
93e4fe64 60extern void *edac_align_ptr(void **p, unsigned size, int n_elems);
7c9281d7 61
e7930ba4
RH
62/*
63 * EDAC debugfs functions
64 */
4397bcb4
BP
65
66#define edac_debugfs_remove_recursive debugfs_remove_recursive
67#define edac_debugfs_remove debugfs_remove
e7930ba4
RH
68#ifdef CONFIG_EDAC_DEBUG
69int edac_debugfs_init(void);
70void edac_debugfs_exit(void);
7ac8bf9b 71int edac_create_debugfs_nodes(struct mem_ctl_info *mci);
4397bcb4
BP
72struct dentry *edac_debugfs_create_dir(const char *dirname);
73struct dentry *
74edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent);
75struct dentry *
76edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
77 void *data, const struct file_operations *fops);
78struct dentry *
79edac_debugfs_create_x8(const char *name, umode_t mode, struct dentry *parent, u8 *value);
80struct dentry *
81edac_debugfs_create_x16(const char *name, umode_t mode, struct dentry *parent, u16 *value);
e7930ba4 82#else
4397bcb4
BP
83static inline int edac_debugfs_init(void) { return -ENODEV; }
84static inline void edac_debugfs_exit(void) { }
85static inline int edac_create_debugfs_nodes(struct mem_ctl_info *mci) { return 0; }
86static inline struct dentry *edac_debugfs_create_dir(const char *dirname) { return NULL; }
87static inline struct dentry *
88edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent) { return NULL; }
89static inline struct dentry *
90edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
91 void *data, const struct file_operations *fops) { return NULL; }
92static inline struct dentry *
93edac_debugfs_create_x8(const char *name, umode_t mode,
94 struct dentry *parent, u8 *value) { return NULL; }
95static inline struct dentry *
96edac_debugfs_create_x16(const char *name, umode_t mode,
97 struct dentry *parent, u16 *value) { return NULL; }
e7930ba4
RH
98#endif
99
7c9281d7
DT
100/*
101 * EDAC PCI functions
102 */
103#ifdef CONFIG_PCI
104extern void edac_pci_do_parity_check(void);
105extern void edac_pci_clear_parity_errors(void);
106extern int edac_sysfs_pci_setup(void);
107extern void edac_sysfs_pci_teardown(void);
4de78c68
DJ
108extern int edac_pci_get_check_errors(void);
109extern int edac_pci_get_poll_msec(void);
d4c1465b
DT
110extern void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci);
111extern void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg);
112extern void edac_pci_handle_npe(struct edac_pci_ctl_info *pci,
113 const char *msg);
079708b9 114#else /* CONFIG_PCI */
7c9281d7
DT
115/* pre-process these away */
116#define edac_pci_do_parity_check()
117#define edac_pci_clear_parity_errors()
118#define edac_sysfs_pci_setup() (0)
119#define edac_sysfs_pci_teardown()
4de78c68
DJ
120#define edac_pci_get_check_errors()
121#define edac_pci_get_poll_msec()
d4c1465b
DT
122#define edac_pci_handle_pe()
123#define edac_pci_handle_npe()
079708b9 124#endif /* CONFIG_PCI */
7c9281d7 125
079708b9 126#endif /* __EDAC_MODULE_H__ */