We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e90ed0 commit daf54f1Copy full SHA for daf54f1
drivers/gpu/drm/radeon/rv770.c
@@ -575,6 +575,12 @@ static void rv770_program_channel_remap(struct radeon_device *rdev)
575
else
576
tcp_chan_steer = 0x00fac688;
577
578
+ /* RV770 CE has special chremap setup */
579
+ if (rdev->pdev->device == 0x944e) {
580
+ tcp_chan_steer = 0x00b08b08;
581
+ mc_shared_chremap = 0x00b08b08;
582
+ }
583
+
584
WREG32(TCP_CHAN_STEER, tcp_chan_steer);
585
WREG32(MC_SHARED_CHREMAP, mc_shared_chremap);
586
}
0 commit comments