blob: 388427d378b1068c3ab35df44bd3c03ad756072e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Douglas Thompson7c9281d2007-07-19 01:49:33 -07002
3/*
4 * edac_module.h
5 *
6 * For defining functions/data for within the EDAC_CORE module only
7 *
8 * written by doug thompson <norsk5@xmission.h>
9 */
10
11#ifndef __EDAC_MODULE_H__
12#define __EDAC_MODULE_H__
13
Mauro Carvalho Chehab78d88e82016-10-29 15:16:34 -020014#include "edac_mc.h"
15#include "edac_pci.h"
16#include "edac_device.h"
Douglas Thompson7c9281d2007-07-19 01:49:33 -070017
18/*
19 * INTERNAL EDAC MODULE:
20 * EDAC memory controller sysfs create/remove functions
21 * and setup/teardown functions
Doug Thompson8096cfa2007-07-19 01:50:27 -070022 *
23 * edac_mc objects
Douglas Thompson7c9281d2007-07-19 01:49:33 -070024 */
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030025 /* on edac_mc_sysfs.c */
26int edac_mc_sysfs_init(void);
27void edac_mc_sysfs_exit(void);
Takashi Iwai4e8d2302015-02-04 11:48:52 +010028extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci,
29 const struct attribute_group **groups);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070030extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030031void edac_unregister_sysfs(struct mem_ctl_info *mci);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070032extern int edac_get_log_ue(void);
33extern int edac_get_log_ce(void);
34extern int edac_get_panic_on_ue(void);
Dave Jiang4de78c62007-07-19 01:49:54 -070035extern int edac_mc_get_log_ue(void);
36extern int edac_mc_get_log_ce(void);
37extern int edac_mc_get_panic_on_ue(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070038extern int edac_get_poll_msec(void);
Eiichi Tsukatad8655e72019-06-26 14:40:11 +090039extern unsigned int edac_mc_get_poll_msec(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070040
Mauro Carvalho Chehab6e84d352012-04-30 10:24:43 -030041unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf,
42 unsigned len);
43
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030044 /* on edac_device.c */
Douglas Thompson1c3631f2007-07-19 01:50:29 -070045extern int edac_device_register_sysfs_main_kobj(
46 struct edac_device_ctl_info *edac_dev);
47extern void edac_device_unregister_sysfs_main_kobj(
48 struct edac_device_ctl_info *edac_dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070049extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev);
50extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070051
Douglas Thompsone27e3da2007-07-19 01:49:36 -070052/* edac core workqueue: single CPU mode */
Borislav Petkovc4cf3b42015-11-30 19:02:01 +010053int edac_workqueue_setup(void);
54void edac_workqueue_teardown(void);
55bool edac_queue_work(struct delayed_work *work, unsigned long delay);
56bool edac_stop_work(struct delayed_work *work);
57bool edac_mod_work(struct delayed_work *work, unsigned long delay);
58
Douglas Thompson079708b2007-07-19 01:49:58 -070059extern void edac_device_reset_delay_period(struct edac_device_ctl_info
60 *edac_dev, unsigned long value);
Borislav Petkov9da21b12014-02-03 15:05:13 -050061extern void edac_mc_reset_delay_period(unsigned long value);
Doug Thompsonbce19682007-07-26 10:41:14 -070062
Mauro Carvalho Chehab93e4fe62012-04-16 10:18:12 -030063extern void *edac_align_ptr(void **p, unsigned size, int n_elems);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070064
65/*
Rob Herringe7930ba2012-06-11 21:32:12 -050066 * EDAC debugfs functions
67 */
Borislav Petkov4397bcb2015-09-22 12:16:05 +020068
69#define edac_debugfs_remove_recursive debugfs_remove_recursive
70#define edac_debugfs_remove debugfs_remove
Rob Herringe7930ba2012-06-11 21:32:12 -050071#ifdef CONFIG_EDAC_DEBUG
Greg Kroah-Hartman912ebd92019-01-22 16:21:16 +010072void edac_debugfs_init(void);
Rob Herringe7930ba2012-06-11 21:32:12 -050073void edac_debugfs_exit(void);
Greg Kroah-Hartman912ebd92019-01-22 16:21:16 +010074void edac_create_debugfs_nodes(struct mem_ctl_info *mci);
Borislav Petkov4397bcb2015-09-22 12:16:05 +020075struct dentry *edac_debugfs_create_dir(const char *dirname);
76struct dentry *
77edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent);
78struct dentry *
79edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
80 void *data, const struct file_operations *fops);
Greg Kroah-Hartman40d79622019-06-11 19:54:33 +020081void edac_debugfs_create_x8(const char *name, umode_t mode,
82 struct dentry *parent, u8 *value);
83void edac_debugfs_create_x16(const char *name, umode_t mode,
84 struct dentry *parent, u16 *value);
Jan Luebbe0ecace02019-07-12 05:46:56 +010085void edac_debugfs_create_x32(const char *name, umode_t mode,
86 struct dentry *parent, u32 *value);
Rob Herringe7930ba2012-06-11 21:32:12 -050087#else
Greg Kroah-Hartman912ebd92019-01-22 16:21:16 +010088static inline void edac_debugfs_init(void) { }
Borislav Petkov4397bcb2015-09-22 12:16:05 +020089static inline void edac_debugfs_exit(void) { }
Greg Kroah-Hartman912ebd92019-01-22 16:21:16 +010090static inline void edac_create_debugfs_nodes(struct mem_ctl_info *mci) { }
Borislav Petkov4397bcb2015-09-22 12:16:05 +020091static inline struct dentry *edac_debugfs_create_dir(const char *dirname) { return NULL; }
92static inline struct dentry *
93edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent) { return NULL; }
94static inline struct dentry *
95edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
96 void *data, const struct file_operations *fops) { return NULL; }
Greg Kroah-Hartman40d79622019-06-11 19:54:33 +020097static inline void edac_debugfs_create_x8(const char *name, umode_t mode,
98 struct dentry *parent, u8 *value) { }
99static inline void edac_debugfs_create_x16(const char *name, umode_t mode,
100 struct dentry *parent, u16 *value) { }
Jan Luebbe0ecace02019-07-12 05:46:56 +0100101static inline void edac_debugfs_create_x32(const char *name, umode_t mode,
102 struct dentry *parent, u32 *value) { }
Rob Herringe7930ba2012-06-11 21:32:12 -0500103#endif
104
105/*
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700106 * EDAC PCI functions
107 */
108#ifdef CONFIG_PCI
109extern void edac_pci_do_parity_check(void);
110extern void edac_pci_clear_parity_errors(void);
111extern int edac_sysfs_pci_setup(void);
112extern void edac_sysfs_pci_teardown(void);
Dave Jiang4de78c62007-07-19 01:49:54 -0700113extern int edac_pci_get_check_errors(void);
114extern int edac_pci_get_poll_msec(void);
Doug Thompsond4c14652007-07-26 10:41:15 -0700115extern void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci);
116extern void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg);
117extern void edac_pci_handle_npe(struct edac_pci_ctl_info *pci,
118 const char *msg);
Douglas Thompson079708b2007-07-19 01:49:58 -0700119#else /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700120/* pre-process these away */
121#define edac_pci_do_parity_check()
122#define edac_pci_clear_parity_errors()
123#define edac_sysfs_pci_setup() (0)
124#define edac_sysfs_pci_teardown()
Dave Jiang4de78c62007-07-19 01:49:54 -0700125#define edac_pci_get_check_errors()
126#define edac_pci_get_poll_msec()
Doug Thompsond4c14652007-07-26 10:41:15 -0700127#define edac_pci_handle_pe()
128#define edac_pci_handle_npe()
Douglas Thompson079708b2007-07-19 01:49:58 -0700129#endif /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -0700130
Douglas Thompson079708b2007-07-19 01:49:58 -0700131#endif /* __EDAC_MODULE_H__ */