ivtv-alsa.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * ALSA interface to ivtv PCM capture streams
  3. *
  4. * Copyright (C) 2009,2012 Andy Walls <awalls@md.metrocast.net>
  5. * Copyright (C) 2009 Devin Heitmueller <dheitmueller@kernellabs.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  20. * 02111-1307 USA
  21. */
  22. struct snd_card;
  23. struct snd_ivtv_card {
  24. struct v4l2_device *v4l2_dev;
  25. struct snd_card *sc;
  26. unsigned int capture_transfer_done;
  27. unsigned int hwptr_done_capture;
  28. struct snd_pcm_substream *capture_pcm_substream;
  29. spinlock_t slock;
  30. };
  31. extern int ivtv_alsa_debug;
  32. /*
  33. * File operations that manipulate the encoder or video or audio subdevices
  34. * need to be serialized. Use the same lock we use for v4l2 file ops.
  35. */
  36. static inline void snd_ivtv_lock(struct snd_ivtv_card *itvsc)
  37. {
  38. struct ivtv *itv = to_ivtv(itvsc->v4l2_dev);
  39. mutex_lock(&itv->serialize_lock);
  40. }
  41. static inline void snd_ivtv_unlock(struct snd_ivtv_card *itvsc)
  42. {
  43. struct ivtv *itv = to_ivtv(itvsc->v4l2_dev);
  44. mutex_unlock(&itv->serialize_lock);
  45. }
  46. #define IVTV_ALSA_DBGFLG_WARN (1 << 0)
  47. #define IVTV_ALSA_DBGFLG_INFO (1 << 1)
  48. #define IVTV_ALSA_DEBUG(x, type, fmt, args...) \
  49. do { \
  50. if ((x) & ivtv_alsa_debug) \
  51. pr_info("%s-alsa: " type ": " fmt, \
  52. v4l2_dev->name , ## args); \
  53. } while (0)
  54. #define IVTV_ALSA_DEBUG_WARN(fmt, args...) \
  55. IVTV_ALSA_DEBUG(IVTV_ALSA_DBGFLG_WARN, "warning", fmt , ## args)
  56. #define IVTV_ALSA_DEBUG_INFO(fmt, args...) \
  57. IVTV_ALSA_DEBUG(IVTV_ALSA_DBGFLG_INFO, "info", fmt , ## args)
  58. #define IVTV_ALSA_ERR(fmt, args...) \
  59. pr_err("%s-alsa: " fmt, v4l2_dev->name , ## args)
  60. #define IVTV_ALSA_WARN(fmt, args...) \
  61. pr_warn("%s-alsa: " fmt, v4l2_dev->name , ## args)
  62. #define IVTV_ALSA_INFO(fmt, args...) \
  63. pr_info("%s-alsa: " fmt, v4l2_dev->name , ## args)