Lines Matching refs:timing

69 struct timing {  struct
79 static struct timing timing_data[] = { argument
184 struct timing *timing = &timing_data[(decoder->norm & V4L2_STD_525_60) ? 1 : 0]; in bt819_init() local
187 (((timing->vdelay >> 8) & 0x03) << 6) | in bt819_init()
188 (((timing->vactive >> 8) & 0x03) << 4) | in bt819_init()
189 (((timing->hdelay >> 8) & 0x03) << 2) | in bt819_init()
190 ((timing->hactive >> 8) & 0x03); in bt819_init()
191 init[0x04 * 2 - 1] = timing->vdelay & 0xff; in bt819_init()
192 init[0x05 * 2 - 1] = timing->vactive & 0xff; in bt819_init()
193 init[0x06 * 2 - 1] = timing->hdelay & 0xff; in bt819_init()
194 init[0x07 * 2 - 1] = timing->hactive & 0xff; in bt819_init()
195 init[0x08 * 2 - 1] = timing->hscale >> 8; in bt819_init()
196 init[0x09 * 2 - 1] = timing->hscale & 0xff; in bt819_init()
247 struct timing *timing = NULL; in bt819_s_std() local
262 timing = &timing_data[1]; in bt819_s_std()
271 timing = &timing_data[0]; in bt819_s_std()
278 (((timing->vdelay >> 8) & 0x03) << 6) | in bt819_s_std()
279 (((timing->vactive >> 8) & 0x03) << 4) | in bt819_s_std()
280 (((timing->hdelay >> 8) & 0x03) << 2) | in bt819_s_std()
281 ((timing->hactive >> 8) & 0x03)); in bt819_s_std()
282 bt819_write(decoder, 0x04, timing->vdelay & 0xff); in bt819_s_std()
283 bt819_write(decoder, 0x05, timing->vactive & 0xff); in bt819_s_std()
284 bt819_write(decoder, 0x06, timing->hdelay & 0xff); in bt819_s_std()
285 bt819_write(decoder, 0x07, timing->hactive & 0xff); in bt819_s_std()
286 bt819_write(decoder, 0x08, (timing->hscale >> 8) & 0xff); in bt819_s_std()
287 bt819_write(decoder, 0x09, timing->hscale & 0xff); in bt819_s_std()