pandora-kernel.git
11 years agoALSA - HDA: New PCI ID for Haswell ULT
Wang Xingchao [Fri, 1 Feb 2013 14:42:19 +0000 (22:42 +0800)]
ALSA - HDA: New PCI ID for Haswell ULT

Add new PCI ID 0x0a0c for Haswell ULT platform.

Signed-off-by: Wang Xingchao <xingchao.wang@linux.intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - add support for IDT 92HD95 HDA codec
Vitaliy Kulikov [Thu, 31 Jan 2013 23:58:59 +0000 (17:58 -0600)]
ALSA: hda - add support for IDT 92HD95 HDA codec

Signed-off-by: Vitaliy Kulikov <Vitaliy.Kulikov@idt.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: usb: cosmetics, remove a leading space
Antonio Ospite [Tue, 29 Jan 2013 11:56:30 +0000 (12:56 +0100)]
ALSA: usb: cosmetics, remove a leading space

Signed-off-by: Antonio Ospite <ao2@amarulasolutions.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: caiaq: fix use of MODULE_SUPPORTED_DEVICES()
Antonio Ospite [Tue, 29 Jan 2013 11:56:29 +0000 (12:56 +0100)]
ALSA: caiaq: fix use of MODULE_SUPPORTED_DEVICES()

It looks like MODULE_SUPPORTED_DEVICES() is not implemented yet, but
still, having the entries in the list consistently separated by commas
and with balanced parenthesis won't hurt.

Signed-off-by: Antonio Ospite <ao2@amarulasolutions.com>
Acked-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: Documentation: fix some typos
Antonio Ospite [Tue, 29 Jan 2013 11:56:28 +0000 (12:56 +0100)]
ALSA: Documentation: fix some typos

s/PAUSE_PUSE/PAUSE_PUSH/
s/happense/happens/

Signed-off-by: Antonio Ospite <ao2@amarulasolutions.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: Documentation: fix some thinkos
Antonio Ospite [Tue, 29 Jan 2013 11:56:27 +0000 (12:56 +0100)]
ALSA: Documentation: fix some thinkos

Signed-off-by: Antonio Ospite <ao2@amarulasolutions.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: Force a cast to silence a warning from "sparse"
Antonio Ospite [Tue, 29 Jan 2013 11:56:26 +0000 (12:56 +0100)]
ALSA: Force a cast to silence a warning from "sparse"

Some audio drivers are calling snd_dma_continuous_data(GFP_KERNEL)
which makes "sparse" give a warning:

  $ make C=2 M=sound/usb modules
    ...
  sound/usb/6fire/pcm.c:625:25: warning: cast from restricted gfp_t
  sound/usb/caiaq/audio.c:845:41: warning: cast from restricted gfp_t
  sound/usb/usx2y/usbusx2yaudio.c:997:54: warning: cast from restricted gfp_t
  sound/usb/usx2y/usbusx2yaudio.c:1001:54: warning: cast from restricted gfp_t
  sound/usb/usx2y/usx2yhwdeppcm.c:774:54: warning: cast from restricted gfp_t
  sound/usb/usx2y/usx2yhwdeppcm.c:778:54: warning: cast from restricted gfp_t

Add __force to the cast to silence the warning.

Signed-off-by: Antonio Ospite <ao2@amarulasolutions.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Update documentation
Takashi Iwai [Tue, 29 Jan 2013 08:18:55 +0000 (09:18 +0100)]
ALSA: hda - Update documentation

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix powermap for external mics on IDT codecs
David Henningsson [Mon, 28 Jan 2013 10:29:17 +0000 (11:29 +0100)]
ALSA: hda - Fix powermap for external mics on IDT codecs

This patch fixes a regression of the external mic not working on
HP Probook 4520s.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: Make snd_printd() and snd_printdd() inline
Takashi Iwai [Fri, 25 Jan 2013 09:54:07 +0000 (10:54 +0100)]
ALSA: Make snd_printd() and snd_printdd() inline

Because currently snd_printd() and snd_printdd() macros are expanded
to empty when CONFIG_SND_DEBUG=n, a compile warning like below
appears sometimes, and we had to covert it by ugly ifdefs:
  sound/pci/hda/patch_sigmatel.c: In function ‘stac92hd71bxx_fixup_hp’:
  sound/pci/hda/patch_sigmatel.c:2434:24: warning: unused variable ‘spec’ [-Wunused-variable]

For "fixing" these issues better, this patch replaces snd_printd() and
snd_printdd() definitions with empty inline functions instead of
macros.  This should have the same effect but shut up warnings like
above.

But since we had already put ifdefs, changing to inline functions
would trigger compile errors.  So, such ifdefs is removed in this
patch.

In addition, snd_pci_quirk name field is defined only when
CONFIG_SND_DEBUG_VERBOSE is set, and the reference to it in
snd_printdd() argument triggers the build errors, too.  For avoiding
these errors, introduce a new macro snd_pci_quirk_name() that is
defined no matter how the debug option is set.

Reported-by: Stratos Karafotis <stratosk@semaphore.gr>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Enable power down of unused widgets for IDT codecs
Takashi Iwai [Thu, 24 Jan 2013 17:02:43 +0000 (18:02 +0100)]
ALSA: hda - Enable power down of unused widgets for IDT codecs

IDT codecs can work well with this new feature, so let's enable it.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Implement path-based power filter to the generic parser
Takashi Iwai [Thu, 24 Jan 2013 16:32:56 +0000 (17:32 +0100)]
ALSA: hda - Implement path-based power filter to the generic parser

