cx18-audio.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * cx18 audio-related functions
  3. *
  4. * Derived from ivtv-audio.c
  5. *
  6. * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  21. * 02111-1307 USA
  22. */
  23. #include "cx18-driver.h"
  24. #include "cx18-io.h"
  25. #include "cx18-cards.h"
  26. #include "cx18-audio.h"
  27. #define CX18_AUDIO_ENABLE 0xc72014
  28. /* Selects the audio input and output according to the current
  29. settings. */
  30. int cx18_audio_set_io(struct cx18 *cx)
  31. {
  32. const struct cx18_card_audio_input *in;
  33. u32 val;
  34. int err;
  35. /* Determine which input to use */
  36. if (test_bit(CX18_F_I_RADIO_USER, &cx->i_flags))
  37. in = &cx->card->radio_input;
  38. else
  39. in = &cx->card->audio_inputs[cx->audio_input];
  40. /* handle muxer chips */
  41. v4l2_subdev_call(cx->sd_extmux, audio, s_routing,
  42. (u32) in->muxer_input, 0, 0);
  43. err = cx18_call_hw_err(cx, cx->card->hw_audio_ctrl,
  44. audio, s_routing, in->audio_input, 0, 0);
  45. if (err)
  46. return err;
  47. /* FIXME - this internal mux should be abstracted to a subdev */
  48. val = cx18_read_reg(cx, CX18_AUDIO_ENABLE) & ~0x30;
  49. val |= (in->audio_input > CX18_AV_AUDIO_SERIAL2) ? 0x20 :
  50. (in->audio_input << 4);
  51. cx18_write_reg_expect(cx, val | 0xb00, CX18_AUDIO_ENABLE, val, 0x30);
  52. return 0;
  53. }