1. 16 3月, 2012 1 次提交
  2. 14 3月, 2012 1 次提交
  3. 13 3月, 2012 2 次提交
  4. 12 3月, 2012 5 次提交
  5. 10 3月, 2012 1 次提交
    • T
      ALSA: hda - Initialize vmaster slave volumes · 18478e8b
      Takashi Iwai 提交于
      When the driver is changed to use vmaster or a new slave element is
      added by the improvement of the parser code, user may face often the
      silent output because of the muted slave mixer although Master volume
      is properly set.  And they complain.  And I get upset.
      
      Although such a mixer element should be initialized via "alsactl init",
      it'd be more user-friendly if the known output slaves are unmuted and
      set to 0dB so that user can control the volume only with Master as
      default.  Since Master is still set muted as default even with this
      change, no risk of the speaker blow up, too.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      18478e8b
  6. 07 3月, 2012 4 次提交
    • T
      ALSA: hda - Set codec to D3 forcibly even if not used · 785f857d
      Takashi Iwai 提交于
      We've seen a problem with a pop-noise at suspend/resume on a HP
      machine with ALC269, and it turned out to be an issue that the
      controller going to D3 while the codec is unused.
      
      When the device is once suspended and resumed and kept unused, the
      driver doesn't initialize the codecs.  Instead, the codec chips are
      set up dynamically at the first usage.  Now, suppose the device going
      to suspend again before the codec is set up.  The controller is turned
      off to D3 while the codec chips are untouched.  This caused a pop
      noise because the codec chip might have been turned on implicitly by
      the hardware.
      
      As a workaround, the codec chip needs to be set to D3 when going to
      suspend no matter whether it was used or not.  Also, for making it
      happening, the controller has to be always set up in the resume path.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      785f857d
    • T
      ALSA: hda/realtek - Reuse init_hook for ALC269VB coef setup · 546bb678
      Takashi Iwai 提交于
      Move the currently unused spec->init_hook at the beginning of the init
      sequence so that the recently added ALC269VB coef setup can be put
      there.  The alc_init() is again clean without an ugly check.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      546bb678
    • T
      Merge branch 'fix/hda' into topic/hda · fc7a1627
      Takashi Iwai 提交于
      Conflicts:
      	sound/pci/hda/patch_realtek.c
      fc7a1627
    • K
      ALSA: hda/realtek - Apply the coef-setup only to ALC269VB · 526af6eb
      Kailang Yang 提交于
      The coef setup in alc269_fill_coef() was designed only for ALC269VB
      model, and this has some bad effects for other ALC269 variants, such
      as turning off the external mic input.  Apply it only to ALC269VB.
      Signed-off-by: NKailang Yang <kailang@realtek.com>
      Cc: <stable@kernel.org>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      526af6eb
  7. 06 3月, 2012 2 次提交
  8. 05 3月, 2012 1 次提交
  9. 04 3月, 2012 2 次提交
  10. 02 3月, 2012 2 次提交
  11. 01 3月, 2012 3 次提交
  12. 29 2月, 2012 2 次提交
  13. 28 2月, 2012 2 次提交
  14. 26 2月, 2012 1 次提交
  15. 25 2月, 2012 1 次提交
  16. 24 2月, 2012 1 次提交
  17. 23 2月, 2012 2 次提交
  18. 22 2月, 2012 4 次提交
  19. 21 2月, 2012 3 次提交
    • T
      ALSA: hda/realtek - Small code cleanups · 070cff4c
      Takashi Iwai 提交于
      A few clean-ups for post-static-quirk time:
      - Call alc_auto_init_std() statically in alc_init() instead of setting
        spec->init_hook in each caller.  spec->init_hook field is left
        unused for any future use.
      
      - Move the call of set_capture_mixer() to to alc_parse_auto_config()
        instead of each caller.
      
      - Get rid of the ADC-filling and imux check in each parser function.
        This is no longer needed since the auto-parser always check ADCs and
        imux.  It was only for the static quirks.
      
      - Kill unused defines
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      070cff4c
    • T
      ALSA: hda/realtek - Fix the wrong offset for two-speaker systems · f568291e
      Takashi Iwai 提交于
      When the machine has two speakers but wants to put more multi-io
      jacks, the parser shouldn't consider about the shared DAC but try to
      assign the individual DACs.  Otherwise the channel mapping would be
      fairly confused and lead to the wrong DACs.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      f568291e
    • T
      ALSA: hda/realtek - Fix the possible conflicts of Bass Speaker name · 689cabf6
      Takashi Iwai 提交于
      When the multi-io is added to the two speaker output configuration,
      the parser would try to add yet another "Bass Speaker" control since
      it checks only cfg->line_outs.  Add a workaround for it by simply
      passing the channel name in the case of multi-io outputs.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      689cabf6