r82600_edac.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. /*
  2. * Radisys 82600 Embedded chipset Memory Controller kernel module
  3. * (C) 2005 EADS Astrium
  4. * This file may be distributed under the terms of the
  5. * GNU General Public License.
  6. *
  7. * Written by Tim Small <tim@buttersideup.com>, based on work by Thayne
  8. * Harbaugh, Dan Hollis <goemon at anime dot net> and others.
  9. *
  10. * $Id: edac_r82600.c,v 1.1.2.6 2005/10/05 00:43:44 dsp_llnl Exp $
  11. *
  12. * Written with reference to 82600 High Integration Dual PCI System
  13. * Controller Data Book:
  14. * http://www.radisys.com/files/support_downloads/007-01277-0002.82600DataBook.pdf
  15. * references to this document given in []
  16. */
  17. #include <linux/module.h>
  18. #include <linux/init.h>
  19. #include <linux/pci.h>
  20. #include <linux/pci_ids.h>
  21. #include <linux/slab.h>
  22. #include "edac_mc.h"
  23. #define R82600_REVISION " Ver: 2.0.1 " __DATE__
  24. #define EDAC_MOD_STR "r82600_edac"
  25. #define r82600_printk(level, fmt, arg...) \
  26. edac_printk(level, "r82600", fmt, ##arg)
  27. #define r82600_mc_printk(mci, level, fmt, arg...) \
  28. edac_mc_chipset_printk(mci, level, "r82600", fmt, ##arg)
  29. /* Radisys say "The 82600 integrates a main memory SDRAM controller that
  30. * supports up to four banks of memory. The four banks can support a mix of
  31. * sizes of 64 bit wide (72 bits with ECC) Synchronous DRAM (SDRAM) DIMMs,
  32. * each of which can be any size from 16MB to 512MB. Both registered (control
  33. * signals buffered) and unbuffered DIMM types are supported. Mixing of
  34. * registered and unbuffered DIMMs as well as mixing of ECC and non-ECC DIMMs
  35. * is not allowed. The 82600 SDRAM interface operates at the same frequency as
  36. * the CPU bus, 66MHz, 100MHz or 133MHz."
  37. */
  38. #define R82600_NR_CSROWS 4
  39. #define R82600_NR_CHANS 1
  40. #define R82600_NR_DIMMS 4
  41. #define R82600_BRIDGE_ID 0x8200
  42. /* Radisys 82600 register addresses - device 0 function 0 - PCI bridge */
  43. #define R82600_DRAMC 0x57 /* Various SDRAM related control bits
  44. * all bits are R/W
  45. *
  46. * 7 SDRAM ISA Hole Enable
  47. * 6 Flash Page Mode Enable
  48. * 5 ECC Enable: 1=ECC 0=noECC
  49. * 4 DRAM DIMM Type: 1=
  50. * 3 BIOS Alias Disable
  51. * 2 SDRAM BIOS Flash Write Enable
  52. * 1:0 SDRAM Refresh Rate: 00=Disabled
  53. * 01=7.8usec (256Mbit SDRAMs)
  54. * 10=15.6us 11=125usec
  55. */
  56. #define R82600_SDRAMC 0x76 /* "SDRAM Control Register"
  57. * More SDRAM related control bits
  58. * all bits are R/W
  59. *
  60. * 15:8 Reserved.
  61. *
  62. * 7:5 Special SDRAM Mode Select
  63. *
  64. * 4 Force ECC
  65. *
  66. * 1=Drive ECC bits to 0 during
  67. * write cycles (i.e. ECC test mode)
  68. *
  69. * 0=Normal ECC functioning
  70. *
  71. * 3 Enhanced Paging Enable
  72. *
  73. * 2 CAS# Latency 0=3clks 1=2clks
  74. *
  75. * 1 RAS# to CAS# Delay 0=3 1=2
  76. *
  77. * 0 RAS# Precharge 0=3 1=2
  78. */
  79. #define R82600_EAP 0x80 /* ECC Error Address Pointer Register
  80. *
  81. * 31 Disable Hardware Scrubbing (RW)
  82. * 0=Scrub on corrected read
  83. * 1=Don't scrub on corrected read
  84. *
  85. * 30:12 Error Address Pointer (RO)
  86. * Upper 19 bits of error address
  87. *
  88. * 11:4 Syndrome Bits (RO)
  89. *
  90. * 3 BSERR# on multibit error (RW)
  91. * 1=enable 0=disable
  92. *
  93. * 2 NMI on Single Bit Eror (RW)
  94. * 1=NMI triggered by SBE n.b. other
  95. * prerequeists
  96. * 0=NMI not triggered
  97. *
  98. * 1 MBE (R/WC)
  99. * read 1=MBE at EAP (see above)
  100. * read 0=no MBE, or SBE occurred first
  101. * write 1=Clear MBE status (must also
  102. * clear SBE)
  103. * write 0=NOP
  104. *
  105. * 1 SBE (R/WC)
  106. * read 1=SBE at EAP (see above)
  107. * read 0=no SBE, or MBE occurred first
  108. * write 1=Clear SBE status (must also
  109. * clear MBE)
  110. * write 0=NOP
  111. */
  112. #define R82600_DRBA 0x60 /* + 0x60..0x63 SDRAM Row Boundry Address
  113. * Registers
  114. *
  115. * 7:0 Address lines 30:24 - upper limit of
  116. * each row [p57]
  117. */
  118. struct r82600_error_info {
  119. u32 eapr;
  120. };
  121. static unsigned int disable_hardware_scrub = 0;
  122. static void r82600_get_error_info (struct mem_ctl_info *mci,
  123. struct r82600_error_info *info)
  124. {
  125. struct pci_dev *pdev;
  126. pdev = to_pci_dev(mci->dev);
  127. pci_read_config_dword(pdev, R82600_EAP, &info->eapr);
  128. if (info->eapr & BIT(0))
  129. /* Clear error to allow next error to be reported [p.62] */
  130. pci_write_bits32(pdev, R82600_EAP,
  131. ((u32) BIT(0) & (u32) BIT(1)),
  132. ((u32) BIT(0) & (u32) BIT(1)));
  133. if (info->eapr & BIT(1))
  134. /* Clear error to allow next error to be reported [p.62] */
  135. pci_write_bits32(pdev, R82600_EAP,
  136. ((u32) BIT(0) & (u32) BIT(1)),
  137. ((u32) BIT(0) & (u32) BIT(1)));
  138. }
  139. static int r82600_process_error_info (struct mem_ctl_info *mci,
  140. struct r82600_error_info *info, int handle_errors)
  141. {
  142. int error_found;
  143. u32 eapaddr, page;
  144. u32 syndrome;
  145. error_found = 0;
  146. /* bits 30:12 store the upper 19 bits of the 32 bit error address */
  147. eapaddr = ((info->eapr >> 12) & 0x7FFF) << 13;
  148. /* Syndrome in bits 11:4 [p.62] */
  149. syndrome = (info->eapr >> 4) & 0xFF;
  150. /* the R82600 reports at less than page *
  151. * granularity (upper 19 bits only) */
  152. page = eapaddr >> PAGE_SHIFT;
  153. if (info->eapr & BIT(0)) { /* CE? */
  154. error_found = 1;
  155. if (handle_errors)
  156. edac_mc_handle_ce(mci, page, 0, /* not avail */
  157. syndrome,
  158. edac_mc_find_csrow_by_page(mci, page),
  159. 0, /* channel */
  160. mci->ctl_name);
  161. }
  162. if (info->eapr & BIT(1)) { /* UE? */
  163. error_found = 1;
  164. if (handle_errors)
  165. /* 82600 doesn't give enough info */
  166. edac_mc_handle_ue(mci, page, 0,
  167. edac_mc_find_csrow_by_page(mci, page),
  168. mci->ctl_name);
  169. }
  170. return error_found;
  171. }
  172. static void r82600_check(struct mem_ctl_info *mci)
  173. {
  174. struct r82600_error_info info;
  175. debugf1("MC%d: %s()\n", mci->mc_idx, __func__);
  176. r82600_get_error_info(mci, &info);
  177. r82600_process_error_info(mci, &info, 1);
  178. }
  179. static inline int ecc_enabled(u8 dramcr)
  180. {
  181. return dramcr & BIT(5);
  182. }
  183. static void r82600_init_csrows(struct mem_ctl_info *mci, struct pci_dev *pdev,
  184. u8 dramcr)
  185. {
  186. struct csrow_info *csrow;
  187. int index;
  188. u8 drbar; /* SDRAM Row Boundry Address Register */
  189. u32 row_high_limit, row_high_limit_last;
  190. u32 reg_sdram, ecc_on, row_base;
  191. ecc_on = ecc_enabled(dramcr);
  192. reg_sdram = dramcr & BIT(4);
  193. row_high_limit_last = 0;
  194. for (index = 0; index < mci->nr_csrows; index++) {
  195. csrow = &mci->csrows[index];
  196. /* find the DRAM Chip Select Base address and mask */
  197. pci_read_config_byte(pdev, R82600_DRBA + index, &drbar);
  198. debugf1("%s() Row=%d DRBA = %#0x\n", __func__, index, drbar);
  199. row_high_limit = ((u32) drbar << 24);
  200. /* row_high_limit = ((u32)drbar << 24) | 0xffffffUL; */
  201. debugf1("%s() Row=%d, Boundry Address=%#0x, Last = %#0x\n",
  202. __func__, index, row_high_limit, row_high_limit_last);
  203. /* Empty row [p.57] */
  204. if (row_high_limit == row_high_limit_last)
  205. continue;
  206. row_base = row_high_limit_last;
  207. csrow->first_page = row_base >> PAGE_SHIFT;
  208. csrow->last_page = (row_high_limit >> PAGE_SHIFT) - 1;
  209. csrow->nr_pages = csrow->last_page - csrow->first_page + 1;
  210. /* Error address is top 19 bits - so granularity is *
  211. * 14 bits */
  212. csrow->grain = 1 << 14;
  213. csrow->mtype = reg_sdram ? MEM_RDDR : MEM_DDR;
  214. /* FIXME - check that this is unknowable with this chipset */
  215. csrow->dtype = DEV_UNKNOWN;
  216. /* Mode is global on 82600 */
  217. csrow->edac_mode = ecc_on ? EDAC_SECDED : EDAC_NONE;
  218. row_high_limit_last = row_high_limit;
  219. }
  220. }
  221. static int r82600_probe1(struct pci_dev *pdev, int dev_idx)
  222. {
  223. struct mem_ctl_info *mci;
  224. u8 dramcr;
  225. u32 eapr;
  226. u32 scrub_disabled;
  227. u32 sdram_refresh_rate;
  228. struct r82600_error_info discard;
  229. debugf0("%s()\n", __func__);
  230. pci_read_config_byte(pdev, R82600_DRAMC, &dramcr);
  231. pci_read_config_dword(pdev, R82600_EAP, &eapr);
  232. scrub_disabled = eapr & BIT(31);
  233. sdram_refresh_rate = dramcr & (BIT(0) | BIT(1));
  234. debugf2("%s(): sdram refresh rate = %#0x\n", __func__,
  235. sdram_refresh_rate);
  236. debugf2("%s(): DRAMC register = %#0x\n", __func__, dramcr);
  237. mci = edac_mc_alloc(0, R82600_NR_CSROWS, R82600_NR_CHANS);
  238. if (mci == NULL)
  239. return -ENOMEM;
  240. debugf0("%s(): mci = %p\n", __func__, mci);
  241. mci->dev = &pdev->dev;
  242. mci->mtype_cap = MEM_FLAG_RDDR | MEM_FLAG_DDR;
  243. mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
  244. /* FIXME try to work out if the chip leads have been used for COM2
  245. * instead on this board? [MA6?] MAYBE:
  246. */
  247. /* On the R82600, the pins for memory bits 72:65 - i.e. the *
  248. * EC bits are shared with the pins for COM2 (!), so if COM2 *
  249. * is enabled, we assume COM2 is wired up, and thus no EDAC *
  250. * is possible. */
  251. mci->edac_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
  252. if (ecc_enabled(dramcr)) {
  253. if (scrub_disabled)
  254. debugf3("%s(): mci = %p - Scrubbing disabled! EAP: "
  255. "%#0x\n", __func__, mci, eapr);
  256. } else
  257. mci->edac_cap = EDAC_FLAG_NONE;
  258. mci->mod_name = EDAC_MOD_STR;
  259. mci->mod_ver = R82600_REVISION;
  260. mci->ctl_name = "R82600";
  261. mci->edac_check = r82600_check;
  262. mci->ctl_page_to_phys = NULL;
  263. r82600_init_csrows(mci, pdev, dramcr);
  264. r82600_get_error_info(mci, &discard); /* clear counters */
  265. /* Here we assume that we will never see multiple instances of this
  266. * type of memory controller. The ID is therefore hardcoded to 0.
  267. */
  268. if (edac_mc_add_mc(mci,0)) {
  269. debugf3("%s(): failed edac_mc_add_mc()\n", __func__);
  270. goto fail;
  271. }
  272. /* get this far and it's successful */
  273. if (disable_hardware_scrub) {
  274. debugf3("%s(): Disabling Hardware Scrub (scrub on error)\n",
  275. __func__);
  276. pci_write_bits32(pdev, R82600_EAP, BIT(31), BIT(31));
  277. }
  278. debugf3("%s(): success\n", __func__);
  279. return 0;
  280. fail:
  281. edac_mc_free(mci);
  282. return -ENODEV;
  283. }
  284. /* returns count (>= 0), or negative on error */
  285. static int __devinit r82600_init_one(struct pci_dev *pdev,
  286. const struct pci_device_id *ent)
  287. {
  288. debugf0("%s()\n", __func__);
  289. /* don't need to call pci_device_enable() */
  290. return r82600_probe1(pdev, ent->driver_data);
  291. }
  292. static void __devexit r82600_remove_one(struct pci_dev *pdev)
  293. {
  294. struct mem_ctl_info *mci;
  295. debugf0("%s()\n", __func__);
  296. if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
  297. return;
  298. edac_mc_free(mci);
  299. }
  300. static const struct pci_device_id r82600_pci_tbl[] __devinitdata = {
  301. {
  302. PCI_DEVICE(PCI_VENDOR_ID_RADISYS, R82600_BRIDGE_ID)
  303. },
  304. {
  305. 0,
  306. } /* 0 terminated list. */
  307. };
  308. MODULE_DEVICE_TABLE(pci, r82600_pci_tbl);
  309. static struct pci_driver r82600_driver = {
  310. .name = EDAC_MOD_STR,
  311. .probe = r82600_init_one,
  312. .remove = __devexit_p(r82600_remove_one),
  313. .id_table = r82600_pci_tbl,
  314. };
  315. static int __init r82600_init(void)
  316. {
  317. return pci_register_driver(&r82600_driver);
  318. }
  319. static void __exit r82600_exit(void)
  320. {
  321. pci_unregister_driver(&r82600_driver);
  322. }
  323. module_init(r82600_init);
  324. module_exit(r82600_exit);
  325. MODULE_LICENSE("GPL");
  326. MODULE_AUTHOR("Tim Small <tim@buttersideup.com> - WPAD Ltd. "
  327. "on behalf of EADS Astrium");
  328. MODULE_DESCRIPTION("MC support for Radisys 82600 memory controllers");
  329. module_param(disable_hardware_scrub, bool, 0644);
  330. MODULE_PARM_DESC(disable_hardware_scrub,
  331. "If set, disable the chipset's automatic scrub for CEs");