Linux Audio

Check our new training course

Loading...
v6.8
  1/* SPDX-License-Identifier: GPL-2.0 */
  2
  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
 14#include <acpi/ghes.h>
 15#include "edac_mc.h"
 16#include "edac_pci.h"
 17#include "edac_device.h"
 18
 19/*
 20 * INTERNAL EDAC MODULE:
 21 * EDAC memory controller sysfs create/remove functions
 22 * and setup/teardown functions
 23 *
 24 * edac_mc objects
 25 */
 26	/* on edac_mc_sysfs.c */
 27int edac_mc_sysfs_init(void);
 28void edac_mc_sysfs_exit(void);
 29extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci,
 30					const struct attribute_group **groups);
 31extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
 
 
 
 
 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);
 
 35extern unsigned int edac_mc_get_poll_msec(void);
 36
 37unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf,
 38				 unsigned len);
 39
 40	/* on edac_device.c */
 41extern int edac_device_register_sysfs_main_kobj(
 42				struct edac_device_ctl_info *edac_dev);
 43extern void edac_device_unregister_sysfs_main_kobj(
 44				struct edac_device_ctl_info *edac_dev);
 45extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev);
 46extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev);
 47
 48/* edac core workqueue: single CPU mode */
 49int edac_workqueue_setup(void);
 50void edac_workqueue_teardown(void);
 51bool edac_queue_work(struct delayed_work *work, unsigned long delay);
 52bool edac_stop_work(struct delayed_work *work);
 53bool edac_mod_work(struct delayed_work *work, unsigned long delay);
 54
 55extern void edac_device_reset_delay_period(struct edac_device_ctl_info
 56					   *edac_dev, unsigned long msec);
 57extern void edac_mc_reset_delay_period(unsigned long value);
 
 
 58
 59/*
 60 * EDAC debugfs functions
 61 */
 62
 63#define edac_debugfs_remove_recursive debugfs_remove_recursive
 64#define edac_debugfs_remove debugfs_remove
 65#ifdef CONFIG_EDAC_DEBUG
 66void edac_debugfs_init(void);
 67void edac_debugfs_exit(void);
 68void edac_create_debugfs_nodes(struct mem_ctl_info *mci);
 69struct dentry *edac_debugfs_create_dir(const char *dirname);
 70struct dentry *
 71edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent);
 72struct dentry *
 73edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
 74			 void *data, const struct file_operations *fops);
 75void edac_debugfs_create_x8(const char *name, umode_t mode,
 76			    struct dentry *parent, u8 *value);
 77void edac_debugfs_create_x16(const char *name, umode_t mode,
 78			     struct dentry *parent, u16 *value);
 79void edac_debugfs_create_x32(const char *name, umode_t mode,
 80			     struct dentry *parent, u32 *value);
 81#else
 82static inline void edac_debugfs_init(void)					{ }
 83static inline void edac_debugfs_exit(void)					{ }
 84static inline void edac_create_debugfs_nodes(struct mem_ctl_info *mci)		{ }
 85static inline struct dentry *edac_debugfs_create_dir(const char *dirname)	{ return NULL; }
 86static inline struct dentry *
 87edac_debugfs_create_dir_at(const char *dirname, struct dentry *parent)		{ return NULL; }
 88static inline struct dentry *
 89edac_debugfs_create_file(const char *name, umode_t mode, struct dentry *parent,
 90			 void *data, const struct file_operations *fops)	{ return NULL; }
 91static inline void edac_debugfs_create_x8(const char *name, umode_t mode,
 92					  struct dentry *parent, u8 *value)	{ }
 93static inline void edac_debugfs_create_x16(const char *name, umode_t mode,
 94					   struct dentry *parent, u16 *value)	{ }
 95static inline void edac_debugfs_create_x32(const char *name, umode_t mode,
 96		       struct dentry *parent, u32 *value)			{ }
 97#endif
 98
 99/*
100 * EDAC PCI functions
101 */
102#ifdef	CONFIG_PCI
103extern void edac_pci_do_parity_check(void);
104extern void edac_pci_clear_parity_errors(void);
105extern int edac_sysfs_pci_setup(void);
106extern void edac_sysfs_pci_teardown(void);
107extern int edac_pci_get_check_errors(void);
108extern int edac_pci_get_poll_msec(void);
109extern void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci);
110extern void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg);
111extern void edac_pci_handle_npe(struct edac_pci_ctl_info *pci,
112				const char *msg);
113#else				/* CONFIG_PCI */
114/* pre-process these away */
115#define edac_pci_do_parity_check()
116#define edac_pci_clear_parity_errors()
117#define edac_sysfs_pci_setup()  (0)
118#define edac_sysfs_pci_teardown()
119#define edac_pci_get_check_errors()
120#define edac_pci_get_poll_msec()
121#define edac_pci_handle_pe()
122#define edac_pci_handle_npe()
123#endif				/* CONFIG_PCI */
124
125#endif				/* __EDAC_MODULE_H__ */
v5.4
  1/* SPDX-License-Identifier: GPL-2.0 */
  2
  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
 
 14#include "edac_mc.h"
 15#include "edac_pci.h"
 16#include "edac_device.h"
 17
 18/*
 19 * INTERNAL EDAC MODULE:
 20 * EDAC memory controller sysfs create/remove functions
 21 * and setup/teardown functions
 22 *
 23 * edac_mc objects
 24 */
 25	/* on edac_mc_sysfs.c */
 26int edac_mc_sysfs_init(void);
 27void edac_mc_sysfs_exit(void);
 28extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci,
 29					const struct attribute_group **groups);
 30extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
 31void edac_unregister_sysfs(struct mem_ctl_info *mci);
 32extern int edac_get_log_ue(void);
 33extern int edac_get_log_ce(void);
 34extern int edac_get_panic_on_ue(void);
 35extern int edac_mc_get_log_ue(void);
 36extern int edac_mc_get_log_ce(void);
 37extern int edac_mc_get_panic_on_ue(void);
 38extern int edac_get_poll_msec(void);
 39extern unsigned int edac_mc_get_poll_msec(void);
 40
 41unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf,
 42				 unsigned len);
 43
 44	/* on edac_device.c */
 45extern 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);
 49extern 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);
 51
 52/* edac core workqueue: single CPU mode */
 53int 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
 59extern void edac_device_reset_delay_period(struct edac_device_ctl_info
 60					   *edac_dev, unsigned long value);
 61extern void edac_mc_reset_delay_period(unsigned long value);
 62
 63extern void *edac_align_ptr(void **p, unsigned size, int n_elems);
 64
 65/*
 66 * EDAC debugfs functions
 67 */
 68
 69#define edac_debugfs_remove_recursive debugfs_remove_recursive
 70#define edac_debugfs_remove debugfs_remove
 71#ifdef CONFIG_EDAC_DEBUG
 72void edac_debugfs_init(void);
 73void edac_debugfs_exit(void);
 74void edac_create_debugfs_nodes(struct mem_ctl_info *mci);
 75struct 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);
 81void 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);
 85void edac_debugfs_create_x32(const char *name, umode_t mode,
 86			     struct dentry *parent, u32 *value);
 87#else
 88static inline void edac_debugfs_init(void)					{ }
 89static inline void edac_debugfs_exit(void)					{ }
 90static inline void edac_create_debugfs_nodes(struct mem_ctl_info *mci)		{ }
 91static 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; }
 97static 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)	{ }
101static inline void edac_debugfs_create_x32(const char *name, umode_t mode,
102		       struct dentry *parent, u32 *value)			{ }
103#endif
104
105/*
106 * 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);
113extern int edac_pci_get_check_errors(void);
114extern int edac_pci_get_poll_msec(void);
115extern 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);
119#else				/* CONFIG_PCI */
120/* 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()
125#define edac_pci_get_check_errors()
126#define edac_pci_get_poll_msec()
127#define edac_pci_handle_pe()
128#define edac_pci_handle_npe()
129#endif				/* CONFIG_PCI */
130
131#endif				/* __EDAC_MODULE_H__ */