1. 11 3月, 2013 5 次提交
  2. 16 1月, 2013 4 次提交
  3. 09 1月, 2013 1 次提交
  4. 07 12月, 2012 1 次提交
  5. 03 12月, 2012 3 次提交
  6. 23 11月, 2012 2 次提交
  7. 08 11月, 2012 1 次提交
    • A
      ALSA: hdspm - Fix sync check reporting on RME RayDAT · d1a3c98d
      Adrian Knoth 提交于
      The RayDAT reports the sync status of its inputs in consecutive bit
      positions, so all we do in hdspm_s1_sync_check is to iterate over idx:
      
          status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
      
          lock = (status & (0x1<<idx)) ? 1 : 0;
          sync = (status & (0x100<<idx)) ? 1 : 0;
      
      The index is given in kcontrol->private_value:
      
          HDSPM_SYNC_CHECK("WC SyncCheck", 0),
          HDSPM_SYNC_CHECK("AES SyncCheck", 1),
          HDSPM_SYNC_CHECK("SPDIF SyncCheck", 2),
          HDSPM_SYNC_CHECK("ADAT1 SyncCheck", 3),
          HDSPM_SYNC_CHECK("ADAT2 SyncCheck", 4),
          HDSPM_SYNC_CHECK("ADAT3 SyncCheck", 5),
          HDSPM_SYNC_CHECK("ADAT4 SyncCheck", 6),
          HDSPM_SYNC_CHECK("TCO SyncCheck", 7),
          HDSPM_SYNC_CHECK("SYNC IN SyncCheck", 8),
      
      The patch corrects the indicated sync flags by passing the proper index
      value to hdspm_s1_sync_check().
      Signed-off-by: NAdrian Knoth <adi@drcomp.erfurt.thur.de>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      d1a3c98d
  8. 04 11月, 2012 1 次提交
  9. 20 10月, 2012 9 次提交
  10. 20 8月, 2012 1 次提交
  11. 31 5月, 2012 1 次提交
  12. 08 5月, 2012 1 次提交
  13. 24 4月, 2012 1 次提交
  14. 08 3月, 2012 1 次提交
  15. 11 1月, 2012 1 次提交
    • A
      ALSA: hdspm - Provide unique driver id based on card serial · f7de8ba3
      Adrian Knoth 提交于
      Before, /proc/asound looked like this:
      
       2 [Default        ]: HDSPM - RME RayDAT_f1cd85
                            RME RayDAT S/N 0xf1cd85 at 0xf7300000, irq 18
      
      In case of a second HDSPM card, its name would be Default_1. This is
      cumbersome, because the order of the cards isn't stable across reboots.
      
      To help userspace tools referring to the correct card, this commit
      provides a unique id for each card:
      
       2 [HDSPMxf1cd85   ]: HDSPM - RME RayDAT_f1cd85
                            RME RayDAT S/N 0xf1cd85 at 0xf7300000, irq 18
      
      In this example, userspace (configuration files) would then use
      hw:HDSPMxf1cd85 to choose the right card.
      
      The serial is masked to 24bits, so this string is always shorter than
      sixteen chars.
      Signed-off-by: NAdrian Knoth <adi@drcomp.erfurt.thur.de>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      f7de8ba3
  16. 10 1月, 2012 1 次提交
  17. 08 1月, 2012 1 次提交
  18. 19 12月, 2011 1 次提交
  19. 22 11月, 2011 1 次提交
  20. 01 11月, 2011 1 次提交
  21. 31 10月, 2011 2 次提交