blob: c36f9f721fb2715ac49e45b00e66ae587b7371c8 [file] [log] [blame]
Douglas Thompson7c9281d2007-07-19 01:49:33 -07001
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
Douglas Thompson7c9281d2007-07-19 01:49:33 -070013#include "edac_core.h"
14
15/*
16 * INTERNAL EDAC MODULE:
17 * EDAC memory controller sysfs create/remove functions
18 * and setup/teardown functions
Doug Thompson8096cfa2007-07-19 01:50:27 -070019 *
20 * edac_mc objects
Douglas Thompson7c9281d2007-07-19 01:49:33 -070021 */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030022 /* on edac_mc_sysfs.c */
23int edac_mc_sysfs_init(void);
24void edac_mc_sysfs_exit(void);
Takashi Iwai4e8d2302015-02-04 11:48:52 +010025extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci,
26 const struct attribute_group **groups);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070027extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030028void edac_unregister_sysfs(struct mem_ctl_info *mci);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070029extern int edac_get_log_ue(void);
30extern int edac_get_log_ce(void);
31extern int edac_get_panic_on_ue(void);
Dave Jiang4de78c62007-07-19 01:49:54 -070032extern int edac_mc_get_log_ue(void);
33extern int edac_mc_get_log_ce(void);
34extern int edac_mc_get_panic_on_ue(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070035extern int edac_get_poll_msec(void);
Eiichi Tsukata83285872019-06-26 14:40:11 +090036extern unsigned int edac_mc_get_poll_msec(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070037
Mauro Carvalho Chehab6e84d352012-04-30 10:24:43 -030038unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf,
39 unsigned len);
40
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030041 /* on edac_device.c */
Douglas Thompson1c3631f2007-07-19 01:50:29 -070042extern 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);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070046extern 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);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070048
Douglas Thompsone27e3da2007-07-19 01:49:36 -070049/* edac core workqueue: single CPU mode */
Borislav Petkovc4cf3b42015-11-30 19:02:01 +010050int 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
Douglas Thompson079708b2007-07-19 01:49:58 -070056extern void edac_device_reset_delay_period(struct edac_device_ctl_info
57 *edac_dev, unsigned long value);
Borislav Petkov9da21b12014-02-03 15:05:13 -050058extern void edac_mc_reset_delay_period(unsigned long value);
Doug Thompsonbce19682007-07-26 10:41:14 -070059
Mauro Carvalho Chehab93e4fe62012-04-16 10:18:12 -030060extern void *edac_align_ptr(void **p, unsigned size, int n_elems);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070061
62/*
Rob Herringe7930ba2012-06-11 21:32:12 -050063 * EDAC debugfs functions
64 */
Borislav Petkov4397bcb2015-09-22 12:16:05 +020065
66#define edac_debugfs_remove_recursive debugfs_remove_recursive
67#define edac_debugfs_remove debugfs_remove
Rob Herringe7930ba2012-06-11 21:32:12 -050068#ifdef CONFIG_EDAC_DEBUG
69int edac_debugfs_init(void);
70void edac_debugfs_exit(void);
Borislav Petkov7ac8bf92015-09-22 11:56:04 +020071int edac_create_debugfs_nodes(struct mem_ctl_info *mci);
Borislav Petkov4397bcb2015-09-22 12:16:05 +020072struct 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);
Rob Herringe7930ba2012-06-11 21:32:12 -050082#else
Borislav Petkov4397bcb2015-09-22 12:16:05 +020083static 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; }
Rob Herringe7930ba2012-06-11 21:32:12 -050098#endif
99
100/*
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700101 * 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);
Dave Jiang4de78c62007-07-19 01:49:54 -0700108extern int edac_pci_get_check_errors(void);
109extern int edac_pci_get_poll_msec(void);
Doug Thompsond4c14652007-07-26 10:41:15 -0700110extern 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);
Douglas Thompson079708b2007-07-19 01:49:58 -0700114#else /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700115/* 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()
Dave Jiang4de78c62007-07-19 01:49:54 -0700120#define edac_pci_get_check_errors()
121#define edac_pci_get_poll_msec()
Doug Thompsond4c14652007-07-26 10:41:15 -0700122#define edac_pci_handle_pe()
123#define edac_pci_handle_npe()
Douglas Thompson079708b2007-07-19 01:49:58 -0700124#endif /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700125
Douglas Thompson079708b2007-07-19 01:49:58 -0700126#endif /* __EDAC_MODULE_H__ */