This patch adds a better power filter hook for powering down unused
widgets in the generic parser.

The feature is enabled by setting hda_gen_spec.power_down_unused
flag.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add snd_hda_check_power_state() helper function
Takashi Iwai [Thu, 24 Jan 2013 16:47:17 +0000 (17:47 +0100)]
ALSA: hda - Add snd_hda_check_power_state() helper function

... for small refactoring.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Synchronize the power state at the end of codec init
Takashi Iwai [Thu, 24 Jan 2013 16:27:32 +0000 (17:27 +0100)]
ALSA: hda - Synchronize the power state at the end of codec init

Put the power state synchronization at the end of the parsing of
codec.  This is necessary when the power filter is changed during the
codec probe.  Since the first power-up sequence is performed without
the special filter, all widgets are supposed to be ON at this point.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add power state filtering
Takashi Iwai [Thu, 24 Jan 2013 16:23:35 +0000 (17:23 +0100)]
ALSA: hda - Add power state filtering

Add a hook to struct hda_codec for filtering the target power state of
each widget when powering up/down.  The current hackish EAPD check is
implemented as the default hook pointer, too.

This allows codec drivers to implement own power filter.  In the
upcoming changes, the generic parser will have the better power filter
based on the active paths.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda/via - Fix wrong checks of power state bits
Takashi Iwai [Thu, 24 Jan 2013 16:12:09 +0000 (17:12 +0100)]
ALSA: hda/via - Fix wrong checks of power state bits

AC_VERB_GET_POWER_STATE returns the combined bits of the actual state
and the target state.  Thus, comparing the obtained value directly
with the target value can't work.  The value has to be shifted and
masked properly.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix wrong arguments for path deactivation checks
Takashi Iwai [Thu, 24 Jan 2013 15:31:35 +0000 (16:31 +0100)]
ALSA: hda - Fix wrong arguments for path deactivation checks

The arguments to call is_active_nid() in activate_amp() were swapped,
and this resulted in the muted amp on some SPDIF output pins.

Also, the index to be passed to is_active_nid() must be idx_to_check.
Otherwise it checks the wrong connection in the case of implicit aamix
connection paths.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add auto-mute support to PB desktop
Takashi Iwai [Wed, 23 Jan 2013 17:21:37 +0000 (18:21 +0100)]
ALSA: hda - Add auto-mute support to PB desktop

Using the new chained_before flag, we can correct the headphone jack
detection capability easily over the existing ALC880 6stack model
(which disables the jack detection intentionally for compatibility
reason).

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=901846

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoMerge branch 'for-linus' into for-next
Takashi Iwai [Wed, 23 Jan 2013 17:25:00 +0000 (18:25 +0100)]
Merge branch 'for-linus' into for-next

Merge the 3.8 devel branch for correcting the newly added PB desktop
fixup with the automute support.

11 years agoALSA: hda - Add a fixup for Packard-Bell desktop with ALC880
Takashi Iwai [Wed, 23 Jan 2013 17:16:24 +0000 (18:16 +0100)]
ALSA: hda - Add a fixup for Packard-Bell desktop with ALC880

A Packard-Bell desktop machine gives no proper pin configuration from
BIOS.  It's almost equivalent with the 6stack+fp standard config, just
take the existing fixup.

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=901846

Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add chained_before flag to the fixup entry
Takashi Iwai [Wed, 23 Jan 2013 17:10:10 +0000 (18:10 +0100)]
ALSA: hda - Add chained_before flag to the fixup entry

Sometimes we want to call a fixup after applying other existing
fixups, but currently the fixup chain mechanism allows only the call
the others after the target fixup.  This patch adds a new flag,
chained_before, to struct hda_fixup, for allowing the chained call
before the current execution.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Small code refactoring about path re-initialization
Takashi Iwai [Wed, 23 Jan 2013 16:07:23 +0000 (17:07 +0100)]
ALSA: hda - Small code refactoring about path re-initialization

Introduce a helper function to do the same thing.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix missing path between aamix and outputs in AD codecs
Takashi Iwai [Wed, 23 Jan 2013 16:00:31 +0000 (17:00 +0100)]
ALSA: hda - Fix missing path between aamix and outputs in AD codecs

AD1988 family and AD1882 codecs have another mixer widget (0x21)
between the analog-loopback mixer widget (0x20) and the actual
outputs.  Due to this hole, the analog-loopbacks aren't sent properly
to the output pins.

As a band-aid fix, introduce another fields holding the aamix merge
path, and activate it.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix inconsistent pin states after resume
Takashi Iwai [Wed, 23 Jan 2013 14:58:40 +0000 (15:58 +0100)]
ALSA: hda - Fix inconsistent pin states after resume

The commit [26a6cb6c: ALSA: hda - Implement a poll loop for jacks as a
module parameter] introduced the polling jack detection code, but it
also moved the call of snd_hda_jack_set_dirty_all() in the resume path
after resume/init ops call.  This caused a regression when the jack
state has been changed during power-down (e.g. in the power save
mode).  Since the driver doesn't probe the new jack state but keeps
using the cached value due to no dirty flag, the pin state remains
also as if the jack is still plugged.

The fix is simply moving snd_hda_jack_set_dirty_all() to the original
position.

