Intel e7505: renames only

Drop maybe-prefix in registers and tables.
Have a name in place of PCI_DEV(x,y,z) to avoid confusion.

Change-Id: I88f51b50d7fd83294aa14455a83418630e1bab85
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/882
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Kyösti Mälkki 2012-04-10 16:11:53 +03:00 committed by Stefan Reinauer
parent 05758bd817
commit 5bd271b9fa
3 changed files with 178 additions and 168 deletions

View File

@ -24,8 +24,11 @@
/************ D0:F0 ************/ /************ D0:F0 ************/
// Register offsets // Register offsets
#define MAYBE_SMRBASE 0x14 /* System Memory RCOMP Base Address Register, 32 bit? (if similar to 855PM) */ #define SMRBASE 0x14 /* System Memory RCOMP Base Address Register, 32 bit? */
#define MCHCFGNS 0x52 /* MCH (scrubber) configuration register, 16 bit */ #define MCHCFGNS 0x52 /* MCH (scrubber) configuration register, 16 bit */
#define PAM_0 0x59
#define DRB_ROW_0 0x60 /* DRAM Row Boundary register, 8 bit */ #define DRB_ROW_0 0x60 /* DRAM Row Boundary register, 8 bit */
#define DRB_ROW_1 0x61 #define DRB_ROW_1 0x61
#define DRB_ROW_2 0x62 #define DRB_ROW_2 0x62
@ -38,13 +41,14 @@
#define DRA 0x70 /* DRAM Row Attributes registers, 4 x 8 bit */ #define DRA 0x70 /* DRAM Row Attributes registers, 4 x 8 bit */
#define DRT 0x78 /* DRAM Timing register, 32 bit */ #define DRT 0x78 /* DRAM Timing register, 32 bit */
#define DRC 0x7C /* DRAM Controller Mode register, 32 bit */ #define DRC 0x7C /* DRAM Controller Mode register, 32 bit */
#define MAYBE_DRDCTL 0x80 /* DRAM Read Timing Control register, 16 bit? (if similar to 855PM) */ #define DRDCTL 0x80 /* DRAM Read Timing Control register, 16 bit? (if similar to 855PM) */
#define CKDIS 0x8C /* Clock disable register, 8 bit */ #define CKDIS 0x8C /* Clock disable register, 8 bit */
#define TOLM 0xC4 /* Top of Low Memory register, 16 bit */ #define TOLM 0xC4 /* Top of Low Memory register, 16 bit */
#define REMAPBASE 0xC6 /* Remap Base Address register, 16 bit */ #define REMAPBASE 0xC6 /* Remap Base Address register, 16 bit */
#define REMAPLIMIT 0xC8 /* Remap Limit Address register, 16 bit */ #define REMAPLIMIT 0xC8 /* Remap Limit Address register, 16 bit */
#define SKPD 0xDE /* Scratchpad register, 16 bit */ #define SKPD 0xDE /* Scratchpad register, 16 bit */
#define MAYBE_MCHTST 0xF4 /* MCH Test Register, 32 bit? (if similar to 855PM) */ #define DVNP 0xE0 /* Device Not Present, 16 bit */
#define MCHTST 0xF4 /* MCH Test Register, 32 bit? (if similar to 855PM) */
// CAS# Latency bits in the DRAM Timing (DRT) register // CAS# Latency bits in the DRAM Timing (DRT) register
#define DRT_CAS_2_5 (0<<4) #define DRT_CAS_2_5 (0<<4)
@ -59,17 +63,18 @@
#define RAM_COMMAND_CBR (6<<4) #define RAM_COMMAND_CBR (6<<4)
#define RAM_COMMAND_NORMAL (7<<4) #define RAM_COMMAND_NORMAL (7<<4)
#define DRC_DONE (1 << 29)
// RCOMP Memory Map offsets // RCOMP Memory Map offsets
// Conjecture based on apparent similarity between E7501 and 855PM // Conjecture based on apparent similarity between E7501 and 855PM
// Intel doc. 252613-003 describes these for 855PM // Intel doc. 252613-003 describes these for 855PM
#define MAYBE_SMRCTL 0x20 /* System Memory RCOMP Control Register? */ #define SMRCTL 0x20 /* System Memory RCOMP Control Register? */
#define MAYBE_DQCMDSTR 0x30 /* Strength control for DQ and CMD signal groups? */ #define DQCMDSTR 0x30 /* Strength control for DQ and CMD signal groups? */
#define MAYBE_CKESTR 0x31 /* Strength control for CKE signal group? */ #define CKESTR 0x31 /* Strength control for CKE signal group? */
#define MAYBE_CSBSTR 0x32 /* Strength control for CS# signal group? */ #define CSBSTR 0x32 /* Strength control for CS# signal group? */
#define MAYBE_CKSTR 0x33 /* Strength control for CK signal group? */ #define CKSTR 0x33 /* Strength control for CK signal group? */
#define MAYBE_RCVENSTR 0x34 /* Strength control for RCVEnOut# signal group? */ #define RCVENSTR 0x34 /* Strength control for RCVEnOut# signal group? */
/************ D0:F1 ************/ /************ D0:F1 ************/
// Register offsets // Register offsets
@ -77,3 +82,4 @@
#define NERR_GLOBAL 0x44 /* Next global error register, 32 bits */ #define NERR_GLOBAL 0x44 /* Next global error register, 32 bits */
#define DRAM_FERR 0x80 /* DRAM first error register, 8 bits */ #define DRAM_FERR 0x80 /* DRAM first error register, 8 bits */
#define DRAM_NERR 0x82 /* DRAM next error register, 8 bits */ #define DRAM_NERR 0x82 /* DRAM next error register, 8 bits */

View File

