Commit 469ba047 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

V4L/DVB (5927): ivtv: set correct crystal frequency of the GVMVPRX cards

Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 6e5eb591
...@@ -57,6 +57,7 @@ ...@@ -57,6 +57,7 @@
#include "ivtv-yuv.h" #include "ivtv-yuv.h"
#include <media/tveeprom.h> #include <media/tveeprom.h>
#include <media/saa7115.h>
#include <media/v4l2-chip-ident.h> #include <media/v4l2-chip-ident.h>
/* var to keep track of the number of array elements in use */ /* var to keep track of the number of array elements in use */
...@@ -893,6 +894,15 @@ static void ivtv_load_and_init_modules(struct ivtv *itv) ...@@ -893,6 +894,15 @@ static void ivtv_load_and_init_modules(struct ivtv *itv)
else if ((hw & IVTV_HW_UPD64031A) == 0) else if ((hw & IVTV_HW_UPD64031A) == 0)
itv->card = ivtv_get_card(IVTV_CARD_CX23416GYC_NOGR); itv->card = ivtv_get_card(IVTV_CARD_CX23416GYC_NOGR);
} }
else if (itv->card->type == IVTV_CARD_GV_MVPRX ||
itv->card->type == IVTV_CARD_GV_MVPRX2E) {
struct v4l2_crystal_freq crystal_freq;
/* The crystal frequency of GVMVPRX is 24.576MHz */
crystal_freq.freq = SAA7115_FREQ_24_576_MHZ;
crystal_freq.flags = SAA7115_FREQ_FL_UCGC;
itv->video_dec_func(itv, VIDIOC_INT_S_CRYSTAL_FREQ, &crystal_freq);
}
if (hw & IVTV_HW_CX25840) { if (hw & IVTV_HW_CX25840) {
itv->vbi.raw_decoder_line_size = 1444; itv->vbi.raw_decoder_line_size = 1444;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment