blob: 1af13676e857f17314f0e264a1e487b0b799d853 [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);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070025extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci);
26extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030027void edac_unregister_sysfs(struct mem_ctl_info *mci);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070028extern int edac_get_log_ue(void);
29extern int edac_get_log_ce(void);
30extern int edac_get_panic_on_ue(void);
Dave Jiang4de78c62007-07-19 01:49:54 -070031extern int edac_mc_get_log_ue(void);
32extern int edac_mc_get_log_ce(void);
33extern int edac_mc_get_panic_on_ue(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070034extern int edac_get_poll_msec(void);
Dave Jiang81d87cb2007-07-19 01:49:52 -070035extern int edac_mc_get_poll_msec(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070036
Mauro Carvalho Chehab7a623c02012-04-16 16:41:11 -030037 /* on edac_device.c */
Douglas Thompson1c3631f2007-07-19 01:50:29 -070038extern int edac_device_register_sysfs_main_kobj(
39 struct edac_device_ctl_info *edac_dev);
40extern void edac_device_unregister_sysfs_main_kobj(
41 struct edac_device_ctl_info *edac_dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070042extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev);
43extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070044
Douglas Thompsone27e3da2007-07-19 01:49:36 -070045/* edac core workqueue: single CPU mode */
46extern struct workqueue_struct *edac_workqueue;
Dave Jiang81d87cb2007-07-19 01:49:52 -070047extern void edac_device_workq_setup(struct edac_device_ctl_info *edac_dev,
Douglas Thompson079708b2007-07-19 01:49:58 -070048 unsigned msec);
Dave Jiang81d87cb2007-07-19 01:49:52 -070049extern void edac_device_workq_teardown(struct edac_device_ctl_info *edac_dev);
Douglas Thompson079708b2007-07-19 01:49:58 -070050extern void edac_device_reset_delay_period(struct edac_device_ctl_info
51 *edac_dev, unsigned long value);
Doug Thompsonbce19682007-07-26 10:41:14 -070052extern void edac_mc_reset_delay_period(int value);
53
Mauro Carvalho Chehab93e4fe62012-04-16 10:18:12 -030054extern void *edac_align_ptr(void **p, unsigned size, int n_elems);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070055
56/*
57 * EDAC PCI functions
58 */
59#ifdef CONFIG_PCI
60extern void edac_pci_do_parity_check(void);
61extern void edac_pci_clear_parity_errors(void);
62extern int edac_sysfs_pci_setup(void);
63extern void edac_sysfs_pci_teardown(void);
Dave Jiang4de78c62007-07-19 01:49:54 -070064extern int edac_pci_get_check_errors(void);
65extern int edac_pci_get_poll_msec(void);
Doug Thompsond4c14652007-07-26 10:41:15 -070066extern void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci);
67extern void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg);
68extern void edac_pci_handle_npe(struct edac_pci_ctl_info *pci,
69 const char *msg);
Douglas Thompson079708b2007-07-19 01:49:58 -070070#else /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -070071/* pre-process these away */
72#define edac_pci_do_parity_check()
73#define edac_pci_clear_parity_errors()
74#define edac_sysfs_pci_setup() (0)
75#define edac_sysfs_pci_teardown()
Dave Jiang4de78c62007-07-19 01:49:54 -070076#define edac_pci_get_check_errors()
77#define edac_pci_get_poll_msec()
Doug Thompsond4c14652007-07-26 10:41:15 -070078#define edac_pci_handle_pe()
79#define edac_pci_handle_npe()
Douglas Thompson079708b2007-07-19 01:49:58 -070080#endif /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -070081
Douglas Thompson079708b2007-07-19 01:49:58 -070082#endif /* __EDAC_MODULE_H__ */