Whitespace cleanup (trivial).
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3632 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
7f3d48c9af
commit
d61ada6555
|
@ -90,6 +90,7 @@ unsigned long acpi_create_madt_lapic_nmis(unsigned long current, u16 flags, u8 l
|
||||||
|
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long acpi_create_srat_lapics(unsigned long current)
|
unsigned long acpi_create_srat_lapics(unsigned long current)
|
||||||
{
|
{
|
||||||
device_t cpu;
|
device_t cpu;
|
||||||
|
@ -113,8 +114,6 @@ unsigned long acpi_create_srat_lapics(unsigned long current)
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static unsigned long resk(uint64_t value)
|
static unsigned long resk(uint64_t value)
|
||||||
{
|
{
|
||||||
unsigned long resultk;
|
unsigned long resultk;
|
||||||
|
@ -127,7 +126,6 @@ static unsigned long resk(uint64_t value)
|
||||||
return resultk;
|
return resultk;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
struct acpi_srat_mem_state {
|
struct acpi_srat_mem_state {
|
||||||
unsigned long current;
|
unsigned long current;
|
||||||
};
|
};
|
||||||
|
@ -167,14 +165,14 @@ unsigned long acpi_fill_srat(unsigned long current)
|
||||||
|
|
||||||
/* 0-640K must be on node 0 */
|
/* 0-640K must be on node 0 */
|
||||||
current += acpi_create_srat_mem((acpi_srat_mem_t *)current, 0, 0, 640, 1);//enable
|
current += acpi_create_srat_mem((acpi_srat_mem_t *)current, 0, 0, 640, 1);//enable
|
||||||
#if 1
|
|
||||||
srat_mem_state.current = current;
|
srat_mem_state.current = current;
|
||||||
search_global_resources(
|
search_global_resources(
|
||||||
IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
|
IORESOURCE_MEM | IORESOURCE_CACHEABLE, IORESOURCE_MEM | IORESOURCE_CACHEABLE,
|
||||||
set_srat_mem, &srat_mem_state);
|
set_srat_mem, &srat_mem_state);
|
||||||
|
|
||||||
current = srat_mem_state.current;
|
current = srat_mem_state.current;
|
||||||
#endif
|
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -286,7 +284,7 @@ void update_ssdt(void *ssdt)
|
||||||
PCIO = ssdt+0xaf; //+5 will be next PCIO
|
PCIO = ssdt+0xaf; //+5 will be next PCIO
|
||||||
SBLK = ssdt+0xdc; // one byte
|
SBLK = ssdt+0xdc; // one byte
|
||||||
TOM1 = ssdt+0xe3; //
|
TOM1 = ssdt+0xe3; //
|
||||||
SBDN = ssdt+0xed;//
|
SBDN = ssdt+0xed; //
|
||||||
HCLK = ssdt+0xfa; //+5 will be next HCLK
|
HCLK = ssdt+0xfa; //+5 will be next HCLK
|
||||||
HCDN = ssdt+0x12a; //+5 will be next HCDN
|
HCDN = ssdt+0x12a; //+5 will be next HCDN
|
||||||
CBST = ssdt+0x157; //
|
CBST = ssdt+0x157; //
|
||||||
|
|
|
@ -92,8 +92,8 @@ static void ht_collapse_previous_enumeration(uint8_t bus, unsigned offset_unitid
|
||||||
if((!offset_unitid) || (offset_unitid && (!((HT_CHAIN_END_UNITID_BASE == 0) && (HT_CHAIN_END_UNITID_BASE <HT_CHAIN_UNITID_BASE))))) {
|
if((!offset_unitid) || (offset_unitid && (!((HT_CHAIN_END_UNITID_BASE == 0) && (HT_CHAIN_END_UNITID_BASE <HT_CHAIN_UNITID_BASE))))) {
|
||||||
dev = PCI_DEV(bus, 0, 0);
|
dev = PCI_DEV(bus, 0, 0);
|
||||||
id = pci_read_config32(dev, PCI_VENDOR_ID);
|
id = pci_read_config32(dev, PCI_VENDOR_ID);
|
||||||
if ( ! ( (id == 0xffffffff) || (id == 0x00000000) ||
|
if (!((id == 0xffffffff) || (id == 0x00000000) ||
|
||||||
(id == 0x0000ffff) || (id == 0xffff0000) ) ) {
|
(id == 0x0000ffff) || (id == 0xffff0000))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -162,6 +162,7 @@ static uint16_t ht_read_freq_cap(device_t dev, uint8_t pos)
|
||||||
|
|
||||||
return freq_cap;
|
return freq_cap;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint8_t ht_read_width_cap(device_t dev, uint8_t pos)
|
static uint8_t ht_read_width_cap(device_t dev, uint8_t pos)
|
||||||
{
|
{
|
||||||
uint8_t width_cap = pci_read_config8(dev, pos);
|
uint8_t width_cap = pci_read_config8(dev, pos);
|
||||||
|
@ -180,6 +181,7 @@ static uint8_t ht_read_width_cap(device_t dev, uint8_t pos)
|
||||||
return width_cap;
|
return width_cap;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#define LINK_OFFS(CTRL, WIDTH,FREQ,FREQ_CAP) \
|
#define LINK_OFFS(CTRL, WIDTH,FREQ,FREQ_CAP) \
|
||||||
(((CTRL & 0xff) << 24) | ((WIDTH & 0xff) << 16) | ((FREQ & 0xff) << 8) | (FREQ_CAP & 0xFF))
|
(((CTRL & 0xff) << 24) | ((WIDTH & 0xff) << 16) | ((FREQ & 0xff) << 8) | (FREQ_CAP & 0xFF))
|
||||||
|
|
||||||
|
@ -280,6 +282,7 @@ static int ht_optimize_link(
|
||||||
|
|
||||||
return needs_reset;
|
return needs_reset;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if (USE_DCACHE_RAM == 1) && (K8_SCAN_PCI_BUS == 1)
|
#if (USE_DCACHE_RAM == 1) && (K8_SCAN_PCI_BUS == 1)
|
||||||
|
|
||||||
#if RAMINIT_SYSINFO == 1
|
#if RAMINIT_SYSINFO == 1
|
||||||
|
@ -461,7 +464,7 @@ static int ht_setup_chainx(device_t udev, uint8_t upos, uint8_t bus, unsigned of
|
||||||
id = pci_read_config32(dev, PCI_VENDOR_ID);
|
id = pci_read_config32(dev, PCI_VENDOR_ID);
|
||||||
|
|
||||||
/* If the chain is enumerated quit */
|
/* If the chain is enumerated quit */
|
||||||
if ( (id == 0xffffffff) || (id == 0x00000000) ||
|
if ((id == 0xffffffff) || (id == 0x00000000) ||
|
||||||
(id == 0x0000ffff) || (id == 0xffff0000))
|
(id == 0x0000ffff) || (id == 0xffff0000))
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue