All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] drm/radeon/kms: little audio stuff cleaning
@ 2010-02-26  8:44 Rafał Miłecki
  2010-02-26  8:44 ` [PATCH 1/3] Revert "drm/radeon/kms: disable HDMI audio for now on rv710/rv730" Rafał Miłecki
  2010-02-26  8:44 ` [PATCH] drm/radeon/kms: suspend and resume audio stuff Rafał Miłecki
  0 siblings, 2 replies; 4+ messages in thread
From: Rafał Miłecki @ 2010-02-26  8:44 UTC (permalink / raw)
  To: dri-devel, Dave Airlie

This patchset is drm-next based, tried to clean all our mistakes :)

Rafał Miłecki (3):
  Revert "drm/radeon/kms: disable HDMI audio for now on rv710/rv730"
  drm/radeon/kms: do not disable audio engine twice
  drm/radeon/kms: do not preset audio stuff and start timer when not
    using audio

 drivers/gpu/drm/radeon/r600_audio.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)


------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/3] Revert "drm/radeon/kms: disable HDMI audio for now on rv710/rv730"
  2010-02-26  8:44 [PATCH 0/3] drm/radeon/kms: little audio stuff cleaning Rafał Miłecki
@ 2010-02-26  8:44 ` Rafał Miłecki
  2010-02-26  8:44 ` [PATCH] drm/radeon/kms: suspend and resume audio stuff Rafał Miłecki
  1 sibling, 0 replies; 4+ messages in thread
From: Rafał Miłecki @ 2010-02-26  8:44 UTC (permalink / raw)
  To: dri-devel, Dave Airlie

This commit "disabled" audio on RV710 and RV740 only, leaving RV770 and RV730.
The order is: CHIP_RV770 < CHIP_RV730 < CHIP_RV710 < CHIP_RV740.

It is not needed anway, as we do not even try to enable audio on RV770 and
newer. We call initializing function in r600.c only, not in rv770.c.

If there is something causing green tinges, it's HDMI mode setting for encoder
and I will try to debug that.

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
---
 drivers/gpu/drm/radeon/r600_audio.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/gpu/drm/radeon/r600_audio.c b/drivers/gpu/drm/radeon/r600_audio.c
index 387abaa..a8366ce 100644
--- a/drivers/gpu/drm/radeon/r600_audio.c
+++ b/drivers/gpu/drm/radeon/r600_audio.c
@@ -35,7 +35,7 @@
  */
 static int r600_audio_chipset_supported(struct radeon_device *rdev)
 {
-	return (rdev->family >= CHIP_R600 && rdev->family < CHIP_RV710)
+	return rdev->family >= CHIP_R600
 		|| rdev->family == CHIP_RS600
 		|| rdev->family == CHIP_RS690
 		|| rdev->family == CHIP_RS740;
-- 
1.6.4.2


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] drm/radeon/kms: suspend and resume audio stuff
  2010-02-26  8:44 [PATCH 0/3] drm/radeon/kms: little audio stuff cleaning Rafał Miłecki
  2010-02-26  8:44 ` [PATCH 1/3] Revert "drm/radeon/kms: disable HDMI audio for now on rv710/rv730" Rafał Miłecki
@ 2010-02-26  8:44 ` Rafał Miłecki
  2010-02-26  8:47   ` Rafał Miłecki
  1 sibling, 1 reply; 4+ messages in thread
From: Rafał Miłecki @ 2010-02-26  8:44 UTC (permalink / raw)
  To: dri-devel, Dave Airlie

Fixes FDO bug #26214

Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
---
 drivers/gpu/drm/radeon/r600.c       |    8 ++++++++
 drivers/gpu/drm/radeon/r600_audio.c |    3 +--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c
index d279089..76d0cdb 100644
--- a/drivers/gpu/drm/radeon/r600.c
+++ b/drivers/gpu/drm/radeon/r600.c
@@ -1944,6 +1944,13 @@ int r600_resume(struct radeon_device *rdev)
 		DRM_ERROR("radeon: failled testing IB (%d).\n", r);
 		return r;
 	}
+
+	r = r600_audio_init(rdev);
+	if (r) {
+		DRM_ERROR("radeon: audio resume failed\n");
+		return r;
+	}
+
 	return r;
 }
 
@@ -1951,6 +1958,7 @@ int r600_suspend(struct radeon_device *rdev)
 {
 	int r;
 
+	r600_audio_fini(rdev);
 	/* FIXME: we should wait for ring to be empty */
 	r600_cp_stop(rdev);
 	rdev->cp.ready = false;
diff --git a/drivers/gpu/drm/radeon/r600_audio.c b/drivers/gpu/drm/radeon/r600_audio.c
index 99e2c38..e90da2e 100644
--- a/drivers/gpu/drm/radeon/r600_audio.c
+++ b/drivers/gpu/drm/radeon/r600_audio.c
@@ -261,7 +261,6 @@ void r600_audio_fini(struct radeon_device *rdev)
 	if (!r600_audio_chipset_supported(rdev))
 		return;
 
-	WREG32_P(R600_AUDIO_ENABLE, 0x0, ~0x81000000);
-
 	del_timer(&rdev->audio_timer);
+	WREG32_P(R600_AUDIO_ENABLE, 0x0, ~0x81000000);
 }
-- 
1.6.4.2


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/radeon/kms: suspend and resume audio stuff
  2010-02-26  8:44 ` [PATCH] drm/radeon/kms: suspend and resume audio stuff Rafał Miłecki
@ 2010-02-26  8:47   ` Rafał Miłecki
  0 siblings, 0 replies; 4+ messages in thread
From: Rafał Miłecki @ 2010-02-26  8:47 UTC (permalink / raw)
  To: dri-devel, Dave Airlie

W dniu 26 lutego 2010 09:44 użytkownik Rafał Miłecki <zajec5@gmail.com> napisał:
> Fixes FDO bug #26214

Whoops, I dumped patches to already existing directory. Ignore this
one please. Sorry.

-- 
Rafał

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-02-26  8:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-26  8:44 [PATCH 0/3] drm/radeon/kms: little audio stuff cleaning Rafał Miłecki
2010-02-26  8:44 ` [PATCH 1/3] Revert "drm/radeon/kms: disable HDMI audio for now on rv710/rv730" Rafał Miłecki
2010-02-26  8:44 ` [PATCH] drm/radeon/kms: suspend and resume audio stuff Rafał Miłecki
2010-02-26  8:47   ` Rafał Miłecki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.