1. 06 8月, 2009 1 次提交
  2. 12 6月, 2009 1 次提交
  3. 28 5月, 2009 1 次提交
  4. 23 4月, 2009 2 次提交
  5. 17 4月, 2009 1 次提交
  6. 16 4月, 2009 1 次提交
  7. 13 4月, 2009 1 次提交
    • D
      ASoC: pxa-ssp.c fix clock/frame invert · a8205320
      Daniel Ribeiro 提交于
      SCMODE(0): Data Driven (Falling), Data Sampled (Rising), Idle State (Low)
      SCMODE(1): Data Driven (Rising), Data Sampled (Falling), Idle State (Low)
      SCMODE(2): Data Driven (Rising), Data Sampled (Falling), Idle State (High)
      SCMODE(3): Data Driven (Falling), Data Sampled (Rising), Idle State (High)
      
      SCMODE(3) does not invert the clock polarity compared to the default SCMODE(0).
      
      This patch also adds all possible NF/IF, NB/IB combinations to the DSP_A and
      DSP_B modes.
      Signed-off-by: NDaniel Ribeiro <drwyrm@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      a8205320
  8. 02 4月, 2009 1 次提交
  9. 14 3月, 2009 1 次提交
  10. 13 3月, 2009 1 次提交
  11. 11 3月, 2009 1 次提交
  12. 09 3月, 2009 1 次提交
    • E
      [ARM] pxa: move DMA registers definitions into <mach/dma.h> · 7ebc8d56
      Eric Miao 提交于
      1. Driver code where pxa_request_dma() is called will most likely
         reference DMA registers as well,  and it is really unnecessary
         to include pxa-regs.h just for this. Move the definitions into
         <mach/dma.h> and make relevant drivers include it instead of
         <mach/pxa-regs.h>.
      
      2. Introduce DMAC_REGS_VIRT as the virtual address base for these
         DMA registers. This allows later processors to re-use the same
         IP while registers may start at different I/O address.
      Signed-off-by: NEric Miao <eric.miao@marvell.com>
      7ebc8d56
  13. 06 3月, 2009 1 次提交
  14. 05 3月, 2009 1 次提交
  15. 03 3月, 2009 1 次提交
  16. 04 2月, 2009 1 次提交
    • P
      ASoC: pxa-ssp: fix SSP port request · 0664678a
      Philipp Zabel 提交于
      PXA2xx/3xx SSP ports start from 1, not 0. Thus, the probe function
      requested the wrong SSP port. Correcting this unveiled another bug
      where ssp_init tries to request the already-requested SSP port again.
      So this patch replaces the ssp_init/exit calls with their internals
      from mach-pxa/ssp.c, leaving out the redundant ssp_request and the
      unneeded IRQ request. Effectively, that leaves us with not much more
      than enabling/disabling the SSP clock.
      Signed-off-by: NPhilipp Zabel <philipp.zabel@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      0664678a
  17. 10 12月, 2008 1 次提交
  18. 09 12月, 2008 1 次提交
    • M
      ASoC: Register platform DAIs · 3f4b783c
      Mark Brown 提交于
      Register all platform DAIs with the core.  In line with current behaviour
      this is done at module probe time rather than when the devices are probed
      (since currently that only happens as the entire ASoC card is registered
      except for those drivers that currently implement some kind of hotplug).
      Since the core currently ignores DAI registration this has no practical
      effect.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      3f4b783c
  19. 04 12月, 2008 1 次提交
  20. 25 11月, 2008 1 次提交
    • M
      ASoC: Remove DAI type information · 3ba9e10a
      Mark Brown 提交于
      DAI type information is only ever used within ASoC in order to special
      case AC97 and for diagnostic purposes. Since modern CPUs and codecs
      support multi function DAIs which can be configured for several modes
      it is more trouble than it's worth to maintain anything other than a
      flag identifying AC97 DAIs so remove the type field and replace it with
      an ac97_control flag.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      3ba9e10a
  21. 21 11月, 2008 1 次提交
    • M
      ASoC: Merge snd_soc_ops into snd_soc_dai_ops · dee89c4d
      Mark Brown 提交于
      Liam Girdwood's ASoC v2 work avoids having two different ops structures
      for DAIs by merging the members of struct snd_soc_ops into struct
      snd_soc_dai_ops, allowing per DAI configuration for everything.
      Backport this change.
      
      This paves the way for future work allowing any combination of DAIs to
      be connected rather than having fixed purpose CODEC and CPU DAIs and
      only allowing CODEC<->CPU interconnections.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      dee89c4d
  22. 30 10月, 2008 1 次提交
    • M
      ASoC: Add PXA SSP support · 1b340bd7
      Mark Brown 提交于
      The SSP ports PXA series processors can be used to implement a variety of
      audio interface formats. This patch implements support for I2S, DSP A and
      DSP B modes on these ports.
      
      This patch is based on the previous out of tree pxa2xx-ssp driver (which
      was originally written by Liam Girdwood with updates from Philipp Zabel
      and Nicola Perrino) and pxa3xx-ssp driver (originally written by Seth
      Forsee based on the pxa2xx-ssp driver). Testing coverage is not complete
      currently.
      Tested-by: NDaniel Ribeiro <drwyrm@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      1b340bd7