Reported-by: Manolo Díaz <diaz.manolo@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix invalid snd_BUG_ON() in alc271_hp_gate_mic_jack()
Takashi Iwai [Wed, 23 Jan 2013 12:57:20 +0000 (13:57 +0100)]
ALSA: hda - Fix invalid snd_BUG_ON() in alc271_hp_gate_mic_jack()

The fixup function is called multiple times before parsing the pins,
so snd_BUG_ON() hits when loaded.  Move it to the proper place in the
if block.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoMerge branch 'topic/hda-gen-parser' into for-next
Takashi Iwai [Wed, 23 Jan 2013 07:34:12 +0000 (08:34 +0100)]
Merge branch 'topic/hda-gen-parser' into for-next

This is a merge of really big changes: the generic parser is heavily
enhanced for handling all cases, based on the former Realtek codec
driver code.  And all codec drivers except for a few ones (CA0132,
HDMI and modem) have been converted to use the new generic driver.

Conflicts:
sound/pci/hda/patch_realtek.c

11 years agoMerge branch 'for-linus' into for-next
Takashi Iwai [Wed, 23 Jan 2013 07:31:34 +0000 (08:31 +0100)]
Merge branch 'for-linus' into for-next

This is a preliminary merge before the upcoming merge of generic parser
branch.

11 years agoALSA: hda - Select auto-parser as default for AD codecs
Takashi Iwai [Tue, 22 Jan 2013 17:42:39 +0000 (18:42 +0100)]
ALSA: hda - Select auto-parser as default for AD codecs

Now all AD codecs have the proper BIOS auto-parser, and we can make
it for default, finally.  (AD1988 already did it because it had the
auto-parser.)

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Convert some static quirks to fixup codes for AD codecs
Takashi Iwai [Tue, 22 Jan 2013 17:18:42 +0000 (18:18 +0100)]
ALSA: hda - Convert some static quirks to fixup codes for AD codecs

Other remaining quirks are mostly resolvable via pincfg fixes, even if
it matters.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Rearrange for dropping static quirk codes in AD codec driver
Takashi Iwai [Tue, 22 Jan 2013 15:45:58 +0000 (16:45 +0100)]
ALSA: hda - Rearrange for dropping static quirk codes in AD codec driver

As done for patch_conexant.c, put ifdef ENABLE_AD_STATIC_QUIRKS for
preparing t odrop the static quirk codes in patch_analog.c.

The whole static quirk code can be omitted by commenting out
ENABLE_AD_STATIC_QUIRKS define now.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add SPDIF mux control to AD codec auto-parser
Takashi Iwai [Tue, 22 Jan 2013 14:31:33 +0000 (15:31 +0100)]
ALSA: hda - Add SPDIF mux control to AD codec auto-parser

AD codecs have strange implementations for choosing the SPDIF-output
mux source: the digital audio out widget may take the sources from
multiple connections, where 0x01 indicates it's a PCM while others
point ADCs.  It's obviously invalid in the HD-audio spec POV, but it's
somehow convincing, too.  And, to make things more complex, AD1988A
and AD1882 have deeper connection routes that aren't expressed
correctly.

In this patch, the SPDIF mux control is implemented in two ways:
- For easier one like AD1981, AD1983, AD1884 and AD1984, where the
  SPDIF audio out widget takes just two or three sources, we can
  simply implement via the normal input_mux and connection verb
  calls.

- For the complex routes like AD1988A (but not AD1988B) or AD1882, we
  prepare "faked" paths represented statically, and switch the paths
  using these static ones, instead of parsing the routes from the
  widget tree.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Combine snd_hda_codec_flush_*_cache() to a single function
Takashi Iwai [Tue, 22 Jan 2013 14:24:30 +0000 (15:24 +0100)]
ALSA: hda - Combine snd_hda_codec_flush_*_cache() to a single function

Since both snd_hda_codec_flush_amp_cache() and
snd_hda_codec_flush_cmd_cache() are called usually at the same time,
we can simply combine them to a single function,
snd_hda_codec_flush_cache().

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix missing call of cmd flush in capture volume put callback
Takashi Iwai [Tue, 22 Jan 2013 14:18:17 +0000 (15:18 +0100)]
ALSA: hda - Fix missing call of cmd flush in capture volume put callback

The capture volume put callback may call the node selection change,
and its actual call won't be triggered unless flushed.  In general,
we always need to call both snd_hda_codec_flush_amp_cache() and
snd_hda_codec_flush_cmd_cache() at the same place...

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add missing exports to helper functions
Takashi Iwai [Tue, 22 Jan 2013 14:17:20 +0000 (15:17 +0100)]
ALSA: hda - Add missing exports to helper functions

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Revive SPDIF mux for IDT/STAC codecs
Takashi Iwai [Tue, 22 Jan 2013 08:34:48 +0000 (09:34 +0100)]
ALSA: hda - Revive SPDIF mux for IDT/STAC codecs

The stuff that was dropped while transition to the generic parser is
now recovered.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Disable HP auto-mute during independent HP mode
Takashi Iwai [Tue, 22 Jan 2013 06:46:31 +0000 (07:46 +0100)]
ALSA: hda - Disable HP auto-mute during independent HP mode

Both the HP auto-mute and the independent HP mode conflict with each
other.  Make HP auto-mute disabled (only for the affected HP jack)
during the driver is in HP independent mode.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Set individual name to secondary analog PCM stream
Takashi Iwai [Mon, 21 Jan 2013 15:50:09 +0000 (16:50 +0100)]
ALSA: hda - Set individual name to secondary analog PCM stream

