blob: a9c1cfdc0dff464fcec6a216399174646b5a6aca [file] [log] [blame]
Helen Koikef2fe8902017-04-07 14:55:19 -03001/*
Helen Fornazier4a29b702017-06-19 14:00:18 -03002 * vimc-common.h Virtual Media Controller Driver
Helen Koikef2fe8902017-04-07 14:55:19 -03003 *
4 * Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
5 *
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.
10 *
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.
15 *
16 */
17
Helen Fornazier5ba0ae42017-06-19 14:00:11 -030018#ifndef _VIMC_COMMON_H_
19#define _VIMC_COMMON_H_
Helen Koikef2fe8902017-04-07 14:55:19 -030020
21#include <linux/slab.h>
Helen Fornazier5ba0ae42017-06-19 14:00:11 -030022#include <media/media-device.h>
Helen Koikef2fe8902017-04-07 14:55:19 -030023#include <media/v4l2-device.h>
24
Helen Fornazier88ad71a2017-06-19 14:00:16 -030025#define VIMC_FRAME_MAX_WIDTH 4096
26#define VIMC_FRAME_MAX_HEIGHT 2160
27#define VIMC_FRAME_MIN_WIDTH 16
28#define VIMC_FRAME_MIN_HEIGHT 16
29
Helen Koikef2fe8902017-04-07 14:55:19 -030030/**
Helen Fornazier441c0db2017-06-19 14:00:15 -030031 * struct vimc_colorimetry_clamp - Adjust colorimetry parameters
32 *
33 * @fmt: the pointer to struct v4l2_pix_format or
34 * struct v4l2_mbus_framefmt
35 *
36 * Entities must check if colorimetry given by the userspace is valid, if not
37 * then set them as DEFAULT
38 */
39#define vimc_colorimetry_clamp(fmt) \
40do { \
41 if ((fmt)->colorspace == V4L2_COLORSPACE_DEFAULT \
42 || (fmt)->colorspace > V4L2_COLORSPACE_DCI_P3) { \
43 (fmt)->colorspace = V4L2_COLORSPACE_DEFAULT; \
44 (fmt)->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; \
45 (fmt)->quantization = V4L2_QUANTIZATION_DEFAULT; \
46 (fmt)->xfer_func = V4L2_XFER_FUNC_DEFAULT; \
47 } \
48 if ((fmt)->ycbcr_enc > V4L2_YCBCR_ENC_SMPTE240M) \
49 (fmt)->ycbcr_enc = V4L2_YCBCR_ENC_DEFAULT; \
50 if ((fmt)->quantization > V4L2_QUANTIZATION_LIM_RANGE) \
51 (fmt)->quantization = V4L2_QUANTIZATION_DEFAULT; \
52 if ((fmt)->xfer_func > V4L2_XFER_FUNC_SMPTE2084) \
53 (fmt)->xfer_func = V4L2_XFER_FUNC_DEFAULT; \
54} while (0)
55
56/**
Helen Fornazier4a29b702017-06-19 14:00:18 -030057 * struct vimc_platform_data - platform data to components
58 *
59 * @entity_name: The name of the entity to be created
60 *
61 * Board setup code will often provide additional information using the device's
62 * platform_data field to hold additional information.
63 * When injecting a new platform_device in the component system the core needs
64 * to provide to the corresponding submodules the name of the entity that should
65 * be used when registering the subdevice in the Media Controller system.
66 */
67struct vimc_platform_data {
68 char entity_name[32];
69};
70
71/**
Helen Koikef2fe8902017-04-07 14:55:19 -030072 * struct vimc_pix_map - maps media bus code with v4l2 pixel format
73 *
74 * @code: media bus format code defined by MEDIA_BUS_FMT_* macros
75 * @bbp: number of bytes each pixel occupies
76 * @pixelformat: pixel format devined by V4L2_PIX_FMT_* macros
77 *
78 * Struct which matches the MEDIA_BUS_FMT_* codes with the corresponding
79 * V4L2_PIX_FMT_* fourcc pixelformat and its bytes per pixel (bpp)
80 */
81struct vimc_pix_map {
82 unsigned int code;
83 unsigned int bpp;
84 u32 pixelformat;
85};
86
87/**
88 * struct vimc_ent_device - core struct that represents a node in the topology
89 *
90 * @ent: the pointer to struct media_entity for the node
91 * @pads: the list of pads of the node
Helen Koikef2fe8902017-04-07 14:55:19 -030092 * @process_frame: callback send a frame to that node
Helen Fornazier288a22d2017-06-19 14:00:14 -030093 * @vdev_get_format: callback that returns the current format a pad, used
94 * only when is_media_entity_v4l2_video_device(ent) returns
95 * true
Helen Koikef2fe8902017-04-07 14:55:19 -030096 *
97 * Each node of the topology must create a vimc_ent_device struct. Depending on
98 * the node it will be of an instance of v4l2_subdev or video_device struct
99 * where both contains a struct media_entity.
100 * Those structures should embedded the vimc_ent_device struct through
101 * v4l2_set_subdevdata() and video_set_drvdata() respectivaly, allowing the
102 * vimc_ent_device struct to be retrieved from the corresponding struct
103 * media_entity
104 */
105struct vimc_ent_device {
106 struct media_entity *ent;
107 struct media_pad *pads;
Helen Koikef2fe8902017-04-07 14:55:19 -0300108 void (*process_frame)(struct vimc_ent_device *ved,
109 struct media_pad *sink, const void *frame);
Helen Fornazier288a22d2017-06-19 14:00:14 -0300110 void (*vdev_get_format)(struct vimc_ent_device *ved,
111 struct v4l2_pix_format *fmt);
Helen Koikef2fe8902017-04-07 14:55:19 -0300112};
113
114/**
115 * vimc_propagate_frame - propagate a frame through the topology
116 *
117 * @src: the source pad where the frame is being originated
118 * @frame: the frame to be propagated
119 *
120 * This function will call the process_frame callback from the vimc_ent_device
121 * struct of the nodes directly connected to the @src pad
122 */
123int vimc_propagate_frame(struct media_pad *src, const void *frame);
124
125/**
126 * vimc_pads_init - initialize pads
127 *
128 * @num_pads: number of pads to initialize
129 * @pads_flags: flags to use in each pad
130 *
131 * Helper functions to allocate/initialize pads
132 */
133struct media_pad *vimc_pads_init(u16 num_pads,
134 const unsigned long *pads_flag);
135
136/**
137 * vimc_pads_cleanup - free pads
138 *
139 * @pads: pointer to the pads
140 *
141 * Helper function to free the pads initialized with vimc_pads_init
142 */
143static inline void vimc_pads_cleanup(struct media_pad *pads)
144{
145 kfree(pads);
146}
147
148/**
Helen Fornazierbf5fb952017-06-19 14:00:13 -0300149 * vimc_pipeline_s_stream - start stream through the pipeline
150 *
151 * @ent: the pointer to struct media_entity for the node
152 * @enable: 1 to start the stream and 0 to stop
153 *
154 * Helper function to call the s_stream of the subdevices connected
155 * in all the sink pads of the entity
156 */
157int vimc_pipeline_s_stream(struct media_entity *ent, int enable);
158
159/**
Helen Fornazier88ad71a2017-06-19 14:00:16 -0300160 * vimc_pix_map_by_index - get vimc_pix_map struct by its index
161 *
162 * @i: index of the vimc_pix_map struct in vimc_pix_map_list
163 */
164const struct vimc_pix_map *vimc_pix_map_by_index(unsigned int i);
165
166/**
Helen Koikef2fe8902017-04-07 14:55:19 -0300167 * vimc_pix_map_by_code - get vimc_pix_map struct by media bus code
168 *
169 * @code: media bus format code defined by MEDIA_BUS_FMT_* macros
170 */
171const struct vimc_pix_map *vimc_pix_map_by_code(u32 code);
172
173/**
174 * vimc_pix_map_by_pixelformat - get vimc_pix_map struct by v4l2 pixel format
175 *
176 * @pixelformat: pixel format devined by V4L2_PIX_FMT_* macros
177 */
178const struct vimc_pix_map *vimc_pix_map_by_pixelformat(u32 pixelformat);
179
Helen Fornazierc1495432017-06-19 14:00:12 -0300180/**
181 * vimc_ent_sd_register - initialize and register a subdev node
182 *
183 * @ved: the vimc_ent_device struct to be initialize
184 * @sd: the v4l2_subdev struct to be initialize and registered
185 * @v4l2_dev: the v4l2 device to register the v4l2_subdev
186 * @name: name of the sub-device. Please notice that the name must be
187 * unique.
188 * @function: media entity function defined by MEDIA_ENT_F_* macros
189 * @num_pads: number of pads to initialize
190 * @pads_flag: flags to use in each pad
191 * @sd_ops: pointer to &struct v4l2_subdev_ops.
Helen Fornazierc1495432017-06-19 14:00:12 -0300192 *
193 * Helper function initialize and register the struct vimc_ent_device and struct
194 * v4l2_subdev which represents a subdev node in the topology
195 */
196int vimc_ent_sd_register(struct vimc_ent_device *ved,
197 struct v4l2_subdev *sd,
198 struct v4l2_device *v4l2_dev,
199 const char *const name,
200 u32 function,
201 u16 num_pads,
202 const unsigned long *pads_flag,
Helen Fornazier4a29b702017-06-19 14:00:18 -0300203 const struct v4l2_subdev_ops *sd_ops);
Helen Fornazierc1495432017-06-19 14:00:12 -0300204
205/**
Helen Fornazier4a29b702017-06-19 14:00:18 -0300206 * vimc_ent_sd_unregister - cleanup and unregister a subdev node
Helen Fornazierc1495432017-06-19 14:00:12 -0300207 *
Helen Fornazier4a29b702017-06-19 14:00:18 -0300208 * @ved: the vimc_ent_device struct to be cleaned up
209 * @sd: the v4l2_subdev struct to be unregistered
Helen Fornazierc1495432017-06-19 14:00:12 -0300210 *
211 * Helper function cleanup and unregister the struct vimc_ent_device and struct
212 * v4l2_subdev which represents a subdev node in the topology
213 */
214void vimc_ent_sd_unregister(struct vimc_ent_device *ved,
215 struct v4l2_subdev *sd);
216
Helen Fornazier288a22d2017-06-19 14:00:14 -0300217/**
218 * vimc_link_validate - validates a media link
219 *
220 * @link: pointer to &struct media_link
221 *
222 * This function calls validates if a media link is valid for streaming.
223 */
224int vimc_link_validate(struct media_link *link);
225
Helen Koikef2fe8902017-04-07 14:55:19 -0300226#endif