]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/patches/suse-2.6.27.31/patches.drivers/alsa-hda-atihdmi-update
Move xen patchset to new version's subdir.
[people/pmueller/ipfire-2.x.git] / src / patches / suse-2.6.27.31 / patches.drivers / alsa-hda-atihdmi-update
diff --git a/src/patches/suse-2.6.27.31/patches.drivers/alsa-hda-atihdmi-update b/src/patches/suse-2.6.27.31/patches.drivers/alsa-hda-atihdmi-update
new file mode 100644 (file)
index 0000000..9a42b62
--- /dev/null
@@ -0,0 +1,129 @@
+From: Takashi Iwai <tiwai@suse.de>
+Subject: ALSA: hda - update ATI HDMI codec support
+Patch-mainline: 2.6.28-rc1
+References: bnc#363153
+
+Updates for HDMI support; 8-ch LPCM is capable.
+
+Signed-off-by: Takashi Iwai <tiwai@suse.de>
+
+---
+diff -ruN a/sound/pci/hda/patch_atihdmi.c b/sound/pci/hda/patch_atihdmi.c
+--- a/sound/pci/hda/patch_atihdmi.c
++++ b/sound/pci/hda/patch_atihdmi.c
+@@ -35,6 +35,9 @@
+       struct hda_pcm pcm_rec;
+ };
++#define CVT_NID               0x02    /* audio converter */
++#define PIN_NID               0x03    /* HDMI output pin */
++
+ static struct hda_verb atihdmi_basic_init[] = {
+       /* enable digital output on pin widget */
+       { 0x03, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
+@@ -60,8 +63,9 @@
+ {
+       snd_hda_sequence_write(codec, atihdmi_basic_init);
+       /* SI codec requires to unmute the pin */
+-      if (get_wcaps(codec, 0x03) & AC_WCAP_OUT_AMP)
+-              snd_hda_codec_write(codec, 0x03, 0, AC_VERB_SET_AMP_GAIN_MUTE,
++      if (get_wcaps(codec, PIN_NID) & AC_WCAP_OUT_AMP)
++              snd_hda_codec_write(codec, PIN_NID, 0,
++                                  AC_VERB_SET_AMP_GAIN_MUTE,
+                                   AMP_OUT_UNMUTE);
+       return 0;
+ }
+@@ -92,15 +96,29 @@
+                                           struct snd_pcm_substream *substream)
+ {
+       struct atihdmi_spec *spec = codec->spec;
+-      return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
+-                                           format, substream);
++      int chans = substream->runtime->channels;
++      int i, err;
++
++      err = snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
++                                          format, substream);
++      if (err < 0)
++              return err;
++      snd_hda_codec_write(codec, CVT_NID, 0, AC_VERB_SET_CVT_CHAN_COUNT,
++                          chans - 1);
++      /* FIXME: XXX */
++      for (i = 0; i < chans; i++) {
++              snd_hda_codec_write(codec, CVT_NID, 0,
++                                  AC_VERB_SET_HDMI_CHAN_SLOT,
++                                  (i << 4) | i);
++      }
++      return 0;
+ }
+ static struct hda_pcm_stream atihdmi_pcm_digital_playback = {
+       .substreams = 1,
+       .channels_min = 2,
+       .channels_max = 2,
+-      .nid = 0x2, /* NID to query formats and rates and setup streams */
++      .nid = CVT_NID, /* NID to query formats and rates and setup streams */
+       .ops = {
+               .open = atihdmi_dig_playback_pcm_open,
+               .close = atihdmi_dig_playback_pcm_close,
+@@ -112,6 +130,7 @@
+ {
+       struct atihdmi_spec *spec = codec->spec;
+       struct hda_pcm *info = &spec->pcm_rec;
++      unsigned int chans;
+       codec->num_pcms = 1;
+       codec->pcm_info = info;
+@@ -120,6 +139,13 @@
+       info->pcm_type = HDA_PCM_TYPE_HDMI;
+       info->stream[SNDRV_PCM_STREAM_PLAYBACK] = atihdmi_pcm_digital_playback;
++      /* FIXME: we must check ELD and change the PCM parameters dynamically
++       */
++      chans = get_wcaps(codec, CVT_NID);
++      chans = (chans & AC_WCAP_CHAN_CNT_EXT) >> 13;
++      chans = ((chans << 1) | 1) + 1;
++      info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = chans;
++
+       return 0;
+ }
+@@ -147,9 +173,11 @@
+       spec->multiout.num_dacs = 0;      /* no analog */
+       spec->multiout.max_channels = 2;
+-      spec->multiout.dig_out_nid = 0x2; /* NID for copying analog to digital,
+-                                         * seems to be unused in pure-digital
+-                                         * case. */
++      /* NID for copying analog to digital,
++       * seems to be unused in pure-digital
++       * case.
++       */
++      spec->multiout.dig_out_nid = CVT_NID;
+       codec->patch_ops = atihdmi_patch_ops;
+@@ -164,6 +192,7 @@
+       { .id = 0x10027919, .name = "ATI RS600 HDMI", .patch = patch_atihdmi },
+       { .id = 0x1002791a, .name = "ATI RS690/780 HDMI", .patch = patch_atihdmi },
+       { .id = 0x1002aa01, .name = "ATI R6xx HDMI", .patch = patch_atihdmi },
++      { .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_atihdmi },
+       { .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_atihdmi },
+       { .id = 0x17e80047, .name = "Chrontel HDMI",  .patch = patch_atihdmi },
+       {} /* terminator */
+diff -ruN a/Documentation/sound/alsa/ALSA-Configuration.txt b/Documentation/sound/alsa/ALSA-Configuration.txt
+--- a/Documentation/sound/alsa/ALSA-Configuration.txt
++++ b/Documentation/sound/alsa/ALSA-Configuration.txt
+@@ -746,8 +746,10 @@
+   Module snd-hda-intel
+   --------------------
+-    Module for Intel HD Audio (ICH6, ICH6M, ESB2, ICH7, ICH8),
+-              ATI SB450, SB600, RS600,
++    Module for Intel HD Audio (ICH6, ICH6M, ESB2, ICH7, ICH8, ICH9, ICH10,
++                      PCH, SCH),
++              ATI SB450, SB600, R600, RS600, RS690, RS780, RV610, RV620,
++                      RV630, RV635, RV670, RV770,
+               VIA VT8251/VT8237A,
+               SIS966, ULI M5461