It'd be better to give another name to the secondary (alt) analog PCM
stream, which is dedicated for the independent HP out and extra
inputs.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add aamix NID to AD codecs
Takashi Iwai [Mon, 21 Jan 2013 15:40:16 +0000 (16:40 +0100)]
ALSA: hda - Add aamix NID to AD codecs

The aamix NIDs are also missing for AD codecs.  All AD codecs seem to
have a (more or less) working aamix widget.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add Conexant CX20755/20756/20757 codec IDs
Takashi Iwai [Mon, 21 Jan 2013 15:53:37 +0000 (16:53 +0100)]
ALSA: hda - Add Conexant CX20755/20756/20757 codec IDs

These are just compatible with other CX2075x codecs.

Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add aamix NID to IDT 92HD codecs
Takashi Iwai [Mon, 21 Jan 2013 15:25:18 +0000 (16:25 +0100)]
ALSA: hda - Add aamix NID to IDT 92HD codecs

IDT codecs have analog-loopback mixer widgets, but we haven't cared
about it, so far.  Let's set them.  This will avoid also possible
wrong routes for the input paths.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Remove superfluous header inclusions
Takashi Iwai [Mon, 21 Jan 2013 15:10:56 +0000 (16:10 +0100)]
ALSA: hda - Remove superfluous header inclusions

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Enable parsing the independent HP mode as default for VIA codecs
Takashi Iwai [Mon, 21 Jan 2013 14:15:55 +0000 (15:15 +0100)]
ALSA: hda - Enable parsing the independent HP mode as default for VIA codecs

The original VIA codec parser enabled it as default, so let's keep the
behavior as it was.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix conflicts between Loopback Mixing and Independent HP
Takashi Iwai [Mon, 21 Jan 2013 14:11:25 +0000 (15:11 +0100)]
ALSA: hda - Fix conflicts between Loopback Mixing and Independent HP

This patch eventually fixes two issues:
- Handle the case where the primary output is a headphone and can have
  independent HP mode;
  so far we checked only the case where the headphone is the secondary
  output.

- Fix the conflict of HP independent mode and aamix mode;
  when switched to aamix mode, the DAC might be also switched to
  another widget shared with other outputs.  Then even if we disable
  the DAC for the original output, it doesn't change -- because the
  active route is from another (shared) DAC to HP pin through aamix.
  So, in such a case, we have to prohibit the switch to aamix for HP
  routes.

This fixes issues appearing on VT codecs.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Check aamix-output paths from other DACs, too
Takashi Iwai [Mon, 21 Jan 2013 13:24:31 +0000 (14:24 +0100)]
ALSA: hda - Check aamix-output paths from other DACs, too

Many codecs provide routes to multiple output pins through an aamix
widget, but most of them do it only from a single DAC.  However, the
current generic parser checks only the aamix paths from the original
(directly bound) DACs through aamix NID, and miss the path:
  primary DAC -> aamix -> target out pin

This patch adds a more check for the routes like the above.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add missing badness evaluation for unresolved paths
Takashi Iwai [Mon, 21 Jan 2013 10:43:19 +0000 (11:43 +0100)]
ALSA: hda - Add missing badness evaluation for unresolved paths

When a patch couldn't be resolved in try_assign_dacs() although the
target DAC is expected, we forgot to add a proper badness value but
continued.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Set the pin targets after deciding output config
Takashi Iwai [Mon, 21 Jan 2013 09:49:05 +0000 (10:49 +0100)]
ALSA: hda - Set the pin targets after deciding output config

Since fill_and_eval_dacs() may be called repeatedly with different
configurations, setting pinctls at each time there isn't optimal.
We can set it better only once after deciding the output configuration
in parse_output_paths().

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Improve debug prints for output paths
Takashi Iwai [Mon, 21 Jan 2013 09:43:18 +0000 (10:43 +0100)]
ALSA: hda - Improve debug prints for output paths

Print the information of outputs in a bit more details and concisely
in a single place instead of printing the path at each time when
detected.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add fixup for Acer AO725 laptop
Takashi Iwai [Sat, 19 Jan 2013 11:17:54 +0000 (12:17 +0100)]
ALSA: hda - Add fixup for Acer AO725 laptop

Acer AO725 needs the same fixup as AO756.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=52181

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda/conexant - Set mixer NID 0x19 for CX20551 codec
Takashi Iwai [Fri, 18 Jan 2013 17:25:45 +0000 (18:25 +0100)]
ALSA: hda/conexant - Set mixer NID 0x19 for CX20551 codec

Conexant CX20551 codec has a mixer in NID 0x19 and a few outputs have
to take the input through this widget.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Correct more array rooms in hda_gen_spec
Takashi Iwai [Fri, 18 Jan 2013 15:38:08 +0000 (16:38 +0100)]
ALSA: hda - Correct more array rooms in hda_gen_spec

Looking through the whole definitions, some fields have inappropriate
array sizes, especially about the capture.  The array assigned to each
input (pin) should have HDA_MAX_NUM_INPUTS entries while the array
assigned to each ADC should have AUTO_CFG_MAX_INS entries.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix the wrong adc_idx for capture source
Takashi Iwai [Fri, 18 Jan 2013 15:23:25 +0000 (16:23 +0100)]
ALSA: hda - Fix the wrong adc_idx for capture source

