- May 28, 2009
-
-
Takashi Iwai authored
In the single_cmd mode, the hardware cannot store the multiple replies like on RIRB, thus each verb has to sync and wait for the response no matter whether the return value is needed or not. Otherwise it may result in a wrong return value from the previous verb. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- May 26, 2009
-
-
Takashi Iwai authored
In the single_cmd mode, the current driver code doesn't do any update for RIRB just for any safety reason. But, actually the RIRB and single_cmd mode don't conflict. Unsolicited events can be delivered even while using the single_cmd mode. This patch allows the handling of unsolicited events with single_cmd mode, just always checking RIRB independent from single_cmd flag. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- May 25, 2009
-
-
Takashi Iwai authored
When a codec communication error occurs, the CORB/RIRB counters should be reset first before re-issuing the verb. Simply call azx_free_cmd_io() and azx_init_cmd_io() to achieve that. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- May 24, 2009
-
-
Ozan Çağlayan authored
ASUS W5Fm needs the fixed codec-slots to probe to override the BIOS problem like W5F. Tested-by:
Alp Kılıç <kilic.alp@gmail.com> Signed-off-by:
Ozan Çağlayan <ozan@pardus.org.tr> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- May 19, 2009
-
-
Takashi Iwai authored
Add proper prefix to each kernel message in hda_intel.c. Also, avoid the unneeded prefix when CONFIG_SND_VERBOSE_PRINTK is used together with snd_print*(). Reference: bko#13207 http://bugzilla.kernel.org/show_bug.cgi?id=13207 Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- May 18, 2009
-
-
Takashi Iwai authored
The PCI entries of Creative with HD-audio class can be the devices with emu20k1/emu20k2 chips. These are supported better by snd-ctxfi driver. With that driver, the device will mutate from HD-audio to its native class. This patch adds a simple ifdef to avoid the conflict of device probe between snd-hda-intel and snd-ctxfi drivers. 1102:0009 seems still OK to be added as it has no emu20kx chip, and is a pure HD-audio device. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Apr 21, 2009
-
-
Takashi Iwai authored
The current error-recovery scheme for the codec communication errors doesn't work always well. Especially falling back to the single-command mode causes the fatal problem on many systems. In this patch, the problematic verb is re-issued again after the error (even with polling mode) instead of the single-cmd mode. The single-cmd mode will be used only when specified via the command option explicitly, mainly just for testing. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Apr 16, 2009
-
-
Takashi Iwai authored
Check the length to copy via strlen() beforehand to avoid the stack corruption, or use strlcpy() to be safe in HD-audio codes. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
Added the support for Creative SB X-Fi boards with UAA (HD-audio) mode. In the HD-audio mode, no multiple streams are supported by just it behaves like a normal HD-audio device. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Joe Perches authored
Commit fa00e046 added a new bitfield not adjacent to other bitfields in the same struct. Moved the new one. Signed-off-by:
Joe Perches <joe@perches.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Apr 13, 2009
-
-
Yang Hongyang authored
This is the second go through of the old DMA_nBIT_MASK macro,and there're not so many of them left,so I put them into one patch.I hope this is the last round. After this the definition of the old DMA_nBIT_MASK macro could be removed. Signed-off-by:
Yang Hongyang <yanghy@cn.fujitsu.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Tony Lindgren <tony@atomide.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: James Bottomley <James.Bottomley@HansenPartnership.com> Cc: Greg KH <greg@kroah.com> Cc: Takashi Iwai <tiwai@suse.de> Signed-off-by:
Andrew Morton <akpm@linux-foundation.org> Signed-off-by:
Linus Torvalds <torvalds@linux-foundation.org>
-
- Apr 10, 2009
-
-
Jaroslav Kysela authored
I found two issues with ICH7-M (it should be related to other HDA chipsets as well): - the ring buffer position is not reset when stream restarts (after xrun) - solved by moving azx_stream_reset() call from open() to prepare() callback and reset posbuf to zero (it might be filled with hw later than position() callback is called) - irq_ignore flag should be set also when ring buffer memory area is not changed in prepare() callback - this patch replaces irq_ignore with more universal check based on jiffies clock Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
- Mar 19, 2009
-
-
Takashi Iwai authored
Don't reset the stream at each prepare callback but do it only once after the open. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
So far, the prepare callback is called multiple times, BDL entries are reset and re-programmed at each time. This patch adds the check to avoid the reset of BDL entries when the same parameters are used. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Mar 18, 2009
-
-
Takashi Iwai authored
The position-buffer on ATI controllers are unreliable as well as on VIA chips, thus the same workaround for DMA position reading as VIA is useful for ATI. Cc: <stable@kernel.org> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
ATI controllers (at least some SB0600 models) appear buggy to handle 64bit DMA. As a workaround, reset GCAP bit0 and let the driver to use only 32bit DMA on these controllers. Cc: <stable@kernel.org> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Mar 02, 2009
-
-
Takashi Iwai authored
Revert the Toshiba probe_mask quirk for 2.6.29 kernel (commit 38f1df27). In the current tree, the digital-only codec is handled properly so no codec conflict should occur. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
Some Toshiba laptops have another ALC268 codec on slot#3 that conflicts with the primary codec. The codec#3 is for the digital I/O, and should be fixed by the driver, but it'd need a bunch of changes. So, let's fix the probe problem temporarily by setting the default probe_mask value. Reference: kernel bugzilla #12735 http://bugzilla.kernel.org/show_bug.cgi?id=12735 Tested-by:
Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Feb 27, 2009
-
-
peerchen authored
Added the Device IDs for MCP89 HD audio controller. Removed the IDs of MCP7B cause this chipset had been cancelled. Signed-off-by:
Peer Chen <peerchen@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Feb 16, 2009
-
-
Takashi Iwai authored
This reverts commit 32e176c1. That commit caused a regression with suspend on Thinkpad SL300. Reference: kernel bug#12711 http://bugzilla.kernel.org/show_bug.cgi?id=12711 Tested-by:
Alexandre Rostovtsev <tetromino@gmail.com> Acked-by:
Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Feb 13, 2009
-
-
Takashi Iwai authored
ASUS W5F needs the fixed codec-slots to probe to override the BIOS problem. Tested-by:
Giovanni Moser Frainer <giovanni@redix.com.br> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
Some devices have broken BIOS and they don't set the codec probe-bit properly after cleared by the driver. This makes the driver skipping the necessary codec slots. Since BIOS update isn't always easy, now the semantics of probe_mask option is changed a bit. When it contains the bit 8 (0x100), the lower bits are used to probe that slots regardless of codec-probe bits returned by the hardware. For example, probe_mask=0x103 will force to probe the codec slot #0 and #1. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Jan 12, 2009
-
-
Takashi Iwai authored
Convert from snd_card_new() to the new snd_card_create() function in sound/pci/*. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
snd-hda-intel driver used schedule_work() fot the delayed DMA pointer updates, but this has several potential problems: - it may block other eventsd works longer - it may deadlock when probing fails and flush_scheduled_work() is called during probe callback (as probe callback itself could be invoked from eventd) This patch adds an own workq for each driver instance to solve these problems. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Dec 19, 2008
-
-
Takashi Iwai authored
Added probe_only module option to hd-audio driver. This option specifies whether the driver creates and initializes the codec-parser after probing. When this option is set, the driver skips the codec parsing and initialization but gives you proc and other accesses. It's useful to see the initial codec state for debugging. The default of this value is off, so the default behavior is as same as before. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Dec 11, 2008
-
-
Takashi Iwai authored
Fixed the compile warning regarding the unused function when built with CONFIG_PM=n: sound/pci/hda/hda_intel.c:1905: warning: ‘snd_hda_codecs_inuse’ defined but not used snd_hda_codecs_inuse() is used only in the resume callback. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Dec 07, 2008
-
-
Rafael J. Wysocki authored
Move the restoration of the standard PCI configuration registers in the snd_hda_intel driver to a ->resume_early() callback executed with interrupts disabled, since doing that with interrupts enabled may lead to problems in some cases. This patch addresses the regression from 2.6.26 tracked as http://bugzilla.kernel.org/show_bug.cgi?id=12121 . Signed-off-by:
Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Nov 28, 2008
-
-
Takashi Iwai authored
Moved power_save field initialization inside a proper ifdef to fix a build error without CONFIG_SND_HDA_POWER_SAVE. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Nov 27, 2008
-
-
Takashi Iwai authored
Move power_save option into hda_intel.c, and make a field in hda_bus, instead of keeping module parameters in separate files. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
Minor clean ups: move snd_hda_codecs_inuse() into hda_intel.c and make static. Also, make snd_hda_query_supported_pcm() static as it's used only in hda_codec.c. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Nov 24, 2008
-
-
Takashi Iwai authored
Medion MD96630 has ALC268 codec on slot#2 although it's not used for any purpose. This codec conflicts with the primiary codec ALC888 on slot#0, and gives mixer errors. This patch adds a corresponding entry to probe_mask blacklist. Reference: Novell bnc#412528 https://bugzilla.novell.com/show_bug.cgi?id=412528 Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Nov 20, 2008
-
-
Wu Fengguang authored
Replace 5 free-and-return-err blocks with goto-out-free ones. This makes the main logic more outstanding. Signed-off-by:
Wu Fengguang <wfg@linux.intel.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Nov 13, 2008
-
-
Yang, Libin authored
The patch uses HD Audio PCI class code to detect AMD HD Audio cards. Signed-off-by:
Libin Yang <libin.yang@amd.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Nov 07, 2008
-
-
Takashi Iwai authored
BIOS on Dell Studio Desktop tells wrong codec probe masks. This patch gives the preset mask value to avoid invalid access. Reference: Novell bug#440907 https://bugzilla.novell.com/show_bug.cgi?id=440907 Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Nov 06, 2008
-
-
Takashi Iwai authored
When an error occurs during the codec probing, typically accessing to an non-existing codec slot, the controller chip gets often screwed up and can no longer communicate with the codecs. This patch adds a preparation phase just to probe codec addresses before actually creating codec instances. If any error occurs during this probing phase, the driver resets the controller to recover. This will (hopefully) fix the famous "single_cmd" errors. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Takashi Iwai authored
The hda_bus ops callback take struct hda_bus pointer. Also, the command callback takes the composed command word, instead of each small bits in arguments. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Oct 29, 2008
-
-
Takashi Iwai authored
The current snd-hda-intel driver seems blocking the power-off on some devices like eeepc. Although this is likely a BIOS problem, we can add a workaround by disabling IRQ lines before power-off operation. This patch adds the reboot notifier to achieve it. The detailed problem description is found in bug#11889: http://bugme.linux-foundation.org/show_bug.cgi?id=11889 Tested-by:
Luiz Fernando N. Capitulino <lcapitulino@mandriva.com.br> Cc: stable@kernel.org Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Oct 28, 2008
-
-
Takashi Iwai authored
Removed the old workaround to avoid the non-existing codec slot. The current code should work without that workaround. If any, we can add a quirk table. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Oct 21, 2008
-
-
Arjan van de Ven authored
Use the newly introduced pci_ioremap_bar() function in sound/. pci_ioremap_bar() just takes a pci device and a bar number, with the goal of making it really hard to get wrong, while also having a central place to stick sanity checks. Signed-off-by:
Arjan van de Ven <arjan@linux.intel.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- Oct 13, 2008
-
-
Takashi Iwai authored
Added the infrastructure for dynamic stream allocation on HD-audio. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-