nb/intel/x4x: Fix issues found by checkpatch.pl

Change-Id: Ie22b8bd5420f8c33df1866410af42ef41ad38362
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/18694
Tested-by: build bot (Jenkins)
Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
Arthur Heymans
2017-03-09 01:58:24 +01:00
committed by Nico Huber
parent 98adaf5989
commit 70a1dda927
10 changed files with 271 additions and 283 deletions

View File

@ -34,7 +34,7 @@ unsigned long acpi_fill_mcfg(unsigned long current)
u32 pciexbar = 0; u32 pciexbar = 0;
u32 length = 0; u32 length = 0;
dev = dev_find_slot(0, PCI_DEVFN(0,0)); dev = dev_find_slot(0, PCI_DEVFN(0, 0));
if (!decode_pciebar(&pciexbar, &length)) if (!decode_pciebar(&pciexbar, &length))
return current; return current;

View File

@ -26,5 +26,5 @@ static void bootblock_northbridge_init(void)
reg32 = TPM32(0); reg32 = TPM32(0);
reg32 = CONFIG_MMCONF_BASE_ADDRESS | 16 | 1; reg32 = CONFIG_MMCONF_BASE_ADDRESS | 16 | 1;
pci_io_write_config32(PCI_DEV(0,0,0), D0F0_PCIEXBAR_LO, reg32); pci_io_write_config32(PCI_DEV(0, 0, 0), D0F0_PCIEXBAR_LO, reg32);
} }

View File

@ -40,10 +40,10 @@ void x4x_early_init(void)
/* Setup PMBASE */ /* Setup PMBASE */
pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1); pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1);
pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x44 /* ACPI_CNTL */ , 0x80); pci_write_config8(PCI_DEV(0, 0x1f, 0), ACPI_CNTL, 0x80);
/* Setup HECIBAR */ /* Setup HECIBAR */
pci_write_config32(PCI_DEV(0,3,0), 0x10, DEFAULT_HECIBAR); pci_write_config32(PCI_DEV(0, 3, 0), 0x10, DEFAULT_HECIBAR);
/* Set C0000-FFFFF to access RAM on both reads and writes */ /* Set C0000-FFFFF to access RAM on both reads and writes */
pci_write_config8(d0f0, D0F0_PAM(0), 0x30); pci_write_config8(d0f0, D0F0_PAM(0), 0x30);
@ -116,13 +116,15 @@ static void init_egress(void)
EPBAR32(0x20) = reg32; EPBAR32(0x20) = reg32;
/* Wait for table load */ /* Wait for table load */
while ((EPBAR8(0x26) & (1 << 0)) != 0); while ((EPBAR8(0x26) & (1 << 0)) != 0)
;
/* VC1: enable */ /* VC1: enable */
EPBAR32(0x20) |= 1 << 31; EPBAR32(0x20) |= 1 << 31;
/* Wait for VC1 */ /* Wait for VC1 */
while ((EPBAR8(0x26) & (1 << 1)) != 0); while ((EPBAR8(0x26) & (1 << 1)) != 0)
;
printk(BIOS_DEBUG, "Done Egress Port\n"); printk(BIOS_DEBUG, "Done Egress Port\n");
} }
@ -195,10 +197,12 @@ static void init_dmi(void)
RCBA32(0x20) |= 1 << 31; RCBA32(0x20) |= 1 << 31;
/* Wait for VC1 */ /* Wait for VC1 */
while ((RCBA8(0x26) & (1 << 1)) != 0); while ((RCBA8(0x26) & (1 << 1)) != 0)
;
/* Wait for table load */ /* Wait for table load */
while ((RCBA8(0x26) & (1 << 0)) != 0); while ((RCBA8(0x26) & (1 << 0)) != 0)
;
/* ASPM on DMI link */ /* ASPM on DMI link */
RCBA16(0x1a8) &= ~0x3; RCBA16(0x1a8) &= ~0x3;
@ -209,7 +213,8 @@ static void init_dmi(void)
/* Set up VC1 max time */ /* Set up VC1 max time */
RCBA32(0x1c) = (RCBA32(0x1c) & ~0x7f0000) | 0x120000; RCBA32(0x1c) = (RCBA32(0x1c) & ~0x7f0000) | 0x120000;
while ((DMIBAR32(0x26) & (1 << 1)) != 0); while ((DMIBAR32(0x26) & (1 << 1)) != 0)
;
printk(BIOS_DEBUG, "Done DMI setup\n"); printk(BIOS_DEBUG, "Done DMI setup\n");
/* ASPM on DMI */ /* ASPM on DMI */

View File

