Home
last modified time | relevance | path

Searched refs:dvs_config (Results 1 – 2 of 2) sorted by relevance

/linux-5.19.10/drivers/staging/media/atomisp/pci/
Dsh_css_param_dvs.c32 struct ia_css_dvs_6axis_config *dvs_config = NULL; in alloc_dvs_6axis_table() local
34 dvs_config = kvmalloc(sizeof(struct ia_css_dvs_6axis_config), in alloc_dvs_6axis_table()
36 if (!dvs_config) { in alloc_dvs_6axis_table()
42 dvs_config->width_y = width_y = dvs_config_src->width_y; in alloc_dvs_6axis_table()
43 dvs_config->height_y = height_y = dvs_config_src->height_y; in alloc_dvs_6axis_table()
44 dvs_config->width_uv = width_uv = dvs_config_src->width_uv; in alloc_dvs_6axis_table()
45 dvs_config->height_uv = height_uv = dvs_config_src->height_uv; in alloc_dvs_6axis_table()
48 dvs_config->width_y = width_y = DVS_TABLE_IN_BLOCKDIM_X_LUMA(frame_res->width); in alloc_dvs_6axis_table()
49 dvs_config->height_y = height_y = DVS_TABLE_IN_BLOCKDIM_Y_LUMA( in alloc_dvs_6axis_table()
51 dvs_config->width_uv = width_uv = DVS_TABLE_IN_BLOCKDIM_X_CHROMA( in alloc_dvs_6axis_table()
[all …]
Dsh_css_params.c1653 const struct ia_css_dvs_6axis_config *dvs_config) in sh_css_set_pipe_dvs_6axis_config() argument
1655 if (!dvs_config) in sh_css_set_pipe_dvs_6axis_config()
1659 assert(dvs_config->height_y == dvs_config->height_uv); in sh_css_set_pipe_dvs_6axis_config()
1660 assert((dvs_config->width_y - 1) == 2 * (dvs_config->width_uv - 1)); in sh_css_set_pipe_dvs_6axis_config()
1663 IA_CSS_ENTER_PRIVATE("dvs_config=%p", dvs_config); in sh_css_set_pipe_dvs_6axis_config()
1665 copy_dvs_6axis_table(params->pipe_dvs_6axis_config[pipe->mode], dvs_config); in sh_css_set_pipe_dvs_6axis_config()
1675 struct ia_css_dvs_6axis_config *dvs_config) in sh_css_get_pipe_dvs_6axis_config() argument
1677 if (!dvs_config) in sh_css_get_pipe_dvs_6axis_config()
1681 assert(dvs_config->height_y == dvs_config->height_uv); in sh_css_get_pipe_dvs_6axis_config()
1682 assert((dvs_config->width_y - 1) == 2 * dvs_config->width_uv - 1); in sh_css_get_pipe_dvs_6axis_config()
[all …]