diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2013-12-11 11:43:58 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-09 15:24:21 -0500 |
commit | 9c74433b7ee48256b975d0e9b21d7617879d1729 (patch) | |
tree | 945bccdd7bd09816f971a64f7d24beb65497ae65 | |
parent | 0ecae1fe908d341454e1bd33fe4462d8ffad53b2 (diff) |
drm/radeon: add missing display tiling setup for oland
commit 227ae10f17a5f2fd1307b7e582b603ef7bbb7e97 upstream.
Fixes improperly set up display params for 2D tiling on
oland.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/gpu/drm/radeon/atombios_crtc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/atombios_crtc.c b/drivers/gpu/drm/radeon/atombios_crtc.c index 22f06c8d8e0b..5285a90e9f59 100644 --- a/drivers/gpu/drm/radeon/atombios_crtc.c +++ b/drivers/gpu/drm/radeon/atombios_crtc.c | |||
@@ -1176,7 +1176,9 @@ static int dce4_crtc_do_set_base(struct drm_crtc *crtc, | |||
1176 | if ((rdev->family == CHIP_TAHITI) || | 1176 | if ((rdev->family == CHIP_TAHITI) || |
1177 | (rdev->family == CHIP_PITCAIRN)) | 1177 | (rdev->family == CHIP_PITCAIRN)) |
1178 | fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P8_32x32_8x16); | 1178 | fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P8_32x32_8x16); |
1179 | else if (rdev->family == CHIP_VERDE) | 1179 | else if ((rdev->family == CHIP_VERDE) || |
1180 | (rdev->family == CHIP_OLAND) || | ||
1181 | (rdev->family == CHIP_HAINAN)) /* for completeness. HAINAN has no display hw */ | ||
1180 | fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P4_8x16); | 1182 | fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P4_8x16); |
1181 | 1183 | ||
1182 | switch (radeon_crtc->crtc_id) { | 1184 | switch (radeon_crtc->crtc_id) { |