Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 1 | /* |
| 2 | Audio/video-routing-related ivtv functions. |
| 3 | Copyright (C) 2003-2004 Kevin Thayer <nufan_wfk at yahoo.com> |
| 4 | Copyright (C) 2005-2007 Hans Verkuil <hverkuil@xs4all.nl> |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2 of the License, or |
| 9 | (at your option) any later version. |
| 10 | |
| 11 | This program is distributed in the hope that it will be useful, |
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | GNU General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program; if not, write to the Free Software |
| 18 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #include "ivtv-driver.h" |
| 22 | #include "ivtv-i2c.h" |
| 23 | #include "ivtv-cards.h" |
| 24 | #include "ivtv-gpio.h" |
| 25 | #include "ivtv-routing.h" |
| 26 | |
| 27 | #include <media/msp3400.h> |
Hans Verkuil | e2a1774 | 2007-10-30 05:50:03 -0300 | [diff] [blame] | 28 | #include <media/m52790.h> |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 29 | #include <media/upd64031a.h> |
| 30 | #include <media/upd64083.h> |
| 31 | |
| 32 | /* Selects the audio input and output according to the current |
| 33 | settings. */ |
| 34 | void ivtv_audio_set_io(struct ivtv *itv) |
| 35 | { |
Hans Verkuil | e2a1774 | 2007-10-30 05:50:03 -0300 | [diff] [blame] | 36 | const struct ivtv_card_audio_input *in; |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 37 | u32 input, output = 0; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 38 | |
| 39 | /* Determine which input to use */ |
Hans Verkuil | e2a1774 | 2007-10-30 05:50:03 -0300 | [diff] [blame] | 40 | if (test_bit(IVTV_F_I_RADIO_USER, &itv->i_flags)) |
| 41 | in = &itv->card->radio_input; |
| 42 | else |
| 43 | in = &itv->card->audio_inputs[itv->audio_input]; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 44 | |
| 45 | /* handle muxer chips */ |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 46 | input = in->muxer_input; |
Hans Verkuil | e2a1774 | 2007-10-30 05:50:03 -0300 | [diff] [blame] | 47 | if (itv->card->hw_muxer & IVTV_HW_M52790) |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 48 | output = M52790_OUT_STEREO; |
| 49 | v4l2_subdev_call(itv->sd_muxer, audio, s_routing, |
| 50 | input, output, 0); |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 51 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 52 | input = in->audio_input; |
| 53 | output = 0; |
Hans Verkuil | e2a1774 | 2007-10-30 05:50:03 -0300 | [diff] [blame] | 54 | if (itv->card->hw_audio & IVTV_HW_MSP34XX) |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 55 | output = MSP_OUTPUT(MSP_SC_IN_DSP_SCART1); |
| 56 | ivtv_call_hw(itv, itv->card->hw_audio, audio, s_routing, |
| 57 | input, output, 0); |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | /* Selects the video input and output according to the current |
| 61 | settings. */ |
| 62 | void ivtv_video_set_io(struct ivtv *itv) |
| 63 | { |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 64 | int inp = itv->active_input; |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 65 | u32 input; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 66 | u32 type; |
| 67 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 68 | v4l2_subdev_call(itv->sd_video, video, s_routing, |
| 69 | itv->card->video_inputs[inp].video_input, 0, 0); |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 70 | |
| 71 | type = itv->card->video_inputs[inp].video_type; |
| 72 | |
| 73 | if (type == IVTV_CARD_INPUT_VID_TUNER) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 74 | input = 0; /* Tuner */ |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 75 | } else if (type < IVTV_CARD_INPUT_COMPOSITE1) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 76 | input = 2; /* S-Video */ |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 77 | } else { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 78 | input = 1; /* Composite */ |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | if (itv->card->hw_video & IVTV_HW_GPIO) |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 82 | ivtv_call_hw(itv, IVTV_HW_GPIO, video, s_routing, |
| 83 | input, 0, 0); |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 84 | |
| 85 | if (itv->card->hw_video & IVTV_HW_UPD64031A) { |
| 86 | if (type == IVTV_CARD_INPUT_VID_TUNER || |
| 87 | type >= IVTV_CARD_INPUT_COMPOSITE1) { |
| 88 | /* Composite: GR on, connect to 3DYCS */ |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 89 | input = UPD64031A_GR_ON | UPD64031A_3DYCS_COMPOSITE; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 90 | } else { |
| 91 | /* S-Video: GR bypassed, turn it off */ |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 92 | input = UPD64031A_GR_OFF | UPD64031A_3DYCS_DISABLE; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 93 | } |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 94 | input |= itv->card->gr_config; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 95 | |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 96 | ivtv_call_hw(itv, IVTV_HW_UPD64031A, video, s_routing, |
| 97 | input, 0, 0); |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | if (itv->card->hw_video & IVTV_HW_UPD6408X) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 101 | input = UPD64083_YCS_MODE; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 102 | if (type > IVTV_CARD_INPUT_VID_TUNER && |
| 103 | type < IVTV_CARD_INPUT_COMPOSITE1) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 104 | /* S-Video uses YCNR mode and internal Y-ADC, the |
| 105 | upd64031a is not used. */ |
| 106 | input |= UPD64083_YCNR_MODE; |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 107 | } |
| 108 | else if (itv->card->hw_video & IVTV_HW_UPD64031A) { |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 109 | /* Use upd64031a output for tuner and |
| 110 | composite(CX23416GYC only) inputs */ |
| 111 | if (type == IVTV_CARD_INPUT_VID_TUNER || |
| 112 | itv->card->type == IVTV_CARD_CX23416GYC) { |
| 113 | input |= UPD64083_EXT_Y_ADC; |
| 114 | } |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 115 | } |
Hans Verkuil | 5325b42 | 2009-04-02 11:26:22 -0300 | [diff] [blame] | 116 | ivtv_call_hw(itv, IVTV_HW_UPD6408X, video, s_routing, |
| 117 | input, 0, 0); |
Hans Verkuil | 33c0fca | 2007-08-23 06:32:46 -0300 | [diff] [blame] | 118 | } |
| 119 | } |