/Linux-v5.4/drivers/hid/ |
D | hid-mf.c | 37 struct mf_device *mf = data; in mf_play() local 50 mf->report->field[0]->value[0] = weak; in mf_play() 51 mf->report->field[0]->value[1] = strong; in mf_play() 52 hid_hw_request(hid, mf->report, HID_REQ_SET_REPORT); in mf_play() 59 struct mf_device *mf; in mf_init() local 91 mf = kzalloc(sizeof(struct mf_device), GFP_KERNEL); in mf_init() 92 if (!mf) in mf_init() 98 error = input_ff_create_memless(dev, mf, mf_play); in mf_init() 100 kfree(mf); in mf_init() 104 mf->report = report; in mf_init() [all …]
|
/Linux-v5.4/drivers/clk/imx/ |
D | clk-pllv3.c | 312 struct clk_pllv3_vf610_mf mf) in clk_pllv3_vf610_mf_to_rate() argument 317 temp64 *= mf.mfn; in clk_pllv3_vf610_mf_to_rate() 318 do_div(temp64, mf.mfd); in clk_pllv3_vf610_mf_to_rate() 320 return (parent_rate * mf.mfi) + temp64; in clk_pllv3_vf610_mf_to_rate() 326 struct clk_pllv3_vf610_mf mf; in clk_pllv3_vf610_rate_to_mf() local 329 mf.mfi = (rate >= 22 * parent_rate) ? 22 : 20; in clk_pllv3_vf610_rate_to_mf() 330 mf.mfd = 0x3fffffff; /* use max supported value for best accuracy */ in clk_pllv3_vf610_rate_to_mf() 332 if (rate <= parent_rate * mf.mfi) in clk_pllv3_vf610_rate_to_mf() 333 mf.mfn = 0; in clk_pllv3_vf610_rate_to_mf() 334 else if (rate >= parent_rate * (mf.mfi + 1)) in clk_pllv3_vf610_rate_to_mf() [all …]
|
/Linux-v5.4/drivers/media/platform/exynos4-is/ |
D | fimc-isp.c | 126 struct v4l2_mbus_framefmt *mf = &fmt->format; in fimc_isp_subdev_get_fmt() local 129 *mf = *v4l2_subdev_get_try_format(sd, cfg, fmt->pad); in fimc_isp_subdev_get_fmt() 133 mf->colorspace = V4L2_COLORSPACE_SRGB; in fimc_isp_subdev_get_fmt() 139 *mf = isp->sink_fmt; in fimc_isp_subdev_get_fmt() 142 *mf = isp->src_fmt; in fimc_isp_subdev_get_fmt() 145 mf->colorspace = V4L2_COLORSPACE_JPEG; in fimc_isp_subdev_get_fmt() 146 mf->code = MEDIA_BUS_FMT_YUV10_1X30; in fimc_isp_subdev_get_fmt() 153 fmt->pad, mf->code, mf->width, mf->height); in fimc_isp_subdev_get_fmt() 162 struct v4l2_mbus_framefmt *mf = &fmt->format; in __isp_subdev_try_format() local 165 mf->colorspace = V4L2_COLORSPACE_SRGB; in __isp_subdev_try_format() [all …]
|
D | mipi-csis.c | 280 struct v4l2_mbus_framefmt *mf) in find_csis_format() argument 285 if (mf->code == s5pcsis_formats[i].code) in find_csis_format() 331 struct v4l2_mbus_framefmt *mf = &state->format; in __s5pcsis_set_format() local 335 mf->code, mf->width, mf->height); in __s5pcsis_set_format() 343 val = (mf->width << 16) | mf->height; in __s5pcsis_set_format() 551 struct v4l2_mbus_framefmt *mf) in s5pcsis_try_format() argument 555 csis_fmt = find_csis_format(mf); in s5pcsis_try_format() 559 mf->code = csis_fmt->code; in s5pcsis_try_format() 560 v4l_bound_align_image(&mf->width, 1, CSIS_MAX_PIX_WIDTH, in s5pcsis_try_format() 562 &mf->height, 1, CSIS_MAX_PIX_HEIGHT, 1, in s5pcsis_try_format() [all …]
|
D | fimc-capture.c | 777 struct v4l2_mbus_framefmt *mf = &sfmt.format; in fimc_pipeline_try_format() local 794 ffmt = fimc_find_format(NULL, mf->code != 0 ? &mf->code : NULL, in fimc_pipeline_try_format() 803 mf->code = tfmt->code = ffmt->mbus_code; in fimc_pipeline_try_format() 816 mf->code = tfmt->code; in fimc_pipeline_try_format() 829 if (mf->code != tfmt->code) in fimc_pipeline_try_format() 833 tfmt->width = mf->width; in fimc_pipeline_try_format() 834 tfmt->height = mf->height; in fimc_pipeline_try_format() 840 mf->code = ffmt->mbus_code; in fimc_pipeline_try_format() 841 if (mf->width != tfmt->width || mf->height != tfmt->height) in fimc_pipeline_try_format() 843 tfmt->code = mf->code; in fimc_pipeline_try_format() [all …]
|
/Linux-v5.4/drivers/media/i2c/ |
D | tw9910.c | 752 struct v4l2_mbus_framefmt *mf = &format->format; in tw9910_get_fmt() local 765 mf->width = priv->scale->width; in tw9910_get_fmt() 766 mf->height = priv->scale->height; in tw9910_get_fmt() 767 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in tw9910_get_fmt() 768 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in tw9910_get_fmt() 769 mf->field = V4L2_FIELD_INTERLACED_BT; in tw9910_get_fmt() 775 struct v4l2_mbus_framefmt *mf) in tw9910_s_fmt() argument 777 u32 width = mf->width, height = mf->height; in tw9910_s_fmt() 780 WARN_ON(mf->field != V4L2_FIELD_ANY && in tw9910_s_fmt() 781 mf->field != V4L2_FIELD_INTERLACED_BT); in tw9910_s_fmt() [all …]
|
D | s5k6a3.c | 90 struct v4l2_mbus_framefmt *mf) in find_sensor_format() argument 95 if (mf->code == s5k6a3_formats[i].code) in find_sensor_format() 112 static void s5k6a3_try_format(struct v4l2_mbus_framefmt *mf) in s5k6a3_try_format() argument 116 fmt = find_sensor_format(mf); in s5k6a3_try_format() 117 mf->code = fmt->code; in s5k6a3_try_format() 118 mf->field = V4L2_FIELD_NONE; in s5k6a3_try_format() 119 v4l_bound_align_image(&mf->width, S5K6A3_SENSOR_MIN_WIDTH, in s5k6a3_try_format() 121 &mf->height, S5K6A3_SENSOR_MIN_HEIGHT, in s5k6a3_try_format() 140 struct v4l2_mbus_framefmt *mf; in s5k6a3_set_fmt() local 144 mf = __s5k6a3_get_format(sensor, cfg, fmt->pad, fmt->which); in s5k6a3_set_fmt() [all …]
|
D | mt9m001.c | 327 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m001_get_fmt() local 333 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in mt9m001_get_fmt() 334 format->format = *mf; in mt9m001_get_fmt() 338 mf->width = mt9m001->rect.width; in mt9m001_get_fmt() 339 mf->height = mt9m001->rect.height; in mt9m001_get_fmt() 340 mf->code = mt9m001->fmt->code; in mt9m001_get_fmt() 341 mf->colorspace = mt9m001->fmt->colorspace; in mt9m001_get_fmt() 342 mf->field = V4L2_FIELD_NONE; in mt9m001_get_fmt() 343 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m001_get_fmt() 344 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in mt9m001_get_fmt() [all …]
|
D | noon010pc30.c | 358 static int noon010_try_frame_size(struct v4l2_mbus_framefmt *mf, in noon010_try_frame_size() argument 367 int err = abs(fsize->width - mf->width) in noon010_try_frame_size() 368 + abs(fsize->height - mf->height); in noon010_try_frame_size() 377 mf->width = match->width; in noon010_try_frame_size() 378 mf->height = match->height; in noon010_try_frame_size() 506 struct v4l2_mbus_framefmt *mf; in noon010_get_fmt() local 510 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in noon010_get_fmt() 511 fmt->format = *mf; in noon010_get_fmt() 515 mf = &fmt->format; in noon010_get_fmt() 518 mf->width = info->curr_win->width; in noon010_get_fmt() [all …]
|
D | rj54n1cb0c.c | 609 struct v4l2_mbus_framefmt *mf = &format->format; in rj54n1_get_fmt() local 616 mf->code = rj54n1->fmt->code; in rj54n1_get_fmt() 617 mf->colorspace = rj54n1->fmt->colorspace; in rj54n1_get_fmt() 618 mf->ycbcr_enc = V4L2_YCBCR_ENC_601; in rj54n1_get_fmt() 619 mf->xfer_func = V4L2_XFER_FUNC_SRGB; in rj54n1_get_fmt() 620 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in rj54n1_get_fmt() 621 mf->field = V4L2_FIELD_NONE; in rj54n1_get_fmt() 622 mf->width = rj54n1->width; in rj54n1_get_fmt() 623 mf->height = rj54n1->height; in rj54n1_get_fmt() 979 struct v4l2_mbus_framefmt *mf = &format->format; in rj54n1_set_fmt() local [all …]
|
D | sr030pc30.c | 394 static int sr030pc30_try_frame_size(struct v4l2_mbus_framefmt *mf) in sr030pc30_try_frame_size() argument 401 int err = abs(fsize->width - mf->width) in sr030pc30_try_frame_size() 402 + abs(fsize->height - mf->height); in sr030pc30_try_frame_size() 410 mf->width = match->width; in sr030pc30_try_frame_size() 411 mf->height = match->height; in sr030pc30_try_frame_size() 486 struct v4l2_mbus_framefmt *mf; in sr030pc30_get_fmt() local 492 mf = &format->format; in sr030pc30_get_fmt() 497 mf->width = info->curr_win->width; in sr030pc30_get_fmt() 498 mf->height = info->curr_win->height; in sr030pc30_get_fmt() 499 mf->code = info->curr_fmt->code; in sr030pc30_get_fmt() [all …]
|
D | ov6650.c | 508 struct v4l2_mbus_framefmt *mf = &format->format; in ov6650_get_fmt() local 515 mf->width = priv->rect.width >> priv->half_scale; in ov6650_get_fmt() 516 mf->height = priv->rect.height >> priv->half_scale; in ov6650_get_fmt() 517 mf->code = priv->code; in ov6650_get_fmt() 518 mf->colorspace = priv->colorspace; in ov6650_get_fmt() 519 mf->field = V4L2_FIELD_NONE; in ov6650_get_fmt() 547 static int ov6650_s_fmt(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *mf) in ov6650_s_fmt() argument 551 bool half_scale = !is_unscaled_ok(mf->width, mf->height, &priv->rect); in ov6650_s_fmt() 556 (mf->width >> (1 - half_scale)), in ov6650_s_fmt() 558 (mf->height >> (1 - half_scale)), in ov6650_s_fmt() [all …]
|
D | adv7170.c | 267 struct v4l2_mbus_framefmt *mf = &format->format; in adv7170_get_fmt() local 274 mf->code = MEDIA_BUS_FMT_UYVY8_1X16; in adv7170_get_fmt() 276 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in adv7170_get_fmt() 278 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in adv7170_get_fmt() 279 mf->width = 0; in adv7170_get_fmt() 280 mf->height = 0; in adv7170_get_fmt() 281 mf->field = V4L2_FIELD_ANY; in adv7170_get_fmt() 290 struct v4l2_mbus_framefmt *mf = &format->format; in adv7170_set_fmt() local 296 switch (mf->code) { in adv7170_set_fmt() 307 "illegal v4l2_mbus_framefmt code: %d\n", mf->code); in adv7170_set_fmt()
|
D | mt9m111.c | 524 struct v4l2_mbus_framefmt *mf = &format->format; in mt9m111_get_fmt() local 532 mf = v4l2_subdev_get_try_format(sd, cfg, format->pad); in mt9m111_get_fmt() 533 format->format = *mf; in mt9m111_get_fmt() 540 mf->width = mt9m111->width; in mt9m111_get_fmt() 541 mf->height = mt9m111->height; in mt9m111_get_fmt() 542 mf->code = mt9m111->fmt->code; in mt9m111_get_fmt() 543 mf->colorspace = mt9m111->fmt->colorspace; in mt9m111_get_fmt() 544 mf->field = V4L2_FIELD_NONE; in mt9m111_get_fmt() 545 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in mt9m111_get_fmt() 546 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in mt9m111_get_fmt() [all …]
|
D | s5k4ecgx.c | 499 static int s5k4ecgx_try_frame_size(struct v4l2_mbus_framefmt *mf, in s5k4ecgx_try_frame_size() argument 508 int err = abs(fsize->size.width - mf->width) in s5k4ecgx_try_frame_size() 509 + abs(fsize->size.height - mf->height); in s5k4ecgx_try_frame_size() 517 mf->width = match->size.width; in s5k4ecgx_try_frame_size() 518 mf->height = match->size.height; in s5k4ecgx_try_frame_size() 542 struct v4l2_mbus_framefmt *mf; in s5k4ecgx_get_fmt() local 546 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in s5k4ecgx_get_fmt() 547 fmt->format = *mf; in s5k4ecgx_get_fmt() 552 mf = &fmt->format; in s5k4ecgx_get_fmt() 555 mf->width = priv->curr_frmsize->size.width; in s5k4ecgx_get_fmt() [all …]
|
D | adv7175.c | 305 struct v4l2_mbus_framefmt *mf = &format->format; in adv7175_get_fmt() local 312 mf->code = MEDIA_BUS_FMT_UYVY8_1X16; in adv7175_get_fmt() 314 mf->code = MEDIA_BUS_FMT_UYVY8_2X8; in adv7175_get_fmt() 316 mf->colorspace = V4L2_COLORSPACE_SMPTE170M; in adv7175_get_fmt() 317 mf->width = 0; in adv7175_get_fmt() 318 mf->height = 0; in adv7175_get_fmt() 319 mf->field = V4L2_FIELD_ANY; in adv7175_get_fmt() 328 struct v4l2_mbus_framefmt *mf = &format->format; in adv7175_set_fmt() local 335 switch (mf->code) { in adv7175_set_fmt() 346 "illegal v4l2_mbus_framefmt code: %d\n", mf->code); in adv7175_set_fmt()
|
D | s5k5baf.c | 739 static int s5k5baf_find_pixfmt(struct v4l2_mbus_framefmt *mf) in s5k5baf_find_pixfmt() argument 744 if (mf->colorspace != s5k5baf_formats[i].colorspace) in s5k5baf_find_pixfmt() 746 if (mf->code == s5k5baf_formats[i].code) in s5k5baf_find_pixfmt() 1251 static void s5k5baf_try_cis_format(struct v4l2_mbus_framefmt *mf) in s5k5baf_try_cis_format() argument 1253 mf->width = S5K5BAF_CIS_WIDTH; in s5k5baf_try_cis_format() 1254 mf->height = S5K5BAF_CIS_HEIGHT; in s5k5baf_try_cis_format() 1255 mf->code = MEDIA_BUS_FMT_FIXED; in s5k5baf_try_cis_format() 1256 mf->colorspace = V4L2_COLORSPACE_JPEG; in s5k5baf_try_cis_format() 1257 mf->field = V4L2_FIELD_NONE; in s5k5baf_try_cis_format() 1260 static int s5k5baf_try_isp_format(struct v4l2_mbus_framefmt *mf) in s5k5baf_try_isp_format() argument [all …]
|
D | ov2640.c | 919 struct v4l2_mbus_framefmt *mf = &format->format; in ov2640_get_fmt() local 928 mf = v4l2_subdev_get_try_format(sd, cfg, 0); in ov2640_get_fmt() 929 format->format = *mf; in ov2640_get_fmt() 936 mf->width = priv->win->width; in ov2640_get_fmt() 937 mf->height = priv->win->height; in ov2640_get_fmt() 938 mf->code = priv->cfmt_code; in ov2640_get_fmt() 939 mf->colorspace = V4L2_COLORSPACE_SRGB; in ov2640_get_fmt() 940 mf->field = V4L2_FIELD_NONE; in ov2640_get_fmt() 941 mf->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; in ov2640_get_fmt() 942 mf->quantization = V4L2_QUANTIZATION_DEFAULT; in ov2640_get_fmt() [all …]
|
/Linux-v5.4/drivers/staging/media/soc_camera/ |
D | imx074.c | 156 struct v4l2_mbus_framefmt *mf = &format->format; in imx074_set_fmt() local 157 const struct imx074_datafmt *fmt = imx074_find_datafmt(mf->code); in imx074_set_fmt() 164 dev_dbg(sd->v4l2_dev->dev, "%s(%u)\n", __func__, mf->code); in imx074_set_fmt() 170 mf->code = imx074_colour_fmts[0].code; in imx074_set_fmt() 171 mf->colorspace = imx074_colour_fmts[0].colorspace; in imx074_set_fmt() 174 mf->width = IMX074_WIDTH; in imx074_set_fmt() 175 mf->height = IMX074_HEIGHT; in imx074_set_fmt() 176 mf->field = V4L2_FIELD_NONE; in imx074_set_fmt() 181 cfg->try_fmt = *mf; in imx074_set_fmt() 190 struct v4l2_mbus_framefmt *mf = &format->format; in imx074_get_fmt() local [all …]
|
D | soc_mt9v022.c | 384 struct v4l2_mbus_framefmt *mf = &format->format; in mt9v022_get_fmt() local 391 mf->width = mt9v022->rect.width; in mt9v022_get_fmt() 392 mf->height = mt9v022->rect.height; in mt9v022_get_fmt() 393 mf->code = mt9v022->fmt->code; in mt9v022_get_fmt() 394 mf->colorspace = mt9v022->fmt->colorspace; in mt9v022_get_fmt() 395 mf->field = V4L2_FIELD_NONE; in mt9v022_get_fmt() 402 struct v4l2_mbus_framefmt *mf) in mt9v022_s_fmt() argument 411 .r.width = mf->width, in mt9v022_s_fmt() 412 .r.height = mf->height, in mt9v022_s_fmt() 420 switch (mf->code) { in mt9v022_s_fmt() [all …]
|
D | soc_ov5642.c | 791 struct v4l2_mbus_framefmt *mf = &format->format; in ov5642_set_fmt() local 794 const struct ov5642_datafmt *fmt = ov5642_find_datafmt(mf->code); in ov5642_set_fmt() 799 mf->width = priv->crop_rect.width; in ov5642_set_fmt() 800 mf->height = priv->crop_rect.height; in ov5642_set_fmt() 805 mf->code = ov5642_colour_fmts[0].code; in ov5642_set_fmt() 806 mf->colorspace = ov5642_colour_fmts[0].colorspace; in ov5642_set_fmt() 809 mf->field = V4L2_FIELD_NONE; in ov5642_set_fmt() 814 cfg->try_fmt = *mf; in ov5642_set_fmt() 822 struct v4l2_mbus_framefmt *mf = &format->format; in ov5642_get_fmt() local 831 mf->code = fmt->code; in ov5642_get_fmt() [all …]
|
/Linux-v5.4/drivers/media/platform/vimc/ |
D | vimc-sensor.c | 49 struct v4l2_mbus_framefmt *mf; in vimc_sen_init_cfg() local 51 mf = v4l2_subdev_get_try_format(sd, cfg, i); in vimc_sen_init_cfg() 52 *mf = fmt_default; in vimc_sen_init_cfg() 152 struct v4l2_mbus_framefmt *mf; in vimc_sen_set_fmt() local 159 mf = &vsen->mbus_format; in vimc_sen_set_fmt() 161 mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad); in vimc_sen_set_fmt() 171 mf->width, mf->height, mf->code, in vimc_sen_set_fmt() 172 mf->colorspace, mf->quantization, in vimc_sen_set_fmt() 173 mf->xfer_func, mf->ycbcr_enc, in vimc_sen_set_fmt() 179 *mf = fmt->format; in vimc_sen_set_fmt()
|
/Linux-v5.4/drivers/video/fbdev/omap2/omapfb/dss/ |
D | hdmi_pll.c | 45 unsigned n, m, mf, m2, sd; in hdmi_pll_compute() local 72 mf = 0; in hdmi_pll_compute() 74 mf = (u32)div_u64(262144ull * (target_clkdco - clkdco), fint); in hdmi_pll_compute() 76 if (mf > 0) in hdmi_pll_compute() 77 clkdco += (u32)div_u64((u64)mf * fint, 262144); in hdmi_pll_compute() 85 n, m, mf, m2, sd); in hdmi_pll_compute() 90 pi->mf = mf; in hdmi_pll_compute()
|
/Linux-v5.4/drivers/media/platform/s3c-camif/ |
D | camif-capture.c | 1217 struct v4l2_mbus_framefmt *mf = &fmt->format; in s3c_camif_subdev_get_fmt() local 1220 mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad); in s3c_camif_subdev_get_fmt() 1221 fmt->format = *mf; in s3c_camif_subdev_get_fmt() 1230 *mf = camif->mbus_fmt; in s3c_camif_subdev_get_fmt() 1235 mf->width = camif->camif_crop.width; in s3c_camif_subdev_get_fmt() 1236 mf->height = camif->camif_crop.height; in s3c_camif_subdev_get_fmt() 1237 mf->code = camif->mbus_fmt.code; in s3c_camif_subdev_get_fmt() 1242 mf->field = V4L2_FIELD_NONE; in s3c_camif_subdev_get_fmt() 1243 mf->colorspace = V4L2_COLORSPACE_JPEG; in s3c_camif_subdev_get_fmt() 1248 struct v4l2_mbus_framefmt *mf, int pad) in __camif_subdev_try_format() argument [all …]
|
/Linux-v5.4/drivers/message/fusion/ |
D | mptscsih.c | 88 int mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r); 90 int mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r); 95 static void mptscsih_copy_sense_data(struct scsi_cmnd *sc, MPT_SCSI_HOST *hd, MPT_FRAME_HDR *mf, SC… 107 int mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r); 395 MPT_FRAME_HDR *mf; in mptscsih_issue_sep_command() local 406 if ((mf = mpt_get_msg_frame(ioc->InternalCtx, ioc)) == NULL) { in mptscsih_issue_sep_command() 412 SEPMsg = (SEPRequest_t *)mf; in mptscsih_issue_sep_command() 421 mpt_put_msg_frame(ioc->DoneCtx, ioc, mf); in mptscsih_issue_sep_command() 588 mptscsih_io_done(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *mr) in mptscsih_io_done() argument 599 req_idx = le16_to_cpu(mf->u.frame.hwhdr.msgctxu.fld.req_idx); in mptscsih_io_done() [all …]
|