r82600_edac.c 11 KB

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