sb/intel/lynxpoint: Relocate SATA clock gating write
Do it in the same place as Broadwell. Tested on out-of-tree Compal LA-A992P, SATA still works. Change-Id: I50bd951af52d03ad986dbf4bf70bdae348fa994b Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47034 Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
581fd082e2
commit
9ffb57c678
|
@ -565,8 +565,6 @@ static void enable_lp_clock_gating(struct device *dev)
|
|||
|
||||
RCBA32_OR(0x3434, 0x7); // LP LPC
|
||||
|
||||
RCBA32_AND_OR(0x333c, 0xffcfffff, 0x00c00000); // SATA
|
||||
|
||||
RCBA32_OR(0x38c0, 0x3c07); // SPI Dynamic
|
||||
|
||||
pch_iobp_update(0xCF000000, ~0, 0x00007001);
|
||||
|
|
|
@ -187,6 +187,7 @@ static void sata_init(struct device *dev)
|
|||
if (pch_is_lp()) {
|
||||
sir_write(dev, 0x54, 0xcf000f0f);
|
||||
sir_write(dev, 0x58, 0x00190000);
|
||||
RCBA32_AND_OR(0x333c, 0xffcfffff, 0x00c00000);
|
||||
}
|
||||
|
||||
reg32 = pci_read_config32(dev, 0x300);
|
||||
|
|
Loading…
Reference in New Issue