The patch "ALSA: hda - fix wrong adc_idx in generic parser" fixed the
adc_idx for the capture volume and capture switch controls.  But also
modified the adc_idx retrieval for the capture source controls
wrongly.  As multiple capture source controls are created in a single
shot with counts > 1, the id.index doesn't contain the real value.
The real index has to be taken via snd_ctl_get_ioffidx() as in the
original code.

This patch reverts the fixes partially to recover from the
regression.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Don't add unnecessary indices on HDMI and SPDIF
David Henningsson [Fri, 18 Jan 2013 14:43:03 +0000 (15:43 +0100)]
ALSA: hda - Don't add unnecessary indices on HDMI and SPDIF

If there's one each of HDMI and SPDIF, we should not add an index
on the one that comes second.

[slight code refactoring by tiwai]

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - don't compare with yourself in fill_input_pin_labels
David Henningsson [Fri, 18 Jan 2013 14:43:02 +0000 (15:43 +0100)]
ALSA: hda - don't compare with yourself in fill_input_pin_labels

Just stumbled over this one while reading the code.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - make sure there are enough input labels and paths
David Henningsson [Fri, 18 Jan 2013 14:43:01 +0000 (15:43 +0100)]
ALSA: hda - make sure there are enough input labels and paths

I found a codec configuration which had six inputs, so the max of
five was not appropriate.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix speaker pin of FSC Lifebook S7110 laptop
Takashi Iwai [Fri, 18 Jan 2013 14:41:34 +0000 (15:41 +0100)]
ALSA: hda - Fix speaker pin of FSC Lifebook S7110 laptop

Some BIOS version of FSC Lifebook S7110 laptop seems to give a wrong
default pin config for NID 0x15, which confuses the parser.  Give a
fixup to correct the value.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add boost to line inputs, too
Takashi Iwai [Fri, 18 Jan 2013 13:37:16 +0000 (14:37 +0100)]
ALSA: hda - Add boost to line inputs, too

Although I commented that boost volumes would be added only for
line-in and mic pins in the source code, the actual code excludes but
for mic-in.  Fix it to accept the line-ins, too.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda/sigmatel - Add bass speaker support for HP ENVY Spectre XT
Takashi Iwai [Fri, 18 Jan 2013 13:28:07 +0000 (14:28 +0100)]
ALSA: hda/sigmatel - Add bass speaker support for HP ENVY Spectre XT

The pin configuration for the bass speaker needs to be corrected in a
fixup.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Consolidate cap_sync_hook and capture_switch_hook
Takashi Iwai [Fri, 18 Jan 2013 13:10:00 +0000 (14:10 +0100)]
ALSA: hda - Consolidate cap_sync_hook and capture_switch_hook

Two hooks in hda_gen_spec, cap_sync_hook and capture_switch_hook, play
very similar roles.  The only differences are that the former is
called more often (e.g. at init or switching capsrc) while the latter
can take an on/off argument.

As a more generic implementation, consolidate these two hooks, and
pass snd_ctl_elem_value pointer as the second argument.  If the
secondary argument is non-NULL, it can take the on/off value, so the
caller handles it like the former capture_switch_hook.  If it's NULL,
it's called in the init or capsrc switch case.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix missing call of capture_switch_hook
Takashi Iwai [Fri, 18 Jan 2013 13:01:14 +0000 (14:01 +0100)]
ALSA: hda - Fix missing call of capture_switch_hook

When a standard capture switch without multiple binding is used, the
call for capture_switch_hook isn't called properly.  Replace the put
ops to add the hook call in that case.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix mute led for another HP machine
David Henningsson [Fri, 18 Jan 2013 11:00:47 +0000 (12:00 +0100)]
ALSA: hda - Fix mute led for another HP machine

This machine also has the "HP_Mute_LED_0_A" string in DMI information.

Cc: <stable@vger.kernel.org>
BugLink: https://bugs.launchpad.net/bugs/1096789
Tested-by: Tammy Yang <tammy.yang@canonical.com>
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Look for boost controls more deeply
Takashi Iwai [Fri, 18 Jan 2013 10:07:15 +0000 (11:07 +0100)]
ALSA: hda - Look for boost controls more deeply

In the current generic parser code, we look for the (mic) boost
controls only on input pins.  But many codecs assign the boost volume
to a widget connected to each input pin instead of the input amp of
the pin itself.

In this patch, the parser tries to look through more widgets connected
to the pin and find a boost amp.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix invalid mute in path activation
Takashi Iwai [Fri, 18 Jan 2013 10:01:33 +0000 (11:01 +0100)]
ALSA: hda - Fix invalid mute in path activation

When an amp in the activation path is associated with mixer controls,
activate_amp() tries to skip the initialization.  It's good, but only
if the mixer really initializes both mute and volume.  Otherwise,
either the mute of the volume is left uninitialized.

This patch adds this missing check and properly initialize the
partially controlled amps in an activation path.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Unify input label creations in generic parser
Takashi Iwai [Fri, 18 Jan 2013 09:17:30 +0000 (10:17 +0100)]
ALSA: hda - Unify input label creations in generic parser

There are a few places creating the labels and indices of kctls for
each input pin in the current generic parser code.  This is redundant
and makes harder to maintain.  Let's create the labels and indices at
once and keep them in hda_gen_spec.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Keep autocfg.input idx value in imux table
Takashi Iwai [Fri, 18 Jan 2013 09:01:15 +0000 (10:01 +0100)]
ALSA: hda - Keep autocfg.input idx value in imux table

