Improve GPU memory controller setup on later chips
* Fix bug where we setup MC twice on Evergreen+ * Northern Island chipsets use the Evergreen MC setup (just cosmetic)
This commit is contained in:
parent
b07517d9ed
commit
021332df5d
@ -486,9 +486,11 @@ radeon_gpu_mc_setup()
|
||||
TRACE("%s: vramStart: 0x%" B_PRIX64 ", vramEnd: 0x%" B_PRIX64 "\n",
|
||||
__func__, gInfo->fb.vramStart, gInfo->fb.vramEnd);
|
||||
|
||||
if (info.chipsetID >= RADEON_CEDAR)
|
||||
if (info.chipsetID >= RADEON_CAYMAN)
|
||||
return radeon_gpu_mc_setup_evergreen(); // also for ni
|
||||
else if (info.chipsetID >= RADEON_CEDAR)
|
||||
return radeon_gpu_mc_setup_evergreen();
|
||||
if (info.chipsetID >= RADEON_RV770)
|
||||
else if (info.chipsetID >= RADEON_RV770)
|
||||
return radeon_gpu_mc_setup_r700();
|
||||
else if (info.chipsetID >= RADEON_R600)
|
||||
return radeon_gpu_mc_setup_r600();
|
||||
|
Loading…
Reference in New Issue
Block a user