aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* ALSA: hda - Use standard fixup table for STAC9872Takashi Iwai2013-01-14
| | | | | | Now for STAC9872. It has a small fixup table, fortunately. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Use standard fixup table for STAC925xTakashi Iwai2013-01-14
| | | | | | | Similar like the previous commit, convert patch_stac925x() to use the standard fixup table. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Use standard fixup table for STAC9200Takashi Iwai2013-01-14
| | | | | | | Convert patch_stac9200() to use the standard fixup table instead of manual switch-case with board_config. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* Merge branch 'test/hda-gen-parser' into test/hda-migrateTakashi Iwai2013-01-14
|\ | | | | | | | | * test/hda-gen-parser: ALSA: hda - Add capture_switch_hook to generic parser
| * ALSA: hda - Add capture_switch_hook to generic parserTakashi Iwai2013-01-14
| | | | | | | | | | | | | | Add a hook for the capture mixer switch. This will be used by IDT codecs for controlling the mic-mute LED. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* | ALSA: hda - Use generic parser for VIA codec driverTakashi Iwai2013-01-12
| | | | | | | | | | | | | | | | Yet another step forward. As all features for VIA codecs have been implemented in the generic driver, we can move on to migrate the VIA codec parser, too. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* | ALSA: hda - Add generic parser support to Analog Device codec driverTakashi Iwai2013-01-12
| | | | | | | | | | | | | | | | | | | | | | | | This patch adds the support for the generic auto-parser to AD codec driver. For AD1988, the old code is replaced simply with the new generic parser. For other codecs, new model "auto" is added and directed to use the generic parser. No fixup codes have been implemented yet as of now. Eventually we'd replace each static quirk with the generic parser + fixup. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* | ALSA: hda - Rearrange for dropping static quirk codes in Coexant driverTakashi Iwai2013-01-12
| | | | | | | | | | | | | | | | | | | | Just shuffle the codes and add ifdefs for testing to drop the static quirk codes from patch_conexant.c. By commenting out ENABLE_CXT_STATIC_QUIRKS define at the beginning of the file, you can disable the whole static codes. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* | ALSA: hda - Use generic parser in Conexant codec driverTakashi Iwai2013-01-12
| | | | | | | | | | | | | | | | ... and drop most of own parser code. It doesn't replace any present static quirks, though. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* | ALSA: hda - Use generic parser for Cirrus codec driverTakashi Iwai2013-01-12
|/ | | | | | | | | | | | This time, the target is Cirrus codec. Its parser is a subset of generic parser, so we can migrate fully with it now. The only tricky part is the handling of SPDIF automute. Cirrus driver sets the SPDIF out plug over the headphone. As a workaround, set spec->gen.master_mute for toggling the headphone (and other) mute. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Use generic parser for CA0110 codecTakashi Iwai2013-01-12
| | | | | | | | CA0110 codec is a fairly straightforward hardware implementation, and we can use the generic parser almost as is. Just set spec->multi_cap_vol flag to follow the current behavior. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Use generic codec parser for C-Media codecsTakashi Iwai2013-01-12
| | | | | | | | Replace the old parser code for C-Media auto-parser with the latest generic parser. For compatibility reason, the static bindings are still left, but they could be cleaned up in future. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Remove superfluous kconfig dependsTakashi Iwai2013-01-12
| | | | Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Allow user to give hints for codec parser behaviorTakashi Iwai2013-01-12
| | | | | | | Through the hints via sysfs or patch, user can set specific behavior flags for the generic parser now. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add snd_hda_get_int_hint() helper functionTakashi Iwai2013-01-12
| | | | | | It'll be used in hda_generic.c, too. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Protect user-defined arrays via mutexTakashi Iwai2013-01-12
| | | | | | | | The pincfgs, init_verbs and hints set by sysfs or patch might be changed dynamically on the fly, thus we need to protect it. Add a simple protection via a mutex. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Generic mute LED implementation for HP laptopsTakashi Iwai2013-01-12
| | | | | | | | | | | | | | As David Henningsson recently suggested, some HP laptops use an unused mic pin for controlling a mute LED, and this information is provided via DMI string "HP_Mute_LED_X_Y" string. This patch adds the generic support for such cases, as we've already done in patch_sigmatel.c. This is applied generically to all devices with ID 0x103c. But as we don't know whether the device 103c:1586 really contains HP_Mute_LED_X_Y DMI string, still keep the static setup for this device using the mic2 pin 0x19. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Fix the timing for some fixupsTakashi Iwai2013-01-12
| | | | | | | Some fixups such as setting the flags influencing on the parser behavior should be applied before actually parsing the tree. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Add a fixup for FSC S7020 laptopTakashi Iwai2013-01-12
| | | | | | | Try to recover from the regression: set the HP amp for the speaker and add the hp jack mode enum as default. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add output jack mode enum controlsTakashi Iwai2013-01-12
| | | | | | | | Add the enum controls for changing the headphone amp bits of output jacks, such as "Headphone Jack Mode". This feature isn't enabled as default, so far, unless spec->add_out_jack_modes flag is set. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Update automute / automic upon jack retaskingTakashi Iwai2013-01-12
| | | | | | | | When a multi-io jack is switched to another direction, call the automute and autoswitch update functions, as this jack won't be used as the headphone or the mic jack that may turn off others. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add a new fixup type to override pinctl valuesTakashi Iwai2013-01-12
| | | | | | | | | | | | | Add a new fixup type, HDA_FIXUP_PINCTLS, for overriding the pinctl values of the given pins. It takes the same array of struct pintbl like HDA_FIXUP_PINS, but each entry contains the pinctl value instead of the pin default config value. This patch also replaces the corresponding codes in patch_realtek.c. Without this change, the direct call of verbs may be overridden again by the later call of pinctl restoration by the driver. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Read the cached pinctl value in fixupsTakashi Iwai2013-01-12
| | | | | | ... instead of reading the value from the codec at each time. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Drop aliases for old fixupsTakashi Iwai2013-01-12
| | | | | | | | Now the whole codebase has been changed from the earlier kernels, it makes little sense to keep these aliases. Simply replace with the official names. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Avoid auto-mute or auto-mic of retasked jacksTakashi Iwai2013-01-12
| | | | | | | | | When a jack is retasked as a different direction (e.g. a mic jack is used as a CLFE output), such a jack shouldn't be counted as the target for the automatic jack switching. Skip the automute or the autoswitch when the current pinctl direction is different from what we suppose. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Manage current pinctl values in generic parserTakashi Iwai2013-01-12
| | | | | | | | | | | | | | | Use the new pin target accessors for managing the current pinctl values in the generic parser. The pinctl values of all active pins are once determined at the initialization phase, and stored via snd_hda_codec_set_pin_target(). This will be referred again in the codec init or resume phase to set the actual pinctl. This value is kept while the auto-mute. When a line-out or a speaker pin is muted by auto-mute, the driver simply disables the pin, but it doesn't touch the cached pinctl target value. Upon unmute, this value is used to restore the original pinctl in return. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - More strict correction of invalid pinctl bitsTakashi Iwai2013-01-12
| | | | | | | | | | | | Check more strictly about the validity of pinctl values in snd_hda_set_pin_ctl() and correct the wrong bits automatically. Also provide the helper function to correct pinctl bits to codec drivers. This automatically fixes the invalid pinctl writes that are found in a few Realtek fixups for NID 0x0f amp like ASUS A6Rp. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add helper functions to cache the current pinctl targetTakashi Iwai2013-01-12
| | | | | | | We already have the list of whole pin widgets and there is an unused space in the list; let's use it for caching the current pinctl value. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Clear the dropped paths properlyTakashi Iwai2013-01-12
| | | | | | | | | | When a DAC is reassigned from surrounds to front or ADCs are reduced due to incomplete imux, we clear the path indices but the path instances remain as is. Since the paths might be still referred through the whole path list parsing (e.g. is_active_nid()), we should clear these path instances as well. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Allow aamix as a capture sourceTakashi Iwai2013-01-12
| | | | | | | | | Since some codecs can choose the aamix as a capture source, we should support it as well. When spec->add_stereo_mix_input flag is set, the parser checks the availability of aamix as the input source, and adds the paths automatically when possible. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Fix inconsistent input_paths after ADC reductionTakashi Iwai2013-01-12
| | | | | | | | | | | | In the current parser code, the input_paths[] may become inconsistent when some of detected ADCs are dropped due to incomplete inputs, since the driver rearranges only adc_nids[] but doesn't touch input_paths[]. This patch fixes the issue, and also it optimizes the reachability checks by simply referring to the parsed input_paths[] instead of calling is_reachable() again for each connection. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Return "Headphone Mic" from hda_get_autocfg_input_label()Takashi Iwai2013-01-12
| | | | | | | | Instead of handling special cases in the caller side, give a proper name string "Headphone Mic" from hda_get_autocfg_input_label() when the headhpone jack pin is specified as an input. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Exclude aamix from capture pathsTakashi Iwai2013-01-12
| | | | | | | The capture paths shouldn't contain the analog loopback mixer. Pass a proper argument to exclude the aamix NID. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add a flag to suppress mic auto-switchTakashi Iwai2013-01-12
| | | | | | | Add a new flag spec->suppress_mic_auto_switch for codecs that don't support unsol events properly like VT1708. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Handle BOTH jack port as a fixed outputTakashi Iwai2013-01-12
| | | | | | | | | | | When the default config value shows the connection AC_JACK_PORT_BOTH, it's better to handle it as a speaker pin. This makes the behavior consistent in snd_hda_get_pin_label() and snd_hda_parse_pin_defcfg(). There are only few old machines showing this attribute, and all of them are actually fixed speaker pins, as far as I know. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Re-define snd_hda_parse_nid_path()Takashi Iwai2013-01-12
| | | | | | | | | | | | This commit modifies the definition of snd_hda_parse_nid_path() slightly, now with_aa_mix argument is changed to anchor_nid, so that it can handle any NID generically as an anchor point to include or exclude. The with_aa_mix field in struct nid_path is removed again by this change. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Manage input paths via path indicesTakashi Iwai2013-01-12
| | | | | | | ... like we did for output and loopback paths. It makes the code slightly easier. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Fix multi-io channel mode managementTakashi Iwai2013-01-12
| | | | | | | | | | | The multi-io channels can vary not only from 1 to 6 but also may vary from 6 to 8 or such. At the same time, there are more speaker pins available than the primary output pins. So, we need three variables to check: the minimum channel counts for primary outputs, the current channel counts for primary outputs, and the minimum channel counts for all outputs. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Don't set up active streams twiceTakashi Iwai2013-01-12
| | | | | | | We don't have to set up a stream that has been already set up previously. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Remove unused dac reference in create_multi_out_ctls()Takashi Iwai2013-01-12
| | | | | | Remove useless code. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Use direct path reference in assign_out_path_ctls()Takashi Iwai2013-01-12
| | | | | | | | Instead of looking through paths with the dac -> pin connection at each time, just pass the already parsed path index to assign_out_path_ctls(). This simplifies the code a bit. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Clear path indices properly at each re-evaluationTakashi Iwai2013-01-12
| | | | | | | | The path indices must be reset at each evaluation of DAC assignment. Otherwise the badness value will be wrongly calculated and mixers may be inconsistently assigned. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add brief comments to exported snd_hda_gen_*_() functionsTakashi Iwai2013-01-12
| | | | Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Remove dead HDA_CTL_BIND_VOL and HDA_CTL_BIND_SW codesTakashi Iwai2013-01-12
| | | | Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add snd_hda_gen_free() and snd_hda_gen_check_power_status()Takashi Iwai2013-01-12
| | | | | | | Just to remove duplicated codes. Also fixed EXPORT_SYMBOL() in hda_generic.c. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Allow jack detection when polling is enabledTakashi Iwai2013-01-12
| | | | | | | | Let is_jack_detectable() return true when the jack polling is enabled for the codec. VT1708 uses the polling explicitly so we need to allow it. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add pcm_playback_hook to hda_gen_specTakashi Iwai2013-01-12
| | | | | | | | The new hook which is called at each PCM playback ops. It can be used to control the codec-specific power-saving feature in each codec driver. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Drop bind-volume workaroundTakashi Iwai2013-01-12
| | | | | | | | | | | | | | | | | | | | | | | | The bind-volume workaround was introduced for simplifying the mixer abstraction in the case where one or more pins of multiple outputs lack of individual volume controls. This was essentially the case like Acer Aspire 5935, which has 5.1 speakers and 5.1 (multi-io) jacks although there are 5 DACs, so some of them must share a DAC. However, the recent code rewrite changed the DAC assignment policy to share with the same channel instead of binding to the front, thus binding the volumes for all channels makes little sense now, rather it's confusing. So in this patch, the ugly workaround is finally dropped and simply create the volume control corresponding to the parsed path position. For dual headphones or 2.1 speakers with a shared volume control, it's anyway bound to the same DAC if needed, so this change shouldn't bring any practical difference. And, as a good bonus, we can cut off the whole code handling the bind volume elements. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Drop unneeded pin argument from set_output_and_unmute()Takashi Iwai2013-01-12
| | | | | | Just a minor refactoring. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Add missing slave names for Speaker Surround, etcTakashi Iwai2013-01-12
| | | | Signed-off-by: Takashi Iwai <tiwai@suse.de>