Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 1 | |
| 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 Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 13 | #include "edac_core.h" |
| 14 | |
| 15 | /* |
| 16 | * INTERNAL EDAC MODULE: |
| 17 | * EDAC memory controller sysfs create/remove functions |
| 18 | * and setup/teardown functions |
Doug Thompson | 8096cfa | 2007-07-19 01:50:27 -0700 | [diff] [blame] | 19 | * |
| 20 | * edac_mc objects |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 21 | */ |
Mauro Carvalho Chehab | 7a623c0 | 2012-04-16 16:41:11 -0300 | [diff] [blame] | 22 | /* on edac_mc_sysfs.c */ |
| 23 | int edac_mc_sysfs_init(void); |
| 24 | void edac_mc_sysfs_exit(void); |
Takashi Iwai | 4e8d230 | 2015-02-04 11:48:52 +0100 | [diff] [blame] | 25 | extern int edac_create_sysfs_mci_device(struct mem_ctl_info *mci, |
| 26 | const struct attribute_group **groups); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 27 | extern void edac_remove_sysfs_mci_device(struct mem_ctl_info *mci); |
Mauro Carvalho Chehab | 7a623c0 | 2012-04-16 16:41:11 -0300 | [diff] [blame] | 28 | void edac_unregister_sysfs(struct mem_ctl_info *mci); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 29 | extern int edac_get_log_ue(void); |
| 30 | extern int edac_get_log_ce(void); |
| 31 | extern int edac_get_panic_on_ue(void); |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 32 | extern int edac_mc_get_log_ue(void); |
| 33 | extern int edac_mc_get_log_ce(void); |
| 34 | extern int edac_mc_get_panic_on_ue(void); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 35 | extern int edac_get_poll_msec(void); |
Dave Jiang | 81d87cb | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 36 | extern int edac_mc_get_poll_msec(void); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 37 | |
Mauro Carvalho Chehab | 6e84d35 | 2012-04-30 10:24:43 -0300 | [diff] [blame] | 38 | unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf, |
| 39 | unsigned len); |
| 40 | |
Mauro Carvalho Chehab | 7a623c0 | 2012-04-16 16:41:11 -0300 | [diff] [blame] | 41 | /* on edac_device.c */ |
Douglas Thompson | 1c3631f | 2007-07-19 01:50:29 -0700 | [diff] [blame] | 42 | extern int edac_device_register_sysfs_main_kobj( |
| 43 | struct edac_device_ctl_info *edac_dev); |
| 44 | extern void edac_device_unregister_sysfs_main_kobj( |
| 45 | struct edac_device_ctl_info *edac_dev); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 46 | extern int edac_device_create_sysfs(struct edac_device_ctl_info *edac_dev); |
| 47 | extern void edac_device_remove_sysfs(struct edac_device_ctl_info *edac_dev); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 48 | |
Douglas Thompson | e27e3da | 2007-07-19 01:49:36 -0700 | [diff] [blame] | 49 | /* edac core workqueue: single CPU mode */ |
| 50 | extern struct workqueue_struct *edac_workqueue; |
Dave Jiang | 81d87cb | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 51 | extern void edac_device_workq_setup(struct edac_device_ctl_info *edac_dev, |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 52 | unsigned msec); |
Dave Jiang | 81d87cb | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 53 | extern void edac_device_workq_teardown(struct edac_device_ctl_info *edac_dev); |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 54 | extern void edac_device_reset_delay_period(struct edac_device_ctl_info |
| 55 | *edac_dev, unsigned long value); |
Borislav Petkov | 9da21b1 | 2014-02-03 15:05:13 -0500 | [diff] [blame] | 56 | extern void edac_mc_reset_delay_period(unsigned long value); |
Doug Thompson | bce1968 | 2007-07-26 10:41:14 -0700 | [diff] [blame] | 57 | |
Mauro Carvalho Chehab | 93e4fe6 | 2012-04-16 10:18:12 -0300 | [diff] [blame] | 58 | extern void *edac_align_ptr(void **p, unsigned size, int n_elems); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 59 | |
| 60 | /* |
Rob Herring | e7930ba | 2012-06-11 21:32:12 -0500 | [diff] [blame] | 61 | * EDAC debugfs functions |
| 62 | */ |
| 63 | #ifdef CONFIG_EDAC_DEBUG |
| 64 | int edac_debugfs_init(void); |
| 65 | void edac_debugfs_exit(void); |
| 66 | #else |
| 67 | static inline int edac_debugfs_init(void) |
| 68 | { |
| 69 | return -ENODEV; |
| 70 | } |
| 71 | static inline void edac_debugfs_exit(void) {} |
| 72 | #endif |
| 73 | |
| 74 | /* |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 75 | * EDAC PCI functions |
| 76 | */ |
| 77 | #ifdef CONFIG_PCI |
| 78 | extern void edac_pci_do_parity_check(void); |
| 79 | extern void edac_pci_clear_parity_errors(void); |
| 80 | extern int edac_sysfs_pci_setup(void); |
| 81 | extern void edac_sysfs_pci_teardown(void); |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 82 | extern int edac_pci_get_check_errors(void); |
| 83 | extern int edac_pci_get_poll_msec(void); |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 84 | extern void edac_pci_remove_sysfs(struct edac_pci_ctl_info *pci); |
| 85 | extern void edac_pci_handle_pe(struct edac_pci_ctl_info *pci, const char *msg); |
| 86 | extern void edac_pci_handle_npe(struct edac_pci_ctl_info *pci, |
| 87 | const char *msg); |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 88 | #else /* CONFIG_PCI */ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 89 | /* pre-process these away */ |
| 90 | #define edac_pci_do_parity_check() |
| 91 | #define edac_pci_clear_parity_errors() |
| 92 | #define edac_sysfs_pci_setup() (0) |
| 93 | #define edac_sysfs_pci_teardown() |
Dave Jiang | 4de78c6 | 2007-07-19 01:49:54 -0700 | [diff] [blame] | 94 | #define edac_pci_get_check_errors() |
| 95 | #define edac_pci_get_poll_msec() |
Doug Thompson | d4c1465 | 2007-07-26 10:41:15 -0700 | [diff] [blame] | 96 | #define edac_pci_handle_pe() |
| 97 | #define edac_pci_handle_npe() |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 98 | #endif /* CONFIG_PCI */ |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 99 | |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 100 | #endif /* __EDAC_MODULE_H__ */ |