Merge drm-fixes into drm-next.
[deliverable/linux.git] / drivers / media / platform / vsp1 / vsp1_entity.c
CommitLineData
26e0ca22
LP
1/*
2 * vsp1_entity.c -- R-Car VSP1 Base Entity
3 *
8a1edc55 4 * Copyright (C) 2013-2014 Renesas Electronics Corporation
26e0ca22
LP
5 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/device.h>
15#include <linux/gfp.h>
16
17#include <media/media-entity.h>
a626e64e 18#include <media/v4l2-ctrls.h>
26e0ca22
LP
19#include <media/v4l2-subdev.h>
20
21#include "vsp1.h"
22#include "vsp1_entity.h"
23
960de2cf
LP
24bool vsp1_entity_is_streaming(struct vsp1_entity *entity)
25{
adb8963f 26 unsigned long flags;
960de2cf
LP
27 bool streaming;
28
adb8963f 29 spin_lock_irqsave(&entity->lock, flags);
960de2cf 30 streaming = entity->streaming;
adb8963f 31 spin_unlock_irqrestore(&entity->lock, flags);
960de2cf
LP
32
33 return streaming;
34}
35
36int vsp1_entity_set_streaming(struct vsp1_entity *entity, bool streaming)
37{
adb8963f 38 unsigned long flags;
960de2cf
LP
39 int ret;
40
adb8963f 41 spin_lock_irqsave(&entity->lock, flags);
960de2cf 42 entity->streaming = streaming;
adb8963f 43 spin_unlock_irqrestore(&entity->lock, flags);
960de2cf
LP
44
45 if (!streaming)
46 return 0;
47
5aa2eb3c 48 if (!entity->vsp1->info->uapi || !entity->subdev.ctrl_handler)
960de2cf
LP
49 return 0;
50
51 ret = v4l2_ctrl_handler_setup(entity->subdev.ctrl_handler);
52 if (ret < 0) {
adb8963f 53 spin_lock_irqsave(&entity->lock, flags);
960de2cf 54 entity->streaming = false;
adb8963f 55 spin_unlock_irqrestore(&entity->lock, flags);
960de2cf
LP
56 }
57
58 return ret;
59}
60
665b693c
LP
61void vsp1_entity_route_setup(struct vsp1_entity *source)
62{
63 struct vsp1_entity *sink;
64
65 if (source->route->reg == 0)
66 return;
67
68 sink = container_of(source->sink, struct vsp1_entity, subdev.entity);
1517b039
TS
69 vsp1_mod_write(source, source->route->reg,
70 sink->route->inputs[source->sink_pad]);
665b693c
LP
71}
72
26e0ca22
LP
73/* -----------------------------------------------------------------------------
74 * V4L2 Subdevice Operations
75 */
76
77struct v4l2_mbus_framefmt *
78vsp1_entity_get_pad_format(struct vsp1_entity *entity,
f7234138 79 struct v4l2_subdev_pad_config *cfg,
26e0ca22
LP
80 unsigned int pad, u32 which)
81{
82 switch (which) {
83 case V4L2_SUBDEV_FORMAT_TRY:
f7234138 84 return v4l2_subdev_get_try_format(&entity->subdev, cfg, pad);
26e0ca22
LP
85 case V4L2_SUBDEV_FORMAT_ACTIVE:
86 return &entity->formats[pad];
87 default:
88 return NULL;
89 }
90}
91
92/*
93 * vsp1_entity_init_formats - Initialize formats on all pads
94 * @subdev: V4L2 subdevice
f7234138 95 * @cfg: V4L2 subdev pad configuration
26e0ca22 96 *
f7234138 97 * Initialize all pad formats with default values. If cfg is not NULL, try
26e0ca22
LP
98 * formats are initialized on the file handle. Otherwise active formats are
99 * initialized on the device.
100 */
101void vsp1_entity_init_formats(struct v4l2_subdev *subdev,
f7234138 102 struct v4l2_subdev_pad_config *cfg)
26e0ca22
LP
103{
104 struct v4l2_subdev_format format;
105 unsigned int pad;
106
107 for (pad = 0; pad < subdev->entity.num_pads - 1; ++pad) {
108 memset(&format, 0, sizeof(format));
109
110 format.pad = pad;
f7234138 111 format.which = cfg ? V4L2_SUBDEV_FORMAT_TRY
26e0ca22
LP
112 : V4L2_SUBDEV_FORMAT_ACTIVE;
113
f7234138 114 v4l2_subdev_call(subdev, pad, set_fmt, cfg, &format);
26e0ca22
LP
115 }
116}
117
118static int vsp1_entity_open(struct v4l2_subdev *subdev,
119 struct v4l2_subdev_fh *fh)
120{
f7234138 121 vsp1_entity_init_formats(subdev, fh->pad);
26e0ca22
LP
122
123 return 0;
124}
125
126const struct v4l2_subdev_internal_ops vsp1_subdev_internal_ops = {
127 .open = vsp1_entity_open,
128};
129
130/* -----------------------------------------------------------------------------
131 * Media Operations
132 */
133
babca007
LP
134int vsp1_entity_link_setup(struct media_entity *entity,
135 const struct media_pad *local,
136 const struct media_pad *remote, u32 flags)
26e0ca22
LP
137{
138 struct vsp1_entity *source;
139
140 if (!(local->flags & MEDIA_PAD_FL_SOURCE))
141 return 0;
142
143 source = container_of(local->entity, struct vsp1_entity, subdev.entity);
144
145 if (!source->route)
146 return 0;
147
148 if (flags & MEDIA_LNK_FL_ENABLED) {
149 if (source->sink)
150 return -EBUSY;
151 source->sink = remote->entity;
d9b45ed3 152 source->sink_pad = remote->index;
26e0ca22
LP
153 } else {
154 source->sink = NULL;
d9b45ed3 155 source->sink_pad = 0;
26e0ca22
LP
156 }
157
158 return 0;
159}
160
26e0ca22
LP
161/* -----------------------------------------------------------------------------
162 * Initialization
163 */
164
d9b45ed3 165static const struct vsp1_route vsp1_routes[] = {
629bb6d4
LP
166 { VSP1_ENTITY_BRU, 0, VI6_DPR_BRU_ROUTE,
167 { VI6_DPR_NODE_BRU_IN(0), VI6_DPR_NODE_BRU_IN(1),
7f2d50f8
LP
168 VI6_DPR_NODE_BRU_IN(2), VI6_DPR_NODE_BRU_IN(3),
169 VI6_DPR_NODE_BRU_IN(4) } },
d9b45ed3
LP
170 { VSP1_ENTITY_HSI, 0, VI6_DPR_HSI_ROUTE, { VI6_DPR_NODE_HSI, } },
171 { VSP1_ENTITY_HST, 0, VI6_DPR_HST_ROUTE, { VI6_DPR_NODE_HST, } },
172 { VSP1_ENTITY_LIF, 0, 0, { VI6_DPR_NODE_LIF, } },
173 { VSP1_ENTITY_LUT, 0, VI6_DPR_LUT_ROUTE, { VI6_DPR_NODE_LUT, } },
174 { VSP1_ENTITY_RPF, 0, VI6_DPR_RPF_ROUTE(0), { VI6_DPR_NODE_RPF(0), } },
175 { VSP1_ENTITY_RPF, 1, VI6_DPR_RPF_ROUTE(1), { VI6_DPR_NODE_RPF(1), } },
176 { VSP1_ENTITY_RPF, 2, VI6_DPR_RPF_ROUTE(2), { VI6_DPR_NODE_RPF(2), } },
177 { VSP1_ENTITY_RPF, 3, VI6_DPR_RPF_ROUTE(3), { VI6_DPR_NODE_RPF(3), } },
178 { VSP1_ENTITY_RPF, 4, VI6_DPR_RPF_ROUTE(4), { VI6_DPR_NODE_RPF(4), } },
179 { VSP1_ENTITY_SRU, 0, VI6_DPR_SRU_ROUTE, { VI6_DPR_NODE_SRU, } },
180 { VSP1_ENTITY_UDS, 0, VI6_DPR_UDS_ROUTE(0), { VI6_DPR_NODE_UDS(0), } },
181 { VSP1_ENTITY_UDS, 1, VI6_DPR_UDS_ROUTE(1), { VI6_DPR_NODE_UDS(1), } },
182 { VSP1_ENTITY_UDS, 2, VI6_DPR_UDS_ROUTE(2), { VI6_DPR_NODE_UDS(2), } },
183 { VSP1_ENTITY_WPF, 0, 0, { VI6_DPR_NODE_WPF(0), } },
184 { VSP1_ENTITY_WPF, 1, 0, { VI6_DPR_NODE_WPF(1), } },
185 { VSP1_ENTITY_WPF, 2, 0, { VI6_DPR_NODE_WPF(2), } },
186 { VSP1_ENTITY_WPF, 3, 0, { VI6_DPR_NODE_WPF(3), } },
187};
188
26e0ca22
LP
189int vsp1_entity_init(struct vsp1_device *vsp1, struct vsp1_entity *entity,
190 unsigned int num_pads)
191{
26e0ca22
LP
192 unsigned int i;
193
d9b45ed3
LP
194 for (i = 0; i < ARRAY_SIZE(vsp1_routes); ++i) {
195 if (vsp1_routes[i].type == entity->type &&
196 vsp1_routes[i].index == entity->index) {
197 entity->route = &vsp1_routes[i];
26e0ca22
LP
198 break;
199 }
200 }
201
d9b45ed3 202 if (i == ARRAY_SIZE(vsp1_routes))
26e0ca22
LP
203 return -EINVAL;
204
adb8963f 205 spin_lock_init(&entity->lock);
960de2cf 206
26e0ca22
LP
207 entity->vsp1 = vsp1;
208 entity->source_pad = num_pads - 1;
209
210 /* Allocate formats and pads. */
211 entity->formats = devm_kzalloc(vsp1->dev,
212 num_pads * sizeof(*entity->formats),
213 GFP_KERNEL);
214 if (entity->formats == NULL)
215 return -ENOMEM;
216
217 entity->pads = devm_kzalloc(vsp1->dev, num_pads * sizeof(*entity->pads),
218 GFP_KERNEL);
219 if (entity->pads == NULL)
220 return -ENOMEM;
221
222 /* Initialize pads. */
223 for (i = 0; i < num_pads - 1; ++i)
224 entity->pads[i].flags = MEDIA_PAD_FL_SINK;
225
226 entity->pads[num_pads - 1].flags = MEDIA_PAD_FL_SOURCE;
227
228 /* Initialize the media entity. */
ab22e77c 229 return media_entity_pads_init(&entity->subdev.entity, num_pads,
18095107 230 entity->pads);
26e0ca22
LP
231}
232
233void vsp1_entity_destroy(struct vsp1_entity *entity)
234{
a626e64e
LP
235 if (entity->subdev.ctrl_handler)
236 v4l2_ctrl_handler_free(entity->subdev.ctrl_handler);
26e0ca22
LP
237 media_entity_cleanup(&entity->subdev.entity);
238}
This page took 0.168121 seconds and 5 git commands to generate.