Since the imux table entries can be a subset of autocfg.input table,
the indices of these aren't always same.  For passing the proper index
value of autocfg.input at creating input ctl labels (via
snd_hda_autocfg_input_label()), keep the corresponding autocfg.input
idx value in the index field of each imux item, which isn't used in
the generic driver.

Also, this makes easier to check the invalid imux pin for stereo mix.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Fix missing unsol event handler in some codec drivers
Takashi Iwai [Fri, 18 Jan 2013 06:51:17 +0000 (07:51 +0100)]
ALSA: hda - Fix missing unsol event handler in some codec drivers

This resulted in non-working auto-mute behavior, of course...

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Use generic parser for STAC/IDT codec driver
Takashi Iwai [Thu, 17 Jan 2013 16:07:59 +0000 (17:07 +0100)]
ALSA: hda - Use generic parser for STAC/IDT codec driver

Finally we reached here.  All codecs driver (except for CA0132, which
has really device-specific requirements) have been converted to use
the generic parser.

This patch appears bigger than others since it also involves with the
code shuffling, but mostly the cut-off of parser codes and adapt to
the generic parser flags.  Most of fixup codecs haven't been changed
but just removed a few unnecessary codes.

The only missing stuff is the SPDIF mux control.  It'll be added again
later.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoMerge branch 'test/hda-gen-parser' into test/hda-migrate
Takashi Iwai [Thu, 17 Jan 2013 15:20:14 +0000 (16:20 +0100)]
Merge branch 'test/hda-gen-parser' into test/hda-migrate

* test/hda-gen-parser:
  ALSA: hda - Improve naming rule for primary output
  ALSA: hda - Add PCM capture hook to hda_gen_spec
  ALSA: hda - Record all detected ADCs in hda_gen_spec
  ALSA: hda - Move vmaster TLV parsing to snd_hda_gen_parse_auto_config()
  ALSA: hda - Add input jack mode enum controls to generic parser
  ALSA: hda - Give more comments to hda_gen_spec flags
  ALSA: hda - Add suppress_auto_mute flag to hda_gen_spec
  ALSA: hda - Record the current speaker / LO mute status in hda_gen_spec
  ALSA: hda - Properly call automute/switch hooks at init

11 years agoALSA: hda - Improve naming rule for primary output
Takashi Iwai [Thu, 17 Jan 2013 15:18:11 +0000 (16:18 +0100)]
ALSA: hda - Improve naming rule for primary output

When the volume or mute control of the primary output is shared with
other (headphone or speaker) outputs, we shouldn't name it as a
specific output type but rather name it with the channel name or a
generic name like "PCM".

Also, this check should be performed individually for the volume and
the mute controls because some codecs may have shared volumes but
separate mute controls.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add PCM capture hook to hda_gen_spec
Takashi Iwai [Thu, 17 Jan 2013 14:57:10 +0000 (15:57 +0100)]
ALSA: hda - Add PCM capture hook to hda_gen_spec

Not only PCM playback, a hook for PCM capture would be required for
power controls in codec drivers.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Record all detected ADCs in hda_gen_spec
Takashi Iwai [Thu, 17 Jan 2013 14:53:29 +0000 (15:53 +0100)]
ALSA: hda - Record all detected ADCs in hda_gen_spec

Since the generic parser reduces the ADC list, copy the list of the
all detected ADCs and keep it.

This list can be later referred by the codec driver for finer power
controls.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Move vmaster TLV parsing to snd_hda_gen_parse_auto_config()
Takashi Iwai [Thu, 17 Jan 2013 09:25:15 +0000 (10:25 +0100)]
ALSA: hda - Move vmaster TLV parsing to snd_hda_gen_parse_auto_config()

Add vmaster_tlv[] to hda_gen_spec and store the suggested TLV data
in snd_hda_gen_parse_auto_config().  This allows the codec driver to
correct the TLV data (e.g. mute capability) before actually creating
vmaster instance.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add input jack mode enum controls to generic parser
Takashi Iwai [Thu, 17 Jan 2013 08:52:11 +0000 (09:52 +0100)]
ALSA: hda - Add input jack mode enum controls to generic parser

Just like the jack mode enum ctls for output jacks, add the support
for similar enum ctls for input pins to control the bias Vref.
The new controls will be added when spec->add_in_jack_modes is set
either by the codec driver or by a hint string.

Note that ground and 100% vrefs are excluded from the list for
simplicity, currently.  We may add a new flag to allow them, too.
But I guess it's easier to put a value override in the pinfix in such
a case.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Minor cleanup/fixes for patch_sigmatel.c fixup transition
Takashi Iwai [Thu, 17 Jan 2013 07:49:01 +0000 (08:49 +0100)]
ALSA: hda - Minor cleanup/fixes for patch_sigmatel.c fixup transition

- spec->hp_detect has to be overridden in HDA_FIXUP_ACT_PARSE, not in
  PRE_PARSE.
- Remove err == 0 check but return directly -EINVAL from
  stac92xx_parse_auto_config()
- Set spec->default_polarity for 92HD71bxx
- Some code shuffles

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Give more comments to hda_gen_spec flags
Takashi Iwai [Wed, 16 Jan 2013 17:28:38 +0000 (18:28 +0100)]
ALSA: hda - Give more comments to hda_gen_spec flags

Since we have many bit flags in hda_gen_spec, rearrange in sections
and give more comments there.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add suppress_auto_mute flag to hda_gen_spec
Takashi Iwai [Wed, 16 Jan 2013 17:20:07 +0000 (18:20 +0100)]
ALSA: hda - Add suppress_auto_mute flag to hda_gen_spec

