blob: 474feac6715513965165f5c7ca1e568e22db8801 [file] [log] [blame]
Laurent Pinchart26e0ca22013-06-04 11:22:30 -03001/*
2 * vsp1_wpf.c -- R-Car VSP1 Write Pixel Formatter
3 *
Laurent Pinchart8a1edc52014-02-06 14:42:31 -03004 * Copyright (C) 2013-2014 Renesas Electronics Corporation
Laurent Pinchart26e0ca22013-06-04 11:22:30 -03005 *
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
16#include <media/v4l2-subdev.h>
17
18#include "vsp1.h"
Laurent Pinchartef9621b2015-11-14 22:27:52 -020019#include "vsp1_dl.h"
Laurent Pincharta0cdac52016-01-17 19:53:56 -020020#include "vsp1_pipe.h"
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030021#include "vsp1_rwpf.h"
22#include "vsp1_video.h"
23
Laurent Pinchart0d268dc2016-03-25 06:51:06 -030024#define WPF_GEN2_MAX_WIDTH 2048U
25#define WPF_GEN2_MAX_HEIGHT 2048U
26#define WPF_GEN3_MAX_WIDTH 8190U
27#define WPF_GEN3_MAX_HEIGHT 8190U
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030028
29/* -----------------------------------------------------------------------------
30 * Device Access
31 */
32
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -020033static inline void vsp1_wpf_write(struct vsp1_rwpf *wpf,
34 struct vsp1_dl_list *dl, u32 reg, u32 data)
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030035{
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -020036 vsp1_dl_list_write(dl, reg + wpf->entity.index * VI6_WPF_OFFSET, data);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030037}
38
39/* -----------------------------------------------------------------------------
40 * V4L2 Subdevice Core Operations
41 */
42
43static int wpf_s_stream(struct v4l2_subdev *subdev, int enable)
44{
45 struct vsp1_rwpf *wpf = to_rwpf(subdev);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030046 struct vsp1_device *vsp1 = wpf->entity.vsp1;
Laurent Pinchart7578c202014-05-21 19:00:05 -030047
Laurent Pinchart7b905f02015-11-17 13:10:26 -020048 if (enable)
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030049 return 0;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030050
Laurent Pinchart7b905f02015-11-17 13:10:26 -020051 /* Write to registers directly when stopping the stream as there will be
52 * no pipeline run to apply the display list.
Laurent Pinchart629bb6d2013-07-10 18:03:46 -030053 */
Laurent Pinchart7b905f02015-11-17 13:10:26 -020054 vsp1_write(vsp1, VI6_WPF_IRQ_ENB(wpf->entity.index), 0);
55 vsp1_write(vsp1, wpf->entity.index * VI6_WPF_OFFSET +
56 VI6_WPF_SRCRPF, 0);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030057
58 return 0;
59}
60
61/* -----------------------------------------------------------------------------
62 * V4L2 Subdevice Operations
63 */
64
Laurent Pincharteb9163d2016-06-17 21:11:26 -030065static const struct v4l2_subdev_video_ops wpf_video_ops = {
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030066 .s_stream = wpf_s_stream,
67};
68
Laurent Pincharteb9163d2016-06-17 21:11:26 -030069static const struct v4l2_subdev_ops wpf_ops = {
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030070 .video = &wpf_video_ops,
Laurent Pinchartc6c8efb2015-11-22 13:37:45 -020071 .pad = &vsp1_rwpf_pad_ops,
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030072};
73
74/* -----------------------------------------------------------------------------
Laurent Pinchart52434532015-11-17 12:23:23 -020075 * VSP1 Entity Operations
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030076 */
77
Laurent Pinchart52434532015-11-17 12:23:23 -020078static void vsp1_wpf_destroy(struct vsp1_entity *entity)
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030079{
Laurent Pinchart52434532015-11-17 12:23:23 -020080 struct vsp1_rwpf *wpf = entity_to_rwpf(entity);
81
82 vsp1_dlm_destroy(wpf->dlm);
83}
84
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -020085static void wpf_set_memory(struct vsp1_entity *entity, struct vsp1_dl_list *dl)
Laurent Pinchart52434532015-11-17 12:23:23 -020086{
87 struct vsp1_rwpf *wpf = entity_to_rwpf(entity);
88
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -020089 vsp1_wpf_write(wpf, dl, VI6_WPF_DSTM_ADDR_Y, wpf->mem.addr[0]);
90 vsp1_wpf_write(wpf, dl, VI6_WPF_DSTM_ADDR_C0, wpf->mem.addr[1]);
91 vsp1_wpf_write(wpf, dl, VI6_WPF_DSTM_ADDR_C1, wpf->mem.addr[2]);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -030092}
93
Laurent Pinchart83dd0192016-01-14 14:17:32 -020094static void wpf_configure(struct vsp1_entity *entity,
95 struct vsp1_pipeline *pipe,
Laurent Pinchartfc845e52016-06-11 04:07:56 -030096 struct vsp1_dl_list *dl, bool full)
Laurent Pinchart7b905f02015-11-17 13:10:26 -020097{
Laurent Pinchart7b905f02015-11-17 13:10:26 -020098 struct vsp1_rwpf *wpf = to_rwpf(&entity->subdev);
99 struct vsp1_device *vsp1 = wpf->entity.vsp1;
100 const struct v4l2_mbus_framefmt *source_format;
101 const struct v4l2_mbus_framefmt *sink_format;
102 const struct v4l2_rect *crop;
103 unsigned int i;
104 u32 outfmt = 0;
105 u32 srcrpf = 0;
106
Laurent Pinchartfc845e52016-06-11 04:07:56 -0300107 if (!full)
108 return;
109
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200110 /* Cropping */
111 crop = vsp1_rwpf_get_crop(wpf, wpf->entity.config);
112
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200113 vsp1_wpf_write(wpf, dl, VI6_WPF_HSZCLIP, VI6_WPF_SZCLIP_EN |
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200114 (crop->left << VI6_WPF_SZCLIP_OFST_SHIFT) |
115 (crop->width << VI6_WPF_SZCLIP_SIZE_SHIFT));
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200116 vsp1_wpf_write(wpf, dl, VI6_WPF_VSZCLIP, VI6_WPF_SZCLIP_EN |
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200117 (crop->top << VI6_WPF_SZCLIP_OFST_SHIFT) |
118 (crop->height << VI6_WPF_SZCLIP_SIZE_SHIFT));
119
120 /* Format */
121 sink_format = vsp1_entity_get_pad_format(&wpf->entity,
122 wpf->entity.config,
123 RWPF_PAD_SINK);
124 source_format = vsp1_entity_get_pad_format(&wpf->entity,
125 wpf->entity.config,
126 RWPF_PAD_SOURCE);
127
128 if (!pipe->lif) {
129 const struct v4l2_pix_format_mplane *format = &wpf->format;
130 const struct vsp1_format_info *fmtinfo = wpf->fmtinfo;
131
132 outfmt = fmtinfo->hwfmt << VI6_WPF_OUTFMT_WRFMT_SHIFT;
133
134 if (fmtinfo->alpha)
135 outfmt |= VI6_WPF_OUTFMT_PXA;
136 if (fmtinfo->swap_yc)
137 outfmt |= VI6_WPF_OUTFMT_SPYCS;
138 if (fmtinfo->swap_uv)
139 outfmt |= VI6_WPF_OUTFMT_SPUVS;
140
141 /* Destination stride and byte swapping. */
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200142 vsp1_wpf_write(wpf, dl, VI6_WPF_DSTM_STRIDE_Y,
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200143 format->plane_fmt[0].bytesperline);
144 if (format->num_planes > 1)
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200145 vsp1_wpf_write(wpf, dl, VI6_WPF_DSTM_STRIDE_C,
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200146 format->plane_fmt[1].bytesperline);
147
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200148 vsp1_wpf_write(wpf, dl, VI6_WPF_DSWAP, fmtinfo->swap);
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200149 }
150
151 if (sink_format->code != source_format->code)
152 outfmt |= VI6_WPF_OUTFMT_CSC;
153
154 outfmt |= wpf->alpha << VI6_WPF_OUTFMT_PDV_SHIFT;
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200155 vsp1_wpf_write(wpf, dl, VI6_WPF_OUTFMT, outfmt);
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200156
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200157 vsp1_dl_list_write(dl, VI6_DPR_WPF_FPORCH(wpf->entity.index),
158 VI6_DPR_WPF_FPORCH_FP_WPFN);
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200159
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200160 vsp1_dl_list_write(dl, VI6_WPF_WRBCK_CTRL, 0);
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200161
162 /* Sources. If the pipeline has a single input and BRU is not used,
163 * configure it as the master layer. Otherwise configure all
164 * inputs as sub-layers and select the virtual RPF as the master
165 * layer.
166 */
167 for (i = 0; i < vsp1->info->rpf_count; ++i) {
168 struct vsp1_rwpf *input = pipe->inputs[i];
169
170 if (!input)
171 continue;
172
173 srcrpf |= (!pipe->bru && pipe->num_inputs == 1)
174 ? VI6_WPF_SRCRPF_RPF_ACT_MST(input->entity.index)
175 : VI6_WPF_SRCRPF_RPF_ACT_SUB(input->entity.index);
176 }
177
178 if (pipe->bru || pipe->num_inputs > 1)
179 srcrpf |= VI6_WPF_SRCRPF_VIRACT_MST;
180
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200181 vsp1_wpf_write(wpf, dl, VI6_WPF_SRCRPF, srcrpf);
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200182
183 /* Enable interrupts */
Laurent Pinchart5e8dbbf2015-11-22 20:29:25 -0200184 vsp1_dl_list_write(dl, VI6_WPF_IRQ_STA(wpf->entity.index), 0);
185 vsp1_dl_list_write(dl, VI6_WPF_IRQ_ENB(wpf->entity.index),
186 VI6_WFP_IRQ_ENB_FREE);
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200187}
188
Laurent Pinchart52434532015-11-17 12:23:23 -0200189static const struct vsp1_entity_operations wpf_entity_ops = {
190 .destroy = vsp1_wpf_destroy,
Laurent Pinchartb58faa92015-07-28 16:04:47 -0300191 .set_memory = wpf_set_memory,
Laurent Pinchart7b905f02015-11-17 13:10:26 -0200192 .configure = wpf_configure,
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300193};
194
195/* -----------------------------------------------------------------------------
196 * Initialization and Cleanup
197 */
198
199struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index)
200{
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300201 struct vsp1_rwpf *wpf;
Laurent Pinchart823329d2015-11-15 19:42:01 -0200202 char name[6];
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300203 int ret;
204
205 wpf = devm_kzalloc(vsp1->dev, sizeof(*wpf), GFP_KERNEL);
206 if (wpf == NULL)
207 return ERR_PTR(-ENOMEM);
208
Laurent Pinchart0d268dc2016-03-25 06:51:06 -0300209 if (vsp1->info->gen == 2) {
210 wpf->max_width = WPF_GEN2_MAX_WIDTH;
211 wpf->max_height = WPF_GEN2_MAX_HEIGHT;
212 } else {
213 wpf->max_width = WPF_GEN3_MAX_WIDTH;
214 wpf->max_height = WPF_GEN3_MAX_HEIGHT;
215 }
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300216
Laurent Pinchart52434532015-11-17 12:23:23 -0200217 wpf->entity.ops = &wpf_entity_ops;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300218 wpf->entity.type = VSP1_ENTITY_WPF;
219 wpf->entity.index = index;
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300220
Laurent Pinchart823329d2015-11-15 19:42:01 -0200221 sprintf(name, "wpf.%u", index);
Laurent Pinchart6a8e07b2016-02-15 22:10:26 -0200222 ret = vsp1_entity_init(vsp1, &wpf->entity, name, 2, &wpf_ops,
223 MEDIA_ENT_F_PROC_VIDEO_PIXEL_FORMATTER);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300224 if (ret < 0)
225 return ERR_PTR(ret);
226
Laurent Pinchart351bbf92015-11-01 15:18:56 -0200227 /* Initialize the display list manager. */
228 wpf->dlm = vsp1_dlm_create(vsp1, index, 4);
229 if (!wpf->dlm) {
230 ret = -ENOMEM;
231 goto error;
Laurent Pinchartef9621b2015-11-14 22:27:52 -0200232 }
233
Laurent Pinchart7578c202014-05-21 19:00:05 -0300234 /* Initialize the control handler. */
Laurent Pinchartbd2fdd52015-11-01 12:19:42 -0200235 ret = vsp1_rwpf_init_ctrls(wpf);
236 if (ret < 0) {
Laurent Pinchart7578c202014-05-21 19:00:05 -0300237 dev_err(vsp1->dev, "wpf%u: failed to initialize controls\n",
238 index);
Laurent Pinchart7578c202014-05-21 19:00:05 -0300239 goto error;
240 }
241
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300242 return wpf;
243
Laurent Pinchart1499be62014-05-28 12:49:13 -0300244error:
245 vsp1_entity_destroy(&wpf->entity);
Laurent Pinchart26e0ca22013-06-04 11:22:30 -0300246 return ERR_PTR(ret);
247}