r82600_edac.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  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(
  154. mci, page, 0, /* not avail */
  155. syndrome,
  156. edac_mc_find_csrow_by_page(mci, page),
  157. 0, /* channel */
  158. mci->ctl_name);
  159. }
  160. if (info->eapr & BIT(1)) { /* UE? */
  161. error_found = 1;
  162. if (handle_errors)
  163. /* 82600 doesn't give enough info */
  164. edac_mc_handle_ue(mci, page, 0,
  165. edac_mc_find_csrow_by_page(mci, page),
  166. mci->ctl_name);
  167. }
  168. return error_found;
  169. }
  170. static void r82600_check(struct mem_ctl_info *mci)
  171. {
  172. struct r82600_error_info info;
  173. debugf1("MC%d: %s()\n", mci->mc_idx, __func__);
  174. r82600_get_error_info(mci, &info);
  175. r82600_process_error_info(mci, &info, 1);
  176. }
  177. static int r82600_probe1(struct pci_dev *pdev, int dev_idx)
  178. {
  179. int rc = -ENODEV;
  180. int index;
  181. struct mem_ctl_info *mci = NULL;
  182. u8 dramcr;
  183. u32 ecc_on;
  184. u32 reg_sdram;
  185. u32 eapr;
  186. u32 scrub_disabled;
  187. u32 sdram_refresh_rate;
  188. u32 row_high_limit_last = 0;
  189. u32 eap_init_bits;
  190. debugf0("%s()\n", __func__);
  191. pci_read_config_byte(pdev, R82600_DRAMC, &dramcr);
  192. pci_read_config_dword(pdev, R82600_EAP, &eapr);
  193. ecc_on = dramcr & BIT(5);
  194. reg_sdram = dramcr & BIT(4);
  195. scrub_disabled = eapr & BIT(31);
  196. sdram_refresh_rate = dramcr & (BIT(0) | BIT(1));
  197. debugf2("%s(): sdram refresh rate = %#0x\n", __func__,
  198. sdram_refresh_rate);
  199. debugf2("%s(): DRAMC register = %#0x\n", __func__, dramcr);
  200. mci = edac_mc_alloc(0, R82600_NR_CSROWS, R82600_NR_CHANS);
  201. if (mci == NULL) {
  202. rc = -ENOMEM;
  203. goto fail;
  204. }
  205. debugf0("%s(): mci = %p\n", __func__, mci);
  206. mci->pdev = pdev;
  207. mci->mtype_cap = MEM_FLAG_RDDR | MEM_FLAG_DDR;
  208. mci->edac_ctl_cap = EDAC_FLAG_NONE | EDAC_FLAG_EC | EDAC_FLAG_SECDED;
  209. /* FIXME try to work out if the chip leads have been *
  210. * used for COM2 instead on this board? [MA6?] MAYBE: */
  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 = BS_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. /* clear counters */
  259. /* FIXME should we? */
  260. if (edac_mc_add_mc(mci)) {
  261. debugf3("%s(): failed edac_mc_add_mc()\n", __func__);
  262. goto fail;
  263. }
  264. /* get this far and it's successful */
  265. /* Clear error flags to allow next error to be reported [p.62] */
  266. /* Test systems seem to always have the UE flag raised on boot */
  267. eap_init_bits = BIT(0) & BIT(1);
  268. if (disable_hardware_scrub) {
  269. eap_init_bits |= BIT(31);
  270. debugf3("%s(): Disabling Hardware Scrub (scrub on error)\n",
  271. __func__);
  272. }
  273. pci_write_bits32(mci->pdev, R82600_EAP, eap_init_bits,
  274. eap_init_bits);
  275. debugf3("%s(): success\n", __func__);
  276. return 0;
  277. fail:
  278. if (mci)
  279. edac_mc_free(mci);
  280. return rc;
  281. }
  282. /* returns count (>= 0), or negative on error */
  283. static int __devinit r82600_init_one(struct pci_dev *pdev,
  284. const struct pci_device_id *ent)
  285. {
  286. debugf0("%s()\n", __func__);
  287. /* don't need to call pci_device_enable() */
  288. return r82600_probe1(pdev, ent->driver_data);
  289. }
  290. static void __devexit r82600_remove_one(struct pci_dev *pdev)
  291. {
  292. struct mem_ctl_info *mci;
  293. debugf0("%s()\n", __func__);
  294. if (((mci = edac_mc_find_mci_by_pdev(pdev)) != NULL) &&
  295. !edac_mc_del_mc(mci))
  296. edac_mc_free(mci);
  297. }
  298. static const struct pci_device_id r82600_pci_tbl[] __devinitdata = {
  299. {PCI_DEVICE(PCI_VENDOR_ID_RADISYS, R82600_BRIDGE_ID)},
  300. {0,} /* 0 terminated list. */
  301. };
  302. MODULE_DEVICE_TABLE(pci, r82600_pci_tbl);
  303. static struct pci_driver r82600_driver = {
  304. .name = BS_MOD_STR,
  305. .probe = r82600_init_one,
  306. .remove = __devexit_p(r82600_remove_one),
  307. .id_table = r82600_pci_tbl,
  308. };
  309. static int __init r82600_init(void)
  310. {
  311. return pci_register_driver(&r82600_driver);
  312. }
  313. static void __exit r82600_exit(void)
  314. {
  315. pci_unregister_driver(&r82600_driver);
  316. }
  317. module_init(r82600_init);
  318. module_exit(r82600_exit);
  319. MODULE_LICENSE("GPL");
  320. MODULE_AUTHOR("Tim Small <tim@buttersideup.com> - WPAD Ltd. "
  321. "on behalf of EADS Astrium");
  322. MODULE_DESCRIPTION("MC support for Radisys 82600 memory controllers");
  323. module_param(disable_hardware_scrub, bool, 0644);
  324. MODULE_PARM_DESC(disable_hardware_scrub,
  325. "If set, disable the chipset's automatic scrub for CEs");