A new flag to skip the auto-mute handling in the generic parser, just
like suppress_auto_mic flag.  It has to be set before calling
snd_hda_gen_parse_auto_config().

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Record the current speaker / LO mute status in hda_gen_spec
Takashi Iwai [Wed, 16 Jan 2013 17:18:00 +0000 (18:18 +0100)]
ALSA: hda - Record the current speaker / LO mute status in hda_gen_spec

... to be referred by the codec driver.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Properly call automute/switch hooks at init
Takashi Iwai [Wed, 16 Jan 2013 17:08:55 +0000 (18:08 +0100)]
ALSA: hda - Properly call automute/switch hooks at init

... and a little bit of code refactoring.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoMerge branch 'test/hda-gen-parser' into test/hda-migrate
Takashi Iwai [Wed, 16 Jan 2013 15:25:24 +0000 (16:25 +0100)]
Merge branch 'test/hda-gen-parser' into test/hda-migrate

* test/hda-gen-parser:
  ALSA: hda - Make sure fill_all_dac_nids is called for digital only codecs
  ALSA: hda - force different capture controls if amp caps differ
  ALSA: hda - do not add non-existing Mic boost controls
  ALSA: hda - initialize channel counts correctly
  ALSA: hda - fix wrong adc_idx in generic parser
  ALSA: hda - Check array bounds in get_input_path
  ALSA: hda - Add prefer_hp_amp flag to hda_gen_spec
  ALSA: hda - fix OOPS in hda_mark_cmd_cache_dirty
  ALSA: hda - Check pincap while parsing the configuration

11 years agoALSA: hda - Make sure fill_all_dac_nids is called for digital only codecs
David Henningsson [Wed, 16 Jan 2013 14:58:45 +0000 (15:58 +0100)]
ALSA: hda - Make sure fill_all_dac_nids is called for digital only codecs

Otherwise no PCM will be built for codecs without analog I/O.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - force different capture controls if amp caps differ
David Henningsson [Wed, 16 Jan 2013 14:58:44 +0000 (15:58 +0100)]
ALSA: hda - force different capture controls if amp caps differ

Otherwise setting the capture volume for amps will be weird and
inconsistent (it will try to set values outside the range of the
second amp based on capabilities of the first amp).

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - do not add non-existing Mic boost controls
David Henningsson [Wed, 16 Jan 2013 14:58:43 +0000 (15:58 +0100)]
ALSA: hda - do not add non-existing Mic boost controls

If the input node does not have any volume capable input amp,
don't add such a control.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - initialize channel counts correctly
David Henningsson [Wed, 16 Jan 2013 10:45:37 +0000 (11:45 +0100)]
ALSA: hda - initialize channel counts correctly

Even a single DAC can output two channels, so the channel count
is twice the number of DACs.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - fix wrong adc_idx in generic parser
David Henningsson [Wed, 16 Jan 2013 10:45:36 +0000 (11:45 +0100)]
ALSA: hda - fix wrong adc_idx in generic parser

We use knew->index for adc_idx when we create "Capture Volume" and
"Capture Switch", so use the same to retrieve adc_idx.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Check array bounds in get_input_path
David Henningsson [Wed, 16 Jan 2013 10:45:35 +0000 (11:45 +0100)]
ALSA: hda - Check array bounds in get_input_path

This gives us some additional safety.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hdsp - Remove obsolete settings functions
Adrian Knoth [Tue, 15 Jan 2013 17:52:23 +0000 (18:52 +0100)]
ALSA: hdsp - Remove obsolete settings functions

With HDSP_TOGGLE_SETTING in place, these functions are no longer
required. Removing them makes the code DRY and considerably shorter.

Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hdsp - Use HDSP_TOGGLE_SETTING to alter settings
Adrian Knoth [Tue, 15 Jan 2013 17:52:22 +0000 (18:52 +0100)]
ALSA: hdsp - Use HDSP_TOGGLE_SETTING to alter settings

HDSP_TOGGLE_SETTING and its corresponding functions allow to change
settings in the control register. Instead of using the specialised
functions, use the generic code to make the code DRY.

Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hdsp - Implement generic function to toggle settings
Adrian Knoth [Tue, 15 Jan 2013 17:52:21 +0000 (18:52 +0100)]
ALSA: hdsp - Implement generic function to toggle settings

The driver contains multiple similar functions that change only a single
bit in the control register, only the bit position varies.

This patch implements a generic function to toggle a certain bit
position that will be used to replace the old code.

Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hdsp - Fix detection for RME RPM/Multiface/Digiface ioboxes
Adrian Knoth [Tue, 15 Jan 2013 17:52:20 +0000 (18:52 +0100)]
ALSA: hdsp - Fix detection for RME RPM/Multiface/Digiface ioboxes

The current iobox detection code reportedly fails for various users, so
simply do what the Win32 driver does instead.

Patch originally by Karl Grill <kgrill@chello.at> and then modified to
comply with kernel coding guidelines + current HEAD.

Signed-off-by: Adrian Knoth <adi@drcomp.erfurt.thur.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Add prefer_hp_amp flag to hda_gen_spec
Takashi Iwai [Tue, 15 Jan 2013 17:45:53 +0000 (18:45 +0100)]
ALSA: hda - Add prefer_hp_amp flag to hda_gen_spec

