* [PATCH] drm/radeon: initialize AFMT blocks on DCE6
@ 2013-07-31 16:51 Rafał Miłecki
0 siblings, 0 replies; only message in thread
From: Rafał Miłecki @ 2013-07-31 16:51 UTC (permalink / raw)
To: dri-devel, Dave Airlie
So far it was tested on HD7750 (DCE6) only. For DCE61 and DCE64 I
assumed that amount of AFMTs equals amount of display controllers.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
---
This patch depends on
[PATCH] drm/radeon: use loop for initializing AFMT blocks
---
drivers/gpu/drm/radeon/radeon_display.c | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/radeon/radeon_display.c b/drivers/gpu/drm/radeon/radeon_display.c
index 31d9fbe..885fce1 100644
--- a/drivers/gpu/drm/radeon/radeon_display.c
+++ b/drivers/gpu/drm/radeon/radeon_display.c
@@ -1267,9 +1267,19 @@ static void radeon_afmt_init(struct radeon_device *rdev)
};
int num_afmt;
- /* DCE4/5 has 6 audio blocks tied to DIG encoders */
- /* DCE4.1 has 2 audio blocks tied to DIG encoders */
- if (ASIC_IS_DCE5(rdev))
+ /*
+ * DCE64 and DCE61 are just guesses
+ * DCE6 was verified to have 6th AFMT using HD7750
+ * DCE4/5 has 6 audio blocks tied to DIG encoders
+ * DCE4.1 has 2 audio blocks tied to DIG encoders
+ */
+ if (ASIC_IS_DCE64(rdev))
+ num_afmt = 2;
+ else if (ASIC_IS_DCE61(rdev))
+ num_afmt = 4;
+ else if (ASIC_IS_DCE6(rdev))
+ num_afmt = 6;
+ else if (ASIC_IS_DCE5(rdev))
num_afmt = 6;
else if (ASIC_IS_DCE41(rdev))
num_afmt = 2;
--
1.7.10.4
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-07-31 16:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-31 16:51 [PATCH] drm/radeon: initialize AFMT blocks on DCE6 Rafał Miłecki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox