Lines Matching refs:bcsh_info
2077 struct base_bcsh_info *bcsh_info; in vop2_tv_config_update() local
2084 bcsh_info = &conn_state->disp_info->bcsh_info; in vop2_tv_config_update()
2085 if (!bcsh_info) in vop2_tv_config_update()
2088 if (bcsh_info->brightness != 50 || in vop2_tv_config_update()
2089 bcsh_info->contrast != 50 || in vop2_tv_config_update()
2090 bcsh_info->saturation != 50 || bcsh_info->hue != 50) in vop2_tv_config_update()
2111 bcsh_info->brightness); in vop2_tv_config_update()
2114 bcsh_info->brightness); in vop2_tv_config_update()
2115 contrast = interpolate(0, 0, 100, 511, bcsh_info->contrast); in vop2_tv_config_update()
2116 saturation = interpolate(0, 0, 100, 511, bcsh_info->saturation); in vop2_tv_config_update()
2117 hue = interpolate(0, -30, 100, 30, bcsh_info->hue); in vop2_tv_config_update()
2340 struct base_bcsh_info *bcsh_info; in vop3_get_csc_info_from_bcsh() local
2345 bcsh_info = &conn_state->disp_info->bcsh_info; in vop3_get_csc_info_from_bcsh()
2346 if (!bcsh_info) in vop3_get_csc_info_from_bcsh()
2355 if (bcsh_info->brightness == 50 && bcsh_info->contrast == 50 && in vop3_get_csc_info_from_bcsh()
2356 bcsh_info->saturation == 50 && bcsh_info->hue == 50) { in vop3_get_csc_info_from_bcsh()
2364 csc_info->brightness = bcsh_info->brightness * 511 / 100; in vop3_get_csc_info_from_bcsh()
2365 csc_info->contrast = bcsh_info->contrast * 511 / 100; in vop3_get_csc_info_from_bcsh()
2366 csc_info->saturation = bcsh_info->saturation * 511 / 100; in vop3_get_csc_info_from_bcsh()
2367 csc_info->hue = bcsh_info->hue * 511 / 100; in vop3_get_csc_info_from_bcsh()