Lines Matching refs:timing
60 struct timing { struct
70 static struct timing timing_data[] = { argument
175 struct timing *timing = &timing_data[(decoder->norm & V4L2_STD_525_60) ? 1 : 0]; in bt819_init() local
178 (((timing->vdelay >> 8) & 0x03) << 6) | in bt819_init()
179 (((timing->vactive >> 8) & 0x03) << 4) | in bt819_init()
180 (((timing->hdelay >> 8) & 0x03) << 2) | in bt819_init()
181 ((timing->hactive >> 8) & 0x03); in bt819_init()
182 init[0x04 * 2 - 1] = timing->vdelay & 0xff; in bt819_init()
183 init[0x05 * 2 - 1] = timing->vactive & 0xff; in bt819_init()
184 init[0x06 * 2 - 1] = timing->hdelay & 0xff; in bt819_init()
185 init[0x07 * 2 - 1] = timing->hactive & 0xff; in bt819_init()
186 init[0x08 * 2 - 1] = timing->hscale >> 8; in bt819_init()
187 init[0x09 * 2 - 1] = timing->hscale & 0xff; in bt819_init()
238 struct timing *timing = NULL; in bt819_s_std() local
253 timing = &timing_data[1]; in bt819_s_std()
262 timing = &timing_data[0]; in bt819_s_std()
269 (((timing->vdelay >> 8) & 0x03) << 6) | in bt819_s_std()
270 (((timing->vactive >> 8) & 0x03) << 4) | in bt819_s_std()
271 (((timing->hdelay >> 8) & 0x03) << 2) | in bt819_s_std()
272 ((timing->hactive >> 8) & 0x03)); in bt819_s_std()
273 bt819_write(decoder, 0x04, timing->vdelay & 0xff); in bt819_s_std()
274 bt819_write(decoder, 0x05, timing->vactive & 0xff); in bt819_s_std()
275 bt819_write(decoder, 0x06, timing->hdelay & 0xff); in bt819_s_std()
276 bt819_write(decoder, 0x07, timing->hactive & 0xff); in bt819_s_std()
277 bt819_write(decoder, 0x08, (timing->hscale >> 8) & 0xff); in bt819_s_std()
278 bt819_write(decoder, 0x09, timing->hscale & 0xff); in bt819_s_std()