1. 19 6月, 2010 1 次提交
  2. 16 6月, 2010 1 次提交
  3. 17 5月, 2010 1 次提交
  4. 11 5月, 2010 1 次提交
  5. 10 5月, 2010 3 次提交
    • M
      ASoC: Allow DAI links to be kept active over suspend · 3efab7dc
      Mark Brown 提交于
      As well as allowing DAPM pins to be marked as ignoring suspend allow DAI
      links to be similarly marked.  This is primarily intended for digital
      links between CODECs and non-CPU devices such as basebands in mobile
      phones and will suppress all suspend calls for the DAI link.  It is
      likely that this will need to be revisited if used with devices which
      are part of the SoC CPU.
      Tested-by: NPeter Ujfalusi <peter.ujfalusi@nokia.com>
      Acked-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      3efab7dc
    • M
      ASoC: Support leaving paths enabled over system suspend · 1547aba9
      Mark Brown 提交于
      Some devices can usefully run audio while the Linux system is suspended.
      One of the most common examples is smartphone systems, which are normally
      designed to allow audio to be run between the baseband and the CODEC
      without passing through the CPU and so can suspend the CPU when on a
      voice call for additional power savings.
      
      Support such systems by providing an API snd_soc_dapm_ignore_suspend().
      This can be used to mark DAPM endpoints as not being sensitive to
      system suspend. When the system is being suspended paths between
      endpoints which are marked as ignoring suspend will be kept active.
      Both source and sink must be marked, and there must already be an
      active path between the two endpoints prior to suspend.
      
      When paths are active over suspend the bias management will hold the
      device bias in the ON state. This is used to avoid suspending the
      CODEC while it is still in use.
      Tested-by: NPeter Ujfalusi <peter.ujfalusi@nokia.com>
      Acked-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      1547aba9
    • M
      ASoC: Refactor DAPM suspend handling · 9949788b
      Mark Brown 提交于
      Instead of using stream events to handle power down during suspend
      integrate the handling with the normal widget path checking by
      replacing all cases where we report a connected endpoint in a path
      with a function snd_soc_dapm_suspend_check() which looks at the ALSA
      power state for the card and reports false if we are in a D3 state.
      
      Since the core moves us into D3 prior to initating the suspend all
      power checks during suspend will cause the widgets to be powered
      down. In order to ensure that widgets are powered up on resume set
      the card to D2 at the start of resume handling (ALSA API calls
      require D0 so we are still protected against userspace access).
      Tested-by: NPeter Ujfalusi <peter.ujfalusi@nokia.com>
      Acked-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      9949788b
  6. 07 5月, 2010 1 次提交
  7. 30 3月, 2010 2 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
    • G
      ASoC: Fix passing platform_data to ac97 bus users and fix a leak · fb48e3c6
      Graham Gower 提交于
      [The issue is an attempt to write the pdata without the AC97 device
      allocated when using ac97.c - also added a comment in soc-core.c for the
      special case for ac97. -- broonie]
      Signed-off-by: NGraham Gower <graham.gower@gmail.com>
      Acked-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      fb48e3c6
  8. 20 3月, 2010 1 次提交
  9. 12 3月, 2010 1 次提交
  10. 04 3月, 2010 4 次提交
  11. 26 2月, 2010 1 次提交
  12. 22 2月, 2010 3 次提交
  13. 17 2月, 2010 3 次提交
  14. 28 1月, 2010 1 次提交
  15. 31 12月, 2009 1 次提交
  16. 16 12月, 2009 1 次提交
  17. 05 12月, 2009 1 次提交
  18. 13 11月, 2009 1 次提交
    • B
      ASoC: move setting ac97 platformdata earlier than ac97 read/write · f7732053
      Barry Song 提交于
      While probing, AC97 codec drivers and soc-core generically execute the
      following sequence:
      snd_soc_new_ac97_codec -> snd_soc_new_pcms -> reset ac-link/read AC97 ID
      to detect ->...  -> set platform_data to ac97 by soc-core
      
      commit 474828a4 adds platform_data to
      snd_ac97 instance. But ac97 platform data hasn't given to snd_ac97
      before actual ac97 operations. Then while ac97_read access platform_data
      of snd_ac97 for detecting, NULL pointer oops will fire. That means old
      platform_data patch doesn't work in real-life cases.
      
      This patch moves the operation of setting ac97 platform_data earlier
      than ac97 reading/writing operations. Then it makes platform_data of
      AC97 become practically useful.
      Signed-off-by: NBarry Song <21cnbao@gmail.com>
      Acked-by: NLiam Girdwood <lrg@slimlogic.co.uk>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      f7732053
  19. 04 11月, 2009 2 次提交
  20. 31 10月, 2009 2 次提交
  21. 19 10月, 2009 1 次提交
  22. 15 10月, 2009 1 次提交
  23. 02 10月, 2009 1 次提交
  24. 01 10月, 2009 1 次提交
    • P
      ASoC: add support for multiple cards/codecs in debugfs · 88439ac7
      Peter Ujfalusi 提交于
      In order to support multiple codecs on the same system in the debugfs
      the directory hierarchy need to be changed by adding directory per codec
      under the asoc direcorty:
      
      debugfs/asoc/{dev_name(socdev->dev)}-{codec->name}/codec_reg
                                                        /dapm_pop_time
                                                        /dapm/{widgets}
      
      With the original implementation only the debugfs files are only
      created for the first codec, other codecs loaded later would fail to
      create the debugfs files (since they are already exist).
      Furthermore in this situation any of the codecs has been removed, would
      cause the debugfs entries to disappear, regardless if the codec, which
      created them are still loaded (the one which loaded first).
      Signed-off-by: NPeter Ujfalusi <peter.ujfalusi@nokia.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      88439ac7
  25. 13 9月, 2009 1 次提交
  26. 06 9月, 2009 1 次提交
  27. 22 8月, 2009 1 次提交
    • M
      ASoC: Add DAPM widget power decision debugfs files · 79fb9387
      Mark Brown 提交于
      Currently when built with DEBUG DAPM will dump information about
      the power state decisions it is taking for each widget to dmesg.
      This isn't an ideal way of getting the information - it requires
      a kernel build to turn it on and off and for large hub CODECs the
      volume of information is so large as to be illegible. When the
      output goes to the console it can also cause a noticable impact
      on performance simply to print it out.
      
      Improve the situation by adding a dapm directory to our debugfs
      tree containing a file per widget with the same information in
      it. This still requires a decision to build with debugfs support
      but is easier to navigate and much less intrusive.
      
      In addition to the previously displayed information active streams
      are also shown in these files.
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      79fb9387
  28. 06 8月, 2009 1 次提交