Dave Jiang | 81d87cb | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 1 | /* |
| 2 | * edac_module.c |
| 3 | * |
Doug Thompson | fb3fb20 | 2007-07-19 01:50:30 -0700 | [diff] [blame] | 4 | * (C) 2007 www.softwarebitmaker.com |
| 5 | * |
Dave Jiang | 81d87cb | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 6 | * This file is licensed under the terms of the GNU General Public |
| 7 | * License version 2. This program is licensed "as is" without any |
| 8 | * warranty of any kind, whether express or implied. |
| 9 | * |
Doug Thompson | fb3fb20 | 2007-07-19 01:50:30 -0700 | [diff] [blame] | 10 | * Author: Doug Thompson <dougthompson@xmission.com> |
Dave Jiang | 81d87cb | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 11 | * |
| 12 | */ |
Dave Jiang | c0d1217 | 2007-07-19 01:49:46 -0700 | [diff] [blame] | 13 | #include <linux/edac.h> |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 14 | |
Mauro Carvalho Chehab | 78d88e8 | 2016-10-29 15:16:34 -0200 | [diff] [blame] | 15 | #include "edac_mc.h" |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 16 | #include "edac_module.h" |
| 17 | |
Mauro Carvalho Chehab | 5156a5f | 2012-05-10 12:43:01 -0300 | [diff] [blame] | 18 | #define EDAC_VERSION "Ver: 3.0.0" |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 19 | |
| 20 | #ifdef CONFIG_EDAC_DEBUG |
Borislav Petkov | 3792987 | 2012-09-10 16:50:54 +0200 | [diff] [blame] | 21 | |
Kees Cook | e4dca7b | 2017-10-17 19:04:42 -0700 | [diff] [blame] | 22 | static int edac_set_debug_level(const char *buf, |
| 23 | const struct kernel_param *kp) |
Borislav Petkov | 3792987 | 2012-09-10 16:50:54 +0200 | [diff] [blame] | 24 | { |
| 25 | unsigned long val; |
| 26 | int ret; |
| 27 | |
| 28 | ret = kstrtoul(buf, 0, &val); |
| 29 | if (ret) |
| 30 | return ret; |
| 31 | |
Fabian Frederick | 6866b39 | 2014-06-09 21:20:18 +0200 | [diff] [blame] | 32 | if (val > 4) |
Borislav Petkov | 3792987 | 2012-09-10 16:50:54 +0200 | [diff] [blame] | 33 | return -EINVAL; |
| 34 | |
| 35 | return param_set_int(buf, kp); |
| 36 | } |
| 37 | |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 38 | /* Values of 0 to 4 will generate output */ |
Doug Thompson | 8096cfa | 2007-07-19 01:50:27 -0700 | [diff] [blame] | 39 | int edac_debug_level = 2; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 40 | EXPORT_SYMBOL_GPL(edac_debug_level); |
Borislav Petkov | 3792987 | 2012-09-10 16:50:54 +0200 | [diff] [blame] | 41 | |
| 42 | module_param_call(edac_debug_level, edac_set_debug_level, param_get_int, |
| 43 | &edac_debug_level, 0644); |
| 44 | MODULE_PARM_DESC(edac_debug_level, "EDAC debug level: [0-4], default: 2"); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 45 | #endif |
| 46 | |
Douglas Thompson | e27e3da | 2007-07-19 01:49:36 -0700 | [diff] [blame] | 47 | /* |
Douglas Thompson | 494d0d5 | 2007-07-19 01:50:21 -0700 | [diff] [blame] | 48 | * edac_op_state_to_string() |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 49 | */ |
Douglas Thompson | 494d0d5 | 2007-07-19 01:50:21 -0700 | [diff] [blame] | 50 | char *edac_op_state_to_string(int opstate) |
Dave Jiang | 91b9904 | 2007-07-19 01:49:52 -0700 | [diff] [blame] | 51 | { |
| 52 | if (opstate == OP_RUNNING_POLL) |
| 53 | return "POLLED"; |
| 54 | else if (opstate == OP_RUNNING_INTERRUPT) |
| 55 | return "INTERRUPT"; |
| 56 | else if (opstate == OP_RUNNING_POLL_INTR) |
| 57 | return "POLL-INTR"; |
| 58 | else if (opstate == OP_ALLOC) |
| 59 | return "ALLOC"; |
| 60 | else if (opstate == OP_OFFLINE) |
| 61 | return "OFFLINE"; |
| 62 | |
| 63 | return "UNKNOWN"; |
| 64 | } |
| 65 | |
| 66 | /* |
Borislav Petkov | 733476c | 2015-11-27 11:40:43 +0100 | [diff] [blame] | 67 | * sysfs object: /sys/devices/system/edac |
| 68 | * need to export to other files |
| 69 | */ |
Borislav Petkov | a97d262 | 2015-11-30 14:15:31 +0100 | [diff] [blame] | 70 | static struct bus_type edac_subsys = { |
Borislav Petkov | 733476c | 2015-11-27 11:40:43 +0100 | [diff] [blame] | 71 | .name = "edac", |
| 72 | .dev_name = "edac", |
| 73 | }; |
Borislav Petkov | 733476c | 2015-11-27 11:40:43 +0100 | [diff] [blame] | 74 | |
| 75 | static int edac_subsys_init(void) |
| 76 | { |
| 77 | int err; |
| 78 | |
| 79 | /* create the /sys/devices/system/edac directory */ |
| 80 | err = subsys_system_register(&edac_subsys, NULL); |
| 81 | if (err) |
| 82 | printk(KERN_ERR "Error registering toplevel EDAC sysfs dir\n"); |
| 83 | |
| 84 | return err; |
| 85 | } |
| 86 | |
| 87 | static void edac_subsys_exit(void) |
| 88 | { |
| 89 | bus_unregister(&edac_subsys); |
| 90 | } |
| 91 | |
| 92 | /* return pointer to the 'edac' node in sysfs */ |
| 93 | struct bus_type *edac_get_sysfs_subsys(void) |
| 94 | { |
| 95 | return &edac_subsys; |
| 96 | } |
| 97 | EXPORT_SYMBOL_GPL(edac_get_sysfs_subsys); |
| 98 | /* |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 99 | * edac_init |
| 100 | * module initialization entry point |
| 101 | */ |
| 102 | static int __init edac_init(void) |
| 103 | { |
Douglas Thompson | e27e3da | 2007-07-19 01:49:36 -0700 | [diff] [blame] | 104 | int err = 0; |
| 105 | |
Doug Thompson | fb3fb20 | 2007-07-19 01:50:30 -0700 | [diff] [blame] | 106 | edac_printk(KERN_INFO, EDAC_MC, EDAC_VERSION "\n"); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 107 | |
Borislav Petkov | 733476c | 2015-11-27 11:40:43 +0100 | [diff] [blame] | 108 | err = edac_subsys_init(); |
| 109 | if (err) |
| 110 | return err; |
| 111 | |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 112 | /* |
| 113 | * Harvest and clear any boot/initialization PCI parity errors |
| 114 | * |
| 115 | * FIXME: This only clears errors logged by devices present at time of |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 116 | * module initialization. We should also do an initial clear |
| 117 | * of each newly hotplugged device. |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 118 | */ |
| 119 | edac_pci_clear_parity_errors(); |
| 120 | |
Mauro Carvalho Chehab | 7a623c0 | 2012-04-16 16:41:11 -0300 | [diff] [blame] | 121 | err = edac_mc_sysfs_init(); |
Doug Thompson | 8096cfa | 2007-07-19 01:50:27 -0700 | [diff] [blame] | 122 | if (err) |
Alexey Khoroshilov | c6b97bc | 2015-02-05 22:12:42 -0800 | [diff] [blame] | 123 | goto err_sysfs; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 124 | |
Rob Herring | e7930ba | 2012-06-11 21:32:12 -0500 | [diff] [blame] | 125 | edac_debugfs_init(); |
| 126 | |
Douglas Thompson | e27e3da | 2007-07-19 01:49:36 -0700 | [diff] [blame] | 127 | err = edac_workqueue_setup(); |
| 128 | if (err) { |
Alexey Khoroshilov | c6b97bc | 2015-02-05 22:12:42 -0800 | [diff] [blame] | 129 | edac_printk(KERN_ERR, EDAC_MC, "Failure initializing workqueue\n"); |
| 130 | goto err_wq; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 133 | return 0; |
Douglas Thompson | e27e3da | 2007-07-19 01:49:36 -0700 | [diff] [blame] | 134 | |
Alexey Khoroshilov | c6b97bc | 2015-02-05 22:12:42 -0800 | [diff] [blame] | 135 | err_wq: |
| 136 | edac_debugfs_exit(); |
| 137 | edac_mc_sysfs_exit(); |
| 138 | |
| 139 | err_sysfs: |
Borislav Petkov | 733476c | 2015-11-27 11:40:43 +0100 | [diff] [blame] | 140 | edac_subsys_exit(); |
| 141 | |
Douglas Thompson | e27e3da | 2007-07-19 01:49:36 -0700 | [diff] [blame] | 142 | return err; |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | /* |
| 146 | * edac_exit() |
| 147 | * module exit/termination function |
| 148 | */ |
| 149 | static void __exit edac_exit(void) |
| 150 | { |
Joe Perches | 956b9ba1 | 2012-04-29 17:08:39 -0300 | [diff] [blame] | 151 | edac_dbg(0, "\n"); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 152 | |
Douglas Thompson | 079708b | 2007-07-19 01:49:58 -0700 | [diff] [blame] | 153 | /* tear down the various subsystems */ |
Douglas Thompson | e27e3da | 2007-07-19 01:49:36 -0700 | [diff] [blame] | 154 | edac_workqueue_teardown(); |
Mauro Carvalho Chehab | 7a623c0 | 2012-04-16 16:41:11 -0300 | [diff] [blame] | 155 | edac_mc_sysfs_exit(); |
Rob Herring | e7930ba | 2012-06-11 21:32:12 -0500 | [diff] [blame] | 156 | edac_debugfs_exit(); |
Borislav Petkov | 733476c | 2015-11-27 11:40:43 +0100 | [diff] [blame] | 157 | edac_subsys_exit(); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | /* |
| 161 | * Inform the kernel of our entry and exit points |
| 162 | */ |
Mauro Carvalho Chehab | 4ab19b0 | 2013-02-15 07:57:50 -0300 | [diff] [blame] | 163 | subsys_initcall(edac_init); |
Douglas Thompson | 7c9281d | 2007-07-19 01:49:33 -0700 | [diff] [blame] | 164 | module_exit(edac_exit); |
| 165 | |
| 166 | MODULE_LICENSE("GPL"); |
| 167 | MODULE_AUTHOR("Doug Thompson www.softwarebitmaker.com, et al"); |
| 168 | MODULE_DESCRIPTION("Core library routines for EDAC reporting"); |