Lines Matching refs:det
740 struct v4l2_bt_timings *det = &video->detected_timings; in aspeed_video_get_resolution() local
742 det->width = MIN_WIDTH; in aspeed_video_get_resolution()
743 det->height = MIN_HEIGHT; in aspeed_video_get_resolution()
792 det->vfrontporch = video->frame_top; in aspeed_video_get_resolution()
793 det->vbackporch = ((mds & VE_MODE_DETECT_V_LINES) >> in aspeed_video_get_resolution()
795 det->vsync = (sync & VE_SYNC_STATUS_VSYNC) >> in aspeed_video_get_resolution()
803 det->hfrontporch = video->frame_left; in aspeed_video_get_resolution()
804 det->hbackporch = (mds & VE_MODE_DETECT_H_PIXELS) - in aspeed_video_get_resolution()
806 det->hsync = sync & VE_SYNC_STATUS_HSYNC; in aspeed_video_get_resolution()
818 det->height = (video->frame_bottom - video->frame_top) + 1; in aspeed_video_get_resolution()
819 det->width = (video->frame_right - video->frame_left) + 1; in aspeed_video_get_resolution()
831 dev_dbg(video->dev, "Got resolution: %dx%d\n", det->width, in aspeed_video_get_resolution()
832 det->height); in aspeed_video_get_resolution()