]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/media/platform/vsp1/vsp1_hsit.c
[media] v4l: vsp1: Fix RPF cropping
[mirror_ubuntu-bionic-kernel.git] / drivers / media / platform / vsp1 / vsp1_hsit.c
CommitLineData
5cdf5741
LP
1/*
2 * vsp1_hsit.c -- R-Car VSP1 Hue Saturation value (Inverse) Transform
3 *
4 * Copyright (C) 2013 Renesas Corporation
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/v4l2-subdev.h>
18
19#include "vsp1.h"
5e8dbbf3 20#include "vsp1_dl.h"
5cdf5741
LP
21#include "vsp1_hsit.h"
22
23#define HSIT_MIN_SIZE 4U
24#define HSIT_MAX_SIZE 8190U
25
26/* -----------------------------------------------------------------------------
27 * Device Access
28 */
29
5e8dbbf3
LP
30static inline void vsp1_hsit_write(struct vsp1_hsit *hsit,
31 struct vsp1_dl_list *dl, u32 reg, u32 data)
5cdf5741 32{
5e8dbbf3 33 vsp1_dl_list_write(dl, reg, data);
5cdf5741
LP
34}
35
36/* -----------------------------------------------------------------------------
7b905f05 37 * V4L2 Subdevice Operations
5cdf5741
LP
38 */
39
40static int hsit_enum_mbus_code(struct v4l2_subdev *subdev,
f7234138 41 struct v4l2_subdev_pad_config *cfg,
5cdf5741
LP
42 struct v4l2_subdev_mbus_code_enum *code)
43{
44 struct vsp1_hsit *hsit = to_hsit(subdev);
45
46 if (code->index > 0)
47 return -EINVAL;
48
49 if ((code->pad == HSIT_PAD_SINK && !hsit->inverse) |
50 (code->pad == HSIT_PAD_SOURCE && hsit->inverse))
27ffaeb0 51 code->code = MEDIA_BUS_FMT_ARGB8888_1X32;
5cdf5741 52 else
27ffaeb0 53 code->code = MEDIA_BUS_FMT_AHSV8888_1X32;
5cdf5741
LP
54
55 return 0;
56}
57
58static int hsit_enum_frame_size(struct v4l2_subdev *subdev,
f7234138 59 struct v4l2_subdev_pad_config *cfg,
5cdf5741
LP
60 struct v4l2_subdev_frame_size_enum *fse)
61{
076e834f
LP
62 return vsp1_subdev_enum_frame_size(subdev, cfg, fse, HSIT_MIN_SIZE,
63 HSIT_MIN_SIZE, HSIT_MAX_SIZE,
64 HSIT_MAX_SIZE);
5cdf5741
LP
65}
66
5cdf5741 67static int hsit_set_format(struct v4l2_subdev *subdev,
f7234138 68 struct v4l2_subdev_pad_config *cfg,
5cdf5741
LP
69 struct v4l2_subdev_format *fmt)
70{
71 struct vsp1_hsit *hsit = to_hsit(subdev);
e790c3cb 72 struct v4l2_subdev_pad_config *config;
5cdf5741 73 struct v4l2_mbus_framefmt *format;
34e77ed8
LP
74 int ret = 0;
75
76 mutex_lock(&hsit->entity.lock);
5cdf5741 77
e790c3cb 78 config = vsp1_entity_get_pad_config(&hsit->entity, cfg, fmt->which);
34e77ed8
LP
79 if (!config) {
80 ret = -EINVAL;
81 goto done;
82 }
e790c3cb
LP
83
84 format = vsp1_entity_get_pad_format(&hsit->entity, config, fmt->pad);
5cdf5741
LP
85
86 if (fmt->pad == HSIT_PAD_SOURCE) {
87 /* The HST and HSI output format code and resolution can't be
88 * modified.
89 */
90 fmt->format = *format;
34e77ed8 91 goto done;
5cdf5741
LP
92 }
93
27ffaeb0
BB
94 format->code = hsit->inverse ? MEDIA_BUS_FMT_AHSV8888_1X32
95 : MEDIA_BUS_FMT_ARGB8888_1X32;
5cdf5741
LP
96 format->width = clamp_t(unsigned int, fmt->format.width,
97 HSIT_MIN_SIZE, HSIT_MAX_SIZE);
98 format->height = clamp_t(unsigned int, fmt->format.height,
99 HSIT_MIN_SIZE, HSIT_MAX_SIZE);
100 format->field = V4L2_FIELD_NONE;
101 format->colorspace = V4L2_COLORSPACE_SRGB;
102
103 fmt->format = *format;
104
105 /* Propagate the format to the source pad. */
e790c3cb
LP
106 format = vsp1_entity_get_pad_format(&hsit->entity, config,
107 HSIT_PAD_SOURCE);
5cdf5741 108 *format = fmt->format;
27ffaeb0
BB
109 format->code = hsit->inverse ? MEDIA_BUS_FMT_ARGB8888_1X32
110 : MEDIA_BUS_FMT_AHSV8888_1X32;
5cdf5741 111
34e77ed8
LP
112done:
113 mutex_unlock(&hsit->entity.lock);
114 return ret;
5cdf5741
LP
115}
116
eb9163d3 117static const struct v4l2_subdev_pad_ops hsit_pad_ops = {
0efdf0f5 118 .init_cfg = vsp1_entity_init_cfg,
5cdf5741
LP
119 .enum_mbus_code = hsit_enum_mbus_code,
120 .enum_frame_size = hsit_enum_frame_size,
3f557220 121 .get_fmt = vsp1_subdev_get_pad_format,
5cdf5741
LP
122 .set_fmt = hsit_set_format,
123};
124
eb9163d3 125static const struct v4l2_subdev_ops hsit_ops = {
5cdf5741
LP
126 .pad = &hsit_pad_ops,
127};
128
7b905f05
LP
129/* -----------------------------------------------------------------------------
130 * VSP1 Entity Operations
131 */
132
83dd019d
LP
133static void hsit_configure(struct vsp1_entity *entity,
134 struct vsp1_pipeline *pipe,
fc845e52 135 struct vsp1_dl_list *dl, bool full)
7b905f05
LP
136{
137 struct vsp1_hsit *hsit = to_hsit(&entity->subdev);
138
fc845e52
LP
139 if (!full)
140 return;
141
7b905f05 142 if (hsit->inverse)
5e8dbbf3 143 vsp1_hsit_write(hsit, dl, VI6_HSI_CTRL, VI6_HSI_CTRL_EN);
7b905f05 144 else
5e8dbbf3 145 vsp1_hsit_write(hsit, dl, VI6_HST_CTRL, VI6_HST_CTRL_EN);
7b905f05
LP
146}
147
148static const struct vsp1_entity_operations hsit_entity_ops = {
149 .configure = hsit_configure,
150};
151
5cdf5741
LP
152/* -----------------------------------------------------------------------------
153 * Initialization and Cleanup
154 */
155
156struct vsp1_hsit *vsp1_hsit_create(struct vsp1_device *vsp1, bool inverse)
157{
5cdf5741
LP
158 struct vsp1_hsit *hsit;
159 int ret;
160
161 hsit = devm_kzalloc(vsp1->dev, sizeof(*hsit), GFP_KERNEL);
162 if (hsit == NULL)
163 return ERR_PTR(-ENOMEM);
164
165 hsit->inverse = inverse;
166
7b905f05
LP
167 hsit->entity.ops = &hsit_entity_ops;
168
d9b45ed3 169 if (inverse)
5cdf5741 170 hsit->entity.type = VSP1_ENTITY_HSI;
d9b45ed3 171 else
5cdf5741 172 hsit->entity.type = VSP1_ENTITY_HST;
5cdf5741 173
6a8e07b2
LP
174 ret = vsp1_entity_init(vsp1, &hsit->entity, inverse ? "hsi" : "hst",
175 2, &hsit_ops,
176 MEDIA_ENT_F_PROC_VIDEO_PIXEL_ENC_CONV);
5cdf5741
LP
177 if (ret < 0)
178 return ERR_PTR(ret);
179
5cdf5741
LP
180 return hsit;
181}