All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/24] radeon audio rework
@ 2015-01-13 17:46 Alex Deucher
  2015-01-13 17:46 ` [PATCH 01/24] radeon/audio: consolidate audio_init() functions Alex Deucher
                   ` (24 more replies)
  0 siblings, 25 replies; 29+ messages in thread
From: Alex Deucher @ 2015-01-13 17:46 UTC (permalink / raw)
  To: dri-devel; +Cc: Alex Deucher, slava.grigorev

This patch set cleans up the radeon audio handling
and also adds support for DP audio on all supported
asics.

Alex Deucher (1):
  drm/radeon: whitespace clean up in radeon_audio.c

Slava Grigorev (23):
  radeon/audio: consolidate audio_init() functions
  radeon/audio: defined initial audio interface that gets initialized
    via detect() call
  radeon/audio: consolidate write_sad_regs() functions
  radeon/audio: consolidate write_speaker_allocation() functions
  radeon/audio: consolidate write_latency_fields() functions
  radeon/audio: consolidate audio_get_pin() functions
  radeon/audio: consolidate select_pin() functions
  radeon/audio: consolidate audio_enable() functions
  radeon/audio: consolidate audio_fini() functions
  radeon/audio: consolidate audio_set_dto() functions
  radeon/audio: consolidate update_avi_infoframe() functions
  radeon/audio: consolidate update_acr() functions
  radeon/audio: moved VBI packet programming to separate functions
  radeon: moved HDMI color depth programming to a separate function
  radeon/audio: removed unnecessary CRC control programing
  radeon/audio: set_avi_packet() function cleanup
  radeon/audio: moved audio packet programming to a separate function
  radeon/audio: moved mute programming to a separate function
  radeon/audio: removed unnecessary debug settings
  radeon/audio: consolidate audio_mode_set() functions
  radeon/audio: applied audio_dpms() and audio_mode_set() calls
  radeon/audio: moved audio caps programming to audio_hotplug() function
  radeon/audio: enable DP audio

 drivers/gpu/drm/radeon/Makefile            |   2 +-
 drivers/gpu/drm/radeon/atombios_encoders.c |  29 +-
 drivers/gpu/drm/radeon/cik.c               |   5 +-
 drivers/gpu/drm/radeon/dce3_1_afmt.c       | 264 +++++-----
 drivers/gpu/drm/radeon/dce6_afmt.c         | 218 ++++----
 drivers/gpu/drm/radeon/evergreen.c         |   7 +-
 drivers/gpu/drm/radeon/evergreen_hdmi.c    | 478 ++++++++----------
 drivers/gpu/drm/radeon/evergreen_reg.h     |  15 +
 drivers/gpu/drm/radeon/evergreend.h        |   1 +
 drivers/gpu/drm/radeon/ni.c                |  18 +-
 drivers/gpu/drm/radeon/r600.c              |   7 +-
 drivers/gpu/drm/radeon/r600_hdmi.c         | 387 ++++-----------
 drivers/gpu/drm/radeon/radeon.h            |   3 +
 drivers/gpu/drm/radeon/radeon_asic.c       |  28 --
 drivers/gpu/drm/radeon/radeon_asic.h       |   8 -
 drivers/gpu/drm/radeon/radeon_audio.c      | 765 +++++++++++++++++++++++++++++
 drivers/gpu/drm/radeon/radeon_audio.h      |  84 ++++
 drivers/gpu/drm/radeon/radeon_connectors.c |   8 +
 drivers/gpu/drm/radeon/radeon_mode.h       |   1 +
 drivers/gpu/drm/radeon/rs600.c             |   7 +-
 drivers/gpu/drm/radeon/rs690.c             |   7 +-
 drivers/gpu/drm/radeon/rv770.c             |   5 +-
 drivers/gpu/drm/radeon/si.c                |   5 +-
 drivers/gpu/drm/radeon/sid.h               |  10 +
 24 files changed, 1458 insertions(+), 904 deletions(-)
 create mode 100644 drivers/gpu/drm/radeon/radeon_audio.c
 create mode 100644 drivers/gpu/drm/radeon/radeon_audio.h

-- 
1.8.3.1

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2015-01-14 21:47 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-13 17:46 [PATCH 00/24] radeon audio rework Alex Deucher
2015-01-13 17:46 ` [PATCH 01/24] radeon/audio: consolidate audio_init() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 02/24] radeon/audio: defined initial audio interface that gets initialized via detect() call Alex Deucher
2015-01-13 17:46 ` [PATCH 03/24] radeon/audio: consolidate write_sad_regs() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 04/24] radeon/audio: consolidate write_speaker_allocation() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 05/24] radeon/audio: consolidate write_latency_fields() functions Alex Deucher
2015-01-14 14:51   ` Christian König
2015-01-13 17:46 ` [PATCH 06/24] radeon/audio: consolidate audio_get_pin() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 07/24] radeon/audio: consolidate select_pin() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 08/24] radeon/audio: consolidate audio_enable() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 09/24] radeon/audio: consolidate audio_fini() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 10/24] radeon/audio: consolidate audio_set_dto() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 11/24] radeon/audio: consolidate update_avi_infoframe() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 12/24] radeon/audio: consolidate update_acr() functions Alex Deucher
2015-01-14 14:55   ` Christian König
2015-01-13 17:46 ` [PATCH 13/24] radeon/audio: moved VBI packet programming to separate functions Alex Deucher
2015-01-13 17:46 ` [PATCH 14/24] radeon: moved HDMI color depth programming to a separate function Alex Deucher
2015-01-13 17:46 ` [PATCH 15/24] radeon/audio: removed unnecessary CRC control programing Alex Deucher
2015-01-13 17:46 ` [PATCH 16/24] radeon/audio: set_avi_packet() function cleanup Alex Deucher
2015-01-13 17:46 ` [PATCH 17/24] radeon/audio: moved audio packet programming to a separate function Alex Deucher
2015-01-13 17:46 ` [PATCH 18/24] radeon/audio: moved mute " Alex Deucher
2015-01-13 17:46 ` [PATCH 19/24] radeon/audio: removed unnecessary debug settings Alex Deucher
2015-01-13 17:46 ` [PATCH 20/24] radeon/audio: consolidate audio_mode_set() functions Alex Deucher
2015-01-13 17:46 ` [PATCH 21/24] radeon/audio: applied audio_dpms() and audio_mode_set() calls Alex Deucher
2015-01-13 17:46 ` [PATCH 22/24] radeon/audio: moved audio caps programming to audio_hotplug() function Alex Deucher
2015-01-13 17:46 ` [PATCH 23/24] radeon/audio: enable DP audio Alex Deucher
2015-01-13 17:46 ` [PATCH 24/24] drm/radeon: whitespace clean up in radeon_audio.c Alex Deucher
2015-01-14 15:01 ` [PATCH 00/24] radeon audio rework Christian König
2015-01-14 21:47   ` Alex Deucher

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.