1/* $Id: sn_fru.h,v 1.1.1.1 2008/10/15 03:29:03 james26_jang Exp $
2 *
3 * This file is subject to the terms and conditions of the GNU General Public
4 * License.  See the file "COPYING" in the main directory of this archive
5 * for more details.
6 *
7 * Copyright (C) 1992 - 1997, 1999-2001 Silicon Graphics, Inc.
8 * All rights reserved.
9 */
10#ifndef _ASM_IA64_SN_SN_FRU_H
11#define _ASM_IA64_SN_SN_FRU_H
12
13#define MAX_DIMMS			8	 /* max # of dimm banks */
14#define MAX_PCIDEV			8	 /* max # of pci devices on a pci bus */
15
16typedef unsigned char confidence_t;
17
18typedef struct kf_mem_s {
19	confidence_t km_confidence; /* confidence level that the memory is bad
20				     * is this necessary ?
21				     */
22	confidence_t km_dimm[MAX_DIMMS];
23				    /* confidence level that dimm[i] is bad
24				     *I think this is the right number
25				     */
26
27} kf_mem_t;
28
29typedef struct kf_cpu_s {
30	confidence_t	kc_confidence; /* confidence level that cpu is bad */
31	confidence_t	kc_icache; /* confidence level that instr. cache is bad */
32	confidence_t	kc_dcache; /* confidence level that data   cache is bad */
33	confidence_t	kc_scache; /* confidence level that sec.   cache is bad */
34	confidence_t	kc_sysbus; /* confidence level that sysad/cmd/state bus is bad */
35} kf_cpu_t;
36
37
38typedef struct kf_pci_bus_s {
39	confidence_t	kpb_belief;	/* confidence level  that the  pci bus is bad */
40	confidence_t	kpb_pcidev_belief[MAX_PCIDEV];
41					/* confidence level that the pci dev is bad */
42} kf_pci_bus_t;
43
44
45#endif /* _ASM_IA64_SN_SN_FRU_H */
46
47