blob: 37a08aa87d3eb187d9f4d0dc6c3b7a1d250842be [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
13#include <linux/sysdev.h>
14
15#include "edac_core.h"
16
17/*
18 * INTERNAL EDAC MODULE:
19 * EDAC memory controller sysfs create/remove functions
20 * and setup/teardown functions
21 */
22extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci);
23extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci);
24extern int edac_sysfs_memctrl_setup(void);
25extern void edac_sysfs_memctrl_teardown(void);
26extern void edac_check_mc_devices(void);
27extern int edac_get_log_ue(void);
28extern int edac_get_log_ce(void);
29extern int edac_get_panic_on_ue(void);
Dave Jiang4de78c62007-07-19 01:49:54 -070030extern int edac_mc_get_log_ue(void);
31extern int edac_mc_get_log_ce(void);
32extern int edac_mc_get_panic_on_ue(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070033extern int edac_get_poll_msec(void);
Dave Jiang81d87cb2007-07-19 01:49:52 -070034extern int edac_mc_get_poll_msec(void);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070035
36extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev);
37extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev);
38extern struct sysdev_class *edac_get_edac_class(void);
39
Douglas Thompsone27e3da2007-07-19 01:49:36 -070040/* edac core workqueue: single CPU mode */
41extern struct workqueue_struct *edac_workqueue;
Dave Jiang81d87cb2007-07-19 01:49:52 -070042extern void edac_device_workq_setup(struct edac_device_ctl_info *edac_dev,
Douglas Thompson079708b2007-07-19 01:49:58 -070043 unsigned msec);
Dave Jiang81d87cb2007-07-19 01:49:52 -070044extern void edac_device_workq_teardown(struct edac_device_ctl_info *edac_dev);
Douglas Thompson079708b2007-07-19 01:49:58 -070045extern void edac_device_reset_delay_period(struct edac_device_ctl_info
46 *edac_dev, unsigned long value);
Douglas Thompson7391c6d2007-07-19 01:50:21 -070047extern void *edac_align_ptr(void *ptr, unsigned size);
Douglas Thompson7c9281d2007-07-19 01:49:33 -070048
49/*
50 * EDAC PCI functions
51 */
52#ifdef CONFIG_PCI
53extern void edac_pci_do_parity_check(void);
54extern void edac_pci_clear_parity_errors(void);
55extern int edac_sysfs_pci_setup(void);
56extern void edac_sysfs_pci_teardown(void);
Dave Jiang4de78c62007-07-19 01:49:54 -070057extern int edac_pci_get_check_errors(void);
58extern int edac_pci_get_poll_msec(void);
Douglas Thompson079708b2007-07-19 01:49:58 -070059#else /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -070060/* pre-process these away */
61#define edac_pci_do_parity_check()
62#define edac_pci_clear_parity_errors()
63#define edac_sysfs_pci_setup() (0)
64#define edac_sysfs_pci_teardown()
Dave Jiang4de78c62007-07-19 01:49:54 -070065#define edac_pci_get_check_errors()
66#define edac_pci_get_poll_msec()
Douglas Thompson079708b2007-07-19 01:49:58 -070067#endif /* CONFIG_PCI */
Douglas Thompson7c9281d2007-07-19 01:49:33 -070068
Douglas Thompson079708b2007-07-19 01:49:58 -070069#endif /* __EDAC_MODULE_H__ */