Lines Matching refs:det
771 struct v4l2_bt_timings *det = &video->detected_timings; in aspeed_video_get_resolution() local
773 det->width = MIN_WIDTH; in aspeed_video_get_resolution()
774 det->height = MIN_HEIGHT; in aspeed_video_get_resolution()
820 det->vfrontporch = video->frame_top; in aspeed_video_get_resolution()
821 det->vbackporch = ((mds & VE_MODE_DETECT_V_LINES) >> in aspeed_video_get_resolution()
823 det->vsync = (sync & VE_SYNC_STATUS_VSYNC) >> in aspeed_video_get_resolution()
831 det->hfrontporch = video->frame_left; in aspeed_video_get_resolution()
832 det->hbackporch = htotal - video->frame_right; in aspeed_video_get_resolution()
833 det->hsync = sync & VE_SYNC_STATUS_HSYNC; in aspeed_video_get_resolution()
845 det->height = (video->frame_bottom - video->frame_top) + 1; in aspeed_video_get_resolution()
846 det->width = (video->frame_right - video->frame_left) + 1; in aspeed_video_get_resolution()
858 dev_dbg(video->dev, "Got resolution: %dx%d\n", det->width, in aspeed_video_get_resolution()
859 det->height); in aspeed_video_get_resolution()