diff options
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/butterfly/romstage.c | 3 | ||||
-rw-r--r-- | src/mainboard/google/link/romstage.c | 9 | ||||
-rw-r--r-- | src/mainboard/google/parrot/romstage.c | 3 | ||||
-rw-r--r-- | src/mainboard/google/stout/romstage.c | 3 |
4 files changed, 4 insertions, 14 deletions
diff --git a/src/mainboard/google/butterfly/romstage.c b/src/mainboard/google/butterfly/romstage.c index 50e037f74e..3ef4659a5a 100644 --- a/src/mainboard/google/butterfly/romstage.c +++ b/src/mainboard/google/butterfly/romstage.c @@ -53,7 +53,7 @@ void pch_enable_lpc(void) } -void rcba_config(void) +void mainboard_rcba_config(void) { u32 reg32; @@ -101,7 +101,6 @@ void rcba_config(void) /* Disable unused devices (board specific) */ reg32 = RCBA32(FD); - reg32 |= PCH_DISABLE_ALWAYS; /* Disable PCI bridge so MRC does not probe this bus */ reg32 |= PCH_DISABLE_P2P; RCBA32(FD) = reg32; diff --git a/src/mainboard/google/link/romstage.c b/src/mainboard/google/link/romstage.c index b628e7efe1..cbb7199b02 100644 --- a/src/mainboard/google/link/romstage.c +++ b/src/mainboard/google/link/romstage.c @@ -66,10 +66,8 @@ void pch_enable_lpc(void) pci_write_config32(PCH_LPC_DEV, LPC_GEN4_DEC, config->gen4_dec); } -void rcba_config(void) +void mainboard_rcba_config(void) { - u32 reg32; - /* * GFX INTA -> PIRQA (MSI) * D28IP_P3IP WLAN INTA -> PIRQB @@ -108,11 +106,6 @@ void rcba_config(void) RCBA16(OIC) = 0x0100; /* PCH BWG says to read back the IOAPIC enable register */ (void) RCBA16(OIC); - - /* Disable unused devices (board specific) */ - reg32 = RCBA32(FD); - reg32 |= PCH_DISABLE_ALWAYS; - RCBA32(FD) = reg32; } static uint8_t *locate_spd(void) diff --git a/src/mainboard/google/parrot/romstage.c b/src/mainboard/google/parrot/romstage.c index 2cfefdfbab..507107a0f0 100644 --- a/src/mainboard/google/parrot/romstage.c +++ b/src/mainboard/google/parrot/romstage.c @@ -51,7 +51,7 @@ void pch_enable_lpc(void) pci_write_config32(PCH_LPC_DEV, LPC_GEN2_DEC, (68 & ~3) | 0x00040001); } -void rcba_config(void) +void mainboard_rcba_config(void) { u32 reg32; @@ -100,7 +100,6 @@ void rcba_config(void) /* Disable unused devices (board specific) */ reg32 = RCBA32(FD); - reg32 |= PCH_DISABLE_ALWAYS; /* Disable PCI bridge so MRC does not probe this bus */ reg32 |= PCH_DISABLE_P2P; RCBA32(FD) = reg32; diff --git a/src/mainboard/google/stout/romstage.c b/src/mainboard/google/stout/romstage.c index 0710f02e3d..1b02163c9b 100644 --- a/src/mainboard/google/stout/romstage.c +++ b/src/mainboard/google/stout/romstage.c @@ -57,7 +57,7 @@ void pch_enable_lpc(void) pci_write_config32(PCH_LPC_DEV, LPC_GEN1_DEC, (0x68 | 0x40001)); } -void rcba_config(void) +void mainboard_rcba_config(void) { u32 reg32; @@ -106,7 +106,6 @@ void rcba_config(void) /* Disable unused devices (board specific) */ reg32 = RCBA32(FD); - reg32 |= PCH_DISABLE_ALWAYS; /* Disable PCI bridge so MRC does not probe this bus */ reg32 |= PCH_DISABLE_P2P; RCBA32(FD) = reg32; |