diff options
-rw-r--r-- | src/southbridge/amd/rs780/rs780_gfx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/amd/rs780/rs780_gfx.c b/src/southbridge/amd/rs780/rs780_gfx.c index c2a220cf19..18836675e0 100644 --- a/src/southbridge/amd/rs780/rs780_gfx.c +++ b/src/southbridge/amd/rs780/rs780_gfx.c @@ -361,9 +361,9 @@ static void internal_gfx_pci_dev_init(struct device *dev) /* Force allow LDT_STOP Cool'n'Quiet workaround. */ *(GpuF0MMReg + 0x655c/4) |= 1<<4; - // disable write combining, needed for stability
- // reference bios does this only for RS780 rev A11
- // need to figure out why we need it for all revs + // disable write combining, needed for stability + // reference bios does this only for RS780 rev A11 + // need to figure out why we need it for all revs *(GpuF0MMReg + 0x2000/4) = 0x00000010; *(GpuF0MMReg + 0x2408/4) = 1 << 9; *(GpuF0MMReg + 0x2000/4) = 0x00000011; |