1eb60705aSEric Wollesen /* 2eb60705aSEric Wollesen * Intel 5000(P/V/X) class Memory Controllers kernel module 3eb60705aSEric Wollesen * 4eb60705aSEric Wollesen * This file may be distributed under the terms of the 5eb60705aSEric Wollesen * GNU General Public License. 6eb60705aSEric Wollesen * 7eb60705aSEric Wollesen * Written by Douglas Thompson Linux Networx (http://lnxi.com) 8eb60705aSEric Wollesen * norsk5@xmission.com 9eb60705aSEric Wollesen * 10eb60705aSEric Wollesen * This module is based on the following document: 11eb60705aSEric Wollesen * 12eb60705aSEric Wollesen * Intel 5000X Chipset Memory Controller Hub (MCH) - Datasheet 13eb60705aSEric Wollesen * http://developer.intel.com/design/chipsets/datashts/313070.htm 14eb60705aSEric Wollesen * 15eb60705aSEric Wollesen */ 16eb60705aSEric Wollesen 17eb60705aSEric Wollesen #include <linux/module.h> 18eb60705aSEric Wollesen #include <linux/init.h> 19eb60705aSEric Wollesen #include <linux/pci.h> 20eb60705aSEric Wollesen #include <linux/pci_ids.h> 21eb60705aSEric Wollesen #include <linux/slab.h> 22c0d12172SDave Jiang #include <linux/edac.h> 23eb60705aSEric Wollesen #include <asm/mmzone.h> 24eb60705aSEric Wollesen 2520bcb7a8SDouglas Thompson #include "edac_core.h" 26eb60705aSEric Wollesen 27eb60705aSEric Wollesen /* 28eb60705aSEric Wollesen * Alter this version for the I5000 module when modifications are made 29eb60705aSEric Wollesen */ 30152ba394SMichal Marek #define I5000_REVISION " Ver: 2.0.12" 31456a2f95SDave Jiang #define EDAC_MOD_STR "i5000_edac" 32eb60705aSEric Wollesen 33eb60705aSEric Wollesen #define i5000_printk(level, fmt, arg...) \ 34eb60705aSEric Wollesen edac_printk(level, "i5000", fmt, ##arg) 35eb60705aSEric Wollesen 36eb60705aSEric Wollesen #define i5000_mc_printk(mci, level, fmt, arg...) \ 37eb60705aSEric Wollesen edac_mc_chipset_printk(mci, level, "i5000", fmt, ##arg) 38eb60705aSEric Wollesen 39eb60705aSEric Wollesen #ifndef PCI_DEVICE_ID_INTEL_FBD_0 40eb60705aSEric Wollesen #define PCI_DEVICE_ID_INTEL_FBD_0 0x25F5 41eb60705aSEric Wollesen #endif 42eb60705aSEric Wollesen #ifndef PCI_DEVICE_ID_INTEL_FBD_1 43eb60705aSEric Wollesen #define PCI_DEVICE_ID_INTEL_FBD_1 0x25F6 44eb60705aSEric Wollesen #endif 45eb60705aSEric Wollesen 46eb60705aSEric Wollesen /* Device 16, 47eb60705aSEric Wollesen * Function 0: System Address 48eb60705aSEric Wollesen * Function 1: Memory Branch Map, Control, Errors Register 49eb60705aSEric Wollesen * Function 2: FSB Error Registers 50eb60705aSEric Wollesen * 51eb60705aSEric Wollesen * All 3 functions of Device 16 (0,1,2) share the SAME DID 52eb60705aSEric Wollesen */ 53eb60705aSEric Wollesen #define PCI_DEVICE_ID_INTEL_I5000_DEV16 0x25F0 54eb60705aSEric Wollesen 55eb60705aSEric Wollesen /* OFFSETS for Function 0 */ 56eb60705aSEric Wollesen 57eb60705aSEric Wollesen /* OFFSETS for Function 1 */ 58eb60705aSEric Wollesen #define AMBASE 0x48 59eb60705aSEric Wollesen #define MAXCH 0x56 60eb60705aSEric Wollesen #define MAXDIMMPERCH 0x57 61eb60705aSEric Wollesen #define TOLM 0x6C 62eb60705aSEric Wollesen #define REDMEMB 0x7C 63eb60705aSEric Wollesen #define RED_ECC_LOCATOR(x) ((x) & 0x3FFFF) 64eb60705aSEric Wollesen #define REC_ECC_LOCATOR_EVEN(x) ((x) & 0x001FF) 65eb60705aSEric Wollesen #define REC_ECC_LOCATOR_ODD(x) ((x) & 0x3FE00) 66eb60705aSEric Wollesen #define MIR0 0x80 67eb60705aSEric Wollesen #define MIR1 0x84 68eb60705aSEric Wollesen #define MIR2 0x88 69eb60705aSEric Wollesen #define AMIR0 0x8C 70eb60705aSEric Wollesen #define AMIR1 0x90 71eb60705aSEric Wollesen #define AMIR2 0x94 72eb60705aSEric Wollesen 73eb60705aSEric Wollesen #define FERR_FAT_FBD 0x98 74eb60705aSEric Wollesen #define NERR_FAT_FBD 0x9C 75eb60705aSEric Wollesen #define EXTRACT_FBDCHAN_INDX(x) (((x)>>28) & 0x3) 76eb60705aSEric Wollesen #define FERR_FAT_FBDCHAN 0x30000000 77eb60705aSEric Wollesen #define FERR_FAT_M3ERR 0x00000004 78eb60705aSEric Wollesen #define FERR_FAT_M2ERR 0x00000002 79eb60705aSEric Wollesen #define FERR_FAT_M1ERR 0x00000001 80eb60705aSEric Wollesen #define FERR_FAT_MASK (FERR_FAT_M1ERR | \ 81eb60705aSEric Wollesen FERR_FAT_M2ERR | \ 82eb60705aSEric Wollesen FERR_FAT_M3ERR) 83eb60705aSEric Wollesen 84eb60705aSEric Wollesen #define FERR_NF_FBD 0xA0 85eb60705aSEric Wollesen 86eb60705aSEric Wollesen /* Thermal and SPD or BFD errors */ 87eb60705aSEric Wollesen #define FERR_NF_M28ERR 0x01000000 88eb60705aSEric Wollesen #define FERR_NF_M27ERR 0x00800000 89eb60705aSEric Wollesen #define FERR_NF_M26ERR 0x00400000 90eb60705aSEric Wollesen #define FERR_NF_M25ERR 0x00200000 91eb60705aSEric Wollesen #define FERR_NF_M24ERR 0x00100000 92eb60705aSEric Wollesen #define FERR_NF_M23ERR 0x00080000 93eb60705aSEric Wollesen #define FERR_NF_M22ERR 0x00040000 94eb60705aSEric Wollesen #define FERR_NF_M21ERR 0x00020000 95eb60705aSEric Wollesen 96eb60705aSEric Wollesen /* Correctable errors */ 97eb60705aSEric Wollesen #define FERR_NF_M20ERR 0x00010000 98eb60705aSEric Wollesen #define FERR_NF_M19ERR 0x00008000 99eb60705aSEric Wollesen #define FERR_NF_M18ERR 0x00004000 100eb60705aSEric Wollesen #define FERR_NF_M17ERR 0x00002000 101eb60705aSEric Wollesen 102eb60705aSEric Wollesen /* Non-Retry or redundant Retry errors */ 103eb60705aSEric Wollesen #define FERR_NF_M16ERR 0x00001000 104eb60705aSEric Wollesen #define FERR_NF_M15ERR 0x00000800 105eb60705aSEric Wollesen #define FERR_NF_M14ERR 0x00000400 106eb60705aSEric Wollesen #define FERR_NF_M13ERR 0x00000200 107eb60705aSEric Wollesen 108eb60705aSEric Wollesen /* Uncorrectable errors */ 109eb60705aSEric Wollesen #define FERR_NF_M12ERR 0x00000100 110eb60705aSEric Wollesen #define FERR_NF_M11ERR 0x00000080 111eb60705aSEric Wollesen #define FERR_NF_M10ERR 0x00000040 112eb60705aSEric Wollesen #define FERR_NF_M9ERR 0x00000020 113eb60705aSEric Wollesen #define FERR_NF_M8ERR 0x00000010 114eb60705aSEric Wollesen #define FERR_NF_M7ERR 0x00000008 115eb60705aSEric Wollesen #define FERR_NF_M6ERR 0x00000004 116eb60705aSEric Wollesen #define FERR_NF_M5ERR 0x00000002 117eb60705aSEric Wollesen #define FERR_NF_M4ERR 0x00000001 118eb60705aSEric Wollesen 119eb60705aSEric Wollesen #define FERR_NF_UNCORRECTABLE (FERR_NF_M12ERR | \ 120eb60705aSEric Wollesen FERR_NF_M11ERR | \ 121eb60705aSEric Wollesen FERR_NF_M10ERR | \ 122c0667407SAristeu Rozanski FERR_NF_M9ERR | \ 123eb60705aSEric Wollesen FERR_NF_M8ERR | \ 124eb60705aSEric Wollesen FERR_NF_M7ERR | \ 125eb60705aSEric Wollesen FERR_NF_M6ERR | \ 126eb60705aSEric Wollesen FERR_NF_M5ERR | \ 127eb60705aSEric Wollesen FERR_NF_M4ERR) 128eb60705aSEric Wollesen #define FERR_NF_CORRECTABLE (FERR_NF_M20ERR | \ 129eb60705aSEric Wollesen FERR_NF_M19ERR | \ 130eb60705aSEric Wollesen FERR_NF_M18ERR | \ 131eb60705aSEric Wollesen FERR_NF_M17ERR) 132eb60705aSEric Wollesen #define FERR_NF_DIMM_SPARE (FERR_NF_M27ERR | \ 133eb60705aSEric Wollesen FERR_NF_M28ERR) 134eb60705aSEric Wollesen #define FERR_NF_THERMAL (FERR_NF_M26ERR | \ 135eb60705aSEric Wollesen FERR_NF_M25ERR | \ 136eb60705aSEric Wollesen FERR_NF_M24ERR | \ 137eb60705aSEric Wollesen FERR_NF_M23ERR) 138eb60705aSEric Wollesen #define FERR_NF_SPD_PROTOCOL (FERR_NF_M22ERR) 139eb60705aSEric Wollesen #define FERR_NF_NORTH_CRC (FERR_NF_M21ERR) 140eb60705aSEric Wollesen #define FERR_NF_NON_RETRY (FERR_NF_M13ERR | \ 141eb60705aSEric Wollesen FERR_NF_M14ERR | \ 142eb60705aSEric Wollesen FERR_NF_M15ERR) 143eb60705aSEric Wollesen 144eb60705aSEric Wollesen #define NERR_NF_FBD 0xA4 145eb60705aSEric Wollesen #define FERR_NF_MASK (FERR_NF_UNCORRECTABLE | \ 146eb60705aSEric Wollesen FERR_NF_CORRECTABLE | \ 147eb60705aSEric Wollesen FERR_NF_DIMM_SPARE | \ 148eb60705aSEric Wollesen FERR_NF_THERMAL | \ 149eb60705aSEric Wollesen FERR_NF_SPD_PROTOCOL | \ 150eb60705aSEric Wollesen FERR_NF_NORTH_CRC | \ 151eb60705aSEric Wollesen FERR_NF_NON_RETRY) 152eb60705aSEric Wollesen 153eb60705aSEric Wollesen #define EMASK_FBD 0xA8 154eb60705aSEric Wollesen #define EMASK_FBD_M28ERR 0x08000000 155eb60705aSEric Wollesen #define EMASK_FBD_M27ERR 0x04000000 156eb60705aSEric Wollesen #define EMASK_FBD_M26ERR 0x02000000 157eb60705aSEric Wollesen #define EMASK_FBD_M25ERR 0x01000000 158eb60705aSEric Wollesen #define EMASK_FBD_M24ERR 0x00800000 159eb60705aSEric Wollesen #define EMASK_FBD_M23ERR 0x00400000 160eb60705aSEric Wollesen #define EMASK_FBD_M22ERR 0x00200000 161eb60705aSEric Wollesen #define EMASK_FBD_M21ERR 0x00100000 162eb60705aSEric Wollesen #define EMASK_FBD_M20ERR 0x00080000 163eb60705aSEric Wollesen #define EMASK_FBD_M19ERR 0x00040000 164eb60705aSEric Wollesen #define EMASK_FBD_M18ERR 0x00020000 165eb60705aSEric Wollesen #define EMASK_FBD_M17ERR 0x00010000 166eb60705aSEric Wollesen 167eb60705aSEric Wollesen #define EMASK_FBD_M15ERR 0x00004000 168eb60705aSEric Wollesen #define EMASK_FBD_M14ERR 0x00002000 169eb60705aSEric Wollesen #define EMASK_FBD_M13ERR 0x00001000 170eb60705aSEric Wollesen #define EMASK_FBD_M12ERR 0x00000800 171eb60705aSEric Wollesen #define EMASK_FBD_M11ERR 0x00000400 172eb60705aSEric Wollesen #define EMASK_FBD_M10ERR 0x00000200 173eb60705aSEric Wollesen #define EMASK_FBD_M9ERR 0x00000100 174eb60705aSEric Wollesen #define EMASK_FBD_M8ERR 0x00000080 175eb60705aSEric Wollesen #define EMASK_FBD_M7ERR 0x00000040 176eb60705aSEric Wollesen #define EMASK_FBD_M6ERR 0x00000020 177eb60705aSEric Wollesen #define EMASK_FBD_M5ERR 0x00000010 178eb60705aSEric Wollesen #define EMASK_FBD_M4ERR 0x00000008 179eb60705aSEric Wollesen #define EMASK_FBD_M3ERR 0x00000004 180eb60705aSEric Wollesen #define EMASK_FBD_M2ERR 0x00000002 181eb60705aSEric Wollesen #define EMASK_FBD_M1ERR 0x00000001 182eb60705aSEric Wollesen 183eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_FATAL_ERRORS (EMASK_FBD_M1ERR | \ 184eb60705aSEric Wollesen EMASK_FBD_M2ERR | \ 185eb60705aSEric Wollesen EMASK_FBD_M3ERR) 186eb60705aSEric Wollesen 187eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_UNCORRECTABLE (EMASK_FBD_M4ERR | \ 188eb60705aSEric Wollesen EMASK_FBD_M5ERR | \ 189eb60705aSEric Wollesen EMASK_FBD_M6ERR | \ 190eb60705aSEric Wollesen EMASK_FBD_M7ERR | \ 191eb60705aSEric Wollesen EMASK_FBD_M8ERR | \ 192eb60705aSEric Wollesen EMASK_FBD_M9ERR | \ 193eb60705aSEric Wollesen EMASK_FBD_M10ERR | \ 194eb60705aSEric Wollesen EMASK_FBD_M11ERR | \ 195eb60705aSEric Wollesen EMASK_FBD_M12ERR) 196eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_CORRECTABLE (EMASK_FBD_M17ERR | \ 197eb60705aSEric Wollesen EMASK_FBD_M18ERR | \ 198eb60705aSEric Wollesen EMASK_FBD_M19ERR | \ 199eb60705aSEric Wollesen EMASK_FBD_M20ERR) 200eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_DIMM_SPARE (EMASK_FBD_M27ERR | \ 201eb60705aSEric Wollesen EMASK_FBD_M28ERR) 202eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_THERMALS (EMASK_FBD_M26ERR | \ 203eb60705aSEric Wollesen EMASK_FBD_M25ERR | \ 204eb60705aSEric Wollesen EMASK_FBD_M24ERR | \ 205eb60705aSEric Wollesen EMASK_FBD_M23ERR) 206eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_SPD_PROTOCOL (EMASK_FBD_M22ERR) 207eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_NORTH_CRC (EMASK_FBD_M21ERR) 208eb60705aSEric Wollesen #define ENABLE_EMASK_FBD_NON_RETRY (EMASK_FBD_M15ERR | \ 209eb60705aSEric Wollesen EMASK_FBD_M14ERR | \ 210eb60705aSEric Wollesen EMASK_FBD_M13ERR) 211eb60705aSEric Wollesen 212eb60705aSEric Wollesen #define ENABLE_EMASK_ALL (ENABLE_EMASK_FBD_NON_RETRY | \ 213eb60705aSEric Wollesen ENABLE_EMASK_FBD_NORTH_CRC | \ 214eb60705aSEric Wollesen ENABLE_EMASK_FBD_SPD_PROTOCOL | \ 215eb60705aSEric Wollesen ENABLE_EMASK_FBD_THERMALS | \ 216eb60705aSEric Wollesen ENABLE_EMASK_FBD_DIMM_SPARE | \ 217eb60705aSEric Wollesen ENABLE_EMASK_FBD_FATAL_ERRORS | \ 218eb60705aSEric Wollesen ENABLE_EMASK_FBD_CORRECTABLE | \ 219eb60705aSEric Wollesen ENABLE_EMASK_FBD_UNCORRECTABLE) 220eb60705aSEric Wollesen 221eb60705aSEric Wollesen #define ERR0_FBD 0xAC 222eb60705aSEric Wollesen #define ERR1_FBD 0xB0 223eb60705aSEric Wollesen #define ERR2_FBD 0xB4 224eb60705aSEric Wollesen #define MCERR_FBD 0xB8 225eb60705aSEric Wollesen #define NRECMEMA 0xBE 226eb60705aSEric Wollesen #define NREC_BANK(x) (((x)>>12) & 0x7) 227eb60705aSEric Wollesen #define NREC_RDWR(x) (((x)>>11) & 1) 228eb60705aSEric Wollesen #define NREC_RANK(x) (((x)>>8) & 0x7) 229eb60705aSEric Wollesen #define NRECMEMB 0xC0 230eb60705aSEric Wollesen #define NREC_CAS(x) (((x)>>16) & 0xFFFFFF) 231eb60705aSEric Wollesen #define NREC_RAS(x) ((x) & 0x7FFF) 232eb60705aSEric Wollesen #define NRECFGLOG 0xC4 233eb60705aSEric Wollesen #define NREEECFBDA 0xC8 234eb60705aSEric Wollesen #define NREEECFBDB 0xCC 235eb60705aSEric Wollesen #define NREEECFBDC 0xD0 236eb60705aSEric Wollesen #define NREEECFBDD 0xD4 237eb60705aSEric Wollesen #define NREEECFBDE 0xD8 238eb60705aSEric Wollesen #define REDMEMA 0xDC 239eb60705aSEric Wollesen #define RECMEMA 0xE2 240eb60705aSEric Wollesen #define REC_BANK(x) (((x)>>12) & 0x7) 241eb60705aSEric Wollesen #define REC_RDWR(x) (((x)>>11) & 1) 242eb60705aSEric Wollesen #define REC_RANK(x) (((x)>>8) & 0x7) 243eb60705aSEric Wollesen #define RECMEMB 0xE4 244eb60705aSEric Wollesen #define REC_CAS(x) (((x)>>16) & 0xFFFFFF) 245eb60705aSEric Wollesen #define REC_RAS(x) ((x) & 0x7FFF) 246eb60705aSEric Wollesen #define RECFGLOG 0xE8 247eb60705aSEric Wollesen #define RECFBDA 0xEC 248eb60705aSEric Wollesen #define RECFBDB 0xF0 249eb60705aSEric Wollesen #define RECFBDC 0xF4 250eb60705aSEric Wollesen #define RECFBDD 0xF8 251eb60705aSEric Wollesen #define RECFBDE 0xFC 252eb60705aSEric Wollesen 253eb60705aSEric Wollesen /* OFFSETS for Function 2 */ 254eb60705aSEric Wollesen 255eb60705aSEric Wollesen /* 256eb60705aSEric Wollesen * Device 21, 257eb60705aSEric Wollesen * Function 0: Memory Map Branch 0 258eb60705aSEric Wollesen * 259eb60705aSEric Wollesen * Device 22, 260eb60705aSEric Wollesen * Function 0: Memory Map Branch 1 261eb60705aSEric Wollesen */ 262eb60705aSEric Wollesen #define PCI_DEVICE_ID_I5000_BRANCH_0 0x25F5 263eb60705aSEric Wollesen #define PCI_DEVICE_ID_I5000_BRANCH_1 0x25F6 264eb60705aSEric Wollesen 265eb60705aSEric Wollesen #define AMB_PRESENT_0 0x64 266eb60705aSEric Wollesen #define AMB_PRESENT_1 0x66 267eb60705aSEric Wollesen #define MTR0 0x80 268eb60705aSEric Wollesen #define MTR1 0x84 269eb60705aSEric Wollesen #define MTR2 0x88 270eb60705aSEric Wollesen #define MTR3 0x8C 271eb60705aSEric Wollesen 272eb60705aSEric Wollesen #define NUM_MTRS 4 27364e1fdafSMauro Carvalho Chehab #define CHANNELS_PER_BRANCH 2 27464e1fdafSMauro Carvalho Chehab #define MAX_BRANCHES 2 275eb60705aSEric Wollesen 2767e881856SJoe Perches /* Defines to extract the various fields from the 277eb60705aSEric Wollesen * MTRx - Memory Technology Registers 278eb60705aSEric Wollesen */ 279eb60705aSEric Wollesen #define MTR_DIMMS_PRESENT(mtr) ((mtr) & (0x1 << 8)) 280eb60705aSEric Wollesen #define MTR_DRAM_WIDTH(mtr) ((((mtr) >> 6) & 0x1) ? 8 : 4) 281eb60705aSEric Wollesen #define MTR_DRAM_BANKS(mtr) ((((mtr) >> 5) & 0x1) ? 8 : 4) 282eb60705aSEric Wollesen #define MTR_DRAM_BANKS_ADDR_BITS(mtr) ((MTR_DRAM_BANKS(mtr) == 8) ? 3 : 2) 283eb60705aSEric Wollesen #define MTR_DIMM_RANK(mtr) (((mtr) >> 4) & 0x1) 284977c76bdSMarisuz Kozlowski #define MTR_DIMM_RANK_ADDR_BITS(mtr) (MTR_DIMM_RANK(mtr) ? 2 : 1) 285eb60705aSEric Wollesen #define MTR_DIMM_ROWS(mtr) (((mtr) >> 2) & 0x3) 286eb60705aSEric Wollesen #define MTR_DIMM_ROWS_ADDR_BITS(mtr) (MTR_DIMM_ROWS(mtr) + 13) 287eb60705aSEric Wollesen #define MTR_DIMM_COLS(mtr) ((mtr) & 0x3) 288eb60705aSEric Wollesen #define MTR_DIMM_COLS_ADDR_BITS(mtr) (MTR_DIMM_COLS(mtr) + 10) 289eb60705aSEric Wollesen 290c0667407SAristeu Rozanski /* enables the report of miscellaneous messages as CE errors - default off */ 291c0667407SAristeu Rozanski static int misc_messages; 292c0667407SAristeu Rozanski 293eb60705aSEric Wollesen /* Enumeration of supported devices */ 294eb60705aSEric Wollesen enum i5000_chips { 295eb60705aSEric Wollesen I5000P = 0, 296eb60705aSEric Wollesen I5000V = 1, /* future */ 297eb60705aSEric Wollesen I5000X = 2 /* future */ 298eb60705aSEric Wollesen }; 299eb60705aSEric Wollesen 300eb60705aSEric Wollesen /* Device name and register DID (Device ID) */ 301eb60705aSEric Wollesen struct i5000_dev_info { 302eb60705aSEric Wollesen const char *ctl_name; /* name for this device */ 303eb60705aSEric Wollesen u16 fsb_mapping_errors; /* DID for the branchmap,control */ 304eb60705aSEric Wollesen }; 305eb60705aSEric Wollesen 306eb60705aSEric Wollesen /* Table of devices attributes supported by this driver */ 307eb60705aSEric Wollesen static const struct i5000_dev_info i5000_devs[] = { 308eb60705aSEric Wollesen [I5000P] = { 309eb60705aSEric Wollesen .ctl_name = "I5000", 310eb60705aSEric Wollesen .fsb_mapping_errors = PCI_DEVICE_ID_INTEL_I5000_DEV16, 311eb60705aSEric Wollesen }, 312eb60705aSEric Wollesen }; 313eb60705aSEric Wollesen 314eb60705aSEric Wollesen struct i5000_dimm_info { 315eb60705aSEric Wollesen int megabytes; /* size, 0 means not present */ 316eb60705aSEric Wollesen int dual_rank; 317eb60705aSEric Wollesen }; 318eb60705aSEric Wollesen 319eb60705aSEric Wollesen #define MAX_CHANNELS 6 /* max possible channels */ 320eb60705aSEric Wollesen #define MAX_CSROWS (8*2) /* max possible csrows per channel */ 321eb60705aSEric Wollesen 322eb60705aSEric Wollesen /* driver private data structure */ 323eb60705aSEric Wollesen struct i5000_pvt { 324eb60705aSEric Wollesen struct pci_dev *system_address; /* 16.0 */ 325eb60705aSEric Wollesen struct pci_dev *branchmap_werrors; /* 16.1 */ 326eb60705aSEric Wollesen struct pci_dev *fsb_error_regs; /* 16.2 */ 327eb60705aSEric Wollesen struct pci_dev *branch_0; /* 21.0 */ 328eb60705aSEric Wollesen struct pci_dev *branch_1; /* 22.0 */ 329eb60705aSEric Wollesen 330eb60705aSEric Wollesen u16 tolm; /* top of low memory */ 331eb60705aSEric Wollesen u64 ambase; /* AMB BAR */ 332eb60705aSEric Wollesen 333eb60705aSEric Wollesen u16 mir0, mir1, mir2; 334eb60705aSEric Wollesen 335eb60705aSEric Wollesen u16 b0_mtr[NUM_MTRS]; /* Memory Technlogy Reg */ 336eb60705aSEric Wollesen u16 b0_ambpresent0; /* Branch 0, Channel 0 */ 337eb60705aSEric Wollesen u16 b0_ambpresent1; /* Brnach 0, Channel 1 */ 338eb60705aSEric Wollesen 339eb60705aSEric Wollesen u16 b1_mtr[NUM_MTRS]; /* Memory Technlogy Reg */ 340eb60705aSEric Wollesen u16 b1_ambpresent0; /* Branch 1, Channel 8 */ 341eb60705aSEric Wollesen u16 b1_ambpresent1; /* Branch 1, Channel 1 */ 342eb60705aSEric Wollesen 3436f042b50SJoe Perches /* DIMM information matrix, allocating architecture maximums */ 344eb60705aSEric Wollesen struct i5000_dimm_info dimm_info[MAX_CSROWS][MAX_CHANNELS]; 345eb60705aSEric Wollesen 346eb60705aSEric Wollesen /* Actual values for this controller */ 347eb60705aSEric Wollesen int maxch; /* Max channels */ 348eb60705aSEric Wollesen int maxdimmperch; /* Max DIMMs per channel */ 349eb60705aSEric Wollesen }; 350eb60705aSEric Wollesen 351eb60705aSEric Wollesen /* I5000 MCH error information retrieved from Hardware */ 352eb60705aSEric Wollesen struct i5000_error_info { 353eb60705aSEric Wollesen 354eb60705aSEric Wollesen /* These registers are always read from the MC */ 355eb60705aSEric Wollesen u32 ferr_fat_fbd; /* First Errors Fatal */ 356eb60705aSEric Wollesen u32 nerr_fat_fbd; /* Next Errors Fatal */ 357eb60705aSEric Wollesen u32 ferr_nf_fbd; /* First Errors Non-Fatal */ 358eb60705aSEric Wollesen u32 nerr_nf_fbd; /* Next Errors Non-Fatal */ 359eb60705aSEric Wollesen 360eb60705aSEric Wollesen /* These registers are input ONLY if there was a Recoverable Error */ 361eb60705aSEric Wollesen u32 redmemb; /* Recoverable Mem Data Error log B */ 362eb60705aSEric Wollesen u16 recmema; /* Recoverable Mem Error log A */ 363eb60705aSEric Wollesen u32 recmemb; /* Recoverable Mem Error log B */ 364eb60705aSEric Wollesen 365eb60705aSEric Wollesen /* These registers are input ONLY if there was a 366eb60705aSEric Wollesen * Non-Recoverable Error */ 367eb60705aSEric Wollesen u16 nrecmema; /* Non-Recoverable Mem log A */ 368eb60705aSEric Wollesen u16 nrecmemb; /* Non-Recoverable Mem log B */ 369eb60705aSEric Wollesen 370eb60705aSEric Wollesen }; 371eb60705aSEric Wollesen 372456a2f95SDave Jiang static struct edac_pci_ctl_info *i5000_pci; 373456a2f95SDave Jiang 374b2ccaecaSDouglas Thompson /* 375eb60705aSEric Wollesen * i5000_get_error_info Retrieve the hardware error information from 376eb60705aSEric Wollesen * the hardware and cache it in the 'info' 377eb60705aSEric Wollesen * structure 378eb60705aSEric Wollesen */ 379eb60705aSEric Wollesen static void i5000_get_error_info(struct mem_ctl_info *mci, 380eb60705aSEric Wollesen struct i5000_error_info *info) 381eb60705aSEric Wollesen { 382eb60705aSEric Wollesen struct i5000_pvt *pvt; 383eb60705aSEric Wollesen u32 value; 384eb60705aSEric Wollesen 385b2ccaecaSDouglas Thompson pvt = mci->pvt_info; 386eb60705aSEric Wollesen 387eb60705aSEric Wollesen /* read in the 1st FATAL error register */ 388eb60705aSEric Wollesen pci_read_config_dword(pvt->branchmap_werrors, FERR_FAT_FBD, &value); 389eb60705aSEric Wollesen 390eb60705aSEric Wollesen /* Mask only the bits that the doc says are valid 391eb60705aSEric Wollesen */ 392eb60705aSEric Wollesen value &= (FERR_FAT_FBDCHAN | FERR_FAT_MASK); 393eb60705aSEric Wollesen 394eb60705aSEric Wollesen /* If there is an error, then read in the */ 395eb60705aSEric Wollesen /* NEXT FATAL error register and the Memory Error Log Register A */ 396eb60705aSEric Wollesen if (value & FERR_FAT_MASK) { 397eb60705aSEric Wollesen info->ferr_fat_fbd = value; 398eb60705aSEric Wollesen 399eb60705aSEric Wollesen /* harvest the various error data we need */ 400eb60705aSEric Wollesen pci_read_config_dword(pvt->branchmap_werrors, 401eb60705aSEric Wollesen NERR_FAT_FBD, &info->nerr_fat_fbd); 402eb60705aSEric Wollesen pci_read_config_word(pvt->branchmap_werrors, 403eb60705aSEric Wollesen NRECMEMA, &info->nrecmema); 404eb60705aSEric Wollesen pci_read_config_word(pvt->branchmap_werrors, 405eb60705aSEric Wollesen NRECMEMB, &info->nrecmemb); 406eb60705aSEric Wollesen 407eb60705aSEric Wollesen /* Clear the error bits, by writing them back */ 408eb60705aSEric Wollesen pci_write_config_dword(pvt->branchmap_werrors, 409eb60705aSEric Wollesen FERR_FAT_FBD, value); 410eb60705aSEric Wollesen } else { 411eb60705aSEric Wollesen info->ferr_fat_fbd = 0; 412eb60705aSEric Wollesen info->nerr_fat_fbd = 0; 413eb60705aSEric Wollesen info->nrecmema = 0; 414eb60705aSEric Wollesen info->nrecmemb = 0; 415eb60705aSEric Wollesen } 416eb60705aSEric Wollesen 417eb60705aSEric Wollesen /* read in the 1st NON-FATAL error register */ 418eb60705aSEric Wollesen pci_read_config_dword(pvt->branchmap_werrors, FERR_NF_FBD, &value); 419eb60705aSEric Wollesen 420eb60705aSEric Wollesen /* If there is an error, then read in the 1st NON-FATAL error 421eb60705aSEric Wollesen * register as well */ 422eb60705aSEric Wollesen if (value & FERR_NF_MASK) { 423eb60705aSEric Wollesen info->ferr_nf_fbd = value; 424eb60705aSEric Wollesen 425eb60705aSEric Wollesen /* harvest the various error data we need */ 426eb60705aSEric Wollesen pci_read_config_dword(pvt->branchmap_werrors, 427eb60705aSEric Wollesen NERR_NF_FBD, &info->nerr_nf_fbd); 428eb60705aSEric Wollesen pci_read_config_word(pvt->branchmap_werrors, 429eb60705aSEric Wollesen RECMEMA, &info->recmema); 430eb60705aSEric Wollesen pci_read_config_dword(pvt->branchmap_werrors, 431eb60705aSEric Wollesen RECMEMB, &info->recmemb); 432eb60705aSEric Wollesen pci_read_config_dword(pvt->branchmap_werrors, 433eb60705aSEric Wollesen REDMEMB, &info->redmemb); 434eb60705aSEric Wollesen 435eb60705aSEric Wollesen /* Clear the error bits, by writing them back */ 436eb60705aSEric Wollesen pci_write_config_dword(pvt->branchmap_werrors, 437eb60705aSEric Wollesen FERR_NF_FBD, value); 438eb60705aSEric Wollesen } else { 439eb60705aSEric Wollesen info->ferr_nf_fbd = 0; 440eb60705aSEric Wollesen info->nerr_nf_fbd = 0; 441eb60705aSEric Wollesen info->recmema = 0; 442eb60705aSEric Wollesen info->recmemb = 0; 443eb60705aSEric Wollesen info->redmemb = 0; 444eb60705aSEric Wollesen } 445eb60705aSEric Wollesen } 446eb60705aSEric Wollesen 447b2ccaecaSDouglas Thompson /* 448eb60705aSEric Wollesen * i5000_process_fatal_error_info(struct mem_ctl_info *mci, 449eb60705aSEric Wollesen * struct i5000_error_info *info, 450eb60705aSEric Wollesen * int handle_errors); 451eb60705aSEric Wollesen * 452eb60705aSEric Wollesen * handle the Intel FATAL errors, if any 453eb60705aSEric Wollesen */ 454eb60705aSEric Wollesen static void i5000_process_fatal_error_info(struct mem_ctl_info *mci, 455eb60705aSEric Wollesen struct i5000_error_info *info, 456eb60705aSEric Wollesen int handle_errors) 457eb60705aSEric Wollesen { 458c0667407SAristeu Rozanski char msg[EDAC_MC_LABEL_LEN + 1 + 160]; 459c0667407SAristeu Rozanski char *specific = NULL; 460eb60705aSEric Wollesen u32 allErrors; 461eb60705aSEric Wollesen int channel; 462eb60705aSEric Wollesen int bank; 463eb60705aSEric Wollesen int rank; 464eb60705aSEric Wollesen int rdwr; 465eb60705aSEric Wollesen int ras, cas; 466eb60705aSEric Wollesen 467eb60705aSEric Wollesen /* mask off the Error bits that are possible */ 468eb60705aSEric Wollesen allErrors = (info->ferr_fat_fbd & FERR_FAT_MASK); 469eb60705aSEric Wollesen if (!allErrors) 470eb60705aSEric Wollesen return; /* if no error, return now */ 471eb60705aSEric Wollesen 472486dfb16SMauro Carvalho Chehab channel = EXTRACT_FBDCHAN_INDX(info->ferr_fat_fbd); 473eb60705aSEric Wollesen 474eb60705aSEric Wollesen /* Use the NON-Recoverable macros to extract data */ 475eb60705aSEric Wollesen bank = NREC_BANK(info->nrecmema); 476eb60705aSEric Wollesen rank = NREC_RANK(info->nrecmema); 477eb60705aSEric Wollesen rdwr = NREC_RDWR(info->nrecmema); 478eb60705aSEric Wollesen ras = NREC_RAS(info->nrecmemb); 479eb60705aSEric Wollesen cas = NREC_CAS(info->nrecmemb); 480eb60705aSEric Wollesen 481*956b9ba1SJoe Perches edac_dbg(0, "\t\tCSROW= %d Channel= %d (DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n", 482486dfb16SMauro Carvalho Chehab rank, channel, bank, 483eb60705aSEric Wollesen rdwr ? "Write" : "Read", ras, cas); 484eb60705aSEric Wollesen 485eb60705aSEric Wollesen /* Only 1 bit will be on */ 486c0667407SAristeu Rozanski switch (allErrors) { 487c0667407SAristeu Rozanski case FERR_FAT_M1ERR: 488c0667407SAristeu Rozanski specific = "Alert on non-redundant retry or fast " 489c0667407SAristeu Rozanski "reset timeout"; 490c0667407SAristeu Rozanski break; 491c0667407SAristeu Rozanski case FERR_FAT_M2ERR: 492c0667407SAristeu Rozanski specific = "Northbound CRC error on non-redundant " 493c0667407SAristeu Rozanski "retry"; 494c0667407SAristeu Rozanski break; 495c0667407SAristeu Rozanski case FERR_FAT_M3ERR: 4968360e81bSAristeu Rozanski { 4978360e81bSAristeu Rozanski static int done; 4988360e81bSAristeu Rozanski 4998360e81bSAristeu Rozanski /* 5008360e81bSAristeu Rozanski * This error is generated to inform that the intelligent 5018360e81bSAristeu Rozanski * throttling is disabled and the temperature passed the 5028360e81bSAristeu Rozanski * specified middle point. Since this is something the BIOS 5038360e81bSAristeu Rozanski * should take care of, we'll warn only once to avoid 5048360e81bSAristeu Rozanski * worthlessly flooding the log. 5058360e81bSAristeu Rozanski */ 5068360e81bSAristeu Rozanski if (done) 5078360e81bSAristeu Rozanski return; 5088360e81bSAristeu Rozanski done++; 5098360e81bSAristeu Rozanski 510c0667407SAristeu Rozanski specific = ">Tmid Thermal event with intelligent " 511c0667407SAristeu Rozanski "throttling disabled"; 5128360e81bSAristeu Rozanski } 513c0667407SAristeu Rozanski break; 514eb60705aSEric Wollesen } 515eb60705aSEric Wollesen 516eb60705aSEric Wollesen /* Form out message */ 517eb60705aSEric Wollesen snprintf(msg, sizeof(msg), 518702df640SMauro Carvalho Chehab "Bank=%d RAS=%d CAS=%d FATAL Err=0x%x (%s)", 519702df640SMauro Carvalho Chehab bank, ras, cas, allErrors, specific); 520eb60705aSEric Wollesen 521eb60705aSEric Wollesen /* Call the helper to output message */ 522702df640SMauro Carvalho Chehab edac_mc_handle_error(HW_EVENT_ERR_FATAL, mci, 0, 0, 0, 523486dfb16SMauro Carvalho Chehab channel >> 1, channel & 1, rank, 524702df640SMauro Carvalho Chehab rdwr ? "Write error" : "Read error", 525702df640SMauro Carvalho Chehab msg, NULL); 526eb60705aSEric Wollesen } 527eb60705aSEric Wollesen 528b2ccaecaSDouglas Thompson /* 529eb60705aSEric Wollesen * i5000_process_fatal_error_info(struct mem_ctl_info *mci, 530eb60705aSEric Wollesen * struct i5000_error_info *info, 531eb60705aSEric Wollesen * int handle_errors); 532eb60705aSEric Wollesen * 533eb60705aSEric Wollesen * handle the Intel NON-FATAL errors, if any 534eb60705aSEric Wollesen */ 535eb60705aSEric Wollesen static void i5000_process_nonfatal_error_info(struct mem_ctl_info *mci, 536eb60705aSEric Wollesen struct i5000_error_info *info, 537eb60705aSEric Wollesen int handle_errors) 538eb60705aSEric Wollesen { 539c0667407SAristeu Rozanski char msg[EDAC_MC_LABEL_LEN + 1 + 170]; 540c0667407SAristeu Rozanski char *specific = NULL; 541eb60705aSEric Wollesen u32 allErrors; 542eb60705aSEric Wollesen u32 ue_errors; 543eb60705aSEric Wollesen u32 ce_errors; 544eb60705aSEric Wollesen u32 misc_errors; 545eb60705aSEric Wollesen int branch; 546eb60705aSEric Wollesen int channel; 547eb60705aSEric Wollesen int bank; 548eb60705aSEric Wollesen int rank; 549eb60705aSEric Wollesen int rdwr; 550eb60705aSEric Wollesen int ras, cas; 551eb60705aSEric Wollesen 552eb60705aSEric Wollesen /* mask off the Error bits that are possible */ 553eb60705aSEric Wollesen allErrors = (info->ferr_nf_fbd & FERR_NF_MASK); 554eb60705aSEric Wollesen if (!allErrors) 555eb60705aSEric Wollesen return; /* if no error, return now */ 556eb60705aSEric Wollesen 557eb60705aSEric Wollesen /* ONLY ONE of the possible error bits will be set, as per the docs */ 558eb60705aSEric Wollesen ue_errors = allErrors & FERR_NF_UNCORRECTABLE; 559eb60705aSEric Wollesen if (ue_errors) { 560*956b9ba1SJoe Perches edac_dbg(0, "\tUncorrected bits= 0x%x\n", ue_errors); 561eb60705aSEric Wollesen 562eb60705aSEric Wollesen branch = EXTRACT_FBDCHAN_INDX(info->ferr_nf_fbd); 563118f3e1aSTamas Vincze 564118f3e1aSTamas Vincze /* 565118f3e1aSTamas Vincze * According with i5000 datasheet, bit 28 has no significance 566118f3e1aSTamas Vincze * for errors M4Err-M12Err and M17Err-M21Err, on FERR_NF_FBD 567118f3e1aSTamas Vincze */ 568118f3e1aSTamas Vincze channel = branch & 2; 569118f3e1aSTamas Vincze 570eb60705aSEric Wollesen bank = NREC_BANK(info->nrecmema); 571eb60705aSEric Wollesen rank = NREC_RANK(info->nrecmema); 572eb60705aSEric Wollesen rdwr = NREC_RDWR(info->nrecmema); 573eb60705aSEric Wollesen ras = NREC_RAS(info->nrecmemb); 574eb60705aSEric Wollesen cas = NREC_CAS(info->nrecmemb); 575eb60705aSEric Wollesen 576*956b9ba1SJoe Perches edac_dbg(0, "\t\tCSROW= %d Channels= %d,%d (Branch= %d DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n", 577eb60705aSEric Wollesen rank, channel, channel + 1, branch >> 1, bank, 578eb60705aSEric Wollesen rdwr ? "Write" : "Read", ras, cas); 579eb60705aSEric Wollesen 580c0667407SAristeu Rozanski switch (ue_errors) { 581c0667407SAristeu Rozanski case FERR_NF_M12ERR: 582c0667407SAristeu Rozanski specific = "Non-Aliased Uncorrectable Patrol Data ECC"; 583c0667407SAristeu Rozanski break; 584c0667407SAristeu Rozanski case FERR_NF_M11ERR: 585c0667407SAristeu Rozanski specific = "Non-Aliased Uncorrectable Spare-Copy " 586c0667407SAristeu Rozanski "Data ECC"; 587c0667407SAristeu Rozanski break; 588c0667407SAristeu Rozanski case FERR_NF_M10ERR: 589c0667407SAristeu Rozanski specific = "Non-Aliased Uncorrectable Mirrored Demand " 590c0667407SAristeu Rozanski "Data ECC"; 591c0667407SAristeu Rozanski break; 592c0667407SAristeu Rozanski case FERR_NF_M9ERR: 593c0667407SAristeu Rozanski specific = "Non-Aliased Uncorrectable Non-Mirrored " 594c0667407SAristeu Rozanski "Demand Data ECC"; 595c0667407SAristeu Rozanski break; 596c0667407SAristeu Rozanski case FERR_NF_M8ERR: 597c0667407SAristeu Rozanski specific = "Aliased Uncorrectable Patrol Data ECC"; 598c0667407SAristeu Rozanski break; 599c0667407SAristeu Rozanski case FERR_NF_M7ERR: 600c0667407SAristeu Rozanski specific = "Aliased Uncorrectable Spare-Copy Data ECC"; 601c0667407SAristeu Rozanski break; 602c0667407SAristeu Rozanski case FERR_NF_M6ERR: 603c0667407SAristeu Rozanski specific = "Aliased Uncorrectable Mirrored Demand " 604c0667407SAristeu Rozanski "Data ECC"; 605c0667407SAristeu Rozanski break; 606c0667407SAristeu Rozanski case FERR_NF_M5ERR: 607c0667407SAristeu Rozanski specific = "Aliased Uncorrectable Non-Mirrored Demand " 608c0667407SAristeu Rozanski "Data ECC"; 609c0667407SAristeu Rozanski break; 610c0667407SAristeu Rozanski case FERR_NF_M4ERR: 611c0667407SAristeu Rozanski specific = "Uncorrectable Data ECC on Replay"; 612c0667407SAristeu Rozanski break; 613c0667407SAristeu Rozanski } 614c0667407SAristeu Rozanski 615eb60705aSEric Wollesen /* Form out message */ 616eb60705aSEric Wollesen snprintf(msg, sizeof(msg), 617702df640SMauro Carvalho Chehab "Rank=%d Bank=%d RAS=%d CAS=%d, UE Err=0x%x (%s)", 618702df640SMauro Carvalho Chehab rank, bank, ras, cas, ue_errors, specific); 619eb60705aSEric Wollesen 620eb60705aSEric Wollesen /* Call the helper to output message */ 621702df640SMauro Carvalho Chehab edac_mc_handle_error(HW_EVENT_ERR_UNCORRECTED, mci, 0, 0, 0, 622702df640SMauro Carvalho Chehab channel >> 1, -1, rank, 623702df640SMauro Carvalho Chehab rdwr ? "Write error" : "Read error", 624702df640SMauro Carvalho Chehab msg, NULL); 625eb60705aSEric Wollesen } 626eb60705aSEric Wollesen 627eb60705aSEric Wollesen /* Check correctable errors */ 628eb60705aSEric Wollesen ce_errors = allErrors & FERR_NF_CORRECTABLE; 629eb60705aSEric Wollesen if (ce_errors) { 630*956b9ba1SJoe Perches edac_dbg(0, "\tCorrected bits= 0x%x\n", ce_errors); 631eb60705aSEric Wollesen 632eb60705aSEric Wollesen branch = EXTRACT_FBDCHAN_INDX(info->ferr_nf_fbd); 633eb60705aSEric Wollesen 634eb60705aSEric Wollesen channel = 0; 635eb60705aSEric Wollesen if (REC_ECC_LOCATOR_ODD(info->redmemb)) 636eb60705aSEric Wollesen channel = 1; 637eb60705aSEric Wollesen 638eb60705aSEric Wollesen /* Convert channel to be based from zero, instead of 639eb60705aSEric Wollesen * from branch base of 0 */ 640eb60705aSEric Wollesen channel += branch; 641eb60705aSEric Wollesen 642eb60705aSEric Wollesen bank = REC_BANK(info->recmema); 643eb60705aSEric Wollesen rank = REC_RANK(info->recmema); 644eb60705aSEric Wollesen rdwr = REC_RDWR(info->recmema); 645eb60705aSEric Wollesen ras = REC_RAS(info->recmemb); 646eb60705aSEric Wollesen cas = REC_CAS(info->recmemb); 647eb60705aSEric Wollesen 648*956b9ba1SJoe Perches edac_dbg(0, "\t\tCSROW= %d Channel= %d (Branch %d DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n", 649eb60705aSEric Wollesen rank, channel, branch >> 1, bank, 650eb60705aSEric Wollesen rdwr ? "Write" : "Read", ras, cas); 651eb60705aSEric Wollesen 652c0667407SAristeu Rozanski switch (ce_errors) { 653c0667407SAristeu Rozanski case FERR_NF_M17ERR: 654c0667407SAristeu Rozanski specific = "Correctable Non-Mirrored Demand Data ECC"; 655c0667407SAristeu Rozanski break; 656c0667407SAristeu Rozanski case FERR_NF_M18ERR: 657c0667407SAristeu Rozanski specific = "Correctable Mirrored Demand Data ECC"; 658c0667407SAristeu Rozanski break; 659c0667407SAristeu Rozanski case FERR_NF_M19ERR: 660c0667407SAristeu Rozanski specific = "Correctable Spare-Copy Data ECC"; 661c0667407SAristeu Rozanski break; 662c0667407SAristeu Rozanski case FERR_NF_M20ERR: 663c0667407SAristeu Rozanski specific = "Correctable Patrol Data ECC"; 664c0667407SAristeu Rozanski break; 665c0667407SAristeu Rozanski } 666c0667407SAristeu Rozanski 667eb60705aSEric Wollesen /* Form out message */ 668eb60705aSEric Wollesen snprintf(msg, sizeof(msg), 669702df640SMauro Carvalho Chehab "Rank=%d Bank=%d RDWR=%s RAS=%d " 670c0667407SAristeu Rozanski "CAS=%d, CE Err=0x%x (%s))", branch >> 1, bank, 671c0667407SAristeu Rozanski rdwr ? "Write" : "Read", ras, cas, ce_errors, 672c0667407SAristeu Rozanski specific); 673eb60705aSEric Wollesen 674eb60705aSEric Wollesen /* Call the helper to output message */ 675702df640SMauro Carvalho Chehab edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 0, 0, 0, 676702df640SMauro Carvalho Chehab channel >> 1, channel % 2, rank, 677702df640SMauro Carvalho Chehab rdwr ? "Write error" : "Read error", 678702df640SMauro Carvalho Chehab msg, NULL); 679eb60705aSEric Wollesen } 680eb60705aSEric Wollesen 681c0667407SAristeu Rozanski if (!misc_messages) 682c0667407SAristeu Rozanski return; 683eb60705aSEric Wollesen 684c0667407SAristeu Rozanski misc_errors = allErrors & (FERR_NF_NON_RETRY | FERR_NF_NORTH_CRC | 685c0667407SAristeu Rozanski FERR_NF_SPD_PROTOCOL | FERR_NF_DIMM_SPARE); 686eb60705aSEric Wollesen if (misc_errors) { 687c0667407SAristeu Rozanski switch (misc_errors) { 688c0667407SAristeu Rozanski case FERR_NF_M13ERR: 689c0667407SAristeu Rozanski specific = "Non-Retry or Redundant Retry FBD Memory " 690c0667407SAristeu Rozanski "Alert or Redundant Fast Reset Timeout"; 691c0667407SAristeu Rozanski break; 692c0667407SAristeu Rozanski case FERR_NF_M14ERR: 693c0667407SAristeu Rozanski specific = "Non-Retry or Redundant Retry FBD " 694c0667407SAristeu Rozanski "Configuration Alert"; 695c0667407SAristeu Rozanski break; 696c0667407SAristeu Rozanski case FERR_NF_M15ERR: 697c0667407SAristeu Rozanski specific = "Non-Retry or Redundant Retry FBD " 698c0667407SAristeu Rozanski "Northbound CRC error on read data"; 699c0667407SAristeu Rozanski break; 700c0667407SAristeu Rozanski case FERR_NF_M21ERR: 701c0667407SAristeu Rozanski specific = "FBD Northbound CRC error on " 702c0667407SAristeu Rozanski "FBD Sync Status"; 703c0667407SAristeu Rozanski break; 704c0667407SAristeu Rozanski case FERR_NF_M22ERR: 705c0667407SAristeu Rozanski specific = "SPD protocol error"; 706c0667407SAristeu Rozanski break; 707c0667407SAristeu Rozanski case FERR_NF_M27ERR: 708c0667407SAristeu Rozanski specific = "DIMM-spare copy started"; 709c0667407SAristeu Rozanski break; 710c0667407SAristeu Rozanski case FERR_NF_M28ERR: 711c0667407SAristeu Rozanski specific = "DIMM-spare copy completed"; 712c0667407SAristeu Rozanski break; 713eb60705aSEric Wollesen } 714c0667407SAristeu Rozanski branch = EXTRACT_FBDCHAN_INDX(info->ferr_nf_fbd); 715eb60705aSEric Wollesen 716c0667407SAristeu Rozanski /* Form out message */ 717c0667407SAristeu Rozanski snprintf(msg, sizeof(msg), 718702df640SMauro Carvalho Chehab "Err=%#x (%s)", misc_errors, specific); 719eb60705aSEric Wollesen 720c0667407SAristeu Rozanski /* Call the helper to output message */ 721702df640SMauro Carvalho Chehab edac_mc_handle_error(HW_EVENT_ERR_CORRECTED, mci, 0, 0, 0, 722702df640SMauro Carvalho Chehab branch >> 1, -1, -1, 723702df640SMauro Carvalho Chehab "Misc error", msg, NULL); 724eb60705aSEric Wollesen } 725eb60705aSEric Wollesen } 726eb60705aSEric Wollesen 727b2ccaecaSDouglas Thompson /* 728eb60705aSEric Wollesen * i5000_process_error_info Process the error info that is 729eb60705aSEric Wollesen * in the 'info' structure, previously retrieved from hardware 730eb60705aSEric Wollesen */ 731eb60705aSEric Wollesen static void i5000_process_error_info(struct mem_ctl_info *mci, 732eb60705aSEric Wollesen struct i5000_error_info *info, 733eb60705aSEric Wollesen int handle_errors) 734eb60705aSEric Wollesen { 735eb60705aSEric Wollesen /* First handle any fatal errors that occurred */ 736eb60705aSEric Wollesen i5000_process_fatal_error_info(mci, info, handle_errors); 737eb60705aSEric Wollesen 738eb60705aSEric Wollesen /* now handle any non-fatal errors that occurred */ 739eb60705aSEric Wollesen i5000_process_nonfatal_error_info(mci, info, handle_errors); 740eb60705aSEric Wollesen } 741eb60705aSEric Wollesen 742b2ccaecaSDouglas Thompson /* 743eb60705aSEric Wollesen * i5000_clear_error Retrieve any error from the hardware 744eb60705aSEric Wollesen * but do NOT process that error. 745eb60705aSEric Wollesen * Used for 'clearing' out of previous errors 746eb60705aSEric Wollesen * Called by the Core module. 747eb60705aSEric Wollesen */ 748eb60705aSEric Wollesen static void i5000_clear_error(struct mem_ctl_info *mci) 749eb60705aSEric Wollesen { 750eb60705aSEric Wollesen struct i5000_error_info info; 751eb60705aSEric Wollesen 752eb60705aSEric Wollesen i5000_get_error_info(mci, &info); 753eb60705aSEric Wollesen } 754eb60705aSEric Wollesen 755b2ccaecaSDouglas Thompson /* 756eb60705aSEric Wollesen * i5000_check_error Retrieve and process errors reported by the 757eb60705aSEric Wollesen * hardware. Called by the Core module. 758eb60705aSEric Wollesen */ 759eb60705aSEric Wollesen static void i5000_check_error(struct mem_ctl_info *mci) 760eb60705aSEric Wollesen { 761eb60705aSEric Wollesen struct i5000_error_info info; 762*956b9ba1SJoe Perches edac_dbg(4, "MC%d\n", mci->mc_idx); 763eb60705aSEric Wollesen i5000_get_error_info(mci, &info); 764eb60705aSEric Wollesen i5000_process_error_info(mci, &info, 1); 765eb60705aSEric Wollesen } 766eb60705aSEric Wollesen 767b2ccaecaSDouglas Thompson /* 768eb60705aSEric Wollesen * i5000_get_devices Find and perform 'get' operation on the MCH's 769eb60705aSEric Wollesen * device/functions we want to reference for this driver 770eb60705aSEric Wollesen * 771eb60705aSEric Wollesen * Need to 'get' device 16 func 1 and func 2 772eb60705aSEric Wollesen */ 773eb60705aSEric Wollesen static int i5000_get_devices(struct mem_ctl_info *mci, int dev_idx) 774eb60705aSEric Wollesen { 775eb60705aSEric Wollesen //const struct i5000_dev_info *i5000_dev = &i5000_devs[dev_idx]; 776eb60705aSEric Wollesen struct i5000_pvt *pvt; 777eb60705aSEric Wollesen struct pci_dev *pdev; 778eb60705aSEric Wollesen 779b2ccaecaSDouglas Thompson pvt = mci->pvt_info; 780eb60705aSEric Wollesen 781eb60705aSEric Wollesen /* Attempt to 'get' the MCH register we want */ 782eb60705aSEric Wollesen pdev = NULL; 783eb60705aSEric Wollesen while (1) { 784eb60705aSEric Wollesen pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 785eb60705aSEric Wollesen PCI_DEVICE_ID_INTEL_I5000_DEV16, pdev); 786eb60705aSEric Wollesen 787eb60705aSEric Wollesen /* End of list, leave */ 788eb60705aSEric Wollesen if (pdev == NULL) { 789eb60705aSEric Wollesen i5000_printk(KERN_ERR, 790eb60705aSEric Wollesen "'system address,Process Bus' " 791eb60705aSEric Wollesen "device not found:" 792eb60705aSEric Wollesen "vendor 0x%x device 0x%x FUNC 1 " 793eb60705aSEric Wollesen "(broken BIOS?)\n", 794eb60705aSEric Wollesen PCI_VENDOR_ID_INTEL, 795eb60705aSEric Wollesen PCI_DEVICE_ID_INTEL_I5000_DEV16); 796eb60705aSEric Wollesen 797eb60705aSEric Wollesen return 1; 798eb60705aSEric Wollesen } 799eb60705aSEric Wollesen 800eb60705aSEric Wollesen /* Scan for device 16 func 1 */ 801eb60705aSEric Wollesen if (PCI_FUNC(pdev->devfn) == 1) 802eb60705aSEric Wollesen break; 803eb60705aSEric Wollesen } 804eb60705aSEric Wollesen 805eb60705aSEric Wollesen pvt->branchmap_werrors = pdev; 806eb60705aSEric Wollesen 807eb60705aSEric Wollesen /* Attempt to 'get' the MCH register we want */ 808eb60705aSEric Wollesen pdev = NULL; 809eb60705aSEric Wollesen while (1) { 810eb60705aSEric Wollesen pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 811eb60705aSEric Wollesen PCI_DEVICE_ID_INTEL_I5000_DEV16, pdev); 812eb60705aSEric Wollesen 813eb60705aSEric Wollesen if (pdev == NULL) { 814eb60705aSEric Wollesen i5000_printk(KERN_ERR, 815eb60705aSEric Wollesen "MC: 'branchmap,control,errors' " 816eb60705aSEric Wollesen "device not found:" 817eb60705aSEric Wollesen "vendor 0x%x device 0x%x Func 2 " 818eb60705aSEric Wollesen "(broken BIOS?)\n", 819eb60705aSEric Wollesen PCI_VENDOR_ID_INTEL, 820eb60705aSEric Wollesen PCI_DEVICE_ID_INTEL_I5000_DEV16); 821eb60705aSEric Wollesen 822eb60705aSEric Wollesen pci_dev_put(pvt->branchmap_werrors); 823eb60705aSEric Wollesen return 1; 824eb60705aSEric Wollesen } 825eb60705aSEric Wollesen 826eb60705aSEric Wollesen /* Scan for device 16 func 1 */ 827eb60705aSEric Wollesen if (PCI_FUNC(pdev->devfn) == 2) 828eb60705aSEric Wollesen break; 829eb60705aSEric Wollesen } 830eb60705aSEric Wollesen 831eb60705aSEric Wollesen pvt->fsb_error_regs = pdev; 832eb60705aSEric Wollesen 833*956b9ba1SJoe Perches edac_dbg(1, "System Address, processor bus- PCI Bus ID: %s %x:%x\n", 834eb60705aSEric Wollesen pci_name(pvt->system_address), 835eb60705aSEric Wollesen pvt->system_address->vendor, pvt->system_address->device); 836*956b9ba1SJoe Perches edac_dbg(1, "Branchmap, control and errors - PCI Bus ID: %s %x:%x\n", 837eb60705aSEric Wollesen pci_name(pvt->branchmap_werrors), 838*956b9ba1SJoe Perches pvt->branchmap_werrors->vendor, 839*956b9ba1SJoe Perches pvt->branchmap_werrors->device); 840*956b9ba1SJoe Perches edac_dbg(1, "FSB Error Regs - PCI Bus ID: %s %x:%x\n", 841eb60705aSEric Wollesen pci_name(pvt->fsb_error_regs), 842eb60705aSEric Wollesen pvt->fsb_error_regs->vendor, pvt->fsb_error_regs->device); 843eb60705aSEric Wollesen 844eb60705aSEric Wollesen pdev = NULL; 845eb60705aSEric Wollesen pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 846eb60705aSEric Wollesen PCI_DEVICE_ID_I5000_BRANCH_0, pdev); 847eb60705aSEric Wollesen 848eb60705aSEric Wollesen if (pdev == NULL) { 849eb60705aSEric Wollesen i5000_printk(KERN_ERR, 850eb60705aSEric Wollesen "MC: 'BRANCH 0' device not found:" 851eb60705aSEric Wollesen "vendor 0x%x device 0x%x Func 0 (broken BIOS?)\n", 852eb60705aSEric Wollesen PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_I5000_BRANCH_0); 853eb60705aSEric Wollesen 854eb60705aSEric Wollesen pci_dev_put(pvt->branchmap_werrors); 855eb60705aSEric Wollesen pci_dev_put(pvt->fsb_error_regs); 856eb60705aSEric Wollesen return 1; 857eb60705aSEric Wollesen } 858eb60705aSEric Wollesen 859eb60705aSEric Wollesen pvt->branch_0 = pdev; 860eb60705aSEric Wollesen 861eb60705aSEric Wollesen /* If this device claims to have more than 2 channels then 862eb60705aSEric Wollesen * fetch Branch 1's information 863eb60705aSEric Wollesen */ 864eb60705aSEric Wollesen if (pvt->maxch >= CHANNELS_PER_BRANCH) { 865eb60705aSEric Wollesen pdev = NULL; 866eb60705aSEric Wollesen pdev = pci_get_device(PCI_VENDOR_ID_INTEL, 867eb60705aSEric Wollesen PCI_DEVICE_ID_I5000_BRANCH_1, pdev); 868eb60705aSEric Wollesen 869eb60705aSEric Wollesen if (pdev == NULL) { 870eb60705aSEric Wollesen i5000_printk(KERN_ERR, 871eb60705aSEric Wollesen "MC: 'BRANCH 1' device not found:" 872eb60705aSEric Wollesen "vendor 0x%x device 0x%x Func 0 " 873eb60705aSEric Wollesen "(broken BIOS?)\n", 874eb60705aSEric Wollesen PCI_VENDOR_ID_INTEL, 875eb60705aSEric Wollesen PCI_DEVICE_ID_I5000_BRANCH_1); 876eb60705aSEric Wollesen 877eb60705aSEric Wollesen pci_dev_put(pvt->branchmap_werrors); 878eb60705aSEric Wollesen pci_dev_put(pvt->fsb_error_regs); 879eb60705aSEric Wollesen pci_dev_put(pvt->branch_0); 880eb60705aSEric Wollesen return 1; 881eb60705aSEric Wollesen } 882eb60705aSEric Wollesen 883eb60705aSEric Wollesen pvt->branch_1 = pdev; 884eb60705aSEric Wollesen } 885eb60705aSEric Wollesen 886eb60705aSEric Wollesen return 0; 887eb60705aSEric Wollesen } 888eb60705aSEric Wollesen 889b2ccaecaSDouglas Thompson /* 890eb60705aSEric Wollesen * i5000_put_devices 'put' all the devices that we have 891eb60705aSEric Wollesen * reserved via 'get' 892eb60705aSEric Wollesen */ 893eb60705aSEric Wollesen static void i5000_put_devices(struct mem_ctl_info *mci) 894eb60705aSEric Wollesen { 895eb60705aSEric Wollesen struct i5000_pvt *pvt; 896eb60705aSEric Wollesen 897b2ccaecaSDouglas Thompson pvt = mci->pvt_info; 898eb60705aSEric Wollesen 899eb60705aSEric Wollesen pci_dev_put(pvt->branchmap_werrors); /* FUNC 1 */ 900eb60705aSEric Wollesen pci_dev_put(pvt->fsb_error_regs); /* FUNC 2 */ 901eb60705aSEric Wollesen pci_dev_put(pvt->branch_0); /* DEV 21 */ 902eb60705aSEric Wollesen 903eb60705aSEric Wollesen /* Only if more than 2 channels do we release the second branch */ 904b2ccaecaSDouglas Thompson if (pvt->maxch >= CHANNELS_PER_BRANCH) 905eb60705aSEric Wollesen pci_dev_put(pvt->branch_1); /* DEV 22 */ 906eb60705aSEric Wollesen } 907eb60705aSEric Wollesen 908b2ccaecaSDouglas Thompson /* 909eb60705aSEric Wollesen * determine_amb_resent 910eb60705aSEric Wollesen * 911eb60705aSEric Wollesen * the information is contained in NUM_MTRS different registers 912eb60705aSEric Wollesen * determineing which of the NUM_MTRS requires knowing 913eb60705aSEric Wollesen * which channel is in question 914eb60705aSEric Wollesen * 915eb60705aSEric Wollesen * 2 branches, each with 2 channels 916eb60705aSEric Wollesen * b0_ambpresent0 for channel '0' 917eb60705aSEric Wollesen * b0_ambpresent1 for channel '1' 918eb60705aSEric Wollesen * b1_ambpresent0 for channel '2' 919eb60705aSEric Wollesen * b1_ambpresent1 for channel '3' 920eb60705aSEric Wollesen */ 921eb60705aSEric Wollesen static int determine_amb_present_reg(struct i5000_pvt *pvt, int channel) 922eb60705aSEric Wollesen { 923eb60705aSEric Wollesen int amb_present; 924eb60705aSEric Wollesen 925eb60705aSEric Wollesen if (channel < CHANNELS_PER_BRANCH) { 926eb60705aSEric Wollesen if (channel & 0x1) 927eb60705aSEric Wollesen amb_present = pvt->b0_ambpresent1; 928eb60705aSEric Wollesen else 929eb60705aSEric Wollesen amb_present = pvt->b0_ambpresent0; 930eb60705aSEric Wollesen } else { 931eb60705aSEric Wollesen if (channel & 0x1) 932eb60705aSEric Wollesen amb_present = pvt->b1_ambpresent1; 933eb60705aSEric Wollesen else 934eb60705aSEric Wollesen amb_present = pvt->b1_ambpresent0; 935eb60705aSEric Wollesen } 936eb60705aSEric Wollesen 937eb60705aSEric Wollesen return amb_present; 938eb60705aSEric Wollesen } 939eb60705aSEric Wollesen 940b2ccaecaSDouglas Thompson /* 941eb60705aSEric Wollesen * determine_mtr(pvt, csrow, channel) 942eb60705aSEric Wollesen * 943eb60705aSEric Wollesen * return the proper MTR register as determine by the csrow and channel desired 944eb60705aSEric Wollesen */ 94564e1fdafSMauro Carvalho Chehab static int determine_mtr(struct i5000_pvt *pvt, int slot, int channel) 946eb60705aSEric Wollesen { 947eb60705aSEric Wollesen int mtr; 948eb60705aSEric Wollesen 949eb60705aSEric Wollesen if (channel < CHANNELS_PER_BRANCH) 95064e1fdafSMauro Carvalho Chehab mtr = pvt->b0_mtr[slot]; 951eb60705aSEric Wollesen else 95264e1fdafSMauro Carvalho Chehab mtr = pvt->b1_mtr[slot]; 953eb60705aSEric Wollesen 954eb60705aSEric Wollesen return mtr; 955eb60705aSEric Wollesen } 956eb60705aSEric Wollesen 957b2ccaecaSDouglas Thompson /* 958eb60705aSEric Wollesen */ 959eb60705aSEric Wollesen static void decode_mtr(int slot_row, u16 mtr) 960eb60705aSEric Wollesen { 961eb60705aSEric Wollesen int ans; 962eb60705aSEric Wollesen 963eb60705aSEric Wollesen ans = MTR_DIMMS_PRESENT(mtr); 964eb60705aSEric Wollesen 965*956b9ba1SJoe Perches edac_dbg(2, "\tMTR%d=0x%x: DIMMs are %sPresent\n", 966*956b9ba1SJoe Perches slot_row, mtr, ans ? "" : "NOT "); 967eb60705aSEric Wollesen if (!ans) 968eb60705aSEric Wollesen return; 969eb60705aSEric Wollesen 970*956b9ba1SJoe Perches edac_dbg(2, "\t\tWIDTH: x%d\n", MTR_DRAM_WIDTH(mtr)); 971*956b9ba1SJoe Perches edac_dbg(2, "\t\tNUMBANK: %d bank(s)\n", MTR_DRAM_BANKS(mtr)); 972*956b9ba1SJoe Perches edac_dbg(2, "\t\tNUMRANK: %s\n", 973*956b9ba1SJoe Perches MTR_DIMM_RANK(mtr) ? "double" : "single"); 974*956b9ba1SJoe Perches edac_dbg(2, "\t\tNUMROW: %s\n", 9757e881856SJoe Perches MTR_DIMM_ROWS(mtr) == 0 ? "8,192 - 13 rows" : 9767e881856SJoe Perches MTR_DIMM_ROWS(mtr) == 1 ? "16,384 - 14 rows" : 9777e881856SJoe Perches MTR_DIMM_ROWS(mtr) == 2 ? "32,768 - 15 rows" : 9787e881856SJoe Perches "reserved"); 979*956b9ba1SJoe Perches edac_dbg(2, "\t\tNUMCOL: %s\n", 9807e881856SJoe Perches MTR_DIMM_COLS(mtr) == 0 ? "1,024 - 10 columns" : 9817e881856SJoe Perches MTR_DIMM_COLS(mtr) == 1 ? "2,048 - 11 columns" : 9827e881856SJoe Perches MTR_DIMM_COLS(mtr) == 2 ? "4,096 - 12 columns" : 9837e881856SJoe Perches "reserved"); 984eb60705aSEric Wollesen } 985eb60705aSEric Wollesen 98664e1fdafSMauro Carvalho Chehab static void handle_channel(struct i5000_pvt *pvt, int slot, int channel, 987eb60705aSEric Wollesen struct i5000_dimm_info *dinfo) 988eb60705aSEric Wollesen { 989eb60705aSEric Wollesen int mtr; 990eb60705aSEric Wollesen int amb_present_reg; 991eb60705aSEric Wollesen int addrBits; 992eb60705aSEric Wollesen 99364e1fdafSMauro Carvalho Chehab mtr = determine_mtr(pvt, slot, channel); 994eb60705aSEric Wollesen if (MTR_DIMMS_PRESENT(mtr)) { 995eb60705aSEric Wollesen amb_present_reg = determine_amb_present_reg(pvt, channel); 996eb60705aSEric Wollesen 997eb60705aSEric Wollesen /* Determine if there is a DIMM present in this DIMM slot */ 99864e1fdafSMauro Carvalho Chehab if (amb_present_reg) { 999eb60705aSEric Wollesen dinfo->dual_rank = MTR_DIMM_RANK(mtr); 1000eb60705aSEric Wollesen 1001eb60705aSEric Wollesen /* Start with the number of bits for a Bank 1002eb60705aSEric Wollesen * on the DRAM */ 1003eb60705aSEric Wollesen addrBits = MTR_DRAM_BANKS_ADDR_BITS(mtr); 1004eb60705aSEric Wollesen /* Add the number of ROW bits */ 1005eb60705aSEric Wollesen addrBits += MTR_DIMM_ROWS_ADDR_BITS(mtr); 1006eb60705aSEric Wollesen /* add the number of COLUMN bits */ 1007eb60705aSEric Wollesen addrBits += MTR_DIMM_COLS_ADDR_BITS(mtr); 1008eb60705aSEric Wollesen 1009eb60705aSEric Wollesen addrBits += 6; /* add 64 bits per DIMM */ 1010eb60705aSEric Wollesen addrBits -= 20; /* divide by 2^^20 */ 1011eb60705aSEric Wollesen addrBits -= 3; /* 8 bits per bytes */ 1012eb60705aSEric Wollesen 1013eb60705aSEric Wollesen dinfo->megabytes = 1 << addrBits; 1014eb60705aSEric Wollesen } 1015eb60705aSEric Wollesen } 1016eb60705aSEric Wollesen } 1017eb60705aSEric Wollesen 1018b2ccaecaSDouglas Thompson /* 1019eb60705aSEric Wollesen * calculate_dimm_size 1020eb60705aSEric Wollesen * 1021eb60705aSEric Wollesen * also will output a DIMM matrix map, if debug is enabled, for viewing 1022eb60705aSEric Wollesen * how the DIMMs are populated 1023eb60705aSEric Wollesen */ 1024eb60705aSEric Wollesen static void calculate_dimm_size(struct i5000_pvt *pvt) 1025eb60705aSEric Wollesen { 1026eb60705aSEric Wollesen struct i5000_dimm_info *dinfo; 102764e1fdafSMauro Carvalho Chehab int slot, channel, branch; 1028eb60705aSEric Wollesen char *p, *mem_buffer; 1029eb60705aSEric Wollesen int space, n; 1030eb60705aSEric Wollesen 1031eb60705aSEric Wollesen /* ================= Generate some debug output ================= */ 1032eb60705aSEric Wollesen space = PAGE_SIZE; 1033eb60705aSEric Wollesen mem_buffer = p = kmalloc(space, GFP_KERNEL); 1034eb60705aSEric Wollesen if (p == NULL) { 1035eb60705aSEric Wollesen i5000_printk(KERN_ERR, "MC: %s:%s() kmalloc() failed\n", 1036eb60705aSEric Wollesen __FILE__, __func__); 1037eb60705aSEric Wollesen return; 1038eb60705aSEric Wollesen } 1039eb60705aSEric Wollesen 104064e1fdafSMauro Carvalho Chehab /* Scan all the actual slots 1041eb60705aSEric Wollesen * and calculate the information for each DIMM 104264e1fdafSMauro Carvalho Chehab * Start with the highest slot first, to display it first 104364e1fdafSMauro Carvalho Chehab * and work toward the 0th slot 1044eb60705aSEric Wollesen */ 104564e1fdafSMauro Carvalho Chehab for (slot = pvt->maxdimmperch - 1; slot >= 0; slot--) { 1046eb60705aSEric Wollesen 104764e1fdafSMauro Carvalho Chehab /* on an odd slot, first output a 'boundary' marker, 1048eb60705aSEric Wollesen * then reset the message buffer */ 104964e1fdafSMauro Carvalho Chehab if (slot & 0x1) { 105064e1fdafSMauro Carvalho Chehab n = snprintf(p, space, "--------------------------" 1051eb60705aSEric Wollesen "--------------------------------"); 1052eb60705aSEric Wollesen p += n; 1053eb60705aSEric Wollesen space -= n; 1054*956b9ba1SJoe Perches edac_dbg(2, "%s\n", mem_buffer); 1055eb60705aSEric Wollesen p = mem_buffer; 1056eb60705aSEric Wollesen space = PAGE_SIZE; 1057eb60705aSEric Wollesen } 105864e1fdafSMauro Carvalho Chehab n = snprintf(p, space, "slot %2d ", slot); 1059eb60705aSEric Wollesen p += n; 1060eb60705aSEric Wollesen space -= n; 1061eb60705aSEric Wollesen 1062eb60705aSEric Wollesen for (channel = 0; channel < pvt->maxch; channel++) { 106364e1fdafSMauro Carvalho Chehab dinfo = &pvt->dimm_info[slot][channel]; 106464e1fdafSMauro Carvalho Chehab handle_channel(pvt, slot, channel, dinfo); 106564e1fdafSMauro Carvalho Chehab if (dinfo->megabytes) 106664e1fdafSMauro Carvalho Chehab n = snprintf(p, space, "%4d MB %dR| ", 106764e1fdafSMauro Carvalho Chehab dinfo->megabytes, dinfo->dual_rank + 1); 106864e1fdafSMauro Carvalho Chehab else 106964e1fdafSMauro Carvalho Chehab n = snprintf(p, space, "%4d MB | ", 0); 1070eb60705aSEric Wollesen p += n; 1071eb60705aSEric Wollesen space -= n; 1072eb60705aSEric Wollesen } 1073eb60705aSEric Wollesen p += n; 1074eb60705aSEric Wollesen space -= n; 1075*956b9ba1SJoe Perches edac_dbg(2, "%s\n", mem_buffer); 107664e1fdafSMauro Carvalho Chehab p = mem_buffer; 107764e1fdafSMauro Carvalho Chehab space = PAGE_SIZE; 1078eb60705aSEric Wollesen } 1079eb60705aSEric Wollesen 1080eb60705aSEric Wollesen /* Output the last bottom 'boundary' marker */ 108164e1fdafSMauro Carvalho Chehab n = snprintf(p, space, "--------------------------" 108264e1fdafSMauro Carvalho Chehab "--------------------------------"); 1083eb60705aSEric Wollesen p += n; 1084eb60705aSEric Wollesen space -= n; 1085*956b9ba1SJoe Perches edac_dbg(2, "%s\n", mem_buffer); 108664e1fdafSMauro Carvalho Chehab p = mem_buffer; 108764e1fdafSMauro Carvalho Chehab space = PAGE_SIZE; 1088eb60705aSEric Wollesen 1089eb60705aSEric Wollesen /* now output the 'channel' labels */ 1090eb60705aSEric Wollesen n = snprintf(p, space, " "); 1091eb60705aSEric Wollesen p += n; 1092eb60705aSEric Wollesen space -= n; 1093eb60705aSEric Wollesen for (channel = 0; channel < pvt->maxch; channel++) { 1094eb60705aSEric Wollesen n = snprintf(p, space, "channel %d | ", channel); 1095eb60705aSEric Wollesen p += n; 1096eb60705aSEric Wollesen space -= n; 1097eb60705aSEric Wollesen } 1098*956b9ba1SJoe Perches edac_dbg(2, "%s\n", mem_buffer); 109964e1fdafSMauro Carvalho Chehab p = mem_buffer; 110064e1fdafSMauro Carvalho Chehab space = PAGE_SIZE; 110164e1fdafSMauro Carvalho Chehab 110264e1fdafSMauro Carvalho Chehab n = snprintf(p, space, " "); 110364e1fdafSMauro Carvalho Chehab p += n; 110464e1fdafSMauro Carvalho Chehab for (branch = 0; branch < MAX_BRANCHES; branch++) { 110564e1fdafSMauro Carvalho Chehab n = snprintf(p, space, " branch %d | ", branch); 1106eb60705aSEric Wollesen p += n; 1107eb60705aSEric Wollesen space -= n; 110864e1fdafSMauro Carvalho Chehab } 1109eb60705aSEric Wollesen 1110eb60705aSEric Wollesen /* output the last message and free buffer */ 1111*956b9ba1SJoe Perches edac_dbg(2, "%s\n", mem_buffer); 1112eb60705aSEric Wollesen kfree(mem_buffer); 1113eb60705aSEric Wollesen } 1114eb60705aSEric Wollesen 1115b2ccaecaSDouglas Thompson /* 1116eb60705aSEric Wollesen * i5000_get_mc_regs read in the necessary registers and 1117eb60705aSEric Wollesen * cache locally 1118eb60705aSEric Wollesen * 1119eb60705aSEric Wollesen * Fills in the private data members 1120eb60705aSEric Wollesen */ 1121eb60705aSEric Wollesen static void i5000_get_mc_regs(struct mem_ctl_info *mci) 1122eb60705aSEric Wollesen { 1123eb60705aSEric Wollesen struct i5000_pvt *pvt; 1124eb60705aSEric Wollesen u32 actual_tolm; 1125eb60705aSEric Wollesen u16 limit; 1126eb60705aSEric Wollesen int slot_row; 1127eb60705aSEric Wollesen int maxch; 1128eb60705aSEric Wollesen int maxdimmperch; 1129eb60705aSEric Wollesen int way0, way1; 1130eb60705aSEric Wollesen 1131b2ccaecaSDouglas Thompson pvt = mci->pvt_info; 1132eb60705aSEric Wollesen 1133eb60705aSEric Wollesen pci_read_config_dword(pvt->system_address, AMBASE, 1134eb60705aSEric Wollesen (u32 *) & pvt->ambase); 1135eb60705aSEric Wollesen pci_read_config_dword(pvt->system_address, AMBASE + sizeof(u32), 1136eb60705aSEric Wollesen ((u32 *) & pvt->ambase) + sizeof(u32)); 1137eb60705aSEric Wollesen 1138eb60705aSEric Wollesen maxdimmperch = pvt->maxdimmperch; 1139eb60705aSEric Wollesen maxch = pvt->maxch; 1140eb60705aSEric Wollesen 1141*956b9ba1SJoe Perches edac_dbg(2, "AMBASE= 0x%lx MAXCH= %d MAX-DIMM-Per-CH= %d\n", 1142eb60705aSEric Wollesen (long unsigned int)pvt->ambase, pvt->maxch, pvt->maxdimmperch); 1143eb60705aSEric Wollesen 1144eb60705aSEric Wollesen /* Get the Branch Map regs */ 1145eb60705aSEric Wollesen pci_read_config_word(pvt->branchmap_werrors, TOLM, &pvt->tolm); 1146eb60705aSEric Wollesen pvt->tolm >>= 12; 1147*956b9ba1SJoe Perches edac_dbg(2, "TOLM (number of 256M regions) =%u (0x%x)\n", 1148*956b9ba1SJoe Perches pvt->tolm, pvt->tolm); 1149eb60705aSEric Wollesen 1150eb60705aSEric Wollesen actual_tolm = pvt->tolm << 28; 1151*956b9ba1SJoe Perches edac_dbg(2, "Actual TOLM byte addr=%u (0x%x)\n", 1152*956b9ba1SJoe Perches actual_tolm, actual_tolm); 1153eb60705aSEric Wollesen 1154eb60705aSEric Wollesen pci_read_config_word(pvt->branchmap_werrors, MIR0, &pvt->mir0); 1155eb60705aSEric Wollesen pci_read_config_word(pvt->branchmap_werrors, MIR1, &pvt->mir1); 1156eb60705aSEric Wollesen pci_read_config_word(pvt->branchmap_werrors, MIR2, &pvt->mir2); 1157eb60705aSEric Wollesen 1158eb60705aSEric Wollesen /* Get the MIR[0-2] regs */ 1159eb60705aSEric Wollesen limit = (pvt->mir0 >> 4) & 0x0FFF; 1160eb60705aSEric Wollesen way0 = pvt->mir0 & 0x1; 1161eb60705aSEric Wollesen way1 = pvt->mir0 & 0x2; 1162*956b9ba1SJoe Perches edac_dbg(2, "MIR0: limit= 0x%x WAY1= %u WAY0= %x\n", 1163*956b9ba1SJoe Perches limit, way1, way0); 1164eb60705aSEric Wollesen limit = (pvt->mir1 >> 4) & 0x0FFF; 1165eb60705aSEric Wollesen way0 = pvt->mir1 & 0x1; 1166eb60705aSEric Wollesen way1 = pvt->mir1 & 0x2; 1167*956b9ba1SJoe Perches edac_dbg(2, "MIR1: limit= 0x%x WAY1= %u WAY0= %x\n", 1168*956b9ba1SJoe Perches limit, way1, way0); 1169eb60705aSEric Wollesen limit = (pvt->mir2 >> 4) & 0x0FFF; 1170eb60705aSEric Wollesen way0 = pvt->mir2 & 0x1; 1171eb60705aSEric Wollesen way1 = pvt->mir2 & 0x2; 1172*956b9ba1SJoe Perches edac_dbg(2, "MIR2: limit= 0x%x WAY1= %u WAY0= %x\n", 1173*956b9ba1SJoe Perches limit, way1, way0); 1174eb60705aSEric Wollesen 1175eb60705aSEric Wollesen /* Get the MTR[0-3] regs */ 1176eb60705aSEric Wollesen for (slot_row = 0; slot_row < NUM_MTRS; slot_row++) { 1177eb60705aSEric Wollesen int where = MTR0 + (slot_row * sizeof(u32)); 1178eb60705aSEric Wollesen 1179eb60705aSEric Wollesen pci_read_config_word(pvt->branch_0, where, 1180eb60705aSEric Wollesen &pvt->b0_mtr[slot_row]); 1181eb60705aSEric Wollesen 1182*956b9ba1SJoe Perches edac_dbg(2, "MTR%d where=0x%x B0 value=0x%x\n", 1183*956b9ba1SJoe Perches slot_row, where, pvt->b0_mtr[slot_row]); 1184eb60705aSEric Wollesen 1185eb60705aSEric Wollesen if (pvt->maxch >= CHANNELS_PER_BRANCH) { 1186eb60705aSEric Wollesen pci_read_config_word(pvt->branch_1, where, 1187eb60705aSEric Wollesen &pvt->b1_mtr[slot_row]); 1188*956b9ba1SJoe Perches edac_dbg(2, "MTR%d where=0x%x B1 value=0x%x\n", 1189*956b9ba1SJoe Perches slot_row, where, pvt->b1_mtr[slot_row]); 1190eb60705aSEric Wollesen } else { 1191eb60705aSEric Wollesen pvt->b1_mtr[slot_row] = 0; 1192eb60705aSEric Wollesen } 1193eb60705aSEric Wollesen } 1194eb60705aSEric Wollesen 1195eb60705aSEric Wollesen /* Read and dump branch 0's MTRs */ 1196*956b9ba1SJoe Perches edac_dbg(2, "Memory Technology Registers:\n"); 1197*956b9ba1SJoe Perches edac_dbg(2, " Branch 0:\n"); 1198eb60705aSEric Wollesen for (slot_row = 0; slot_row < NUM_MTRS; slot_row++) { 1199eb60705aSEric Wollesen decode_mtr(slot_row, pvt->b0_mtr[slot_row]); 1200eb60705aSEric Wollesen } 1201eb60705aSEric Wollesen pci_read_config_word(pvt->branch_0, AMB_PRESENT_0, 1202eb60705aSEric Wollesen &pvt->b0_ambpresent0); 1203*956b9ba1SJoe Perches edac_dbg(2, "\t\tAMB-Branch 0-present0 0x%x:\n", pvt->b0_ambpresent0); 1204eb60705aSEric Wollesen pci_read_config_word(pvt->branch_0, AMB_PRESENT_1, 1205eb60705aSEric Wollesen &pvt->b0_ambpresent1); 1206*956b9ba1SJoe Perches edac_dbg(2, "\t\tAMB-Branch 0-present1 0x%x:\n", pvt->b0_ambpresent1); 1207eb60705aSEric Wollesen 1208eb60705aSEric Wollesen /* Only if we have 2 branchs (4 channels) */ 1209eb60705aSEric Wollesen if (pvt->maxch < CHANNELS_PER_BRANCH) { 1210eb60705aSEric Wollesen pvt->b1_ambpresent0 = 0; 1211eb60705aSEric Wollesen pvt->b1_ambpresent1 = 0; 1212eb60705aSEric Wollesen } else { 1213eb60705aSEric Wollesen /* Read and dump branch 1's MTRs */ 1214*956b9ba1SJoe Perches edac_dbg(2, " Branch 1:\n"); 1215eb60705aSEric Wollesen for (slot_row = 0; slot_row < NUM_MTRS; slot_row++) { 1216eb60705aSEric Wollesen decode_mtr(slot_row, pvt->b1_mtr[slot_row]); 1217eb60705aSEric Wollesen } 1218eb60705aSEric Wollesen pci_read_config_word(pvt->branch_1, AMB_PRESENT_0, 1219eb60705aSEric Wollesen &pvt->b1_ambpresent0); 1220*956b9ba1SJoe Perches edac_dbg(2, "\t\tAMB-Branch 1-present0 0x%x:\n", 1221eb60705aSEric Wollesen pvt->b1_ambpresent0); 1222eb60705aSEric Wollesen pci_read_config_word(pvt->branch_1, AMB_PRESENT_1, 1223eb60705aSEric Wollesen &pvt->b1_ambpresent1); 1224*956b9ba1SJoe Perches edac_dbg(2, "\t\tAMB-Branch 1-present1 0x%x:\n", 1225eb60705aSEric Wollesen pvt->b1_ambpresent1); 1226eb60705aSEric Wollesen } 1227eb60705aSEric Wollesen 1228eb60705aSEric Wollesen /* Go and determine the size of each DIMM and place in an 1229eb60705aSEric Wollesen * orderly matrix */ 1230eb60705aSEric Wollesen calculate_dimm_size(pvt); 1231eb60705aSEric Wollesen } 1232eb60705aSEric Wollesen 1233b2ccaecaSDouglas Thompson /* 1234eb60705aSEric Wollesen * i5000_init_csrows Initialize the 'csrows' table within 1235eb60705aSEric Wollesen * the mci control structure with the 1236eb60705aSEric Wollesen * addressing of memory. 1237eb60705aSEric Wollesen * 1238eb60705aSEric Wollesen * return: 1239eb60705aSEric Wollesen * 0 success 1240eb60705aSEric Wollesen * 1 no actual memory found on this MC 1241eb60705aSEric Wollesen */ 1242eb60705aSEric Wollesen static int i5000_init_csrows(struct mem_ctl_info *mci) 1243eb60705aSEric Wollesen { 1244eb60705aSEric Wollesen struct i5000_pvt *pvt; 1245a895bf8bSMauro Carvalho Chehab struct dimm_info *dimm; 1246eb60705aSEric Wollesen int empty, channel_count; 1247eb60705aSEric Wollesen int max_csrows; 124864e1fdafSMauro Carvalho Chehab int mtr; 1249eb60705aSEric Wollesen int csrow_megs; 1250eb60705aSEric Wollesen int channel; 125164e1fdafSMauro Carvalho Chehab int slot; 1252eb60705aSEric Wollesen 1253b2ccaecaSDouglas Thompson pvt = mci->pvt_info; 1254eb60705aSEric Wollesen 1255eb60705aSEric Wollesen channel_count = pvt->maxch; 1256eb60705aSEric Wollesen max_csrows = pvt->maxdimmperch * 2; 1257eb60705aSEric Wollesen 1258eb60705aSEric Wollesen empty = 1; /* Assume NO memory */ 1259eb60705aSEric Wollesen 1260702df640SMauro Carvalho Chehab /* 126164e1fdafSMauro Carvalho Chehab * FIXME: The memory layout used to map slot/channel into the 126264e1fdafSMauro Carvalho Chehab * real memory architecture is weird: branch+slot are "csrows" 126364e1fdafSMauro Carvalho Chehab * and channel is channel. That required an extra array (dimm_info) 126464e1fdafSMauro Carvalho Chehab * to map the dimms. A good cleanup would be to remove this array, 126564e1fdafSMauro Carvalho Chehab * and do a loop here with branch, channel, slot 1266702df640SMauro Carvalho Chehab */ 126764e1fdafSMauro Carvalho Chehab for (slot = 0; slot < max_csrows; slot++) { 126864e1fdafSMauro Carvalho Chehab for (channel = 0; channel < pvt->maxch; channel++) { 1269eb60705aSEric Wollesen 127064e1fdafSMauro Carvalho Chehab mtr = determine_mtr(pvt, slot, channel); 1271eb60705aSEric Wollesen 127264e1fdafSMauro Carvalho Chehab if (!MTR_DIMMS_PRESENT(mtr)) 1273eb60705aSEric Wollesen continue; 1274eb60705aSEric Wollesen 127564e1fdafSMauro Carvalho Chehab dimm = EDAC_DIMM_PTR(mci->layers, mci->dimms, mci->n_layers, 127664e1fdafSMauro Carvalho Chehab channel / MAX_BRANCHES, 127764e1fdafSMauro Carvalho Chehab channel % MAX_BRANCHES, slot); 127864e1fdafSMauro Carvalho Chehab 127964e1fdafSMauro Carvalho Chehab csrow_megs = pvt->dimm_info[slot][channel].megabytes; 1280a895bf8bSMauro Carvalho Chehab dimm->grain = 8; 1281eb60705aSEric Wollesen 1282eb60705aSEric Wollesen /* Assume DDR2 for now */ 1283a895bf8bSMauro Carvalho Chehab dimm->mtype = MEM_FB_DDR2; 1284eb60705aSEric Wollesen 1285eb60705aSEric Wollesen /* ask what device type on this row */ 1286eb60705aSEric Wollesen if (MTR_DRAM_WIDTH(mtr)) 1287a895bf8bSMauro Carvalho Chehab dimm->dtype = DEV_X8; 1288eb60705aSEric Wollesen else 1289a895bf8bSMauro Carvalho Chehab dimm->dtype = DEV_X4; 1290eb60705aSEric Wollesen 1291a895bf8bSMauro Carvalho Chehab dimm->edac_mode = EDAC_S8ECD8ED; 129264e1fdafSMauro Carvalho Chehab dimm->nr_pages = csrow_megs << 8; 1293084a4fccSMauro Carvalho Chehab } 1294eb60705aSEric Wollesen 1295eb60705aSEric Wollesen empty = 0; 1296eb60705aSEric Wollesen } 1297eb60705aSEric Wollesen 1298eb60705aSEric Wollesen return empty; 1299eb60705aSEric Wollesen } 1300eb60705aSEric Wollesen 1301b2ccaecaSDouglas Thompson /* 1302eb60705aSEric Wollesen * i5000_enable_error_reporting 1303eb60705aSEric Wollesen * Turn on the memory reporting features of the hardware 1304eb60705aSEric Wollesen */ 1305eb60705aSEric Wollesen static void i5000_enable_error_reporting(struct mem_ctl_info *mci) 1306eb60705aSEric Wollesen { 1307eb60705aSEric Wollesen struct i5000_pvt *pvt; 1308eb60705aSEric Wollesen u32 fbd_error_mask; 1309eb60705aSEric Wollesen 1310b2ccaecaSDouglas Thompson pvt = mci->pvt_info; 1311eb60705aSEric Wollesen 1312eb60705aSEric Wollesen /* Read the FBD Error Mask Register */ 1313eb60705aSEric Wollesen pci_read_config_dword(pvt->branchmap_werrors, EMASK_FBD, 1314eb60705aSEric Wollesen &fbd_error_mask); 1315eb60705aSEric Wollesen 1316eb60705aSEric Wollesen /* Enable with a '0' */ 1317eb60705aSEric Wollesen fbd_error_mask &= ~(ENABLE_EMASK_ALL); 1318eb60705aSEric Wollesen 1319eb60705aSEric Wollesen pci_write_config_dword(pvt->branchmap_werrors, EMASK_FBD, 1320eb60705aSEric Wollesen fbd_error_mask); 1321eb60705aSEric Wollesen } 1322eb60705aSEric Wollesen 1323b2ccaecaSDouglas Thompson /* 1324702df640SMauro Carvalho Chehab * i5000_get_dimm_and_channel_counts(pdev, &nr_csrows, &num_channels) 1325eb60705aSEric Wollesen * 1326eb60705aSEric Wollesen * ask the device how many channels are present and how many CSROWS 1327eb60705aSEric Wollesen * as well 1328eb60705aSEric Wollesen */ 1329eb60705aSEric Wollesen static void i5000_get_dimm_and_channel_counts(struct pci_dev *pdev, 1330eb60705aSEric Wollesen int *num_dimms_per_channel, 1331eb60705aSEric Wollesen int *num_channels) 1332eb60705aSEric Wollesen { 1333eb60705aSEric Wollesen u8 value; 1334eb60705aSEric Wollesen 1335eb60705aSEric Wollesen /* Need to retrieve just how many channels and dimms per channel are 1336eb60705aSEric Wollesen * supported on this memory controller 1337eb60705aSEric Wollesen */ 1338eb60705aSEric Wollesen pci_read_config_byte(pdev, MAXDIMMPERCH, &value); 133964e1fdafSMauro Carvalho Chehab *num_dimms_per_channel = (int)value; 1340eb60705aSEric Wollesen 1341eb60705aSEric Wollesen pci_read_config_byte(pdev, MAXCH, &value); 1342eb60705aSEric Wollesen *num_channels = (int)value; 1343eb60705aSEric Wollesen } 1344eb60705aSEric Wollesen 1345b2ccaecaSDouglas Thompson /* 1346eb60705aSEric Wollesen * i5000_probe1 Probe for ONE instance of device to see if it is 1347eb60705aSEric Wollesen * present. 1348eb60705aSEric Wollesen * return: 1349eb60705aSEric Wollesen * 0 for FOUND a device 1350eb60705aSEric Wollesen * < 0 for error code 1351eb60705aSEric Wollesen */ 1352eb60705aSEric Wollesen static int i5000_probe1(struct pci_dev *pdev, int dev_idx) 1353eb60705aSEric Wollesen { 1354eb60705aSEric Wollesen struct mem_ctl_info *mci; 1355702df640SMauro Carvalho Chehab struct edac_mc_layer layers[3]; 1356eb60705aSEric Wollesen struct i5000_pvt *pvt; 1357eb60705aSEric Wollesen int num_channels; 1358eb60705aSEric Wollesen int num_dimms_per_channel; 1359eb60705aSEric Wollesen 1360*956b9ba1SJoe Perches edac_dbg(0, "MC: pdev bus %u dev=0x%x fn=0x%x\n", 1361*956b9ba1SJoe Perches pdev->bus->number, 1362eb60705aSEric Wollesen PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn)); 1363eb60705aSEric Wollesen 1364eb60705aSEric Wollesen /* We only are looking for func 0 of the set */ 1365eb60705aSEric Wollesen if (PCI_FUNC(pdev->devfn) != 0) 1366eb60705aSEric Wollesen return -ENODEV; 1367eb60705aSEric Wollesen 1368eb60705aSEric Wollesen /* Ask the devices for the number of CSROWS and CHANNELS so 1369eb60705aSEric Wollesen * that we can calculate the memory resources, etc 1370eb60705aSEric Wollesen * 1371eb60705aSEric Wollesen * The Chipset will report what it can handle which will be greater 1372eb60705aSEric Wollesen * or equal to what the motherboard manufacturer will implement. 1373eb60705aSEric Wollesen * 1374eb60705aSEric Wollesen * As we don't have a motherboard identification routine to determine 1375eb60705aSEric Wollesen * actual number of slots/dimms per channel, we thus utilize the 1376eb60705aSEric Wollesen * resource as specified by the chipset. Thus, we might have 1377eb60705aSEric Wollesen * have more DIMMs per channel than actually on the mobo, but this 1378eb60705aSEric Wollesen * allows the driver to support up to the chipset max, without 1379eb60705aSEric Wollesen * some fancy mobo determination. 1380eb60705aSEric Wollesen */ 1381eb60705aSEric Wollesen i5000_get_dimm_and_channel_counts(pdev, &num_dimms_per_channel, 1382eb60705aSEric Wollesen &num_channels); 1383eb60705aSEric Wollesen 1384*956b9ba1SJoe Perches edac_dbg(0, "MC: Number of Branches=2 Channels= %d DIMMS= %d\n", 1385dd23cd6eSMauro Carvalho Chehab num_channels, num_dimms_per_channel); 1386eb60705aSEric Wollesen 1387eb60705aSEric Wollesen /* allocate a new MC control structure */ 138864e1fdafSMauro Carvalho Chehab 1389702df640SMauro Carvalho Chehab layers[0].type = EDAC_MC_LAYER_BRANCH; 139064e1fdafSMauro Carvalho Chehab layers[0].size = MAX_BRANCHES; 139164e1fdafSMauro Carvalho Chehab layers[0].is_virt_csrow = false; 1392702df640SMauro Carvalho Chehab layers[1].type = EDAC_MC_LAYER_CHANNEL; 139364e1fdafSMauro Carvalho Chehab layers[1].size = num_channels / MAX_BRANCHES; 1394702df640SMauro Carvalho Chehab layers[1].is_virt_csrow = false; 1395702df640SMauro Carvalho Chehab layers[2].type = EDAC_MC_LAYER_SLOT; 1396702df640SMauro Carvalho Chehab layers[2].size = num_dimms_per_channel; 1397702df640SMauro Carvalho Chehab layers[2].is_virt_csrow = true; 1398ca0907b9SMauro Carvalho Chehab mci = edac_mc_alloc(0, ARRAY_SIZE(layers), layers, sizeof(*pvt)); 1399eb60705aSEric Wollesen if (mci == NULL) 1400eb60705aSEric Wollesen return -ENOMEM; 1401eb60705aSEric Wollesen 1402*956b9ba1SJoe Perches edac_dbg(0, "MC: mci = %p\n", mci); 1403eb60705aSEric Wollesen 1404fd687502SMauro Carvalho Chehab mci->pdev = &pdev->dev; /* record ptr to the generic device */ 1405eb60705aSEric Wollesen 1406b2ccaecaSDouglas Thompson pvt = mci->pvt_info; 1407eb60705aSEric Wollesen pvt->system_address = pdev; /* Record this device in our private */ 1408eb60705aSEric Wollesen pvt->maxch = num_channels; 1409eb60705aSEric Wollesen pvt->maxdimmperch = num_dimms_per_channel; 1410eb60705aSEric Wollesen 1411eb60705aSEric Wollesen /* 'get' the pci devices we want to reserve for our use */ 1412eb60705aSEric Wollesen if (i5000_get_devices(mci, dev_idx)) 1413eb60705aSEric Wollesen goto fail0; 1414eb60705aSEric Wollesen 1415eb60705aSEric Wollesen /* Time to get serious */ 1416eb60705aSEric Wollesen i5000_get_mc_regs(mci); /* retrieve the hardware registers */ 1417eb60705aSEric Wollesen 1418eb60705aSEric Wollesen mci->mc_idx = 0; 1419eb60705aSEric Wollesen mci->mtype_cap = MEM_FLAG_FB_DDR2; 1420eb60705aSEric Wollesen mci->edac_ctl_cap = EDAC_FLAG_NONE; 1421eb60705aSEric Wollesen mci->edac_cap = EDAC_FLAG_NONE; 1422eb60705aSEric Wollesen mci->mod_name = "i5000_edac.c"; 1423eb60705aSEric Wollesen mci->mod_ver = I5000_REVISION; 1424eb60705aSEric Wollesen mci->ctl_name = i5000_devs[dev_idx].ctl_name; 1425c4192705SDave Jiang mci->dev_name = pci_name(pdev); 1426eb60705aSEric Wollesen mci->ctl_page_to_phys = NULL; 1427eb60705aSEric Wollesen 1428eb60705aSEric Wollesen /* Set the function pointer to an actual operation function */ 1429eb60705aSEric Wollesen mci->edac_check = i5000_check_error; 1430eb60705aSEric Wollesen 1431eb60705aSEric Wollesen /* initialize the MC control structure 'csrows' table 1432eb60705aSEric Wollesen * with the mapping and control information */ 1433eb60705aSEric Wollesen if (i5000_init_csrows(mci)) { 1434*956b9ba1SJoe Perches edac_dbg(0, "MC: Setting mci->edac_cap to EDAC_FLAG_NONE because i5000_init_csrows() returned nonzero value\n"); 1435eb60705aSEric Wollesen mci->edac_cap = EDAC_FLAG_NONE; /* no csrows found */ 1436eb60705aSEric Wollesen } else { 1437*956b9ba1SJoe Perches edac_dbg(1, "MC: Enable error reporting now\n"); 1438eb60705aSEric Wollesen i5000_enable_error_reporting(mci); 1439eb60705aSEric Wollesen } 1440eb60705aSEric Wollesen 1441eb60705aSEric Wollesen /* add this new MC control structure to EDAC's list of MCs */ 1442b8f6f975SDoug Thompson if (edac_mc_add_mc(mci)) { 1443*956b9ba1SJoe Perches edac_dbg(0, "MC: failed edac_mc_add_mc()\n"); 1444eb60705aSEric Wollesen /* FIXME: perhaps some code should go here that disables error 1445eb60705aSEric Wollesen * reporting if we just enabled it 1446eb60705aSEric Wollesen */ 1447eb60705aSEric Wollesen goto fail1; 1448eb60705aSEric Wollesen } 1449eb60705aSEric Wollesen 1450eb60705aSEric Wollesen i5000_clear_error(mci); 1451eb60705aSEric Wollesen 1452456a2f95SDave Jiang /* allocating generic PCI control info */ 1453456a2f95SDave Jiang i5000_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR); 1454456a2f95SDave Jiang if (!i5000_pci) { 1455456a2f95SDave Jiang printk(KERN_WARNING 1456456a2f95SDave Jiang "%s(): Unable to create PCI control\n", 1457456a2f95SDave Jiang __func__); 1458456a2f95SDave Jiang printk(KERN_WARNING 1459456a2f95SDave Jiang "%s(): PCI error report via EDAC not setup\n", 1460456a2f95SDave Jiang __func__); 1461456a2f95SDave Jiang } 1462456a2f95SDave Jiang 1463eb60705aSEric Wollesen return 0; 1464eb60705aSEric Wollesen 1465eb60705aSEric Wollesen /* Error exit unwinding stack */ 1466eb60705aSEric Wollesen fail1: 1467eb60705aSEric Wollesen 1468eb60705aSEric Wollesen i5000_put_devices(mci); 1469eb60705aSEric Wollesen 1470eb60705aSEric Wollesen fail0: 1471eb60705aSEric Wollesen edac_mc_free(mci); 1472eb60705aSEric Wollesen return -ENODEV; 1473eb60705aSEric Wollesen } 1474eb60705aSEric Wollesen 1475b2ccaecaSDouglas Thompson /* 1476eb60705aSEric Wollesen * i5000_init_one constructor for one instance of device 1477eb60705aSEric Wollesen * 1478eb60705aSEric Wollesen * returns: 1479eb60705aSEric Wollesen * negative on error 1480eb60705aSEric Wollesen * count (>= 0) 1481eb60705aSEric Wollesen */ 1482eb60705aSEric Wollesen static int __devinit i5000_init_one(struct pci_dev *pdev, 1483eb60705aSEric Wollesen const struct pci_device_id *id) 1484eb60705aSEric Wollesen { 1485eb60705aSEric Wollesen int rc; 1486eb60705aSEric Wollesen 1487*956b9ba1SJoe Perches edac_dbg(0, "MC:\n"); 1488eb60705aSEric Wollesen 1489eb60705aSEric Wollesen /* wake up device */ 1490eb60705aSEric Wollesen rc = pci_enable_device(pdev); 149144aa80f0SKulikov Vasiliy if (rc) 1492eb60705aSEric Wollesen return rc; 1493eb60705aSEric Wollesen 1494eb60705aSEric Wollesen /* now probe and enable the device */ 1495eb60705aSEric Wollesen return i5000_probe1(pdev, id->driver_data); 1496eb60705aSEric Wollesen } 1497eb60705aSEric Wollesen 1498b2ccaecaSDouglas Thompson /* 1499eb60705aSEric Wollesen * i5000_remove_one destructor for one instance of device 1500eb60705aSEric Wollesen * 1501eb60705aSEric Wollesen */ 1502eb60705aSEric Wollesen static void __devexit i5000_remove_one(struct pci_dev *pdev) 1503eb60705aSEric Wollesen { 1504eb60705aSEric Wollesen struct mem_ctl_info *mci; 1505eb60705aSEric Wollesen 1506*956b9ba1SJoe Perches edac_dbg(0, "\n"); 1507eb60705aSEric Wollesen 1508456a2f95SDave Jiang if (i5000_pci) 1509456a2f95SDave Jiang edac_pci_release_generic_ctl(i5000_pci); 1510456a2f95SDave Jiang 1511eb60705aSEric Wollesen if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL) 1512eb60705aSEric Wollesen return; 1513eb60705aSEric Wollesen 1514eb60705aSEric Wollesen /* retrieve references to resources, and free those resources */ 1515eb60705aSEric Wollesen i5000_put_devices(mci); 1516eb60705aSEric Wollesen edac_mc_free(mci); 1517eb60705aSEric Wollesen } 1518eb60705aSEric Wollesen 1519b2ccaecaSDouglas Thompson /* 1520eb60705aSEric Wollesen * pci_device_id table for which devices we are looking for 1521eb60705aSEric Wollesen * 1522eb60705aSEric Wollesen * The "E500P" device is the first device supported. 1523eb60705aSEric Wollesen */ 152436c46f31SLionel Debroux static DEFINE_PCI_DEVICE_TABLE(i5000_pci_tbl) = { 1525eb60705aSEric Wollesen {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I5000_DEV16), 1526eb60705aSEric Wollesen .driver_data = I5000P}, 1527eb60705aSEric Wollesen 1528eb60705aSEric Wollesen {0,} /* 0 terminated list. */ 1529eb60705aSEric Wollesen }; 1530eb60705aSEric Wollesen 1531eb60705aSEric Wollesen MODULE_DEVICE_TABLE(pci, i5000_pci_tbl); 1532eb60705aSEric Wollesen 1533b2ccaecaSDouglas Thompson /* 1534eb60705aSEric Wollesen * i5000_driver pci_driver structure for this module 1535eb60705aSEric Wollesen * 1536eb60705aSEric Wollesen */ 1537eb60705aSEric Wollesen static struct pci_driver i5000_driver = { 153857510c2fSDarrick J. Wong .name = KBUILD_BASENAME, 1539eb60705aSEric Wollesen .probe = i5000_init_one, 1540eb60705aSEric Wollesen .remove = __devexit_p(i5000_remove_one), 1541eb60705aSEric Wollesen .id_table = i5000_pci_tbl, 1542eb60705aSEric Wollesen }; 1543eb60705aSEric Wollesen 1544b2ccaecaSDouglas Thompson /* 1545eb60705aSEric Wollesen * i5000_init Module entry function 1546eb60705aSEric Wollesen * Try to initialize this module for its devices 1547eb60705aSEric Wollesen */ 1548eb60705aSEric Wollesen static int __init i5000_init(void) 1549eb60705aSEric Wollesen { 1550eb60705aSEric Wollesen int pci_rc; 1551eb60705aSEric Wollesen 1552*956b9ba1SJoe Perches edac_dbg(2, "MC:\n"); 1553eb60705aSEric Wollesen 1554c3c52bceSHitoshi Mitake /* Ensure that the OPSTATE is set correctly for POLL or NMI */ 1555c3c52bceSHitoshi Mitake opstate_init(); 1556c3c52bceSHitoshi Mitake 1557eb60705aSEric Wollesen pci_rc = pci_register_driver(&i5000_driver); 1558eb60705aSEric Wollesen 1559eb60705aSEric Wollesen return (pci_rc < 0) ? pci_rc : 0; 1560eb60705aSEric Wollesen } 1561eb60705aSEric Wollesen 1562b2ccaecaSDouglas Thompson /* 1563eb60705aSEric Wollesen * i5000_exit() Module exit function 1564eb60705aSEric Wollesen * Unregister the driver 1565eb60705aSEric Wollesen */ 1566eb60705aSEric Wollesen static void __exit i5000_exit(void) 1567eb60705aSEric Wollesen { 1568*956b9ba1SJoe Perches edac_dbg(2, "MC:\n"); 1569eb60705aSEric Wollesen pci_unregister_driver(&i5000_driver); 1570eb60705aSEric Wollesen } 1571eb60705aSEric Wollesen 1572eb60705aSEric Wollesen module_init(i5000_init); 1573eb60705aSEric Wollesen module_exit(i5000_exit); 1574eb60705aSEric Wollesen 1575eb60705aSEric Wollesen MODULE_LICENSE("GPL"); 1576eb60705aSEric Wollesen MODULE_AUTHOR 1577eb60705aSEric Wollesen ("Linux Networx (http://lnxi.com) Doug Thompson <norsk5@xmission.com>"); 1578eb60705aSEric Wollesen MODULE_DESCRIPTION("MC Driver for Intel I5000 memory controllers - " 1579eb60705aSEric Wollesen I5000_REVISION); 1580c3c52bceSHitoshi Mitake 1581c0d12172SDave Jiang module_param(edac_op_state, int, 0444); 1582c0d12172SDave Jiang MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI"); 1583c0667407SAristeu Rozanski module_param(misc_messages, int, 0444); 1584c0667407SAristeu Rozanski MODULE_PARM_DESC(misc_messages, "Log miscellaneous non fatal messages"); 1585c0667407SAristeu Rozanski 1586