From: Hans Verkuil <hans.verk...@cisco.com> There are currently two subdev ops variants to get/set the frame interval: g/s_parm and g/s_frame_interval.
This patch series replaces all g/s_parm calls by g/s_frame_interval. The first patch clears the reserved fields in v4l2-subdev.c. It's taken from the "Media Controller compliance fixes" series. The second patch adds helper functions that can be used by bridge drivers. Only em28xx can't use it and it needs custom code (it uses v4l2_device_call() to try all subdevs instead of calling a specific subdev). The next patch converts all non-staging drivers, then come Sakari's atomisp staging fixes. The v4l2-subdev.h patch removes the now obsolete g/s_parm ops and the final patch clarifies the documentation a bit (the core allows for _MPLANE to be used as well). I would really like to take the next step and introduce two new ioctls VIDIOC_G/S_FRAME_INTERVAL (just like the SUBDEV variants that already exist) and convert all bridge drivers to use that and just have helper functions in the core for VIDIOC_G/S_PARM. I hate that ioctl and it always confuses driver developers. It would also prevent the type of abuse that was present in the atomisp driver. But that's for later, let's simplify the subdev drivers first. Regards, Hans Changes since v2: - added patch 1 (v4l2-subdev: clear reserved fields). This is the same patch as is included in the "Media Controller compliance fixes" series. - because of patch 1 we can now drop the memsets in patch 3 as suggested by Mauro. - updated commit message of patch "staging: atomisp: Kill subdev s_parm abuse" - updated patch "staging: atomisp: i2c: Disable non-preview configurations" to the 2.1 version posted by Sakari, with a slight rewording of the commit message. Changes since v1: - incorporated all comments from Sakari Hans Verkuil (5): v4l2-subdev: clear reserved fields v4l2-common: create v4l2_g/s_parm_cap helpers media: convert g/s_parm to g/s_frame_interval in subdevs v4l2-subdev.h: remove obsolete g/s_parm vidioc-g-parm.rst: also allow _MPLANE buffer types Sakari Ailus (5): staging: atomisp: Kill subdev s_parm abuse staging: atomisp: i2c: Disable non-preview configurations staging: atomisp: i2c: Drop g_parm support in sensor drivers staging: atomisp: mt9m114: Drop empty s_parm callback staging: atomisp: Drop g_parm and s_parm subdev ops use Documentation/media/uapi/v4l/vidioc-g-parm.rst | 7 ++- drivers/media/i2c/mt9v011.c | 29 +++------ drivers/media/i2c/ov6650.c | 33 ++++------- drivers/media/i2c/ov7670.c | 22 +++---- drivers/media/i2c/ov7740.c | 29 +++------ drivers/media/i2c/tvp514x.c | 37 ++++-------- drivers/media/i2c/vs6624.c | 27 +++------ drivers/media/platform/atmel/atmel-isc.c | 10 +--- drivers/media/platform/atmel/atmel-isi.c | 12 +--- drivers/media/platform/blackfin/bfin_capture.c | 14 ++--- drivers/media/platform/marvell-ccic/mcam-core.c | 12 ++-- drivers/media/platform/soc_camera/soc_camera.c | 10 ++-- drivers/media/platform/via-camera.c | 4 +- drivers/media/usb/em28xx/em28xx-video.c | 36 ++++++++++-- drivers/media/v4l2-core/v4l2-common.c | 48 +++++++++++++++ drivers/media/v4l2-core/v4l2-subdev.c | 13 +++++ drivers/staging/media/atomisp/i2c/atomisp-gc0310.c | 53 ----------------- drivers/staging/media/atomisp/i2c/atomisp-gc2235.c | 53 ----------------- .../staging/media/atomisp/i2c/atomisp-mt9m114.c | 6 -- drivers/staging/media/atomisp/i2c/atomisp-ov2680.c | 56 ------------------ drivers/staging/media/atomisp/i2c/atomisp-ov2722.c | 53 ----------------- drivers/staging/media/atomisp/i2c/gc0310.h | 43 -------------- drivers/staging/media/atomisp/i2c/gc2235.h | 7 ++- drivers/staging/media/atomisp/i2c/ov2680.h | 68 ---------------------- drivers/staging/media/atomisp/i2c/ov2722.h | 6 ++ .../media/atomisp/i2c/ov5693/atomisp-ov5693.c | 54 ----------------- drivers/staging/media/atomisp/i2c/ov5693/ov5693.h | 6 ++ .../media/atomisp/pci/atomisp2/atomisp_cmd.c | 9 +-- .../media/atomisp/pci/atomisp2/atomisp_file.c | 16 ----- .../media/atomisp/pci/atomisp2/atomisp_subdev.c | 12 +--- .../media/atomisp/pci/atomisp2/atomisp_tpg.c | 14 ----- include/media/v4l2-common.h | 26 +++++++++ include/media/v4l2-subdev.h | 6 -- 33 files changed, 222 insertions(+), 609 deletions(-) -- 2.15.1