aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-03-01ALSA: hda - remove unused clear of STATESTSDylan Reid1-5/+0
Although the code was updated last year the "#if 0" surrounding it dates back to the original git commit. The function will be moved to a new file, no need to carry the dead code. Signed-off-by: Dylan Reid <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
2014-03-01ALSA: hda - Add function pointer for disabling MSIDylan Reid2-5/+22
This is a PCI-only feature, but adding a callback for it in the chip structure breaks the PCI dependency in the RIRB code allowing the logic there to be re-used by the platform HDA driver. Signed-off-by: Dylan Reid <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
2014-03-01ALSA: hda - Use device pointer from the card instead of pciDylan Reid1-13/+14
This removes calls to get the device via PCI from other parts of the code that will be able to be re-used by the platform driver. Signed-off-by: Dylan Reid <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
2014-03-01ALSA: hda - Keep pointer to bdl_pos_fix in chip structDylan Reid2-4/+9
This will allow for a platform hda driver to use it as well. It removes the dependency on the module param from hda_intel, which will allow for azx_setup_periods to be shared. Signed-off-by: Dylan Reid <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
2014-03-01ALSA: hda - Allow different ops to read/write registersDylan Reid2-70/+138
The forthcoming platform hda driver needs to override the way registers are read and written. In preparation for that, introduce a reg_ops struct that can be implemented differently by the new driver. Change the existing macros to use the new structure, and move them to hda_priv.h where they will be accessible to both PCI and platform drivers. Start with register access, but later commits will add more ops that differ between PCI and platform. Signed-off-by: Dylan Reid <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
2014-03-01ALSA: hda - Move some definitions to new hda_priv.hDylan Reid2-365/+399
Later commits adding support for hda platform drivers will want to use the same defines and structures. Put them in a place reachable by both hda_intel and the new platform driver. This is a mostly a direct copy with a few whitespace and comment changes to make checkpatch happy. Signed-off-by: Dylan Reid <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
2014-02-28ALSA: hda - Fix CORB reset to follow specificationDavid Henningsson1-1/+23
According to the HDA spec, we must write 1 to bit 15 on a CORBRP reset, read back 1, then write 0, then read back 0. This must be done while the DMA is not running. We accidentaly ended up writing back the 0 by using a writel instead of a writew to CORBWP. This caused occasional controller failure on Bay Trail hardware. [replaced error messages with dev_err() by tiwai] Signed-off-by: David Henningsson <[email protected]> Signed-off-by: Takashi Iwai <[email protected]>
2014-02-28ALSA: hda - Fix registration of beep input deviceTakashi Iwai5-13/+39
The beep input device is registered via input_register_device(), but this is called in snd_hda_attach_beep_device() where the sound devices aren't registered yet. This leads to the binding to non-existing object, thus results in failure. And, even if the binding worked (against the PCI object), it's still racy; the input device appears before the sound objects. For fixing this, register the input device properly at dev_register ops of the codec object it's bound with. Also, call snd_hda_detach_beep_device() at dev_disconnection so that it's detached at the right timing. As a bonus, since it's called in the codec's ops, we can get rid of the further call from the other codec drivers. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-28Merge branch 'topic/cvt-dev-prints' into for-nextTakashi Iwai107-2117/+2520
This merges the bunch of changes over pci and usb sound drivers to convert to dev_err() and co.
2014-02-27ALSA: hda/sigmatel - Allow auto-switching for dock line-in of HP laptopsTakashi Iwai1-0/+3
Many HP laptops with STAC codecs have a docking station port and BIOS sets the pins for the input on the dock as a line in. Because the generic parser doesn't handle a line in pin as auto-switchable, this resulted in the manual capture source selection on these laptops. However, from the usability POV, the automatic switching is easier. This patch adds the line_in_auto_switch hint in the fixup function for these laptops. Even if no dock port is present, this should be harmless as the generic parser allows the auto-switching only in a limited situation (all three pins are located in different positions). Signed-off-by: Takashi Iwai <[email protected]>
2014-02-27ALSA: Move EXPORT_SYMBOL() in appropriate placesTakashi Iwai2-20/+18
Just a cleanup to follow the standard coding style. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-27ALSA: hda - Make codec object as a parent for input beep devicesTakashi Iwai1-1/+1
Instead of the controller, the new codec object is assigned as a parent for the hd-audio beep input devices, just like already done for PCM and hwdep. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: 6fire: Use standard printk helpersTakashi Iwai6-72/+86
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: usb-audio: Use standard printk helpersTakashi Iwai11-254/+325
Convert with dev_err() and co from snd_printk(), etc. As there are too deep indirections (e.g. ep->chip->dev->dev), a few new local macros, usb_audio_err() & co, are introduced. Also, the device numbers in some messages are dropped, as they are shown in the prefix automatically. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: ymfpci: Use standard printk helpersTakashi Iwai2-18/+30
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: vx222: Use standard printk helpersTakashi Iwai2-13/+13
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: trident: Use standard printk helpersTakashi Iwai1-41/+48
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: rme9652: Use standard printk helpersTakashi Iwai1-6/+13
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: hdspm: Use standard printk helpersTakashi Iwai1-56/+69
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: hdsp: Use standard printk helpersTakashi Iwai1-49/+79
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: pcxhr: Use standard printk helpersTakashi Iwai5-98/+131
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: oxygen: Use standard printk helpersTakashi Iwai4-12/+12
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: nm256: Use standard printk helpersTakashi Iwai1-32/+43
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: mixart: Use standard printk helpersTakashi Iwai4-85/+163
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: lx6464es: Use standard printk helpersTakashi Iwai2-117/+129
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: lola: Use standard printk helpersTakashi Iwai4-49/+55
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: ice17xx: Use standard printk helpersTakashi Iwai8-59/+76
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: emu10k1: Use standard printk helpersTakashi Iwai13-93/+137
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: emu10k1x: Use standard printk helpersTakashi Iwai1-9/+18
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: echoaudio: Use standard printk helpersTakashi Iwai3-15/+18
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: cs46xx: Use standard printk helpersTakashi Iwai3-123/+203
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: cs5535audio: Use standard printk helpersTakashi Iwai4-21/+25
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: ca0106: Use standard printk helpersTakashi Iwai2-39/+49
Convert with dev_err() and co from snd_printk(), etc. A couple of prints are difficult to convert with dev_err() so they are converted to pr_err() at least. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: aw2: Use standard printk helpersTakashi Iwai2-26/+22
Convert with dev_err() and co from snd_printk(), etc. A couple of prints are difficult to convert with dev_err() so they are converted to pr_err() at least. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: ali5451: Use standard printk helpersTakashi Iwai1-80/+68
Convert with dev_err() and co from snd_printk(), etc. Some debug prints are replaced with dev_dbg(), too. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: ac97: Use standard printk helpersTakashi Iwai3-17/+46
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: via82xx_modem: Use standard printk helpersTakashi Iwai1-20/+25
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: via82xx: Use standard printk helpersTakashi Iwai1-30/+39
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: sonicvibes: Use standard printk helpersTakashi Iwai1-111/+124
Convert with dev_err() and co from snd_printk(), etc. The debug prints are also reformatted to suit with dev_dbg(). Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: rme96: Use standard printk helpersTakashi Iwai1-5/+7
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: rme32: Use standard printk helpersTakashi Iwai1-2/+3
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: maestro3: Use standard printk helpersTakashi Iwai1-18/+19
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: intel8x0m: Use standard printk helpersTakashi Iwai1-19/+27
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: intel8x0: Use standard printk helpersTakashi Iwai1-37/+49
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: fm801: Use standard printk helpersTakashi Iwai1-13/+13
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: es1968: Use standard printk helpersTakashi Iwai1-22/+27
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: es1938: Use standard printk helpersTakashi Iwai1-42/+32
Convert with dev_err() and co from snd_printk(), etc. Some debug prints are replaced with dev_dbg(), too. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: ens137x: Use standard printk helpersTakashi Iwai1-18/+21
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: cs5530: Use standard printk helpersTakashi Iwai1-12/+11
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>
2014-02-26ALSA: cs4281: Use standard printk helpersTakashi Iwai1-17/+27
Convert with dev_err() and co from snd_printk(), etc. Signed-off-by: Takashi Iwai <[email protected]>