|
Linux Kernel
3.7.1
|
#include <linux/module.h>#include <linux/init.h>#include <linux/pci.h>#include <linux/pci_ids.h>#include <linux/edac.h>#include "edac_core.h"Go to the source code of this file.
Data Structures | |
| struct | i3000_dev_info |
| struct | i3000_error_info |
Macros | |
| #define | I3000_REVISION "1.1" |
| #define | EDAC_MOD_STR "i3000_edac" |
| #define | I3000_RANKS 8 |
| #define | I3000_RANKS_PER_CHANNEL 4 |
| #define | I3000_CHANNELS 2 |
| #define | I3000_MCHBAR 0x44 /* MCH Memory Mapped Register BAR */ |
| #define | I3000_MCHBAR_MASK 0xffffc000 |
| #define | I3000_MMR_WINDOW_SIZE 16384 |
| #define | I3000_EDEAP |
| #define | I3000_DEAP |
| #define | I3000_DEAP_GRAIN (1 << 7) |
| #define | I3000_DERRSYN |
| #define | I3000_ERRSTS |
| #define | I3000_ERRSTS_BITS 0x0b03 /* bits which indicate errors */ |
| #define | I3000_ERRSTS_UE 0x0002 |
| #define | I3000_ERRSTS_CE 0x0001 |
| #define | I3000_ERRCMD |
| #define | I3000_DRB_SHIFT 25 /* 32MiB grain */ |
| #define | I3000_C0DRB |
| #define | I3000_C1DRB |
| #define | I3000_C0DRA |
| #define | I3000_C1DRA 0x188 /* Channel 1 DRAM Rank Attribute (8b x 2) */ |
| #define | I3000_C0DRC0 |
| #define | I3000_C0DRC1 |
Enumerations | |
| enum | i3000p_chips { I3000 = 0 } |
Functions | |
| MODULE_DEVICE_TABLE (pci, i3000_pci_tbl) | |
| module_init (i3000_init) | |
| module_exit (i3000_exit) | |
| MODULE_LICENSE ("GPL") | |
| MODULE_AUTHOR ("Akamai Technologies Arthur Ulfeldt/Jason Uhlenkott") | |
| MODULE_DESCRIPTION ("MC support for Intel 3000 memory hub controllers") | |
| module_param (edac_op_state, int, 0444) | |
| MODULE_PARM_DESC (edac_op_state,"EDAC Error Reporting state: 0=Poll,1=NMI") | |
| #define EDAC_MOD_STR "i3000_edac" |
Definition at line 21 of file i3000_edac.c.
| #define I3000_C0DRA |
Definition at line 77 of file i3000_edac.c.
| #define I3000_C0DRB |
Definition at line 74 of file i3000_edac.c.
| #define I3000_C0DRC0 |
Definition at line 90 of file i3000_edac.c.
| #define I3000_C0DRC1 |
Definition at line 92 of file i3000_edac.c.
| #define I3000_C1DRA 0x188 /* Channel 1 DRAM Rank Attribute (8b x 2) */ |
Definition at line 78 of file i3000_edac.c.
| #define I3000_C1DRB |
Definition at line 75 of file i3000_edac.c.
| #define I3000_CHANNELS 2 |
Definition at line 25 of file i3000_edac.c.
| #define I3000_DEAP |
Definition at line 34 of file i3000_edac.c.
| #define I3000_DEAP_GRAIN (1 << 7) |
Definition at line 35 of file i3000_edac.c.
| #define I3000_DERRSYN |
Definition at line 61 of file i3000_edac.c.
| #define I3000_DRB_SHIFT 25 /* 32MiB grain */ |
Definition at line 72 of file i3000_edac.c.
| #define I3000_EDEAP |
Definition at line 33 of file i3000_edac.c.
| #define I3000_ERRCMD |
Definition at line 68 of file i3000_edac.c.
| #define I3000_ERRSTS |
Definition at line 63 of file i3000_edac.c.
| #define I3000_ERRSTS_BITS 0x0b03 /* bits which indicate errors */ |
Definition at line 64 of file i3000_edac.c.
| #define I3000_ERRSTS_CE 0x0001 |
Definition at line 66 of file i3000_edac.c.
| #define I3000_ERRSTS_UE 0x0002 |
Definition at line 65 of file i3000_edac.c.
| #define I3000_MCHBAR 0x44 /* MCH Memory Mapped Register BAR */ |
Definition at line 29 of file i3000_edac.c.
| #define I3000_MCHBAR_MASK 0xffffc000 |
Definition at line 30 of file i3000_edac.c.
| #define I3000_MMR_WINDOW_SIZE 16384 |
Definition at line 31 of file i3000_edac.c.
| #define I3000_RANKS 8 |
Definition at line 23 of file i3000_edac.c.
| #define I3000_RANKS_PER_CHANNEL 4 |
Definition at line 24 of file i3000_edac.c.
| #define I3000_REVISION "1.1" |
Definition at line 19 of file i3000_edac.c.
| enum i3000p_chips |
Definition at line 94 of file i3000_edac.c.
| MODULE_AUTHOR | ( | "Akamai Technologies Arthur Ulfeldt/Jason Uhlenkott" | ) |
| MODULE_DEVICE_TABLE | ( | pci | , |
| i3000_pci_tbl | |||
| ) |
| module_exit | ( | i3000_exit | ) |
| module_init | ( | i3000_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
| module_param | ( | edac_op_state | , |
| int | , | ||
| 0444 | |||
| ) |
| MODULE_PARM_DESC | ( | edac_op_state | , |
| "EDAC Error Reporting state: | 0 = Poll |
||
| ) |
1.8.2