xref: /openbmc/linux/drivers/edac/i5000_edac.c (revision 456a2f95)
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  */
3020bcb7a8SDouglas Thompson #define I5000_REVISION    " Ver: 2.0.12 " __DATE__
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 | \
122eb60705aSEric Wollesen 		       					FERR_NF_M8ERR | \
123eb60705aSEric Wollesen 							FERR_NF_M7ERR | \
124eb60705aSEric Wollesen 							FERR_NF_M6ERR | \
125eb60705aSEric Wollesen 							FERR_NF_M5ERR | \
126eb60705aSEric Wollesen 							FERR_NF_M4ERR)
127eb60705aSEric Wollesen #define			FERR_NF_CORRECTABLE	(FERR_NF_M20ERR | \
128eb60705aSEric Wollesen 							FERR_NF_M19ERR | \
129eb60705aSEric Wollesen 							FERR_NF_M18ERR | \
130eb60705aSEric Wollesen 							FERR_NF_M17ERR)
131eb60705aSEric Wollesen #define			FERR_NF_DIMM_SPARE	(FERR_NF_M27ERR | \
132eb60705aSEric Wollesen 							FERR_NF_M28ERR)
133eb60705aSEric Wollesen #define			FERR_NF_THERMAL		(FERR_NF_M26ERR | \
134eb60705aSEric Wollesen 	       						FERR_NF_M25ERR | \
135eb60705aSEric Wollesen 							FERR_NF_M24ERR | \
136eb60705aSEric Wollesen 							FERR_NF_M23ERR)
137eb60705aSEric Wollesen #define			FERR_NF_SPD_PROTOCOL	(FERR_NF_M22ERR)
138eb60705aSEric Wollesen #define			FERR_NF_NORTH_CRC	(FERR_NF_M21ERR)
139eb60705aSEric Wollesen #define			FERR_NF_NON_RETRY	(FERR_NF_M13ERR | \
140eb60705aSEric Wollesen 							FERR_NF_M14ERR | \
141eb60705aSEric Wollesen 							FERR_NF_M15ERR)
142eb60705aSEric Wollesen 
143eb60705aSEric Wollesen #define		NERR_NF_FBD		0xA4
144eb60705aSEric Wollesen #define			FERR_NF_MASK		(FERR_NF_UNCORRECTABLE | \
145eb60705aSEric Wollesen 							FERR_NF_CORRECTABLE | \
146eb60705aSEric Wollesen 							FERR_NF_DIMM_SPARE | \
147eb60705aSEric Wollesen 							FERR_NF_THERMAL | \
148eb60705aSEric Wollesen 							FERR_NF_SPD_PROTOCOL | \
149eb60705aSEric Wollesen 							FERR_NF_NORTH_CRC | \
150eb60705aSEric Wollesen 							FERR_NF_NON_RETRY)
151eb60705aSEric Wollesen 
152eb60705aSEric Wollesen #define		EMASK_FBD		0xA8
153eb60705aSEric Wollesen #define			EMASK_FBD_M28ERR	0x08000000
154eb60705aSEric Wollesen #define			EMASK_FBD_M27ERR	0x04000000
155eb60705aSEric Wollesen #define			EMASK_FBD_M26ERR	0x02000000
156eb60705aSEric Wollesen #define			EMASK_FBD_M25ERR	0x01000000
157eb60705aSEric Wollesen #define			EMASK_FBD_M24ERR	0x00800000
158eb60705aSEric Wollesen #define			EMASK_FBD_M23ERR	0x00400000
159eb60705aSEric Wollesen #define			EMASK_FBD_M22ERR	0x00200000
160eb60705aSEric Wollesen #define			EMASK_FBD_M21ERR	0x00100000
161eb60705aSEric Wollesen #define			EMASK_FBD_M20ERR	0x00080000
162eb60705aSEric Wollesen #define			EMASK_FBD_M19ERR	0x00040000
163eb60705aSEric Wollesen #define			EMASK_FBD_M18ERR	0x00020000
164eb60705aSEric Wollesen #define			EMASK_FBD_M17ERR	0x00010000
165eb60705aSEric Wollesen 
166eb60705aSEric Wollesen #define			EMASK_FBD_M15ERR	0x00004000
167eb60705aSEric Wollesen #define			EMASK_FBD_M14ERR	0x00002000
168eb60705aSEric Wollesen #define			EMASK_FBD_M13ERR	0x00001000
169eb60705aSEric Wollesen #define			EMASK_FBD_M12ERR	0x00000800
170eb60705aSEric Wollesen #define			EMASK_FBD_M11ERR	0x00000400
171eb60705aSEric Wollesen #define			EMASK_FBD_M10ERR	0x00000200
172eb60705aSEric Wollesen #define			EMASK_FBD_M9ERR		0x00000100
173eb60705aSEric Wollesen #define			EMASK_FBD_M8ERR		0x00000080
174eb60705aSEric Wollesen #define			EMASK_FBD_M7ERR		0x00000040
175eb60705aSEric Wollesen #define			EMASK_FBD_M6ERR		0x00000020
176eb60705aSEric Wollesen #define			EMASK_FBD_M5ERR		0x00000010
177eb60705aSEric Wollesen #define			EMASK_FBD_M4ERR		0x00000008
178eb60705aSEric Wollesen #define			EMASK_FBD_M3ERR		0x00000004
179eb60705aSEric Wollesen #define			EMASK_FBD_M2ERR		0x00000002
180eb60705aSEric Wollesen #define			EMASK_FBD_M1ERR		0x00000001
181eb60705aSEric Wollesen 
182eb60705aSEric Wollesen #define			ENABLE_EMASK_FBD_FATAL_ERRORS	(EMASK_FBD_M1ERR | \
183eb60705aSEric Wollesen 							EMASK_FBD_M2ERR | \
184eb60705aSEric Wollesen 							EMASK_FBD_M3ERR)
185eb60705aSEric Wollesen 
186eb60705aSEric Wollesen #define 		ENABLE_EMASK_FBD_UNCORRECTABLE	(EMASK_FBD_M4ERR | \
187eb60705aSEric Wollesen 							EMASK_FBD_M5ERR | \
188eb60705aSEric Wollesen 							EMASK_FBD_M6ERR | \
189eb60705aSEric Wollesen 							EMASK_FBD_M7ERR | \
190eb60705aSEric Wollesen 							EMASK_FBD_M8ERR | \
191eb60705aSEric Wollesen 							EMASK_FBD_M9ERR | \
192eb60705aSEric Wollesen 							EMASK_FBD_M10ERR | \
193eb60705aSEric Wollesen 							EMASK_FBD_M11ERR | \
194eb60705aSEric Wollesen 							EMASK_FBD_M12ERR)
195eb60705aSEric Wollesen #define 		ENABLE_EMASK_FBD_CORRECTABLE	(EMASK_FBD_M17ERR | \
196eb60705aSEric Wollesen 							EMASK_FBD_M18ERR | \
197eb60705aSEric Wollesen 							EMASK_FBD_M19ERR | \
198eb60705aSEric Wollesen 							EMASK_FBD_M20ERR)
199eb60705aSEric Wollesen #define			ENABLE_EMASK_FBD_DIMM_SPARE	(EMASK_FBD_M27ERR | \
200eb60705aSEric Wollesen 							EMASK_FBD_M28ERR)
201eb60705aSEric Wollesen #define			ENABLE_EMASK_FBD_THERMALS	(EMASK_FBD_M26ERR | \
202eb60705aSEric Wollesen 							EMASK_FBD_M25ERR | \
203eb60705aSEric Wollesen 							EMASK_FBD_M24ERR | \
204eb60705aSEric Wollesen 							EMASK_FBD_M23ERR)
205eb60705aSEric Wollesen #define			ENABLE_EMASK_FBD_SPD_PROTOCOL	(EMASK_FBD_M22ERR)
206eb60705aSEric Wollesen #define			ENABLE_EMASK_FBD_NORTH_CRC	(EMASK_FBD_M21ERR)
207eb60705aSEric Wollesen #define			ENABLE_EMASK_FBD_NON_RETRY	(EMASK_FBD_M15ERR | \
208eb60705aSEric Wollesen 							EMASK_FBD_M14ERR | \
209eb60705aSEric Wollesen 							EMASK_FBD_M13ERR)
210eb60705aSEric Wollesen 
211eb60705aSEric Wollesen #define		ENABLE_EMASK_ALL	(ENABLE_EMASK_FBD_NON_RETRY | \
212eb60705aSEric Wollesen 					ENABLE_EMASK_FBD_NORTH_CRC | \
213eb60705aSEric Wollesen 					ENABLE_EMASK_FBD_SPD_PROTOCOL | \
214eb60705aSEric Wollesen 					ENABLE_EMASK_FBD_THERMALS | \
215eb60705aSEric Wollesen 					ENABLE_EMASK_FBD_DIMM_SPARE | \
216eb60705aSEric Wollesen 					ENABLE_EMASK_FBD_FATAL_ERRORS | \
217eb60705aSEric Wollesen 					ENABLE_EMASK_FBD_CORRECTABLE | \
218eb60705aSEric Wollesen 					ENABLE_EMASK_FBD_UNCORRECTABLE)
219eb60705aSEric Wollesen 
220eb60705aSEric Wollesen #define		ERR0_FBD		0xAC
221eb60705aSEric Wollesen #define		ERR1_FBD		0xB0
222eb60705aSEric Wollesen #define		ERR2_FBD		0xB4
223eb60705aSEric Wollesen #define		MCERR_FBD		0xB8
224eb60705aSEric Wollesen #define		NRECMEMA		0xBE
225eb60705aSEric Wollesen #define			NREC_BANK(x)		(((x)>>12) & 0x7)
226eb60705aSEric Wollesen #define			NREC_RDWR(x)		(((x)>>11) & 1)
227eb60705aSEric Wollesen #define			NREC_RANK(x)		(((x)>>8) & 0x7)
228eb60705aSEric Wollesen #define		NRECMEMB		0xC0
229eb60705aSEric Wollesen #define			NREC_CAS(x)		(((x)>>16) & 0xFFFFFF)
230eb60705aSEric Wollesen #define			NREC_RAS(x)		((x) & 0x7FFF)
231eb60705aSEric Wollesen #define		NRECFGLOG		0xC4
232eb60705aSEric Wollesen #define		NREEECFBDA		0xC8
233eb60705aSEric Wollesen #define		NREEECFBDB		0xCC
234eb60705aSEric Wollesen #define		NREEECFBDC		0xD0
235eb60705aSEric Wollesen #define		NREEECFBDD		0xD4
236eb60705aSEric Wollesen #define		NREEECFBDE		0xD8
237eb60705aSEric Wollesen #define		REDMEMA			0xDC
238eb60705aSEric Wollesen #define		RECMEMA			0xE2
239eb60705aSEric Wollesen #define			REC_BANK(x)		(((x)>>12) & 0x7)
240eb60705aSEric Wollesen #define			REC_RDWR(x)		(((x)>>11) & 1)
241eb60705aSEric Wollesen #define			REC_RANK(x)		(((x)>>8) & 0x7)
242eb60705aSEric Wollesen #define		RECMEMB			0xE4
243eb60705aSEric Wollesen #define			REC_CAS(x)		(((x)>>16) & 0xFFFFFF)
244eb60705aSEric Wollesen #define			REC_RAS(x)		((x) & 0x7FFF)
245eb60705aSEric Wollesen #define		RECFGLOG		0xE8
246eb60705aSEric Wollesen #define		RECFBDA			0xEC
247eb60705aSEric Wollesen #define		RECFBDB			0xF0
248eb60705aSEric Wollesen #define		RECFBDC			0xF4
249eb60705aSEric Wollesen #define		RECFBDD			0xF8
250eb60705aSEric Wollesen #define		RECFBDE			0xFC
251eb60705aSEric Wollesen 
252eb60705aSEric Wollesen /* OFFSETS for Function 2 */
253eb60705aSEric Wollesen 
254eb60705aSEric Wollesen /*
255eb60705aSEric Wollesen  * Device 21,
256eb60705aSEric Wollesen  * Function 0: Memory Map Branch 0
257eb60705aSEric Wollesen  *
258eb60705aSEric Wollesen  * Device 22,
259eb60705aSEric Wollesen  * Function 0: Memory Map Branch 1
260eb60705aSEric Wollesen  */
261eb60705aSEric Wollesen #define PCI_DEVICE_ID_I5000_BRANCH_0	0x25F5
262eb60705aSEric Wollesen #define PCI_DEVICE_ID_I5000_BRANCH_1	0x25F6
263eb60705aSEric Wollesen 
264eb60705aSEric Wollesen #define AMB_PRESENT_0	0x64
265eb60705aSEric Wollesen #define AMB_PRESENT_1	0x66
266eb60705aSEric Wollesen #define MTR0		0x80
267eb60705aSEric Wollesen #define MTR1		0x84
268eb60705aSEric Wollesen #define MTR2		0x88
269eb60705aSEric Wollesen #define MTR3		0x8C
270eb60705aSEric Wollesen 
271eb60705aSEric Wollesen #define NUM_MTRS		4
272eb60705aSEric Wollesen #define CHANNELS_PER_BRANCH	(2)
273eb60705aSEric Wollesen 
274eb60705aSEric Wollesen /* Defines to extract the vaious fields from the
275eb60705aSEric Wollesen  *	MTRx - Memory Technology Registers
276eb60705aSEric Wollesen  */
277eb60705aSEric Wollesen #define MTR_DIMMS_PRESENT(mtr)		((mtr) & (0x1 << 8))
278eb60705aSEric Wollesen #define MTR_DRAM_WIDTH(mtr)		((((mtr) >> 6) & 0x1) ? 8 : 4)
279eb60705aSEric Wollesen #define MTR_DRAM_BANKS(mtr)		((((mtr) >> 5) & 0x1) ? 8 : 4)
280eb60705aSEric Wollesen #define MTR_DRAM_BANKS_ADDR_BITS(mtr)	((MTR_DRAM_BANKS(mtr) == 8) ? 3 : 2)
281eb60705aSEric Wollesen #define MTR_DIMM_RANK(mtr)		(((mtr) >> 4) & 0x1)
282eb60705aSEric Wollesen #define MTR_DIMM_RANK_ADDR_BITS(mtr)	(MTR_DIM_RANKS(mtr) ? 2 : 1)
283eb60705aSEric Wollesen #define MTR_DIMM_ROWS(mtr)		(((mtr) >> 2) & 0x3)
284eb60705aSEric Wollesen #define MTR_DIMM_ROWS_ADDR_BITS(mtr)	(MTR_DIMM_ROWS(mtr) + 13)
285eb60705aSEric Wollesen #define MTR_DIMM_COLS(mtr)		((mtr) & 0x3)
286eb60705aSEric Wollesen #define MTR_DIMM_COLS_ADDR_BITS(mtr)	(MTR_DIMM_COLS(mtr) + 10)
287eb60705aSEric Wollesen 
288eb60705aSEric Wollesen #ifdef CONFIG_EDAC_DEBUG
289eb60705aSEric Wollesen static char *numrow_toString[] = {
290eb60705aSEric Wollesen 	"8,192 - 13 rows",
291eb60705aSEric Wollesen 	"16,384 - 14 rows",
292eb60705aSEric Wollesen 	"32,768 - 15 rows",
293eb60705aSEric Wollesen 	"reserved"
294eb60705aSEric Wollesen };
295eb60705aSEric Wollesen 
296eb60705aSEric Wollesen static char *numcol_toString[] = {
297eb60705aSEric Wollesen 	"1,024 - 10 columns",
298eb60705aSEric Wollesen 	"2,048 - 11 columns",
299eb60705aSEric Wollesen 	"4,096 - 12 columns",
300eb60705aSEric Wollesen 	"reserved"
301eb60705aSEric Wollesen };
302eb60705aSEric Wollesen #endif
303eb60705aSEric Wollesen 
304eb60705aSEric Wollesen /* Enumeration of supported devices */
305eb60705aSEric Wollesen enum i5000_chips {
306eb60705aSEric Wollesen 	I5000P = 0,
307eb60705aSEric Wollesen 	I5000V = 1,		/* future */
308eb60705aSEric Wollesen 	I5000X = 2		/* future */
309eb60705aSEric Wollesen };
310eb60705aSEric Wollesen 
311eb60705aSEric Wollesen /* Device name and register DID (Device ID) */
312eb60705aSEric Wollesen struct i5000_dev_info {
313eb60705aSEric Wollesen 	const char *ctl_name;	/* name for this device */
314eb60705aSEric Wollesen 	u16 fsb_mapping_errors;	/* DID for the branchmap,control */
315eb60705aSEric Wollesen };
316eb60705aSEric Wollesen 
317eb60705aSEric Wollesen /* Table of devices attributes supported by this driver */
318eb60705aSEric Wollesen static const struct i5000_dev_info i5000_devs[] = {
319eb60705aSEric Wollesen 	[I5000P] = {
320eb60705aSEric Wollesen 		    .ctl_name = "I5000",
321eb60705aSEric Wollesen 		    .fsb_mapping_errors = PCI_DEVICE_ID_INTEL_I5000_DEV16,
322eb60705aSEric Wollesen 		    },
323eb60705aSEric Wollesen };
324eb60705aSEric Wollesen 
325eb60705aSEric Wollesen struct i5000_dimm_info {
326eb60705aSEric Wollesen 	int megabytes;		/* size, 0 means not present  */
327eb60705aSEric Wollesen 	int dual_rank;
328eb60705aSEric Wollesen };
329eb60705aSEric Wollesen 
330eb60705aSEric Wollesen #define	MAX_CHANNELS	6	/* max possible channels */
331eb60705aSEric Wollesen #define MAX_CSROWS	(8*2)	/* max possible csrows per channel */
332eb60705aSEric Wollesen 
333eb60705aSEric Wollesen /* driver private data structure */
334eb60705aSEric Wollesen struct i5000_pvt {
335eb60705aSEric Wollesen 	struct pci_dev *system_address;	/* 16.0 */
336eb60705aSEric Wollesen 	struct pci_dev *branchmap_werrors;	/* 16.1 */
337eb60705aSEric Wollesen 	struct pci_dev *fsb_error_regs;	/* 16.2 */
338eb60705aSEric Wollesen 	struct pci_dev *branch_0;	/* 21.0 */
339eb60705aSEric Wollesen 	struct pci_dev *branch_1;	/* 22.0 */
340eb60705aSEric Wollesen 
341eb60705aSEric Wollesen 	int node_id;		/* ID of this node */
342eb60705aSEric Wollesen 
343eb60705aSEric Wollesen 	u16 tolm;		/* top of low memory */
344eb60705aSEric Wollesen 	u64 ambase;		/* AMB BAR */
345eb60705aSEric Wollesen 
346eb60705aSEric Wollesen 	u16 mir0, mir1, mir2;
347eb60705aSEric Wollesen 
348eb60705aSEric Wollesen 	u16 b0_mtr[NUM_MTRS];	/* Memory Technlogy Reg */
349eb60705aSEric Wollesen 	u16 b0_ambpresent0;	/* Branch 0, Channel 0 */
350eb60705aSEric Wollesen 	u16 b0_ambpresent1;	/* Brnach 0, Channel 1 */
351eb60705aSEric Wollesen 
352eb60705aSEric Wollesen 	u16 b1_mtr[NUM_MTRS];	/* Memory Technlogy Reg */
353eb60705aSEric Wollesen 	u16 b1_ambpresent0;	/* Branch 1, Channel 8 */
354eb60705aSEric Wollesen 	u16 b1_ambpresent1;	/* Branch 1, Channel 1 */
355eb60705aSEric Wollesen 
356eb60705aSEric Wollesen 	/* DIMM infomation matrix, allocating architecture maximums */
357eb60705aSEric Wollesen 	struct i5000_dimm_info dimm_info[MAX_CSROWS][MAX_CHANNELS];
358eb60705aSEric Wollesen 
359eb60705aSEric Wollesen 	/* Actual values for this controller */
360eb60705aSEric Wollesen 	int maxch;		/* Max channels */
361eb60705aSEric Wollesen 	int maxdimmperch;	/* Max DIMMs per channel */
362eb60705aSEric Wollesen };
363eb60705aSEric Wollesen 
364eb60705aSEric Wollesen /* I5000 MCH error information retrieved from Hardware */
365eb60705aSEric Wollesen struct i5000_error_info {
366eb60705aSEric Wollesen 
367eb60705aSEric Wollesen 	/* These registers are always read from the MC */
368eb60705aSEric Wollesen 	u32 ferr_fat_fbd;	/* First Errors Fatal */
369eb60705aSEric Wollesen 	u32 nerr_fat_fbd;	/* Next Errors Fatal */
370eb60705aSEric Wollesen 	u32 ferr_nf_fbd;	/* First Errors Non-Fatal */
371eb60705aSEric Wollesen 	u32 nerr_nf_fbd;	/* Next Errors Non-Fatal */
372eb60705aSEric Wollesen 
373eb60705aSEric Wollesen 	/* These registers are input ONLY if there was a Recoverable  Error */
374eb60705aSEric Wollesen 	u32 redmemb;		/* Recoverable Mem Data Error log B */
375eb60705aSEric Wollesen 	u16 recmema;		/* Recoverable Mem Error log A */
376eb60705aSEric Wollesen 	u32 recmemb;		/* Recoverable Mem Error log B */
377eb60705aSEric Wollesen 
378eb60705aSEric Wollesen 	/* These registers are input ONLY if there was a
379eb60705aSEric Wollesen 	 * Non-Recoverable Error */
380eb60705aSEric Wollesen 	u16 nrecmema;		/* Non-Recoverable Mem log A */
381eb60705aSEric Wollesen 	u16 nrecmemb;		/* Non-Recoverable Mem log B */
382eb60705aSEric Wollesen 
383eb60705aSEric Wollesen };
384eb60705aSEric Wollesen 
385456a2f95SDave Jiang static struct edac_pci_ctl_info *i5000_pci;
386456a2f95SDave Jiang 
387eb60705aSEric Wollesen /******************************************************************************
388eb60705aSEric Wollesen  *	i5000_get_error_info	Retrieve the hardware error information from
389eb60705aSEric Wollesen  *				the hardware and cache it in the 'info'
390eb60705aSEric Wollesen  *				structure
391eb60705aSEric Wollesen  */
392eb60705aSEric Wollesen static void i5000_get_error_info(struct mem_ctl_info *mci,
393eb60705aSEric Wollesen 				 struct i5000_error_info * info)
394eb60705aSEric Wollesen {
395eb60705aSEric Wollesen 	struct i5000_pvt *pvt;
396eb60705aSEric Wollesen 	u32 value;
397eb60705aSEric Wollesen 
398eb60705aSEric Wollesen 	pvt = (struct i5000_pvt *)mci->pvt_info;
399eb60705aSEric Wollesen 
400eb60705aSEric Wollesen 	/* read in the 1st FATAL error register */
401eb60705aSEric Wollesen 	pci_read_config_dword(pvt->branchmap_werrors, FERR_FAT_FBD, &value);
402eb60705aSEric Wollesen 
403eb60705aSEric Wollesen 	/* Mask only the bits that the doc says are valid
404eb60705aSEric Wollesen 	 */
405eb60705aSEric Wollesen 	value &= (FERR_FAT_FBDCHAN | FERR_FAT_MASK);
406eb60705aSEric Wollesen 
407eb60705aSEric Wollesen 	/* If there is an error, then read in the */
408eb60705aSEric Wollesen 	/* NEXT FATAL error register and the Memory Error Log Register A */
409eb60705aSEric Wollesen 	if (value & FERR_FAT_MASK) {
410eb60705aSEric Wollesen 		info->ferr_fat_fbd = value;
411eb60705aSEric Wollesen 
412eb60705aSEric Wollesen 		/* harvest the various error data we need */
413eb60705aSEric Wollesen 		pci_read_config_dword(pvt->branchmap_werrors,
414eb60705aSEric Wollesen 				      NERR_FAT_FBD, &info->nerr_fat_fbd);
415eb60705aSEric Wollesen 		pci_read_config_word(pvt->branchmap_werrors,
416eb60705aSEric Wollesen 				     NRECMEMA, &info->nrecmema);
417eb60705aSEric Wollesen 		pci_read_config_word(pvt->branchmap_werrors,
418eb60705aSEric Wollesen 				     NRECMEMB, &info->nrecmemb);
419eb60705aSEric Wollesen 
420eb60705aSEric Wollesen 		/* Clear the error bits, by writing them back */
421eb60705aSEric Wollesen 		pci_write_config_dword(pvt->branchmap_werrors,
422eb60705aSEric Wollesen 				       FERR_FAT_FBD, value);
423eb60705aSEric Wollesen 	} else {
424eb60705aSEric Wollesen 		info->ferr_fat_fbd = 0;
425eb60705aSEric Wollesen 		info->nerr_fat_fbd = 0;
426eb60705aSEric Wollesen 		info->nrecmema = 0;
427eb60705aSEric Wollesen 		info->nrecmemb = 0;
428eb60705aSEric Wollesen 	}
429eb60705aSEric Wollesen 
430eb60705aSEric Wollesen 	/* read in the 1st NON-FATAL error register */
431eb60705aSEric Wollesen 	pci_read_config_dword(pvt->branchmap_werrors, FERR_NF_FBD, &value);
432eb60705aSEric Wollesen 
433eb60705aSEric Wollesen 	/* If there is an error, then read in the 1st NON-FATAL error
434eb60705aSEric Wollesen 	 * register as well */
435eb60705aSEric Wollesen 	if (value & FERR_NF_MASK) {
436eb60705aSEric Wollesen 		info->ferr_nf_fbd = value;
437eb60705aSEric Wollesen 
438eb60705aSEric Wollesen 		/* harvest the various error data we need */
439eb60705aSEric Wollesen 		pci_read_config_dword(pvt->branchmap_werrors,
440eb60705aSEric Wollesen 				      NERR_NF_FBD, &info->nerr_nf_fbd);
441eb60705aSEric Wollesen 		pci_read_config_word(pvt->branchmap_werrors,
442eb60705aSEric Wollesen 				     RECMEMA, &info->recmema);
443eb60705aSEric Wollesen 		pci_read_config_dword(pvt->branchmap_werrors,
444eb60705aSEric Wollesen 				      RECMEMB, &info->recmemb);
445eb60705aSEric Wollesen 		pci_read_config_dword(pvt->branchmap_werrors,
446eb60705aSEric Wollesen 				      REDMEMB, &info->redmemb);
447eb60705aSEric Wollesen 
448eb60705aSEric Wollesen 		/* Clear the error bits, by writing them back */
449eb60705aSEric Wollesen 		pci_write_config_dword(pvt->branchmap_werrors,
450eb60705aSEric Wollesen 				       FERR_NF_FBD, value);
451eb60705aSEric Wollesen 	} else {
452eb60705aSEric Wollesen 		info->ferr_nf_fbd = 0;
453eb60705aSEric Wollesen 		info->nerr_nf_fbd = 0;
454eb60705aSEric Wollesen 		info->recmema = 0;
455eb60705aSEric Wollesen 		info->recmemb = 0;
456eb60705aSEric Wollesen 		info->redmemb = 0;
457eb60705aSEric Wollesen 	}
458eb60705aSEric Wollesen }
459eb60705aSEric Wollesen 
460eb60705aSEric Wollesen /******************************************************************************
461eb60705aSEric Wollesen  * i5000_process_fatal_error_info(struct mem_ctl_info *mci,
462eb60705aSEric Wollesen  * 					struct i5000_error_info *info,
463eb60705aSEric Wollesen  * 					int handle_errors);
464eb60705aSEric Wollesen  *
465eb60705aSEric Wollesen  *	handle the Intel FATAL errors, if any
466eb60705aSEric Wollesen  */
467eb60705aSEric Wollesen static void i5000_process_fatal_error_info(struct mem_ctl_info *mci,
468eb60705aSEric Wollesen 					   struct i5000_error_info * info,
469eb60705aSEric Wollesen 					   int handle_errors)
470eb60705aSEric Wollesen {
471eb60705aSEric Wollesen 	char msg[EDAC_MC_LABEL_LEN + 1 + 90];
472eb60705aSEric Wollesen 	u32 allErrors;
473eb60705aSEric Wollesen 	int branch;
474eb60705aSEric Wollesen 	int channel;
475eb60705aSEric Wollesen 	int bank;
476eb60705aSEric Wollesen 	int rank;
477eb60705aSEric Wollesen 	int rdwr;
478eb60705aSEric Wollesen 	int ras, cas;
479eb60705aSEric Wollesen 
480eb60705aSEric Wollesen 	/* mask off the Error bits that are possible */
481eb60705aSEric Wollesen 	allErrors = (info->ferr_fat_fbd & FERR_FAT_MASK);
482eb60705aSEric Wollesen 	if (!allErrors)
483eb60705aSEric Wollesen 		return;		/* if no error, return now */
484eb60705aSEric Wollesen 
485eb60705aSEric Wollesen 	/* ONLY ONE of the possible error bits will be set, as per the docs */
486eb60705aSEric Wollesen 	i5000_mc_printk(mci, KERN_ERR,
487eb60705aSEric Wollesen 			"FATAL ERRORS Found!!! 1st FATAL Err Reg= 0x%x\n",
488eb60705aSEric Wollesen 			allErrors);
489eb60705aSEric Wollesen 
490eb60705aSEric Wollesen 	branch = EXTRACT_FBDCHAN_INDX(info->ferr_fat_fbd);
491eb60705aSEric Wollesen 	channel = branch;
492eb60705aSEric Wollesen 
493eb60705aSEric Wollesen 	/* Use the NON-Recoverable macros to extract data */
494eb60705aSEric Wollesen 	bank = NREC_BANK(info->nrecmema);
495eb60705aSEric Wollesen 	rank = NREC_RANK(info->nrecmema);
496eb60705aSEric Wollesen 	rdwr = NREC_RDWR(info->nrecmema);
497eb60705aSEric Wollesen 	ras = NREC_RAS(info->nrecmemb);
498eb60705aSEric Wollesen 	cas = NREC_CAS(info->nrecmemb);
499eb60705aSEric Wollesen 
500eb60705aSEric Wollesen 	debugf0("\t\tCSROW= %d  Channels= %d,%d  (Branch= %d "
501eb60705aSEric Wollesen 		"DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n",
502eb60705aSEric Wollesen 		rank, channel, channel + 1, branch >> 1, bank,
503eb60705aSEric Wollesen 		rdwr ? "Write" : "Read", ras, cas);
504eb60705aSEric Wollesen 
505eb60705aSEric Wollesen 	/* Only 1 bit will be on */
506eb60705aSEric Wollesen 	if (allErrors & FERR_FAT_M1ERR) {
507eb60705aSEric Wollesen 		i5000_mc_printk(mci, KERN_ERR,
508eb60705aSEric Wollesen 				"Alert on non-redundant retry or fast "
509eb60705aSEric Wollesen 				"reset timeout\n");
510eb60705aSEric Wollesen 
511eb60705aSEric Wollesen 	} else if (allErrors & FERR_FAT_M2ERR) {
512eb60705aSEric Wollesen 		i5000_mc_printk(mci, KERN_ERR,
513eb60705aSEric Wollesen 				"Northbound CRC error on non-redundant "
514eb60705aSEric Wollesen 				"retry\n");
515eb60705aSEric Wollesen 
516eb60705aSEric Wollesen 	} else if (allErrors & FERR_FAT_M3ERR) {
517eb60705aSEric Wollesen 		i5000_mc_printk(mci, KERN_ERR,
518eb60705aSEric Wollesen 				">Tmid Thermal event with intelligent "
519eb60705aSEric Wollesen 				"throttling disabled\n");
520eb60705aSEric Wollesen 	}
521eb60705aSEric Wollesen 
522eb60705aSEric Wollesen 	/* Form out message */
523eb60705aSEric Wollesen 	snprintf(msg, sizeof(msg),
524eb60705aSEric Wollesen 		 "(Branch=%d DRAM-Bank=%d RDWR=%s RAS=%d CAS=%d "
525eb60705aSEric Wollesen 		 "FATAL Err=0x%x)",
526eb60705aSEric Wollesen 		 branch >> 1, bank, rdwr ? "Write" : "Read", ras, cas,
527eb60705aSEric Wollesen 		 allErrors);
528eb60705aSEric Wollesen 
529eb60705aSEric Wollesen 	/* Call the helper to output message */
530eb60705aSEric Wollesen 	edac_mc_handle_fbd_ue(mci, rank, channel, channel + 1, msg);
531eb60705aSEric Wollesen }
532eb60705aSEric Wollesen 
533eb60705aSEric Wollesen /******************************************************************************
534eb60705aSEric Wollesen  * i5000_process_fatal_error_info(struct mem_ctl_info *mci,
535eb60705aSEric Wollesen  * 				  struct i5000_error_info *info,
536eb60705aSEric Wollesen  * 				  int handle_errors);
537eb60705aSEric Wollesen  *
538eb60705aSEric Wollesen  *	handle the Intel NON-FATAL errors, if any
539eb60705aSEric Wollesen  */
540eb60705aSEric Wollesen static void i5000_process_nonfatal_error_info(struct mem_ctl_info *mci,
541eb60705aSEric Wollesen 					      struct i5000_error_info * info,
542eb60705aSEric Wollesen 					      int handle_errors)
543eb60705aSEric Wollesen {
544eb60705aSEric Wollesen 	char msg[EDAC_MC_LABEL_LEN + 1 + 90];
545eb60705aSEric Wollesen 	u32 allErrors;
546eb60705aSEric Wollesen 	u32 ue_errors;
547eb60705aSEric Wollesen 	u32 ce_errors;
548eb60705aSEric Wollesen 	u32 misc_errors;
549eb60705aSEric Wollesen 	int branch;
550eb60705aSEric Wollesen 	int channel;
551eb60705aSEric Wollesen 	int bank;
552eb60705aSEric Wollesen 	int rank;
553eb60705aSEric Wollesen 	int rdwr;
554eb60705aSEric Wollesen 	int ras, cas;
555eb60705aSEric Wollesen 
556eb60705aSEric Wollesen 	/* mask off the Error bits that are possible */
557eb60705aSEric Wollesen 	allErrors = (info->ferr_nf_fbd & FERR_NF_MASK);
558eb60705aSEric Wollesen 	if (!allErrors)
559eb60705aSEric Wollesen 		return;		/* if no error, return now */
560eb60705aSEric Wollesen 
561eb60705aSEric Wollesen 	/* ONLY ONE of the possible error bits will be set, as per the docs */
562eb60705aSEric Wollesen 	i5000_mc_printk(mci, KERN_WARNING,
563eb60705aSEric Wollesen 			"NON-FATAL ERRORS Found!!! 1st NON-FATAL Err "
564eb60705aSEric Wollesen 			"Reg= 0x%x\n", allErrors);
565eb60705aSEric Wollesen 
566eb60705aSEric Wollesen 	ue_errors = allErrors & FERR_NF_UNCORRECTABLE;
567eb60705aSEric Wollesen 	if (ue_errors) {
568eb60705aSEric Wollesen 		debugf0("\tUncorrected bits= 0x%x\n", ue_errors);
569eb60705aSEric Wollesen 
570eb60705aSEric Wollesen 		branch = EXTRACT_FBDCHAN_INDX(info->ferr_nf_fbd);
571eb60705aSEric Wollesen 		channel = branch;
572eb60705aSEric Wollesen 		bank = NREC_BANK(info->nrecmema);
573eb60705aSEric Wollesen 		rank = NREC_RANK(info->nrecmema);
574eb60705aSEric Wollesen 		rdwr = NREC_RDWR(info->nrecmema);
575eb60705aSEric Wollesen 		ras = NREC_RAS(info->nrecmemb);
576eb60705aSEric Wollesen 		cas = NREC_CAS(info->nrecmemb);
577eb60705aSEric Wollesen 
578eb60705aSEric Wollesen 		debugf0
579eb60705aSEric Wollesen 		    ("\t\tCSROW= %d  Channels= %d,%d  (Branch= %d "
580eb60705aSEric Wollesen 		     "DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n",
581eb60705aSEric Wollesen 		     rank, channel, channel + 1, branch >> 1, bank,
582eb60705aSEric Wollesen 		     rdwr ? "Write" : "Read", ras, cas);
583eb60705aSEric Wollesen 
584eb60705aSEric Wollesen 		/* Form out message */
585eb60705aSEric Wollesen 		snprintf(msg, sizeof(msg),
586eb60705aSEric Wollesen 			 "(Branch=%d DRAM-Bank=%d RDWR=%s RAS=%d "
587eb60705aSEric Wollesen 			 "CAS=%d, UE Err=0x%x)",
588eb60705aSEric Wollesen 			 branch >> 1, bank, rdwr ? "Write" : "Read", ras, cas,
589eb60705aSEric Wollesen 			 ue_errors);
590eb60705aSEric Wollesen 
591eb60705aSEric Wollesen 		/* Call the helper to output message */
592eb60705aSEric Wollesen 		edac_mc_handle_fbd_ue(mci, rank, channel, channel + 1, msg);
593eb60705aSEric Wollesen 	}
594eb60705aSEric Wollesen 
595eb60705aSEric Wollesen 	/* Check correctable errors */
596eb60705aSEric Wollesen 	ce_errors = allErrors & FERR_NF_CORRECTABLE;
597eb60705aSEric Wollesen 	if (ce_errors) {
598eb60705aSEric Wollesen 		debugf0("\tCorrected bits= 0x%x\n", ce_errors);
599eb60705aSEric Wollesen 
600eb60705aSEric Wollesen 		branch = EXTRACT_FBDCHAN_INDX(info->ferr_nf_fbd);
601eb60705aSEric Wollesen 
602eb60705aSEric Wollesen 		channel = 0;
603eb60705aSEric Wollesen 		if (REC_ECC_LOCATOR_ODD(info->redmemb))
604eb60705aSEric Wollesen 			channel = 1;
605eb60705aSEric Wollesen 
606eb60705aSEric Wollesen 		/* Convert channel to be based from zero, instead of
607eb60705aSEric Wollesen 		 * from branch base of 0 */
608eb60705aSEric Wollesen 		channel += branch;
609eb60705aSEric Wollesen 
610eb60705aSEric Wollesen 		bank = REC_BANK(info->recmema);
611eb60705aSEric Wollesen 		rank = REC_RANK(info->recmema);
612eb60705aSEric Wollesen 		rdwr = REC_RDWR(info->recmema);
613eb60705aSEric Wollesen 		ras = REC_RAS(info->recmemb);
614eb60705aSEric Wollesen 		cas = REC_CAS(info->recmemb);
615eb60705aSEric Wollesen 
616eb60705aSEric Wollesen 		debugf0("\t\tCSROW= %d Channel= %d  (Branch %d "
617eb60705aSEric Wollesen 			"DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n",
618eb60705aSEric Wollesen 			rank, channel, branch >> 1, bank,
619eb60705aSEric Wollesen 			rdwr ? "Write" : "Read", ras, cas);
620eb60705aSEric Wollesen 
621eb60705aSEric Wollesen 		/* Form out message */
622eb60705aSEric Wollesen 		snprintf(msg, sizeof(msg),
623eb60705aSEric Wollesen 			 "(Branch=%d DRAM-Bank=%d RDWR=%s RAS=%d "
624eb60705aSEric Wollesen 			 "CAS=%d, CE Err=0x%x)", branch >> 1, bank,
625eb60705aSEric Wollesen 			 rdwr ? "Write" : "Read", ras, cas, ce_errors);
626eb60705aSEric Wollesen 
627eb60705aSEric Wollesen 		/* Call the helper to output message */
628eb60705aSEric Wollesen 		edac_mc_handle_fbd_ce(mci, rank, channel, msg);
629eb60705aSEric Wollesen 	}
630eb60705aSEric Wollesen 
631eb60705aSEric Wollesen 	/* See if any of the thermal errors have fired */
632eb60705aSEric Wollesen 	misc_errors = allErrors & FERR_NF_THERMAL;
633eb60705aSEric Wollesen 	if (misc_errors) {
634eb60705aSEric Wollesen 		i5000_printk(KERN_WARNING, "\tTHERMAL Error, bits= 0x%x\n",
635eb60705aSEric Wollesen 			     misc_errors);
636eb60705aSEric Wollesen 	}
637eb60705aSEric Wollesen 
638eb60705aSEric Wollesen 	/* See if any of the thermal errors have fired */
639eb60705aSEric Wollesen 	misc_errors = allErrors & FERR_NF_NON_RETRY;
640eb60705aSEric Wollesen 	if (misc_errors) {
641eb60705aSEric Wollesen 		i5000_printk(KERN_WARNING, "\tNON-Retry  Errors, bits= 0x%x\n",
642eb60705aSEric Wollesen 			     misc_errors);
643eb60705aSEric Wollesen 	}
644eb60705aSEric Wollesen 
645eb60705aSEric Wollesen 	/* See if any of the thermal errors have fired */
646eb60705aSEric Wollesen 	misc_errors = allErrors & FERR_NF_NORTH_CRC;
647eb60705aSEric Wollesen 	if (misc_errors) {
648eb60705aSEric Wollesen 		i5000_printk(KERN_WARNING,
649eb60705aSEric Wollesen 			     "\tNORTHBOUND CRC  Error, bits= 0x%x\n",
650eb60705aSEric Wollesen 			     misc_errors);
651eb60705aSEric Wollesen 	}
652eb60705aSEric Wollesen 
653eb60705aSEric Wollesen 	/* See if any of the thermal errors have fired */
654eb60705aSEric Wollesen 	misc_errors = allErrors & FERR_NF_SPD_PROTOCOL;
655eb60705aSEric Wollesen 	if (misc_errors) {
656eb60705aSEric Wollesen 		i5000_printk(KERN_WARNING,
657eb60705aSEric Wollesen 			     "\tSPD Protocol  Error, bits= 0x%x\n",
658eb60705aSEric Wollesen 			     misc_errors);
659eb60705aSEric Wollesen 	}
660eb60705aSEric Wollesen 
661eb60705aSEric Wollesen 	/* See if any of the thermal errors have fired */
662eb60705aSEric Wollesen 	misc_errors = allErrors & FERR_NF_DIMM_SPARE;
663eb60705aSEric Wollesen 	if (misc_errors) {
664eb60705aSEric Wollesen 		i5000_printk(KERN_WARNING, "\tDIMM-Spare  Error, bits= 0x%x\n",
665eb60705aSEric Wollesen 			     misc_errors);
666eb60705aSEric Wollesen 	}
667eb60705aSEric Wollesen }
668eb60705aSEric Wollesen 
669eb60705aSEric Wollesen /******************************************************************************
670eb60705aSEric Wollesen  *	i5000_process_error_info	Process the error info that is
671eb60705aSEric Wollesen  *	in the 'info' structure, previously retrieved from hardware
672eb60705aSEric Wollesen  */
673eb60705aSEric Wollesen static void i5000_process_error_info(struct mem_ctl_info *mci,
674eb60705aSEric Wollesen 				     struct i5000_error_info * info,
675eb60705aSEric Wollesen 				     int handle_errors)
676eb60705aSEric Wollesen {
677eb60705aSEric Wollesen 	/* First handle any fatal errors that occurred */
678eb60705aSEric Wollesen 	i5000_process_fatal_error_info(mci, info, handle_errors);
679eb60705aSEric Wollesen 
680eb60705aSEric Wollesen 	/* now handle any non-fatal errors that occurred */
681eb60705aSEric Wollesen 	i5000_process_nonfatal_error_info(mci, info, handle_errors);
682eb60705aSEric Wollesen }
683eb60705aSEric Wollesen 
684eb60705aSEric Wollesen /******************************************************************************
685eb60705aSEric Wollesen  *	i5000_clear_error	Retrieve any error from the hardware
686eb60705aSEric Wollesen  *				but do NOT process that error.
687eb60705aSEric Wollesen  *				Used for 'clearing' out of previous errors
688eb60705aSEric Wollesen  *				Called by the Core module.
689eb60705aSEric Wollesen  */
690eb60705aSEric Wollesen static void i5000_clear_error(struct mem_ctl_info *mci)
691eb60705aSEric Wollesen {
692eb60705aSEric Wollesen 	struct i5000_error_info info;
693eb60705aSEric Wollesen 
694eb60705aSEric Wollesen 	i5000_get_error_info(mci, &info);
695eb60705aSEric Wollesen }
696eb60705aSEric Wollesen 
697eb60705aSEric Wollesen /******************************************************************************
698eb60705aSEric Wollesen  *	i5000_check_error	Retrieve and process errors reported by the
699eb60705aSEric Wollesen  *				hardware. Called by the Core module.
700eb60705aSEric Wollesen  */
701eb60705aSEric Wollesen static void i5000_check_error(struct mem_ctl_info *mci)
702eb60705aSEric Wollesen {
703eb60705aSEric Wollesen 	struct i5000_error_info info;
704eb60705aSEric Wollesen 	debugf4("MC%d: " __FILE__ ": %s()\n", mci->mc_idx, __func__);
705eb60705aSEric Wollesen 	i5000_get_error_info(mci, &info);
706eb60705aSEric Wollesen 	i5000_process_error_info(mci, &info, 1);
707eb60705aSEric Wollesen }
708eb60705aSEric Wollesen 
709eb60705aSEric Wollesen /******************************************************************************
710eb60705aSEric Wollesen  *	i5000_get_devices	Find and perform 'get' operation on the MCH's
711eb60705aSEric Wollesen  *			device/functions we want to reference for this driver
712eb60705aSEric Wollesen  *
713eb60705aSEric Wollesen  *			Need to 'get' device 16 func 1 and func 2
714eb60705aSEric Wollesen  */
715eb60705aSEric Wollesen static int i5000_get_devices(struct mem_ctl_info *mci, int dev_idx)
716eb60705aSEric Wollesen {
717eb60705aSEric Wollesen 	//const struct i5000_dev_info *i5000_dev = &i5000_devs[dev_idx];
718eb60705aSEric Wollesen 	struct i5000_pvt *pvt;
719eb60705aSEric Wollesen 	struct pci_dev *pdev;
720eb60705aSEric Wollesen 
721eb60705aSEric Wollesen 	pvt = (struct i5000_pvt *)mci->pvt_info;
722eb60705aSEric Wollesen 
723eb60705aSEric Wollesen 	/* Attempt to 'get' the MCH register we want */
724eb60705aSEric Wollesen 	pdev = NULL;
725eb60705aSEric Wollesen 	while (1) {
726eb60705aSEric Wollesen 		pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
727eb60705aSEric Wollesen 				      PCI_DEVICE_ID_INTEL_I5000_DEV16, pdev);
728eb60705aSEric Wollesen 
729eb60705aSEric Wollesen 		/* End of list, leave */
730eb60705aSEric Wollesen 		if (pdev == NULL) {
731eb60705aSEric Wollesen 			i5000_printk(KERN_ERR,
732eb60705aSEric Wollesen 				     "'system address,Process Bus' "
733eb60705aSEric Wollesen 				     "device not found:"
734eb60705aSEric Wollesen 				     "vendor 0x%x device 0x%x FUNC 1 "
735eb60705aSEric Wollesen 				     "(broken BIOS?)\n",
736eb60705aSEric Wollesen 				     PCI_VENDOR_ID_INTEL,
737eb60705aSEric Wollesen 				     PCI_DEVICE_ID_INTEL_I5000_DEV16);
738eb60705aSEric Wollesen 
739eb60705aSEric Wollesen 			return 1;
740eb60705aSEric Wollesen 		}
741eb60705aSEric Wollesen 
742eb60705aSEric Wollesen 		/* Scan for device 16 func 1 */
743eb60705aSEric Wollesen 		if (PCI_FUNC(pdev->devfn) == 1)
744eb60705aSEric Wollesen 			break;
745eb60705aSEric Wollesen 	}
746eb60705aSEric Wollesen 
747eb60705aSEric Wollesen 	pvt->branchmap_werrors = pdev;
748eb60705aSEric Wollesen 
749eb60705aSEric Wollesen 	/* Attempt to 'get' the MCH register we want */
750eb60705aSEric Wollesen 	pdev = NULL;
751eb60705aSEric Wollesen 	while (1) {
752eb60705aSEric Wollesen 		pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
753eb60705aSEric Wollesen 				      PCI_DEVICE_ID_INTEL_I5000_DEV16, pdev);
754eb60705aSEric Wollesen 
755eb60705aSEric Wollesen 		if (pdev == NULL) {
756eb60705aSEric Wollesen 			i5000_printk(KERN_ERR,
757eb60705aSEric Wollesen 				     "MC: 'branchmap,control,errors' "
758eb60705aSEric Wollesen 				     "device not found:"
759eb60705aSEric Wollesen 				     "vendor 0x%x device 0x%x Func 2 "
760eb60705aSEric Wollesen 				     "(broken BIOS?)\n",
761eb60705aSEric Wollesen 				     PCI_VENDOR_ID_INTEL,
762eb60705aSEric Wollesen 				     PCI_DEVICE_ID_INTEL_I5000_DEV16);
763eb60705aSEric Wollesen 
764eb60705aSEric Wollesen 			pci_dev_put(pvt->branchmap_werrors);
765eb60705aSEric Wollesen 			return 1;
766eb60705aSEric Wollesen 		}
767eb60705aSEric Wollesen 
768eb60705aSEric Wollesen 		/* Scan for device 16 func 1 */
769eb60705aSEric Wollesen 		if (PCI_FUNC(pdev->devfn) == 2)
770eb60705aSEric Wollesen 			break;
771eb60705aSEric Wollesen 	}
772eb60705aSEric Wollesen 
773eb60705aSEric Wollesen 	pvt->fsb_error_regs = pdev;
774eb60705aSEric Wollesen 
775eb60705aSEric Wollesen 	debugf1("System Address, processor bus- PCI Bus ID: %s  %x:%x\n",
776eb60705aSEric Wollesen 		pci_name(pvt->system_address),
777eb60705aSEric Wollesen 		pvt->system_address->vendor, pvt->system_address->device);
778eb60705aSEric Wollesen 	debugf1("Branchmap, control and errors - PCI Bus ID: %s  %x:%x\n",
779eb60705aSEric Wollesen 		pci_name(pvt->branchmap_werrors),
780eb60705aSEric Wollesen 		pvt->branchmap_werrors->vendor, pvt->branchmap_werrors->device);
781eb60705aSEric Wollesen 	debugf1("FSB Error Regs - PCI Bus ID: %s  %x:%x\n",
782eb60705aSEric Wollesen 		pci_name(pvt->fsb_error_regs),
783eb60705aSEric Wollesen 		pvt->fsb_error_regs->vendor, pvt->fsb_error_regs->device);
784eb60705aSEric Wollesen 
785eb60705aSEric Wollesen 	pdev = NULL;
786eb60705aSEric Wollesen 	pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
787eb60705aSEric Wollesen 			      PCI_DEVICE_ID_I5000_BRANCH_0, pdev);
788eb60705aSEric Wollesen 
789eb60705aSEric Wollesen 	if (pdev == NULL) {
790eb60705aSEric Wollesen 		i5000_printk(KERN_ERR,
791eb60705aSEric Wollesen 			     "MC: 'BRANCH 0' device not found:"
792eb60705aSEric Wollesen 			     "vendor 0x%x device 0x%x Func 0 (broken BIOS?)\n",
793eb60705aSEric Wollesen 			     PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_I5000_BRANCH_0);
794eb60705aSEric Wollesen 
795eb60705aSEric Wollesen 		pci_dev_put(pvt->branchmap_werrors);
796eb60705aSEric Wollesen 		pci_dev_put(pvt->fsb_error_regs);
797eb60705aSEric Wollesen 		return 1;
798eb60705aSEric Wollesen 	}
799eb60705aSEric Wollesen 
800eb60705aSEric Wollesen 	pvt->branch_0 = pdev;
801eb60705aSEric Wollesen 
802eb60705aSEric Wollesen 	/* If this device claims to have more than 2 channels then
803eb60705aSEric Wollesen 	 * fetch Branch 1's information
804eb60705aSEric Wollesen 	 */
805eb60705aSEric Wollesen 	if (pvt->maxch >= CHANNELS_PER_BRANCH) {
806eb60705aSEric Wollesen 		pdev = NULL;
807eb60705aSEric Wollesen 		pdev = pci_get_device(PCI_VENDOR_ID_INTEL,
808eb60705aSEric Wollesen 				      PCI_DEVICE_ID_I5000_BRANCH_1, pdev);
809eb60705aSEric Wollesen 
810eb60705aSEric Wollesen 		if (pdev == NULL) {
811eb60705aSEric Wollesen 			i5000_printk(KERN_ERR,
812eb60705aSEric Wollesen 				     "MC: 'BRANCH 1' device not found:"
813eb60705aSEric Wollesen 				     "vendor 0x%x device 0x%x Func 0 "
814eb60705aSEric Wollesen 				     "(broken BIOS?)\n",
815eb60705aSEric Wollesen 				     PCI_VENDOR_ID_INTEL,
816eb60705aSEric Wollesen 				     PCI_DEVICE_ID_I5000_BRANCH_1);
817eb60705aSEric Wollesen 
818eb60705aSEric Wollesen 			pci_dev_put(pvt->branchmap_werrors);
819eb60705aSEric Wollesen 			pci_dev_put(pvt->fsb_error_regs);
820eb60705aSEric Wollesen 			pci_dev_put(pvt->branch_0);
821eb60705aSEric Wollesen 			return 1;
822eb60705aSEric Wollesen 		}
823eb60705aSEric Wollesen 
824eb60705aSEric Wollesen 		pvt->branch_1 = pdev;
825eb60705aSEric Wollesen 	}
826eb60705aSEric Wollesen 
827eb60705aSEric Wollesen 	return 0;
828eb60705aSEric Wollesen }
829eb60705aSEric Wollesen 
830eb60705aSEric Wollesen /******************************************************************************
831eb60705aSEric Wollesen  *	i5000_put_devices	'put' all the devices that we have
832eb60705aSEric Wollesen  *				reserved via 'get'
833eb60705aSEric Wollesen  */
834eb60705aSEric Wollesen static void i5000_put_devices(struct mem_ctl_info *mci)
835eb60705aSEric Wollesen {
836eb60705aSEric Wollesen 	struct i5000_pvt *pvt;
837eb60705aSEric Wollesen 
838eb60705aSEric Wollesen 	pvt = (struct i5000_pvt *)mci->pvt_info;
839eb60705aSEric Wollesen 
840eb60705aSEric Wollesen 	pci_dev_put(pvt->branchmap_werrors);	/* FUNC 1 */
841eb60705aSEric Wollesen 	pci_dev_put(pvt->fsb_error_regs);	/* FUNC 2 */
842eb60705aSEric Wollesen 	pci_dev_put(pvt->branch_0);	/* DEV 21 */
843eb60705aSEric Wollesen 
844eb60705aSEric Wollesen 	/* Only if more than 2 channels do we release the second branch */
845eb60705aSEric Wollesen 	if (pvt->maxch >= CHANNELS_PER_BRANCH) {
846eb60705aSEric Wollesen 		pci_dev_put(pvt->branch_1);	/* DEV 22 */
847eb60705aSEric Wollesen 	}
848eb60705aSEric Wollesen }
849eb60705aSEric Wollesen 
850eb60705aSEric Wollesen /******************************************************************************
851eb60705aSEric Wollesen  *	determine_amb_resent
852eb60705aSEric Wollesen  *
853eb60705aSEric Wollesen  *		the information is contained in NUM_MTRS different registers
854eb60705aSEric Wollesen  *		determineing which of the NUM_MTRS requires knowing
855eb60705aSEric Wollesen  *		which channel is in question
856eb60705aSEric Wollesen  *
857eb60705aSEric Wollesen  *	2 branches, each with 2 channels
858eb60705aSEric Wollesen  *		b0_ambpresent0 for channel '0'
859eb60705aSEric Wollesen  *		b0_ambpresent1 for channel '1'
860eb60705aSEric Wollesen  *		b1_ambpresent0 for channel '2'
861eb60705aSEric Wollesen  *		b1_ambpresent1 for channel '3'
862eb60705aSEric Wollesen  */
863eb60705aSEric Wollesen static int determine_amb_present_reg(struct i5000_pvt *pvt, int channel)
864eb60705aSEric Wollesen {
865eb60705aSEric Wollesen 	int amb_present;
866eb60705aSEric Wollesen 
867eb60705aSEric Wollesen 	if (channel < CHANNELS_PER_BRANCH) {
868eb60705aSEric Wollesen 		if (channel & 0x1)
869eb60705aSEric Wollesen 			amb_present = pvt->b0_ambpresent1;
870eb60705aSEric Wollesen 		else
871eb60705aSEric Wollesen 			amb_present = pvt->b0_ambpresent0;
872eb60705aSEric Wollesen 	} else {
873eb60705aSEric Wollesen 		if (channel & 0x1)
874eb60705aSEric Wollesen 			amb_present = pvt->b1_ambpresent1;
875eb60705aSEric Wollesen 		else
876eb60705aSEric Wollesen 			amb_present = pvt->b1_ambpresent0;
877eb60705aSEric Wollesen 	}
878eb60705aSEric Wollesen 
879eb60705aSEric Wollesen 	return amb_present;
880eb60705aSEric Wollesen }
881eb60705aSEric Wollesen 
882eb60705aSEric Wollesen /******************************************************************************
883eb60705aSEric Wollesen  * determine_mtr(pvt, csrow, channel)
884eb60705aSEric Wollesen  *
885eb60705aSEric Wollesen  *	return the proper MTR register as determine by the csrow and channel desired
886eb60705aSEric Wollesen  */
887eb60705aSEric Wollesen static int determine_mtr(struct i5000_pvt *pvt, int csrow, int channel)
888eb60705aSEric Wollesen {
889eb60705aSEric Wollesen 	int mtr;
890eb60705aSEric Wollesen 
891eb60705aSEric Wollesen 	if (channel < CHANNELS_PER_BRANCH)
892eb60705aSEric Wollesen 		mtr = pvt->b0_mtr[csrow >> 1];
893eb60705aSEric Wollesen 	else
894eb60705aSEric Wollesen 		mtr = pvt->b1_mtr[csrow >> 1];
895eb60705aSEric Wollesen 
896eb60705aSEric Wollesen 	return mtr;
897eb60705aSEric Wollesen }
898eb60705aSEric Wollesen 
899eb60705aSEric Wollesen /******************************************************************************
900eb60705aSEric Wollesen  */
901eb60705aSEric Wollesen static void decode_mtr(int slot_row, u16 mtr)
902eb60705aSEric Wollesen {
903eb60705aSEric Wollesen 	int ans;
904eb60705aSEric Wollesen 
905eb60705aSEric Wollesen 	ans = MTR_DIMMS_PRESENT(mtr);
906eb60705aSEric Wollesen 
907eb60705aSEric Wollesen 	debugf2("\tMTR%d=0x%x:  DIMMs are %s\n", slot_row, mtr,
908eb60705aSEric Wollesen 		ans ? "Present" : "NOT Present");
909eb60705aSEric Wollesen 	if (!ans)
910eb60705aSEric Wollesen 		return;
911eb60705aSEric Wollesen 
912eb60705aSEric Wollesen 	debugf2("\t\tWIDTH: x%d\n", MTR_DRAM_WIDTH(mtr));
913eb60705aSEric Wollesen 	debugf2("\t\tNUMBANK: %d bank(s)\n", MTR_DRAM_BANKS(mtr));
914eb60705aSEric Wollesen 	debugf2("\t\tNUMRANK: %s\n", MTR_DIMM_RANK(mtr) ? "double" : "single");
915eb60705aSEric Wollesen 	debugf2("\t\tNUMROW: %s\n", numrow_toString[MTR_DIMM_ROWS(mtr)]);
916eb60705aSEric Wollesen 	debugf2("\t\tNUMCOL: %s\n", numcol_toString[MTR_DIMM_COLS(mtr)]);
917eb60705aSEric Wollesen }
918eb60705aSEric Wollesen 
919eb60705aSEric Wollesen static void handle_channel(struct i5000_pvt *pvt, int csrow, int channel,
920eb60705aSEric Wollesen 			   struct i5000_dimm_info *dinfo)
921eb60705aSEric Wollesen {
922eb60705aSEric Wollesen 	int mtr;
923eb60705aSEric Wollesen 	int amb_present_reg;
924eb60705aSEric Wollesen 	int addrBits;
925eb60705aSEric Wollesen 
926eb60705aSEric Wollesen 	mtr = determine_mtr(pvt, csrow, channel);
927eb60705aSEric Wollesen 	if (MTR_DIMMS_PRESENT(mtr)) {
928eb60705aSEric Wollesen 		amb_present_reg = determine_amb_present_reg(pvt, channel);
929eb60705aSEric Wollesen 
930eb60705aSEric Wollesen 		/* Determine if there is  a  DIMM present in this DIMM slot */
931eb60705aSEric Wollesen 		if (amb_present_reg & (1 << (csrow >> 1))) {
932eb60705aSEric Wollesen 			dinfo->dual_rank = MTR_DIMM_RANK(mtr);
933eb60705aSEric Wollesen 
934eb60705aSEric Wollesen 			if (!((dinfo->dual_rank == 0) &&
935eb60705aSEric Wollesen 			      ((csrow & 0x1) == 0x1))) {
936eb60705aSEric Wollesen 				/* Start with the number of bits for a Bank
937eb60705aSEric Wollesen 				 * on the DRAM */
938eb60705aSEric Wollesen 				addrBits = MTR_DRAM_BANKS_ADDR_BITS(mtr);
939eb60705aSEric Wollesen 				/* Add thenumber of ROW bits */
940eb60705aSEric Wollesen 				addrBits += MTR_DIMM_ROWS_ADDR_BITS(mtr);
941eb60705aSEric Wollesen 				/* add the number of COLUMN bits */
942eb60705aSEric Wollesen 				addrBits += MTR_DIMM_COLS_ADDR_BITS(mtr);
943eb60705aSEric Wollesen 
944eb60705aSEric Wollesen 				addrBits += 6;	/* add 64 bits per DIMM */
945eb60705aSEric Wollesen 				addrBits -= 20;	/* divide by 2^^20 */
946eb60705aSEric Wollesen 				addrBits -= 3;	/* 8 bits per bytes */
947eb60705aSEric Wollesen 
948eb60705aSEric Wollesen 				dinfo->megabytes = 1 << addrBits;
949eb60705aSEric Wollesen 			}
950eb60705aSEric Wollesen 		}
951eb60705aSEric Wollesen 	}
952eb60705aSEric Wollesen }
953eb60705aSEric Wollesen 
954eb60705aSEric Wollesen /******************************************************************************
955eb60705aSEric Wollesen  *	calculate_dimm_size
956eb60705aSEric Wollesen  *
957eb60705aSEric Wollesen  *	also will output a DIMM matrix map, if debug is enabled, for viewing
958eb60705aSEric Wollesen  *	how the DIMMs are populated
959eb60705aSEric Wollesen  */
960eb60705aSEric Wollesen static void calculate_dimm_size(struct i5000_pvt *pvt)
961eb60705aSEric Wollesen {
962eb60705aSEric Wollesen 	struct i5000_dimm_info *dinfo;
963eb60705aSEric Wollesen 	int csrow, max_csrows;
964eb60705aSEric Wollesen 	char *p, *mem_buffer;
965eb60705aSEric Wollesen 	int space, n;
966eb60705aSEric Wollesen 	int channel;
967eb60705aSEric Wollesen 
968eb60705aSEric Wollesen 	/* ================= Generate some debug output ================= */
969eb60705aSEric Wollesen 	space = PAGE_SIZE;
970eb60705aSEric Wollesen 	mem_buffer = p = kmalloc(space, GFP_KERNEL);
971eb60705aSEric Wollesen 	if (p == NULL) {
972eb60705aSEric Wollesen 		i5000_printk(KERN_ERR, "MC: %s:%s() kmalloc() failed\n",
973eb60705aSEric Wollesen 			     __FILE__, __func__);
974eb60705aSEric Wollesen 		return;
975eb60705aSEric Wollesen 	}
976eb60705aSEric Wollesen 
977eb60705aSEric Wollesen 	n = snprintf(p, space, "\n");
978eb60705aSEric Wollesen 	p += n;
979eb60705aSEric Wollesen 	space -= n;
980eb60705aSEric Wollesen 
981eb60705aSEric Wollesen 	/* Scan all the actual CSROWS (which is # of DIMMS * 2)
982eb60705aSEric Wollesen 	 * and calculate the information for each DIMM
983eb60705aSEric Wollesen 	 * Start with the highest csrow first, to display it first
984eb60705aSEric Wollesen 	 * and work toward the 0th csrow
985eb60705aSEric Wollesen 	 */
986eb60705aSEric Wollesen 	max_csrows = pvt->maxdimmperch * 2;
987eb60705aSEric Wollesen 	for (csrow = max_csrows - 1; csrow >= 0; csrow--) {
988eb60705aSEric Wollesen 
989eb60705aSEric Wollesen 		/* on an odd csrow, first output a 'boundary' marker,
990eb60705aSEric Wollesen 		 * then reset the message buffer  */
991eb60705aSEric Wollesen 		if (csrow & 0x1) {
992eb60705aSEric Wollesen 			n = snprintf(p, space, "---------------------------"
993eb60705aSEric Wollesen 				     "--------------------------------");
994eb60705aSEric Wollesen 			p += n;
995eb60705aSEric Wollesen 			space -= n;
996eb60705aSEric Wollesen 			debugf2("%s\n", mem_buffer);
997eb60705aSEric Wollesen 			p = mem_buffer;
998eb60705aSEric Wollesen 			space = PAGE_SIZE;
999eb60705aSEric Wollesen 		}
1000eb60705aSEric Wollesen 		n = snprintf(p, space, "csrow %2d    ", csrow);
1001eb60705aSEric Wollesen 		p += n;
1002eb60705aSEric Wollesen 		space -= n;
1003eb60705aSEric Wollesen 
1004eb60705aSEric Wollesen 		for (channel = 0; channel < pvt->maxch; channel++) {
1005eb60705aSEric Wollesen 			dinfo = &pvt->dimm_info[csrow][channel];
1006eb60705aSEric Wollesen 			handle_channel(pvt, csrow, channel, dinfo);
1007eb60705aSEric Wollesen 			n = snprintf(p, space, "%4d MB   | ", dinfo->megabytes);
1008eb60705aSEric Wollesen 			p += n;
1009eb60705aSEric Wollesen 			space -= n;
1010eb60705aSEric Wollesen 		}
1011eb60705aSEric Wollesen 		n = snprintf(p, space, "\n");
1012eb60705aSEric Wollesen 		p += n;
1013eb60705aSEric Wollesen 		space -= n;
1014eb60705aSEric Wollesen 	}
1015eb60705aSEric Wollesen 
1016eb60705aSEric Wollesen 	/* Output the last bottom 'boundary' marker */
1017eb60705aSEric Wollesen 	n = snprintf(p, space, "---------------------------"
1018eb60705aSEric Wollesen 		     "--------------------------------\n");
1019eb60705aSEric Wollesen 	p += n;
1020eb60705aSEric Wollesen 	space -= n;
1021eb60705aSEric Wollesen 
1022eb60705aSEric Wollesen 	/* now output the 'channel' labels */
1023eb60705aSEric Wollesen 	n = snprintf(p, space, "            ");
1024eb60705aSEric Wollesen 	p += n;
1025eb60705aSEric Wollesen 	space -= n;
1026eb60705aSEric Wollesen 	for (channel = 0; channel < pvt->maxch; channel++) {
1027eb60705aSEric Wollesen 		n = snprintf(p, space, "channel %d | ", channel);
1028eb60705aSEric Wollesen 		p += n;
1029eb60705aSEric Wollesen 		space -= n;
1030eb60705aSEric Wollesen 	}
1031eb60705aSEric Wollesen 	n = snprintf(p, space, "\n");
1032eb60705aSEric Wollesen 	p += n;
1033eb60705aSEric Wollesen 	space -= n;
1034eb60705aSEric Wollesen 
1035eb60705aSEric Wollesen 	/* output the last message and free buffer */
1036eb60705aSEric Wollesen 	debugf2("%s\n", mem_buffer);
1037eb60705aSEric Wollesen 	kfree(mem_buffer);
1038eb60705aSEric Wollesen }
1039eb60705aSEric Wollesen 
1040eb60705aSEric Wollesen /******************************************************************************
1041eb60705aSEric Wollesen  *	i5000_get_mc_regs	read in the necessary registers and
1042eb60705aSEric Wollesen  *				cache locally
1043eb60705aSEric Wollesen  *
1044eb60705aSEric Wollesen  *			Fills in the private data members
1045eb60705aSEric Wollesen  */
1046eb60705aSEric Wollesen static void i5000_get_mc_regs(struct mem_ctl_info *mci)
1047eb60705aSEric Wollesen {
1048eb60705aSEric Wollesen 	struct i5000_pvt *pvt;
1049eb60705aSEric Wollesen 	u32 actual_tolm;
1050eb60705aSEric Wollesen 	u16 limit;
1051eb60705aSEric Wollesen 	int slot_row;
1052eb60705aSEric Wollesen 	int maxch;
1053eb60705aSEric Wollesen 	int maxdimmperch;
1054eb60705aSEric Wollesen 	int way0, way1;
1055eb60705aSEric Wollesen 
1056eb60705aSEric Wollesen 	pvt = (struct i5000_pvt *)mci->pvt_info;
1057eb60705aSEric Wollesen 
1058eb60705aSEric Wollesen 	pci_read_config_dword(pvt->system_address, AMBASE,
1059eb60705aSEric Wollesen 			      (u32 *) & pvt->ambase);
1060eb60705aSEric Wollesen 	pci_read_config_dword(pvt->system_address, AMBASE + sizeof(u32),
1061eb60705aSEric Wollesen 			      ((u32 *) & pvt->ambase) + sizeof(u32));
1062eb60705aSEric Wollesen 
1063eb60705aSEric Wollesen 	maxdimmperch = pvt->maxdimmperch;
1064eb60705aSEric Wollesen 	maxch = pvt->maxch;
1065eb60705aSEric Wollesen 
1066eb60705aSEric Wollesen 	debugf2("AMBASE= 0x%lx  MAXCH= %d  MAX-DIMM-Per-CH= %d\n",
1067eb60705aSEric Wollesen 		(long unsigned int)pvt->ambase, pvt->maxch, pvt->maxdimmperch);
1068eb60705aSEric Wollesen 
1069eb60705aSEric Wollesen 	/* Get the Branch Map regs */
1070eb60705aSEric Wollesen 	pci_read_config_word(pvt->branchmap_werrors, TOLM, &pvt->tolm);
1071eb60705aSEric Wollesen 	pvt->tolm >>= 12;
1072eb60705aSEric Wollesen 	debugf2("\nTOLM (number of 256M regions) =%u (0x%x)\n", pvt->tolm,
1073eb60705aSEric Wollesen 		pvt->tolm);
1074eb60705aSEric Wollesen 
1075eb60705aSEric Wollesen 	actual_tolm = pvt->tolm << 28;
1076eb60705aSEric Wollesen 	debugf2("Actual TOLM byte addr=%u (0x%x)\n", actual_tolm, actual_tolm);
1077eb60705aSEric Wollesen 
1078eb60705aSEric Wollesen 	pci_read_config_word(pvt->branchmap_werrors, MIR0, &pvt->mir0);
1079eb60705aSEric Wollesen 	pci_read_config_word(pvt->branchmap_werrors, MIR1, &pvt->mir1);
1080eb60705aSEric Wollesen 	pci_read_config_word(pvt->branchmap_werrors, MIR2, &pvt->mir2);
1081eb60705aSEric Wollesen 
1082eb60705aSEric Wollesen 	/* Get the MIR[0-2] regs */
1083eb60705aSEric Wollesen 	limit = (pvt->mir0 >> 4) & 0x0FFF;
1084eb60705aSEric Wollesen 	way0 = pvt->mir0 & 0x1;
1085eb60705aSEric Wollesen 	way1 = pvt->mir0 & 0x2;
1086eb60705aSEric Wollesen 	debugf2("MIR0: limit= 0x%x  WAY1= %u  WAY0= %x\n", limit, way1, way0);
1087eb60705aSEric Wollesen 	limit = (pvt->mir1 >> 4) & 0x0FFF;
1088eb60705aSEric Wollesen 	way0 = pvt->mir1 & 0x1;
1089eb60705aSEric Wollesen 	way1 = pvt->mir1 & 0x2;
1090eb60705aSEric Wollesen 	debugf2("MIR1: limit= 0x%x  WAY1= %u  WAY0= %x\n", limit, way1, way0);
1091eb60705aSEric Wollesen 	limit = (pvt->mir2 >> 4) & 0x0FFF;
1092eb60705aSEric Wollesen 	way0 = pvt->mir2 & 0x1;
1093eb60705aSEric Wollesen 	way1 = pvt->mir2 & 0x2;
1094eb60705aSEric Wollesen 	debugf2("MIR2: limit= 0x%x  WAY1= %u  WAY0= %x\n", limit, way1, way0);
1095eb60705aSEric Wollesen 
1096eb60705aSEric Wollesen 	/* Get the MTR[0-3] regs */
1097eb60705aSEric Wollesen 	for (slot_row = 0; slot_row < NUM_MTRS; slot_row++) {
1098eb60705aSEric Wollesen 		int where = MTR0 + (slot_row * sizeof(u32));
1099eb60705aSEric Wollesen 
1100eb60705aSEric Wollesen 		pci_read_config_word(pvt->branch_0, where,
1101eb60705aSEric Wollesen 				     &pvt->b0_mtr[slot_row]);
1102eb60705aSEric Wollesen 
1103eb60705aSEric Wollesen 		debugf2("MTR%d where=0x%x B0 value=0x%x\n", slot_row, where,
1104eb60705aSEric Wollesen 			pvt->b0_mtr[slot_row]);
1105eb60705aSEric Wollesen 
1106eb60705aSEric Wollesen 		if (pvt->maxch >= CHANNELS_PER_BRANCH) {
1107eb60705aSEric Wollesen 			pci_read_config_word(pvt->branch_1, where,
1108eb60705aSEric Wollesen 					     &pvt->b1_mtr[slot_row]);
1109eb60705aSEric Wollesen 			debugf2("MTR%d where=0x%x B1 value=0x%x\n", slot_row,
1110eb60705aSEric Wollesen 				where, pvt->b0_mtr[slot_row]);
1111eb60705aSEric Wollesen 		} else {
1112eb60705aSEric Wollesen 			pvt->b1_mtr[slot_row] = 0;
1113eb60705aSEric Wollesen 		}
1114eb60705aSEric Wollesen 	}
1115eb60705aSEric Wollesen 
1116eb60705aSEric Wollesen 	/* Read and dump branch 0's MTRs */
1117eb60705aSEric Wollesen 	debugf2("\nMemory Technology Registers:\n");
1118eb60705aSEric Wollesen 	debugf2("   Branch 0:\n");
1119eb60705aSEric Wollesen 	for (slot_row = 0; slot_row < NUM_MTRS; slot_row++) {
1120eb60705aSEric Wollesen 		decode_mtr(slot_row, pvt->b0_mtr[slot_row]);
1121eb60705aSEric Wollesen 	}
1122eb60705aSEric Wollesen 	pci_read_config_word(pvt->branch_0, AMB_PRESENT_0,
1123eb60705aSEric Wollesen 			     &pvt->b0_ambpresent0);
1124eb60705aSEric Wollesen 	debugf2("\t\tAMB-Branch 0-present0 0x%x:\n", pvt->b0_ambpresent0);
1125eb60705aSEric Wollesen 	pci_read_config_word(pvt->branch_0, AMB_PRESENT_1,
1126eb60705aSEric Wollesen 			     &pvt->b0_ambpresent1);
1127eb60705aSEric Wollesen 	debugf2("\t\tAMB-Branch 0-present1 0x%x:\n", pvt->b0_ambpresent1);
1128eb60705aSEric Wollesen 
1129eb60705aSEric Wollesen 	/* Only if we have 2 branchs (4 channels) */
1130eb60705aSEric Wollesen 	if (pvt->maxch < CHANNELS_PER_BRANCH) {
1131eb60705aSEric Wollesen 		pvt->b1_ambpresent0 = 0;
1132eb60705aSEric Wollesen 		pvt->b1_ambpresent1 = 0;
1133eb60705aSEric Wollesen 	} else {
1134eb60705aSEric Wollesen 		/* Read and dump  branch 1's MTRs */
1135eb60705aSEric Wollesen 		debugf2("   Branch 1:\n");
1136eb60705aSEric Wollesen 		for (slot_row = 0; slot_row < NUM_MTRS; slot_row++) {
1137eb60705aSEric Wollesen 			decode_mtr(slot_row, pvt->b1_mtr[slot_row]);
1138eb60705aSEric Wollesen 		}
1139eb60705aSEric Wollesen 		pci_read_config_word(pvt->branch_1, AMB_PRESENT_0,
1140eb60705aSEric Wollesen 				     &pvt->b1_ambpresent0);
1141eb60705aSEric Wollesen 		debugf2("\t\tAMB-Branch 1-present0 0x%x:\n",
1142eb60705aSEric Wollesen 			pvt->b1_ambpresent0);
1143eb60705aSEric Wollesen 		pci_read_config_word(pvt->branch_1, AMB_PRESENT_1,
1144eb60705aSEric Wollesen 				     &pvt->b1_ambpresent1);
1145eb60705aSEric Wollesen 		debugf2("\t\tAMB-Branch 1-present1 0x%x:\n",
1146eb60705aSEric Wollesen 			pvt->b1_ambpresent1);
1147eb60705aSEric Wollesen 	}
1148eb60705aSEric Wollesen 
1149eb60705aSEric Wollesen 	/* Go and determine the size of each DIMM and place in an
1150eb60705aSEric Wollesen 	 * orderly matrix */
1151eb60705aSEric Wollesen 	calculate_dimm_size(pvt);
1152eb60705aSEric Wollesen }
1153eb60705aSEric Wollesen 
1154eb60705aSEric Wollesen /******************************************************************************
1155eb60705aSEric Wollesen  *	i5000_init_csrows	Initialize the 'csrows' table within
1156eb60705aSEric Wollesen  *				the mci control	structure with the
1157eb60705aSEric Wollesen  *				addressing of memory.
1158eb60705aSEric Wollesen  *
1159eb60705aSEric Wollesen  *	return:
1160eb60705aSEric Wollesen  *		0	success
1161eb60705aSEric Wollesen  *		1	no actual memory found on this MC
1162eb60705aSEric Wollesen  */
1163eb60705aSEric Wollesen static int i5000_init_csrows(struct mem_ctl_info *mci)
1164eb60705aSEric Wollesen {
1165eb60705aSEric Wollesen 	struct i5000_pvt *pvt;
1166eb60705aSEric Wollesen 	struct csrow_info *p_csrow;
1167eb60705aSEric Wollesen 	int empty, channel_count;
1168eb60705aSEric Wollesen 	int max_csrows;
1169eb60705aSEric Wollesen 	int mtr;
1170eb60705aSEric Wollesen 	int csrow_megs;
1171eb60705aSEric Wollesen 	int channel;
1172eb60705aSEric Wollesen 	int csrow;
1173eb60705aSEric Wollesen 
1174eb60705aSEric Wollesen 	pvt = (struct i5000_pvt *)mci->pvt_info;
1175eb60705aSEric Wollesen 
1176eb60705aSEric Wollesen 	channel_count = pvt->maxch;
1177eb60705aSEric Wollesen 	max_csrows = pvt->maxdimmperch * 2;
1178eb60705aSEric Wollesen 
1179eb60705aSEric Wollesen 	empty = 1;		/* Assume NO memory */
1180eb60705aSEric Wollesen 
1181eb60705aSEric Wollesen 	for (csrow = 0; csrow < max_csrows; csrow++) {
1182eb60705aSEric Wollesen 		p_csrow = &mci->csrows[csrow];
1183eb60705aSEric Wollesen 
1184eb60705aSEric Wollesen 		p_csrow->csrow_idx = csrow;
1185eb60705aSEric Wollesen 
1186eb60705aSEric Wollesen 		/* use branch 0 for the basis */
1187eb60705aSEric Wollesen 		mtr = pvt->b0_mtr[csrow >> 1];
1188eb60705aSEric Wollesen 
1189eb60705aSEric Wollesen 		/* if no DIMMS on this row, continue */
1190eb60705aSEric Wollesen 		if (!MTR_DIMMS_PRESENT(mtr))
1191eb60705aSEric Wollesen 			continue;
1192eb60705aSEric Wollesen 
1193eb60705aSEric Wollesen 		/* FAKE OUT VALUES, FIXME */
1194eb60705aSEric Wollesen 		p_csrow->first_page = 0 + csrow * 20;
1195eb60705aSEric Wollesen 		p_csrow->last_page = 9 + csrow * 20;
1196eb60705aSEric Wollesen 		p_csrow->page_mask = 0xFFF;
1197eb60705aSEric Wollesen 
1198eb60705aSEric Wollesen 		p_csrow->grain = 8;
1199eb60705aSEric Wollesen 
1200eb60705aSEric Wollesen 		csrow_megs = 0;
1201eb60705aSEric Wollesen 		for (channel = 0; channel < pvt->maxch; channel++) {
1202eb60705aSEric Wollesen 			csrow_megs += pvt->dimm_info[csrow][channel].megabytes;
1203eb60705aSEric Wollesen 		}
1204eb60705aSEric Wollesen 
1205eb60705aSEric Wollesen 		p_csrow->nr_pages = csrow_megs << 8;
1206eb60705aSEric Wollesen 
1207eb60705aSEric Wollesen 		/* Assume DDR2 for now */
1208eb60705aSEric Wollesen 		p_csrow->mtype = MEM_FB_DDR2;
1209eb60705aSEric Wollesen 
1210eb60705aSEric Wollesen 		/* ask what device type on this row */
1211eb60705aSEric Wollesen 		if (MTR_DRAM_WIDTH(mtr))
1212eb60705aSEric Wollesen 			p_csrow->dtype = DEV_X8;
1213eb60705aSEric Wollesen 		else
1214eb60705aSEric Wollesen 			p_csrow->dtype = DEV_X4;
1215eb60705aSEric Wollesen 
1216eb60705aSEric Wollesen 		p_csrow->edac_mode = EDAC_S8ECD8ED;
1217eb60705aSEric Wollesen 
1218eb60705aSEric Wollesen 		empty = 0;
1219eb60705aSEric Wollesen 	}
1220eb60705aSEric Wollesen 
1221eb60705aSEric Wollesen 	return empty;
1222eb60705aSEric Wollesen }
1223eb60705aSEric Wollesen 
1224eb60705aSEric Wollesen /******************************************************************************
1225eb60705aSEric Wollesen  *	i5000_enable_error_reporting
1226eb60705aSEric Wollesen  *			Turn on the memory reporting features of the hardware
1227eb60705aSEric Wollesen  */
1228eb60705aSEric Wollesen static void i5000_enable_error_reporting(struct mem_ctl_info *mci)
1229eb60705aSEric Wollesen {
1230eb60705aSEric Wollesen 	struct i5000_pvt *pvt;
1231eb60705aSEric Wollesen 	u32 fbd_error_mask;
1232eb60705aSEric Wollesen 
1233eb60705aSEric Wollesen 	pvt = (struct i5000_pvt *)mci->pvt_info;
1234eb60705aSEric Wollesen 
1235eb60705aSEric Wollesen 	/* Read the FBD Error Mask Register */
1236eb60705aSEric Wollesen 	pci_read_config_dword(pvt->branchmap_werrors, EMASK_FBD,
1237eb60705aSEric Wollesen 			      &fbd_error_mask);
1238eb60705aSEric Wollesen 
1239eb60705aSEric Wollesen 	/* Enable with a '0' */
1240eb60705aSEric Wollesen 	fbd_error_mask &= ~(ENABLE_EMASK_ALL);
1241eb60705aSEric Wollesen 
1242eb60705aSEric Wollesen 	pci_write_config_dword(pvt->branchmap_werrors, EMASK_FBD,
1243eb60705aSEric Wollesen 			       fbd_error_mask);
1244eb60705aSEric Wollesen }
1245eb60705aSEric Wollesen 
1246eb60705aSEric Wollesen /******************************************************************************
1247eb60705aSEric Wollesen  * i5000_get_dimm_and_channel_counts(pdev, &num_csrows, &num_channels)
1248eb60705aSEric Wollesen  *
1249eb60705aSEric Wollesen  *	ask the device how many channels are present and how many CSROWS
1250eb60705aSEric Wollesen  *	 as well
1251eb60705aSEric Wollesen  */
1252eb60705aSEric Wollesen static void i5000_get_dimm_and_channel_counts(struct pci_dev *pdev,
1253eb60705aSEric Wollesen 					      int *num_dimms_per_channel,
1254eb60705aSEric Wollesen 					      int *num_channels)
1255eb60705aSEric Wollesen {
1256eb60705aSEric Wollesen 	u8 value;
1257eb60705aSEric Wollesen 
1258eb60705aSEric Wollesen 	/* Need to retrieve just how many channels and dimms per channel are
1259eb60705aSEric Wollesen 	 * supported on this memory controller
1260eb60705aSEric Wollesen 	 */
1261eb60705aSEric Wollesen 	pci_read_config_byte(pdev, MAXDIMMPERCH, &value);
1262eb60705aSEric Wollesen 	*num_dimms_per_channel = (int)value *2;
1263eb60705aSEric Wollesen 
1264eb60705aSEric Wollesen 	pci_read_config_byte(pdev, MAXCH, &value);
1265eb60705aSEric Wollesen 	*num_channels = (int)value;
1266eb60705aSEric Wollesen }
1267eb60705aSEric Wollesen 
1268eb60705aSEric Wollesen /******************************************************************************
1269eb60705aSEric Wollesen  *	i5000_probe1	Probe for ONE instance of device to see if it is
1270eb60705aSEric Wollesen  *			present.
1271eb60705aSEric Wollesen  *	return:
1272eb60705aSEric Wollesen  *		0 for FOUND a device
1273eb60705aSEric Wollesen  *		< 0 for error code
1274eb60705aSEric Wollesen  */
1275eb60705aSEric Wollesen static int i5000_probe1(struct pci_dev *pdev, int dev_idx)
1276eb60705aSEric Wollesen {
1277eb60705aSEric Wollesen 	struct mem_ctl_info *mci;
1278eb60705aSEric Wollesen 	struct i5000_pvt *pvt;
1279eb60705aSEric Wollesen 	int num_channels;
1280eb60705aSEric Wollesen 	int num_dimms_per_channel;
1281eb60705aSEric Wollesen 	int num_csrows;
1282eb60705aSEric Wollesen 
1283eb60705aSEric Wollesen 	debugf0("MC: " __FILE__ ": %s(), pdev bus %u dev=0x%x fn=0x%x\n",
1284eb60705aSEric Wollesen 		__func__,
1285eb60705aSEric Wollesen 		pdev->bus->number,
1286eb60705aSEric Wollesen 		PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn));
1287eb60705aSEric Wollesen 
1288eb60705aSEric Wollesen 	/* We only are looking for func 0 of the set */
1289eb60705aSEric Wollesen 	if (PCI_FUNC(pdev->devfn) != 0)
1290eb60705aSEric Wollesen 		return -ENODEV;
1291eb60705aSEric Wollesen 
1292c0d12172SDave Jiang 	/* make sure error reporting method is sane */
1293c0d12172SDave Jiang 	switch (edac_op_state) {
1294c0d12172SDave Jiang 	case EDAC_OPSTATE_POLL:
1295c0d12172SDave Jiang 	case EDAC_OPSTATE_NMI:
1296c0d12172SDave Jiang 		break;
1297c0d12172SDave Jiang 	default:
1298c0d12172SDave Jiang 		edac_op_state = EDAC_OPSTATE_POLL;
1299c0d12172SDave Jiang 		break;
1300c0d12172SDave Jiang 	}
1301c0d12172SDave Jiang 
1302eb60705aSEric Wollesen 	/* Ask the devices for the number of CSROWS and CHANNELS so
1303eb60705aSEric Wollesen 	 * that we can calculate the memory resources, etc
1304eb60705aSEric Wollesen 	 *
1305eb60705aSEric Wollesen 	 * The Chipset will report what it can handle which will be greater
1306eb60705aSEric Wollesen 	 * or equal to what the motherboard manufacturer will implement.
1307eb60705aSEric Wollesen 	 *
1308eb60705aSEric Wollesen 	 * As we don't have a motherboard identification routine to determine
1309eb60705aSEric Wollesen 	 * actual number of slots/dimms per channel, we thus utilize the
1310eb60705aSEric Wollesen 	 * resource as specified by the chipset. Thus, we might have
1311eb60705aSEric Wollesen 	 * have more DIMMs per channel than actually on the mobo, but this
1312eb60705aSEric Wollesen 	 * allows the driver to support upto the chipset max, without
1313eb60705aSEric Wollesen 	 * some fancy mobo determination.
1314eb60705aSEric Wollesen 	 */
1315eb60705aSEric Wollesen 	i5000_get_dimm_and_channel_counts(pdev, &num_dimms_per_channel,
1316eb60705aSEric Wollesen 					  &num_channels);
1317eb60705aSEric Wollesen 	num_csrows = num_dimms_per_channel * 2;
1318eb60705aSEric Wollesen 
1319eb60705aSEric Wollesen 	debugf0("MC: %s(): Number of - Channels= %d  DIMMS= %d  CSROWS= %d\n",
1320eb60705aSEric Wollesen 		__func__, num_channels, num_dimms_per_channel, num_csrows);
1321eb60705aSEric Wollesen 
1322eb60705aSEric Wollesen 	/* allocate a new MC control structure */
1323eb60705aSEric Wollesen 	mci = edac_mc_alloc(sizeof(*pvt), num_csrows, num_channels);
1324eb60705aSEric Wollesen 
1325eb60705aSEric Wollesen 	if (mci == NULL)
1326eb60705aSEric Wollesen 		return -ENOMEM;
1327eb60705aSEric Wollesen 
1328eb60705aSEric Wollesen 	debugf0("MC: " __FILE__ ": %s(): mci = %p\n", __func__, mci);
1329eb60705aSEric Wollesen 
1330eb60705aSEric Wollesen 	mci->dev = &pdev->dev;	/* record ptr  to the generic device */
1331eb60705aSEric Wollesen 
1332eb60705aSEric Wollesen 	pvt = (struct i5000_pvt *)mci->pvt_info;
1333eb60705aSEric Wollesen 	pvt->system_address = pdev;	/* Record this device in our private */
1334eb60705aSEric Wollesen 	pvt->maxch = num_channels;
1335eb60705aSEric Wollesen 	pvt->maxdimmperch = num_dimms_per_channel;
1336eb60705aSEric Wollesen 
1337eb60705aSEric Wollesen 	/* 'get' the pci devices we want to reserve for our use */
1338eb60705aSEric Wollesen 	if (i5000_get_devices(mci, dev_idx))
1339eb60705aSEric Wollesen 		goto fail0;
1340eb60705aSEric Wollesen 
1341eb60705aSEric Wollesen 	/* Time to get serious */
1342eb60705aSEric Wollesen 	i5000_get_mc_regs(mci);	/* retrieve the hardware registers */
1343eb60705aSEric Wollesen 
1344eb60705aSEric Wollesen 	mci->mc_idx = 0;
1345eb60705aSEric Wollesen 	mci->mtype_cap = MEM_FLAG_FB_DDR2;
1346eb60705aSEric Wollesen 	mci->edac_ctl_cap = EDAC_FLAG_NONE;
1347eb60705aSEric Wollesen 	mci->edac_cap = EDAC_FLAG_NONE;
1348eb60705aSEric Wollesen 	mci->mod_name = "i5000_edac.c";
1349eb60705aSEric Wollesen 	mci->mod_ver = I5000_REVISION;
1350eb60705aSEric Wollesen 	mci->ctl_name = i5000_devs[dev_idx].ctl_name;
1351c4192705SDave Jiang 	mci->dev_name = pci_name(pdev);
1352eb60705aSEric Wollesen 	mci->ctl_page_to_phys = NULL;
1353eb60705aSEric Wollesen 
1354eb60705aSEric Wollesen 	/* Set the function pointer to an actual operation function */
1355eb60705aSEric Wollesen 	mci->edac_check = i5000_check_error;
1356eb60705aSEric Wollesen 
1357eb60705aSEric Wollesen 	/* initialize the MC control structure 'csrows' table
1358eb60705aSEric Wollesen 	 * with the mapping and control information */
1359eb60705aSEric Wollesen 	if (i5000_init_csrows(mci)) {
1360eb60705aSEric Wollesen 		debugf0("MC: Setting mci->edac_cap to EDAC_FLAG_NONE\n"
1361eb60705aSEric Wollesen 			"    because i5000_init_csrows() returned nonzero "
1362eb60705aSEric Wollesen 			"value\n");
1363eb60705aSEric Wollesen 		mci->edac_cap = EDAC_FLAG_NONE;	/* no csrows found */
1364eb60705aSEric Wollesen 	} else {
1365eb60705aSEric Wollesen 		debugf1("MC: Enable error reporting now\n");
1366eb60705aSEric Wollesen 		i5000_enable_error_reporting(mci);
1367eb60705aSEric Wollesen 	}
1368eb60705aSEric Wollesen 
1369eb60705aSEric Wollesen 	/* add this new MC control structure to EDAC's list of MCs */
1370eb60705aSEric Wollesen 	if (edac_mc_add_mc(mci, pvt->node_id)) {
1371eb60705aSEric Wollesen 		debugf0("MC: " __FILE__
1372eb60705aSEric Wollesen 			": %s(): failed edac_mc_add_mc()\n", __func__);
1373eb60705aSEric Wollesen 		/* FIXME: perhaps some code should go here that disables error
1374eb60705aSEric Wollesen 		 * reporting if we just enabled it
1375eb60705aSEric Wollesen 		 */
1376eb60705aSEric Wollesen 		goto fail1;
1377eb60705aSEric Wollesen 	}
1378eb60705aSEric Wollesen 
1379eb60705aSEric Wollesen 	i5000_clear_error(mci);
1380eb60705aSEric Wollesen 
1381456a2f95SDave Jiang 	/* allocating generic PCI control info */
1382456a2f95SDave Jiang 	i5000_pci = edac_pci_create_generic_ctl(&pdev->dev, EDAC_MOD_STR);
1383456a2f95SDave Jiang 	if (!i5000_pci) {
1384456a2f95SDave Jiang 		printk(KERN_WARNING
1385456a2f95SDave Jiang 			"%s(): Unable to create PCI control\n",
1386456a2f95SDave Jiang 			__func__);
1387456a2f95SDave Jiang 		printk(KERN_WARNING
1388456a2f95SDave Jiang 			"%s(): PCI error report via EDAC not setup\n",
1389456a2f95SDave Jiang 			__func__);
1390456a2f95SDave Jiang 	}
1391456a2f95SDave Jiang 
1392eb60705aSEric Wollesen 	return 0;
1393eb60705aSEric Wollesen 
1394eb60705aSEric Wollesen 	/* Error exit unwinding stack */
1395eb60705aSEric Wollesen       fail1:
1396eb60705aSEric Wollesen 
1397eb60705aSEric Wollesen 	i5000_put_devices(mci);
1398eb60705aSEric Wollesen 
1399eb60705aSEric Wollesen       fail0:
1400eb60705aSEric Wollesen 	edac_mc_free(mci);
1401eb60705aSEric Wollesen 	return -ENODEV;
1402eb60705aSEric Wollesen }
1403eb60705aSEric Wollesen 
1404eb60705aSEric Wollesen /******************************************************************************
1405eb60705aSEric Wollesen  *	i5000_init_one	constructor for one instance of device
1406eb60705aSEric Wollesen  *
1407eb60705aSEric Wollesen  * 	returns:
1408eb60705aSEric Wollesen  *		negative on error
1409eb60705aSEric Wollesen  *		count (>= 0)
1410eb60705aSEric Wollesen  */
1411eb60705aSEric Wollesen static int __devinit i5000_init_one(struct pci_dev *pdev,
1412eb60705aSEric Wollesen 				    const struct pci_device_id *id)
1413eb60705aSEric Wollesen {
1414eb60705aSEric Wollesen 	int rc;
1415eb60705aSEric Wollesen 
1416eb60705aSEric Wollesen 	debugf0("MC: " __FILE__ ": %s()\n", __func__);
1417eb60705aSEric Wollesen 
1418eb60705aSEric Wollesen 	/* wake up device */
1419eb60705aSEric Wollesen 	rc = pci_enable_device(pdev);
1420eb60705aSEric Wollesen 	if (rc == -EIO)
1421eb60705aSEric Wollesen 		return rc;
1422eb60705aSEric Wollesen 
1423eb60705aSEric Wollesen 	/* now probe and enable the device */
1424eb60705aSEric Wollesen 	return i5000_probe1(pdev, id->driver_data);
1425eb60705aSEric Wollesen }
1426eb60705aSEric Wollesen 
1427eb60705aSEric Wollesen /**************************************************************************
1428eb60705aSEric Wollesen  *	i5000_remove_one	destructor for one instance of device
1429eb60705aSEric Wollesen  *
1430eb60705aSEric Wollesen  */
1431eb60705aSEric Wollesen static void __devexit i5000_remove_one(struct pci_dev *pdev)
1432eb60705aSEric Wollesen {
1433eb60705aSEric Wollesen 	struct mem_ctl_info *mci;
1434eb60705aSEric Wollesen 
1435eb60705aSEric Wollesen 	debugf0(__FILE__ ": %s()\n", __func__);
1436eb60705aSEric Wollesen 
1437456a2f95SDave Jiang 	if (i5000_pci)
1438456a2f95SDave Jiang 		edac_pci_release_generic_ctl(i5000_pci);
1439456a2f95SDave Jiang 
1440eb60705aSEric Wollesen 	if ((mci = edac_mc_del_mc(&pdev->dev)) == NULL)
1441eb60705aSEric Wollesen 		return;
1442eb60705aSEric Wollesen 
1443eb60705aSEric Wollesen 	/* retrieve references to resources, and free those resources */
1444eb60705aSEric Wollesen 	i5000_put_devices(mci);
1445eb60705aSEric Wollesen 
1446eb60705aSEric Wollesen 	edac_mc_free(mci);
1447eb60705aSEric Wollesen }
1448eb60705aSEric Wollesen 
1449eb60705aSEric Wollesen /**************************************************************************
1450eb60705aSEric Wollesen  *	pci_device_id	table for which devices we are looking for
1451eb60705aSEric Wollesen  *
1452eb60705aSEric Wollesen  *	The "E500P" device is the first device supported.
1453eb60705aSEric Wollesen  */
1454eb60705aSEric Wollesen static const struct pci_device_id i5000_pci_tbl[] __devinitdata = {
1455eb60705aSEric Wollesen 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I5000_DEV16),
1456eb60705aSEric Wollesen 	 .driver_data = I5000P},
1457eb60705aSEric Wollesen 
1458eb60705aSEric Wollesen 	{0,}			/* 0 terminated list. */
1459eb60705aSEric Wollesen };
1460eb60705aSEric Wollesen 
1461eb60705aSEric Wollesen MODULE_DEVICE_TABLE(pci, i5000_pci_tbl);
1462eb60705aSEric Wollesen 
1463eb60705aSEric Wollesen /**************************************************************************
1464eb60705aSEric Wollesen  *	i5000_driver	pci_driver structure for this module
1465eb60705aSEric Wollesen  *
1466eb60705aSEric Wollesen  */
1467eb60705aSEric Wollesen static struct pci_driver i5000_driver = {
1468eb60705aSEric Wollesen 	.name = __stringify(KBUILD_BASENAME),
1469eb60705aSEric Wollesen 	.probe = i5000_init_one,
1470eb60705aSEric Wollesen 	.remove = __devexit_p(i5000_remove_one),
1471eb60705aSEric Wollesen 	.id_table = i5000_pci_tbl,
1472eb60705aSEric Wollesen };
1473eb60705aSEric Wollesen 
1474eb60705aSEric Wollesen /**************************************************************************
1475eb60705aSEric Wollesen  *	i5000_init		Module entry function
1476eb60705aSEric Wollesen  *			Try to initialize this module for its devices
1477eb60705aSEric Wollesen  */
1478eb60705aSEric Wollesen static int __init i5000_init(void)
1479eb60705aSEric Wollesen {
1480eb60705aSEric Wollesen 	int pci_rc;
1481eb60705aSEric Wollesen 
1482eb60705aSEric Wollesen 	debugf2("MC: " __FILE__ ": %s()\n", __func__);
1483eb60705aSEric Wollesen 
1484eb60705aSEric Wollesen 	pci_rc = pci_register_driver(&i5000_driver);
1485eb60705aSEric Wollesen 
1486eb60705aSEric Wollesen 	return (pci_rc < 0) ? pci_rc : 0;
1487eb60705aSEric Wollesen }
1488eb60705aSEric Wollesen 
1489eb60705aSEric Wollesen /**************************************************************************
1490eb60705aSEric Wollesen  *	i5000_exit()	Module exit function
1491eb60705aSEric Wollesen  *			Unregister the driver
1492eb60705aSEric Wollesen  */
1493eb60705aSEric Wollesen static void __exit i5000_exit(void)
1494eb60705aSEric Wollesen {
1495eb60705aSEric Wollesen 	debugf2("MC: " __FILE__ ": %s()\n", __func__);
1496eb60705aSEric Wollesen 	pci_unregister_driver(&i5000_driver);
1497eb60705aSEric Wollesen }
1498eb60705aSEric Wollesen 
1499eb60705aSEric Wollesen module_init(i5000_init);
1500eb60705aSEric Wollesen module_exit(i5000_exit);
1501eb60705aSEric Wollesen 
1502eb60705aSEric Wollesen MODULE_LICENSE("GPL");
1503eb60705aSEric Wollesen MODULE_AUTHOR
1504eb60705aSEric Wollesen     ("Linux Networx (http://lnxi.com) Doug Thompson <norsk5@xmission.com>");
1505eb60705aSEric Wollesen MODULE_DESCRIPTION("MC Driver for Intel I5000 memory controllers - "
1506eb60705aSEric Wollesen 		   I5000_REVISION);
1507c0d12172SDave Jiang module_param(edac_op_state, int, 0444);
1508c0d12172SDave Jiang MODULE_PARM_DESC(edac_op_state, "EDAC Error Reporting state: 0=Poll,1=NMI");
1509