Add a new flag to indicate whether HP amp is turned on as default for
speaker or line-outs, and enable this for ALC260 codec, as many
machines with this codec require the HP amp even for speakers.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - fix OOPS in hda_mark_cmd_cache_dirty
David Henningsson [Tue, 15 Jan 2013 14:27:19 +0000 (15:27 +0100)]
ALSA: hda - fix OOPS in hda_mark_cmd_cache_dirty

Obvious copy-paste error.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda/hdmi - Work around "alsactl restore" errors
Takashi Iwai [Tue, 15 Jan 2013 13:44:41 +0000 (14:44 +0100)]
ALSA: hda/hdmi - Work around "alsactl restore" errors

When "alsactl restore" is performed on HDMI codecs, it tries to
restore the channel map value since the channel map controls are
writable.  But hdmi_chmap_ctl_put() returns -EBADFD when no PCM stream
is assigned yet, and this results in an error message from alsactl.
Although the error is harmless, it's certainly ugly and can be
regarded as a regression.

As a workaround, this patch changes the return code in such a case to
be zero for making others happy.  (A slight excuse is: when the chmap
is changed through the proper alsa-lib API, the PCM status is checked
there anyway, so we don't have to be too strict in the kernel side.)

Cc: <stable@vger.kernel.org> [v3.7+]
Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda/sigmatel - Remove superfluous fields from sigmatel_spec
Takashi Iwai [Tue, 15 Jan 2013 10:22:01 +0000 (11:22 +0100)]
ALSA: hda/sigmatel - Remove superfluous fields from sigmatel_spec

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda/sigmatel - Move w/a for HP Mini 110 LED to fixup table
Takashi Iwai [Tue, 15 Jan 2013 10:20:50 +0000 (11:20 +0100)]
ALSA: hda/sigmatel - Move w/a for HP Mini 110 LED to fixup table

Instead of checking the codec SSID in find_mute_led_cfg() for HP Mini
110, set the proper spec->default_polairty in the fixup table.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda/sigmatel - Remove PCI id check in find_mute_led_cfg()
Takashi Iwai [Tue, 15 Jan 2013 10:12:18 +0000 (11:12 +0100)]
ALSA: hda/sigmatel - Remove PCI id check in find_mute_led_cfg()

The PCI vendor ID check in find_mute_led_cfg() is now superfluous
because the function is called in the fixup table entries of HP
machines.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Use standard fixup table for IDT92HD83xxx
Takashi Iwai [Mon, 14 Jan 2013 17:06:34 +0000 (18:06 +0100)]
ALSA: hda - Use standard fixup table for IDT92HD83xxx

Finally all codecs in patch_sigmatel.c have been converted to use the
standard fixup helpers.  This change also includes trivial cleanups
like the call of common setup for GPIO LED or the removal of unused
function.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Use standard fixup table for IDT92HD73xx
Takashi Iwai [Mon, 14 Jan 2013 16:30:04 +0000 (17:30 +0100)]
ALSA: hda - Use standard fixup table for IDT92HD73xx

This one is rather a simple conversion.  The fixups for Dell machines
are implemented by fixup functions in the end.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Use standard fixup table for IDT92HD71Bxx
Takashi Iwai [Mon, 14 Jan 2013 16:05:25 +0000 (17:05 +0100)]
ALSA: hda - Use standard fixup table for IDT92HD71Bxx

This time, the only intrusive changes are for HP machines.
As the mute LED fixup and the bass speaker switch are required only
for HP machines, we can move these checks into the fixup entries; the
former is applied generically to all HP machines while the latter for
only certain models.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Check pincap while parsing the configuration
Takashi Iwai [Tue, 15 Jan 2013 07:45:33 +0000 (08:45 +0100)]
ALSA: hda - Check pincap while parsing the configuration

Sometimes (or rather often) BIOS sets the pin default configurations
obviously wrongly.  Looking through these failures, one common pattern
is to enable some dead pins that are usually marked as speaker pins.
In such a case, we can skip them if the pins don't have the output
capability.

In this patch, add a check for the valid pin cap bit for each parsed
pin, and filter out when it's invalid.

The fix was originally suggested by Raymond Yau.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Use standard fixup table for STAC927x
Takashi Iwai [Mon, 14 Jan 2013 15:03:38 +0000 (16:03 +0100)]
ALSA: hda - Use standard fixup table for STAC927x

This conversion is a bit tricky.  Since STAC927x may take two
different volume-knob initialization values depending on the model, a
new flag, spec->volknob_init, is introduced to indicate whether it's
the standard volume-knob initialization or not.

Also, Dell BIOS model is now directly mapped onto the fixup table
instead of parsing in the function.  This resulted in a new model ref,
STAC_927X_DELL_BIOS_SPDIF, which is a chained entry.

Also, for reducing the fixups, virtual entries like
STAC_927X_DELL_DMIC and STAC_D965_VERBS are introduced.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
11 years agoALSA: hda - Use standard fixup table for STAC922x
Takashi Iwai [Mon, 14 Jan 2013 14:20:13 +0000 (15:20 +0100)]
ALSA: hda - Use standard fixup table for STAC922x

Rather straightforward conversion, except for ones for Intel Mac.
As Intel Mac have only unique codec SSIDs, we need to remap the fixup
again for the codec SSID and call the new fixup there.

Also, we can reduce model enums like STAC_MACMINI, which are model
aliases for backward compatibility, since they can be pointed directly
via hda_model_fixup table.

Signed-off-by: Takashi Iwai <tiwai@suse.de>