northbridge/intel: Add required space before opening parenthesis '('

Change-Id: I53208ce5db06d2c65f954e6d59222924ab87722e
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16304
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Elyes HAOUAS
2016-08-23 21:29:48 +02:00
committed by Martin Roth
parent 5a7e72f1ae
commit 12df950583
24 changed files with 252 additions and 252 deletions

View File

@ -12,7 +12,7 @@ static void print_debug_pci_dev(unsigned dev)
static inline void print_pci_devices(void) static inline void print_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0xff, 0x1f, 0x7); dev <= PCI_DEV(0xff, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -32,7 +32,7 @@ static void dump_pci_device(unsigned dev)
int i; int i;
print_debug_pci_dev(dev); print_debug_pci_dev(dev);
for(i = 0; i < 256; i++) { for (i = 0; i < 256; i++) {
unsigned char val; unsigned char val;
if ((i & 0x0f) == 0) if ((i & 0x0f) == 0)
printk(BIOS_DEBUG, "\n%02x:",i); printk(BIOS_DEBUG, "\n%02x:",i);
@ -45,7 +45,7 @@ static void dump_pci_device(unsigned dev)
static inline void dump_pci_devices(void) static inline void dump_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0xff, 0x1f, 0x7); dev <= PCI_DEV(0xff, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -62,7 +62,7 @@ static inline void dump_pci_devices(void)
static inline void dump_pci_devices_on_bus(unsigned busn) static inline void dump_pci_devices_on_bus(unsigned busn)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(busn, 0, 0); for (dev = PCI_DEV(busn, 0, 0);
dev <= PCI_DEV(busn, 0x1f, 0x7); dev <= PCI_DEV(busn, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -80,13 +80,13 @@ static inline void dump_spd_registers(const struct mem_controller *ctrl)
{ {
int i; int i;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
unsigned device; unsigned device;
device = ctrl->channel0[i]; device = ctrl->channel0[i];
if (device) { if (device) {
int j; int j;
printk(BIOS_DEBUG, "dimm: %02x.0: %02x", i, device); printk(BIOS_DEBUG, "dimm: %02x.0: %02x", i, device);
for(j = 0; j < 128; j++) { for (j = 0; j < 128; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) if ((j & 0xf) == 0)
@ -104,7 +104,7 @@ static inline void dump_spd_registers(const struct mem_controller *ctrl)
if (device) { if (device) {
int j; int j;
printk(BIOS_DEBUG, "dimm: %02x.1: %02x", i, device); printk(BIOS_DEBUG, "dimm: %02x.1: %02x", i, device);
for(j = 0; j < 128; j++) { for (j = 0; j < 128; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) if ((j & 0xf) == 0)
@ -124,11 +124,11 @@ static inline void dump_smbus_registers(void)
{ {
unsigned device; unsigned device;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(device = 1; device < 0x80; device++) { for (device = 1; device < 0x80; device++) {
int j; int j;
if( smbus_read_byte(device, 0) < 0 ) continue; if ( smbus_read_byte(device, 0) < 0 ) continue;
printk(BIOS_DEBUG, "smbus: %02x", device); printk(BIOS_DEBUG, "smbus: %02x", device);
for(j = 0; j < 256; j++) { for (j = 0; j < 256; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
status = smbus_read_byte(device, j); status = smbus_read_byte(device, j);
@ -149,7 +149,7 @@ static inline void dump_io_resources(unsigned port)
int i; int i;
printk(BIOS_DEBUG, "%04x:\n", port); printk(BIOS_DEBUG, "%04x:\n", port);
for(i=0;i<256;i++) { for (i=0;i<256;i++) {
uint8_t val; uint8_t val;
if ((i & 0x0f) == 0) if ((i & 0x0f) == 0)
printk(BIOS_DEBUG, "%02x:", i); printk(BIOS_DEBUG, "%02x:", i);
@ -166,8 +166,8 @@ static inline void dump_mem(unsigned start, unsigned end)
{ {
unsigned i; unsigned i;
printk(BIOS_DEBUG, "dump_mem:"); printk(BIOS_DEBUG, "dump_mem:");
for(i=start;i<end;i++) { for (i=start;i<end;i++) {
if((i & 0xf)==0) if ((i & 0xf)==0)
printk(BIOS_DEBUG, "\n%08x:", i); printk(BIOS_DEBUG, "\n%08x:", i);
printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i)); printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i));
} }

View File

@ -10,7 +10,7 @@ static int bios_reset_detected(void) {
dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC); dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC);
if( (dword & DRC_DONE) != 0 ) { if ( (dword & DRC_DONE) != 0 ) {
return 1; return 1;
} }

View File

@ -22,7 +22,7 @@ void print_debug_pci_dev(unsigned dev)
void print_pci_devices(void) void print_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0xff, 0x1f, 0x7); dev <= PCI_DEV(0xff, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -42,7 +42,7 @@ void dump_pci_device(unsigned dev)
int i; int i;
print_debug_pci_dev(dev); print_debug_pci_dev(dev);
for(i = 0; i < 256; i++) { for (i = 0; i < 256; i++) {
unsigned char val; unsigned char val;
if ((i & 0x0f) == 0) if ((i & 0x0f) == 0)
printk(BIOS_DEBUG, "\n%02x:",i); printk(BIOS_DEBUG, "\n%02x:",i);
@ -55,7 +55,7 @@ void dump_pci_device(unsigned dev)
void dump_pci_devices(void) void dump_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0xff, 0x1f, 0x7); dev <= PCI_DEV(0xff, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -72,7 +72,7 @@ void dump_pci_devices(void)
void dump_pci_devices_on_bus(unsigned busn) void dump_pci_devices_on_bus(unsigned busn)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(busn, 0, 0); for (dev = PCI_DEV(busn, 0, 0);
dev <= PCI_DEV(busn, 0x1f, 0x7); dev <= PCI_DEV(busn, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -90,13 +90,13 @@ void dump_spd_registers(const struct mem_controller *ctrl)
{ {
int i; int i;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
unsigned device; unsigned device;
device = ctrl->channel0[i]; device = ctrl->channel0[i];
if (device) { if (device) {
int j; int j;
printk(BIOS_DEBUG, "dimm: %02x.0: %02x", i, device); printk(BIOS_DEBUG, "dimm: %02x.0: %02x", i, device);
for(j = 0; j < 128; j++) { for (j = 0; j < 128; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) if ((j & 0xf) == 0)
@ -114,7 +114,7 @@ void dump_spd_registers(const struct mem_controller *ctrl)
if (device) { if (device) {
int j; int j;
printk(BIOS_DEBUG, "dimm: %02x.1: %02x", i, device); printk(BIOS_DEBUG, "dimm: %02x.1: %02x", i, device);
for(j = 0; j < 128; j++) { for (j = 0; j < 128; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) if ((j & 0xf) == 0)
@ -134,11 +134,11 @@ void dump_smbus_registers(void)
{ {
unsigned device; unsigned device;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(device = 1; device < 0x80; device++) { for (device = 1; device < 0x80; device++) {
int j; int j;
if( spd_read_byte(device, 0) < 0 ) continue; if ( spd_read_byte(device, 0) < 0 ) continue;
printk(BIOS_DEBUG, "smbus: %02x", device); printk(BIOS_DEBUG, "smbus: %02x", device);
for(j = 0; j < 256; j++) { for (j = 0; j < 256; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
status = spd_read_byte(device, j); status = spd_read_byte(device, j);
@ -159,7 +159,7 @@ void dump_io_resources(unsigned port)
int i; int i;
printk(BIOS_DEBUG, "%04x:\n", port); printk(BIOS_DEBUG, "%04x:\n", port);
for(i=0;i<256;i++) { for (i=0;i<256;i++) {
uint8_t val; uint8_t val;
if ((i & 0x0f) == 0) if ((i & 0x0f) == 0)
printk(BIOS_DEBUG, "%02x:", i); printk(BIOS_DEBUG, "%02x:", i);
@ -176,8 +176,8 @@ void dump_mem(unsigned start, unsigned end)
{ {
unsigned i; unsigned i;
printk(BIOS_DEBUG, "dump_mem:"); printk(BIOS_DEBUG, "dump_mem:");
for(i=start;i<end;i++) { for (i=start;i<end;i++) {
if((i & 0xf)==0) if ((i & 0xf)==0)
printk(BIOS_DEBUG, "\n%08x:", i); printk(BIOS_DEBUG, "\n%08x:", i);
printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i)); printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i));
} }

View File

@ -1710,7 +1710,7 @@ static void sdram_enable(const struct mem_controller *ctrl)
/* And for good luck 6 more CBRs */ /* And for good luck 6 more CBRs */
RAM_DEBUG_MESSAGE("Ram Enable 8\n"); RAM_DEBUG_MESSAGE("Ram Enable 8\n");
int i; int i;
for(i=0; i<8; i++) for (i=0; i<8; i++)
do_ram_command(RAM_COMMAND_CBR, 0); do_ram_command(RAM_COMMAND_CBR, 0);
/* 9 mode register set */ /* 9 mode register set */

View File

@ -63,38 +63,38 @@ static void ConfigureDefaultUpdData(UPD_DATA_REGION *UpdData)
config = dev->chip_info; config = dev->chip_info;
/* Set SPD addresses */ /* Set SPD addresses */
if(config->SpdBaseAddress_0_0) { if (config->SpdBaseAddress_0_0) {
UpdData->PcdSpdBaseAddress_0_0 = config->SpdBaseAddress_0_0; UpdData->PcdSpdBaseAddress_0_0 = config->SpdBaseAddress_0_0;
} }
if(config->SpdBaseAddress_0_1) { if (config->SpdBaseAddress_0_1) {
UpdData->PcdSpdBaseAddress_0_1 = config->SpdBaseAddress_0_1; UpdData->PcdSpdBaseAddress_0_1 = config->SpdBaseAddress_0_1;
} }
if(config->SpdBaseAddress_1_0) { if (config->SpdBaseAddress_1_0) {
UpdData->PcdSpdBaseAddress_1_0 = config->SpdBaseAddress_1_0; UpdData->PcdSpdBaseAddress_1_0 = config->SpdBaseAddress_1_0;
} }
if(config->SpdBaseAddress_1_1) { if (config->SpdBaseAddress_1_1) {
UpdData->PcdSpdBaseAddress_1_1 = config->SpdBaseAddress_1_1; UpdData->PcdSpdBaseAddress_1_1 = config->SpdBaseAddress_1_1;
} }
if(config->EccSupport) { if (config->EccSupport) {
UpdData->PcdEccSupport = config->EccSupport; UpdData->PcdEccSupport = config->EccSupport;
} }
if(config->PrintDebugMessages) { if (config->PrintDebugMessages) {
UpdData->PcdPrintDebugMessages = config->PrintDebugMessages; UpdData->PcdPrintDebugMessages = config->PrintDebugMessages;
} }
if(config->Bifurcation) { if (config->Bifurcation) {
UpdData->PcdBifurcation = config->Bifurcation; UpdData->PcdBifurcation = config->Bifurcation;
} }
if(config->MemoryDown) { if (config->MemoryDown) {
UpdData->PcdMemoryDown = config->MemoryDown; UpdData->PcdMemoryDown = config->MemoryDown;
} }
UpdData->PcdMrcInitTsegSize = CONFIG_SMM_TSEG_SIZE >> 20; UpdData->PcdMrcInitTsegSize = CONFIG_SMM_TSEG_SIZE >> 20;
if(config->MrcRmtCpgcExpLoopCntValue) { if (config->MrcRmtCpgcExpLoopCntValue) {
UpdData->PcdMrcRmtCpgcExpLoopCntValue = UpdData->PcdMrcRmtCpgcExpLoopCntValue =
config->MrcRmtCpgcExpLoopCntValue; config->MrcRmtCpgcExpLoopCntValue;
} }
if(config->MrcRmtCpgcNumBursts) { if (config->MrcRmtCpgcNumBursts) {
UpdData->PcdMrcRmtCpgcNumBursts = config->MrcRmtCpgcNumBursts; UpdData->PcdMrcRmtCpgcNumBursts = config->MrcRmtCpgcNumBursts;
} }
#if IS_ENABLED(CONFIG_ENABLE_FSP_FAST_BOOT) #if IS_ENABLED(CONFIG_ENABLE_FSP_FAST_BOOT)

View File

@ -149,7 +149,7 @@ set_translation_table(int start, int end, u64 base, int inc)
{ {
int i; int i;
for(i = start; i < end; i++){ for (i = start; i < end; i++){
u64 physical_address = base + i*inc; u64 physical_address = base + i*inc;
/* swizzle the 32:39 bits to 4:11 */ /* swizzle the 32:39 bits to 4:11 */
u32 word = physical_address | ((physical_address >> 28) & 0xff0) | 1; u32 word = physical_address | ((physical_address >> 28) & 0xff0) | 1;

View File

@ -46,7 +46,7 @@ static void pci_domain_set_resources(device_t dev)
printk(BIOS_DEBUG, "PCI mem marker = %x\n", pci_tolm); printk(BIOS_DEBUG, "PCI mem marker = %x\n", pci_tolm);
#endif #endif
/* FIXME Me temporary hack */ /* FIXME Me temporary hack */
if(pci_tolm > 0xe0000000) if (pci_tolm > 0xe0000000)
pci_tolm = 0xe0000000; pci_tolm = 0xe0000000;
/* Ensure pci_tolm is 128M aligned */ /* Ensure pci_tolm is 128M aligned */
pci_tolm &= 0xf8000000; pci_tolm &= 0xf8000000;

View File

@ -35,7 +35,7 @@ static void pcie_init(struct device *dev)
/* Get the chip configuration */ /* Get the chip configuration */
config = dev->chip_info; config = dev->chip_info;
if(config->intrline) { if (config->intrline) {
pci_write_config32(dev, 0x3c, config->intrline); pci_write_config32(dev, 0x3c, config->intrline);
} }

View File

@ -36,7 +36,7 @@ static void pcie_init(struct device *dev)
/* Get the chip configuration */ /* Get the chip configuration */
config = dev->chip_info; config = dev->chip_info;
if(config->intrline) { if (config->intrline) {
pci_write_config32(dev, 0x3c, config->intrline); pci_write_config32(dev, 0x3c, config->intrline);
} }

View File

@ -63,7 +63,7 @@ static void sdram_set_registers(const struct mem_controller *ctrl)
int max; int max;
max = ARRAY_SIZE(register_values); max = ARRAY_SIZE(register_values);
for(i = 0; i < max; i += 3) { for (i = 0; i < max; i += 3) {
device_t dev; device_t dev;
u32 where; u32 where;
u32 reg; u32 reg;
@ -162,7 +162,7 @@ static long spd_set_ram_size(const struct mem_controller *ctrl, long dimm_mask)
int i; int i;
int cum; int cum;
for(i = cum = 0; i < DIMM_SOCKETS; i++) { for (i = cum = 0; i < DIMM_SOCKETS; i++) {
struct dimm_size sz; struct dimm_size sz;
if (dimm_mask & (1 << i)) { if (dimm_mask & (1 << i)) {
sz = spd_get_dimm_size(ctrl->channel0[i]); sz = spd_get_dimm_size(ctrl->channel0[i]);
@ -174,7 +174,7 @@ static long spd_set_ram_size(const struct mem_controller *ctrl, long dimm_mask)
cum += (1 << sz.side1); cum += (1 << sz.side1);
/* DRB = 0x60 */ /* DRB = 0x60 */
pci_write_config8(ctrl->f0, DRB + (i*2), cum); pci_write_config8(ctrl->f0, DRB + (i*2), cum);
if( sz.side2 > 28) { if ( sz.side2 > 28) {
sz.side2 -= 29; sz.side2 -= 29;
cum += (1 << sz.side2); cum += (1 << sz.side2);
} }
@ -189,7 +189,7 @@ static long spd_set_ram_size(const struct mem_controller *ctrl, long dimm_mask)
/* set TOM top of memory 0xcc */ /* set TOM top of memory 0xcc */
pci_write_config16(ctrl->f0, TOM, cum); pci_write_config16(ctrl->f0, TOM, cum);
/* set TOLM top of low memory */ /* set TOLM top of low memory */
if(cum > 0x18) { if (cum > 0x18) {
cum = 0x18; cum = 0x18;
} }
cum <<= 11; cum <<= 11;
@ -204,7 +204,7 @@ static u32 spd_detect_dimms(const struct mem_controller *ctrl)
u32 dimm_mask; u32 dimm_mask;
int i; int i;
dimm_mask = 0; dimm_mask = 0;
for(i = 0; i < DIMM_SOCKETS; i++) { for (i = 0; i < DIMM_SOCKETS; i++) {
int byte; int byte;
u16 device; u16 device;
device = ctrl->channel0[i]; device = ctrl->channel0[i];
@ -235,7 +235,7 @@ static int spd_set_row_attributes(const struct mem_controller *ctrl,
int cnt; int cnt;
dra = 0; dra = 0;
for(cnt=0; cnt < 4; cnt++) { for (cnt=0; cnt < 4; cnt++) {
if (!(dimm_mask & (1 << cnt))) { if (!(dimm_mask & (1 << cnt))) {
continue; continue;
} }
@ -260,7 +260,7 @@ static int spd_set_row_attributes(const struct mem_controller *ctrl,
if (value < 0) goto hw_err; if (value < 0) goto hw_err;
value = log2(value & 0xff); value = log2(value & 0xff);
reg += value; reg += value;
if(reg < 27) goto hw_err; if (reg < 27) goto hw_err;
reg -= 27; reg -= 27;
reg += (value << 2); reg += (value << 2);
@ -304,7 +304,7 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
drt = pci_read_config32(ctrl->f0, DRT); drt = pci_read_config32(ctrl->f0, DRT);
drt &= 3; /* save bits 1:0 */ drt &= 3; /* save bits 1:0 */
for(first_dimm = 0; first_dimm < 4; first_dimm++) { for (first_dimm = 0; first_dimm < 4; first_dimm++) {
if (dimm_mask & (1 << first_dimm)) if (dimm_mask & (1 << first_dimm))
break; break;
} }
@ -313,7 +313,7 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
drt |= (3<<18); /* Trasmax */ drt |= (3<<18); /* Trasmax */
for(cnt=0; cnt < 4; cnt++) { for (cnt=0; cnt < 4; cnt++) {
if (!(dimm_mask & (1 << cnt))) { if (!(dimm_mask & (1 << cnt))) {
continue; continue;
} }
@ -322,7 +322,7 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
latency = log2(reg) -2; latency = log2(reg) -2;
/* Loop through and find a fast clock with a low latency */ /* Loop through and find a fast clock with a low latency */
for(index = 0; index < 3; index++, latency++) { for (index = 0; index < 3; index++, latency++) {
if ((latency < 2) || (latency > 4) || if ((latency < 2) || (latency > 4) ||
(!(reg & (1 << latency)))) { (!(reg & (1 << latency)))) {
continue; continue;
@ -330,8 +330,8 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
value = spd_read_byte(ctrl->channel0[cnt], value = spd_read_byte(ctrl->channel0[cnt],
latency_indicies[index]); latency_indicies[index]);
if(value <= cycle_time[drc&3]) { if (value <= cycle_time[drc&3]) {
if( latency > cas_latency) { if ( latency > cas_latency) {
cas_latency = latency; cas_latency = latency;
} }
break; break;
@ -339,36 +339,36 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
} }
} }
index = (cas_latency-2); index = (cas_latency-2);
if((index)==0) cas_latency = 20; if ((index)==0) cas_latency = 20;
else if((index)==1) cas_latency = 25; else if ((index)==1) cas_latency = 25;
else cas_latency = 30; else cas_latency = 30;
for(cnt=0;cnt<4;cnt++) { for (cnt=0;cnt<4;cnt++) {
if (!(dimm_mask & (1 << cnt))) { if (!(dimm_mask & (1 << cnt))) {
continue; continue;
} }
reg = spd_read_byte(ctrl->channel0[cnt], 27)&0x0ff; reg = spd_read_byte(ctrl->channel0[cnt], 27)&0x0ff;
if(((index>>8)&0x0ff)<reg) { if (((index>>8)&0x0ff)<reg) {
index &= ~(0x0ff << 8); index &= ~(0x0ff << 8);
index |= (reg << 8); index |= (reg << 8);
} }
reg = spd_read_byte(ctrl->channel0[cnt], 28)&0x0ff; reg = spd_read_byte(ctrl->channel0[cnt], 28)&0x0ff;
if(((index>>16)&0x0ff)<reg) { if (((index>>16)&0x0ff)<reg) {
index &= ~(0x0ff << 16); index &= ~(0x0ff << 16);
index |= (reg<<16); index |= (reg<<16);
} }
reg = spd_read_byte(ctrl->channel0[cnt], 29)&0x0ff; reg = spd_read_byte(ctrl->channel0[cnt], 29)&0x0ff;
if(((index2>>0)&0x0ff)<reg) { if (((index2>>0)&0x0ff)<reg) {
index2 &= ~(0x0ff << 0); index2 &= ~(0x0ff << 0);
index2 |= (reg<<0); index2 |= (reg<<0);
} }
reg = spd_read_byte(ctrl->channel0[cnt], 41)&0x0ff; reg = spd_read_byte(ctrl->channel0[cnt], 41)&0x0ff;
if(((index2>>8)&0x0ff)<reg) { if (((index2>>8)&0x0ff)<reg) {
index2 &= ~(0x0ff << 8); index2 &= ~(0x0ff << 8);
index2 |= (reg<<8); index2 |= (reg<<8);
} }
reg = spd_read_byte(ctrl->channel0[cnt], 42)&0x0ff; reg = spd_read_byte(ctrl->channel0[cnt], 42)&0x0ff;
if(((index2>>16)&0x0ff)<reg) { if (((index2>>16)&0x0ff)<reg) {
index2 &= ~(0x0ff << 16); index2 &= ~(0x0ff << 16);
index2 |= (reg<<16); index2 |= (reg<<16);
} }
@ -376,22 +376,22 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
/* get dimm speed */ /* get dimm speed */
value = cycle_time[drc&3]; value = cycle_time[drc&3];
if(value <= 0x50) { /* 200 MHz */ if (value <= 0x50) { /* 200 MHz */
if((index&7) > 2) { if ((index&7) > 2) {
drt |= (2<<2); /* CAS latency 4 */ drt |= (2<<2); /* CAS latency 4 */
cas_latency = 40; cas_latency = 40;
} else { } else {
drt |= (1<<2); /* CAS latency 3 */ drt |= (1<<2); /* CAS latency 3 */
cas_latency = 30; cas_latency = 30;
} }
if((index&0x0ff00)<=0x03c00) { if ((index&0x0ff00)<=0x03c00) {
drt |= (1<<8); /* Trp RAS Precharg */ drt |= (1<<8); /* Trp RAS Precharg */
} else { } else {
drt |= (2<<8); /* Trp RAS Precharg */ drt |= (2<<8); /* Trp RAS Precharg */
} }
/* Trcd RAS to CAS delay */ /* Trcd RAS to CAS delay */
if((index2&0x0ff)<=0x03c) { if ((index2&0x0ff)<=0x03c) {
drt |= (0<<10); drt |= (0<<10);
} else { } else {
drt |= (1<<10); drt |= (1<<10);
@ -401,9 +401,9 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
drt |= (1<<12); drt |= (1<<12);
/* Trc TRS min */ /* Trc TRS min */
if((index2&0x0ff00)<=0x03700) if ((index2&0x0ff00)<=0x03700)
drt |= (0<<14); drt |= (0<<14);
else if((index2&0xff00)<=0x03c00) else if ((index2&0xff00)<=0x03c00)
drt |= (1<<14); drt |= (1<<14);
else else
drt |= (2<<14); /* spd 41 */ drt |= (2<<14); /* spd 41 */
@ -411,20 +411,20 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
drt |= (2<<16); /* Twr not defined for DDR docs say use 2 */ drt |= (2<<16); /* Twr not defined for DDR docs say use 2 */
/* Trrd Row Delay */ /* Trrd Row Delay */
if((index&0x0ff0000)<=0x0140000) { if ((index&0x0ff0000)<=0x0140000) {
drt |= (0<<20); drt |= (0<<20);
} else if((index&0x0ff0000)<=0x0280000) { } else if ((index&0x0ff0000)<=0x0280000) {
drt |= (1<<20); drt |= (1<<20);
} else if((index&0x0ff0000)<=0x03c0000) { } else if ((index&0x0ff0000)<=0x03c0000) {
drt |= (2<<20); drt |= (2<<20);
} else { } else {
drt |= (3<<20); drt |= (3<<20);
} }
/* Trfc Auto refresh cycle time */ /* Trfc Auto refresh cycle time */
if((index2&0x0ff0000)<=0x04b0000) { if ((index2&0x0ff0000)<=0x04b0000) {
drt |= (0<<22); drt |= (0<<22);
} else if((index2&0x0ff0000)<=0x0690000) { } else if ((index2&0x0ff0000)<=0x0690000) {
drt |= (1<<22); drt |= (1<<22);
} else { } else {
drt |= (2<<22); drt |= (2<<22);
@ -432,18 +432,18 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
/* Docs say use 55 for all 200MHz */ /* Docs say use 55 for all 200MHz */
drt |= (0x055<<24); drt |= (0x055<<24);
} }
else if(value <= 0x60) { /* 167 MHz */ else if (value <= 0x60) { /* 167 MHz */
/* according to new documentation CAS latency is 00 /* according to new documentation CAS latency is 00
* for bits 3:2 for all 167 MHz * for bits 3:2 for all 167 MHz
drt |= ((index&3)<<2); */ /* set CAS latency */ drt |= ((index&3)<<2); */ /* set CAS latency */
if((index&0x0ff00)<=0x03000) { if ((index&0x0ff00)<=0x03000) {
drt |= (1<<8); /* Trp RAS Precharg */ drt |= (1<<8); /* Trp RAS Precharg */
} else { } else {
drt |= (2<<8); /* Trp RAS Precharg */ drt |= (2<<8); /* Trp RAS Precharg */
} }
/* Trcd RAS to CAS delay */ /* Trcd RAS to CAS delay */
if((index2&0x0ff)<=0x030) { if ((index2&0x0ff)<=0x030) {
drt |= (0<<10); drt |= (0<<10);
} else { } else {
drt |= (1<<10); drt |= (1<<10);
@ -458,18 +458,18 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
drt |= (2<<16); /* Twr not defined for DDR docs say 2 */ drt |= (2<<16); /* Twr not defined for DDR docs say 2 */
/* Trrd Row Delay */ /* Trrd Row Delay */
if((index&0x0ff0000)<=0x0180000) { if ((index&0x0ff0000)<=0x0180000) {
drt |= (0<<20); drt |= (0<<20);
} else if((index&0x0ff0000)<=0x0300000) { } else if ((index&0x0ff0000)<=0x0300000) {
drt |= (1<<20); drt |= (1<<20);
} else { } else {
drt |= (2<<20); drt |= (2<<20);
} }
/* Trfc Auto refresh cycle time */ /* Trfc Auto refresh cycle time */
if((index2&0x0ff0000)<=0x0480000) { if ((index2&0x0ff0000)<=0x0480000) {
drt |= (0<<22); drt |= (0<<22);
} else if((index2&0x0ff0000)<=0x0780000) { } else if ((index2&0x0ff0000)<=0x0780000) {
drt |= (2<<22); drt |= (2<<22);
} else { } else {
drt |= (2<<22); drt |= (2<<22);
@ -477,16 +477,16 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
/* Docs state to use 99 for all 167 MHz */ /* Docs state to use 99 for all 167 MHz */
drt |= (0x099<<24); drt |= (0x099<<24);
} }
else if(value <= 0x75) { /* 133 MHz */ else if (value <= 0x75) { /* 133 MHz */
drt |= ((index&3)<<2); /* set CAS latency */ drt |= ((index&3)<<2); /* set CAS latency */
if((index&0x0ff00)<=0x03c00) { if ((index&0x0ff00)<=0x03c00) {
drt |= (1<<8); /* Trp RAS Precharg */ drt |= (1<<8); /* Trp RAS Precharg */
} else { } else {
drt |= (2<<8); /* Trp RAS Precharg */ drt |= (2<<8); /* Trp RAS Precharg */
} }
/* Trcd RAS to CAS delay */ /* Trcd RAS to CAS delay */
if((index2&0x0ff)<=0x03c) { if ((index2&0x0ff)<=0x03c) {
drt |= (0<<10); drt |= (0<<10);
} else { } else {
drt |= (1<<10); drt |= (1<<10);
@ -501,25 +501,25 @@ static int spd_set_drt_attributes(const struct mem_controller *ctrl,
drt |= (1<<16); /* Twr not defined for DDR docs say 1 */ drt |= (1<<16); /* Twr not defined for DDR docs say 1 */
/* Trrd Row Delay */ /* Trrd Row Delay */
if((index&0x0ff0000)<=0x01e0000) { if ((index&0x0ff0000)<=0x01e0000) {
drt |= (0<<20); drt |= (0<<20);
} else if((index&0x0ff0000)<=0x03c0000) { } else if ((index&0x0ff0000)<=0x03c0000) {
drt |= (1<<20); drt |= (1<<20);
} else { } else {
drt |= (2<<20); drt |= (2<<20);
} }
/* Trfc Auto refresh cycle time */ /* Trfc Auto refresh cycle time */
if((index2&0x0ff0000)<=0x04b0000) { if ((index2&0x0ff0000)<=0x04b0000) {
drt |= (0<<22); drt |= (0<<22);
} else if((index2&0x0ff0000)<=0x0780000) { } else if ((index2&0x0ff0000)<=0x0780000) {
drt |= (2<<22); drt |= (2<<22);
} else { } else {
drt |= (2<<22); drt |= (2<<22);
} }
/* Based on CAS latency */ /* Based on CAS latency */
if(index&7) if (index&7)
drt |= (0x099<<24); drt |= (0x099<<24);
else else
drt |= (0x055<<24); drt |= (0x055<<24);
@ -549,7 +549,7 @@ static int spd_set_dram_controller_mode(const struct mem_controller *ctrl,
/* 0x7c DRC */ /* 0x7c DRC */
drc = pci_read_config32(ctrl->f0, DRC); drc = pci_read_config32(ctrl->f0, DRC);
for(cnt=0; cnt < 4; cnt++) { for (cnt=0; cnt < 4; cnt++) {
if (!(dimm_mask & (1 << cnt))) { if (!(dimm_mask & (1 << cnt))) {
continue; continue;
} }
@ -616,7 +616,7 @@ static void do_delay(void)
{ {
int i; int i;
u8 b; u8 b;
for(i=0;i<16;i++) for (i=0;i<16;i++)
b=inb(0x80); b=inb(0x80);
} }
@ -637,18 +637,18 @@ static void set_on_dimm_termination_enable(const struct mem_controller *ctrl)
/* ODT enable */ /* ODT enable */
pci_write_config32(ctrl->f0, SDRC, 0x30000000); pci_write_config32(ctrl->f0, SDRC, 0x30000000);
/* Figure out which slots are Empty, Single, or Double sided */ /* Figure out which slots are Empty, Single, or Double sided */
for(i=0,t4=0,c2=0;i<8;i+=2) { for (i=0,t4=0,c2=0;i<8;i+=2) {
c1 = pci_read_config8(ctrl->f0, DRB+i); c1 = pci_read_config8(ctrl->f0, DRB+i);
if(c1 == c2) continue; if (c1 == c2) continue;
c2 = pci_read_config8(ctrl->f0, DRB+1+i); c2 = pci_read_config8(ctrl->f0, DRB+1+i);
if(c1 == c2) if (c1 == c2)
t4 |= (1 << (i*4)); t4 |= (1 << (i*4));
else else
t4 |= (2 << (i*4)); t4 |= (2 << (i*4));
} }
for(i=0;i<1;i++) { for (i=0;i<1;i++) {
if((t4&0x0f) == 1) { if ((t4&0x0f) == 1) {
if( ((t4>>8)&0x0f) == 0 ) { if ( ((t4>>8)&0x0f) == 0 ) {
data32 = 0x00000010; /* EEES */ data32 = 0x00000010; /* EEES */
break; break;
} }
@ -663,8 +663,8 @@ static void set_on_dimm_termination_enable(const struct mem_controller *ctrl)
data32 = 0x77bbddee; /* SSSS */ data32 = 0x77bbddee; /* SSSS */
break; break;
} }
if((t4&0x0f) == 2) { if ((t4&0x0f) == 2) {
if( ((t4>>8)&0x0f) == 0 ) { if ( ((t4>>8)&0x0f) == 0 ) {
data32 = 0x00003132; /* EEED */ data32 = 0x00003132; /* EEED */
break; break;
} }
@ -686,14 +686,14 @@ static void set_on_dimm_termination_enable(const struct mem_controller *ctrl)
pci_write_config32(ctrl->f0, DDR2ODTC, data32); pci_write_config32(ctrl->f0, DDR2ODTC, data32);
for(dimm=0;dimm<8;dimm+=2) { for (dimm=0;dimm<8;dimm+=2) {
write32(MCBAR+DCALADDR, 0x0b840001); write32(MCBAR+DCALADDR, 0x0b840001);
write32(MCBAR+DCALCSR, 0x81000003 | (dimm << 20)); write32(MCBAR+DCALCSR, 0x81000003 | (dimm << 20));
for(i=0;i<1001;i++) { for (i=0;i<1001;i++) {
data32 = read32(MCBAR+DCALCSR); data32 = read32(MCBAR+DCALCSR);
if(!(data32 & (1<<31))) if (!(data32 & (1<<31)))
break; break;
} }
} }
@ -717,18 +717,18 @@ static void set_receive_enable(const struct mem_controller *ctrl)
u32 work32h; u32 work32h;
u32 data32r; u32 data32r;
int32_t recen; int32_t recen;
for(dimm=0;dimm<8;dimm+=1) { for (dimm=0;dimm<8;dimm+=1) {
if(!(dimm&1)) { if (!(dimm&1)) {
write32(MCBAR+DCALDATA+(17*4), 0x04020000); write32(MCBAR+DCALDATA+(17*4), 0x04020000);
write32(MCBAR+DCALCSR, 0x81800004 | (dimm << 20)); write32(MCBAR+DCALCSR, 0x81800004 | (dimm << 20));
for(i=0;i<1001;i++) { for (i=0;i<1001;i++) {
data32 = read32(MCBAR+DCALCSR); data32 = read32(MCBAR+DCALCSR);
if(!(data32 & (1<<31))) if (!(data32 & (1<<31)))
break; break;
} }
if(i>=1000) if (i>=1000)
continue; continue;
dcal_data32_0 = read32(MCBAR+DCALDATA + 0); dcal_data32_0 = read32(MCBAR+DCALDATA + 0);
@ -744,56 +744,56 @@ static void set_receive_enable(const struct mem_controller *ctrl)
} }
/* check if bank is installed */ /* check if bank is installed */
if((dcal_data32_0 == 0) && (dcal_data32_2 == 0)) if ((dcal_data32_0 == 0) && (dcal_data32_2 == 0))
continue; continue;
/* Calculate the timing value */ /* Calculate the timing value */
{ {
u32 bit; u32 bit;
for(i=0,edge=0,bit=63,cnt=31,data32r=0, for (i=0,edge=0,bit=63,cnt=31,data32r=0,
work32l=dcal_data32_1,work32h=dcal_data32_3; work32l=dcal_data32_1,work32h=dcal_data32_3;
(i<4) && bit; i++) { (i<4) && bit; i++) {
for(;;bit--,cnt--) { for (;;bit--,cnt--) {
if(work32l & (1<<cnt)) if (work32l & (1<<cnt))
break; break;
if(!cnt) { if (!cnt) {
work32l = dcal_data32_0; work32l = dcal_data32_0;
work32h = dcal_data32_2; work32h = dcal_data32_2;
cnt = 32; cnt = 32;
} }
if(!bit) break; if (!bit) break;
} }
for(;;bit--,cnt--) { for (;;bit--,cnt--) {
if(!(work32l & (1<<cnt))) if (!(work32l & (1<<cnt)))
break; break;
if(!cnt) { if (!cnt) {
work32l = dcal_data32_0; work32l = dcal_data32_0;
work32h = dcal_data32_2; work32h = dcal_data32_2;
cnt = 32; cnt = 32;
} }
if(!bit) break; if (!bit) break;
} }
if(!bit) { if (!bit) {
break; break;
} }
data32 = ((bit%8) << 1); data32 = ((bit%8) << 1);
if(work32h & (1<<cnt)) if (work32h & (1<<cnt))
data32 += 1; data32 += 1;
if(data32 < 4) { if (data32 < 4) {
if(!edge) { if (!edge) {
edge = 1; edge = 1;
} }
else { else {
if(edge != 1) { if (edge != 1) {
data32 = 0x0f; data32 = 0x0f;
} }
} }
} }
if(data32 > 12) { if (data32 > 12) {
if(!edge) { if (!edge) {
edge = 2; edge = 2;
} }
else { else {
if(edge != 2) { if (edge != 2) {
data32 = 0x00; data32 = 0x00;
} }
} }
@ -806,43 +806,43 @@ static void set_receive_enable(const struct mem_controller *ctrl)
recen = data32r; recen = data32r;
recen += 3; recen += 3;
recen = recen>>2; recen = recen>>2;
for(cnt=5;cnt<24;) { for (cnt=5;cnt<24;) {
for(;;cnt++) for (;;cnt++)
if(!(work32l & (1<<cnt))) if (!(work32l & (1<<cnt)))
break; break;
for(;;cnt++) { for (;;cnt++) {
if(work32l & (1<<cnt)) if (work32l & (1<<cnt))
break; break;
} }
data32 = (((cnt-1)%8)<<1); data32 = (((cnt-1)%8)<<1);
if(work32h & (1<<(cnt-1))) { if (work32h & (1<<(cnt-1))) {
data32++; data32++;
} }
/* test for frame edge cross overs */ /* test for frame edge cross overs */
if((edge == 1) && (data32 > 12) && if ((edge == 1) && (data32 > 12) &&
(((recen+16)-data32) < 3)) { (((recen+16)-data32) < 3)) {
data32 = 0; data32 = 0;
cnt += 2; cnt += 2;
} }
if((edge == 2) && (data32 < 4) && if ((edge == 2) && (data32 < 4) &&
((recen - data32) > 12)) { ((recen - data32) > 12)) {
data32 = 0x0f; data32 = 0x0f;
cnt -= 2; cnt -= 2;
} }
if(((recen+3) >= data32) && ((recen-3) <= data32)) if (((recen+3) >= data32) && ((recen-3) <= data32))
break; break;
} }
cnt--; cnt--;
cnt /= 8; cnt /= 8;
cnt--; cnt--;
if(recen&1) if (recen&1)
recen+=2; recen+=2;
recen >>= 1; recen >>= 1;
recen += (cnt*8); recen += (cnt*8);
recen+=2; /* this is not in the spec, but matches recen+=2; /* this is not in the spec, but matches
the factory output, and has less failure */ the factory output, and has less failure */
recen <<= (dimm/2) * 8; recen <<= (dimm/2) * 8;
if(!(dimm&1)) { if (!(dimm&1)) {
recena |= recen; recena |= recen;
} }
else { else {
@ -851,58 +851,58 @@ static void set_receive_enable(const struct mem_controller *ctrl)
} }
} }
/* Check for Eratta problem */ /* Check for Eratta problem */
for(i=cnt=0;i<32;i+=8) { for (i=cnt=0;i<32;i+=8) {
if (((recena>>i)&0x0f)>7) { if (((recena>>i)&0x0f)>7) {
cnt+= 0x101; cnt+= 0x101;
} }
else { else {
if((recena>>i)&0x0f) { if ((recena>>i)&0x0f) {
cnt++; cnt++;
} }
} }
} }
if(cnt&0x0f00) { if (cnt&0x0f00) {
cnt = (cnt&0x0f) - (cnt>>16); cnt = (cnt&0x0f) - (cnt>>16);
if(cnt>1) { if (cnt>1) {
for(i=0;i<32;i+=8) { for (i=0;i<32;i+=8) {
if(((recena>>i)&0x0f)>7) { if (((recena>>i)&0x0f)>7) {
recena &= ~(0x0f<<i); recena &= ~(0x0f<<i);
recena |= (7<<i); recena |= (7<<i);
} }
} }
} }
else { else {
for(i=0;i<32;i+=8) { for (i=0;i<32;i+=8) {
if(((recena>>i)&0x0f)<8) { if (((recena>>i)&0x0f)<8) {
recena &= ~(0x0f<<i); recena &= ~(0x0f<<i);
recena |= (8<<i); recena |= (8<<i);
} }
} }
} }
} }
for(i=cnt=0;i<32;i+=8) { for (i=cnt=0;i<32;i+=8) {
if (((recenb>>i)&0x0f)>7) { if (((recenb>>i)&0x0f)>7) {
cnt+= 0x101; cnt+= 0x101;
} }
else { else {
if((recenb>>i)&0x0f) { if ((recenb>>i)&0x0f) {
cnt++; cnt++;
} }
} }
} }
if(cnt & 0x0f00) { if (cnt & 0x0f00) {
cnt = (cnt&0x0f) - (cnt>>16); cnt = (cnt&0x0f) - (cnt>>16);
if(cnt>1) { if (cnt>1) {
for(i=0;i<32;i+=8) { for (i=0;i<32;i+=8) {
if(((recenb>>i)&0x0f)>7) { if (((recenb>>i)&0x0f)>7) {
recenb &= ~(0x0f<<i); recenb &= ~(0x0f<<i);
recenb |= (7<<i); recenb |= (7<<i);
} }
} }
} }
else { else {
for(i=0;i<32;i+=8) { for (i=0;i<32;i+=8) {
if(((recenb>>8)&0x0f)<8) { if (((recenb>>8)&0x0f)<8) {
recenb &= ~(0x0f<<i); recenb &= ~(0x0f<<i);
recenb |= (8<<i); recenb |= (8<<i);
} }
@ -978,7 +978,7 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
0x00410000 | CONFIG_DIMM_MAP_LOGICAL); 0x00410000 | CONFIG_DIMM_MAP_LOGICAL);
/* set dram type and Front Side Bus freq. */ /* set dram type and Front Side Bus freq. */
drc = spd_set_dram_controller_mode(ctrl, mask); drc = spd_set_dram_controller_mode(ctrl, mask);
if( drc == 0) { if ( drc == 0) {
die("Error calculating DRC\n"); die("Error calculating DRC\n");
} }
data32 = drc & ~(3 << 20); /* clear ECC mode */ data32 = drc & ~(3 << 20); /* clear ECC mode */
@ -986,7 +986,7 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
data32 = data32 | (1 << 5); /* temp turn off ODT */ data32 = data32 | (1 << 5); /* temp turn off ODT */
/* Set gearing, then dram controller mode */ /* Set gearing, then dram controller mode */
/* drc bits 3:2 = FSB speed */ /* drc bits 3:2 = FSB speed */
for(iptr = gearing[(drc>>2)&3].clkgr,cnt=0;cnt<4;cnt++) { for (iptr = gearing[(drc>>2)&3].clkgr,cnt=0;cnt<4;cnt++) {
pci_write_config32(ctrl->f0, 0xa0+(cnt*4), iptr[cnt]); pci_write_config32(ctrl->f0, 0xa0+(cnt*4), iptr[cnt]);
} }
/* 0x7c DRC */ /* 0x7c DRC */
@ -1011,7 +1011,7 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
/* program DRT timing values */ /* program DRT timing values */
cas_latency = spd_set_drt_attributes(ctrl, mask, drc); cas_latency = spd_set_drt_attributes(ctrl, mask, drc);
for(i=0;i<8;i+=2) { /* loop through each dimm to test */ for (i=0;i<8;i+=2) { /* loop through each dimm to test */
printk(BIOS_DEBUG, "DIMM %08x\n", i); printk(BIOS_DEBUG, "DIMM %08x\n", i);
/* Apply NOP */ /* Apply NOP */
do_delay(); do_delay();
@ -1020,115 +1020,115 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
write32(MCBAR+DCALCSR, (0x81000000 | (i<<20))); write32(MCBAR+DCALCSR, (0x81000000 | (i<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* Apply NOP */ /* Apply NOP */
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR + DCALCSR, (0x81000000 | (cs<<20))); write32(MCBAR + DCALCSR, (0x81000000 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* Precharg all banks */ /* Precharg all banks */
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALADDR, 0x04000000); write32(MCBAR+DCALADDR, 0x04000000);
write32(MCBAR+DCALCSR, (0x81000002 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000002 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* EMRS dll's enabled */ /* EMRS dll's enabled */
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
/* fixme hard code AL additive latency */ /* fixme hard code AL additive latency */
write32(MCBAR+DCALADDR, 0x0b940001); write32(MCBAR+DCALADDR, 0x0b940001);
write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* MRS reset dll's */ /* MRS reset dll's */
do_delay(); do_delay();
if(cas_latency == 30) if (cas_latency == 30)
mode_reg = 0x053a0000; mode_reg = 0x053a0000;
else else
mode_reg = 0x054a0000; mode_reg = 0x054a0000;
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALADDR, mode_reg); write32(MCBAR+DCALADDR, mode_reg);
write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* Precharg all banks */ /* Precharg all banks */
do_delay(); do_delay();
do_delay(); do_delay();
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALADDR, 0x04000000); write32(MCBAR+DCALADDR, 0x04000000);
write32(MCBAR+DCALCSR, (0x81000002 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000002 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* Do 2 refreshes */ /* Do 2 refreshes */
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
do_delay(); do_delay();
/* for good luck do 6 more */ /* for good luck do 6 more */
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
} }
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
} }
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
} }
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
} }
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
} }
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000001 | (cs<<20)));
} }
do_delay(); do_delay();
/* MRS reset dll's normal */ /* MRS reset dll's normal */
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALADDR, (mode_reg & ~(1<<24))); write32(MCBAR+DCALADDR, (mode_reg & ~(1<<24)));
write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* Do only if DDR2 EMRS dll's enabled */ /* Do only if DDR2 EMRS dll's enabled */
do_delay(); do_delay();
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALADDR, (0x0b940001)); write32(MCBAR+DCALADDR, (0x0b940001));
write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20))); write32(MCBAR+DCALCSR, (0x81000003 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
do_delay(); do_delay();
@ -1143,7 +1143,7 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
/* DQS */ /* DQS */
pci_write_config32(ctrl->f0, 0x94, 0x3904aa00); pci_write_config32(ctrl->f0, 0x94, 0x3904aa00);
for(i = 0, cntptr = (MCBAR+0x200); i < 24; i++, cnt+=4) { for (i = 0, cntptr = (MCBAR+0x200); i < 24; i++, cnt+=4) {
write32(cntptr, dqs_data[i]); write32(cntptr, dqs_data[i]);
} }
pci_write_config32(ctrl->f0, 0x94, 0x3900aa00); pci_write_config32(ctrl->f0, 0x94, 0x3900aa00);
@ -1156,14 +1156,14 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
/* clear memory and init ECC */ /* clear memory and init ECC */
printk(BIOS_DEBUG, "Clearing memory\n"); printk(BIOS_DEBUG, "Clearing memory\n");
for(i=0;i<64;i+=4) { for (i=0;i<64;i+=4) {
write32(MCBAR+DCALDATA+i, 0x00000000); write32(MCBAR+DCALDATA+i, 0x00000000);
} }
for(cs=0;cs<8;cs+=2) { for (cs=0;cs<8;cs+=2) {
write32(MCBAR+DCALCSR, (0x810831d8 | (cs<<20))); write32(MCBAR+DCALCSR, (0x810831d8 | (cs<<20)));
do data32 = read32(MCBAR+DCALCSR); do data32 = read32(MCBAR+DCALCSR);
while(data32 & 0x80000000); while (data32 & 0x80000000);
} }
/* Bring memory subsystem on line */ /* Bring memory subsystem on line */
@ -1172,9 +1172,9 @@ static void sdram_enable(int controllers, const struct mem_controller *ctrl)
pci_write_config32(ctrl->f0, 0x98, data32); pci_write_config32(ctrl->f0, 0x98, data32);
/* wait for completion */ /* wait for completion */
printk(BIOS_DEBUG, "Waiting for mem complete\n"); printk(BIOS_DEBUG, "Waiting for mem complete\n");
while(1) { while (1) {
data32 = pci_read_config32(ctrl->f0, 0x98); data32 = pci_read_config32(ctrl->f0, 0x98);
if( (data32 & (1<<31)) == 0) if ( (data32 & (1<<31)) == 0)
break; break;
} }
printk(BIOS_DEBUG, "Done\n"); printk(BIOS_DEBUG, "Done\n");

View File

@ -12,7 +12,7 @@ int bios_reset_detected(void)
dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC); dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC);
if( (dword & DRC_DONE) != 0 ) { if ( (dword & DRC_DONE) != 0 ) {
return 1; return 1;
} }

View File

@ -10,13 +10,13 @@ void dump_spd_registers(void)
{ {
int i; int i;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(i = 0; i < DIMM_SOCKETS; i++) { for (i = 0; i < DIMM_SOCKETS; i++) {
unsigned device; unsigned device;
device = DIMM0 + i; device = DIMM0 + i;
if (device) { if (device) {
int j; int j;
printk(BIOS_DEBUG, "DIMM %d: %02x", i, device); printk(BIOS_DEBUG, "DIMM %d: %02x", i, device);
for(j = 0; j < 256; j++) { for (j = 0; j < 256; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) { if ((j & 0xf) == 0) {

View File

@ -697,12 +697,12 @@ static struct dimm_size spd_get_dimm_size(unsigned int device)
/* It is possible to partially use larger then supported /* It is possible to partially use larger then supported
* modules by setting them to a supported size. * modules by setting them to a supported size.
*/ */
if(sz.side1 > 128) { if (sz.side1 > 128) {
PRINT_DEBUG("Side1 was %dMB but only 128MB will be used.\n", PRINT_DEBUG("Side1 was %dMB but only 128MB will be used.\n",
sz.side1); sz.side1);
sz.side1 = 128; sz.side1 = 128;
if(sz.side2 > 128) { if (sz.side2 > 128) {
PRINT_DEBUG("Side2 was %dMB but only 128MB will be used.\n", PRINT_DEBUG("Side2 was %dMB but only 128MB will be used.\n",
sz.side2); sz.side2);
sz.side2 = 128; sz.side2 = 128;

View File

@ -36,7 +36,7 @@ static int i5000_for_each_channel(struct i5000_fbd_branch *branch,
struct i5000_fbd_channel *c; struct i5000_fbd_channel *c;
int ret; int ret;
for(c = branch->channel; c < branch->channel + I5000_MAX_CHANNEL; c++) for (c = branch->channel; c < branch->channel + I5000_MAX_CHANNEL; c++)
if (c->used && (ret = cb(c))) if (c->used && (ret = cb(c)))
return ret; return ret;
return 0; return 0;
@ -48,7 +48,7 @@ static int i5000_for_each_branch(struct i5000_fbd_setup *setup,
struct i5000_fbd_branch *b; struct i5000_fbd_branch *b;
int ret; int ret;
for(b = setup->branch; b < setup->branch + I5000_MAX_BRANCH; b++) for (b = setup->branch; b < setup->branch + I5000_MAX_BRANCH; b++)
if (b->used && (ret = cb(b))) if (b->used && (ret = cb(b)))
return ret; return ret;
return 0; return 0;
@ -60,7 +60,7 @@ static int i5000_for_each_dimm(struct i5000_fbd_setup *setup,
struct i5000_fbdimm *d; struct i5000_fbdimm *d;
int ret, i; int ret, i;
for(i = 0; i < I5000_MAX_DIMMS; i++) { for (i = 0; i < I5000_MAX_DIMMS; i++) {
d = setup->dimms[i]; d = setup->dimms[i];
if ((ret = cb(d))) { if ((ret = cb(d))) {
return ret; return ret;
@ -75,7 +75,7 @@ static int i5000_for_each_dimm_present(struct i5000_fbd_setup *setup,
struct i5000_fbdimm *d; struct i5000_fbdimm *d;
int ret, i; int ret, i;
for(i = 0; i < I5000_MAX_DIMMS; i++) { for (i = 0; i < I5000_MAX_DIMMS; i++) {
d = setup->dimms[i]; d = setup->dimms[i];
if (d->present && (ret = cb(d))) if (d->present && (ret = cb(d)))
return ret; return ret;
@ -91,12 +91,12 @@ static int spd_read_byte(struct i5000_fbdimm *d, u8 addr, int count, u8 *out)
int cmdreg = d->channel->num ? I5000_SPDCMD1 : I5000_SPDCMD0; int cmdreg = d->channel->num ? I5000_SPDCMD1 : I5000_SPDCMD0;
int stsreg = d->channel->num ? I5000_SPD1 : I5000_SPD0; int stsreg = d->channel->num ? I5000_SPD1 : I5000_SPD0;
while(count-- > 0) { while (count-- > 0) {
pci_write_config32(dev, cmdreg, 0xa8000000 | \ pci_write_config32(dev, cmdreg, 0xa8000000 | \
(d->num & 0x03) << 24 | addr++ << 16); (d->num & 0x03) << 24 | addr++ << 16);
int timeout = 1000; int timeout = 1000;
while((status = pci_read_config16(dev, stsreg)) & I5000_SPD_BUSY && timeout--) while ((status = pci_read_config16(dev, stsreg)) & I5000_SPD_BUSY && timeout--)
udelay(10); udelay(10);
if (status & I5000_SPD_SBE || !timeout) if (status & I5000_SPD_SBE || !timeout)
@ -345,7 +345,7 @@ static int i5000_amb_smbus_write(struct i5000_fbdimm *d, int byte1, int byte2)
pci_write_config32(dev, cmdreg, 0xb8000000 | ((d->num & 0x03) << 24) | pci_write_config32(dev, cmdreg, 0xb8000000 | ((d->num & 0x03) << 24) |
(byte1 << 16) | (byte2 << 8) | 1); (byte1 << 16) | (byte2 << 8) | 1);
while(((status = pci_read_config16(dev, stsreg)) & I5000_SPD_BUSY) && timeout--) while (((status = pci_read_config16(dev, stsreg)) & I5000_SPD_BUSY) && timeout--)
udelay(10); udelay(10);
if (status & I5000_SPD_WOD && timeout) if (status & I5000_SPD_WOD && timeout)
@ -353,7 +353,7 @@ static int i5000_amb_smbus_write(struct i5000_fbdimm *d, int byte1, int byte2)
printk(BIOS_ERR, "SMBus write failed: %d/%d/%d, byte1 %02x, byte2 %02x status %04x\n", printk(BIOS_ERR, "SMBus write failed: %d/%d/%d, byte1 %02x, byte2 %02x status %04x\n",
d->branch->num, d->channel->num, d->num, byte1, byte2, status); d->branch->num, d->channel->num, d->num, byte1, byte2, status);
for(;;); for (;;);
return -1; return -1;
} }
@ -368,7 +368,7 @@ static int i5000_amb_smbus_read(struct i5000_fbdimm *d, int byte1, u8 *out)
pci_write_config32(dev, cmdreg, 0xb8000000 | ((d->num & 0x03) << 24) | pci_write_config32(dev, cmdreg, 0xb8000000 | ((d->num & 0x03) << 24) |
(byte1 << 16)); (byte1 << 16));
while(((status = pci_read_config16(dev, stsreg)) & I5000_SPD_BUSY) && timeout--) while (((status = pci_read_config16(dev, stsreg)) & I5000_SPD_BUSY) && timeout--)
udelay(10); udelay(10);
if ((status & I5000_SPD_RDO) && timeout) if ((status & I5000_SPD_RDO) && timeout)
@ -494,7 +494,7 @@ static int ddr_command(struct i5000_fbdimm *d, int rank, u32 addr, u32 command)
i5000_amb_write_config32(d, 4, AMB_DCALCSR, command); i5000_amb_write_config32(d, 4, AMB_DCALCSR, command);
udelay(1000); udelay(1000);
while((status = (i5000_amb_read_config32(d, 4, AMB_DCALCSR))) while ((status = (i5000_amb_read_config32(d, 4, AMB_DCALCSR)))
& (1 << 31)); & (1 << 31));
if (status & (1 << 30)) { if (status & (1 << 30)) {
@ -512,10 +512,10 @@ static int i5000_ddr_calibration(struct i5000_fbdimm *d)
i5000_amb_write_config32(d, 3, AMB_MBADDR, 0); i5000_amb_write_config32(d, 3, AMB_MBADDR, 0);
i5000_amb_write_config32(d, 3, AMB_MBCSR, 0x80100050); i5000_amb_write_config32(d, 3, AMB_MBCSR, 0x80100050);
while((status = i5000_amb_read_config32(d, 3, AMB_MBCSR)) & (1 << 31)); while ((status = i5000_amb_read_config32(d, 3, AMB_MBCSR)) & (1 << 31));
i5000_amb_write_config32(d, 3, AMB_MBCSR, 0x80200050); i5000_amb_write_config32(d, 3, AMB_MBCSR, 0x80200050);
while((status = i5000_amb_read_config32(d, 3, AMB_MBCSR)) & (1 << 31)); while ((status = i5000_amb_read_config32(d, 3, AMB_MBCSR)) & (1 << 31));
if (ddr_command(d, d->ranks == 2 ? 3 : 1, 0, AMB_DCALCSR_OPCODE_RECV_ENABLE_CAL) || if (ddr_command(d, d->ranks == 2 ? 3 : 1, 0, AMB_DCALCSR_OPCODE_RECV_ENABLE_CAL) ||
ddr_command(d, d->ranks == 2 ? 3 : 1, 0, AMB_DCALCSR_OPCODE_DQS_DELAY_CAL)) ddr_command(d, d->ranks == 2 ? 3 : 1, 0, AMB_DCALCSR_OPCODE_DQS_DELAY_CAL))
@ -530,7 +530,7 @@ static int i5000_ddr_init(struct i5000_fbdimm *d)
u32 val; u32 val;
u8 odt; u8 odt;
for(rank = 0; rank < d->ranks; rank++) { for (rank = 0; rank < d->ranks; rank++) {
printk(BIOS_DEBUG, "%s: %d/%d/%d rank %d\n", __func__, printk(BIOS_DEBUG, "%s: %d/%d/%d rank %d\n", __func__,
d->branch->num, d->channel->num, d->num, rank); d->branch->num, d->channel->num, d->num, rank);
@ -666,7 +666,7 @@ static void i5000_fbd_next_state(struct i5000_fbd_branch *b, int state)
printk(BIOS_DEBUG, "waiting for new state..."); printk(BIOS_DEBUG, "waiting for new state...");
while(pci_read_config8(dev, I5000_FBDST) != state && timeout--) while (pci_read_config8(dev, I5000_FBDST) != state && timeout--)
udelay(10); udelay(10);
if (timeout) { if (timeout) {
@ -685,7 +685,7 @@ static int i5000_wait_pattern_recognized(struct i5000_fbd_channel *c)
c->num ? I5000_FBDISTS1 : I5000_FBDISTS0); c->num ? I5000_FBDISTS1 : I5000_FBDISTS0);
printk(BIOS_DEBUG, " waiting for pattern recognition..."); printk(BIOS_DEBUG, " waiting for pattern recognition...");
while(pci_read_config16(dev, 0) != 0x1fff && --i > 0) while (pci_read_config16(dev, 0) != 0x1fff && --i > 0)
udelay(5000); udelay(5000);
printk(BIOS_DEBUG, i ? "done\n" : "failed\n"); printk(BIOS_DEBUG, i ? "done\n" : "failed\n");
@ -723,7 +723,7 @@ static int i5000_set_ambpresent(struct i5000_fbd_channel *c)
device_t branchdev = c->branch->branchdev; device_t branchdev = c->branch->branchdev;
u16 ambpresent = 0x8000; u16 ambpresent = 0x8000;
for(i = 0; i < I5000_MAX_DIMM_PER_CHANNEL; i++) { for (i = 0; i < I5000_MAX_DIMM_PER_CHANNEL; i++) {
if (c->dimm[i].present) if (c->dimm[i].present)
ambpresent |= (1 << i); ambpresent |= (1 << i);
} }
@ -772,7 +772,7 @@ static int i5000_drive_test_patterns(struct i5000_fbd_channel *c, int highest_am
if (i5000_drive_pattern(c, I5000_FBDICMD_TS2 | highest_amb, 1)) if (i5000_drive_pattern(c, I5000_FBDICMD_TS2 | highest_amb, 1))
return -1; return -1;
for(i = 0; i < highest_amb; i++) { for (i = 0; i < highest_amb; i++) {
if ((i5000_drive_pattern(c, I5000_FBDICMD_TS2_NOMERGE | i, 1))) if ((i5000_drive_pattern(c, I5000_FBDICMD_TS2_NOMERGE | i, 1)))
return -1; return -1;
} }
@ -807,7 +807,7 @@ static int i5000_train_channel_idle(struct i5000_fbd_channel *c)
pci_write_config8(c->branch->branchdev, pci_write_config8(c->branch->branchdev,
c->num ? I5000_FBDSBTXCFG1 : I5000_FBDSBTXCFG0, 0x05); c->num ? I5000_FBDSBTXCFG1 : I5000_FBDSBTXCFG0, 0x05);
for(i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
if (c->dimm[i].present) if (c->dimm[i].present)
i5000_amb_smbus_write_config32(c->dimm + i, 1, AMB_FBDSBCFGNXT, i ? (fbdsbcfg | 0x1000) : fbdsbcfg); i5000_amb_smbus_write_config32(c->dimm + i, 1, AMB_FBDSBCFGNXT, i ? (fbdsbcfg | 0x1000) : fbdsbcfg);
} }
@ -1040,7 +1040,7 @@ static int i5000_do_amb_membist_status(struct i5000_fbdimm *d, int rank)
int cnt = 1000; int cnt = 1000;
u32 res; u32 res;
while((res = i5000_amb_read_config32(d, 3, AMB_MBCSR)) & (1 << 31) && cnt--) while ((res = i5000_amb_read_config32(d, 3, AMB_MBCSR)) & (1 << 31) && cnt--)
udelay(1000); udelay(1000);
if (cnt && !(res & (1 << 30))) if (cnt && !(res & (1 << 30)))
@ -1153,7 +1153,7 @@ static int get_dmir(u8 *rankmap, int *_set, int limit)
{ {
int i, dmir = 0, set = 0; int i, dmir = 0, set = 0;
for(i = 7; set < limit && i >= 0; i--) { for (i = 7; set < limit && i >= 0; i--) {
if (!(*rankmap & (1 << i))) if (!(*rankmap & (1 << i)))
continue; continue;
@ -1194,7 +1194,7 @@ static int i5000_setup_dmir(struct i5000_fbd_branch *b)
if (!b->used) if (!b->used)
return 0; return 0;
for(i = 0; i < I5000_MAX_DIMM_PER_CHANNEL; i++) { for (i = 0; i < I5000_MAX_DIMM_PER_CHANNEL; i++) {
rankmap >>= 2; rankmap >>= 2;
d = b->channel[0].dimm + i; d = b->channel[0].dimm + i;
@ -1219,7 +1219,7 @@ static int i5000_setup_dmir(struct i5000_fbd_branch *b)
if (!b->setup->single_channel) if (!b->setup->single_channel)
ranksize <<= 1; ranksize <<= 1;
while(ranks) { while (ranks) {
if (ranks >= 4) if (ranks >= 4)
dmirval = get_dmir(&rankmap, &set, 4); dmirval = get_dmir(&rankmap, &set, 4);
@ -1240,7 +1240,7 @@ static int i5000_setup_dmir(struct i5000_fbd_branch *b)
dmir += 4; dmir += 4;
} }
for(; dmir <= I5000_DMIR4; dmir += 4) { for (; dmir <= I5000_DMIR4; dmir += 4) {
printk(BIOS_DEBUG, "DMIR%d: %08x\n", (dmir - I5000_DMIR0) >> 2, printk(BIOS_DEBUG, "DMIR%d: %08x\n", (dmir - I5000_DMIR0) >> 2,
dmirval); dmirval);
pci_write_config32(dev, dmir, dmirval); pci_write_config32(dev, dmir, dmirval);
@ -1366,19 +1366,19 @@ static void i5000_init_setup(struct i5000_fbd_setup *setup)
support it, it will decrease this setting in spd_read */ support it, it will decrease this setting in spd_read */
setup->ddr_speed = DDR_667MHZ; setup->ddr_speed = DDR_667MHZ;
for(branch = 0; branch < I5000_MAX_BRANCH; branch++) { for (branch = 0; branch < I5000_MAX_BRANCH; branch++) {
b = setup->branch + branch; b = setup->branch + branch;
b->branchdev = PCI_ADDR(0, branch ? 22 : 21, 0, 0); b->branchdev = PCI_ADDR(0, branch ? 22 : 21, 0, 0);
b->setup = setup; b->setup = setup;
b->num = branch; b->num = branch;
for(channel = 0; channel < I5000_MAX_CHANNEL; channel++) { for (channel = 0; channel < I5000_MAX_CHANNEL; channel++) {
c = b->channel + channel; c = b->channel + channel;
c->branch = b; c->branch = b;
c->setup = setup; c->setup = setup;
c->num = channel; c->num = channel;
for(dimm = 0; dimm < I5000_MAX_DIMM_PER_CHANNEL; dimm++) { for (dimm = 0; dimm < I5000_MAX_DIMM_PER_CHANNEL; dimm++) {
d = c->dimm + dimm; d = c->dimm + dimm;
setup->dimms[i++] = d; setup->dimms[i++] = d;
d->channel = c; d->channel = c;

View File

@ -10,13 +10,13 @@ void dump_spd_registers(void)
{ {
int i; int i;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(i = 0; i < DIMM_SOCKETS; i++) { for (i = 0; i < DIMM_SOCKETS; i++) {
unsigned device; unsigned device;
device = DIMM0 + i; device = DIMM0 + i;
if (device) { if (device) {
int j; int j;
printk(BIOS_DEBUG, "DIMM %d: %02x", i, device); printk(BIOS_DEBUG, "DIMM %d: %02x", i, device);
for(j = 0; j < 256; j++) { for (j = 0; j < 256; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) { if ((j & 0xf) == 0) {

View File

@ -25,7 +25,7 @@ static void print_debug_pci_dev(unsigned dev)
static inline void print_pci_devices(void) static inline void print_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0, 0x1f, 0x7); dev <= PCI_DEV(0, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -46,7 +46,7 @@ static void dump_pci_device(unsigned dev)
print_debug_pci_dev(dev); print_debug_pci_dev(dev);
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(i = 0; i <= 255; i++) { for (i = 0; i <= 255; i++) {
unsigned char val; unsigned char val;
if ((i & 0x0f) == 0) if ((i & 0x0f) == 0)
printk(BIOS_DEBUG, "%02x:", i); printk(BIOS_DEBUG, "%02x:", i);
@ -60,7 +60,7 @@ static void dump_pci_device(unsigned dev)
static inline void dump_pci_devices(void) static inline void dump_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0, 0x1f, 0x7); dev <= PCI_DEV(0, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -78,13 +78,13 @@ static inline void dump_spd_registers(void)
{ {
int i; int i;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
unsigned device; unsigned device;
device = DIMM0 + i; device = DIMM0 + i;
if (device) { if (device) {
int j; int j;
printk(BIOS_DEBUG, "dimm: %02x.0: %02x", i, device); printk(BIOS_DEBUG, "dimm: %02x.0: %02x", i, device);
for(j = 0; j < 256; j++) { for (j = 0; j < 256; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) if ((j & 0xf) == 0)
@ -106,12 +106,12 @@ static inline void dump_smbus_registers(void)
{ {
int i; int i;
printk(BIOS_DEBUG, "\n"); printk(BIOS_DEBUG, "\n");
for(i = 1; i < 0x80; i++) { for (i = 1; i < 0x80; i++) {
unsigned device; unsigned device;
device = i; device = i;
int j; int j;
printk(BIOS_DEBUG, "smbus: %02x", device); printk(BIOS_DEBUG, "smbus: %02x", device);
for(j = 0; j < 256; j++) { for (j = 0; j < 256; j++) {
int status; int status;
unsigned char byte; unsigned char byte;
if ((j & 0xf) == 0) if ((j & 0xf) == 0)

View File

@ -447,7 +447,7 @@ static void sdram_enable(void)
/* 8 CBR refreshes (Auto Refresh) */ /* 8 CBR refreshes (Auto Refresh) */
PRINTK_DEBUG(" 8 CBR refreshes\n"); PRINTK_DEBUG(" 8 CBR refreshes\n");
for(i = 0; i < 8; i++) { for (i = 0; i < 8; i++) {
do_ram_command(RAM_COMMAND_CBR, 0); do_ram_command(RAM_COMMAND_CBR, 0);
delay(); delay();
delay(); delay();

View File

@ -27,7 +27,7 @@ static int bios_reset_detected(void)
dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC); dword = pci_read_config32(PCI_DEV(0, 0, 0), MCH_DRC);
if( (dword & DRC_DONE) != 0 ) { if ( (dword & DRC_DONE) != 0 ) {
return 1; return 1;
} }

View File

@ -24,7 +24,7 @@
void print_pci_devices(void) void print_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0, 0x1f, 0x7); dev <= PCI_DEV(0, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -46,7 +46,7 @@ void dump_pci_device(unsigned dev)
printk(BIOS_DEBUG, "PCI: %02x:%02x.%02x\n", (dev >> 20) & 0xff, (dev >> 15) & 0x1f, (dev >> 12) & 7); printk(BIOS_DEBUG, "PCI: %02x:%02x.%02x\n", (dev >> 20) & 0xff, (dev >> 15) & 0x1f, (dev >> 12) & 7);
for(i = 0; i <= 255; i++) { for (i = 0; i <= 255; i++) {
unsigned char val; unsigned char val;
if ((i & 0x0f) == 0) { if ((i & 0x0f) == 0) {
printk(BIOS_DEBUG, "%02x:", i); printk(BIOS_DEBUG, "%02x:", i);
@ -62,7 +62,7 @@ void dump_pci_device(unsigned dev)
void dump_pci_devices(void) void dump_pci_devices(void)
{ {
device_t dev; device_t dev;
for(dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0, 0x1f, 0x7); dev <= PCI_DEV(0, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
uint32_t id; uint32_t id;
@ -80,12 +80,12 @@ void dump_spd_registers(void)
{ {
unsigned device; unsigned device;
device = DIMM0; device = DIMM0;
while(device <= DIMM3) { while (device <= DIMM3) {
int status = 0; int status = 0;
int i; int i;
printk(BIOS_DEBUG, "\ndimm %02x", device); printk(BIOS_DEBUG, "\ndimm %02x", device);
for(i = 0; (i < 256) ; i++) { for (i = 0; (i < 256) ; i++) {
if ((i % 16) == 0) { if ((i % 16) == 0) {
printk(BIOS_DEBUG, "\n%02x: ", i); printk(BIOS_DEBUG, "\n%02x: ", i);
} }
@ -105,8 +105,8 @@ void dump_mem(unsigned start, unsigned end)
{ {
unsigned i; unsigned i;
printk(BIOS_DEBUG, "dump_mem:"); printk(BIOS_DEBUG, "dump_mem:");
for(i=start;i<end;i++) { for (i=start;i<end;i++) {
if((i & 0xf)==0) { if ((i & 0xf)==0) {
printk(BIOS_DEBUG, "\n%08x:", i); printk(BIOS_DEBUG, "\n%08x:", i);
} }
printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i)); printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i));

View File

@ -469,7 +469,7 @@ static u8 sdram_possible_cas_latencies(struct sys_info * sysinfo)
SPD_ACCEPTABLE_CAS_LATENCIES); SPD_ACCEPTABLE_CAS_LATENCIES);
} }
if(!cas_mask) { if (!cas_mask) {
die("No DDR-II modules with accepted CAS latencies found.\n"); die("No DDR-II modules with accepted CAS latencies found.\n");
} }
@ -632,7 +632,7 @@ static void sdram_detect_smallest_tRAS(struct sys_info * sysinfo)
tRAS_cycles++; tRAS_cycles++;
} }
} }
if(tRAS_cycles > 0x18) { if (tRAS_cycles > 0x18) {
die("DDR-II Module does not support this frequency (tRAS error)\n"); die("DDR-II Module does not support this frequency (tRAS error)\n");
} }
@ -673,7 +673,7 @@ static void sdram_detect_smallest_tRP(struct sys_info * sysinfo)
} }
} }
if(tRP_cycles > 6) { if (tRP_cycles > 6) {
die("DDR-II Module does not support this frequency (tRP error)\n"); die("DDR-II Module does not support this frequency (tRP error)\n");
} }
@ -713,7 +713,7 @@ static void sdram_detect_smallest_tRCD(struct sys_info * sysinfo)
tRCD_cycles++; tRCD_cycles++;
} }
} }
if(tRCD_cycles > 6) { if (tRCD_cycles > 6) {
die("DDR-II Module does not support this frequency (tRCD error)\n"); die("DDR-II Module does not support this frequency (tRCD error)\n");
} }
@ -753,7 +753,7 @@ static void sdram_detect_smallest_tWR(struct sys_info * sysinfo)
tWR_cycles++; tWR_cycles++;
} }
} }
if(tWR_cycles > 5) { if (tWR_cycles > 5) {
die("DDR-II Module does not support this frequency (tWR error)\n"); die("DDR-II Module does not support this frequency (tWR error)\n");
} }
@ -1466,7 +1466,7 @@ static void sdram_detect_dimm_size(struct sys_info * sysinfo)
{ {
int i; int i;
for(i = 0; i < 2 * DIMM_SOCKETS; i++) { for (i = 0; i < 2 * DIMM_SOCKETS; i++) {
struct dimm_size sz; struct dimm_size sz;
sysinfo->banksize[i * 2] = 0; sysinfo->banksize[i * 2] = 0;
@ -1508,7 +1508,7 @@ static int sdram_program_row_boundaries(struct sys_info *sysinfo)
printk(BIOS_DEBUG, "Setting RAM size...\n"); printk(BIOS_DEBUG, "Setting RAM size...\n");
cum0 = 0; cum0 = 0;
for(i = 0; i < 2 * DIMM_SOCKETS; i++) { for (i = 0; i < 2 * DIMM_SOCKETS; i++) {
cum0 += sysinfo->banksize[i]; cum0 += sysinfo->banksize[i];
MCHBAR8(C0DRB0+i) = cum0; MCHBAR8(C0DRB0+i) = cum0;
} }
@ -1527,7 +1527,7 @@ static int sdram_program_row_boundaries(struct sys_info *sysinfo)
cum1 = 0; cum1 = 0;
#endif #endif
for(i = 0; i < 2 * DIMM_SOCKETS; i++) { for (i = 0; i < 2 * DIMM_SOCKETS; i++) {
cum1 += sysinfo->banksize[i + 4]; cum1 += sysinfo->banksize[i + 4];
MCHBAR8(C1DRB0+i) = cum1; MCHBAR8(C1DRB0+i) = cum1;
} }
@ -1562,7 +1562,7 @@ static int sdram_set_row_attributes(struct sys_info *sysinfo)
u16 dra0=0, dra1=0, dra = 0; u16 dra0=0, dra1=0, dra = 0;
printk(BIOS_DEBUG, "Setting row attributes...\n"); printk(BIOS_DEBUG, "Setting row attributes...\n");
for(i=0; i < 2 * DIMM_SOCKETS; i++) { for (i=0; i < 2 * DIMM_SOCKETS; i++) {
u16 device; u16 device;
u8 columnsrows; u8 columnsrows;
@ -1908,7 +1908,7 @@ static void sdram_set_channel_mode(struct sys_info *sysinfo)
reg32 = MCHBAR32(DCC); reg32 = MCHBAR32(DCC);
reg32 &= ~(7 << 0); reg32 &= ~(7 << 0);
if(sysinfo->interleaved) { if (sysinfo->interleaved) {
/* Dual Channel Interleaved */ /* Dual Channel Interleaved */
printk(BIOS_DEBUG, "Dual Channel Interleaved.\n"); printk(BIOS_DEBUG, "Dual Channel Interleaved.\n");
reg32 |= (1 << 1); reg32 |= (1 << 1);

View File

@ -273,7 +273,7 @@ static int find_strobes_edge(int channel_offset, u8 * mediumcoarse, u8 * fine,
/** /**
* Here we use a trick. The RCVEN channel 0 registers are all at an * Here we use a trick. The RCVEN channel 0 registers are all at an
* offset of 0x80 to the channel 0 registers. We don't want to waste * offset of 0x80 to the channel 0 registers. We don't want to waste
* a lot of if()s so let's just pass 0 or 0x80 for the channel offset. * a lot of if ()s so let's just pass 0 or 0x80 for the channel offset.
*/ */
static int receive_enable_autoconfig(int channel_offset, static int receive_enable_autoconfig(int channel_offset,

View File

@ -521,7 +521,7 @@ static void sdram_detect_ram_speed(struct sysinfo *s)
} }
if (highcas < lowcas) { if (highcas < lowcas) {
// Timings not supported by MCH, lower the frequency // Timings not supported by MCH, lower the frequency
if(freq == MEM_CLOCK_800MHz) { if (freq == MEM_CLOCK_800MHz) {
freq--; freq--;
PRINTK_DEBUG("Run DDR clock speed reduced due to timings\n"); PRINTK_DEBUG("Run DDR clock speed reduced due to timings\n");
} else { } else {

View File

@ -278,7 +278,7 @@ static void fill_smbios17(ramctr_timing *ctrl)
memset(mem_info, 0, sizeof(*mem_info)); memset(mem_info, 0, sizeof(*mem_info));
FOR_ALL_CHANNELS for(slot = 0; slot < NUM_SLOTS; slot++) { FOR_ALL_CHANNELS for (slot = 0; slot < NUM_SLOTS; slot++) {
dimm = &mem_info->dimm[mem_info->dimm_cnt]; dimm = &mem_info->dimm[mem_info->dimm_cnt];
if (info->dimm[channel][slot].size_mb) { if (info->dimm[channel][slot].size_mb) {
dimm->ddr_type = MEMORY_TYPE_DDR3; dimm->ddr_type = MEMORY_TYPE_DDR3;

View File

@ -774,13 +774,13 @@ static void dll_ddr2(struct sysinfo *s)
if (!CHANNEL_IS_POPULATED(s->dimms, i)) { if (!CHANNEL_IS_POPULATED(s->dimms, i)) {
printk(BIOS_DEBUG, "No dimms in channel %d\n", i); printk(BIOS_DEBUG, "No dimms in channel %d\n", i);
reg8 = 0x3f; reg8 = 0x3f;
} else if(ONLY_DIMMA_IS_POPULATED(s->dimms, i)) { } else if (ONLY_DIMMA_IS_POPULATED(s->dimms, i)) {
printk(BIOS_DEBUG, "DimmA populated only in channel %d\n", i); printk(BIOS_DEBUG, "DimmA populated only in channel %d\n", i);
reg8 = 0x38; reg8 = 0x38;
} else if(ONLY_DIMMB_IS_POPULATED(s->dimms, i)) { } else if (ONLY_DIMMB_IS_POPULATED(s->dimms, i)) {
printk(BIOS_DEBUG, "DimmB populated only in channel %d\n", i); printk(BIOS_DEBUG, "DimmB populated only in channel %d\n", i);
reg8 = 0x7; reg8 = 0x7;
} else if(BOTH_DIMMS_ARE_POPULATED(s->dimms, i)) { } else if (BOTH_DIMMS_ARE_POPULATED(s->dimms, i)) {
printk(BIOS_DEBUG, "Both dimms populated in channel %d\n", i); printk(BIOS_DEBUG, "Both dimms populated in channel %d\n", i);
reg8 = 0; reg8 = 0;
} else { } else {
@ -960,7 +960,7 @@ 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;