|
@@ -162,6 +162,16 @@ static void rs690_mc_init(struct radeon_device *rdev)
|
|
|
base = RREG32_MC(R_000100_MCCFG_FB_LOCATION);
|
|
|
base = G_000100_MC_FB_START(base) << 16;
|
|
|
rdev->mc.igp_sideport_enabled = radeon_atombios_sideport_present(rdev);
|
|
|
+ /* Some boards seem to be configured for 128MB of sideport memory,
|
|
|
+ * but really only have 64MB. Just skip the sideport and use
|
|
|
+ * UMA memory.
|
|
|
+ */
|
|
|
+ if (rdev->mc.igp_sideport_enabled &&
|
|
|
+ (rdev->mc.real_vram_size == (384 * 1024 * 1024))) {
|
|
|
+ base += 128 * 1024 * 1024;
|
|
|
+ rdev->mc.real_vram_size -= 128 * 1024 * 1024;
|
|
|
+ rdev->mc.mc_vram_size = rdev->mc.real_vram_size;
|
|
|
+ }
|
|
|
|
|
|
/* Use K8 direct mapping for fast fb access. */
|
|
|
rdev->fastfb_working = false;
|