edac_mc.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259
  1. /*
  2. * edac_mc kernel module
  3. * (C) 2005, 2006 Linux Networx (http://lnxi.com)
  4. * This file may be distributed under the terms of the
  5. * GNU General Public License.
  6. *
  7. * Written by Thayne Harbaugh
  8. * Based on work by Dan Hollis <goemon at anime dot net> and others.
  9. * http://www.anime.net/~goemon/linux-ecc/
  10. *
  11. * Modified by Dave Peterson and Doug Thompson
  12. *
  13. */
  14. #include <linux/module.h>
  15. #include <linux/proc_fs.h>
  16. #include <linux/kernel.h>
  17. #include <linux/types.h>
  18. #include <linux/smp.h>
  19. #include <linux/init.h>
  20. #include <linux/sysctl.h>
  21. #include <linux/highmem.h>
  22. #include <linux/timer.h>
  23. #include <linux/slab.h>
  24. #include <linux/jiffies.h>
  25. #include <linux/spinlock.h>
  26. #include <linux/list.h>
  27. #include <linux/ctype.h>
  28. #include <linux/edac.h>
  29. #include <linux/bitops.h>
  30. #include <asm/uaccess.h>
  31. #include <asm/page.h>
  32. #include "edac_core.h"
  33. #include "edac_module.h"
  34. #include <ras/ras_event.h>
  35. #ifdef CONFIG_EDAC_ATOMIC_SCRUB
  36. #include <asm/edac.h>
  37. #else
  38. #define edac_atomic_scrub(va, size) do { } while (0)
  39. #endif
  40. /* lock to memory controller's control array */
  41. static DEFINE_MUTEX(mem_ctls_mutex);
  42. static LIST_HEAD(mc_devices);
  43. /*
  44. * Used to lock EDAC MC to just one module, avoiding two drivers e. g.
  45. * apei/ghes and i7core_edac to be used at the same time.
  46. */
  47. static void const *edac_mc_owner;
  48. static struct bus_type mc_bus[EDAC_MAX_MCS];
  49. unsigned edac_dimm_info_location(struct dimm_info *dimm, char *buf,
  50. unsigned len)
  51. {
  52. struct mem_ctl_info *mci = dimm->mci;
  53. int i, n, count = 0;
  54. char *p = buf;
  55. for (i = 0; i < mci->n_layers; i++) {
  56. n = snprintf(p, len, "%s %d ",
  57. edac_layer_name[mci->layers[i].type],
  58. dimm->location[i]);
  59. p += n;
  60. len -= n;
  61. count += n;
  62. if (!len)
  63. break;
  64. }
  65. return count;
  66. }
  67. #ifdef CONFIG_EDAC_DEBUG
  68. static void edac_mc_dump_channel(struct rank_info *chan)
  69. {
  70. edac_dbg(4, " channel->chan_idx = %d\n", chan->chan_idx);
  71. edac_dbg(4, " channel = %p\n", chan);
  72. edac_dbg(4, " channel->csrow = %p\n", chan->csrow);
  73. edac_dbg(4, " channel->dimm = %p\n", chan->dimm);
  74. }
  75. static void edac_mc_dump_dimm(struct dimm_info *dimm, int number)
  76. {
  77. char location[80];
  78. edac_dimm_info_location(dimm, location, sizeof(location));
  79. edac_dbg(4, "%s%i: %smapped as virtual row %d, chan %d\n",
  80. dimm->mci->csbased ? "rank" : "dimm",
  81. number, location, dimm->csrow, dimm->cschannel);
  82. edac_dbg(4, " dimm = %p\n", dimm);
  83. edac_dbg(4, " dimm->label = '%s'\n", dimm->label);
  84. edac_dbg(4, " dimm->nr_pages = 0x%x\n", dimm->nr_pages);
  85. edac_dbg(4, " dimm->grain = %d\n", dimm->grain);
  86. edac_dbg(4, " dimm->nr_pages = 0x%x\n", dimm->nr_pages);
  87. }
  88. static void edac_mc_dump_csrow(struct csrow_info *csrow)
  89. {
  90. edac_dbg(4, "csrow->csrow_idx = %d\n", csrow->csrow_idx);
  91. edac_dbg(4, " csrow = %p\n", csrow);
  92. edac_dbg(4, " csrow->first_page = 0x%lx\n", csrow->first_page);
  93. edac_dbg(4, " csrow->last_page = 0x%lx\n", csrow->last_page);
  94. edac_dbg(4, " csrow->page_mask = 0x%lx\n", csrow->page_mask);
  95. edac_dbg(4, " csrow->nr_channels = %d\n", csrow->nr_channels);
  96. edac_dbg(4, " csrow->channels = %p\n", csrow->channels);
  97. edac_dbg(4, " csrow->mci = %p\n", csrow->mci);
  98. }
  99. static void edac_mc_dump_mci(struct mem_ctl_info *mci)
  100. {
  101. edac_dbg(3, "\tmci = %p\n", mci);
  102. edac_dbg(3, "\tmci->mtype_cap = %lx\n", mci->mtype_cap);
  103. edac_dbg(3, "\tmci->edac_ctl_cap = %lx\n", mci->edac_ctl_cap);
  104. edac_dbg(3, "\tmci->edac_cap = %lx\n", mci->edac_cap);
  105. edac_dbg(4, "\tmci->edac_check = %p\n", mci->edac_check);
  106. edac_dbg(3, "\tmci->nr_csrows = %d, csrows = %p\n",
  107. mci->nr_csrows, mci->csrows);
  108. edac_dbg(3, "\tmci->nr_dimms = %d, dimms = %p\n",
  109. mci->tot_dimms, mci->dimms);
  110. edac_dbg(3, "\tdev = %p\n", mci->pdev);
  111. edac_dbg(3, "\tmod_name:ctl_name = %s:%s\n",
  112. mci->mod_name, mci->ctl_name);
  113. edac_dbg(3, "\tpvt_info = %p\n\n", mci->pvt_info);
  114. }
  115. #endif /* CONFIG_EDAC_DEBUG */
  116. const char * const edac_mem_types[] = {
  117. [MEM_EMPTY] = "Empty csrow",
  118. [MEM_RESERVED] = "Reserved csrow type",
  119. [MEM_UNKNOWN] = "Unknown csrow type",
  120. [MEM_FPM] = "Fast page mode RAM",
  121. [MEM_EDO] = "Extended data out RAM",
  122. [MEM_BEDO] = "Burst Extended data out RAM",
  123. [MEM_SDR] = "Single data rate SDRAM",
  124. [MEM_RDR] = "Registered single data rate SDRAM",
  125. [MEM_DDR] = "Double data rate SDRAM",
  126. [MEM_RDDR] = "Registered Double data rate SDRAM",
  127. [MEM_RMBS] = "Rambus DRAM",
  128. [MEM_DDR2] = "Unbuffered DDR2 RAM",
  129. [MEM_FB_DDR2] = "Fully buffered DDR2",
  130. [MEM_RDDR2] = "Registered DDR2 RAM",
  131. [MEM_XDR] = "Rambus XDR",
  132. [MEM_DDR3] = "Unbuffered DDR3 RAM",
  133. [MEM_RDDR3] = "Registered DDR3 RAM",
  134. [MEM_LRDDR3] = "Load-Reduced DDR3 RAM",
  135. [MEM_DDR4] = "Unbuffered DDR4 RAM",
  136. [MEM_RDDR4] = "Registered DDR4 RAM",
  137. };
  138. EXPORT_SYMBOL_GPL(edac_mem_types);
  139. /**
  140. * edac_align_ptr - Prepares the pointer offsets for a single-shot allocation
  141. * @p: pointer to a pointer with the memory offset to be used. At
  142. * return, this will be incremented to point to the next offset
  143. * @size: Size of the data structure to be reserved
  144. * @n_elems: Number of elements that should be reserved
  145. *
  146. * If 'size' is a constant, the compiler will optimize this whole function
  147. * down to either a no-op or the addition of a constant to the value of '*p'.
  148. *
  149. * The 'p' pointer is absolutely needed to keep the proper advancing
  150. * further in memory to the proper offsets when allocating the struct along
  151. * with its embedded structs, as edac_device_alloc_ctl_info() does it
  152. * above, for example.
  153. *
  154. * At return, the pointer 'p' will be incremented to be used on a next call
  155. * to this function.
  156. */
  157. void *edac_align_ptr(void **p, unsigned size, int n_elems)
  158. {
  159. unsigned align, r;
  160. void *ptr = *p;
  161. *p += size * n_elems;
  162. /*
  163. * 'p' can possibly be an unaligned item X such that sizeof(X) is
  164. * 'size'. Adjust 'p' so that its alignment is at least as
  165. * stringent as what the compiler would provide for X and return
  166. * the aligned result.
  167. * Here we assume that the alignment of a "long long" is the most
  168. * stringent alignment that the compiler will ever provide by default.
  169. * As far as I know, this is a reasonable assumption.
  170. */
  171. if (size > sizeof(long))
  172. align = sizeof(long long);
  173. else if (size > sizeof(int))
  174. align = sizeof(long);
  175. else if (size > sizeof(short))
  176. align = sizeof(int);
  177. else if (size > sizeof(char))
  178. align = sizeof(short);
  179. else
  180. return (char *)ptr;
  181. r = (unsigned long)p % align;
  182. if (r == 0)
  183. return (char *)ptr;
  184. *p += align - r;
  185. return (void *)(((unsigned long)ptr) + align - r);
  186. }
  187. static void _edac_mc_free(struct mem_ctl_info *mci)
  188. {
  189. int i, chn, row;
  190. struct csrow_info *csr;
  191. const unsigned int tot_dimms = mci->tot_dimms;
  192. const unsigned int tot_channels = mci->num_cschannel;
  193. const unsigned int tot_csrows = mci->nr_csrows;
  194. if (mci->dimms) {
  195. for (i = 0; i < tot_dimms; i++)
  196. kfree(mci->dimms[i]);
  197. kfree(mci->dimms);
  198. }
  199. if (mci->csrows) {
  200. for (row = 0; row < tot_csrows; row++) {
  201. csr = mci->csrows[row];
  202. if (csr) {
  203. if (csr->channels) {
  204. for (chn = 0; chn < tot_channels; chn++)
  205. kfree(csr->channels[chn]);
  206. kfree(csr->channels);
  207. }
  208. kfree(csr);
  209. }
  210. }
  211. kfree(mci->csrows);
  212. }
  213. kfree(mci);
  214. }
  215. /**
  216. * edac_mc_alloc: Allocate and partially fill a struct mem_ctl_info structure
  217. * @mc_num: Memory controller number
  218. * @n_layers: Number of MC hierarchy layers
  219. * layers: Describes each layer as seen by the Memory Controller
  220. * @size_pvt: size of private storage needed
  221. *
  222. *
  223. * Everything is kmalloc'ed as one big chunk - more efficient.
  224. * Only can be used if all structures have the same lifetime - otherwise
  225. * you have to allocate and initialize your own structures.
  226. *
  227. * Use edac_mc_free() to free mc structures allocated by this function.
  228. *
  229. * NOTE: drivers handle multi-rank memories in different ways: in some
  230. * drivers, one multi-rank memory stick is mapped as one entry, while, in
  231. * others, a single multi-rank memory stick would be mapped into several
  232. * entries. Currently, this function will allocate multiple struct dimm_info
  233. * on such scenarios, as grouping the multiple ranks require drivers change.
  234. *
  235. * Returns:
  236. * On failure: NULL
  237. * On success: struct mem_ctl_info pointer
  238. */
  239. struct mem_ctl_info *edac_mc_alloc(unsigned mc_num,
  240. unsigned n_layers,
  241. struct edac_mc_layer *layers,
  242. unsigned sz_pvt)
  243. {
  244. struct mem_ctl_info *mci;
  245. struct edac_mc_layer *layer;
  246. struct csrow_info *csr;
  247. struct rank_info *chan;
  248. struct dimm_info *dimm;
  249. u32 *ce_per_layer[EDAC_MAX_LAYERS], *ue_per_layer[EDAC_MAX_LAYERS];
  250. unsigned pos[EDAC_MAX_LAYERS];
  251. unsigned size, tot_dimms = 1, count = 1;
  252. unsigned tot_csrows = 1, tot_channels = 1, tot_errcount = 0;
  253. void *pvt, *p, *ptr = NULL;
  254. int i, j, row, chn, n, len, off;
  255. bool per_rank = false;
  256. BUG_ON(n_layers > EDAC_MAX_LAYERS || n_layers == 0);
  257. /*
  258. * Calculate the total amount of dimms and csrows/cschannels while
  259. * in the old API emulation mode
  260. */
  261. for (i = 0; i < n_layers; i++) {
  262. tot_dimms *= layers[i].size;
  263. if (layers[i].is_virt_csrow)
  264. tot_csrows *= layers[i].size;
  265. else
  266. tot_channels *= layers[i].size;
  267. if (layers[i].type == EDAC_MC_LAYER_CHIP_SELECT)
  268. per_rank = true;
  269. }
  270. /* Figure out the offsets of the various items from the start of an mc
  271. * structure. We want the alignment of each item to be at least as
  272. * stringent as what the compiler would provide if we could simply
  273. * hardcode everything into a single struct.
  274. */
  275. mci = edac_align_ptr(&ptr, sizeof(*mci), 1);
  276. layer = edac_align_ptr(&ptr, sizeof(*layer), n_layers);
  277. for (i = 0; i < n_layers; i++) {
  278. count *= layers[i].size;
  279. edac_dbg(4, "errcount layer %d size %d\n", i, count);
  280. ce_per_layer[i] = edac_align_ptr(&ptr, sizeof(u32), count);
  281. ue_per_layer[i] = edac_align_ptr(&ptr, sizeof(u32), count);
  282. tot_errcount += 2 * count;
  283. }
  284. edac_dbg(4, "allocating %d error counters\n", tot_errcount);
  285. pvt = edac_align_ptr(&ptr, sz_pvt, 1);
  286. size = ((unsigned long)pvt) + sz_pvt;
  287. edac_dbg(1, "allocating %u bytes for mci data (%d %s, %d csrows/channels)\n",
  288. size,
  289. tot_dimms,
  290. per_rank ? "ranks" : "dimms",
  291. tot_csrows * tot_channels);
  292. mci = kzalloc(size, GFP_KERNEL);
  293. if (mci == NULL)
  294. return NULL;
  295. /* Adjust pointers so they point within the memory we just allocated
  296. * rather than an imaginary chunk of memory located at address 0.
  297. */
  298. layer = (struct edac_mc_layer *)(((char *)mci) + ((unsigned long)layer));
  299. for (i = 0; i < n_layers; i++) {
  300. mci->ce_per_layer[i] = (u32 *)((char *)mci + ((unsigned long)ce_per_layer[i]));
  301. mci->ue_per_layer[i] = (u32 *)((char *)mci + ((unsigned long)ue_per_layer[i]));
  302. }
  303. pvt = sz_pvt ? (((char *)mci) + ((unsigned long)pvt)) : NULL;
  304. /* setup index and various internal pointers */
  305. mci->mc_idx = mc_num;
  306. mci->tot_dimms = tot_dimms;
  307. mci->pvt_info = pvt;
  308. mci->n_layers = n_layers;
  309. mci->layers = layer;
  310. memcpy(mci->layers, layers, sizeof(*layer) * n_layers);
  311. mci->nr_csrows = tot_csrows;
  312. mci->num_cschannel = tot_channels;
  313. mci->csbased = per_rank;
  314. /*
  315. * Alocate and fill the csrow/channels structs
  316. */
  317. mci->csrows = kcalloc(tot_csrows, sizeof(*mci->csrows), GFP_KERNEL);
  318. if (!mci->csrows)
  319. goto error;
  320. for (row = 0; row < tot_csrows; row++) {
  321. csr = kzalloc(sizeof(**mci->csrows), GFP_KERNEL);
  322. if (!csr)
  323. goto error;
  324. mci->csrows[row] = csr;
  325. csr->csrow_idx = row;
  326. csr->mci = mci;
  327. csr->nr_channels = tot_channels;
  328. csr->channels = kcalloc(tot_channels, sizeof(*csr->channels),
  329. GFP_KERNEL);
  330. if (!csr->channels)
  331. goto error;
  332. for (chn = 0; chn < tot_channels; chn++) {
  333. chan = kzalloc(sizeof(**csr->channels), GFP_KERNEL);
  334. if (!chan)
  335. goto error;
  336. csr->channels[chn] = chan;
  337. chan->chan_idx = chn;
  338. chan->csrow = csr;
  339. }
  340. }
  341. /*
  342. * Allocate and fill the dimm structs
  343. */
  344. mci->dimms = kcalloc(tot_dimms, sizeof(*mci->dimms), GFP_KERNEL);
  345. if (!mci->dimms)
  346. goto error;
  347. memset(&pos, 0, sizeof(pos));
  348. row = 0;
  349. chn = 0;
  350. for (i = 0; i < tot_dimms; i++) {
  351. chan = mci->csrows[row]->channels[chn];
  352. off = EDAC_DIMM_OFF(layer, n_layers, pos[0], pos[1], pos[2]);
  353. if (off < 0 || off >= tot_dimms) {
  354. edac_mc_printk(mci, KERN_ERR, "EDAC core bug: EDAC_DIMM_OFF is trying to do an illegal data access\n");
  355. goto error;
  356. }
  357. dimm = kzalloc(sizeof(**mci->dimms), GFP_KERNEL);
  358. if (!dimm)
  359. goto error;
  360. mci->dimms[off] = dimm;
  361. dimm->mci = mci;
  362. /*
  363. * Copy DIMM location and initialize it.
  364. */
  365. len = sizeof(dimm->label);
  366. p = dimm->label;
  367. n = snprintf(p, len, "mc#%u", mc_num);
  368. p += n;
  369. len -= n;
  370. for (j = 0; j < n_layers; j++) {
  371. n = snprintf(p, len, "%s#%u",
  372. edac_layer_name[layers[j].type],
  373. pos[j]);
  374. p += n;
  375. len -= n;
  376. dimm->location[j] = pos[j];
  377. if (len <= 0)
  378. break;
  379. }
  380. /* Link it to the csrows old API data */
  381. chan->dimm = dimm;
  382. dimm->csrow = row;
  383. dimm->cschannel = chn;
  384. /* Increment csrow location */
  385. if (layers[0].is_virt_csrow) {
  386. chn++;
  387. if (chn == tot_channels) {
  388. chn = 0;
  389. row++;
  390. }
  391. } else {
  392. row++;
  393. if (row == tot_csrows) {
  394. row = 0;
  395. chn++;
  396. }
  397. }
  398. /* Increment dimm location */
  399. for (j = n_layers - 1; j >= 0; j--) {
  400. pos[j]++;
  401. if (pos[j] < layers[j].size)
  402. break;
  403. pos[j] = 0;
  404. }
  405. }
  406. mci->op_state = OP_ALLOC;
  407. return mci;
  408. error:
  409. _edac_mc_free(mci);
  410. return NULL;
  411. }
  412. EXPORT_SYMBOL_GPL(edac_mc_alloc);
  413. /**
  414. * edac_mc_free
  415. * 'Free' a previously allocated 'mci' structure
  416. * @mci: pointer to a struct mem_ctl_info structure
  417. */
  418. void edac_mc_free(struct mem_ctl_info *mci)
  419. {
  420. edac_dbg(1, "\n");
  421. /* If we're not yet registered with sysfs free only what was allocated
  422. * in edac_mc_alloc().
  423. */
  424. if (!device_is_registered(&mci->dev)) {
  425. _edac_mc_free(mci);
  426. return;
  427. }
  428. /* the mci instance is freed here, when the sysfs object is dropped */
  429. edac_unregister_sysfs(mci);
  430. }
  431. EXPORT_SYMBOL_GPL(edac_mc_free);
  432. /**
  433. * find_mci_by_dev
  434. *
  435. * scan list of controllers looking for the one that manages
  436. * the 'dev' device
  437. * @dev: pointer to a struct device related with the MCI
  438. */
  439. struct mem_ctl_info *find_mci_by_dev(struct device *dev)
  440. {
  441. struct mem_ctl_info *mci;
  442. struct list_head *item;
  443. edac_dbg(3, "\n");
  444. list_for_each(item, &mc_devices) {
  445. mci = list_entry(item, struct mem_ctl_info, link);
  446. if (mci->pdev == dev)
  447. return mci;
  448. }
  449. return NULL;
  450. }
  451. EXPORT_SYMBOL_GPL(find_mci_by_dev);
  452. /*
  453. * handler for EDAC to check if NMI type handler has asserted interrupt
  454. */
  455. static int edac_mc_assert_error_check_and_clear(void)
  456. {
  457. int old_state;
  458. if (edac_op_state == EDAC_OPSTATE_POLL)
  459. return 1;
  460. old_state = edac_err_assert;
  461. edac_err_assert = 0;
  462. return old_state;
  463. }
  464. /*
  465. * edac_mc_workq_function
  466. * performs the operation scheduled by a workq request
  467. */
  468. static void edac_mc_workq_function(struct work_struct *work_req)
  469. {
  470. struct delayed_work *d_work = to_delayed_work(work_req);
  471. struct mem_ctl_info *mci = to_edac_mem_ctl_work(d_work);
  472. mutex_lock(&mem_ctls_mutex);
  473. if (mci->op_state != OP_RUNNING_POLL) {
  474. mutex_unlock(&mem_ctls_mutex);
  475. return;
  476. }
  477. if (edac_mc_assert_error_check_and_clear())
  478. mci->edac_check(mci);
  479. mutex_unlock(&mem_ctls_mutex);
  480. /* Queue ourselves again. */
  481. edac_queue_work(&mci->work, msecs_to_jiffies(edac_mc_get_poll_msec()));
  482. }
  483. /*
  484. * edac_mc_reset_delay_period(unsigned long value)
  485. *
  486. * user space has updated our poll period value, need to
  487. * reset our workq delays
  488. */
  489. void edac_mc_reset_delay_period(unsigned long value)
  490. {
  491. struct mem_ctl_info *mci;
  492. struct list_head *item;
  493. mutex_lock(&mem_ctls_mutex);
  494. list_for_each(item, &mc_devices) {
  495. mci = list_entry(item, struct mem_ctl_info, link);
  496. edac_mod_work(&mci->work, value);
  497. }
  498. mutex_unlock(&mem_ctls_mutex);
  499. }
  500. /* Return 0 on success, 1 on failure.
  501. * Before calling this function, caller must
  502. * assign a unique value to mci->mc_idx.
  503. *
  504. * locking model:
  505. *
  506. * called with the mem_ctls_mutex lock held
  507. */
  508. static int add_mc_to_global_list(struct mem_ctl_info *mci)
  509. {
  510. struct list_head *item, *insert_before;
  511. struct mem_ctl_info *p;
  512. insert_before = &mc_devices;
  513. p = find_mci_by_dev(mci->pdev);
  514. if (unlikely(p != NULL))
  515. goto fail0;
  516. list_for_each(item, &mc_devices) {
  517. p = list_entry(item, struct mem_ctl_info, link);
  518. if (p->mc_idx >= mci->mc_idx) {
  519. if (unlikely(p->mc_idx == mci->mc_idx))
  520. goto fail1;
  521. insert_before = item;
  522. break;
  523. }
  524. }
  525. list_add_tail_rcu(&mci->link, insert_before);
  526. atomic_inc(&edac_handlers);
  527. return 0;
  528. fail0:
  529. edac_printk(KERN_WARNING, EDAC_MC,
  530. "%s (%s) %s %s already assigned %d\n", dev_name(p->pdev),
  531. edac_dev_name(mci), p->mod_name, p->ctl_name, p->mc_idx);
  532. return 1;
  533. fail1:
  534. edac_printk(KERN_WARNING, EDAC_MC,
  535. "bug in low-level driver: attempt to assign\n"
  536. " duplicate mc_idx %d in %s()\n", p->mc_idx, __func__);
  537. return 1;
  538. }
  539. static int del_mc_from_global_list(struct mem_ctl_info *mci)
  540. {
  541. int handlers = atomic_dec_return(&edac_handlers);
  542. list_del_rcu(&mci->link);
  543. /* these are for safe removal of devices from global list while
  544. * NMI handlers may be traversing list
  545. */
  546. synchronize_rcu();
  547. INIT_LIST_HEAD(&mci->link);
  548. return handlers;
  549. }
  550. /**
  551. * edac_mc_find: Search for a mem_ctl_info structure whose index is 'idx'.
  552. *
  553. * If found, return a pointer to the structure.
  554. * Else return NULL.
  555. *
  556. * Caller must hold mem_ctls_mutex.
  557. */
  558. struct mem_ctl_info *edac_mc_find(int idx)
  559. {
  560. struct list_head *item;
  561. struct mem_ctl_info *mci;
  562. list_for_each(item, &mc_devices) {
  563. mci = list_entry(item, struct mem_ctl_info, link);
  564. if (mci->mc_idx >= idx) {
  565. if (mci->mc_idx == idx)
  566. return mci;
  567. break;
  568. }
  569. }
  570. return NULL;
  571. }
  572. EXPORT_SYMBOL(edac_mc_find);
  573. /**
  574. * edac_mc_add_mc_with_groups: Insert the 'mci' structure into the mci
  575. * global list and create sysfs entries associated with mci structure
  576. * @mci: pointer to the mci structure to be added to the list
  577. * @groups: optional attribute groups for the driver-specific sysfs entries
  578. *
  579. * Return:
  580. * 0 Success
  581. * !0 Failure
  582. */
  583. /* FIXME - should a warning be printed if no error detection? correction? */
  584. int edac_mc_add_mc_with_groups(struct mem_ctl_info *mci,
  585. const struct attribute_group **groups)
  586. {
  587. int ret = -EINVAL;
  588. edac_dbg(0, "\n");
  589. if (mci->mc_idx >= EDAC_MAX_MCS) {
  590. pr_warn_once("Too many memory controllers: %d\n", mci->mc_idx);
  591. return -ENODEV;
  592. }
  593. #ifdef CONFIG_EDAC_DEBUG
  594. if (edac_debug_level >= 3)
  595. edac_mc_dump_mci(mci);
  596. if (edac_debug_level >= 4) {
  597. int i;
  598. for (i = 0; i < mci->nr_csrows; i++) {
  599. struct csrow_info *csrow = mci->csrows[i];
  600. u32 nr_pages = 0;
  601. int j;
  602. for (j = 0; j < csrow->nr_channels; j++)
  603. nr_pages += csrow->channels[j]->dimm->nr_pages;
  604. if (!nr_pages)
  605. continue;
  606. edac_mc_dump_csrow(csrow);
  607. for (j = 0; j < csrow->nr_channels; j++)
  608. if (csrow->channels[j]->dimm->nr_pages)
  609. edac_mc_dump_channel(csrow->channels[j]);
  610. }
  611. for (i = 0; i < mci->tot_dimms; i++)
  612. if (mci->dimms[i]->nr_pages)
  613. edac_mc_dump_dimm(mci->dimms[i], i);
  614. }
  615. #endif
  616. mutex_lock(&mem_ctls_mutex);
  617. if (edac_mc_owner && edac_mc_owner != mci->mod_name) {
  618. ret = -EPERM;
  619. goto fail0;
  620. }
  621. if (add_mc_to_global_list(mci))
  622. goto fail0;
  623. /* set load time so that error rate can be tracked */
  624. mci->start_time = jiffies;
  625. mci->bus = &mc_bus[mci->mc_idx];
  626. if (edac_create_sysfs_mci_device(mci, groups)) {
  627. edac_mc_printk(mci, KERN_WARNING,
  628. "failed to create sysfs device\n");
  629. goto fail1;
  630. }
  631. if (mci->edac_check) {
  632. mci->op_state = OP_RUNNING_POLL;
  633. INIT_DELAYED_WORK(&mci->work, edac_mc_workq_function);
  634. edac_queue_work(&mci->work, msecs_to_jiffies(edac_mc_get_poll_msec()));
  635. } else {
  636. mci->op_state = OP_RUNNING_INTERRUPT;
  637. }
  638. /* Report action taken */
  639. edac_mc_printk(mci, KERN_INFO,
  640. "Giving out device to module %s controller %s: DEV %s (%s)\n",
  641. mci->mod_name, mci->ctl_name, mci->dev_name,
  642. edac_op_state_to_string(mci->op_state));
  643. edac_mc_owner = mci->mod_name;
  644. mutex_unlock(&mem_ctls_mutex);
  645. return 0;
  646. fail1:
  647. del_mc_from_global_list(mci);
  648. fail0:
  649. mutex_unlock(&mem_ctls_mutex);
  650. return ret;
  651. }
  652. EXPORT_SYMBOL_GPL(edac_mc_add_mc_with_groups);
  653. /**
  654. * edac_mc_del_mc: Remove sysfs entries for specified mci structure and
  655. * remove mci structure from global list
  656. * @pdev: Pointer to 'struct device' representing mci structure to remove.
  657. *
  658. * Return pointer to removed mci structure, or NULL if device not found.
  659. */
  660. struct mem_ctl_info *edac_mc_del_mc(struct device *dev)
  661. {
  662. struct mem_ctl_info *mci;
  663. edac_dbg(0, "\n");
  664. mutex_lock(&mem_ctls_mutex);
  665. /* find the requested mci struct in the global list */
  666. mci = find_mci_by_dev(dev);
  667. if (mci == NULL) {
  668. mutex_unlock(&mem_ctls_mutex);
  669. return NULL;
  670. }
  671. /* mark MCI offline: */
  672. mci->op_state = OP_OFFLINE;
  673. if (!del_mc_from_global_list(mci))
  674. edac_mc_owner = NULL;
  675. mutex_unlock(&mem_ctls_mutex);
  676. if (mci->edac_check)
  677. edac_stop_work(&mci->work);
  678. /* remove from sysfs */
  679. edac_remove_sysfs_mci_device(mci);
  680. edac_printk(KERN_INFO, EDAC_MC,
  681. "Removed device %d for %s %s: DEV %s\n", mci->mc_idx,
  682. mci->mod_name, mci->ctl_name, edac_dev_name(mci));
  683. return mci;
  684. }
  685. EXPORT_SYMBOL_GPL(edac_mc_del_mc);
  686. static void edac_mc_scrub_block(unsigned long page, unsigned long offset,
  687. u32 size)
  688. {
  689. struct page *pg;
  690. void *virt_addr;
  691. unsigned long flags = 0;
  692. edac_dbg(3, "\n");
  693. /* ECC error page was not in our memory. Ignore it. */
  694. if (!pfn_valid(page))
  695. return;
  696. /* Find the actual page structure then map it and fix */
  697. pg = pfn_to_page(page);
  698. if (PageHighMem(pg))
  699. local_irq_save(flags);
  700. virt_addr = kmap_atomic(pg);
  701. /* Perform architecture specific atomic scrub operation */
  702. edac_atomic_scrub(virt_addr + offset, size);
  703. /* Unmap and complete */
  704. kunmap_atomic(virt_addr);
  705. if (PageHighMem(pg))
  706. local_irq_restore(flags);
  707. }
  708. /* FIXME - should return -1 */
  709. int edac_mc_find_csrow_by_page(struct mem_ctl_info *mci, unsigned long page)
  710. {
  711. struct csrow_info **csrows = mci->csrows;
  712. int row, i, j, n;
  713. edac_dbg(1, "MC%d: 0x%lx\n", mci->mc_idx, page);
  714. row = -1;
  715. for (i = 0; i < mci->nr_csrows; i++) {
  716. struct csrow_info *csrow = csrows[i];
  717. n = 0;
  718. for (j = 0; j < csrow->nr_channels; j++) {
  719. struct dimm_info *dimm = csrow->channels[j]->dimm;
  720. n += dimm->nr_pages;
  721. }
  722. if (n == 0)
  723. continue;
  724. edac_dbg(3, "MC%d: first(0x%lx) page(0x%lx) last(0x%lx) mask(0x%lx)\n",
  725. mci->mc_idx,
  726. csrow->first_page, page, csrow->last_page,
  727. csrow->page_mask);
  728. if ((page >= csrow->first_page) &&
  729. (page <= csrow->last_page) &&
  730. ((page & csrow->page_mask) ==
  731. (csrow->first_page & csrow->page_mask))) {
  732. row = i;
  733. break;
  734. }
  735. }
  736. if (row == -1)
  737. edac_mc_printk(mci, KERN_ERR,
  738. "could not look up page error address %lx\n",
  739. (unsigned long)page);
  740. return row;
  741. }
  742. EXPORT_SYMBOL_GPL(edac_mc_find_csrow_by_page);
  743. const char *edac_layer_name[] = {
  744. [EDAC_MC_LAYER_BRANCH] = "branch",
  745. [EDAC_MC_LAYER_CHANNEL] = "channel",
  746. [EDAC_MC_LAYER_SLOT] = "slot",
  747. [EDAC_MC_LAYER_CHIP_SELECT] = "csrow",
  748. [EDAC_MC_LAYER_ALL_MEM] = "memory",
  749. };
  750. EXPORT_SYMBOL_GPL(edac_layer_name);
  751. static void edac_inc_ce_error(struct mem_ctl_info *mci,
  752. bool enable_per_layer_report,
  753. const int pos[EDAC_MAX_LAYERS],
  754. const u16 count)
  755. {
  756. int i, index = 0;
  757. mci->ce_mc += count;
  758. if (!enable_per_layer_report) {
  759. mci->ce_noinfo_count += count;
  760. return;
  761. }
  762. for (i = 0; i < mci->n_layers; i++) {
  763. if (pos[i] < 0)
  764. break;
  765. index += pos[i];
  766. mci->ce_per_layer[i][index] += count;
  767. if (i < mci->n_layers - 1)
  768. index *= mci->layers[i + 1].size;
  769. }
  770. }
  771. static void edac_inc_ue_error(struct mem_ctl_info *mci,
  772. bool enable_per_layer_report,
  773. const int pos[EDAC_MAX_LAYERS],
  774. const u16 count)
  775. {
  776. int i, index = 0;
  777. mci->ue_mc += count;
  778. if (!enable_per_layer_report) {
  779. mci->ce_noinfo_count += count;
  780. return;
  781. }
  782. for (i = 0; i < mci->n_layers; i++) {
  783. if (pos[i] < 0)
  784. break;
  785. index += pos[i];
  786. mci->ue_per_layer[i][index] += count;
  787. if (i < mci->n_layers - 1)
  788. index *= mci->layers[i + 1].size;
  789. }
  790. }
  791. static void edac_ce_error(struct mem_ctl_info *mci,
  792. const u16 error_count,
  793. const int pos[EDAC_MAX_LAYERS],
  794. const char *msg,
  795. const char *location,
  796. const char *label,
  797. const char *detail,
  798. const char *other_detail,
  799. const bool enable_per_layer_report,
  800. const unsigned long page_frame_number,
  801. const unsigned long offset_in_page,
  802. long grain)
  803. {
  804. unsigned long remapped_page;
  805. char *msg_aux = "";
  806. if (*msg)
  807. msg_aux = " ";
  808. if (edac_mc_get_log_ce()) {
  809. if (other_detail && *other_detail)
  810. edac_mc_printk(mci, KERN_WARNING,
  811. "%d CE %s%son %s (%s %s - %s)\n",
  812. error_count, msg, msg_aux, label,
  813. location, detail, other_detail);
  814. else
  815. edac_mc_printk(mci, KERN_WARNING,
  816. "%d CE %s%son %s (%s %s)\n",
  817. error_count, msg, msg_aux, label,
  818. location, detail);
  819. }
  820. edac_inc_ce_error(mci, enable_per_layer_report, pos, error_count);
  821. if (mci->scrub_mode == SCRUB_SW_SRC) {
  822. /*
  823. * Some memory controllers (called MCs below) can remap
  824. * memory so that it is still available at a different
  825. * address when PCI devices map into memory.
  826. * MC's that can't do this, lose the memory where PCI
  827. * devices are mapped. This mapping is MC-dependent
  828. * and so we call back into the MC driver for it to
  829. * map the MC page to a physical (CPU) page which can
  830. * then be mapped to a virtual page - which can then
  831. * be scrubbed.
  832. */
  833. remapped_page = mci->ctl_page_to_phys ?
  834. mci->ctl_page_to_phys(mci, page_frame_number) :
  835. page_frame_number;
  836. edac_mc_scrub_block(remapped_page,
  837. offset_in_page, grain);
  838. }
  839. }
  840. static void edac_ue_error(struct mem_ctl_info *mci,
  841. const u16 error_count,
  842. const int pos[EDAC_MAX_LAYERS],
  843. const char *msg,
  844. const char *location,
  845. const char *label,
  846. const char *detail,
  847. const char *other_detail,
  848. const bool enable_per_layer_report)
  849. {
  850. char *msg_aux = "";
  851. if (*msg)
  852. msg_aux = " ";
  853. if (edac_mc_get_log_ue()) {
  854. if (other_detail && *other_detail)
  855. edac_mc_printk(mci, KERN_WARNING,
  856. "%d UE %s%son %s (%s %s - %s)\n",
  857. error_count, msg, msg_aux, label,
  858. location, detail, other_detail);
  859. else
  860. edac_mc_printk(mci, KERN_WARNING,
  861. "%d UE %s%son %s (%s %s)\n",
  862. error_count, msg, msg_aux, label,
  863. location, detail);
  864. }
  865. if (edac_mc_get_panic_on_ue()) {
  866. if (other_detail && *other_detail)
  867. panic("UE %s%son %s (%s%s - %s)\n",
  868. msg, msg_aux, label, location, detail, other_detail);
  869. else
  870. panic("UE %s%son %s (%s%s)\n",
  871. msg, msg_aux, label, location, detail);
  872. }
  873. edac_inc_ue_error(mci, enable_per_layer_report, pos, error_count);
  874. }
  875. /**
  876. * edac_raw_mc_handle_error - reports a memory event to userspace without doing
  877. * anything to discover the error location
  878. *
  879. * @type: severity of the error (CE/UE/Fatal)
  880. * @mci: a struct mem_ctl_info pointer
  881. * @e: error description
  882. *
  883. * This raw function is used internally by edac_mc_handle_error(). It should
  884. * only be called directly when the hardware error come directly from BIOS,
  885. * like in the case of APEI GHES driver.
  886. */
  887. void edac_raw_mc_handle_error(const enum hw_event_mc_err_type type,
  888. struct mem_ctl_info *mci,
  889. struct edac_raw_error_desc *e)
  890. {
  891. char detail[80];
  892. int pos[EDAC_MAX_LAYERS] = { e->top_layer, e->mid_layer, e->low_layer };
  893. /* Memory type dependent details about the error */
  894. if (type == HW_EVENT_ERR_CORRECTED) {
  895. snprintf(detail, sizeof(detail),
  896. "page:0x%lx offset:0x%lx grain:%ld syndrome:0x%lx",
  897. e->page_frame_number, e->offset_in_page,
  898. e->grain, e->syndrome);
  899. edac_ce_error(mci, e->error_count, pos, e->msg, e->location, e->label,
  900. detail, e->other_detail, e->enable_per_layer_report,
  901. e->page_frame_number, e->offset_in_page, e->grain);
  902. } else {
  903. snprintf(detail, sizeof(detail),
  904. "page:0x%lx offset:0x%lx grain:%ld",
  905. e->page_frame_number, e->offset_in_page, e->grain);
  906. edac_ue_error(mci, e->error_count, pos, e->msg, e->location, e->label,
  907. detail, e->other_detail, e->enable_per_layer_report);
  908. }
  909. }
  910. EXPORT_SYMBOL_GPL(edac_raw_mc_handle_error);
  911. /**
  912. * edac_mc_handle_error - reports a memory event to userspace
  913. *
  914. * @type: severity of the error (CE/UE/Fatal)
  915. * @mci: a struct mem_ctl_info pointer
  916. * @error_count: Number of errors of the same type
  917. * @page_frame_number: mem page where the error occurred
  918. * @offset_in_page: offset of the error inside the page
  919. * @syndrome: ECC syndrome
  920. * @top_layer: Memory layer[0] position
  921. * @mid_layer: Memory layer[1] position
  922. * @low_layer: Memory layer[2] position
  923. * @msg: Message meaningful to the end users that
  924. * explains the event
  925. * @other_detail: Technical details about the event that
  926. * may help hardware manufacturers and
  927. * EDAC developers to analyse the event
  928. */
  929. void edac_mc_handle_error(const enum hw_event_mc_err_type type,
  930. struct mem_ctl_info *mci,
  931. const u16 error_count,
  932. const unsigned long page_frame_number,
  933. const unsigned long offset_in_page,
  934. const unsigned long syndrome,
  935. const int top_layer,
  936. const int mid_layer,
  937. const int low_layer,
  938. const char *msg,
  939. const char *other_detail)
  940. {
  941. char *p;
  942. int row = -1, chan = -1;
  943. int pos[EDAC_MAX_LAYERS] = { top_layer, mid_layer, low_layer };
  944. int i, n_labels = 0;
  945. u8 grain_bits;
  946. struct edac_raw_error_desc *e = &mci->error_desc;
  947. edac_dbg(3, "MC%d\n", mci->mc_idx);
  948. /* Fills the error report buffer */
  949. memset(e, 0, sizeof (*e));
  950. e->error_count = error_count;
  951. e->top_layer = top_layer;
  952. e->mid_layer = mid_layer;
  953. e->low_layer = low_layer;
  954. e->page_frame_number = page_frame_number;
  955. e->offset_in_page = offset_in_page;
  956. e->syndrome = syndrome;
  957. e->msg = msg;
  958. e->other_detail = other_detail;
  959. /*
  960. * Check if the event report is consistent and if the memory
  961. * location is known. If it is known, enable_per_layer_report will be
  962. * true, the DIMM(s) label info will be filled and the per-layer
  963. * error counters will be incremented.
  964. */
  965. for (i = 0; i < mci->n_layers; i++) {
  966. if (pos[i] >= (int)mci->layers[i].size) {
  967. edac_mc_printk(mci, KERN_ERR,
  968. "INTERNAL ERROR: %s value is out of range (%d >= %d)\n",
  969. edac_layer_name[mci->layers[i].type],
  970. pos[i], mci->layers[i].size);
  971. /*
  972. * Instead of just returning it, let's use what's
  973. * known about the error. The increment routines and
  974. * the DIMM filter logic will do the right thing by
  975. * pointing the likely damaged DIMMs.
  976. */
  977. pos[i] = -1;
  978. }
  979. if (pos[i] >= 0)
  980. e->enable_per_layer_report = true;
  981. }
  982. /*
  983. * Get the dimm label/grain that applies to the match criteria.
  984. * As the error algorithm may not be able to point to just one memory
  985. * stick, the logic here will get all possible labels that could
  986. * pottentially be affected by the error.
  987. * On FB-DIMM memory controllers, for uncorrected errors, it is common
  988. * to have only the MC channel and the MC dimm (also called "branch")
  989. * but the channel is not known, as the memory is arranged in pairs,
  990. * where each memory belongs to a separate channel within the same
  991. * branch.
  992. */
  993. p = e->label;
  994. *p = '\0';
  995. for (i = 0; i < mci->tot_dimms; i++) {
  996. struct dimm_info *dimm = mci->dimms[i];
  997. if (top_layer >= 0 && top_layer != dimm->location[0])
  998. continue;
  999. if (mid_layer >= 0 && mid_layer != dimm->location[1])
  1000. continue;
  1001. if (low_layer >= 0 && low_layer != dimm->location[2])
  1002. continue;
  1003. /* get the max grain, over the error match range */
  1004. if (dimm->grain > e->grain)
  1005. e->grain = dimm->grain;
  1006. /*
  1007. * If the error is memory-controller wide, there's no need to
  1008. * seek for the affected DIMMs because the whole
  1009. * channel/memory controller/... may be affected.
  1010. * Also, don't show errors for empty DIMM slots.
  1011. */
  1012. if (e->enable_per_layer_report && dimm->nr_pages) {
  1013. if (n_labels >= EDAC_MAX_LABELS) {
  1014. e->enable_per_layer_report = false;
  1015. break;
  1016. }
  1017. n_labels++;
  1018. if (p != e->label) {
  1019. strcpy(p, OTHER_LABEL);
  1020. p += strlen(OTHER_LABEL);
  1021. }
  1022. strcpy(p, dimm->label);
  1023. p += strlen(p);
  1024. *p = '\0';
  1025. /*
  1026. * get csrow/channel of the DIMM, in order to allow
  1027. * incrementing the compat API counters
  1028. */
  1029. edac_dbg(4, "%s csrows map: (%d,%d)\n",
  1030. mci->csbased ? "rank" : "dimm",
  1031. dimm->csrow, dimm->cschannel);
  1032. if (row == -1)
  1033. row = dimm->csrow;
  1034. else if (row >= 0 && row != dimm->csrow)
  1035. row = -2;
  1036. if (chan == -1)
  1037. chan = dimm->cschannel;
  1038. else if (chan >= 0 && chan != dimm->cschannel)
  1039. chan = -2;
  1040. }
  1041. }
  1042. if (!e->enable_per_layer_report) {
  1043. strcpy(e->label, "any memory");
  1044. } else {
  1045. edac_dbg(4, "csrow/channel to increment: (%d,%d)\n", row, chan);
  1046. if (p == e->label)
  1047. strcpy(e->label, "unknown memory");
  1048. if (type == HW_EVENT_ERR_CORRECTED) {
  1049. if (row >= 0) {
  1050. mci->csrows[row]->ce_count += error_count;
  1051. if (chan >= 0)
  1052. mci->csrows[row]->channels[chan]->ce_count += error_count;
  1053. }
  1054. } else
  1055. if (row >= 0)
  1056. mci->csrows[row]->ue_count += error_count;
  1057. }
  1058. /* Fill the RAM location data */
  1059. p = e->location;
  1060. for (i = 0; i < mci->n_layers; i++) {
  1061. if (pos[i] < 0)
  1062. continue;
  1063. p += sprintf(p, "%s:%d ",
  1064. edac_layer_name[mci->layers[i].type],
  1065. pos[i]);
  1066. }
  1067. if (p > e->location)
  1068. *(p - 1) = '\0';
  1069. /* Report the error via the trace interface */
  1070. grain_bits = fls_long(e->grain) + 1;
  1071. trace_mc_event(type, e->msg, e->label, e->error_count,
  1072. mci->mc_idx, e->top_layer, e->mid_layer, e->low_layer,
  1073. (e->page_frame_number << PAGE_SHIFT) | e->offset_in_page,
  1074. grain_bits, e->syndrome, e->other_detail);
  1075. edac_raw_mc_handle_error(type, mci, e);
  1076. }
  1077. EXPORT_SYMBOL_GPL(edac_mc_handle_error);