@ -38,7 +38,7 @@ static void pci_domain_set_resources(device_t dev)
* the physical memory. The units are ticks of 64MB * the physical memory. The units are ticks of 64MB
* i.e. 1 means 64MB. * i.e. 1 means 64MB.
*/ */
tomk = ((unsigned long)pci_read_config8(mc_dev, 0x67)) << 16; tomk = ((unsigned long)pci_read_config8(mc_dev, DRB_ROW_7)) << 16;
/* Compute the top of Low memory */ /* Compute the top of Low memory */
tolmk = pci_tolm >> 10; tolmk = pci_tolm >> 10;
if (tolmk >= tomk) { if (tolmk >= tomk) {

View File

@ -30,7 +30,7 @@ Definitions:
#define RAM_DEBUG_MESSAGE(x) print_debug(x) #define RAM_DEBUG_MESSAGE(x) print_debug(x)
#define RAM_DEBUG_HEX32(x) print_debug_hex32(x) #define RAM_DEBUG_HEX32(x) print_debug_hex32(x)
#define RAM_DEBUG_HEX8(x) print_debug_hex8(x) #define RAM_DEBUG_HEX8(x) print_debug_hex8(x)
#define DUMPNORTH() dump_pci_device(PCI_DEV(0, 0, 0)) #define DUMPNORTH() dump_pci_device(MCHDEV)
#else #else
#define RAM_DEBUG_MESSAGE(x) #define RAM_DEBUG_MESSAGE(x)
#define RAM_DEBUG_HEX32(x) #define RAM_DEBUG_HEX32(x)
@ -41,6 +41,10 @@ Definitions:
#define E7501_SDRAM_MODE (SDRAM_BURST_INTERLEAVED | SDRAM_BURST_4) #define E7501_SDRAM_MODE (SDRAM_BURST_INTERLEAVED | SDRAM_BURST_4)
#define SPD_ERROR "Error reading SPD info\n" #define SPD_ERROR "Error reading SPD info\n"
#define MCHDEV PCI_DEV(0,0,0)
#define RASDEV PCI_DEV(0,0,1)
#define D060DEV PCI_DEV(0,6,0)
// NOTE: This used to be 0x100000. // NOTE: This used to be 0x100000.
// That doesn't work on systems where A20M# is asserted, because // That doesn't work on systems where A20M# is asserted, because
// attempts to access 0x1000NN end up accessing 0x0000NN. // attempts to access 0x1000NN end up accessing 0x0000NN.
@ -438,20 +442,20 @@ static const long constant_register_values[] = {
/* DDR RECOMP tables */ /* DDR RECOMP tables */
#if 0 #if 0
// Slew table for 1x drive? // Slew table for 1x drive?
static const uint32_t maybe_1x_slew_table[] = { static const uint32_t 1x_slew_table[] = {
0x44332211, 0xc9776655, 0xffffffff, 0xffffffff, 0x44332211, 0xc9776655, 0xffffffff, 0xffffffff,
0x22111111, 0x55444332, 0xfffca876, 0xffffffff, 0x22111111, 0x55444332, 0xfffca876, 0xffffffff,
}; };
#endif #endif
// Slew table for 2x drive? // Slew table for 2x drive?
static const uint32_t maybe_2x_slew_table[] = { static const uint32_t slew_2x[] = {
0x00000000, 0x76543210, 0xffffeca8, 0xffffffff, 0x00000000, 0x76543210, 0xffffeca8, 0xffffffff,
0x21000000, 0xa8765432, 0xffffffec, 0xffffffff, 0x21000000, 0xa8765432, 0xffffffec, 0xffffffff,
}; };
// Pull Up / Pull Down offset table, if analogous to IXP2800? // Pull Up / Pull Down offset table, if analogous to IXP2800?
static const uint32_t maybe_pull_updown_offset_table[] = { static const uint32_t pull_updown_offset_table[] = {
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
0x88888888, 0x88888888, 0x88888888, 0x88888888, 0x88888888, 0x88888888, 0x88888888, 0x88888888,
}; };
@ -494,17 +498,17 @@ static void ram_handle_d060_1(void)
{ {
uint32_t dword; uint32_t dword;
dword = pci_read_config32(PCI_DEV(0,0,0), MAYBE_MCHTST); dword = pci_read_config32(MCHDEV, MCHTST);
dword |= 0x02; dword |= 0x02;
pci_write_config32(PCI_DEV(0,0,0), MAYBE_MCHTST, dword); pci_write_config32(MCHDEV, MCHTST, dword);
dword = pci_read_config32(PCI_DEV(0,6,0), 0xf0); dword = pci_read_config32(D060DEV, 0xf0);
dword |= 0x04; dword |= 0x04;
pci_write_config32(PCI_DEV(0,6,0), 0xf0, dword); pci_write_config32(D060DEV, 0xf0, dword);
dword = pci_read_config32(PCI_DEV(0,0,0), MAYBE_MCHTST); dword = pci_read_config32(MCHDEV, MCHTST);
dword &= ~0x02; dword &= ~0x02;
pci_write_config32(PCI_DEV(0,0,0), MAYBE_MCHTST, dword); pci_write_config32(MCHDEV, MCHTST, dword);
} }
/** /**
@ -515,19 +519,19 @@ static void ram_handle_d060_2(void)
uint32_t dword; uint32_t dword;
uint8_t revision; uint8_t revision;
revision = pci_read_config8(PCI_DEV(0,0,0), 0x08); revision = pci_read_config8(MCHDEV, 0x08);
if (revision >= 3) { if (revision >= 3) {
dword = pci_read_config32(PCI_DEV(0,0,0), MAYBE_MCHTST); dword = pci_read_config32(MCHDEV, MCHTST);
dword |= 0x02; dword |= 0x02;
pci_write_config32(PCI_DEV(0,0,0), MAYBE_MCHTST, dword); pci_write_config32(MCHDEV, MCHTST, dword);
dword = pci_read_config32(PCI_DEV(0,6,0), 0xf0); dword = pci_read_config32(D060DEV, 0xf0);
dword |= 0x18000000; dword |= 0x18000000;
pci_write_config32(PCI_DEV(0,6,0), 0xf0, dword); pci_write_config32(D060DEV, 0xf0, dword);
dword = pci_read_config32(PCI_DEV(0,0,0), MAYBE_MCHTST); dword = pci_read_config32(MCHDEV, MCHTST);
dword &= ~0x02; dword &= ~0x02;
pci_write_config32(PCI_DEV(0,0,0), MAYBE_MCHTST, dword); pci_write_config32(MCHDEV, MCHTST, dword);
} }
} }
@ -902,10 +906,10 @@ static void do_ram_command(uint8_t command, uint16_t jedec_mode_bits)
uint8_t i; uint8_t i;
// Configure the RAM command // Configure the RAM command
dram_controller_mode = pci_read_config32(PCI_DEV(0, 0, 0), DRC); dram_controller_mode = pci_read_config32(MCHDEV, DRC);
dram_controller_mode &= 0xFFFFFF8F; dram_controller_mode &= 0xFFFFFF8F;
dram_controller_mode |= command; dram_controller_mode |= command;
pci_write_config32(PCI_DEV(0, 0, 0), DRC, dram_controller_mode); pci_write_config32(MCHDEV, DRC, dram_controller_mode);
// RAM_COMMAND_NORMAL is an exception. // RAM_COMMAND_NORMAL is an exception.
// It affects only the memory controller and does not need to be "sent" to the DIMMs. // It affects only the memory controller and does not need to be "sent" to the DIMMs.
@ -935,7 +939,7 @@ static void do_ram_command(uint8_t command, uint16_t jedec_mode_bits)
for (i = 0; i < (MAX_NUM_CHANNELS * MAX_DIMM_SOCKETS_PER_CHANNEL); ++i) { for (i = 0; i < (MAX_NUM_CHANNELS * MAX_DIMM_SOCKETS_PER_CHANNEL); ++i) {
uint8_t dimm_end_64M_multiple = pci_read_config8(PCI_DEV(0, 0, 0), DRB_ROW_0 + i); uint8_t dimm_end_64M_multiple = pci_read_config8(MCHDEV, DRB_ROW_0 + i);
if (dimm_end_64M_multiple > dimm_start_64M_multiple) { if (dimm_end_64M_multiple > dimm_start_64M_multiple) {
dimm_start_address &= 0x3ffffff; dimm_start_address &= 0x3ffffff;
@ -962,7 +966,7 @@ static void set_ram_mode(uint16_t jedec_mode_bits)
ASSERT(!(jedec_mode_bits & SDRAM_CAS_MASK)); ASSERT(!(jedec_mode_bits & SDRAM_CAS_MASK));
uint32_t dram_cas_latency = uint32_t dram_cas_latency =
pci_read_config32(PCI_DEV(0, 0, 0), DRT) & DRT_CAS_MASK; pci_read_config32(MCHDEV, DRT) & DRT_CAS_MASK;
switch (dram_cas_latency) { switch (dram_cas_latency) {
case DRT_CAS_2_5: case DRT_CAS_2_5:
@ -1024,7 +1028,7 @@ static uint8_t configure_dimm_row_boundaries(struct dimm_size dimm_log2_num_bits
total_dram_64M_multiple += (1 << (dimm_log2_num_bits.side1 - 29)); total_dram_64M_multiple += (1 << (dimm_log2_num_bits.side1 - 29));
// Configure the boundary address for the row on side 1 // Configure the boundary address for the row on side 1
pci_write_config8(PCI_DEV(0, 0, 0), DRB_ROW_0 + (dimm_index << 1), pci_write_config8(MCHDEV, DRB_ROW_0 + (dimm_index << 1),
total_dram_64M_multiple); total_dram_64M_multiple);
// If the DIMMs are double-sided, add the capacity of side 2 this DIMM pair // If the DIMMs are double-sided, add the capacity of side 2 this DIMM pair
@ -1034,16 +1038,16 @@ static uint8_t configure_dimm_row_boundaries(struct dimm_size dimm_log2_num_bits
(1 << (dimm_log2_num_bits.side2 - 29)); (1 << (dimm_log2_num_bits.side2 - 29));
// Configure the boundary address for the row (if any) on side 2 // Configure the boundary address for the row (if any) on side 2
pci_write_config8(PCI_DEV(0, 0, 0), DRB_ROW_1 + (dimm_index << 1), pci_write_config8(MCHDEV, DRB_ROW_1 + (dimm_index << 1),
total_dram_64M_multiple); total_dram_64M_multiple);
// Update boundaries for rows subsequent to these. // Update boundaries for rows subsequent to these.
// These settings will be overridden by a subsequent call if a populated physical slot exists // These settings will be overridden by a subsequent call if a populated physical slot exists
for (i = dimm_index + 1; i < MAX_DIMM_SOCKETS_PER_CHANNEL; i++) { for (i = dimm_index + 1; i < MAX_DIMM_SOCKETS_PER_CHANNEL; i++) {
pci_write_config8(PCI_DEV(0, 0, 0), DRB_ROW_0 + (i << 1), pci_write_config8(MCHDEV, DRB_ROW_0 + (i << 1),
total_dram_64M_multiple); total_dram_64M_multiple);
pci_write_config8(PCI_DEV(0, 0, 0), DRB_ROW_1 + (i << 1), pci_write_config8(MCHDEV, DRB_ROW_1 + (i << 1),
total_dram_64M_multiple); total_dram_64M_multiple);
} }
@ -1068,8 +1072,8 @@ static void configure_e7501_ram_addresses(const struct mem_controller
// Configure the E7501's DRAM row boundaries // Configure the E7501's DRAM row boundaries
// Start by zeroing out the temporary initial configuration // Start by zeroing out the temporary initial configuration
pci_write_config32(PCI_DEV(0, 0, 0), DRB_ROW_0, 0); pci_write_config32(MCHDEV, DRB_ROW_0, 0);
pci_write_config32(PCI_DEV(0, 0, 0), DRB_ROW_4, 0); pci_write_config32(MCHDEV, DRB_ROW_4, 0);
for (i = 0; i < MAX_DIMM_SOCKETS_PER_CHANNEL; i++) { for (i = 0; i < MAX_DIMM_SOCKETS_PER_CHANNEL; i++) {
@ -1127,7 +1131,7 @@ static void configure_e7501_ram_addresses(const struct mem_controller
uint16_t top_of_low_memory = uint16_t top_of_low_memory =
total_dram_128M_multiple << 11; total_dram_128M_multiple << 11;
pci_write_config16(PCI_DEV(0, 0, 0), TOLM, pci_write_config16(MCHDEV, TOLM,
top_of_low_memory); top_of_low_memory);
} else { } else {
@ -1140,7 +1144,7 @@ static void configure_e7501_ram_addresses(const struct mem_controller
// Put TOLM at 3 GB // Put TOLM at 3 GB
pci_write_config16(PCI_DEV(0, 0, 0), TOLM, 0xc000); pci_write_config16(MCHDEV, TOLM, 0xc000);
// Define a remap window to make the RAM that would appear from 3 GB - 4 GB // Define a remap window to make the RAM that would appear from 3 GB - 4 GB
// visible just beyond 4 GB or the end of physical memory, whichever is larger // visible just beyond 4 GB or the end of physical memory, whichever is larger
@ -1154,9 +1158,9 @@ static void configure_e7501_ram_addresses(const struct mem_controller
0x40 + (total_dram_64M_multiple - 0x30) - 1; 0x40 + (total_dram_64M_multiple - 0x30) - 1;
} }
pci_write_config16(PCI_DEV(0, 0, 0), REMAPBASE, pci_write_config16(MCHDEV, REMAPBASE,
remap_base); remap_base);
pci_write_config16(PCI_DEV(0, 0, 0), REMAPLIMIT, pci_write_config16(MCHDEV, REMAPLIMIT,
remap_limit); remap_limit);
} }
} }
@ -1170,31 +1174,31 @@ static void initialize_ecc(void)
uint32_t dram_controller_mode; uint32_t dram_controller_mode;
/* Test to see if ECC support is enabled */ /* Test to see if ECC support is enabled */
dram_controller_mode = pci_read_config32(PCI_DEV(0, 0, 0), DRC); dram_controller_mode = pci_read_config32(MCHDEV, DRC);
dram_controller_mode >>= 20; dram_controller_mode >>= 20;
dram_controller_mode &= 3; dram_controller_mode &= 3;
if (dram_controller_mode == 2) { if (dram_controller_mode == 2) {
uint8_t byte; uint8_t byte;
RAM_DEBUG_MESSAGE("Initializing ECC state...\n"); RAM_DEBUG_MESSAGE("Initializing ECC state...\n");
pci_write_config8(PCI_DEV(0, 0, 0), MCHCFGNS, 0x01); pci_write_config8(MCHDEV, MCHCFGNS, 0x01);
// Wait for scrub cycle to complete // Wait for scrub cycle to complete
do { do {
byte = byte =
pci_read_config8(PCI_DEV(0, 0, 0), MCHCFGNS); pci_read_config8(MCHDEV, MCHCFGNS);
} while ((byte & 0x08) == 0); } while ((byte & 0x08) == 0);
pci_write_config8(PCI_DEV(0, 0, 0), MCHCFGNS, (byte & 0xfc) | 0x04); pci_write_config8(MCHDEV, MCHCFGNS, (byte & 0xfc) | 0x04);
RAM_DEBUG_MESSAGE("ECC state initialized.\n"); RAM_DEBUG_MESSAGE("ECC state initialized.\n");
/* Clear the ECC error bits */ /* Clear the ECC error bits */
pci_write_config8(PCI_DEV(0, 0, 1), DRAM_FERR, 0x03); pci_write_config8(RASDEV, DRAM_FERR, 0x03);
pci_write_config8(PCI_DEV(0, 0, 1), DRAM_NERR, 0x03); pci_write_config8(RASDEV, DRAM_NERR, 0x03);
// Clear DRAM Interface error bits (write-one-clear) // Clear DRAM Interface error bits (write-one-clear)
pci_write_config32(PCI_DEV(0, 0, 1), FERR_GLOBAL, 1 << 18); pci_write_config32(RASDEV, FERR_GLOBAL, 1 << 18);
pci_write_config32(PCI_DEV(0, 0, 1), NERR_GLOBAL, 1 << 18); pci_write_config32(RASDEV, NERR_GLOBAL, 1 << 18);
} }
} }
@ -1218,7 +1222,7 @@ static void configure_e7501_dram_timing(const struct mem_controller *ctrl,
uint8_t slowest_ras_cas_delay = 0; uint8_t slowest_ras_cas_delay = 0;
uint8_t slowest_active_to_precharge_delay = 0; uint8_t slowest_active_to_precharge_delay = 0;
uint32_t current_cas_latency = uint32_t current_cas_latency =
pci_read_config32(PCI_DEV(0, 0, 0), DRT) & DRT_CAS_MASK; pci_read_config32(MCHDEV, DRT) & DRT_CAS_MASK;
// CAS# latency must be programmed beforehand // CAS# latency must be programmed beforehand
ASSERT((current_cas_latency == DRT_CAS_2_0) ASSERT((current_cas_latency == DRT_CAS_2_0)
@ -1267,7 +1271,7 @@ static void configure_e7501_dram_timing(const struct mem_controller *ctrl,
// At 133 MHz, 1 clock == 7.52 ns // At 133 MHz, 1 clock == 7.52 ns
/* Read the initial state */ /* Read the initial state */
dram_timing = pci_read_config32(PCI_DEV(0, 0, 0), DRT); dram_timing = pci_read_config32(MCHDEV, DRT);
/* Trp */ /* Trp */
@ -1326,7 +1330,7 @@ static void configure_e7501_dram_timing(const struct mem_controller *ctrl,
if (current_cas_latency == DRT_CAS_2_0) if (current_cas_latency == DRT_CAS_2_0)
dram_timing |= (1 << 28); // 4 clocks dram_timing |= (1 << 28); // 4 clocks
pci_write_config32(PCI_DEV(0, 0, 0), DRT, dram_timing); pci_write_config32(MCHDEV, DRT, dram_timing);
return; return;
@ -1348,7 +1352,7 @@ static void configure_e7501_cas_latency(const struct mem_controller *ctrl,
int i; int i;
int value; int value;
uint32_t dram_timing; uint32_t dram_timing;
uint16_t maybe_dram_read_timing; uint16_t dram_read_timing;
uint32_t dword; uint32_t dword;
// CAS# latency bitmasks in SPD_ACCEPTABLE_CAS_LATENCIES format // CAS# latency bitmasks in SPD_ACCEPTABLE_CAS_LATENCIES format
@ -1430,20 +1434,20 @@ static void configure_e7501_cas_latency(const struct mem_controller *ctrl,
* cas latency I can use. * cas latency I can use.
*/ */
dram_timing = pci_read_config32(PCI_DEV(0, 0, 0), DRT); dram_timing = pci_read_config32(MCHDEV, DRT);
dram_timing &= ~(DRT_CAS_MASK); dram_timing &= ~(DRT_CAS_MASK);
maybe_dram_read_timing = dram_read_timing =
pci_read_config16(PCI_DEV(0, 0, 0), MAYBE_DRDCTL); pci_read_config16(MCHDEV, DRDCTL);
maybe_dram_read_timing &= 0xF000; dram_read_timing &= 0xF000;
if (system_compatible_cas_latencies & SPD_CAS_LATENCY_2_0) { if (system_compatible_cas_latencies & SPD_CAS_LATENCY_2_0) {
dram_timing |= DRT_CAS_2_0; dram_timing |= DRT_CAS_2_0;
maybe_dram_read_timing |= 0x0222; dram_read_timing |= 0x0222;
} else if (system_compatible_cas_latencies & SPD_CAS_LATENCY_2_5) { } else if (system_compatible_cas_latencies & SPD_CAS_LATENCY_2_5) {
uint32_t dram_row_attributes = uint32_t dram_row_attributes =
pci_read_config32(PCI_DEV(0, 0, 0), DRA); pci_read_config32(MCHDEV, DRA);
dram_timing |= DRT_CAS_2_5; dram_timing |= DRT_CAS_2_5;
@ -1456,32 +1460,32 @@ static void configure_e7501_cas_latency(const struct mem_controller *ctrl,
&& (dram_row_attributes & 0xff000000)) { && (dram_row_attributes & 0xff000000)) {
// All slots populated // All slots populated
maybe_dram_read_timing |= 0x0882; dram_read_timing |= 0x0882;
} else { } else {
// Some unpopulated slots // Some unpopulated slots
maybe_dram_read_timing |= 0x0662; dram_read_timing |= 0x0662;
} }
} else } else
die("No CAS# latencies compatible with all DIMMs!!\n"); die("No CAS# latencies compatible with all DIMMs!!\n");
pci_write_config32(PCI_DEV(0, 0, 0), DRT, dram_timing); pci_write_config32(MCHDEV, DRT, dram_timing);
/* set master DLL reset */ /* set master DLL reset */
dword = pci_read_config32(PCI_DEV(0, 0, 0), 0x88); dword = pci_read_config32(MCHDEV, 0x88);
dword |= (1 << 26); dword |= (1 << 26);
pci_write_config32(PCI_DEV(0, 0, 0), 0x88, dword); pci_write_config32(MCHDEV, 0x88, dword);
/* patch try register 88 is undocumented tnz */ /* patch try register 88 is undocumented tnz */
dword &= 0x0ca17fff; dword &= 0x0ca17fff;
dword |= 0xd14a5000; dword |= 0xd14a5000;
pci_write_config32(PCI_DEV(0, 0, 0), 0x88, dword); pci_write_config32(MCHDEV, 0x88, dword);
pci_write_config16(PCI_DEV(0, 0, 0), MAYBE_DRDCTL, pci_write_config16(MCHDEV, DRDCTL,
maybe_dram_read_timing); dram_read_timing);
/* clear master DLL reset */ /* clear master DLL reset */
dword = pci_read_config32(PCI_DEV(0, 0, 0), 0x88); dword = pci_read_config32(MCHDEV, 0x88);
dword &= ~(1 << 26); dword &= ~(1 << 26);
pci_write_config32(PCI_DEV(0, 0, 0), 0x88, dword); pci_write_config32(MCHDEV, 0x88, dword);
return; return;
@ -1506,7 +1510,7 @@ static void configure_e7501_dram_controller_mode(const struct
// Initial settings // Initial settings
uint32_t controller_mode = uint32_t controller_mode =
pci_read_config32(PCI_DEV(0, 0, 0), DRC); pci_read_config32(MCHDEV, DRC);
uint32_t system_refresh_mode = (controller_mode >> 8) & 7; uint32_t system_refresh_mode = (controller_mode >> 8) & 7;
// Code below assumes that most aggressive settings are in // Code below assumes that most aggressive settings are in
@ -1592,7 +1596,7 @@ static void configure_e7501_dram_controller_mode(const struct
controller_mode |= (system_refresh_mode << 8); controller_mode |= (system_refresh_mode << 8);
// Configure the E7501 // Configure the E7501
pci_write_config32(PCI_DEV(0, 0, 0), DRC, controller_mode); pci_write_config32(MCHDEV, DRC, controller_mode);
} }
/** /**
@ -1645,7 +1649,7 @@ static void configure_e7501_row_attributes(const struct mem_controller
} }
/* Write the new row attributes register */ /* Write the new row attributes register */
pci_write_config32(PCI_DEV(0, 0, 0), DRA, row_attributes); pci_write_config32(MCHDEV, DRA, row_attributes);
} }
/* /*
@ -1657,9 +1661,9 @@ static void configure_e7501_row_attributes(const struct mem_controller
static void enable_e7501_clocks(uint8_t dimm_mask) static void enable_e7501_clocks(uint8_t dimm_mask)
{ {
int i; int i;
uint8_t clock_disable = pci_read_config8(PCI_DEV(0, 0, 0), CKDIS); uint8_t clock_disable = pci_read_config8(MCHDEV, CKDIS);
pci_write_config8(PCI_DEV(0,0,0), 0x8e, 0xb0); pci_write_config8(MCHDEV, 0x8e, 0xb0);
for (i = 0; i < MAX_DIMM_SOCKETS_PER_CHANNEL; i++) { for (i = 0; i < MAX_DIMM_SOCKETS_PER_CHANNEL; i++) {
@ -1671,7 +1675,7 @@ static void enable_e7501_clocks(uint8_t dimm_mask)
clock_disable |= socket_mask; // DIMM absent, disable clock clock_disable |= socket_mask; // DIMM absent, disable clock
} }
pci_write_config8(PCI_DEV(0, 0, 0), CKDIS, clock_disable); pci_write_config8(MCHDEV, CKDIS, clock_disable);
} }
/* DIMM-dedependent configuration functions */ /* DIMM-dedependent configuration functions */
@ -1682,13 +1686,13 @@ static void enable_e7501_clocks(uint8_t dimm_mask)
static void RAM_RESET_DDR_PTR(void) static void RAM_RESET_DDR_PTR(void)
{ {
uint8_t byte; uint8_t byte;
byte = pci_read_config8(PCI_DEV(0, 0, 0), 0x88); byte = pci_read_config8(MCHDEV, 0x88);
byte |= (1 << 4); byte |= (1 << 4);
pci_write_config8(PCI_DEV(0, 0, 0), 0x88, byte); pci_write_config8(MCHDEV, 0x88, byte);
byte = pci_read_config8(PCI_DEV(0, 0, 0), 0x88); byte = pci_read_config8(MCHDEV, 0x88);
byte &= ~(1 << 4); byte &= ~(1 << 4);
pci_write_config8(PCI_DEV(0, 0, 0), 0x88, byte); pci_write_config8(MCHDEV, 0x88, byte);
} }
/** /**
@ -1723,11 +1727,11 @@ static void ram_set_d0f0_regs(void)
ASSERT((bits_to_mask & bits_to_set) == 0); ASSERT((bits_to_mask & bits_to_set) == 0);
register_value = register_value =
pci_read_config32(PCI_DEV(0, 0, 0), register_offset); pci_read_config32(MCHDEV, register_offset);
register_value &= bits_to_mask; register_value &= bits_to_mask;
register_value |= bits_to_set; register_value |= bits_to_set;
pci_write_config32(PCI_DEV(0, 0, 0), register_offset, pci_write_config32(MCHDEV, register_offset,
register_value); register_value);
} }
} }
@ -1761,87 +1765,87 @@ static void write_8dwords(const uint32_t *src_addr, uint32_t dst_addr)
static void ram_set_rcomp_regs(void) static void ram_set_rcomp_regs(void)
{ {
uint32_t dword; uint32_t dword;
uint8_t maybe_strength_control, revision; uint8_t strength_control, revision;
RAM_DEBUG_MESSAGE("Setting RCOMP registers.\n"); RAM_DEBUG_MESSAGE("Setting RCOMP registers.\n");
/*enable access to the rcomp bar */ /*enable access to the rcomp bar */
dword = pci_read_config32(PCI_DEV(0, 0, 0), MAYBE_MCHTST); dword = pci_read_config32(MCHDEV, MCHTST);
dword |= (1 << 22); dword |= (1 << 22);
pci_write_config32(PCI_DEV(0, 0, 0), MAYBE_MCHTST, dword); pci_write_config32(MCHDEV, MCHTST, dword);
// Set the RCOMP MMIO base address // Set the RCOMP MMIO base address
pci_write_config32(PCI_DEV(0, 0, 0), MAYBE_SMRBASE, RCOMP_MMIO); pci_write_config32(MCHDEV, SMRBASE, RCOMP_MMIO);
// Block RCOMP updates while we configure the registers // Block RCOMP updates while we configure the registers
dword = read32(RCOMP_MMIO + MAYBE_SMRCTL); dword = read32(RCOMP_MMIO + SMRCTL);
dword |= (1 << 9); dword |= (1 << 9);
write32(RCOMP_MMIO + MAYBE_SMRCTL, dword); write32(RCOMP_MMIO + SMRCTL, dword);
/* Begin to write the RCOMP registers */ /* Begin to write the RCOMP registers */
write8(RCOMP_MMIO + 0x2c, 0x0); write8(RCOMP_MMIO + 0x2c, 0x0);
// Set CMD and DQ/DQS strength to 2x (?) // Set CMD and DQ/DQS strength to 2x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_DQCMDSTR) & 0x88; strength_control = read8(RCOMP_MMIO + DQCMDSTR) & 0x88;
maybe_strength_control |= 0x40; strength_control |= 0x40;
write8(RCOMP_MMIO + MAYBE_DQCMDSTR, maybe_strength_control); write8(RCOMP_MMIO + DQCMDSTR, strength_control);
write_8dwords(maybe_2x_slew_table, RCOMP_MMIO + 0x80); write_8dwords(slew_2x, RCOMP_MMIO + 0x80);
write16(RCOMP_MMIO + 0x42, 0); write16(RCOMP_MMIO + 0x42, 0);
// Set CMD and DQ/DQS strength to 2x (?) // Set CMD and DQ/DQS strength to 2x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_DQCMDSTR) & 0xF8; strength_control = read8(RCOMP_MMIO + DQCMDSTR) & 0xF8;
maybe_strength_control |= 0x04; strength_control |= 0x04;
write8(RCOMP_MMIO + MAYBE_DQCMDSTR, maybe_strength_control); write8(RCOMP_MMIO + DQCMDSTR, strength_control);
write_8dwords(maybe_2x_slew_table, RCOMP_MMIO + 0x60); write_8dwords(slew_2x, RCOMP_MMIO + 0x60);
write16(RCOMP_MMIO + 0x40, 0); write16(RCOMP_MMIO + 0x40, 0);
// Set RCVEnOut# strength to 2x (?) // Set RCVEnOut# strength to 2x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_RCVENSTR) & 0xF8; strength_control = read8(RCOMP_MMIO + RCVENSTR) & 0xF8;
maybe_strength_control |= 0x04; strength_control |= 0x04;
write8(RCOMP_MMIO + MAYBE_RCVENSTR, maybe_strength_control); write8(RCOMP_MMIO + RCVENSTR, strength_control);
write_8dwords(maybe_2x_slew_table, RCOMP_MMIO + 0x1c0); write_8dwords(slew_2x, RCOMP_MMIO + 0x1c0);
write16(RCOMP_MMIO + 0x50, 0); write16(RCOMP_MMIO + 0x50, 0);
// Set CS# strength for x4 SDRAM to 2x (?) // Set CS# strength for x4 SDRAM to 2x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_CSBSTR) & 0x88; strength_control = read8(RCOMP_MMIO + CSBSTR) & 0x88;
maybe_strength_control |= 0x04; strength_control |= 0x04;
write8(RCOMP_MMIO + MAYBE_CSBSTR, maybe_strength_control); write8(RCOMP_MMIO + CSBSTR, strength_control);
write_8dwords(maybe_2x_slew_table, RCOMP_MMIO + 0x140); write_8dwords(slew_2x, RCOMP_MMIO + 0x140);
write16(RCOMP_MMIO + 0x48, 0); write16(RCOMP_MMIO + 0x48, 0);
// Set CS# strength for x4 SDRAM to 2x (?) // Set CS# strength for x4 SDRAM to 2x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_CSBSTR) & 0x8F; strength_control = read8(RCOMP_MMIO + CSBSTR) & 0x8F;
maybe_strength_control |= 0x40; strength_control |= 0x40;
write8(RCOMP_MMIO + MAYBE_CSBSTR, maybe_strength_control); write8(RCOMP_MMIO + CSBSTR, strength_control);
write_8dwords(maybe_2x_slew_table, RCOMP_MMIO + 0x160); write_8dwords(slew_2x, RCOMP_MMIO + 0x160);
write16(RCOMP_MMIO + 0x4a, 0); write16(RCOMP_MMIO + 0x4a, 0);
// Set CKE strength for x4 SDRAM to 2x (?) // Set CKE strength for x4 SDRAM to 2x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_CKESTR) & 0x88; strength_control = read8(RCOMP_MMIO + CKESTR) & 0x88;
maybe_strength_control |= 0x04; strength_control |= 0x04;
write8(RCOMP_MMIO + MAYBE_CKESTR, maybe_strength_control); write8(RCOMP_MMIO + CKESTR, strength_control);
write_8dwords(maybe_2x_slew_table, RCOMP_MMIO + 0xa0); write_8dwords(slew_2x, RCOMP_MMIO + 0xa0);
write16(RCOMP_MMIO + 0x44, 0); write16(RCOMP_MMIO + 0x44, 0);
// Set CKE strength for x4 SDRAM to 2x (?) // Set CKE strength for x4 SDRAM to 2x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_CKESTR) & 0x8F; strength_control = read8(RCOMP_MMIO + CKESTR) & 0x8F;
maybe_strength_control |= 0x40; strength_control |= 0x40;
write8(RCOMP_MMIO + MAYBE_CKESTR, maybe_strength_control); write8(RCOMP_MMIO + CKESTR, strength_control);
write_8dwords(maybe_2x_slew_table, RCOMP_MMIO + 0xc0); write_8dwords(slew_2x, RCOMP_MMIO + 0xc0);
write16(RCOMP_MMIO + 0x46, 0); write16(RCOMP_MMIO + 0x46, 0);
// Set CK strength for x4 SDRAM to 1x (?) // Set CK strength for x4 SDRAM to 1x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_CKSTR) & 0x88; strength_control = read8(RCOMP_MMIO + CKSTR) & 0x88;
maybe_strength_control |= 0x01; strength_control |= 0x01;
write8(RCOMP_MMIO + MAYBE_CKSTR, maybe_strength_control); write8(RCOMP_MMIO + CKSTR, strength_control);
write_8dwords(maybe_pull_updown_offset_table, RCOMP_MMIO + 0x180); write_8dwords(pull_updown_offset_table, RCOMP_MMIO + 0x180);
write16(RCOMP_MMIO + 0x4c, 0); write16(RCOMP_MMIO + 0x4c, 0);
// Set CK strength for x4 SDRAM to 1x (?) // Set CK strength for x4 SDRAM to 1x (?)
maybe_strength_control = read8(RCOMP_MMIO + MAYBE_CKSTR) & 0x8F; strength_control = read8(RCOMP_MMIO + CKSTR) & 0x8F;
maybe_strength_control |= 0x10; strength_control |= 0x10;
write8(RCOMP_MMIO + MAYBE_CKSTR, maybe_strength_control); write8(RCOMP_MMIO + CKSTR, strength_control);
write_8dwords(maybe_pull_updown_offset_table, RCOMP_MMIO + 0x1a0); write_8dwords(pull_updown_offset_table, RCOMP_MMIO + 0x1a0);
write16(RCOMP_MMIO + 0x4e, 0); write16(RCOMP_MMIO + 0x4e, 0);
@ -1855,33 +1859,33 @@ static void ram_set_rcomp_regs(void)
ram_handle_d060_1(); ram_handle_d060_1();
dword = pci_read_config32(PCI_DEV(0,0,0), MAYBE_MCHTST); dword = pci_read_config32(MCHDEV, MCHTST);
dword &= 0x3fffffff; dword &= 0x3fffffff;
pci_write_config32(PCI_DEV(0,0,0), MAYBE_MCHTST, dword); pci_write_config32(MCHDEV, MCHTST, dword);
revision = pci_read_config8(PCI_DEV(0,0,0), 0x08); revision = pci_read_config8(MCHDEV, 0x08);
if (revision >= 3) { if (revision >= 3) {
dword = read32(RCOMP_MMIO + MAYBE_SMRCTL); dword = read32(RCOMP_MMIO + SMRCTL);
dword &= ~0x100; dword &= ~0x100;
write32(RCOMP_MMIO + MAYBE_SMRCTL, dword); write32(RCOMP_MMIO + SMRCTL, dword);
dword = read32(RCOMP_MMIO + MAYBE_SMRCTL); dword = read32(RCOMP_MMIO + SMRCTL);
dword |= 0x500; dword |= 0x500;
write32(RCOMP_MMIO + MAYBE_SMRCTL, dword); write32(RCOMP_MMIO + SMRCTL, dword);
} }
dword = read32(RCOMP_MMIO + MAYBE_SMRCTL); dword = read32(RCOMP_MMIO + SMRCTL);
dword &= ~0x203; dword &= ~0x203;
dword |= 0x401; dword |= 0x401;
write32(RCOMP_MMIO + MAYBE_SMRCTL, dword); write32(RCOMP_MMIO + SMRCTL, dword);
/* Wait 40 usec */ /* Wait 40 usec */
SLOW_DOWN_IO; SLOW_DOWN_IO;
// Clear the RCOMP MMIO base address // Clear the RCOMP MMIO base address
pci_write_config32(PCI_DEV(0, 0, 0), MAYBE_SMRBASE, 0); pci_write_config32(MCHDEV, SMRBASE, 0);
/*disable access to the rcomp bar */ /*disable access to the rcomp bar */
dword = pci_read_config32(PCI_DEV(0, 0, 0), MAYBE_MCHTST); dword = pci_read_config32(MCHDEV, MCHTST);
dword &= ~(1 << 22); dword &= ~(1 << 22);
pci_write_config32(PCI_DEV(0, 0, 0), MAYBE_MCHTST, dword); pci_write_config32(MCHDEV, MCHTST, dword);
} }
@ -1901,7 +1905,7 @@ Public interface:
static void sdram_enable(int controllers, static void sdram_enable(int controllers,
const struct mem_controller *ctrl) const struct mem_controller *ctrl)
{ {
uint8_t dimm_mask = pci_read_config16(PCI_DEV(0, 0, 0), SKPD); uint8_t dimm_mask = pci_read_config16(MCHDEV, SKPD);
uint32_t dram_controller_mode; uint32_t dram_controller_mode;
if (dimm_mask == 0) if (dimm_mask == 0)
@ -1988,15 +1992,15 @@ static void sdram_enable(int controllers,
configure_e7501_ram_addresses(ctrl, dimm_mask); configure_e7501_ram_addresses(ctrl, dimm_mask);
/* Finally enable refresh */ /* Finally enable refresh */
dram_controller_mode = pci_read_config32(PCI_DEV(0, 0, 0), DRC); dram_controller_mode = pci_read_config32(MCHDEV, DRC);
dram_controller_mode |= (1 << 29); dram_controller_mode |= (1 << 29);
pci_write_config32(PCI_DEV(0, 0, 0), DRC, dram_controller_mode); pci_write_config32(MCHDEV, DRC, dram_controller_mode);
EXTRA_DELAY; EXTRA_DELAY;
initialize_ecc(); initialize_ecc();
dram_controller_mode = pci_read_config32(PCI_DEV(0, 0, 0), DRC); /* FCS_EN */ dram_controller_mode = pci_read_config32(MCHDEV, DRC); /* FCS_EN */
dram_controller_mode |= (1 << 17); // NOTE: undocumented reserved bit dram_controller_mode |= (1 << 17); // NOTE: undocumented reserved bit
pci_write_config32(PCI_DEV(0, 0, 0), DRC, dram_controller_mode); pci_write_config32(MCHDEV, DRC, dram_controller_mode);
RAM_DEBUG_MESSAGE("Northbridge following SDRAM init:\n"); RAM_DEBUG_MESSAGE("Northbridge following SDRAM init:\n");
DUMPNORTH(); DUMPNORTH();
@ -2045,7 +2049,7 @@ static void sdram_set_spd_registers(const struct mem_controller *ctrl)
* configure_e7501_ram_addresses() without having to regenerate the bitmask * configure_e7501_ram_addresses() without having to regenerate the bitmask
* of usable DIMMs. * of usable DIMMs.
*/ */
pci_write_config16(PCI_DEV(0, 0, 0), SKPD, dimm_mask); pci_write_config16(MCHDEV, SKPD, dimm_mask);
} }
/** /**