1. 03 3月, 2014 1 次提交
  2. 03 2月, 2014 2 次提交
  3. 18 1月, 2014 2 次提交
  4. 15 1月, 2014 1 次提交
  5. 09 1月, 2014 1 次提交
    • T
      ALSA: Remove memory reservation code from memalloc helper · 47d98c02
      Takashi Iwai 提交于
      Nowadays we have CMA for obtaining the contiguous memory pages
      efficiently.  Let's kill the old kludge for reserving the memory pages
      for large buffers.  It was rarely useful (only for preserving pages
      among module reloading or a little help by an early boot scripting),
      used only by a couple of drivers, and yet it gives too much ugliness
      than its benefit.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      47d98c02
  6. 08 1月, 2014 3 次提交
  7. 31 12月, 2013 1 次提交
  8. 30 12月, 2013 1 次提交
  9. 19 12月, 2013 1 次提交
    • S
      ASoC: SPEAr: remove custom DMA alloc compat function · e1771bcf
      Stephen Warren 提交于
      spear_pcm_request_chan() is almost identical to
      dmaengine_pcm_compat_request_channel(), with the exception that the
      latter:
      
      a) Assumes that the DAI DMA data is a struct snd_dmaengine_dai_dma_data
         pointer rather than some custom type.
      
      b) dma_data->filter_data rather than dma_data should be passed to
         snd_dmaengine_pcm_request_channel() as the filter data.
      
      Make minor changes to the SPEAr DAI drivers so that those two conditions
      are met. This allows removal of the custom .compat_request_channel().
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      e1771bcf
  10. 10 12月, 2013 4 次提交
    • S
      ALSA: memalloc.h - fix wrong truncation of dma_addr_t · 932e9dec
      Stefano Panella 提交于
      When running a 32bit kernel the hda_intel driver is still reporting
      a 64bit dma_mask if the HW supports it.
      
      From sound/pci/hda/hda_intel.c:
      
              /* allow 64bit DMA address if supported by H/W */
              if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
                      pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
              else {
                      pci_set_dma_mask(pci, DMA_BIT_MASK(32));
                      pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
              }
      
      which means when there is a call to dma_alloc_coherent from
      snd_malloc_dev_pages a machine address bigger than 32bit can be returned.
      This can be true in particular if running  the 32bit kernel as a pv dom0
      under the Xen Hypervisor or PAE on bare metal.
      
      The problem is that when calling setup_bdle to program the BLE the
      dma_addr_t returned from the dma_alloc_coherent is wrongly truncated
      from snd_sgbuf_get_addr if running a 32bit kernel:
      
      static inline dma_addr_t snd_sgbuf_get_addr(struct snd_dma_buffer *dmab,
                                                 size_t offset)
      {
              struct snd_sg_buf *sgbuf = dmab->private_data;
              dma_addr_t addr = sgbuf->table[offset >> PAGE_SHIFT].addr;
              addr &= PAGE_MASK;
              return addr + offset % PAGE_SIZE;
      }
      
      where PAGE_MASK in a 32bit kernel is zeroing the upper 32bit af addr.
      
      Without this patch the HW will fetch the 32bit truncated address,
      which is not the one obtained from dma_alloc_coherent and will result
      to a non working audio but can corrupt host memory at a random location.
      
      The current patch apply to v3.13-rc3-74-g6c843f5
      Signed-off-by: NStefano Panella <stefano.panella@citrix.com>
      Reviewed-by: NFrediano Ziglio <frediano.ziglio@citrix.com>
      Cc: <stable@vger.kernel.org>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      932e9dec
    • K
      ARM: shmobile: bockw: remove unused RSND_SSI_CLK_FROM_ADG · c653033b
      Kuninori Morimoto 提交于
      92eba04e
      (ASoC: rcar: remove RSND_SSI_CLK_FROM_ADG) removed
      RSND_SSI_CLK_FROM_ADG, it is no longer needed
      Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Acked-by: NMark Brown <broonie@linaro.org>
      Signed-off-by: NSimon Horman <horms+renesas@verge.net.au>
      c653033b
    • S
      ASoC: dmaengine: add custom DMA config to snd_dmaengine_pcm_config · 194c7dea
      Stephen Warren 提交于
      Add fields to struct snd_dmaengine_pcm_config to allow custom:
      
      - DMA channel names.
      
        This is useful when the default "tx" and "rx" channel names don't
        apply, for example if a HW module supports multiple channels, each
        having different DMA channel names. This is the case with the FIFOs
        in Tegra's AHUB. This new facility can replace
        SND_DMAENGINE_PCM_FLAG_CUSTOM_CHANNEL_NAME.
      
      - DMA device
      
        This allows requesting DMA channels for a device other than the device
        which is registering the "PCM" driver. This is quite unusual, but is
        currently useful on Tegra. In much HW, and in Tegra20, each DAI HW
        module contains its own FIFOs which DMA writes to. However, in Tegra30,
        the DMA FIFOs were split out AHUB HW module, which then routes the data
        through a cross-bar, and into the DAI HW modules. However, the current
        ASoC driver structure does not expose this detail, and acts as if the
        FIFOs are still part of the DAI HW modules. Consequently, the "PCM"
        driver is registered with the DAI HW module, yet the DMA channels must
        be looked up in the AHUB HW module's device tree node. This new config
        field allows that to happen. Eventually, the Tegra drivers will be
        reworked to fully expose the AHUB, and this config field can be
        removed.
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Acked-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      194c7dea
    • T
      ALSA: hda - Split verb definitions into sound/hda_verbs.h · ed326363
      Takashi Iwai 提交于
      Since there are more HD-audio compatible codecs, move the definitions
      of HD-audio verbs into common header location, include/sound, so that
      it can be included cleanly from other drivers than HD-audio driver.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      ed326363
  11. 28 11月, 2013 3 次提交
  12. 26 11月, 2013 1 次提交
  13. 24 11月, 2013 2 次提交
    • S
      ASoC: dapm: Use SND_SOC_DAPM_INIT_REG_VAL in SND_SOC_DAPM_MUX · faf6615b
      Stephen Warren 提交于
      SND_SOC_DAPM_MUX() doesn't currently initialize the .mask field. This
      results in the mux never affecting HW, since no bits are ever set or
      cleared. Fix SND_SOC_DAPM_MUX() to use SND_SOC_DAPM_INIT_REG_VAL() to
      set up the reg, shift, on_val, and off_val fields like almost all other
      SND_SOC_xxx() macros. It looks like this was a "typo" in the fixed
      commit linked below.
      
      This makes the speakers on the Toshiba AC100 (PAZ00) laptop work again.
      
      Fixes: de9ba98b ("ASoC: dapm: Make widget power register settings more flexible")
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      Cc: <stable@vger.kernel.org> # v3.12+
      faf6615b
    • N
      ASoC: soc-pcm: add symmetry for channels and sample bits · 3635bf09
      Nicolin Chen 提交于
      Some SoCs can only work in mono or stereo mode at one time. So if
      we let them capture a mono stream while playing a stereo stream,
      there might be a problem occur to one of these two streams: double
      paced or slowed down.
      
      In soc-pcm.c, we have soc_pcm_apply_symmetry() to apply the rate
      symmetry. But we don't have one for channels.
      
      Likewise, we can treat symmetric_rate as a solution for those SoCs
      or CODECs which can not handle asymmetrical LRCLK. But it's also
      impossible for them to handle asymmetrical BCLK. And accodring to
      BCLK = LRCLK * channel number * slot size(fixed or sample bits),
      sample bits might also be a problem if they are not using a fixed
      slot size.
      
      Thus, this patch applys symmetry for channels and sample bits.
      
      Meanwhile, there might be a race between two substreams if starting
      simultaneously. Previously, we only added warning to compalin but
      still using conservative way to let it carry on. However, this patch
      rejects the second stream with any unmatched parameter to make sure
      the first existing stream won't be broken.
      Signed-off-by: NNicolin Chen <b42378@freescale.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      3635bf09
  14. 20 11月, 2013 1 次提交
  15. 07 11月, 2013 1 次提交
    • V
      ALSA: compress: fix drain calls blocking other compress functions (v6) · f44f2a54
      Vinod Koul 提交于
      The drain and drain_notify callback were blocked by low level driver
      until the draining was complete. Due to this being invoked with big
      fat mutex held, others ops like reading timestamp, calling pause, drop
      were blocked.
      
      So to fix this we add a new snd_compr_drain_notify() API. This would
      be required to be invoked by low level driver when drain or partial
      drain has been completed by the DSP. Thus we make the drain and
      partial_drain callback as non blocking and driver returns immediately
      after notifying DSP.  The waiting is done while releasing the lock so
      that other ops can go ahead.
      
      [ The commit 917f4b5c was wrongly applied from the preliminary
        patch.  This commit corrects to the final version.
        Sorry for inconvenience!  -- tiwai ]
      Signed-off-by: NVinod Koul <vinod.koul@intel.com>
      CC: stable@vger.kernel.org
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      f44f2a54
  16. 29 10月, 2013 1 次提交
    • T
      ALSA: ak4114: Fix wrong register array size · e12483e0
      Takashi Iwai 提交于
      The size of the register cache array is actually 6 instead of 7,
      as it caches up to AK4114_REG_INT1_MASK.  This resulted in unexpected
      access out of array range, although most of them aren't so serious
      (just reading one more byte on the stack at snd_ak4114_create()).
      
      Also, the check of cache size was wrongly done by checking with
      sizeof() instead of ARRAY_SIZE().  Fixed this together.
      
      (And yes, hardcoded numbers are bad, but I keep the coding style as is
       for making it clear what this patch actually does.)
      
      Spotted by coverity among several CIDs, e.g. 711621.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      e12483e0
  17. 25 10月, 2013 1 次提交
  18. 24 10月, 2013 4 次提交
  19. 21 10月, 2013 2 次提交
  20. 20 10月, 2013 1 次提交
    • L
      ASoC: dmaengine-pcm: Add support for querying DMA capabilities · c0de42bf
      Lars-Peter Clausen 提交于
      Currently each platform making use the the generic dmaengine PCM driver still
      needs to provide a custom snd_pcm_hardware struct which specifies the
      capabilities of the DMA controller, e.g. the maximum period size that can be
      supported. This patch adds code which uses the newly introduced
      dma_get_slave_caps() API to query this information from the dmaengine driver.
      The new code path will only be taken if the 'pcm_hardware' field of the
      snd_dmaengine_pcm_config struct is NULL.
      
      The patch also introduces a new 'fifo_size' field to the
      snd_dmaengine_dai_dma_data struct which is used to initialize the
      snd_pcm_hardware 'fifo_size' field and needs to be set by the DAI driver.
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      c0de42bf
  21. 18 10月, 2013 2 次提交
  22. 15 10月, 2013 1 次提交
  23. 12 10月, 2013 1 次提交
  24. 07 10月, 2013 1 次提交
  25. 17 9月, 2013 1 次提交
    • K
      ASoC: add .of_xlate_dai_name on snd_soc_component_driver · cb470087
      Kuninori Morimoto 提交于
      ASoC sound driver requires CPU/CODEC drivers for probing,
      and each CPU/CODEC has some DAI on it.
      Then, "dai name matching" have been used to identify
      CPU-CODEC DAI pair on ASoC.
      
      But, the "dai port number matching" is now required from DeviceTree.
      The solution of this issue is to replace
      the dai port number into dai name.
      Now, CPU/CODEC are based on struct snd_soc_component,
      and it can care above as common issue.
      
      This patch adds .of_xlate_dai_name callback interface
      on struct snd_soc_component_driver,
      and snd_soc_of_get_dai_name() which is using .of_xlate_dai_name.
      
      Then, #sound-dai-cells which enables DAI specifier is required
      on CPU/CODEC device tree properties.
      Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      cb470087