diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-03-09 17:45:54 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-03-09 17:45:54 -0500 |
commit | 96a6de1a541c86e9e67b9c310c14db4099bd1cbc (patch) | |
tree | e77eb0e998e996f53dd0709611bd8cdd8776ee70 /include/video/imx-ipu-v3.h | |
parent | 36011ddc78395b59a8a418c37f20bcc18828f1ef (diff) | |
parent | 15d90a6ae98e6d2c68497b44a491cb9efbb98ab1 (diff) |
Merge tag 'media/v5.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media
Pull media updates from Mauro Carvalho Chehab:
- remove sensor drivers that got converted from soc_camera
- remaining soc_camera drivers got moved to staging
- some documentation cleanups and improvements
- the imx staging driver now supports imx7
- the ov9640, mt9m001 and mt9m111 got converted from soc_camera
- the vim2m driver now does what a m2m convert driver expects to do
- epoll() fixes on media subsystems
- several drivers fixes, typos, cleanups and improvements
* tag 'media/v5.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (346 commits)
media: dvb/earth-pt1: fix wrong initialization for demod blocks
media: vim2m: Address some coding style issues
media: vim2m: don't use BUG()
media: vim2m: speedup passthrough copy
media: vim2m: add an horizontal scaler
media: vim2m: don't accept YUYV anymore as output format
media: vim2m: add vertical linear scaler
media: vim2m: better handle cap/out buffers with different sizes
media: vim2m: use different framesizes for bayer formats
media: vim2m: add support for VIDIOC_ENUM_FRAMESIZES
media: vim2m: ensure that width is multiple of two
media: vim2m: improve debug messages
media: vim2m: add bayer capture formats
media: a few more typos at staging, pci, platform, radio and usb
media: Documentation: fix several typos
media: staging: fix several typos
media: include: fix several typos
media: common: fix several typos
media: v4l2-core: fix several typos
media: usb: fix several typos
...
Diffstat (limited to 'include/video/imx-ipu-v3.h')
-rw-r--r-- | include/video/imx-ipu-v3.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/video/imx-ipu-v3.h b/include/video/imx-ipu-v3.h index b80b85f0d9d8..b03fafa1ff58 100644 --- a/include/video/imx-ipu-v3.h +++ b/include/video/imx-ipu-v3.h | |||
@@ -258,7 +258,8 @@ void ipu_cpmem_set_stride(struct ipuv3_channel *ch, int stride); | |||
258 | void ipu_cpmem_set_high_priority(struct ipuv3_channel *ch); | 258 | void ipu_cpmem_set_high_priority(struct ipuv3_channel *ch); |
259 | void ipu_cpmem_set_buffer(struct ipuv3_channel *ch, int bufnum, dma_addr_t buf); | 259 | void ipu_cpmem_set_buffer(struct ipuv3_channel *ch, int bufnum, dma_addr_t buf); |
260 | void ipu_cpmem_set_uv_offset(struct ipuv3_channel *ch, u32 u_off, u32 v_off); | 260 | void ipu_cpmem_set_uv_offset(struct ipuv3_channel *ch, u32 u_off, u32 v_off); |
261 | void ipu_cpmem_interlaced_scan(struct ipuv3_channel *ch, int stride); | 261 | void ipu_cpmem_interlaced_scan(struct ipuv3_channel *ch, int stride, |
262 | u32 pixelformat); | ||
262 | void ipu_cpmem_set_axi_id(struct ipuv3_channel *ch, u32 id); | 263 | void ipu_cpmem_set_axi_id(struct ipuv3_channel *ch, u32 id); |
263 | int ipu_cpmem_get_burstsize(struct ipuv3_channel *ch); | 264 | int ipu_cpmem_get_burstsize(struct ipuv3_channel *ch); |
264 | void ipu_cpmem_set_burstsize(struct ipuv3_channel *ch, int burstsize); | 265 | void ipu_cpmem_set_burstsize(struct ipuv3_channel *ch, int burstsize); |
@@ -355,8 +356,9 @@ bool ipu_prg_channel_configure_pending(struct ipuv3_channel *ipu_chan); | |||
355 | */ | 356 | */ |
356 | struct ipu_csi; | 357 | struct ipu_csi; |
357 | int ipu_csi_init_interface(struct ipu_csi *csi, | 358 | int ipu_csi_init_interface(struct ipu_csi *csi, |
358 | struct v4l2_mbus_config *mbus_cfg, | 359 | const struct v4l2_mbus_config *mbus_cfg, |
359 | struct v4l2_mbus_framefmt *mbus_fmt); | 360 | const struct v4l2_mbus_framefmt *infmt, |
361 | const struct v4l2_mbus_framefmt *outfmt); | ||
360 | bool ipu_csi_is_interlaced(struct ipu_csi *csi); | 362 | bool ipu_csi_is_interlaced(struct ipu_csi *csi); |
361 | void ipu_csi_get_window(struct ipu_csi *csi, struct v4l2_rect *w); | 363 | void ipu_csi_get_window(struct ipu_csi *csi, struct v4l2_rect *w); |
362 | void ipu_csi_set_window(struct ipu_csi *csi, struct v4l2_rect *w); | 364 | void ipu_csi_set_window(struct ipu_csi *csi, struct v4l2_rect *w); |