blk-mq: always free hctx after request queue is freed
[linux/fpc-iii.git] / drivers / media / platform / vimc / vimc-common.h
blob84539430b5e7e591c3d45fd769d85e23cf029cc0
1 /*
2 * vimc-common.h Virtual Media Controller Driver
4 * Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
18 #ifndef _VIMC_COMMON_H_
19 #define _VIMC_COMMON_H_
21 #include <linux/slab.h>
22 #include <media/media-device.h>
23 #include <media/v4l2-device.h>
25 #define VIMC_PDEV_NAME "vimc"
27 /* VIMC-specific controls */
28 #define VIMC_CID_VIMC_BASE (0x00f00000 | 0xf000)
29 #define VIMC_CID_VIMC_CLASS (0x00f00000 | 1)
30 #define VIMC_CID_TEST_PATTERN (VIMC_CID_VIMC_BASE + 0)
32 #define VIMC_FRAME_MAX_WIDTH 4096
33 #define VIMC_FRAME_MAX_HEIGHT 2160
34 #define VIMC_FRAME_MIN_WIDTH 16
35 #define VIMC_FRAME_MIN_HEIGHT 16
37 #define VIMC_FRAME_INDEX(lin, col, width, bpp) ((lin * width + col) * bpp)
39 /**
40 * struct vimc_colorimetry_clamp - Adjust colorimetry parameters
42 * @fmt: the pointer to struct v4l2_pix_format or
43 * struct v4l2_mbus_framefmt
45 * Entities must check if colorimetry given by the userspace is valid, if not
46 * then set them as DEFAULT
48 #define vimc_colorimetry_clamp(fmt) \
49 do { \
50 if ((fmt)->colorspace == V4L2_COLORSPACE_DEFAULT \
51 || (fmt)->colorspace > V4L2_COLORSPACE_DCI_P3) { \
52 (fmt)->colorspace = V4L2_COLORSPACE_DEFAULT; \
53 (fmt)->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; \
54 (fmt)->quantization = V4L2_QUANTIZATION_DEFAULT; \
55 (fmt)->xfer_func = V4L2_XFER_FUNC_DEFAULT; \
56 } \
57 if ((fmt)->ycbcr_enc > V4L2_YCBCR_ENC_SMPTE240M) \
58 (fmt)->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; \
59 if ((fmt)->quantization > V4L2_QUANTIZATION_LIM_RANGE) \
60 (fmt)->quantization = V4L2_QUANTIZATION_DEFAULT; \
61 if ((fmt)->xfer_func > V4L2_XFER_FUNC_SMPTE2084) \
62 (fmt)->xfer_func = V4L2_XFER_FUNC_DEFAULT; \
63 } while (0)
65 /**
66 * struct vimc_platform_data - platform data to components
68 * @entity_name: The name of the entity to be created
70 * Board setup code will often provide additional information using the device's
71 * platform_data field to hold additional information.
72 * When injecting a new platform_device in the component system the core needs
73 * to provide to the corresponding submodules the name of the entity that should
74 * be used when registering the subdevice in the Media Controller system.
76 struct vimc_platform_data {
77 char entity_name[32];
80 /**
81 * struct vimc_pix_map - maps media bus code with v4l2 pixel format
83 * @code: media bus format code defined by MEDIA_BUS_FMT_* macros
84 * @bbp: number of bytes each pixel occupies
85 * @pixelformat: pixel format devined by V4L2_PIX_FMT_* macros
87 * Struct which matches the MEDIA_BUS_FMT_* codes with the corresponding
88 * V4L2_PIX_FMT_* fourcc pixelformat and its bytes per pixel (bpp)
90 struct vimc_pix_map {
91 unsigned int code;
92 unsigned int bpp;
93 u32 pixelformat;
94 bool bayer;
97 /**
98 * struct vimc_ent_device - core struct that represents a node in the topology
100 * @ent: the pointer to struct media_entity for the node
101 * @pads: the list of pads of the node
102 * @process_frame: callback send a frame to that node
103 * @vdev_get_format: callback that returns the current format a pad, used
104 * only when is_media_entity_v4l2_video_device(ent) returns
105 * true
107 * Each node of the topology must create a vimc_ent_device struct. Depending on
108 * the node it will be of an instance of v4l2_subdev or video_device struct
109 * where both contains a struct media_entity.
110 * Those structures should embedded the vimc_ent_device struct through
111 * v4l2_set_subdevdata() and video_set_drvdata() respectivaly, allowing the
112 * vimc_ent_device struct to be retrieved from the corresponding struct
113 * media_entity
115 struct vimc_ent_device {
116 struct media_entity *ent;
117 struct media_pad *pads;
118 void * (*process_frame)(struct vimc_ent_device *ved,
119 const void *frame);
120 void (*vdev_get_format)(struct vimc_ent_device *ved,
121 struct v4l2_pix_format *fmt);
125 * vimc_pads_init - initialize pads
127 * @num_pads: number of pads to initialize
128 * @pads_flags: flags to use in each pad
130 * Helper functions to allocate/initialize pads
132 struct media_pad *vimc_pads_init(u16 num_pads,
133 const unsigned long *pads_flag);
136 * vimc_pads_cleanup - free pads
138 * @pads: pointer to the pads
140 * Helper function to free the pads initialized with vimc_pads_init
142 static inline void vimc_pads_cleanup(struct media_pad *pads)
144 kfree(pads);
148 * vimc_pipeline_s_stream - start stream through the pipeline
150 * @ent: the pointer to struct media_entity for the node
151 * @enable: 1 to start the stream and 0 to stop
153 * Helper function to call the s_stream of the subdevices connected
154 * in all the sink pads of the entity
156 int vimc_pipeline_s_stream(struct media_entity *ent, int enable);
159 * vimc_pix_map_by_index - get vimc_pix_map struct by its index
161 * @i: index of the vimc_pix_map struct in vimc_pix_map_list
163 const struct vimc_pix_map *vimc_pix_map_by_index(unsigned int i);
166 * vimc_pix_map_by_code - get vimc_pix_map struct by media bus code
168 * @code: media bus format code defined by MEDIA_BUS_FMT_* macros
170 const struct vimc_pix_map *vimc_pix_map_by_code(u32 code);
173 * vimc_pix_map_by_pixelformat - get vimc_pix_map struct by v4l2 pixel format
175 * @pixelformat: pixel format devined by V4L2_PIX_FMT_* macros
177 const struct vimc_pix_map *vimc_pix_map_by_pixelformat(u32 pixelformat);
180 * vimc_ent_sd_register - initialize and register a subdev node
182 * @ved: the vimc_ent_device struct to be initialize
183 * @sd: the v4l2_subdev struct to be initialize and registered
184 * @v4l2_dev: the v4l2 device to register the v4l2_subdev
185 * @name: name of the sub-device. Please notice that the name must be
186 * unique.
187 * @function: media entity function defined by MEDIA_ENT_F_* macros
188 * @num_pads: number of pads to initialize
189 * @pads_flag: flags to use in each pad
190 * @sd_ops: pointer to &struct v4l2_subdev_ops.
192 * Helper function initialize and register the struct vimc_ent_device and struct
193 * v4l2_subdev which represents a subdev node in the topology
195 int vimc_ent_sd_register(struct vimc_ent_device *ved,
196 struct v4l2_subdev *sd,
197 struct v4l2_device *v4l2_dev,
198 const char *const name,
199 u32 function,
200 u16 num_pads,
201 const unsigned long *pads_flag,
202 const struct v4l2_subdev_ops *sd_ops);
205 * vimc_ent_sd_unregister - cleanup and unregister a subdev node
207 * @ved: the vimc_ent_device struct to be cleaned up
208 * @sd: the v4l2_subdev struct to be unregistered
210 * Helper function cleanup and unregister the struct vimc_ent_device and struct
211 * v4l2_subdev which represents a subdev node in the topology
213 void vimc_ent_sd_unregister(struct vimc_ent_device *ved,
214 struct v4l2_subdev *sd);
217 * vimc_link_validate - validates a media link
219 * @link: pointer to &struct media_link
221 * This function calls validates if a media link is valid for streaming.
223 int vimc_link_validate(struct media_link *link);
225 #endif