@ -365,10 +365,10 @@ static void gma_func0_init(struct device *dev)
pci_write_config32(dev, PCI_COMMAND, reg32); pci_write_config32(dev, PCI_COMMAND, reg32);
/* configure GMBUSFREQ */ /* configure GMBUSFREQ */
reg16 = pci_read_config16(dev_find_slot(0, PCI_DEVFN(0x2,0)), 0xcc); reg16 = pci_read_config16(dev_find_slot(0, PCI_DEVFN(0x2, 0)), 0xcc);
reg16 &= ~0x1ff; reg16 &= ~0x1ff;
reg16 |= 0xbc; reg16 |= 0xbc;
pci_write_config16(dev_find_slot(0, PCI_DEVFN(0x2,0)), 0xcc, reg16); pci_write_config16(dev_find_slot(0, PCI_DEVFN(0x2, 0)), 0xcc, reg16);
if (IS_ENABLED(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT)) if (IS_ENABLED(CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT))
native_init(dev); native_init(dev);
@ -376,7 +376,8 @@ static void gma_func0_init(struct device *dev)
pci_dev_init(dev); pci_dev_init(dev);
} }
static void gma_set_subsystem(device_t dev, unsigned vendor, unsigned device) static void gma_set_subsystem(device_t dev, unsigned int vendor,
unsigned int device)
{ {
if (!vendor || !device) { if (!vendor || !device) {
pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID, pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
@ -391,10 +392,9 @@ static void gma_set_subsystem(device_t dev, unsigned vendor, unsigned device)
const struct i915_gpu_controller_info * const struct i915_gpu_controller_info *
intel_gma_get_controller_info(void) intel_gma_get_controller_info(void)
{ {
device_t dev = dev_find_slot(0, PCI_DEVFN(0x2,0)); device_t dev = dev_find_slot(0, PCI_DEVFN(0x2, 0));
if (!dev) { if (!dev)
return NULL; return NULL;
}
struct northbridge_intel_x4x_config *chip = dev->chip_info; struct northbridge_intel_x4x_config *chip = dev->chip_info;
return &chip->gfx; return &chip->gfx;
} }
@ -402,9 +402,8 @@ intel_gma_get_controller_info(void)
static void gma_ssdt(device_t device) static void gma_ssdt(device_t device)
{ {
const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info(); const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info();
if (!gfx) { if (!gfx)
return; return;
}
drivers_intel_gma_displays_ssdt_generate(gfx); drivers_intel_gma_displays_ssdt_generate(gfx);
} }
@ -422,8 +421,7 @@ static struct device_operations gma_func0_ops = {
.ops_pci = &gma_pci_ops, .ops_pci = &gma_pci_ops,
}; };
static const unsigned short pci_device_ids[] = static const unsigned short pci_device_ids[] = {
{
0x2e02, /* Eaglelake */ 0x2e02, /* Eaglelake */
0x2e12, /* Q43/Q45 */ 0x2e12, /* Q43/Q45 */
0x2e22, /* G43/G45 */ 0x2e22, /* G43/G45 */

View File

@ -26,6 +26,6 @@
#define DEFAULT_HECIBAR 0xfed10000 #define DEFAULT_HECIBAR 0xfed10000
#define TPMBASE 0xfed40000 #define TPMBASE 0xfed40000
#define TPM32(x) *((volatile u32 *)(TPMBASE + x)) #define TPM32(x) (*((volatile u32 *)(TPMBASE + (x))))
#endif /* X4X_IOMAP_H */ #endif /* X4X_IOMAP_H */

View File

@ -159,11 +159,10 @@ static struct device_operations cpu_bus_ops = {
static void enable_dev(device_t dev) static void enable_dev(device_t dev)
{ {
/* Set the operations if it is a special bus type */ /* Set the operations if it is a special bus type */
if (dev->path.type == DEVICE_PATH_DOMAIN) { if (dev->path.type == DEVICE_PATH_DOMAIN)
dev->ops = &pci_domain_ops; dev->ops = &pci_domain_ops;
} else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) { else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
dev->ops = &cpu_bus_ops; dev->ops = &cpu_bus_ops;
}
} }
static void x4x_init(void *const chip_info) static void x4x_init(void *const chip_info)
@ -191,7 +190,8 @@ static void x4x_init(void *const chip_info)
for (; fn >= 0; --fn) { for (; fn >= 0; --fn) {
const struct device *const d = const struct device *const d =
dev_find_slot(0, PCI_DEVFN(dev, fn)); dev_find_slot(0, PCI_DEVFN(dev, fn));
if (!d || d->enabled) continue; if (!d || d->enabled)
continue;
const u32 deven = pci_read_config32(d0f0, D0F0_DEVEN); const u32 deven = pci_read_config32(d0f0, D0F0_DEVEN);
pci_write_config32(d0f0, D0F0_DEVEN, pci_write_config32(d0f0, D0F0_DEVEN,
deven & ~(1 << (bit_base + fn))); deven & ~(1 << (bit_base + fn)));

View File

@ -56,7 +56,7 @@ u8 decode_pciebar(u32 *const base, u32 *const len)
{ {
*base = 0; *base = 0;
*len = 0; *len = 0;
const pci_devfn_t dev = PCI_DEV(0,0,0); const pci_devfn_t dev = PCI_DEV(0, 0, 0);
u32 pciexbar = 0; u32 pciexbar = 0;
u32 pciexbar_reg; u32 pciexbar_reg;
u32 reg32; u32 reg32;
@ -98,7 +98,7 @@ u8 decode_pciebar(u32 *const base, u32 *const len)
*/ */
void *cbmem_top(void) void *cbmem_top(void)
{ {
uintptr_t top_of_ram = pci_read_config32(PCI_DEV(0,0,0), D0F0_TSEG); uintptr_t top_of_ram = pci_read_config32(PCI_DEV(0, 0, 0), D0F0_TSEG);
top_of_ram = ALIGN_DOWN(top_of_ram, 4*MiB); top_of_ram = ALIGN_DOWN(top_of_ram, 4*MiB);
return (void *) top_of_ram; return (void *) top_of_ram;
} }

View File

@ -55,30 +55,27 @@ static void sdram_read_spds(struct sysinfo *s)
if (j == 62) if (j == 62)
s->dimms[i].card_type = ((u8) status) & 0x1f; s->dimms[i].card_type = ((u8) status) & 0x1f;
} }
if (status >= 0) { if (status >= 0)
hexdump(s->dimms[i].spd_data, 64); hexdump(s->dimms[i].spd_data, 64);
}
} }
s->spd_type = 0; s->spd_type = 0;
int fail = 1; int fail = 1;
FOR_EACH_POPULATED_DIMM(s->dimms, i) { FOR_EACH_POPULATED_DIMM(s->dimms, i) {
switch ((enum ddrxspd) s->dimms[i].spd_data[2]) { switch ((enum ddrxspd) s->dimms[i].spd_data[2]) {
case DDR2SPD: case DDR2SPD:
if (s->spd_type == 0) { if (s->spd_type == 0)
s->spd_type = DDR2; s->spd_type = DDR2;
} else if (s->spd_type == DDR3) { else if (s->spd_type == DDR3)
die("DIMM type mismatch\n"); die("DIMM type mismatch\n");
} break;
break; case DDR3SPD:
case DDR3SPD: default:
default: if (s->spd_type == 0)
if (s->spd_type == 0) { s->spd_type = DDR3;
s->spd_type = DDR3; else if (s->spd_type == DDR2)
} else if (s->spd_type == DDR2) { die("DIMM type mismatch\n");
die("DIMM type mismatch\n"); break;
}
break;
} }
} }
if (s->spd_type == DDR3) { if (s->spd_type == DDR3) {
@ -135,9 +132,8 @@ static void sdram_read_spds(struct sysinfo *s)
fail = 0; fail = 0;
} }
} }
if (fail) { if (fail)
die("No memory dimms, halt\n"); die("No memory dimms, halt\n");
}
FOR_EACH_POPULATED_CHANNEL(s->dimms, chan) { FOR_EACH_POPULATED_CHANNEL(s->dimms, chan) {
FOR_EACH_POPULATED_DIMM_IN_CHANNEL(s->dimms, chan, i) { FOR_EACH_POPULATED_DIMM_IN_CHANNEL(s->dimms, chan, i) {
@ -163,7 +159,8 @@ static void sdram_read_spds(struct sysinfo *s)
static u8 msbpos(u8 val) //Reverse static u8 msbpos(u8 val) //Reverse
{ {
u8 i; u8 i;
for (i = 7; (i >= 0) && ((val & (1 << i)) == 0); i--); for (i = 7; (i >= 0) && ((val & (1 << i)) == 0); i--)
;
return i; return i;
} }
@ -174,25 +171,21 @@ static void mchinfo_ddr2(struct sysinfo *s)
printk(BIOS_WARNING, "%d CPU cores\n", s->cores); printk(BIOS_WARNING, "%d CPU cores\n", s->cores);
u32 capid = pci_read_config16(PCI_DEV(0, 0, 0), 0xe8); u32 capid = pci_read_config16(PCI_DEV(0, 0, 0), 0xe8);
if (!(capid & (1<<(79-64)))) { if (!(capid & (1<<(79-64))))
printk(BIOS_WARNING, "iTPM enabled\n"); printk(BIOS_WARNING, "iTPM enabled\n");
}
capid = pci_read_config32(PCI_DEV(0, 0, 0), 0xe4); capid = pci_read_config32(PCI_DEV(0, 0, 0), 0xe4);
if (!(capid & (1<<(57-32)))) { if (!(capid & (1<<(57-32))))
printk(BIOS_WARNING, "ME enabled\n"); printk(BIOS_WARNING, "ME enabled\n");
}
if (!(capid & (1<<(56-32)))) { if (!(capid & (1<<(56-32))))
printk(BIOS_WARNING, "AMT enabled\n"); printk(BIOS_WARNING, "AMT enabled\n");
}
s->max_ddr2_mhz = 800; // All chipsets in x4x support up to 800MHz DDR2 s->max_ddr2_mhz = 800; // All chipsets in x4x support up to 800MHz DDR2
printk(BIOS_WARNING, "Capable of DDR2 of %d MHz or lower\n", s->max_ddr2_mhz); printk(BIOS_WARNING, "Capable of DDR2 of %d MHz or lower\n", s->max_ddr2_mhz);
if (!(capid & (1<<(48-32)))) { if (!(capid & (1<<(48-32))))
printk(BIOS_WARNING, "VT-d enabled\n"); printk(BIOS_WARNING, "VT-d enabled\n");
}
} }
static void sdram_detect_ram_speed(struct sysinfo *s) static void sdram_detect_ram_speed(struct sysinfo *s)
@ -205,7 +198,8 @@ static void sdram_detect_ram_speed(struct sysinfo *s)
u8 freq = 0; u8 freq = 0;
// spdidx,cycletime @CAS 5 6 // spdidx,cycletime @CAS 5 6
u8 idx800[7][2] = {{0,0}, {0,0}, {0,0}, {0,0}, {0,0}, {23,0x30}, {9,0x25}}; u8 idx800[7][2] = {{0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {23, 0x30},
{9, 0x25} };
int found = 0; int found = 0;
// Find max FSB speed // Find max FSB speed
@ -236,9 +230,8 @@ static void sdram_detect_ram_speed(struct sysinfo *s)
FOR_EACH_POPULATED_DIMM(s->dimms, i) { FOR_EACH_POPULATED_DIMM(s->dimms, i) {
commoncas &= s->dimms[i].cas_latencies; commoncas &= s->dimms[i].cas_latencies;
} }
if (commoncas == 0) { if (commoncas == 0)
die("No common CAS among dimms\n"); die("No common CAS among dimms\n");
}
// Working from fastest to slowest, // Working from fastest to slowest,
// fast->slow 5@800 6@800 5@667 // fast->slow 5@800 6@800 5@667
@ -281,29 +274,24 @@ static void sdram_detect_ram_speed(struct sysinfo *s)
maxfreq = (s->max_ddr2_mhz == 800) ? MEM_CLOCK_800MHz : MEM_CLOCK_667MHz; maxfreq = (s->max_ddr2_mhz == 800) ? MEM_CLOCK_800MHz : MEM_CLOCK_667MHz;
maxfreq >>= 3; maxfreq >>= 3;
freq = MEM_CLOCK_1333MHz; freq = MEM_CLOCK_1333MHz;
if (maxfreq) { if (maxfreq)
freq = maxfreq + 2; freq = maxfreq + 2;
} if (freq > MEM_CLOCK_1333MHz)
if (freq > MEM_CLOCK_1333MHz) {
freq = MEM_CLOCK_1333MHz; freq = MEM_CLOCK_1333MHz;
}
// Limit DDR speed to FSB speed // Limit DDR speed to FSB speed
switch (s->max_fsb) { switch (s->max_fsb) {
case FSB_CLOCK_800MHz: case FSB_CLOCK_800MHz:
if (freq > MEM_CLOCK_800MHz) { if (freq > MEM_CLOCK_800MHz)
freq = MEM_CLOCK_800MHz; freq = MEM_CLOCK_800MHz;
}
break; break;
case FSB_CLOCK_1066MHz: case FSB_CLOCK_1066MHz:
if (freq > MEM_CLOCK_1066MHz) { if (freq > MEM_CLOCK_1066MHz)
freq = MEM_CLOCK_1066MHz; freq = MEM_CLOCK_1066MHz;
}
break; break;
case FSB_CLOCK_1333MHz: case FSB_CLOCK_1333MHz:
if (freq > MEM_CLOCK_1333MHz) { if (freq > MEM_CLOCK_1333MHz)
freq = MEM_CLOCK_1333MHz; freq = MEM_CLOCK_1333MHz;
}
break; break;
default: default:
die("Invalid FSB\n"); die("Invalid FSB\n");
@ -324,7 +312,7 @@ void sdram_initialize(int boot_path, const u8 *spd_map)
printk(BIOS_DEBUG, "Setting up RAM controller.\n"); printk(BIOS_DEBUG, "Setting up RAM controller.\n");
pci_write_config8(PCI_DEV(0,0,0), 0xdf, 0xff); pci_write_config8(PCI_DEV(0, 0, 0), 0xdf, 0xff);
memset(&s, 0, sizeof(struct sysinfo)); memset(&s, 0, sizeof(struct sysinfo));
@ -336,7 +324,7 @@ void sdram_initialize(int boot_path, const u8 *spd_map)
/* Detect dimms per channel */ /* Detect dimms per channel */
s.dimms_per_ch = 2; s.dimms_per_ch = 2;
reg8 = pci_read_config8(PCI_DEV(0,0,0), 0xe9); reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xe9);
if (reg8 & 0x10) if (reg8 & 0x10)
s.dimms_per_ch = 1; s.dimms_per_ch = 1;
@ -364,7 +352,7 @@ void sdram_initialize(int boot_path, const u8 *spd_map)
reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa2); reg8 = pci_read_config8(PCI_DEV(0, 0x1f, 0), 0xa2);
pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa2, reg8 & ~0x80); pci_write_config8(PCI_DEV(0, 0x1f, 0), 0xa2, reg8 & ~0x80);
reg8 = pci_read_config8(PCI_DEV(0,0,0), 0xf4); reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xf4);
pci_write_config8(PCI_DEV(0,0,0), 0xf4, reg8 | 1); pci_write_config8(PCI_DEV(0, 0, 0), 0xf4, reg8 | 1);
printk(BIOS_DEBUG, "RAM initialization finished.\n"); printk(BIOS_DEBUG, "RAM initialization finished.\n");
} }

View File

@ -61,8 +61,8 @@ static u8 msbpos(u32 val)
} }
asm ("bsrl %1, %0" asm ("bsrl %1, %0"
:"=r"(pos) : "=r"(pos)
:"r"(val) : "r"(val)
); );
return (u8)(pos & 0xff); return (u8)(pos & 0xff);
@ -329,13 +329,12 @@ static void launch_ddr2(struct sysinfo *s)
u32 launch2 = 0; u32 launch2 = 0;
u32 launch3 = 0; u32 launch3 = 0;
if (s->selected_timings.CAS == 5) { if (s->selected_timings.CAS == 5)
launch2 = 0x00220201; launch2 = 0x00220201;
} else if (s->selected_timings.CAS == 6) { else if (s->selected_timings.CAS == 6)
launch2 = 0x00230302; launch2 = 0x00230302;
} else { else
die("Unsupported CAS\n"); die("Unsupported CAS\n");
}
FOR_EACH_POPULATED_CHANNEL(s->dimms, i) { FOR_EACH_POPULATED_CHANNEL(s->dimms, i) {
MCHBAR32(0x400*i + 0x220) = launch1; MCHBAR32(0x400*i + 0x220) = launch1;
@ -571,13 +570,13 @@ static void timings_ddr2(struct sysinfo *s)
twl = s->selected_timings.CAS - 1; twl = s->selected_timings.CAS - 1;
FOR_EACH_POPULATED_DIMM(s->dimms, i) { FOR_EACH_POPULATED_DIMM(s->dimms, i) {
if (s->dimms[i].banks == 1) { // 8 banks if (s->dimms[i].banks == 1) {
/* 8 banks */
trpmod = 1; trpmod = 1;
bankmod = 0; bankmod = 0;
} }
if (s->dimms[i].page_size == 2048) { if (s->dimms[i].page_size == 2048)
pagemod = 1; pagemod = 1;
}
} }
FOR_EACH_POPULATED_CHANNEL(s->dimms, i) { FOR_EACH_POPULATED_CHANNEL(s->dimms, i) {
@ -606,32 +605,28 @@ static void timings_ddr2(struct sysinfo *s)
default: default:
case MEM_CLOCK_667MHz: case MEM_CLOCK_667MHz:
if (reg8) { if (reg8) {
if (pagemod) { if (pagemod)
reg32 |= 16 << 22; reg32 |= 16 << 22;
} else { else
reg32 |= 12 << 22; reg32 |= 12 << 22;
}
} else { } else {
if (pagemod) { if (pagemod)
reg32 |= 18 << 22; reg32 |= 18 << 22;
} else { else
reg32 |= 14 << 22; reg32 |= 14 << 22;
}
} }
break; break;
case MEM_CLOCK_800MHz: case MEM_CLOCK_800MHz:
if (reg8) { if (reg8) {
if (pagemod) { if (pagemod)
reg32 |= 18 << 22; reg32 |= 18 << 22;
} else { else
reg32 |= 14 << 22; reg32 |= 14 << 22;
}
} else { } else {
if (pagemod) { if (pagemod)
reg32 |= 20 << 22; reg32 |= 20 << 22;
} else { else
reg32 |= 16 << 22; reg32 |= 16 << 22;
}
} }
break; break;
} }
@ -678,18 +673,17 @@ static void timings_ddr2(struct sysinfo *s)
MCHBAR32(0x400*i + 0x248) = (MCHBAR32(0x400*i + 0x248) & ~0x0f001f00) | MCHBAR32(0x400*i + 0x248) = (MCHBAR32(0x400*i + 0x248) & ~0x0f001f00) |
reg32; reg32;
if (twl > 2) { if (twl > 2)
flag1 = 1; flag1 = 1;
}
if (s->selected_timings.mem_clk >= MEM_CLOCK_800MHz) { if (s->selected_timings.mem_clk >= MEM_CLOCK_800MHz)
flag2 = 1; flag2 = 1;
}
reg16 = (u8)(twl - 1 - flag1 - flag2); reg16 = (u8)(twl - 1 - flag1 - flag2);
reg16 |= reg16 << 4; reg16 |= reg16 << 4;
if (s->selected_timings.mem_clk == MEM_CLOCK_1333MHz) { if (s->selected_timings.mem_clk == MEM_CLOCK_1333MHz) {
if (reg16) { if (reg16)
reg16--; reg16--;
}
} }
reg16 |= flag1 << 8; reg16 |= flag1 << 8;
reg16 |= flag2 << 9; reg16 |= flag2 << 9;
@ -708,11 +702,10 @@ static void timings_ddr2(struct sysinfo *s)
reg16 = 0x99; reg16 = 0x99;
break; break;
case MEM_CLOCK_800MHz: case MEM_CLOCK_800MHz:
if (s->selected_timings.CAS == 5) { if (s->selected_timings.CAS == 5)
reg16 = 0x19a; reg16 = 0x19a;
} else if (s->selected_timings.CAS == 6) { else if (s->selected_timings.CAS == 6)
reg16 = 0x9a; reg16 = 0x9a;
}
break; break;
} }
reg16 &= 0x7; reg16 &= 0x7;
@ -807,9 +800,11 @@ static void dll_ddr2(struct sysinfo *s)
MCHBAR16(0x400*i + 0x59c) = MCHBAR16(0x400*i + 0x59c) & ~0x3000; MCHBAR16(0x400*i + 0x59c) = MCHBAR16(0x400*i + 0x59c) & ~0x3000;
reg32 = 0; reg32 = 0;
FOR_EACH_RANK_IN_CHANNEL(r) if (!RANK_IS_POPULATED(s->dimms, i, r)) { FOR_EACH_RANK_IN_CHANNEL(r) {
reg32 |= 0x111 << r; if (!RANK_IS_POPULATED(s->dimms, i, r))
reg32 |= 0x111 << r;
} }
MCHBAR32(0x400*i + 0x59c) = (MCHBAR32(0x400*i + 0x59c) & ~0xfff) | reg32; MCHBAR32(0x400*i + 0x59c) = (MCHBAR32(0x400*i + 0x59c) & ~0xfff) | reg32;
MCHBAR8(0x400*i + 0x594) = MCHBAR8(0x400*i + 0x594) & ~1; MCHBAR8(0x400*i + 0x594) = MCHBAR8(0x400*i + 0x594) & ~1;
@ -845,56 +840,56 @@ static void dll_ddr2(struct sysinfo *s)
u8 dll_setting_667[23][5] = { u8 dll_setting_667[23][5] = {
// tap pi db delay // tap pi db delay
{13, 0, 1,0, 0}, {13, 0, 1, 0, 0},
{4, 1, 0,0, 0}, {4, 1, 0, 0, 0},
{13, 0, 1,0, 0}, {13, 0, 1, 0, 0},
{4, 5, 0,0, 0}, {4, 5, 0, 0, 0},
{4, 1, 0,0, 0}, {4, 1, 0, 0, 0},
{4, 1, 0,0, 0}, {4, 1, 0, 0, 0},
{4, 1, 0,0, 0}, {4, 1, 0, 0, 0},
{1, 5, 1,1, 1}, {1, 5, 1, 1, 1},
{1, 6, 1,1, 1}, {1, 6, 1, 1, 1},
{2, 0, 1,1, 1}, {2, 0, 1, 1, 1},
{2, 1, 1,1, 1}, {2, 1, 1, 1, 1},
{2, 1, 1,1, 1}, {2, 1, 1, 1, 1},
{14, 6, 1,0, 0}, {14, 6, 1, 0, 0},
{14, 3, 1,0, 0}, {14, 3, 1, 0, 0},
{14, 0, 1,0, 0}, {14, 0, 1, 0, 0},
{9, 0, 0,0, 1}, {9, 0, 0, 0, 1},
{9, 1, 0,0, 1}, {9, 1, 0, 0, 1},
{9, 2, 0,0, 1}, {9, 2, 0, 0, 1},
{9, 2, 0,0, 1}, {9, 2, 0, 0, 1},
{9, 1, 0,0, 1}, {9, 1, 0, 0, 1},
{6, 4, 0,0, 1}, {6, 4, 0, 0, 1},
{6, 2, 0,0, 1}, {6, 2, 0, 0, 1},
{5, 4, 0,0, 1} {5, 4, 0, 0, 1}
}; };
u8 dll_setting_800[23][5] = { u8 dll_setting_800[23][5] = {
// tap pi db delay // tap pi db delay
{11, 5, 1,0, 0}, {11, 5, 1, 0, 0},
{0, 5, 1,1, 0}, {0, 5, 1, 1, 0},
{11, 5, 1,0, 0}, {11, 5, 1, 0, 0},
{1, 4, 1,1, 0}, {1, 4, 1, 1, 0},
{0, 5, 1,1, 0}, {0, 5, 1, 1, 0},
{0, 5, 1,1, 0}, {0, 5, 1, 1, 0},
{0, 5, 1,1, 0}, {0, 5, 1, 1, 0},
{2, 5, 1,1, 1}, {2, 5, 1, 1, 1},
{2, 6, 1,1, 1}, {2, 6, 1, 1, 1},
{3, 0, 1,1, 1}, {3, 0, 1, 1, 1},
{3, 0, 1,1, 1}, {3, 0, 1, 1, 1},
{3, 3, 1,1, 1}, {3, 3, 1, 1, 1},
{2, 0, 1,1, 1}, {2, 0, 1, 1, 1},
{1, 3, 1,1, 1}, {1, 3, 1, 1, 1},
{0, 3, 1,1, 1}, {0, 3, 1, 1, 1},
{9, 3, 0,0, 1}, {9, 3, 0, 0, 1},
{9, 4, 0,0, 1}, {9, 4, 0, 0, 1},
{9, 5, 0,0, 1}, {9, 5, 0, 0, 1},
{9, 6, 0,0, 1}, {9, 6, 0, 0, 1},
{10, 0, 0,0, 1}, {10, 0, 0, 0, 1},
{8, 1, 0,0, 1}, {8, 1, 0, 0, 1},
{7, 5, 0,0, 1}, {7, 5, 0, 0, 1},
{6, 2, 0,0, 1} {6, 2, 0, 0, 1}
}; };
FOR_EACH_POPULATED_CHANNEL(s->dimms, i) { FOR_EACH_POPULATED_CHANNEL(s->dimms, i) {
@ -931,7 +926,8 @@ static void dll_ddr2(struct sysinfo *s)
for (i = 0; i < 16; i++) { for (i = 0; i < 16; i++) {
MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i; MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i;
MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10; MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10;
while (MCHBAR8(0x180) & 0x10); while (MCHBAR8(0x180) & 0x10)
;
if (MCHBAR32(0x184) == 0xffffffff) { if (MCHBAR32(0x184) == 0xffffffff) {
j++; j++;
if (j >= 2) if (j >= 2)
@ -951,7 +947,8 @@ static void dll_ddr2(struct sysinfo *s)
for (; i < 16; i++) { for (; i < 16; i++) {
MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i; MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i;
MCHBAR8(0x180) = MCHBAR8(0x180) | 0x4; MCHBAR8(0x180) = MCHBAR8(0x180) | 0x4;
while (MCHBAR8(0x180) & 0x10); while (MCHBAR8(0x180) & 0x10)
;
if (MCHBAR32(0x184) == 0) { if (MCHBAR32(0x184) == 0) {
i++; i++;
break; break;
@ -960,9 +957,10 @@ static void dll_ddr2(struct sysinfo *s)
for (; i < 16; i++) { for (; i < 16; i++) {
MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i; MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i;
MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10; MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10;
while (MCHBAR8(0x180) & 0x10); while (MCHBAR8(0x180) & 0x10)
;
if (MCHBAR32(0x184) == 0xffffffff) { if (MCHBAR32(0x184) == 0xffffffff) {
j++; j++;
if (j >= 2) if (j >= 2)
break; break;
} else { } else {
@ -972,7 +970,8 @@ static void dll_ddr2(struct sysinfo *s)
if (j < 2) { if (j < 2) {
MCHBAR8(0x1c8) = MCHBAR8(0x1c8) & ~0x1f; MCHBAR8(0x1c8) = MCHBAR8(0x1c8) & ~0x1f;
MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10; MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10;
while (MCHBAR8(0x180) & 0x10); while (MCHBAR8(0x180) & 0x10)
;
j = 2; j = 2;
} }
} }
@ -986,7 +985,7 @@ static void dll_ddr2(struct sysinfo *s)
if (async != 1) { if (async != 1) {
reg8 = MCHBAR8(0x188) & 0x1e; reg8 = MCHBAR8(0x188) & 0x1e;
if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz && if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz &&
s->selected_timings.fsb_clk == FSB_CLOCK_800MHz) { s->selected_timings.fsb_clk == FSB_CLOCK_800MHz) {
clk = 0x10; clk = 0x10;
} else if (s->selected_timings.mem_clk == MEM_CLOCK_800MHz) { } else if (s->selected_timings.mem_clk == MEM_CLOCK_800MHz) {
clk = 0x10; clk = 0x10;
@ -1002,7 +1001,8 @@ static void dll_ddr2(struct sysinfo *s)
i = (i + 10) % 14; i = (i + 10) % 14;
MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i; MCHBAR8(0x1c8) = (MCHBAR8(0x1c8) & ~0x1f) | i;
MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10; MCHBAR8(0x180) = MCHBAR8(0x180) | 0x10;
while (MCHBAR8(0x180) & 0x10); while (MCHBAR8(0x180) & 0x10)
;
} }
reg8 = MCHBAR8(0x188) & ~1; reg8 = MCHBAR8(0x188) & ~1;
@ -1013,19 +1013,17 @@ static void dll_ddr2(struct sysinfo *s)
reg8 |= 1; reg8 |= 1;
MCHBAR8(0x188) = reg8; MCHBAR8(0x188) = reg8;
if (s->selected_timings.mem_clk == MEM_CLOCK_1333MHz) { if (s->selected_timings.mem_clk == MEM_CLOCK_1333MHz)
MCHBAR8(0x18c) = MCHBAR8(0x18c) | 1; MCHBAR8(0x18c) = MCHBAR8(0x18c) | 1;
}
// Program DQ/DQS dll settings // Program DQ/DQS dll settings
reg32 = 0; reg32 = 0;
FOR_EACH_POPULATED_CHANNEL(s->dimms, i) { FOR_EACH_POPULATED_CHANNEL(s->dimms, i) {
for (lane = 0; lane < 8; lane++) { for (lane = 0; lane < 8; lane++) {
if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz) { if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz)
reg32 = 0x06db7777; reg32 = 0x06db7777;
} else if (s->selected_timings.mem_clk == MEM_CLOCK_800MHz) { else if (s->selected_timings.mem_clk == MEM_CLOCK_800MHz)
reg32 = 0x00007777; reg32 = 0x00007777;
}
MCHBAR32(0x400*i + 0x540 + lane*4) = MCHBAR32(0x400*i + 0x540 + lane*4) =
(MCHBAR32(0x400*i + 0x540 + lane*4) & 0x0fffffff) | (MCHBAR32(0x400*i + 0x540 + lane*4) & 0x0fffffff) |
reg32; reg32;
@ -1034,19 +1032,15 @@ static void dll_ddr2(struct sysinfo *s)
FOR_EACH_POPULATED_CHANNEL(s->dimms, i) { FOR_EACH_POPULATED_CHANNEL(s->dimms, i) {
if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz) { if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz) {
for (lane = 0; lane < 8; lane++) { for (lane = 0; lane < 8; lane++)
dqsset(i, lane, &dll_setting_667[DQS1+lane][0]); dqsset(i, lane, &dll_setting_667[DQS1+lane][0]);
} for (lane = 0; lane < 8; lane++)
for (lane = 0; lane < 8; lane++) {
dqset(i, lane, &dll_setting_667[DQ1+lane][0]); dqset(i, lane, &dll_setting_667[DQ1+lane][0]);
}
} else { } else {
for (lane = 0; lane < 8; lane++) { for (lane = 0; lane < 8; lane++)
dqsset(i, lane, &dll_setting_800[DQS1+lane][0]); dqsset(i, lane, &dll_setting_800[DQS1+lane][0]);
} for (lane = 0; lane < 8; lane++)
for (lane = 0; lane < 8; lane++) {
dqset(i, lane, &dll_setting_800[DQ1+lane][0]); dqset(i, lane, &dll_setting_800[DQ1+lane][0]);
}
} }
} }
} }
@ -1054,7 +1048,8 @@ static void dll_ddr2(struct sysinfo *s)
static void rcomp_ddr2(struct sysinfo *s) static void rcomp_ddr2(struct sysinfo *s)
{ {
u8 i, j, k; u8 i, j, k;
u32 x32a[8] = { 0x04040404, 0x06050505, 0x09090807, 0x0D0C0B0A, 0x04040404, 0x08070605, 0x0C0B0A09, 0x100F0E0D }; u32 x32a[8] = { 0x04040404, 0x06050505, 0x09090807, 0x0D0C0B0A,
0x04040404, 0x08070605, 0x0C0B0A09, 0x100F0E0D };
u16 x378[6] = { 0, 0xAAAA, 0x7777, 0x7777, 0x7777, 0x7777 }; u16 x378[6] = { 0, 0xAAAA, 0x7777, 0x7777, 0x7777, 0x7777 };
u32 x382[6] = { 0, 0x02020202, 0x02020202, 0x02020202, 0x04030303, 0x04030303 }; u32 x382[6] = { 0, 0x02020202, 0x02020202, 0x02020202, 0x04030303, 0x04030303 };
u32 x386[6] = { 0, 0x03020202, 0x03020202, 0x03020202, 0x05040404, 0x05040404 }; u32 x386[6] = { 0, 0x03020202, 0x03020202, 0x03020202, 0x05040404, 0x05040404 };
@ -1113,12 +1108,10 @@ static void rcomp_ddr2(struct sysinfo *s)
MCHBAR16(0x178) = 0x0135; MCHBAR16(0x178) = 0x0135;
MCHBAR32(0x130) = (MCHBAR32(0x130) & ~0x7bdffe0) | 0x7a9ffa0; MCHBAR32(0x130) = (MCHBAR32(0x130) & ~0x7bdffe0) | 0x7a9ffa0;
if (!CHANNEL_IS_POPULATED(s->dimms, 0)) { if (!CHANNEL_IS_POPULATED(s->dimms, 0))
MCHBAR32(0x130) = MCHBAR32(0x130) & ~(1 << 27); MCHBAR32(0x130) = MCHBAR32(0x130) & ~(1 << 27);
} if (!CHANNEL_IS_POPULATED(s->dimms, 1))
if (!CHANNEL_IS_POPULATED(s->dimms, 1)) {
MCHBAR32(0x130) = MCHBAR32(0x130) & ~(1 << 28); MCHBAR32(0x130) = MCHBAR32(0x130) & ~(1 << 28);
}
MCHBAR8(0x130) = MCHBAR8(0x130) | 1; MCHBAR8(0x130) = MCHBAR8(0x130) | 1;
} }
@ -1127,22 +1120,22 @@ static void odt_ddr2(struct sysinfo *s)
{ {
u8 i; u8 i;
u16 odt[16][2] = { u16 odt[16][2] = {
{ 0x0000,0x0000 }, // NC_NC { 0x0000, 0x0000 }, // NC_NC
{ 0x0000,0x0001 }, // x8SS_NC { 0x0000, 0x0001 }, // x8SS_NC
{ 0x0000,0x0011 }, // x8DS_NC { 0x0000, 0x0011 }, // x8DS_NC
{ 0x0000,0x0001 }, // x16SS_NC { 0x0000, 0x0001 }, // x16SS_NC
{ 0x0004,0x0000 }, // NC_x8SS { 0x0004, 0x0000 }, // NC_x8SS
{ 0x0101,0x0404 }, // x8SS_x8SS { 0x0101, 0x0404 }, // x8SS_x8SS
{ 0x0101,0x4444 }, // x8DS_x8SS { 0x0101, 0x4444 }, // x8DS_x8SS
{ 0x0101,0x0404 }, // x16SS_x8SS { 0x0101, 0x0404 }, // x16SS_x8SS
{ 0x0044,0x0000 }, // NC_x8DS { 0x0044, 0x0000 }, // NC_x8DS
{ 0x1111,0x0404 }, // x8SS_x8DS { 0x1111, 0x0404 }, // x8SS_x8DS
{ 0x1111,0x4444 }, // x8DS_x8DS { 0x1111, 0x4444 }, // x8DS_x8DS
{ 0x1111,0x0404 }, // x16SS_x8DS { 0x1111, 0x0404 }, // x16SS_x8DS
{ 0x0004,0x0000 }, // NC_x16SS { 0x0004, 0x0000 }, // NC_x16SS
{ 0x0101,0x0404 }, // x8SS_x16SS { 0x0101, 0x0404 }, // x8SS_x16SS
{ 0x0101,0x4444 }, // x8DS_x16SS { 0x0101, 0x4444 }, // x8DS_x16SS
{ 0x0101,0x0404 }, // x16SS_x16SS { 0x0101, 0x0404 }, // x16SS_x16SS
}; };
FOR_EACH_POPULATED_CHANNEL(s->dimms, i) { FOR_EACH_POPULATED_CHANNEL(s->dimms, i) {
@ -1160,7 +1153,7 @@ static void dojedec_ddr2(u8 r, u8 ch, u8 cmd, u16 val)
MCHBAR8(0x271) = (MCHBAR8(0x271) & ~0x3e) | cmd; MCHBAR8(0x271) = (MCHBAR8(0x271) & ~0x3e) | cmd;
MCHBAR8(0x671) = (MCHBAR8(0x671) & ~0x3e) | cmd; MCHBAR8(0x671) = (MCHBAR8(0x671) & ~0x3e) | cmd;
rubbish = read32((void*)((val<<3) | addr)); rubbish = read32((void *)((val<<3) | addr));
udelay(10); udelay(10);
MCHBAR8(0x271) = (MCHBAR8(0x271) & ~0x3e) | NORMALOP_CMD; MCHBAR8(0x271) = (MCHBAR8(0x271) & ~0x3e) | NORMALOP_CMD;
MCHBAR8(0x671) = (MCHBAR8(0x671) & ~0x3e) | NORMALOP_CMD; MCHBAR8(0x671) = (MCHBAR8(0x671) & ~0x3e) | NORMALOP_CMD;
@ -1250,9 +1243,8 @@ static u8 sampledqs(u16 mchloc, u32 addr, u8 hilow, u8 repeat)
barrier(); barrier();
strobe = read32((u32 *)addr); strobe = read32((u32 *)addr);
barrier(); barrier();
if (((MCHBAR32(mchloc) & 0x40) >> 6) != hilow) { if (((MCHBAR32(mchloc) & 0x40) >> 6) != hilow)
dqsmatch = 0; dqsmatch = 0;
}
} }
return dqsmatch; return dqsmatch;
} }
@ -1277,18 +1269,28 @@ static void rcven_ddr2(struct sysinfo *s)
FOR_EACH_POPULATED_CHANNEL(s->dimms, ch) { FOR_EACH_POPULATED_CHANNEL(s->dimms, ch) {
addr = (ch << 29); addr = (ch << 29);
for (i = 0; !RANK_IS_POPULATED(s->dimms, ch, i); i++) { for (i = 0; !RANK_IS_POPULATED(s->dimms, ch, i); i++)
addr += 128*1024*1024; addr += 128*1024*1024;
}
for (lane = 0; lane < 8; lane++) { for (lane = 0; lane < 8; lane++) {
printk(BIOS_DEBUG, "Channel %d, Lane %d addr=0x%08x\n", ch, lane, addr); printk(BIOS_DEBUG, "Channel %d, Lane %d addr=0x%08x\n", ch, lane, addr);
coarsecommon = (s->selected_timings.CAS - 1); coarsecommon = (s->selected_timings.CAS - 1);
switch (lane) { switch (lane) {
case 0: case 1: medium = 0; break; case 0: case 1:
case 2: case 3: medium = 1; break; medium = 0;
case 4: case 5: medium = 2; break; break;
case 6: case 7: medium = 3; break; case 2: case 3:
default: medium = 0; break; medium = 1;
break;
case 4: case 5:
medium = 2;
break;
case 6: case 7:
medium = 3;
break;
default:
medium = 0;
break;
} }
mchbar = 0x400*ch + 0x561 + (lane << 2); mchbar = 0x400*ch + 0x561 + (lane << 2);
tap = 0; tap = 0;
@ -1378,9 +1380,8 @@ static void rcven_ddr2(struct sysinfo *s)
while (sampledqs(mchbar, addr, 1, 1) == 0) { while (sampledqs(mchbar, addr, 1, 1) == 0) {
savetap = tap; savetap = tap;
tap++; tap++;
if (tap > 14) { if (tap > 14)
break; break;
}
MCHBAR8(0x400*ch + 0x560 + (lane*4)) = MCHBAR8(0x400*ch + 0x560 + (lane*4)) =
(MCHBAR8(0x400*ch + 0x560 + (lane*4)) & ~0xf) | tap; (MCHBAR8(0x400*ch + 0x560 + (lane*4)) & ~0xf) | tap;
} }
@ -1402,9 +1403,8 @@ static void rcven_ddr2(struct sysinfo *s)
MCHBAR16(0x400*ch + 0x58c) = (MCHBAR16(0x400*ch + 0x58c) & MCHBAR16(0x400*ch + 0x58c) = (MCHBAR16(0x400*ch + 0x58c) &
~(3 << (lane*2))) | (medium << (lane*2)); ~(3 << (lane*2))) | (medium << (lane*2));
} }
if (sampledqs(mchbar, addr, 1, 1) == 0) { if (sampledqs(mchbar, addr, 1, 1) == 0)
die("Not at DQS high, doh\n"); die("Not at DQS high, doh\n");
}
printk(BIOS_DEBUG, "rcven 0.4\n"); printk(BIOS_DEBUG, "rcven 0.4\n");
while (sampledqs(mchbar, addr, 1, 1) == 1) { while (sampledqs(mchbar, addr, 1, 1) == 1) {
@ -1451,9 +1451,8 @@ static void rcven_ddr2(struct sysinfo *s)
while (sampledqs(mchbar, addr, 1, 1) == 0) { while (sampledqs(mchbar, addr, 1, 1) == 0) {
savetap = tap; savetap = tap;
tap++; tap++;
if (tap > 14) { if (tap > 14)
break; break;
}
MCHBAR8(0x400*ch + 0x560 + lane*4) = MCHBAR8(0x400*ch + 0x560 + lane*4) =
(MCHBAR8(0x400*ch + 0x560 + lane*4) & ~0xf) | tap; (MCHBAR8(0x400*ch + 0x560 + lane*4) & ~0xf) | tap;
} }
@ -1472,9 +1471,8 @@ static void rcven_ddr2(struct sysinfo *s)
// Find minimum coarse value // Find minimum coarse value
for (lane = 0; lane < 8; lane++) { for (lane = 0; lane < 8; lane++) {
if (mincoarse > lanecoarse[lane]) { if (mincoarse > lanecoarse[lane])
mincoarse = lanecoarse[lane]; mincoarse = lanecoarse[lane];
}
} }
printk(BIOS_DEBUG, "Found min coarse value = %d\n", mincoarse); printk(BIOS_DEBUG, "Found min coarse value = %d\n", mincoarse);
@ -1619,18 +1617,17 @@ static void dradrb_ddr2(struct sysinfo *s)
rankpop0 = 0; rankpop0 = 0;
rankpop1 = 0; rankpop1 = 0;
FOR_EACH_POPULATED_RANK(s->dimms, ch, r) { FOR_EACH_POPULATED_RANK(s->dimms, ch, r) {
if (((s->dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED) && ((r) < s->dimms[ch<<1].ranks))) { if (s->dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED
&& (r) < s->dimms[ch<<1].ranks)
i = ch << 1; i = ch << 1;
} else { else
i = (ch << 1) + 1; i = (ch << 1) + 1;
}
dra = dratab[s->dimms[i].banks] dra = dratab[s->dimms[i].banks]
[s->dimms[i].width] [s->dimms[i].width]
[s->dimms[i].cols-9] [s->dimms[i].cols-9]
[s->dimms[i].rows-12]; [s->dimms[i].rows-12];
if (s->dimms[i].banks == 1) { if (s->dimms[i].banks == 1)
dra |= 0x80; dra |= 0x80;
}
if (ch == 0) { if (ch == 0) {
c0dra |= dra << (r*8); c0dra |= dra << (r*8);
rankpop0 |= 1 << r; rankpop0 |= 1 << r;
@ -1645,20 +1642,20 @@ static void dradrb_ddr2(struct sysinfo *s)
MCHBAR8(0x262) = (MCHBAR8(0x262) & ~0xf0) | ((rankpop0 << 4) & 0xf0); MCHBAR8(0x262) = (MCHBAR8(0x262) & ~0xf0) | ((rankpop0 << 4) & 0xf0);
MCHBAR8(0x662) = (MCHBAR8(0x662) & ~0xf0) | ((rankpop1 << 4) & 0xf0); MCHBAR8(0x662) = (MCHBAR8(0x662) & ~0xf0) | ((rankpop1 << 4) & 0xf0);
if (ONLY_DIMMA_IS_POPULATED(s->dimms, 0) || ONLY_DIMMB_IS_POPULATED(s->dimms, 0)) { if (ONLY_DIMMA_IS_POPULATED(s->dimms, 0) ||
ONLY_DIMMB_IS_POPULATED(s->dimms, 0))
MCHBAR8(0x260) = MCHBAR8(0x260) | 1; MCHBAR8(0x260) = MCHBAR8(0x260) | 1;
} if (ONLY_DIMMA_IS_POPULATED(s->dimms, 1) ||
if (ONLY_DIMMA_IS_POPULATED(s->dimms, 1) || ONLY_DIMMB_IS_POPULATED(s->dimms, 1)) { ONLY_DIMMB_IS_POPULATED(s->dimms, 1))
MCHBAR8(0x660) = MCHBAR8(0x660) | 1; MCHBAR8(0x660) = MCHBAR8(0x660) | 1;
}
// DRB // DRB
FOR_EACH_POPULATED_RANK(s->dimms, ch, r) { FOR_EACH_POPULATED_RANK(s->dimms, ch, r) {
if (((s->dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED) && ((r) < s->dimms[ch<<1].ranks))) { if (s->dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED
&& (r) < s->dimms[ch<<1].ranks)
i = ch << 1; i = ch << 1;
} else { else
i = (ch << 1) + 1; i = (ch << 1) + 1;
}
if (ch == 0) { if (ch == 0) {
dra0 = (c0dra >> (8*r)) & 0x7f; dra0 = (c0dra >> (8*r)) & 0x7f;
c0drb = (u16)(c0drb + drbtab[dra0]); c0drb = (u16)(c0drb + drbtab[dra0]);
@ -1705,30 +1702,27 @@ static void dradrb_ddr2(struct sysinfo *s)
MCHBAR16(0x102) = size0 + size1 - size; MCHBAR16(0x102) = size0 + size1 - size;
map = 0; map = 0;
if (size0 == 0) { if (size0 == 0)
map = 0; map = 0;
} else if (size1 == 0) { else if (size1 == 0)
map |= 0x20; map |= 0x20;
} else { else
map |= 0x40; map |= 0x40;
}
if (size == 0) {
map |= 0x18;
}
if (size0 - ME_UMA_SIZEMB >= size1) { if (size == 0)
map |= 0x18;
if (size0 - ME_UMA_SIZEMB >= size1)
map |= 0x4; map |= 0x4;
}
MCHBAR8(0x110) = map; MCHBAR8(0x110) = map;
MCHBAR16(0x10e) = 0; MCHBAR16(0x10e) = 0;
if (size1 != 0) { if (size1 != 0)
offset = 0; offset = 0;
} else if ((size0 > size1) && ((map & 0x7) == 0x4)) { else if ((size0 > size1) && ((map & 0x7) == 0x4))
offset = size/2 + (size0 + size1 - size); offset = size/2 + (size0 + size1 - size);
} else { else
offset = size/2 + ME_UMA_SIZEMB; offset = size/2 + ME_UMA_SIZEMB;
}
MCHBAR16(0x108) = offset; MCHBAR16(0x108) = offset;
MCHBAR16(0x10a) = size/2; MCHBAR16(0x10a) = size/2;
} }
@ -1743,7 +1737,7 @@ static void mmap_ddr2(struct sysinfo *s)
160, 224, 352 }; 160, 224, 352 };
u8 ggc2gtt[] = { 0, 1, 0, 2, 0, 0, 0, 0, 0, 2, 3, 4}; u8 ggc2gtt[] = { 0, 1, 0, 2, 0, 0, 0, 0, 0, 2, 3, 4};
ggc = pci_read_config16(PCI_DEV(0,0,0), 0x52); ggc = pci_read_config16(PCI_DEV(0, 0, 0), 0x52);
gfxsize = ggc2uma[(ggc & 0xf0) >> 4]; gfxsize = ggc2uma[(ggc & 0xf0) >> 4];
gttsize = ggc2gtt[(ggc & 0xf00) >> 8]; gttsize = ggc2gtt[(ggc & 0xf00) >> 8];
tsegsize = 1; // 1MB TSEG tsegsize = 1; // 1MB TSEG
@ -1770,18 +1764,18 @@ static void mmap_ddr2(struct sysinfo *s)
gttbase = gfxbase - gttsize; gttbase = gfxbase - gttsize;
tsegbase = gttbase - tsegsize; tsegbase = gttbase - tsegsize;
pci_write_config16(PCI_DEV(0,0,0), 0xb0, tolud << 4); pci_write_config16(PCI_DEV(0, 0, 0), 0xb0, tolud << 4);
pci_write_config16(PCI_DEV(0,0,0), 0xa0, tom >> 6); pci_write_config16(PCI_DEV(0, 0, 0), 0xa0, tom >> 6);
if (reclaim) { if (reclaim) {
pci_write_config16(PCI_DEV(0,0,0), 0x98, pci_write_config16(PCI_DEV(0, 0, 0), 0x98,
(u16)(reclaimbase >> 6)); (u16)(reclaimbase >> 6));
pci_write_config16(PCI_DEV(0,0,0), 0x9a, pci_write_config16(PCI_DEV(0, 0, 0), 0x9a,
(u16)(reclaimlimit >> 6)); (u16)(reclaimlimit >> 6));
} }
pci_write_config16(PCI_DEV(0,0,0), 0xa2, touud); pci_write_config16(PCI_DEV(0, 0, 0), 0xa2, touud);
pci_write_config32(PCI_DEV(0,0,0), 0xa4, gfxbase << 20); pci_write_config32(PCI_DEV(0, 0, 0), 0xa4, gfxbase << 20);
pci_write_config32(PCI_DEV(0,0,0), 0xa8, gttbase << 20); pci_write_config32(PCI_DEV(0, 0, 0), 0xa8, gttbase << 20);
pci_write_config32(PCI_DEV(0,0,0), 0xac, tsegbase << 20); pci_write_config32(PCI_DEV(0, 0, 0), 0xac, tsegbase << 20);
} }
static void enhanced_ddr2(struct sysinfo *s) static void enhanced_ddr2(struct sysinfo *s)
@ -1810,8 +1804,8 @@ static void enhanced_ddr2(struct sysinfo *s)
MCHBAR32(0x400*ch + 0x290) = 0x4f2091c; MCHBAR32(0x400*ch + 0x290) = 0x4f2091c;
} }
reg8 = pci_read_config8(PCI_DEV(0,0,0), 0xf0); reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xf0);
pci_write_config8(PCI_DEV(0,0,0), 0xf0, reg8 | 1); pci_write_config8(PCI_DEV(0, 0, 0), 0xf0, reg8 | 1);
MCHBAR32(0xfa0) = (MCHBAR32(0xfa0) & ~0x20002) | 0x2; MCHBAR32(0xfa0) = (MCHBAR32(0xfa0) & ~0x20002) | 0x2;
MCHBAR32(0xfa4) = (MCHBAR32(0xfa4) & ~0x219100c3) | 0x219100c2; MCHBAR32(0xfa4) = (MCHBAR32(0xfa4) & ~0x219100c3) | 0x219100c2;
MCHBAR32(0x2c) = 0x44a53; MCHBAR32(0x2c) = 0x44a53;
@ -1821,7 +1815,7 @@ static void enhanced_ddr2(struct sysinfo *s)
MCHBAR32(0x3c) = 0x23014410; MCHBAR32(0x3c) = 0x23014410;
MCHBAR32(0x40) = (MCHBAR32(0x40) & ~0x8f038000) | 0x8f038000; MCHBAR32(0x40) = (MCHBAR32(0x40) & ~0x8f038000) | 0x8f038000;
MCHBAR32(0x20) = 0x33001; MCHBAR32(0x20) = 0x33001;
pci_write_config8(PCI_DEV(0,0,0), 0xf0, reg8 & ~1); pci_write_config8(PCI_DEV(0, 0, 0), 0xf0, reg8 & ~1);
} }
static void power_ddr2(struct sysinfo *s) static void power_ddr2(struct sysinfo *s)
@ -1857,11 +1851,10 @@ static void power_ddr2(struct sysinfo *s)
reg3 = 0x232; reg3 = 0x232;
reg4 = 0x2864; reg4 = 0x2864;
if (CHANNEL_IS_POPULATED(s->dimms, 0) && CHANNEL_IS_POPULATED(s->dimms, 1)) { if (CHANNEL_IS_POPULATED(s->dimms, 0) && CHANNEL_IS_POPULATED(s->dimms, 1))
MCHBAR32(0x14) = 0x0010461f; MCHBAR32(0x14) = 0x0010461f;
} else { else
MCHBAR32(0x14) = 0x0010691f; MCHBAR32(0x14) = 0x0010691f;
}
MCHBAR32(0x18) = 0xdf6437f7; MCHBAR32(0x18) = 0xdf6437f7;
MCHBAR32(0x1c) = 0x0; MCHBAR32(0x1c) = 0x0;
MCHBAR32(0x24) = (MCHBAR32(0x24) & ~0xe0000000) | 0x30000000; MCHBAR32(0x24) = (MCHBAR32(0x24) & ~0xe0000000) | 0x30000000;
@ -1907,22 +1900,20 @@ static void power_ddr2(struct sysinfo *s)
MCHBAR32(0xfbc) = (MCHBAR32(0xfbc) & ~0x7f800) | 0xf000; MCHBAR32(0xfbc) = (MCHBAR32(0xfbc) & ~0x7f800) | 0xf000;
MCHBAR32(0x1104) = 0x3003232; MCHBAR32(0x1104) = 0x3003232;
MCHBAR32(0x1108) = 0x74; MCHBAR32(0x1108) = 0x74;
if (s->selected_timings.fsb_clk == FSB_CLOCK_800MHz) { if (s->selected_timings.fsb_clk == FSB_CLOCK_800MHz)
MCHBAR32(0x110c) = 0xaa; MCHBAR32(0x110c) = 0xaa;
} else { else
MCHBAR32(0x110c) = 0x100; MCHBAR32(0x110c) = 0x100;
}
MCHBAR32(0x1110) = 0x10810350 & ~0x78; MCHBAR32(0x1110) = 0x10810350 & ~0x78;
MCHBAR32(0x1114) = 0; MCHBAR32(0x1114) = 0;
if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz) { if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz)
twl = 5; twl = 5;
} else { else
twl = 6; twl = 6;
}
x592 = 0xff; x592 = 0xff;
if (pci_read_config8(PCI_DEV(0,0,0), 0x8) < 3) { if (pci_read_config8(PCI_DEV(0, 0, 0), 0x8) < 3)
x592 = ~0x4; x592 = ~0x4;
}
FOR_EACH_POPULATED_CHANNEL(s->dimms, ch) { FOR_EACH_POPULATED_CHANNEL(s->dimms, ch) {
MCHBAR8(0x400*ch + 0x239) = twl + 15; MCHBAR8(0x400*ch + 0x239) = twl + 15;
MCHBAR16(0x400*ch + 0x23c) = x23c; MCHBAR16(0x400*ch + 0x23c) = x23c;
@ -1933,9 +1924,8 @@ static void power_ddr2(struct sysinfo *s)
MCHBAR8(0x400*ch + 0x593) = (MCHBAR8(0x400*ch + 0x593) & ~0x1f) | 0x1e; MCHBAR8(0x400*ch + 0x593) = (MCHBAR8(0x400*ch + 0x593) & ~0x1f) | 0x1e;
} }
for (lane = 0; lane < 8; lane++) { for (lane = 0; lane < 8; lane++)
MCHBAR8(0x561 + (lane << 2)) = MCHBAR8(0x561 + (lane << 2)) & ~(1 << 3); MCHBAR8(0x561 + (lane << 2)) = MCHBAR8(0x561 + (lane << 2)) & ~(1 << 3);
}
} }
void raminit_ddr2(struct sysinfo *s) void raminit_ddr2(struct sysinfo *s)
@ -1971,7 +1961,7 @@ void raminit_ddr2(struct sysinfo *s)
die("Error: DDR is faster than FSB, halt\n"); die("Error: DDR is faster than FSB, halt\n");
} }
udelay(250000); mdelay(250);
// Program clock crossing // Program clock crossing
clkcross_ddr2(s); clkcross_ddr2(s);
@ -2026,12 +2016,12 @@ void raminit_ddr2(struct sysinfo *s)
MCHBAR8(0x100) = (2 << 5) | (3 << 3); MCHBAR8(0x100) = (2 << 5) | (3 << 3);
MCHBAR16(0x10e) = 0; MCHBAR16(0x10e) = 0;
MCHBAR32(0x108) = 0; MCHBAR32(0x108) = 0;
pci_write_config16(PCI_DEV(0,0,0), 0xb0, 0x4000); pci_write_config16(PCI_DEV(0, 0, 0), 0xb0, 0x4000);
pci_write_config16(PCI_DEV(0,0,0), 0xa0, 0x0010); pci_write_config16(PCI_DEV(0, 0, 0), 0xa0, 0x0010);
pci_write_config16(PCI_DEV(0,0,0), 0xa2, 0x0400); pci_write_config16(PCI_DEV(0, 0, 0), 0xa2, 0x0400);
pci_write_config32(PCI_DEV(0,0,0), 0xa4, 0x40000000); pci_write_config32(PCI_DEV(0, 0, 0), 0xa4, 0x40000000);
pci_write_config32(PCI_DEV(0,0,0), 0xa8, 0x40000000); pci_write_config32(PCI_DEV(0, 0, 0), 0xa8, 0x40000000);
pci_write_config32(PCI_DEV(0,0,0), 0xac, 0x40000000); pci_write_config32(PCI_DEV(0, 0, 0), 0xac, 0x40000000);
// IOBUFACT // IOBUFACT
if (CHANNEL_IS_POPULATED(s->dimms, 0)) { if (CHANNEL_IS_POPULATED(s->dimms, 0)) {
@ -2039,7 +2029,7 @@ void raminit_ddr2(struct sysinfo *s)
MCHBAR8(0x5d8) = MCHBAR8(0x5d8) | 0x7; MCHBAR8(0x5d8) = MCHBAR8(0x5d8) | 0x7;
} }
if (CHANNEL_IS_POPULATED(s->dimms, 1)) { if (CHANNEL_IS_POPULATED(s->dimms, 1)) {
if (pci_read_config8(PCI_DEV(0,0,0), 0x8) < 2) { if (pci_read_config8(PCI_DEV(0, 0, 0), 0x8) < 2) {
MCHBAR8(0x5dd) = (MCHBAR8(0x5dd) & ~0x3f) | 0x3f; MCHBAR8(0x5dd) = (MCHBAR8(0x5dd) & ~0x3f) | 0x3f;
MCHBAR8(0x5d8) = MCHBAR8(0x5d8) | 1; MCHBAR8(0x5d8) = MCHBAR8(0x5d8) | 1;
} }
@ -2065,11 +2055,10 @@ void raminit_ddr2(struct sysinfo *s)
// After JEDEC reset // After JEDEC reset
MCHBAR8(0x40) = MCHBAR8(0x40) & ~0x2; MCHBAR8(0x40) = MCHBAR8(0x40) & ~0x2;
FOR_EACH_POPULATED_CHANNEL(s->dimms, ch) { FOR_EACH_POPULATED_CHANNEL(s->dimms, ch) {
if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz) { if (s->selected_timings.mem_clk == MEM_CLOCK_667MHz)
reg32 = (2 << 18) | (3 << 13) | (5 << 8); reg32 = (2 << 18) | (3 << 13) | (5 << 8);
} else { else
reg32 = (2 << 18) | (3 << 13) | (4 << 8); reg32 = (2 << 18) | (3 << 13) | (4 << 8);
}
MCHBAR32(0x400*ch + 0x274) = (MCHBAR32(0x400*ch + 0x274) & ~0xfff00) | reg32; MCHBAR32(0x400*ch + 0x274) = (MCHBAR32(0x400*ch + 0x274) & ~0xfff00) | reg32;
MCHBAR8(0x400*ch + 0x274) = MCHBAR8(0x400*ch + 0x274) & ~0x80; MCHBAR8(0x400*ch + 0x274) = MCHBAR8(0x400*ch + 0x274) & ~0x80;
MCHBAR8(0x400*ch + 0x26c) = MCHBAR8(0x400*ch + 0x26c) | 1; MCHBAR8(0x400*ch + 0x26c) = MCHBAR8(0x400*ch + 0x26c) | 1;

View File

@ -82,9 +82,9 @@
* MCHBAR * MCHBAR
*/ */
#define MCHBAR8(x) *((volatile u8 *)(DEFAULT_MCHBAR + x)) #define MCHBAR8(x) (*((volatile u8 *)(DEFAULT_MCHBAR + (x))))
#define MCHBAR16(x) *((volatile u16 *)(DEFAULT_MCHBAR + x)) #define MCHBAR16(x) (*((volatile u16 *)(DEFAULT_MCHBAR + (x))))
#define MCHBAR32(x) *((volatile u32 *)(DEFAULT_MCHBAR + x)) #define MCHBAR32(x) (*((volatile u32 *)(DEFAULT_MCHBAR + (x))))
#define PMSTS_MCHBAR 0x0f14 /* Self refresh channel status */ #define PMSTS_MCHBAR 0x0f14 /* Self refresh channel status */
#define PMSTS_WARM_RESET (1 << 8) #define PMSTS_WARM_RESET (1 << 8)
@ -103,9 +103,9 @@
* DMIBAR * DMIBAR
*/ */
#define DMIBAR8(x) *((volatile u8 *)(DEFAULT_DMIBAR + x)) #define DMIBAR8(x) (*((volatile u8 *)(DEFAULT_DMIBAR + (x))))
#define DMIBAR16(x) *((volatile u16 *)(DEFAULT_DMIBAR + x)) #define DMIBAR16(x) (*((volatile u16 *)(DEFAULT_DMIBAR + (x))))
#define DMIBAR32(x) *((volatile u32 *)(DEFAULT_DMIBAR + x)) #define DMIBAR32(x) (*((volatile u32 *)(DEFAULT_DMIBAR + (x))))
#define DMIVC0RCTL 0x14 #define DMIVC0RCTL 0x14
#define DMIVC1RCTL 0x20 #define DMIVC1RCTL 0x20
@ -120,9 +120,9 @@
* EPBAR * EPBAR
*/ */
#define EPBAR8(x) *((volatile u8 *)(DEFAULT_EPBAR + x)) #define EPBAR8(x) (*((volatile u8 *)(DEFAULT_EPBAR + (x))))
#define EPBAR16(x) *((volatile u16 *)(DEFAULT_EPBAR + x)) #define EPBAR16(x) (*((volatile u16 *)(DEFAULT_EPBAR + (x))))
#define EPBAR32(x) *((volatile u32 *)(DEFAULT_EPBAR + x)) #define EPBAR32(x) (*((volatile u32 *)(DEFAULT_EPBAR + (x))))
#define EPESD 0x44 #define EPESD 0x44
#define EPLE1D 0x50 #define EPLE1D 0x50
@ -164,9 +164,15 @@
for (idx = (ch) << 1; idx < ((ch) << 1) + DIMMS_PER_CHANNEL; ++idx) for (idx = (ch) << 1; idx < ((ch) << 1) + DIMMS_PER_CHANNEL; ++idx)
#define FOR_EACH_POPULATED_DIMM_IN_CHANNEL(dimms, ch, idx) \ #define FOR_EACH_POPULATED_DIMM_IN_CHANNEL(dimms, ch, idx) \
FOR_EACH_DIMM_IN_CHANNEL(ch, idx) IF_DIMM_POPULATED(dimms, idx) FOR_EACH_DIMM_IN_CHANNEL(ch, idx) IF_DIMM_POPULATED(dimms, idx)
#define CHANNEL_IS_POPULATED(dimms, idx) ((dimms[idx<<1].card_type != RAW_CARD_UNPOPULATED) || (dimms[(idx<<1) + 1].card_type != RAW_CARD_UNPOPULATED)) #define CHANNEL_IS_POPULATED(dimms, idx) \
#define CHANNEL_IS_CARDF(dimms, idx) ((dimms[idx<<1].card_type == 0xf) || (dimms[(idx<<1) + 1].card_type == 0xf)) ((dimms[idx<<1].card_type != RAW_CARD_UNPOPULATED) \
#define IF_CHANNEL_POPULATED(dimms, idx) if ((dimms[idx<<1].card_type != RAW_CARD_UNPOPULATED) || (dimms[(idx<<1) + 1].card_type != RAW_CARD_UNPOPULATED)) || (dimms[(idx<<1) + 1].card_type != RAW_CARD_UNPOPULATED))
#define CHANNEL_IS_CARDF(dimms, idx) \
((dimms[idx<<1].card_type == 0xf) \
|| (dimms[(idx<<1) + 1].card_type == 0xf))
#define IF_CHANNEL_POPULATED(dimms, idx) \
if ((dimms[idx<<1].card_type != RAW_CARD_UNPOPULATED) \
|| (dimms[(idx<<1) + 1].card_type != RAW_CARD_UNPOPULATED))
#define FOR_EACH_CHANNEL(idx) \ #define FOR_EACH_CHANNEL(idx) \
for (idx = 0; idx < TOTAL_CHANNELS; ++idx) for (idx = 0; idx < TOTAL_CHANNELS; ++idx)
#define FOR_EACH_POPULATED_CHANNEL(dimms, idx) \ #define FOR_EACH_POPULATED_CHANNEL(dimms, idx) \
@ -177,8 +183,10 @@
(((dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED) && ((r) < dimms[ch<<1].ranks)) || \ (((dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED) && ((r) < dimms[ch<<1].ranks)) || \
((dimms[(ch<<1) + 1].card_type != RAW_CARD_UNPOPULATED) && ((r) >= 2) && ((r) < (dimms[(ch<<1) + 1].ranks + 2)))) ((dimms[(ch<<1) + 1].card_type != RAW_CARD_UNPOPULATED) && ((r) >= 2) && ((r) < (dimms[(ch<<1) + 1].ranks + 2))))
#define IF_RANK_POPULATED(dimms, ch, r) \ #define IF_RANK_POPULATED(dimms, ch, r) \
if (((dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED) && ((r) < dimms[ch<<1].ranks)) || \ if (((dimms[ch<<1].card_type != RAW_CARD_UNPOPULATED) \
((dimms[(ch<<1) + 1].card_type != RAW_CARD_UNPOPULATED) && ((r) >= 2) && ((r) < (dimms[(ch<<1) + 1].ranks + 2)))) && ((r) < dimms[ch<<1].ranks)) \
|| ((dimms[(ch<<1) + 1].card_type != RAW_CARD_UNPOPULATED) \
&& ((r) >= 2) && ((r) < (dimms[(ch<<1) + 1].ranks + 2))))
#define FOR_EACH_RANK_IN_CHANNEL(r) \ #define FOR_EACH_RANK_IN_CHANNEL(r) \
for (r = 0; r < RANKS_PER_CHANNEL; ++r) for (r = 0; r < RANKS_PER_CHANNEL; ++r)
#define FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r) \ #define FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r) \