2017-12-01 21:47:12 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//
|
|
|
|
// tvp5150 - Texas Instruments TVP5150A/AM1 and TVP5151 video decoder driver
|
|
|
|
//
|
MAINTAINERS & files: Canonize the e-mails I use at files
From now on, I'll start using my @kernel.org as my development e-mail.
As such, let's remove the entries that point to the old
mchehab@s-opensource.com at MAINTAINERS file.
For the files written with a copyright with mchehab@s-opensource,
let's keep Samsung on their names, using mchehab+samsung@kernel.org,
in order to keep pointing to my employer, with sponsors the work.
For the files written before I join Samsung (on July, 4 2013),
let's just use mchehab@kernel.org.
For bug reports, we can simply point to just kernel.org, as
this will reach my mchehab+samsung inbox anyway.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Brian Warner <brian.warner@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2018-04-25 17:34:48 +08:00
|
|
|
// Copyright (c) 2005,2006 Mauro Carvalho Chehab <mchehab@kernel.org>
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2016-02-06 03:09:56 +08:00
|
|
|
#include <dt-bindings/media/tvp5150.h>
|
2005-11-09 13:36:40 +08:00
|
|
|
#include <linux/i2c.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2008-07-25 16:32:50 +08:00
|
|
|
#include <linux/videodev2.h>
|
2005-11-09 13:36:40 +08:00
|
|
|
#include <linux/delay.h>
|
2016-01-07 20:46:49 +08:00
|
|
|
#include <linux/gpio/consumer.h>
|
2018-06-29 00:20:44 +08:00
|
|
|
#include <linux/interrupt.h>
|
2011-07-04 02:03:12 +08:00
|
|
|
#include <linux/module.h>
|
2016-08-27 07:17:25 +08:00
|
|
|
#include <linux/of_graph.h>
|
2020-03-12 18:31:50 +08:00
|
|
|
#include <linux/pm_runtime.h>
|
2018-06-29 00:20:35 +08:00
|
|
|
#include <linux/regmap.h>
|
2015-09-21 19:23:09 +08:00
|
|
|
#include <media/v4l2-async.h>
|
2008-12-18 22:17:25 +08:00
|
|
|
#include <media/v4l2-device.h>
|
2020-03-12 18:31:51 +08:00
|
|
|
#include <media/v4l2-event.h>
|
2010-12-12 19:45:43 +08:00
|
|
|
#include <media/v4l2-ctrls.h>
|
2016-08-27 07:17:25 +08:00
|
|
|
#include <media/v4l2-fwnode.h>
|
2016-01-27 22:08:13 +08:00
|
|
|
#include <media/v4l2-mc.h>
|
2020-03-12 18:31:48 +08:00
|
|
|
#include <media/v4l2-rect.h>
|
2005-11-09 13:36:40 +08:00
|
|
|
|
|
|
|
#include "tvp5150_reg.h"
|
|
|
|
|
2014-02-28 00:44:47 +08:00
|
|
|
#define TVP5150_H_MAX 720U
|
|
|
|
#define TVP5150_V_MAX_525_60 480U
|
|
|
|
#define TVP5150_V_MAX_OTHERS 576U
|
2012-01-31 16:23:46 +08:00
|
|
|
#define TVP5150_MAX_CROP_LEFT 511
|
|
|
|
#define TVP5150_MAX_CROP_TOP 127
|
|
|
|
#define TVP5150_CROP_SHIFT 2
|
2018-06-29 00:20:39 +08:00
|
|
|
#define TVP5150_MBUS_FMT MEDIA_BUS_FMT_UYVY8_2X8
|
|
|
|
#define TVP5150_FIELD V4L2_FIELD_ALTERNATE
|
|
|
|
#define TVP5150_COLORSPACE V4L2_COLORSPACE_SMPTE170M
|
2020-03-12 18:31:55 +08:00
|
|
|
#define TVP5150_STD_MASK (V4L2_STD_NTSC | \
|
|
|
|
V4L2_STD_NTSC_443 | \
|
|
|
|
V4L2_STD_PAL | \
|
|
|
|
V4L2_STD_PAL_M | \
|
|
|
|
V4L2_STD_PAL_N | \
|
|
|
|
V4L2_STD_PAL_Nc | \
|
|
|
|
V4L2_STD_SECAM)
|
2012-01-31 16:23:46 +08:00
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
#define TVP5150_MAX_CONNECTORS 3 /* Check dt-bindings for more information */
|
|
|
|
|
2016-02-13 01:42:02 +08:00
|
|
|
MODULE_DESCRIPTION("Texas Instruments TVP5150A/TVP5150AM1/TVP5151 video decoder driver");
|
2005-11-09 13:36:40 +08:00
|
|
|
MODULE_AUTHOR("Mauro Carvalho Chehab");
|
2017-12-01 21:47:12 +08:00
|
|
|
MODULE_LICENSE("GPL v2");
|
2005-11-09 13:36:40 +08:00
|
|
|
|
|
|
|
|
2008-04-23 01:41:48 +08:00
|
|
|
static int debug;
|
2014-02-28 00:44:48 +08:00
|
|
|
module_param(debug, int, 0644);
|
2008-12-18 22:17:25 +08:00
|
|
|
MODULE_PARM_DESC(debug, "Debug level (0-2)");
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2016-11-13 15:34:12 +08:00
|
|
|
#define dprintk0(__dev, __arg...) dev_dbg_lvl(__dev, 0, 0, __arg)
|
|
|
|
|
2018-08-01 18:10:05 +08:00
|
|
|
enum tvp5150_pads {
|
2020-03-12 18:31:45 +08:00
|
|
|
TVP5150_PAD_AIP1A,
|
|
|
|
TVP5150_PAD_AIP1B,
|
2018-08-01 18:10:05 +08:00
|
|
|
TVP5150_PAD_VID_OUT,
|
|
|
|
TVP5150_NUM_PADS
|
|
|
|
};
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
struct tvp5150_connector {
|
|
|
|
struct v4l2_fwnode_connector base;
|
|
|
|
struct media_entity ent;
|
|
|
|
struct media_pad pad;
|
|
|
|
};
|
|
|
|
|
2005-11-09 13:36:40 +08:00
|
|
|
struct tvp5150 {
|
2008-12-18 22:17:25 +08:00
|
|
|
struct v4l2_subdev sd;
|
2020-03-12 18:31:45 +08:00
|
|
|
|
2018-08-01 18:10:05 +08:00
|
|
|
struct media_pad pads[TVP5150_NUM_PADS];
|
2020-03-12 18:31:45 +08:00
|
|
|
struct tvp5150_connector connectors[TVP5150_MAX_CONNECTORS];
|
2020-03-12 18:31:55 +08:00
|
|
|
struct tvp5150_connector *cur_connector;
|
2020-03-12 18:31:45 +08:00
|
|
|
unsigned int connectors_num;
|
|
|
|
|
2010-12-12 19:45:43 +08:00
|
|
|
struct v4l2_ctrl_handler hdl;
|
2012-01-31 16:23:46 +08:00
|
|
|
struct v4l2_rect rect;
|
2018-06-29 00:20:35 +08:00
|
|
|
struct regmap *regmap;
|
2018-06-29 00:20:44 +08:00
|
|
|
int irq;
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2006-01-24 03:11:05 +08:00
|
|
|
v4l2_std_id norm; /* Current set standard */
|
2018-06-29 00:20:40 +08:00
|
|
|
v4l2_std_id detected_norm;
|
2009-04-02 22:26:22 +08:00
|
|
|
u32 input;
|
|
|
|
u32 output;
|
2018-06-29 00:20:45 +08:00
|
|
|
u32 oe;
|
2005-11-09 13:36:41 +08:00
|
|
|
int enable;
|
2018-06-29 00:20:44 +08:00
|
|
|
bool lock;
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2016-02-06 03:09:54 +08:00
|
|
|
u16 dev_id;
|
|
|
|
u16 rom_ver;
|
|
|
|
|
2016-01-07 20:46:50 +08:00
|
|
|
enum v4l2_mbus_type mbus_type;
|
2005-11-09 13:36:40 +08:00
|
|
|
};
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static inline struct tvp5150 *to_tvp5150(struct v4l2_subdev *sd)
|
2005-11-09 13:36:40 +08:00
|
|
|
{
|
2008-12-18 22:17:25 +08:00
|
|
|
return container_of(sd, struct tvp5150, sd);
|
|
|
|
}
|
|
|
|
|
2010-12-12 19:45:43 +08:00
|
|
|
static inline struct v4l2_subdev *to_sd(struct v4l2_ctrl *ctrl)
|
|
|
|
{
|
|
|
|
return &container_of(ctrl->handler, struct tvp5150, hdl)->sd;
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_read(struct v4l2_subdev *sd, unsigned char addr)
|
|
|
|
{
|
2018-06-29 00:20:35 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
int ret, val;
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2018-06-29 00:20:35 +08:00
|
|
|
ret = regmap_read(decoder->regmap, addr, &val);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2016-04-15 09:00:07 +08:00
|
|
|
|
2018-06-29 00:20:35 +08:00
|
|
|
return val;
|
2005-11-09 13:36:40 +08:00
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static void dump_reg_range(struct v4l2_subdev *sd, char *s, u8 init,
|
|
|
|
const u8 end, int max_line)
|
2006-01-24 03:11:05 +08:00
|
|
|
{
|
2016-10-20 21:36:42 +08:00
|
|
|
u8 buf[16];
|
|
|
|
int i = 0, j, len;
|
|
|
|
|
|
|
|
if (max_line > 16) {
|
|
|
|
dprintk0(sd->dev, "too much data to dump\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = init; i < end; i += max_line) {
|
|
|
|
len = (end - i > max_line) ? max_line : end - i;
|
|
|
|
|
|
|
|
for (j = 0; j < len; j++)
|
|
|
|
buf[j] = tvp5150_read(sd, i + j);
|
|
|
|
|
|
|
|
dprintk0(sd->dev, "%s reg %02x = %*ph\n", s, i, len, buf);
|
2006-01-24 03:11:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_log_status(struct v4l2_subdev *sd)
|
2005-11-09 13:36:40 +08:00
|
|
|
{
|
2016-11-13 15:34:12 +08:00
|
|
|
dprintk0(sd->dev, "tvp5150: Video input source selection #1 = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_VD_IN_SRC_SEL_1));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Analog channel controls = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_ANAL_CHL_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Operation mode controls = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_OP_MODE_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Miscellaneous controls = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_MISC_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Autoswitch mask= 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_AUTOSW_MSK));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Color killer threshold control = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_COLOR_KIL_THSH_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Luminance processing controls #1 #2 and #3 = %02x %02x %02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_1),
|
|
|
|
tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_2),
|
|
|
|
tvp5150_read(sd, TVP5150_LUMA_PROC_CTL_3));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Brightness control = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_BRIGHT_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Color saturation control = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_SATURATION_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Hue control = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_HUE_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Contrast control = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_CONTRAST_CTL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Outputs and data rates select = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_DATA_RATE_SEL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Configuration shared pins = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_CONF_SHARED_PIN));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Active video cropping start = 0x%02x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_MSB),
|
|
|
|
tvp5150_read(sd, TVP5150_ACT_VD_CROP_ST_LSB));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Active video cropping stop = 0x%02x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_MSB),
|
|
|
|
tvp5150_read(sd, TVP5150_ACT_VD_CROP_STP_LSB));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Genlock/RTC = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_GENLOCK));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Horizontal sync start = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_HORIZ_SYNC_START));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Vertical blanking start = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_VERT_BLANKING_START));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Vertical blanking stop = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_VERT_BLANKING_STOP));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Chrominance processing control #1 and #2 = %02x %02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_1),
|
|
|
|
tvp5150_read(sd, TVP5150_CHROMA_PROC_CTL_2));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt reset register B = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INT_RESET_REG_B));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt enable register B = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INT_ENABLE_REG_B));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt configuration register B = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INTT_CONFIG_REG_B));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Video standard = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_VIDEO_STD));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Chroma gain factor: Cb=0x%02x Cr=0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_CB_GAIN_FACT),
|
|
|
|
tvp5150_read(sd, TVP5150_CR_GAIN_FACTOR));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Macrovision on counter = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_MACROVISION_ON_CTR));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Macrovision off counter = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_MACROVISION_OFF_CTR));
|
|
|
|
dprintk0(sd->dev, "tvp5150: ITU-R BT.656.%d timing(TVP5150AM1 only)\n",
|
|
|
|
(tvp5150_read(sd, TVP5150_REV_SELECT) & 1) ? 3 : 4);
|
|
|
|
dprintk0(sd->dev, "tvp5150: Device ID = %02x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_MSB_DEV_ID),
|
|
|
|
tvp5150_read(sd, TVP5150_LSB_DEV_ID));
|
|
|
|
dprintk0(sd->dev, "tvp5150: ROM version = (hex) %02x.%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_ROM_MAJOR_VER),
|
|
|
|
tvp5150_read(sd, TVP5150_ROM_MINOR_VER));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Vertical line count = 0x%02x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_VERT_LN_COUNT_MSB),
|
|
|
|
tvp5150_read(sd, TVP5150_VERT_LN_COUNT_LSB));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt status register B = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INT_STATUS_REG_B));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt active register B = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INT_ACTIVE_REG_B));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Status regs #1 to #5 = %02x %02x %02x %02x %02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_STATUS_REG_1),
|
|
|
|
tvp5150_read(sd, TVP5150_STATUS_REG_2),
|
|
|
|
tvp5150_read(sd, TVP5150_STATUS_REG_3),
|
|
|
|
tvp5150_read(sd, TVP5150_STATUS_REG_4),
|
|
|
|
tvp5150_read(sd, TVP5150_STATUS_REG_5));
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
dump_reg_range(sd, "Teletext filter 1", TVP5150_TELETEXT_FIL1_INI,
|
|
|
|
TVP5150_TELETEXT_FIL1_END, 8);
|
|
|
|
dump_reg_range(sd, "Teletext filter 2", TVP5150_TELETEXT_FIL2_INI,
|
|
|
|
TVP5150_TELETEXT_FIL2_END, 8);
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2016-11-13 15:34:12 +08:00
|
|
|
dprintk0(sd->dev, "tvp5150: Teletext filter enable = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_TELETEXT_FIL_ENA));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt status register A = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INT_STATUS_REG_A));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt enable register A = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INT_ENABLE_REG_A));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Interrupt configuration = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_INT_CONF));
|
|
|
|
dprintk0(sd->dev, "tvp5150: VDP status register = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_VDP_STATUS_REG));
|
|
|
|
dprintk0(sd->dev, "tvp5150: FIFO word count = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_FIFO_WORD_COUNT));
|
|
|
|
dprintk0(sd->dev, "tvp5150: FIFO interrupt threshold = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_FIFO_INT_THRESHOLD));
|
|
|
|
dprintk0(sd->dev, "tvp5150: FIFO reset = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_FIFO_RESET));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Line number interrupt = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_LINE_NUMBER_INT));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Pixel alignment register = 0x%02x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_HIGH),
|
|
|
|
tvp5150_read(sd, TVP5150_PIX_ALIGN_REG_LOW));
|
|
|
|
dprintk0(sd->dev, "tvp5150: FIFO output control = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_FIFO_OUT_CTRL));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Full field enable = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_FULL_FIELD_ENA));
|
|
|
|
dprintk0(sd->dev, "tvp5150: Full field mode register = 0x%02x\n",
|
|
|
|
tvp5150_read(sd, TVP5150_FULL_FIELD_MODE_REG));
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
dump_reg_range(sd, "CC data", TVP5150_CC_DATA_INI,
|
|
|
|
TVP5150_CC_DATA_END, 8);
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
dump_reg_range(sd, "WSS data", TVP5150_WSS_DATA_INI,
|
|
|
|
TVP5150_WSS_DATA_END, 8);
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
dump_reg_range(sd, "VPS data", TVP5150_VPS_DATA_INI,
|
|
|
|
TVP5150_VPS_DATA_END, 8);
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
dump_reg_range(sd, "VITC data", TVP5150_VITC_DATA_INI,
|
|
|
|
TVP5150_VITC_DATA_END, 10);
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
dump_reg_range(sd, "Line mode", TVP5150_LINE_MODE_INI,
|
|
|
|
TVP5150_LINE_MODE_END, 8);
|
|
|
|
return 0;
|
2005-11-09 13:36:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
Basic functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-12-09 06:22:42 +08:00
|
|
|
static void tvp5150_selmux(struct v4l2_subdev *sd)
|
2005-11-09 13:36:40 +08:00
|
|
|
{
|
[media] tvp5150: COMPOSITE0 input should not force-enable TV mode
When digitizing composite video from a analog videotape source using the
TVP5150's first composite input channel, the captured stream exhibits
tearing and synchronization problems[1].
It turns out that commit c0477ad9feca01bd8eff95d7482c33753d05c700 caused
"TV mode" (as opposed to "VCR mode" or "auto-detect") to be forcibly
enabled for both composite inputs. According to the chip
documentation[2], "TV mode" disables a "chrominance trap" input filter,
which appears to be necessary for high-quality video capture from an
analog videotape source. [ Commit
c7c0b34c27bbf0671807e902fbfea6270c8f138d subsequently restricted the
problem to the first composite input, apparently inadvertently. ]
Since any type of composite signal source can be connected to the
TVP5150's first composite input, unconditionally forcing "TV mode" isn't
correct. There doesn't appear to be a good way for applications to tell
the driver what is connected. Fortunately, the TVP5150 has an operating
mode auto-detection feature, which, when enabled, should cause the TVP5150
to auto-detect whether it should use "VCR mode" or "TV mode". Enabling
operating mode auto-detection improved video capture quality
significantly[3].
Therefore, fix this bug by using operating mode auto-detection. (Also,
while here, fix a CodingStyle issue.)
For those users who may find this patch via a mailing list archive but who
are not able to upgrade to a kernel with a fixed driver: the TVP5150's
S-Video and second composite input sources have auto-detection enabled, so
you may wish to try using those -- if available on your device -- until
this fix makes it a downstream distribution near you.
1. Pre-patch tvtime snapshot using a Pinnacle PCTV HD Pro as the
capture device and a Sony EV-S2000 as a video source:
http://www.booyaka.com/~paul/tvp5150/1a.png
2. Section 3.21.3, "Operation Mode Control Register", _TVP5150AM1
Ultralow-Power NTSC/PAL/SECAM Video Decoder (Rev. D)_ [SLES209D],
downloaded 8 October 2010, available via
http://focus.ti.com/lit/ds/symlink/tvp5150am1.pdf
3. Post-patch tvtime snapshot (same signal chain as #1, above):
http://www.booyaka.com/~paul/tvp5150/1b.png
Signed-off-by: Paul Walmsley <paul@booyaka.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-10-09 12:31:40 +08:00
|
|
|
int opmode = 0;
|
2008-12-18 22:17:25 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2018-06-29 00:20:36 +08:00
|
|
|
unsigned int mask, val;
|
2006-04-03 00:35:00 +08:00
|
|
|
int input = 0;
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2016-02-13 01:42:02 +08:00
|
|
|
/* Only tvp5150am1 and tvp5151 have signal generator support */
|
|
|
|
if ((decoder->dev_id == 0x5150 && decoder->rom_ver == 0x0400) ||
|
|
|
|
(decoder->dev_id == 0x5151 && decoder->rom_ver == 0x0100)) {
|
|
|
|
if (!decoder->enable)
|
|
|
|
input = 8;
|
|
|
|
}
|
2005-11-09 13:36:43 +08:00
|
|
|
|
2009-04-02 22:26:22 +08:00
|
|
|
switch (decoder->input) {
|
2006-04-03 00:35:00 +08:00
|
|
|
case TVP5150_COMPOSITE1:
|
|
|
|
input |= 2;
|
2020-07-25 06:10:14 +08:00
|
|
|
fallthrough;
|
2006-04-03 00:35:00 +08:00
|
|
|
case TVP5150_COMPOSITE0:
|
2006-01-10 01:25:14 +08:00
|
|
|
break;
|
2006-04-03 00:35:00 +08:00
|
|
|
case TVP5150_SVIDEO:
|
2006-01-10 01:25:14 +08:00
|
|
|
default:
|
2006-04-03 00:35:00 +08:00
|
|
|
input |= 1;
|
2006-01-10 01:25:14 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-03-12 18:31:56 +08:00
|
|
|
dev_dbg_lvl(sd->dev, 1, debug,
|
|
|
|
"Selecting video route: route input=%s, output=%s => tvp5150 input=0x%02x, opmode=0x%02x\n",
|
|
|
|
decoder->input == 0 ? "aip1a" :
|
|
|
|
decoder->input == 2 ? "aip1b" : "svideo",
|
|
|
|
decoder->output == 0 ? "normal" : "black-frame-gen",
|
|
|
|
input, opmode);
|
2006-08-18 18:31:10 +08:00
|
|
|
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_OP_MODE_CTL, opmode);
|
|
|
|
regmap_write(decoder->regmap, TVP5150_VD_IN_SRC_SEL_1, input);
|
2007-11-04 09:40:24 +08:00
|
|
|
|
2016-12-09 19:47:18 +08:00
|
|
|
/*
|
|
|
|
* Setup the FID/GLCO/VLK/HVLK and INTREQ/GPCL/VBLK output signals. For
|
|
|
|
* S-Video we output the vertical lock (VLK) signal on FID/GLCO/VLK/HVLK
|
|
|
|
* and set INTREQ/GPCL/VBLK to logic 0. For composite we output the
|
|
|
|
* field indicator (FID) signal on FID/GLCO/VLK/HVLK and set
|
|
|
|
* INTREQ/GPCL/VBLK to logic 1.
|
2007-11-04 09:40:24 +08:00
|
|
|
*/
|
2018-06-29 00:20:36 +08:00
|
|
|
mask = TVP5150_MISC_CTL_GPCL | TVP5150_MISC_CTL_HVLK;
|
2009-04-02 22:26:22 +08:00
|
|
|
if (decoder->input == TVP5150_SVIDEO)
|
2018-06-29 00:20:36 +08:00
|
|
|
val = TVP5150_MISC_CTL_HVLK;
|
2007-11-04 09:40:24 +08:00
|
|
|
else
|
2018-06-29 00:20:36 +08:00
|
|
|
val = TVP5150_MISC_CTL_GPCL;
|
|
|
|
regmap_update_bits(decoder->regmap, TVP5150_MISC_CTL, mask, val);
|
2005-11-09 13:36:40 +08:00
|
|
|
};
|
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
struct i2c_reg_value {
|
|
|
|
unsigned char reg;
|
|
|
|
unsigned char value;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Default values as sugested at TVP5150AM1 datasheet */
|
|
|
|
static const struct i2c_reg_value tvp5150_init_default[] = {
|
|
|
|
{ /* 0x00 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_VD_IN_SRC_SEL_1, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x01 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_ANAL_CHL_CTL, 0x15
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x02 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_OP_MODE_CTL, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x03 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_MISC_CTL, 0x01
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x06 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_COLOR_KIL_THSH_CTL, 0x10
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x07 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_LUMA_PROC_CTL_1, 0x60
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x08 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_LUMA_PROC_CTL_2, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x09 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_BRIGHT_CTL, 0x80
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x0a */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_SATURATION_CTL, 0x80
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x0b */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_HUE_CTL, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x0c */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_CONTRAST_CTL, 0x80
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x0d */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_DATA_RATE_SEL, 0x47
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x0e */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_LUMA_PROC_CTL_3, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x0f */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_CONF_SHARED_PIN, 0x08
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x11 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_ACT_VD_CROP_ST_MSB, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x12 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_ACT_VD_CROP_ST_LSB, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x13 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_ACT_VD_CROP_STP_MSB, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x14 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_ACT_VD_CROP_STP_LSB, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x15 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_GENLOCK, 0x01
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x16 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_HORIZ_SYNC_START, 0x80
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x18 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_VERT_BLANKING_START, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x19 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_VERT_BLANKING_STOP, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x1a */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_CHROMA_PROC_CTL_1, 0x0c
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x1b */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_CHROMA_PROC_CTL_2, 0x14
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x1c */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_INT_RESET_REG_B, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x1d */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_INT_ENABLE_REG_B, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x1e */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_INTT_CONFIG_REG_B, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x28 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_VIDEO_STD, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x2e */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_MACROVISION_ON_CTR, 0x0f
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0x2f */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_MACROVISION_OFF_CTR, 0x01
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xbb */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_TELETEXT_FIL_ENA, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xc0 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_INT_STATUS_REG_A, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xc1 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_INT_ENABLE_REG_A, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xc2 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_INT_CONF, 0x04
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xc8 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_FIFO_INT_THRESHOLD, 0x80
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xc9 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_FIFO_RESET, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xca */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_LINE_NUMBER_INT, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xcb */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_PIX_ALIGN_REG_LOW, 0x4e
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xcc */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_PIX_ALIGN_REG_HIGH, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xcd */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_FIFO_OUT_CTRL, 0x01
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xcf */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_FULL_FIELD_ENA, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xd0 */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_LINE_MODE_INI, 0x00
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* 0xfc */
|
2018-04-03 06:23:17 +08:00
|
|
|
TVP5150_FULL_FIELD_MODE_REG, 0x7f
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
|
|
|
{ /* end of data */
|
2018-04-03 06:23:17 +08:00
|
|
|
0xff, 0xff
|
2006-01-10 01:25:36 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Default values as sugested at TVP5150AM1 datasheet */
|
|
|
|
static const struct i2c_reg_value tvp5150_init_enable[] = {
|
2018-06-29 00:20:43 +08:00
|
|
|
{ /* Automatic offset and AGC enabled */
|
2006-01-10 01:25:36 +08:00
|
|
|
TVP5150_ANAL_CHL_CTL, 0x15
|
2018-04-03 06:23:17 +08:00
|
|
|
}, { /* Activate YCrCb output 0x9 or 0xd ? */
|
2016-12-09 19:47:18 +08:00
|
|
|
TVP5150_MISC_CTL, TVP5150_MISC_CTL_GPCL |
|
|
|
|
TVP5150_MISC_CTL_INTREQ_OE |
|
|
|
|
TVP5150_MISC_CTL_YCBCR_OE |
|
|
|
|
TVP5150_MISC_CTL_SYNC_OE |
|
|
|
|
TVP5150_MISC_CTL_VBLANK |
|
|
|
|
TVP5150_MISC_CTL_CLOCK_OE,
|
2018-04-03 06:23:17 +08:00
|
|
|
}, { /* Activates video std autodetection for all standards */
|
2006-01-10 01:25:36 +08:00
|
|
|
TVP5150_AUTOSW_MSK, 0x0
|
2018-04-03 06:23:17 +08:00
|
|
|
}, { /* Default format: 0x47. For 4:2:2: 0x40 */
|
2006-01-10 01:25:36 +08:00
|
|
|
TVP5150_DATA_RATE_SEL, 0x47
|
2018-04-03 06:23:17 +08:00
|
|
|
}, {
|
2006-01-10 01:25:36 +08:00
|
|
|
TVP5150_CHROMA_PROC_CTL_1, 0x0c
|
2018-04-03 06:23:17 +08:00
|
|
|
}, {
|
2006-01-10 01:25:36 +08:00
|
|
|
TVP5150_CHROMA_PROC_CTL_2, 0x54
|
2018-04-03 06:23:17 +08:00
|
|
|
}, { /* Non documented, but initialized on WinTV USB2 */
|
2006-01-10 01:25:36 +08:00
|
|
|
0x27, 0x20
|
2018-04-03 06:23:17 +08:00
|
|
|
}, {
|
|
|
|
0xff, 0xff
|
2006-01-10 01:25:36 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-01-24 03:11:05 +08:00
|
|
|
struct tvp5150_vbi_type {
|
|
|
|
unsigned int vbi_type;
|
|
|
|
unsigned int ini_line;
|
|
|
|
unsigned int end_line;
|
|
|
|
unsigned int by_field :1;
|
|
|
|
};
|
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
struct i2c_vbi_ram_value {
|
|
|
|
u16 reg;
|
2006-01-24 03:11:05 +08:00
|
|
|
struct tvp5150_vbi_type type;
|
|
|
|
unsigned char values[16];
|
2006-01-10 01:25:36 +08:00
|
|
|
};
|
|
|
|
|
2006-01-24 03:11:05 +08:00
|
|
|
/* This struct have the values for each supported VBI Standard
|
|
|
|
* by
|
|
|
|
tvp5150_vbi_types should follow the same order as vbi_ram_default
|
2006-01-24 03:11:05 +08:00
|
|
|
* value 0 means rom position 0x10, value 1 means rom position 0x30
|
|
|
|
* and so on. There are 16 possible locations from 0 to 15.
|
|
|
|
*/
|
|
|
|
|
2018-04-03 06:23:19 +08:00
|
|
|
static struct i2c_vbi_ram_value vbi_ram_default[] = {
|
|
|
|
|
2018-04-03 06:23:18 +08:00
|
|
|
/*
|
|
|
|
* FIXME: Current api doesn't handle all VBI types, those not
|
|
|
|
* yet supported are placed under #if 0
|
|
|
|
*/
|
2006-03-30 05:02:51 +08:00
|
|
|
#if 0
|
2018-02-20 02:23:39 +08:00
|
|
|
[0] = {0x010, /* Teletext, SECAM, WST System A */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_TELETEXT_SECAM, 6, 23, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x26,
|
|
|
|
0xe6, 0xb4, 0x0e, 0x00, 0x00, 0x00, 0x10, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2006-03-30 05:02:51 +08:00
|
|
|
#endif
|
2018-02-20 02:23:39 +08:00
|
|
|
[1] = {0x030, /* Teletext, PAL, WST System B */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_TELETEXT_B, 6, 22, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x2b,
|
|
|
|
0xa6, 0x72, 0x10, 0x00, 0x00, 0x00, 0x10, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2006-03-30 05:02:51 +08:00
|
|
|
#if 0
|
2018-02-20 02:23:39 +08:00
|
|
|
[2] = {0x050, /* Teletext, PAL, WST System C */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_TELETEXT_PAL_C, 6, 22, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
|
|
|
|
0xa6, 0x98, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2018-02-20 02:23:39 +08:00
|
|
|
[3] = {0x070, /* Teletext, NTSC, WST System B */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_TELETEXT_NTSC_B, 10, 21, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0xaa, 0xff, 0xff, 0x27, 0x2e, 0x20, 0x23,
|
|
|
|
0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2018-02-20 02:23:39 +08:00
|
|
|
[4] = {0x090, /* Tetetext, NTSC NABTS System C */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_TELETEXT_NTSC_C, 10, 21, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0xaa, 0xff, 0xff, 0xe7, 0x2e, 0x20, 0x22,
|
|
|
|
0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x15, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2018-02-20 02:23:39 +08:00
|
|
|
[5] = {0x0b0, /* Teletext, NTSC-J, NABTS System D */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_TELETEXT_NTSC_D, 10, 21, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0xaa, 0xff, 0xff, 0xa7, 0x2e, 0x20, 0x23,
|
|
|
|
0x69, 0x93, 0x0d, 0x00, 0x00, 0x00, 0x10, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2018-02-20 02:23:39 +08:00
|
|
|
[6] = {0x0d0, /* Closed Caption, PAL/SECAM */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_CAPTION_625, 22, 22, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
|
|
|
|
0xa6, 0x7b, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2006-03-30 05:02:51 +08:00
|
|
|
#endif
|
2018-02-20 02:23:39 +08:00
|
|
|
[7] = {0x0f0, /* Closed Caption, NTSC */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_CAPTION_525, 21, 21, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0x2a, 0xff, 0x3f, 0x04, 0x51, 0x6e, 0x02,
|
|
|
|
0x69, 0x8c, 0x09, 0x00, 0x00, 0x00, 0x27, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2018-02-20 02:23:39 +08:00
|
|
|
[8] = {0x110, /* Wide Screen Signal, PAL/SECAM */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_WSS_625, 23, 23, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0x5b, 0x55, 0xc5, 0xff, 0x00, 0x71, 0x6e, 0x42,
|
|
|
|
0xa6, 0xcd, 0x0f, 0x00, 0x00, 0x00, 0x3a, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2006-03-30 05:02:51 +08:00
|
|
|
#if 0
|
2018-02-20 02:23:39 +08:00
|
|
|
[9] = {0x130, /* Wide Screen Signal, NTSC C */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_WSS_525, 20, 20, 1},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0x38, 0x00, 0x3f, 0x00, 0x00, 0x71, 0x6e, 0x43,
|
|
|
|
0x69, 0x7c, 0x08, 0x00, 0x00, 0x00, 0x39, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2018-02-20 02:23:39 +08:00
|
|
|
[10] = {0x150, /* Vertical Interval Timecode (VITC), PAL/SECAM */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4l2_SLICED_VITC_625, 6, 22, 0},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
|
|
|
|
0xa6, 0x85, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2018-02-20 02:23:39 +08:00
|
|
|
[11] = {0x170, /* Vertical Interval Timecode (VITC), NTSC */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4l2_SLICED_VITC_525, 10, 20, 0},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x8f, 0x6d, 0x49,
|
|
|
|
0x69, 0x94, 0x08, 0x00, 0x00, 0x00, 0x4c, 0x00 }
|
2006-01-10 01:25:36 +08:00
|
|
|
},
|
2006-03-30 05:02:51 +08:00
|
|
|
#endif
|
2018-02-20 02:23:39 +08:00
|
|
|
[12] = {0x190, /* Video Program System (VPS), PAL */
|
2018-04-03 06:23:17 +08:00
|
|
|
{V4L2_SLICED_VPS, 16, 16, 0},
|
2006-01-24 03:11:05 +08:00
|
|
|
{ 0xaa, 0xaa, 0xff, 0xff, 0xba, 0xce, 0x2b, 0x0d,
|
|
|
|
0xa6, 0xda, 0x0b, 0x00, 0x00, 0x00, 0x60, 0x00 }
|
2006-01-24 03:11:05 +08:00
|
|
|
},
|
2006-01-24 03:11:05 +08:00
|
|
|
/* 0x1d0 User programmable */
|
2006-01-10 01:25:36 +08:00
|
|
|
};
|
2005-11-09 13:36:43 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_write_inittab(struct v4l2_subdev *sd,
|
2006-01-24 03:11:05 +08:00
|
|
|
const struct i2c_reg_value *regs)
|
2006-01-10 01:25:36 +08:00
|
|
|
{
|
2018-06-29 00:20:35 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
while (regs->reg != 0xff) {
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, regs->reg, regs->value);
|
2006-01-10 01:25:36 +08:00
|
|
|
regs++;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2018-02-20 02:23:39 +08:00
|
|
|
static int tvp5150_vdp_init(struct v4l2_subdev *sd)
|
2006-01-10 01:25:36 +08:00
|
|
|
{
|
2018-06-29 00:20:35 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
struct regmap *map = decoder->regmap;
|
2006-01-10 01:25:36 +08:00
|
|
|
unsigned int i;
|
2018-02-20 02:23:39 +08:00
|
|
|
int j;
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
/* Disable Full Field */
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(map, TVP5150_FULL_FIELD_ENA, 0);
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
/* Before programming, Line mode should be at 0xff */
|
2008-12-18 22:17:25 +08:00
|
|
|
for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(map, i, 0xff);
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
/* Load Ram Table */
|
2018-02-20 02:23:39 +08:00
|
|
|
for (j = 0; j < ARRAY_SIZE(vbi_ram_default); j++) {
|
|
|
|
const struct i2c_vbi_ram_value *regs = &vbi_ram_default[j];
|
|
|
|
|
|
|
|
if (!regs->type.vbi_type)
|
|
|
|
continue;
|
|
|
|
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(map, TVP5150_CONF_RAM_ADDR_HIGH, regs->reg >> 8);
|
|
|
|
regmap_write(map, TVP5150_CONF_RAM_ADDR_LOW, regs->reg);
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
for (i = 0; i < 16; i++)
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(map, TVP5150_VDP_CONF_RAM_DATA,
|
|
|
|
regs->values[i]);
|
2006-01-10 01:25:36 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2006-01-24 03:11:05 +08:00
|
|
|
/* Fills VBI capabilities based on i2c_vbi_ram_value struct */
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_g_sliced_vbi_cap(struct v4l2_subdev *sd,
|
2006-01-24 03:11:05 +08:00
|
|
|
struct v4l2_sliced_vbi_cap *cap)
|
|
|
|
{
|
2018-02-20 02:23:39 +08:00
|
|
|
int line, i;
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_dbg_lvl(sd->dev, 1, debug, "g_sliced_vbi_cap\n");
|
2018-04-03 06:23:20 +08:00
|
|
|
memset(cap, 0, sizeof(*cap));
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2018-02-20 02:23:39 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(vbi_ram_default); i++) {
|
|
|
|
const struct i2c_vbi_ram_value *regs = &vbi_ram_default[i];
|
|
|
|
|
|
|
|
if (!regs->type.vbi_type)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (line = regs->type.ini_line;
|
|
|
|
line <= regs->type.end_line;
|
|
|
|
line++) {
|
2006-01-24 03:11:05 +08:00
|
|
|
cap->service_lines[0][line] |= regs->type.vbi_type;
|
|
|
|
}
|
|
|
|
cap->service_set |= regs->type.vbi_type;
|
|
|
|
}
|
2008-12-18 22:17:25 +08:00
|
|
|
return 0;
|
2006-01-24 03:11:05 +08:00
|
|
|
}
|
|
|
|
|
2006-01-24 03:11:05 +08:00
|
|
|
/* Set vbi processing
|
|
|
|
* type - one of tvp5150_vbi_types
|
|
|
|
* line - line to gather data
|
|
|
|
* fields: bit 0 field1, bit 1, field2
|
|
|
|
* flags (default=0xf0) is a bitmask, were set means:
|
|
|
|
* bit 7: enable filtering null bytes on CC
|
|
|
|
* bit 6: send data also to FIFO
|
|
|
|
* bit 5: don't allow data with errors on FIFO
|
|
|
|
* bit 4: enable ECC when possible
|
|
|
|
* pix_align = pix alignment:
|
|
|
|
* LSB = field1
|
|
|
|
* MSB = field2
|
|
|
|
*/
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_set_vbi(struct v4l2_subdev *sd,
|
2018-04-03 06:23:17 +08:00
|
|
|
unsigned int type, u8 flags, int line,
|
2006-01-24 03:11:06 +08:00
|
|
|
const int fields)
|
2006-01-24 03:11:05 +08:00
|
|
|
{
|
2008-12-18 22:17:25 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
v4l2_std_id std = decoder->norm;
|
2006-01-24 03:11:05 +08:00
|
|
|
u8 reg;
|
2018-02-20 02:23:39 +08:00
|
|
|
int i, pos = 0;
|
2006-01-24 03:11:05 +08:00
|
|
|
|
|
|
|
if (std == V4L2_STD_ALL) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_err(sd->dev, "VBI can't be configured without knowing number of lines\n");
|
2006-01-24 03:11:08 +08:00
|
|
|
return 0;
|
2008-03-10 08:19:13 +08:00
|
|
|
} else if (std & V4L2_STD_625_50) {
|
2006-01-24 03:11:05 +08:00
|
|
|
/* Don't follow NTSC Line number convension */
|
|
|
|
line += 3;
|
|
|
|
}
|
|
|
|
|
2017-06-24 06:37:00 +08:00
|
|
|
if (line < 6 || line > 27)
|
2006-01-24 03:11:06 +08:00
|
|
|
return 0;
|
|
|
|
|
2018-02-20 02:23:39 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(vbi_ram_default); i++) {
|
|
|
|
const struct i2c_vbi_ram_value *regs = &vbi_ram_default[i];
|
|
|
|
|
|
|
|
if (!regs->type.vbi_type)
|
|
|
|
continue;
|
|
|
|
|
2006-01-24 03:11:06 +08:00
|
|
|
if ((type & regs->type.vbi_type) &&
|
2017-06-24 06:37:00 +08:00
|
|
|
(line >= regs->type.ini_line) &&
|
|
|
|
(line <= regs->type.end_line))
|
2006-01-24 03:11:06 +08:00
|
|
|
break;
|
|
|
|
pos++;
|
|
|
|
}
|
2017-06-24 06:37:00 +08:00
|
|
|
|
|
|
|
type = pos | (flags & 0xf0);
|
|
|
|
reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2017-06-24 06:37:00 +08:00
|
|
|
if (fields & 1)
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, reg, type);
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2017-06-24 06:37:00 +08:00
|
|
|
if (fields & 2)
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, reg + 1, type);
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2006-01-24 03:11:06 +08:00
|
|
|
return type;
|
2006-01-24 03:11:05 +08:00
|
|
|
}
|
|
|
|
|
2018-02-20 02:23:39 +08:00
|
|
|
static int tvp5150_get_vbi(struct v4l2_subdev *sd, int line)
|
2006-01-24 03:11:08 +08:00
|
|
|
{
|
2008-12-18 22:17:25 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
v4l2_std_id std = decoder->norm;
|
2006-01-24 03:11:08 +08:00
|
|
|
u8 reg;
|
2008-12-18 22:17:25 +08:00
|
|
|
int pos, type = 0;
|
2012-06-13 18:49:30 +08:00
|
|
|
int i, ret = 0;
|
2006-01-24 03:11:08 +08:00
|
|
|
|
|
|
|
if (std == V4L2_STD_ALL) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_err(sd->dev, "VBI can't be configured without knowing number of lines\n");
|
2006-01-24 03:11:08 +08:00
|
|
|
return 0;
|
2008-03-10 08:19:13 +08:00
|
|
|
} else if (std & V4L2_STD_625_50) {
|
2006-01-24 03:11:08 +08:00
|
|
|
/* Don't follow NTSC Line number convension */
|
|
|
|
line += 3;
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
if (line < 6 || line > 27)
|
2006-01-24 03:11:08 +08:00
|
|
|
return 0;
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
reg = ((line - 6) << 1) + TVP5150_LINE_MODE_INI;
|
2006-01-24 03:11:08 +08:00
|
|
|
|
2012-06-13 18:49:30 +08:00
|
|
|
for (i = 0; i <= 1; i++) {
|
|
|
|
ret = tvp5150_read(sd, reg + i);
|
|
|
|
if (ret < 0) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_err(sd->dev, "%s: failed with error = %d\n",
|
2012-06-13 18:49:30 +08:00
|
|
|
__func__, ret);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
pos = ret & 0x0f;
|
2018-02-20 02:23:39 +08:00
|
|
|
if (pos < ARRAY_SIZE(vbi_ram_default))
|
|
|
|
type |= vbi_ram_default[pos].type.vbi_type;
|
2012-06-13 18:49:30 +08:00
|
|
|
}
|
2006-01-24 03:11:08 +08:00
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
2008-12-18 22:17:25 +08:00
|
|
|
|
|
|
|
static int tvp5150_set_std(struct v4l2_subdev *sd, v4l2_std_id std)
|
2006-01-10 01:25:36 +08:00
|
|
|
{
|
2008-12-18 22:17:25 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
int fmt = 0;
|
2006-01-10 01:25:36 +08:00
|
|
|
|
|
|
|
/* First tests should be against specific std */
|
|
|
|
|
2013-05-29 21:19:06 +08:00
|
|
|
if (std == V4L2_STD_NTSC_443) {
|
2011-11-05 00:23:21 +08:00
|
|
|
fmt = VIDEO_STD_NTSC_4_43_BIT;
|
2013-05-29 21:19:06 +08:00
|
|
|
} else if (std == V4L2_STD_PAL_M) {
|
2011-11-05 00:23:21 +08:00
|
|
|
fmt = VIDEO_STD_PAL_M_BIT;
|
2013-05-29 21:19:06 +08:00
|
|
|
} else if (std == V4L2_STD_PAL_N || std == V4L2_STD_PAL_Nc) {
|
2011-11-05 00:23:21 +08:00
|
|
|
fmt = VIDEO_STD_PAL_COMBINATION_N_BIT;
|
2006-01-10 01:25:36 +08:00
|
|
|
} else {
|
|
|
|
/* Then, test against generic ones */
|
2008-12-18 22:17:25 +08:00
|
|
|
if (std & V4L2_STD_NTSC)
|
2011-11-05 00:23:21 +08:00
|
|
|
fmt = VIDEO_STD_NTSC_MJ_BIT;
|
2008-12-18 22:17:25 +08:00
|
|
|
else if (std & V4L2_STD_PAL)
|
2011-11-05 00:23:21 +08:00
|
|
|
fmt = VIDEO_STD_PAL_BDGHIN_BIT;
|
2008-12-18 22:17:25 +08:00
|
|
|
else if (std & V4L2_STD_SECAM)
|
2011-11-05 00:23:21 +08:00
|
|
|
fmt = VIDEO_STD_SECAM_BIT;
|
2006-01-10 01:25:36 +08:00
|
|
|
}
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_dbg_lvl(sd->dev, 1, debug, "Set video std register to %d.\n", fmt);
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_VIDEO_STD, fmt);
|
2006-01-10 01:25:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-29 00:20:49 +08:00
|
|
|
static int tvp5150_g_std(struct v4l2_subdev *sd, v4l2_std_id *std)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
|
|
|
*std = decoder->norm;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_s_std(struct v4l2_subdev *sd, v4l2_std_id std)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2020-03-12 18:31:55 +08:00
|
|
|
struct tvp5150_connector *cur_con = decoder->cur_connector;
|
|
|
|
v4l2_std_id supported_stds;
|
2008-12-18 22:17:25 +08:00
|
|
|
|
|
|
|
if (decoder->norm == std)
|
|
|
|
return 0;
|
|
|
|
|
2020-03-12 18:31:55 +08:00
|
|
|
/* In case of no of-connectors are available no limitations are made */
|
|
|
|
if (!decoder->connectors_num)
|
|
|
|
supported_stds = V4L2_STD_ALL;
|
|
|
|
else
|
|
|
|
supported_stds = cur_con->base.connector.analog.sdtv_stds;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if requested std or group of std's is/are supported by the
|
|
|
|
* connector.
|
|
|
|
*/
|
|
|
|
if ((supported_stds & std) == 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2012-01-31 16:23:46 +08:00
|
|
|
/* Change cropping height limits */
|
|
|
|
if (std & V4L2_STD_525_60)
|
|
|
|
decoder->rect.height = TVP5150_V_MAX_525_60;
|
|
|
|
else
|
|
|
|
decoder->rect.height = TVP5150_V_MAX_OTHERS;
|
|
|
|
|
2020-03-12 18:31:55 +08:00
|
|
|
/* Set only the specific supported std in case of group of std's. */
|
|
|
|
decoder->norm = supported_stds & std;
|
2012-01-31 16:23:46 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
return tvp5150_set_std(sd, std);
|
|
|
|
}
|
|
|
|
|
2018-06-29 00:20:41 +08:00
|
|
|
static v4l2_std_id tvp5150_read_std(struct v4l2_subdev *sd)
|
|
|
|
{
|
|
|
|
int val = tvp5150_read(sd, TVP5150_STATUS_REG_5);
|
|
|
|
|
|
|
|
switch (val & 0x0F) {
|
|
|
|
case 0x01:
|
|
|
|
return V4L2_STD_NTSC;
|
|
|
|
case 0x03:
|
|
|
|
return V4L2_STD_PAL;
|
|
|
|
case 0x05:
|
|
|
|
return V4L2_STD_PAL_M;
|
|
|
|
case 0x07:
|
|
|
|
return V4L2_STD_PAL_N | V4L2_STD_PAL_Nc;
|
|
|
|
case 0x09:
|
|
|
|
return V4L2_STD_NTSC_443;
|
|
|
|
case 0xb:
|
|
|
|
return V4L2_STD_SECAM;
|
|
|
|
default:
|
|
|
|
return V4L2_STD_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 22:09:24 +08:00
|
|
|
static int query_lock(struct v4l2_subdev *sd)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (decoder->irq)
|
|
|
|
return decoder->lock;
|
|
|
|
|
|
|
|
regmap_read(decoder->regmap, TVP5150_STATUS_REG_1, &status);
|
|
|
|
|
|
|
|
/* For standard detection, we need the 3 locks */
|
|
|
|
return (status & 0x0e) == 0x0e;
|
|
|
|
}
|
|
|
|
|
2018-06-29 00:20:48 +08:00
|
|
|
static int tvp5150_querystd(struct v4l2_subdev *sd, v4l2_std_id *std_id)
|
|
|
|
{
|
2018-08-01 22:09:24 +08:00
|
|
|
*std_id = query_lock(sd) ? tvp5150_read_std(sd) : V4L2_STD_UNKNOWN;
|
2018-06-29 00:20:48 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-06-29 00:20:46 +08:00
|
|
|
static const struct v4l2_event tvp5150_ev_fmt = {
|
|
|
|
.type = V4L2_EVENT_SOURCE_CHANGE,
|
|
|
|
.u.src_change.changes = V4L2_EVENT_SRC_CH_RESOLUTION,
|
|
|
|
};
|
|
|
|
|
2018-06-29 00:20:44 +08:00
|
|
|
static irqreturn_t tvp5150_isr(int irq, void *dev_id)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = dev_id;
|
|
|
|
struct regmap *map = decoder->regmap;
|
2018-06-29 00:20:45 +08:00
|
|
|
unsigned int mask, active = 0, status = 0;
|
|
|
|
|
|
|
|
mask = TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
|
|
|
|
TVP5150_MISC_CTL_CLOCK_OE;
|
2018-06-29 00:20:44 +08:00
|
|
|
|
|
|
|
regmap_read(map, TVP5150_INT_STATUS_REG_A, &status);
|
|
|
|
if (status) {
|
|
|
|
regmap_write(map, TVP5150_INT_STATUS_REG_A, status);
|
|
|
|
|
2018-06-29 00:20:45 +08:00
|
|
|
if (status & TVP5150_INT_A_LOCK) {
|
2018-06-29 00:20:44 +08:00
|
|
|
decoder->lock = !!(status & TVP5150_INT_A_LOCK_STATUS);
|
2018-06-29 00:20:47 +08:00
|
|
|
dev_dbg_lvl(decoder->sd.dev, 1, debug,
|
|
|
|
"sync lo%s signal\n",
|
|
|
|
decoder->lock ? "ck" : "ss");
|
2018-06-29 00:20:46 +08:00
|
|
|
v4l2_subdev_notify_event(&decoder->sd, &tvp5150_ev_fmt);
|
2018-06-29 00:20:45 +08:00
|
|
|
regmap_update_bits(map, TVP5150_MISC_CTL, mask,
|
|
|
|
decoder->lock ? decoder->oe : 0);
|
|
|
|
}
|
2018-06-29 00:20:44 +08:00
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
regmap_read(map, TVP5150_INT_ACTIVE_REG_B, &active);
|
|
|
|
if (active) {
|
|
|
|
status = 0;
|
|
|
|
regmap_read(map, TVP5150_INT_STATUS_REG_B, &status);
|
|
|
|
if (status)
|
|
|
|
regmap_write(map, TVP5150_INT_RESET_REG_B, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_reset(struct v4l2_subdev *sd, u32 val)
|
2006-01-10 01:25:36 +08:00
|
|
|
{
|
2008-12-18 22:17:25 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2018-06-29 00:20:43 +08:00
|
|
|
struct regmap *map = decoder->regmap;
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
/* Initializes TVP5150 to its default values */
|
2008-12-18 22:17:25 +08:00
|
|
|
tvp5150_write_inittab(sd, tvp5150_init_default);
|
2006-01-10 01:25:36 +08:00
|
|
|
|
2018-06-29 00:20:44 +08:00
|
|
|
if (decoder->irq) {
|
|
|
|
/* Configure pins: FID, VSYNC, INTREQ, SCLK */
|
|
|
|
regmap_write(map, TVP5150_CONF_SHARED_PIN, 0x0);
|
|
|
|
/* Set interrupt polarity to active high */
|
|
|
|
regmap_write(map, TVP5150_INT_CONF, TVP5150_VDPOE | 0x1);
|
|
|
|
regmap_write(map, TVP5150_INTT_CONFIG_REG_B, 0x1);
|
|
|
|
} else {
|
|
|
|
/* Configure pins: FID, VSYNC, GPCL/VBLK, SCLK */
|
|
|
|
regmap_write(map, TVP5150_CONF_SHARED_PIN, 0x2);
|
|
|
|
/* Keep interrupt polarity active low */
|
|
|
|
regmap_write(map, TVP5150_INT_CONF, TVP5150_VDPOE);
|
|
|
|
regmap_write(map, TVP5150_INTT_CONFIG_REG_B, 0x0);
|
|
|
|
}
|
2018-06-29 00:20:43 +08:00
|
|
|
|
2006-01-10 01:25:36 +08:00
|
|
|
/* Initializes VDP registers */
|
2018-02-20 02:23:39 +08:00
|
|
|
tvp5150_vdp_init(sd);
|
2006-01-10 01:25:36 +08:00
|
|
|
|
|
|
|
/* Selects decoder input */
|
2008-12-18 22:17:25 +08:00
|
|
|
tvp5150_selmux(sd);
|
2006-01-10 01:25:36 +08:00
|
|
|
|
|
|
|
/* Initialize image preferences */
|
2010-12-12 19:45:43 +08:00
|
|
|
v4l2_ctrl_handler_setup(&decoder->hdl);
|
2006-01-10 01:25:36 +08:00
|
|
|
|
2018-06-29 00:20:42 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tvp5150_enable(struct v4l2_subdev *sd)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
v4l2_std_id std;
|
|
|
|
|
|
|
|
/* Initializes TVP5150 to stream enabled values */
|
|
|
|
tvp5150_write_inittab(sd, tvp5150_init_enable);
|
|
|
|
|
2018-06-29 00:20:41 +08:00
|
|
|
if (decoder->norm == V4L2_STD_ALL)
|
|
|
|
std = tvp5150_read_std(sd);
|
|
|
|
else
|
|
|
|
std = decoder->norm;
|
|
|
|
|
|
|
|
/* Disable autoswitch mode */
|
|
|
|
tvp5150_set_std(sd, std);
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2018-06-29 00:20:45 +08:00
|
|
|
/*
|
|
|
|
* Enable the YCbCr and clock outputs. In discrete sync mode
|
2021-06-11 14:28:15 +08:00
|
|
|
* (non-BT.656) additionally enable the sync outputs.
|
2018-06-29 00:20:45 +08:00
|
|
|
*/
|
|
|
|
switch (decoder->mbus_type) {
|
|
|
|
case V4L2_MBUS_PARALLEL:
|
2018-06-29 00:20:36 +08:00
|
|
|
/* 8-bit 4:2:2 YUV with discrete sync output */
|
|
|
|
regmap_update_bits(decoder->regmap, TVP5150_DATA_RATE_SEL,
|
|
|
|
0x7, 0x0);
|
2018-06-29 00:20:45 +08:00
|
|
|
decoder->oe = TVP5150_MISC_CTL_YCBCR_OE |
|
|
|
|
TVP5150_MISC_CTL_CLOCK_OE |
|
|
|
|
TVP5150_MISC_CTL_SYNC_OE;
|
|
|
|
break;
|
|
|
|
case V4L2_MBUS_BT656:
|
|
|
|
decoder->oe = TVP5150_MISC_CTL_YCBCR_OE |
|
|
|
|
TVP5150_MISC_CTL_CLOCK_OE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
return 0;
|
2005-11-09 13:36:40 +08:00
|
|
|
};
|
|
|
|
|
2010-12-12 19:45:43 +08:00
|
|
|
static int tvp5150_s_ctrl(struct v4l2_ctrl *ctrl)
|
2005-11-09 13:37:07 +08:00
|
|
|
{
|
2010-12-12 19:45:43 +08:00
|
|
|
struct v4l2_subdev *sd = to_sd(ctrl);
|
2016-02-13 01:42:02 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2005-11-09 13:37:07 +08:00
|
|
|
|
|
|
|
switch (ctrl->id) {
|
|
|
|
case V4L2_CID_BRIGHTNESS:
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_BRIGHT_CTL, ctrl->val);
|
2005-11-09 13:37:07 +08:00
|
|
|
return 0;
|
|
|
|
case V4L2_CID_CONTRAST:
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_CONTRAST_CTL, ctrl->val);
|
2005-11-09 13:37:07 +08:00
|
|
|
return 0;
|
|
|
|
case V4L2_CID_SATURATION:
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_SATURATION_CTL,
|
|
|
|
ctrl->val);
|
2005-11-09 13:37:07 +08:00
|
|
|
return 0;
|
|
|
|
case V4L2_CID_HUE:
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_HUE_CTL, ctrl->val);
|
2018-06-29 00:20:34 +08:00
|
|
|
return 0;
|
2016-02-13 01:42:02 +08:00
|
|
|
case V4L2_CID_TEST_PATTERN:
|
|
|
|
decoder->enable = ctrl->val ? false : true;
|
|
|
|
tvp5150_selmux(sd);
|
2005-11-09 13:37:07 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2006-01-10 01:25:14 +08:00
|
|
|
return -EINVAL;
|
2005-11-09 13:37:07 +08:00
|
|
|
}
|
|
|
|
|
2018-06-29 00:20:39 +08:00
|
|
|
static void tvp5150_set_default(v4l2_std_id std, struct v4l2_rect *crop)
|
|
|
|
{
|
|
|
|
/* Default is no cropping */
|
|
|
|
crop->top = 0;
|
|
|
|
crop->left = 0;
|
|
|
|
crop->width = TVP5150_H_MAX;
|
|
|
|
if (std & V4L2_STD_525_60)
|
|
|
|
crop->height = TVP5150_V_MAX_525_60;
|
|
|
|
else
|
|
|
|
crop->height = TVP5150_V_MAX_OTHERS;
|
|
|
|
}
|
|
|
|
|
2020-03-12 18:31:48 +08:00
|
|
|
static struct v4l2_rect *
|
|
|
|
tvp5150_get_pad_crop(struct tvp5150 *decoder,
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
struct v4l2_subdev_state *sd_state, unsigned int pad,
|
2020-03-12 18:31:48 +08:00
|
|
|
enum v4l2_subdev_format_whence which)
|
|
|
|
{
|
|
|
|
switch (which) {
|
|
|
|
case V4L2_SUBDEV_FORMAT_ACTIVE:
|
|
|
|
return &decoder->rect;
|
|
|
|
case V4L2_SUBDEV_FORMAT_TRY:
|
|
|
|
#if defined(CONFIG_VIDEO_V4L2_SUBDEV_API)
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
return v4l2_subdev_get_try_crop(&decoder->sd, sd_state, pad);
|
2020-03-12 18:31:48 +08:00
|
|
|
#else
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
return ERR_PTR(-EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-09 15:02:34 +08:00
|
|
|
static int tvp5150_fill_fmt(struct v4l2_subdev *sd,
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
struct v4l2_subdev_state *sd_state,
|
2018-06-29 00:20:39 +08:00
|
|
|
struct v4l2_subdev_format *format)
|
2012-01-05 21:57:39 +08:00
|
|
|
{
|
2015-04-09 15:02:34 +08:00
|
|
|
struct v4l2_mbus_framefmt *f;
|
2012-01-05 21:57:39 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
2018-08-01 18:10:05 +08:00
|
|
|
if (!format || (format->pad != TVP5150_PAD_VID_OUT))
|
2012-01-05 21:57:39 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2015-04-09 15:02:34 +08:00
|
|
|
f = &format->format;
|
|
|
|
|
2012-01-31 16:23:46 +08:00
|
|
|
f->width = decoder->rect.width;
|
2018-06-11 04:43:02 +08:00
|
|
|
f->height = decoder->rect.height / 2;
|
2012-01-05 21:57:39 +08:00
|
|
|
|
2018-06-29 00:20:39 +08:00
|
|
|
f->code = TVP5150_MBUS_FMT;
|
|
|
|
f->field = TVP5150_FIELD;
|
|
|
|
f->colorspace = TVP5150_COLORSPACE;
|
2012-01-05 21:57:39 +08:00
|
|
|
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_dbg_lvl(sd->dev, 1, debug, "width = %d, height = %d\n", f->width,
|
2018-06-29 00:20:39 +08:00
|
|
|
f->height);
|
2012-01-05 21:57:39 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-12 18:31:48 +08:00
|
|
|
static unsigned int tvp5150_get_hmax(struct v4l2_subdev *sd)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
v4l2_std_id std;
|
|
|
|
|
|
|
|
/* Calculate height based on current standard */
|
|
|
|
if (decoder->norm == V4L2_STD_ALL)
|
|
|
|
std = tvp5150_read_std(sd);
|
|
|
|
else
|
|
|
|
std = decoder->norm;
|
|
|
|
|
|
|
|
return (std & V4L2_STD_525_60) ?
|
|
|
|
TVP5150_V_MAX_525_60 : TVP5150_V_MAX_OTHERS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tvp5150_set_hw_selection(struct v4l2_subdev *sd,
|
|
|
|
struct v4l2_rect *rect)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
unsigned int hmax = tvp5150_get_hmax(sd);
|
|
|
|
|
|
|
|
regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_START, rect->top);
|
|
|
|
regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_STOP,
|
|
|
|
rect->top + rect->height - hmax);
|
|
|
|
regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_ST_MSB,
|
|
|
|
rect->left >> TVP5150_CROP_SHIFT);
|
|
|
|
regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_ST_LSB,
|
|
|
|
rect->left | (1 << TVP5150_CROP_SHIFT));
|
|
|
|
regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_STP_MSB,
|
|
|
|
(rect->left + rect->width - TVP5150_MAX_CROP_LEFT) >>
|
|
|
|
TVP5150_CROP_SHIFT);
|
|
|
|
regmap_write(decoder->regmap, TVP5150_ACT_VD_CROP_STP_LSB,
|
|
|
|
rect->left + rect->width - TVP5150_MAX_CROP_LEFT);
|
|
|
|
}
|
|
|
|
|
2015-12-14 18:25:32 +08:00
|
|
|
static int tvp5150_set_selection(struct v4l2_subdev *sd,
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
struct v4l2_subdev_state *sd_state,
|
2015-12-14 18:25:32 +08:00
|
|
|
struct v4l2_subdev_selection *sel)
|
2012-01-31 16:23:46 +08:00
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2020-03-12 18:31:47 +08:00
|
|
|
struct v4l2_rect *rect = &sel->r;
|
2020-03-12 18:31:48 +08:00
|
|
|
struct v4l2_rect *crop;
|
|
|
|
unsigned int hmax;
|
2015-12-14 18:25:32 +08:00
|
|
|
|
2020-03-12 18:31:48 +08:00
|
|
|
if (sel->target != V4L2_SEL_TGT_CROP)
|
2015-12-14 18:25:32 +08:00
|
|
|
return -EINVAL;
|
2012-01-31 16:23:46 +08:00
|
|
|
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_dbg_lvl(sd->dev, 1, debug, "%s left=%d, top=%d, width=%d, height=%d\n",
|
2020-03-12 18:31:47 +08:00
|
|
|
__func__, rect->left, rect->top, rect->width, rect->height);
|
2012-01-31 16:23:46 +08:00
|
|
|
|
|
|
|
/* tvp5150 has some special limits */
|
2020-03-12 18:31:47 +08:00
|
|
|
rect->left = clamp(rect->left, 0, TVP5150_MAX_CROP_LEFT);
|
|
|
|
rect->top = clamp(rect->top, 0, TVP5150_MAX_CROP_TOP);
|
2020-03-12 18:31:48 +08:00
|
|
|
hmax = tvp5150_get_hmax(sd);
|
2012-01-31 16:23:46 +08:00
|
|
|
|
2018-06-29 00:20:33 +08:00
|
|
|
/*
|
|
|
|
* alignments:
|
|
|
|
* - width = 2 due to UYVY colorspace
|
|
|
|
* - height, image = no special alignment
|
|
|
|
*/
|
2020-03-12 18:31:47 +08:00
|
|
|
v4l_bound_align_image(&rect->width,
|
|
|
|
TVP5150_H_MAX - TVP5150_MAX_CROP_LEFT - rect->left,
|
|
|
|
TVP5150_H_MAX - rect->left, 1, &rect->height,
|
|
|
|
hmax - TVP5150_MAX_CROP_TOP - rect->top,
|
|
|
|
hmax - rect->top, 0, 0);
|
2012-01-31 16:23:46 +08:00
|
|
|
|
2020-03-12 18:31:48 +08:00
|
|
|
if (!IS_ENABLED(CONFIG_VIDEO_V4L2_SUBDEV_API) &&
|
|
|
|
sel->which == V4L2_SUBDEV_FORMAT_TRY)
|
|
|
|
return 0;
|
|
|
|
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
crop = tvp5150_get_pad_crop(decoder, sd_state, sel->pad, sel->which);
|
2020-03-12 18:31:48 +08:00
|
|
|
if (IS_ERR(crop))
|
|
|
|
return PTR_ERR(crop);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update output image size if the selection (crop) rectangle size or
|
|
|
|
* position has been modified.
|
|
|
|
*/
|
|
|
|
if (sel->which == V4L2_SUBDEV_FORMAT_ACTIVE &&
|
|
|
|
!v4l2_rect_equal(rect, crop))
|
|
|
|
tvp5150_set_hw_selection(sd, rect);
|
2012-01-31 16:23:46 +08:00
|
|
|
|
2020-03-12 18:31:48 +08:00
|
|
|
*crop = *rect;
|
2012-01-31 16:23:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-12-14 18:25:32 +08:00
|
|
|
static int tvp5150_get_selection(struct v4l2_subdev *sd,
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
struct v4l2_subdev_state *sd_state,
|
2015-12-14 18:25:32 +08:00
|
|
|
struct v4l2_subdev_selection *sel)
|
2012-01-31 16:23:46 +08:00
|
|
|
{
|
2015-12-14 18:25:32 +08:00
|
|
|
struct tvp5150 *decoder = container_of(sd, struct tvp5150, sd);
|
2020-03-12 18:31:48 +08:00
|
|
|
struct v4l2_rect *crop;
|
2012-01-31 16:23:46 +08:00
|
|
|
v4l2_std_id std;
|
|
|
|
|
2015-12-14 18:25:32 +08:00
|
|
|
switch (sel->target) {
|
|
|
|
case V4L2_SEL_TGT_CROP_BOUNDS:
|
|
|
|
sel->r.left = 0;
|
|
|
|
sel->r.top = 0;
|
|
|
|
sel->r.width = TVP5150_H_MAX;
|
|
|
|
|
|
|
|
/* Calculate height based on current standard */
|
|
|
|
if (decoder->norm == V4L2_STD_ALL)
|
|
|
|
std = tvp5150_read_std(sd);
|
|
|
|
else
|
|
|
|
std = decoder->norm;
|
|
|
|
if (std & V4L2_STD_525_60)
|
|
|
|
sel->r.height = TVP5150_V_MAX_525_60;
|
|
|
|
else
|
|
|
|
sel->r.height = TVP5150_V_MAX_OTHERS;
|
|
|
|
return 0;
|
|
|
|
case V4L2_SEL_TGT_CROP:
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
crop = tvp5150_get_pad_crop(decoder, sd_state, sel->pad,
|
2020-03-12 18:31:48 +08:00
|
|
|
sel->which);
|
|
|
|
if (IS_ERR(crop))
|
|
|
|
return PTR_ERR(crop);
|
|
|
|
sel->r = *crop;
|
2015-12-14 18:25:32 +08:00
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2012-01-31 16:23:46 +08:00
|
|
|
}
|
|
|
|
|
2020-07-17 22:53:16 +08:00
|
|
|
static int tvp5150_get_mbus_config(struct v4l2_subdev *sd,
|
|
|
|
unsigned int pad,
|
|
|
|
struct v4l2_mbus_config *cfg)
|
2016-01-07 20:46:46 +08:00
|
|
|
{
|
2016-01-07 20:46:50 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
|
|
|
cfg->type = decoder->mbus_type;
|
2022-01-04 00:24:11 +08:00
|
|
|
cfg->bus.parallel.flags = V4L2_MBUS_MASTER
|
|
|
|
| V4L2_MBUS_PCLK_SAMPLE_RISING
|
|
|
|
| V4L2_MBUS_FIELD_EVEN_LOW
|
|
|
|
| V4L2_MBUS_DATA_ACTIVE_HIGH;
|
2016-01-07 20:46:46 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-26 20:46:24 +08:00
|
|
|
/****************************************************************************
|
|
|
|
V4L2 subdev pad ops
|
|
|
|
****************************************************************************/
|
2018-06-29 00:20:40 +08:00
|
|
|
static int tvp5150_init_cfg(struct v4l2_subdev *sd,
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
struct v4l2_subdev_state *sd_state)
|
2018-06-29 00:20:40 +08:00
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
v4l2_std_id std;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reset selection to maximum on subdev_open() if autodetection is on
|
|
|
|
* and a standard change is detected.
|
|
|
|
*/
|
|
|
|
if (decoder->norm == V4L2_STD_ALL) {
|
|
|
|
std = tvp5150_read_std(sd);
|
|
|
|
if (std != decoder->detected_norm) {
|
|
|
|
decoder->detected_norm = std;
|
|
|
|
tvp5150_set_default(std, &decoder->rect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-26 20:46:24 +08:00
|
|
|
static int tvp5150_enum_mbus_code(struct v4l2_subdev *sd,
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
struct v4l2_subdev_state *sd_state,
|
2016-01-26 20:46:24 +08:00
|
|
|
struct v4l2_subdev_mbus_code_enum *code)
|
|
|
|
{
|
|
|
|
if (code->pad || code->index)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2018-06-29 00:20:39 +08:00
|
|
|
code->code = TVP5150_MBUS_FMT;
|
2016-01-26 20:46:24 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tvp5150_enum_frame_size(struct v4l2_subdev *sd,
|
media: v4l2-subdev: add subdev-wide state struct
We have 'struct v4l2_subdev_pad_config' which contains configuration for
a single pad used for the TRY functionality, and an array of those
structs is passed to various v4l2_subdev_pad_ops.
I was working on subdev internal routing between pads, and realized that
there's no way to add TRY functionality for routes, which is not pad
specific configuration. Adding a separate struct for try-route config
wouldn't work either, as e.g. set-fmt needs to know the try-route
configuration to propagate the settings.
This patch adds a new struct, 'struct v4l2_subdev_state' (which at the
moment only contains the v4l2_subdev_pad_config array) and the new
struct is used in most of the places where v4l2_subdev_pad_config was
used. All v4l2_subdev_pad_ops functions taking v4l2_subdev_pad_config
are changed to instead take v4l2_subdev_state.
The changes to drivers/media/v4l2-core/v4l2-subdev.c and
include/media/v4l2-subdev.h were written by hand, and all the driver
changes were done with the semantic patch below. The spatch needs to be
applied to a select list of directories. I used the following shell
commands to apply the spatch:
dirs="drivers/media/i2c drivers/media/platform drivers/media/usb drivers/media/test-drivers/vimc drivers/media/pci drivers/staging/media"
for dir in $dirs; do spatch -j8 --dir --include-headers --no-show-diff --in-place --sp-file v4l2-subdev-state.cocci $dir; done
Note that Coccinelle chokes on a few drivers (gcc extensions?). With
minor changes we can make Coccinelle run fine, and these changes can be
reverted after spatch. The diff for these changes is:
For drivers/media/i2c/s5k5baf.c:
@@ -1481,7 +1481,7 @@ static int s5k5baf_set_selection(struct v4l2_subdev *sd,
&s5k5baf_cis_rect,
v4l2_subdev_get_try_crop(sd, cfg, PAD_CIS),
v4l2_subdev_get_try_compose(sd, cfg, PAD_CIS),
- v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT)
+ v4l2_subdev_get_try_crop(sd, cfg, PAD_OUT),
};
s5k5baf_set_rect_and_adjust(rects, rtype, &sel->r);
return 0;
For drivers/media/platform/s3c-camif/camif-capture.c:
@@ -1230,7 +1230,7 @@ static int s3c_camif_subdev_get_fmt(struct v4l2_subdev *sd,
*mf = camif->mbus_fmt;
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* crop rectangle at camera interface input */
mf->width = camif->camif_crop.width;
mf->height = camif->camif_crop.height;
@@ -1332,7 +1332,7 @@ static int s3c_camif_subdev_set_fmt(struct v4l2_subdev *sd,
}
break;
- case CAMIF_SD_PAD_SOURCE_C...CAMIF_SD_PAD_SOURCE_P:
+ case CAMIF_SD_PAD_SOURCE_C:
/* Pixel format can be only changed on the sink pad. */
mf->code = camif->mbus_fmt.code;
mf->width = crop->width;
The semantic patch is:
// <smpl>
// Change function parameter
@@
identifier func;
identifier cfg;
@@
func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...)
{
<...
- cfg
+ sd_state
...>
}
// Change function declaration parameter
@@
identifier func;
identifier cfg;
type T;
@@
T func(...,
- struct v4l2_subdev_pad_config *cfg
+ struct v4l2_subdev_state *sd_state
, ...);
// Change function return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...)
{
...
}
// Change function declaration return value
@@
identifier func;
@@
- struct v4l2_subdev_pad_config
+ struct v4l2_subdev_state
*func(...);
// Some drivers pass a local pad_cfg for a single pad to a called function. Wrap it
// inside a pad_state.
@@
identifier func;
identifier pad_cfg;
@@
func(...)
{
...
struct v4l2_subdev_pad_config pad_cfg;
+ struct v4l2_subdev_state pad_state = { .pads = &pad_cfg };
<+...
(
v4l2_subdev_call
|
sensor_call
|
isi_try_fse
|
isc_try_fse
|
saa_call_all
)
(...,
- &pad_cfg
+ &pad_state
,...)
...+>
}
// If the function uses fields from pad_config, access via state->pads
@@
identifier func;
identifier state;
@@
func(...,
struct v4l2_subdev_state *state
, ...)
{
<...
(
- state->try_fmt
+ state->pads->try_fmt
|
- state->try_crop
+ state->pads->try_crop
|
- state->try_compose
+ state->pads->try_compose
)
...>
}
// If the function accesses the filehandle, use fh->state instead
@@
struct v4l2_subdev_fh *fh;
@@
- fh->pad
+ fh->state
@@
struct v4l2_subdev_fh fh;
@@
- fh.pad
+ fh.state
// Start of vsp1 specific
@@
@@
struct vsp1_entity {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
};
@@
symbol entity;
@@
vsp1_entity_init(...)
{
...
entity->config =
- v4l2_subdev_alloc_pad_config
+ v4l2_subdev_alloc_state
(&entity->subdev);
...
}
@@
symbol entity;
@@
vsp1_entity_destroy(...)
{
...
- v4l2_subdev_free_pad_config
+ v4l2_subdev_free_state
(entity->config);
...
}
@exists@
identifier func =~ "(^vsp1.*)|(hsit_set_format)|(sru_enum_frame_size)|(sru_set_format)|(uif_get_selection)|(uif_set_selection)|(uds_enum_frame_size)|(uds_set_format)|(brx_set_format)|(brx_get_selection)|(histo_get_selection)|(histo_set_selection)|(brx_set_selection)";
symbol config;
@@
func(...) {
...
- struct v4l2_subdev_pad_config *config;
+ struct v4l2_subdev_state *config;
...
}
// End of vsp1 specific
// Start of rcar specific
@@
identifier sd;
identifier pad_cfg;
@@
rvin_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
// End of rcar specific
// Start of rockchip specific
@@
identifier func =~ "(rkisp1_rsz_get_pad_fmt)|(rkisp1_rsz_get_pad_crop)|(rkisp1_rsz_register)";
symbol rsz;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = rsz->pad_cfg };
...
- rsz->pad_cfg
+ &state
...
}
@@
identifier func =~ "(rkisp1_isp_get_pad_fmt)|(rkisp1_isp_get_pad_crop)";
symbol isp;
symbol pad_cfg;
@@
func(...)
{
+ struct v4l2_subdev_state state = { .pads = isp->pad_cfg };
...
- isp->pad_cfg
+ &state
...
}
@@
symbol rkisp1;
symbol isp;
symbol pad_cfg;
@@
rkisp1_isp_register(...)
{
+ struct v4l2_subdev_state state = { .pads = rkisp1->isp.pad_cfg };
...
- rkisp1->isp.pad_cfg
+ &state
...
}
// End of rockchip specific
// Start of tegra-video specific
@@
identifier sd;
identifier pad_cfg;
@@
__tegra_channel_try_format(...)
{
...
- struct v4l2_subdev_pad_config *pad_cfg;
+ struct v4l2_subdev_state *sd_state;
...
- pad_cfg = v4l2_subdev_alloc_pad_config(sd);
+ sd_state = v4l2_subdev_alloc_state(sd);
<...
- pad_cfg
+ sd_state
...>
- v4l2_subdev_free_pad_config(pad_cfg);
+ v4l2_subdev_free_state(sd_state);
...
}
@@
identifier sd_state;
@@
__tegra_channel_try_format(...)
{
...
struct v4l2_subdev_state *sd_state;
<...
- sd_state->try_crop
+ sd_state->pads->try_crop
...>
}
// End of tegra-video specific
// </smpl>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
2021-06-10 22:55:58 +08:00
|
|
|
struct v4l2_subdev_state *sd_state,
|
2016-01-26 20:46:24 +08:00
|
|
|
struct v4l2_subdev_frame_size_enum *fse)
|
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
2018-06-29 00:20:39 +08:00
|
|
|
if (fse->index >= 8 || fse->code != TVP5150_MBUS_FMT)
|
2016-01-26 20:46:24 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
2018-06-29 00:20:39 +08:00
|
|
|
fse->code = TVP5150_MBUS_FMT;
|
2016-01-26 20:46:24 +08:00
|
|
|
fse->min_width = decoder->rect.width;
|
|
|
|
fse->max_width = decoder->rect.width;
|
|
|
|
fse->min_height = decoder->rect.height / 2;
|
|
|
|
fse->max_height = decoder->rect.height / 2;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Media entity ops
|
|
|
|
****************************************************************************/
|
|
|
|
#if defined(CONFIG_MEDIA_CONTROLLER)
|
|
|
|
static int tvp5150_set_link(struct media_pad *connector_pad,
|
|
|
|
struct media_pad *tvp5150_pad, u32 flags)
|
|
|
|
{
|
|
|
|
struct media_link *link;
|
|
|
|
|
|
|
|
link = media_entity_find_link(connector_pad, tvp5150_pad);
|
|
|
|
if (!link)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
link->flags = flags;
|
|
|
|
link->reverse->flags = link->flags;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tvp5150_disable_all_input_links(struct tvp5150 *decoder)
|
|
|
|
{
|
|
|
|
struct media_pad *connector_pad;
|
|
|
|
unsigned int i;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
for (i = 0; i < TVP5150_NUM_PADS - 1; i++) {
|
2022-06-26 01:02:24 +08:00
|
|
|
connector_pad = media_pad_remote_pad_first(&decoder->pads[i]);
|
2020-03-12 18:31:45 +08:00
|
|
|
if (!connector_pad)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
err = tvp5150_set_link(connector_pad, &decoder->pads[i], 0);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tvp5150_s_routing(struct v4l2_subdev *sd, u32 input, u32 output,
|
|
|
|
u32 config);
|
|
|
|
|
|
|
|
static int tvp5150_link_setup(struct media_entity *entity,
|
|
|
|
const struct media_pad *tvp5150_pad,
|
|
|
|
const struct media_pad *remote, u32 flags)
|
|
|
|
{
|
|
|
|
struct v4l2_subdev *sd = media_entity_to_v4l2_subdev(entity);
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
struct media_pad *other_tvp5150_pad =
|
|
|
|
&decoder->pads[tvp5150_pad->index ^ 1];
|
|
|
|
struct v4l2_fwnode_connector *v4l2c;
|
|
|
|
bool is_svideo = false;
|
|
|
|
unsigned int i;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The TVP5150 state is determined by the enabled sink pad link(s).
|
|
|
|
* Enabling or disabling the source pad link has no effect.
|
|
|
|
*/
|
|
|
|
if (tvp5150_pad->flags & MEDIA_PAD_FL_SOURCE)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Check if the svideo connector should be enabled */
|
|
|
|
for (i = 0; i < decoder->connectors_num; i++) {
|
|
|
|
if (remote->entity == &decoder->connectors[i].ent) {
|
|
|
|
v4l2c = &decoder->connectors[i].base;
|
|
|
|
is_svideo = v4l2c->type == V4L2_CONN_SVIDEO;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dev_dbg_lvl(sd->dev, 1, debug, "link setup '%s':%d->'%s':%d[%d]",
|
|
|
|
remote->entity->name, remote->index,
|
|
|
|
tvp5150_pad->entity->name, tvp5150_pad->index,
|
|
|
|
flags & MEDIA_LNK_FL_ENABLED);
|
|
|
|
if (is_svideo)
|
|
|
|
dev_dbg_lvl(sd->dev, 1, debug,
|
|
|
|
"link setup '%s':%d->'%s':%d[%d]",
|
|
|
|
remote->entity->name, remote->index,
|
|
|
|
other_tvp5150_pad->entity->name,
|
|
|
|
other_tvp5150_pad->index,
|
|
|
|
flags & MEDIA_LNK_FL_ENABLED);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The TVP5150 has an internal mux which allows the following setup:
|
|
|
|
*
|
|
|
|
* comp-connector1 --\
|
|
|
|
* |---> AIP1A
|
|
|
|
* /
|
|
|
|
* svideo-connector -|
|
|
|
|
* \
|
|
|
|
* |---> AIP1B
|
|
|
|
* comp-connector2 --/
|
|
|
|
*
|
|
|
|
* We can't rely on user space that the current connector gets disabled
|
|
|
|
* first before enabling the new connector. Disable all active
|
|
|
|
* connector links to be on the safe side.
|
|
|
|
*/
|
|
|
|
err = tvp5150_disable_all_input_links(decoder);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
|
|
|
|
tvp5150_s_routing(sd, is_svideo ? TVP5150_SVIDEO : tvp5150_pad->index,
|
|
|
|
flags & MEDIA_LNK_FL_ENABLED ? TVP5150_NORMAL :
|
|
|
|
TVP5150_BLACK_SCREEN, 0);
|
|
|
|
|
|
|
|
if (flags & MEDIA_LNK_FL_ENABLED) {
|
2020-03-12 18:31:55 +08:00
|
|
|
struct v4l2_fwnode_connector_analog *v4l2ca;
|
|
|
|
u32 new_norm;
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
/*
|
|
|
|
* S-Video connector is conneted to both ports AIP1A and AIP1B.
|
|
|
|
* Both links must be enabled in one-shot regardless which link
|
|
|
|
* the user requests.
|
|
|
|
*/
|
|
|
|
if (is_svideo) {
|
|
|
|
err = tvp5150_set_link((struct media_pad *)remote,
|
|
|
|
other_tvp5150_pad, flags);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
}
|
2020-03-12 18:31:55 +08:00
|
|
|
|
|
|
|
if (!decoder->connectors_num)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Update the current connector */
|
|
|
|
decoder->cur_connector =
|
|
|
|
container_of(remote, struct tvp5150_connector, pad);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Do nothing if the new connector supports the same tv-norms as
|
|
|
|
* the old one.
|
|
|
|
*/
|
|
|
|
v4l2ca = &decoder->cur_connector->base.connector.analog;
|
|
|
|
new_norm = decoder->norm & v4l2ca->sdtv_stds;
|
|
|
|
if (decoder->norm == new_norm)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fallback to the new connector tv-norms if we can't find any
|
|
|
|
* common between the current tv-norm and the new one.
|
|
|
|
*/
|
|
|
|
tvp5150_s_std(sd, new_norm ? new_norm : v4l2ca->sdtv_stds);
|
2020-03-12 18:31:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct media_entity_operations tvp5150_sd_media_ops = {
|
|
|
|
.link_setup = tvp5150_link_setup,
|
|
|
|
};
|
|
|
|
#endif
|
2005-11-09 13:36:41 +08:00
|
|
|
/****************************************************************************
|
|
|
|
I2C Command
|
|
|
|
****************************************************************************/
|
2020-03-12 18:31:50 +08:00
|
|
|
static int __maybe_unused tvp5150_runtime_suspend(struct device *dev)
|
|
|
|
{
|
2020-09-22 00:23:42 +08:00
|
|
|
struct v4l2_subdev *sd = dev_get_drvdata(dev);
|
2020-03-12 18:31:50 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
|
|
|
if (decoder->irq)
|
|
|
|
/* Disable lock interrupt */
|
|
|
|
return regmap_update_bits(decoder->regmap,
|
|
|
|
TVP5150_INT_ENABLE_REG_A,
|
|
|
|
TVP5150_INT_A_LOCK, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __maybe_unused tvp5150_runtime_resume(struct device *dev)
|
|
|
|
{
|
2020-09-22 00:23:42 +08:00
|
|
|
struct v4l2_subdev *sd = dev_get_drvdata(dev);
|
2020-03-12 18:31:50 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
|
|
|
if (decoder->irq)
|
|
|
|
/* Enable lock interrupt */
|
|
|
|
return regmap_update_bits(decoder->regmap,
|
|
|
|
TVP5150_INT_ENABLE_REG_A,
|
|
|
|
TVP5150_INT_A_LOCK,
|
|
|
|
TVP5150_INT_A_LOCK);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-04-03 00:35:00 +08:00
|
|
|
|
2016-01-07 20:46:45 +08:00
|
|
|
static int tvp5150_s_stream(struct v4l2_subdev *sd, int enable)
|
|
|
|
{
|
2016-01-07 20:46:50 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2020-03-12 18:31:50 +08:00
|
|
|
unsigned int mask, val = 0;
|
|
|
|
int ret;
|
2016-12-09 19:47:19 +08:00
|
|
|
|
2018-06-29 00:20:36 +08:00
|
|
|
mask = TVP5150_MISC_CTL_YCBCR_OE | TVP5150_MISC_CTL_SYNC_OE |
|
|
|
|
TVP5150_MISC_CTL_CLOCK_OE;
|
2016-12-09 19:47:19 +08:00
|
|
|
|
|
|
|
if (enable) {
|
2021-04-23 23:19:17 +08:00
|
|
|
ret = pm_runtime_resume_and_get(sd->dev);
|
|
|
|
if (ret < 0)
|
2020-03-12 18:31:50 +08:00
|
|
|
return ret;
|
|
|
|
|
2018-06-29 00:20:42 +08:00
|
|
|
tvp5150_enable(sd);
|
|
|
|
|
2018-06-29 00:20:45 +08:00
|
|
|
/* Enable outputs if decoder is locked */
|
2018-08-01 22:09:24 +08:00
|
|
|
if (decoder->irq)
|
|
|
|
val = decoder->lock ? decoder->oe : 0;
|
|
|
|
else
|
|
|
|
val = decoder->oe;
|
2020-03-12 18:31:50 +08:00
|
|
|
|
2018-06-29 00:20:46 +08:00
|
|
|
v4l2_subdev_notify_event(&decoder->sd, &tvp5150_ev_fmt);
|
2020-03-12 18:31:50 +08:00
|
|
|
} else {
|
|
|
|
pm_runtime_put(sd->dev);
|
2016-12-09 19:47:19 +08:00
|
|
|
}
|
2016-01-07 20:46:45 +08:00
|
|
|
|
2018-06-29 00:20:36 +08:00
|
|
|
regmap_update_bits(decoder->regmap, TVP5150_MISC_CTL, mask, val);
|
2016-01-07 20:46:45 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-02 22:26:22 +08:00
|
|
|
static int tvp5150_s_routing(struct v4l2_subdev *sd,
|
|
|
|
u32 input, u32 output, u32 config)
|
2008-12-18 22:17:25 +08:00
|
|
|
{
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2009-04-02 22:26:22 +08:00
|
|
|
decoder->input = input;
|
|
|
|
decoder->output = output;
|
2016-02-13 01:42:02 +08:00
|
|
|
|
|
|
|
if (output == TVP5150_BLACK_SCREEN)
|
|
|
|
decoder->enable = false;
|
|
|
|
else
|
|
|
|
decoder->enable = true;
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
tvp5150_selmux(sd);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-01-24 03:11:05 +08:00
|
|
|
|
2010-03-14 21:59:16 +08:00
|
|
|
static int tvp5150_s_raw_fmt(struct v4l2_subdev *sd, struct v4l2_vbi_format *fmt)
|
|
|
|
{
|
2018-06-29 00:20:35 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
2018-04-03 06:23:18 +08:00
|
|
|
/*
|
|
|
|
* this is for capturing 36 raw vbi lines
|
|
|
|
* if there's a way to cut off the beginning 2 vbi lines
|
|
|
|
* with the tvp5150 then the vbi line count could be lowered
|
|
|
|
* to 17 lines/field again, although I couldn't find a register
|
|
|
|
* which could do that cropping
|
|
|
|
*/
|
|
|
|
|
2010-03-14 21:59:16 +08:00
|
|
|
if (fmt->sample_format == V4L2_PIX_FMT_GREY)
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_LUMA_PROC_CTL_1, 0x70);
|
2010-03-14 21:59:16 +08:00
|
|
|
if (fmt->count[0] == 18 && fmt->count[1] == 18) {
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_START,
|
|
|
|
0x00);
|
|
|
|
regmap_write(decoder->regmap, TVP5150_VERT_BLANKING_STOP, 0x01);
|
2010-03-14 21:59:16 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tvp5150_s_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
|
2008-12-18 22:17:25 +08:00
|
|
|
{
|
2018-06-29 00:20:35 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2008-12-18 22:17:25 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if (svbi->service_set != 0) {
|
|
|
|
for (i = 0; i <= 23; i++) {
|
|
|
|
svbi->service_lines[1][i] = 0;
|
|
|
|
svbi->service_lines[0][i] =
|
2018-02-20 02:23:39 +08:00
|
|
|
tvp5150_set_vbi(sd, svbi->service_lines[0][i],
|
|
|
|
0xf0, i, 3);
|
2008-10-24 23:19:14 +08:00
|
|
|
}
|
2008-12-18 22:17:25 +08:00
|
|
|
/* Enables FIFO */
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_FIFO_OUT_CTRL, 1);
|
2008-12-18 22:17:25 +08:00
|
|
|
} else {
|
|
|
|
/* Disables FIFO*/
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_FIFO_OUT_CTRL, 0);
|
2006-01-24 03:11:08 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
/* Disable Full Field */
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, TVP5150_FULL_FIELD_ENA, 0);
|
2006-01-24 03:11:08 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
/* Disable Line modes */
|
|
|
|
for (i = TVP5150_LINE_MODE_INI; i <= TVP5150_LINE_MODE_END; i++)
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(decoder->regmap, i, 0xff);
|
2006-01-24 03:11:08 +08:00
|
|
|
}
|
2008-12-18 22:17:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2006-01-24 03:11:08 +08:00
|
|
|
|
2010-03-14 21:59:16 +08:00
|
|
|
static int tvp5150_g_sliced_fmt(struct v4l2_subdev *sd, struct v4l2_sliced_vbi_format *svbi)
|
|
|
|
{
|
|
|
|
int i, mask = 0;
|
|
|
|
|
2012-09-05 21:38:10 +08:00
|
|
|
memset(svbi->service_lines, 0, sizeof(svbi->service_lines));
|
2006-01-24 03:11:08 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
for (i = 0; i <= 23; i++) {
|
|
|
|
svbi->service_lines[0][i] =
|
2018-02-20 02:23:39 +08:00
|
|
|
tvp5150_get_vbi(sd, i);
|
2008-12-18 22:17:25 +08:00
|
|
|
mask |= svbi->service_lines[0][i];
|
2006-01-24 03:11:06 +08:00
|
|
|
}
|
2008-12-18 22:17:25 +08:00
|
|
|
svbi->service_set = mask;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-01-10 01:25:37 +08:00
|
|
|
#ifdef CONFIG_VIDEO_ADV_DEBUG
|
2008-12-30 18:14:19 +08:00
|
|
|
static int tvp5150_g_register(struct v4l2_subdev *sd, struct v4l2_dbg_register *reg)
|
2008-12-18 22:17:25 +08:00
|
|
|
{
|
2012-06-13 18:49:30 +08:00
|
|
|
int res;
|
|
|
|
|
|
|
|
res = tvp5150_read(sd, reg->reg & 0xff);
|
|
|
|
if (res < 0) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_err(sd->dev, "%s: failed with error = %d\n", __func__, res);
|
2012-06-13 18:49:30 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
reg->val = res;
|
2008-12-30 18:14:19 +08:00
|
|
|
reg->size = 1;
|
2008-12-18 22:17:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2013-03-24 19:28:46 +08:00
|
|
|
static int tvp5150_s_register(struct v4l2_subdev *sd, const struct v4l2_dbg_register *reg)
|
2008-12-18 22:17:25 +08:00
|
|
|
{
|
2018-06-29 00:20:35 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
|
|
|
|
return regmap_write(decoder->regmap, reg->reg & 0xff, reg->val & 0xff);
|
2008-12-18 22:17:25 +08:00
|
|
|
}
|
|
|
|
#endif
|
2005-11-09 13:37:07 +08:00
|
|
|
|
2020-03-12 18:31:51 +08:00
|
|
|
static int tvp5150_subscribe_event(struct v4l2_subdev *sd, struct v4l2_fh *fh,
|
|
|
|
struct v4l2_event_subscription *sub)
|
|
|
|
{
|
|
|
|
switch (sub->type) {
|
|
|
|
case V4L2_EVENT_SOURCE_CHANGE:
|
|
|
|
return v4l2_src_change_event_subdev_subscribe(sd, fh, sub);
|
|
|
|
case V4L2_EVENT_CTRL:
|
|
|
|
return v4l2_ctrl_subdev_subscribe_event(sd, fh, sub);
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static int tvp5150_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
|
|
|
|
{
|
|
|
|
int status = tvp5150_read(sd, 0x88);
|
2005-11-09 13:37:07 +08:00
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
vt->signal = ((status & 0x04) && (status & 0x02)) ? 0xffff : 0x0;
|
|
|
|
return 0;
|
|
|
|
}
|
2005-11-09 13:37:07 +08:00
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
static int tvp5150_registered(struct v4l2_subdev *sd)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_MEDIA_CONTROLLER)
|
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
|
|
|
unsigned int i;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Setup connector pads and links. Enable the link to the first
|
|
|
|
* available connector per default.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < decoder->connectors_num; i++) {
|
|
|
|
struct media_entity *con = &decoder->connectors[i].ent;
|
|
|
|
struct media_pad *pad = &decoder->connectors[i].pad;
|
|
|
|
struct v4l2_fwnode_connector *v4l2c =
|
|
|
|
&decoder->connectors[i].base;
|
|
|
|
struct v4l2_connector_link *link =
|
|
|
|
v4l2_connector_first_link(v4l2c);
|
|
|
|
unsigned int port = link->fwnode_link.remote_port;
|
|
|
|
unsigned int flags = i ? 0 : MEDIA_LNK_FL_ENABLED;
|
|
|
|
bool is_svideo = v4l2c->type == V4L2_CONN_SVIDEO;
|
|
|
|
|
|
|
|
pad->flags = MEDIA_PAD_FL_SOURCE;
|
|
|
|
ret = media_entity_pads_init(con, 1, pad);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
ret = media_device_register_entity(sd->v4l2_dev->mdev, con);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
ret = media_create_pad_link(con, 0, &sd->entity, port, flags);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (is_svideo) {
|
|
|
|
/*
|
|
|
|
* Check tvp5150_link_setup() comments for more
|
|
|
|
* information.
|
|
|
|
*/
|
|
|
|
link = v4l2_connector_last_link(v4l2c);
|
|
|
|
port = link->fwnode_link.remote_port;
|
|
|
|
ret = media_create_pad_link(con, 0, &sd->entity, port,
|
|
|
|
flags);
|
|
|
|
if (ret < 0)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable default input. */
|
|
|
|
if (flags == MEDIA_LNK_FL_ENABLED) {
|
|
|
|
decoder->input =
|
|
|
|
is_svideo ? TVP5150_SVIDEO :
|
|
|
|
port == 0 ? TVP5150_COMPOSITE0 :
|
|
|
|
TVP5150_COMPOSITE1;
|
|
|
|
|
|
|
|
tvp5150_selmux(sd);
|
2020-03-12 18:31:55 +08:00
|
|
|
decoder->cur_connector = &decoder->connectors[i];
|
|
|
|
tvp5150_s_std(sd, v4l2c->connector.analog.sdtv_stds);
|
2020-03-12 18:31:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
2020-06-06 22:39:18 +08:00
|
|
|
for (i = 0; i < decoder->connectors_num; i++) {
|
2020-03-12 18:31:45 +08:00
|
|
|
media_device_unregister_entity(&decoder->connectors[i].ent);
|
2020-06-06 22:39:18 +08:00
|
|
|
media_entity_cleanup(&decoder->connectors[i].ent);
|
|
|
|
}
|
2020-03-12 18:31:45 +08:00
|
|
|
return ret;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-12 18:31:52 +08:00
|
|
|
static int tvp5150_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
|
|
|
|
{
|
2021-04-23 23:19:17 +08:00
|
|
|
return pm_runtime_resume_and_get(sd->dev);
|
2020-03-12 18:31:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int tvp5150_close(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh)
|
|
|
|
{
|
|
|
|
pm_runtime_put(sd->dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
2010-12-12 19:45:43 +08:00
|
|
|
static const struct v4l2_ctrl_ops tvp5150_ctrl_ops = {
|
|
|
|
.s_ctrl = tvp5150_s_ctrl,
|
|
|
|
};
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static const struct v4l2_subdev_core_ops tvp5150_core_ops = {
|
|
|
|
.log_status = tvp5150_log_status,
|
|
|
|
.reset = tvp5150_reset,
|
|
|
|
#ifdef CONFIG_VIDEO_ADV_DEBUG
|
|
|
|
.g_register = tvp5150_g_register,
|
|
|
|
.s_register = tvp5150_s_register,
|
|
|
|
#endif
|
2020-03-12 18:31:51 +08:00
|
|
|
.subscribe_event = tvp5150_subscribe_event,
|
|
|
|
.unsubscribe_event = v4l2_event_subdev_unsubscribe,
|
2008-12-18 22:17:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct v4l2_subdev_tuner_ops tvp5150_tuner_ops = {
|
|
|
|
.g_tuner = tvp5150_g_tuner,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct v4l2_subdev_video_ops tvp5150_video_ops = {
|
2014-04-29 03:53:01 +08:00
|
|
|
.s_std = tvp5150_s_std,
|
2018-06-29 00:20:49 +08:00
|
|
|
.g_std = tvp5150_g_std,
|
2018-06-29 00:20:48 +08:00
|
|
|
.querystd = tvp5150_querystd,
|
2016-01-07 20:46:45 +08:00
|
|
|
.s_stream = tvp5150_s_stream,
|
2008-12-18 22:17:25 +08:00
|
|
|
.s_routing = tvp5150_s_routing,
|
2010-03-14 20:57:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct v4l2_subdev_vbi_ops tvp5150_vbi_ops = {
|
2008-12-18 22:17:25 +08:00
|
|
|
.g_sliced_vbi_cap = tvp5150_g_sliced_vbi_cap,
|
2010-03-14 21:59:16 +08:00
|
|
|
.g_sliced_fmt = tvp5150_g_sliced_fmt,
|
|
|
|
.s_sliced_fmt = tvp5150_s_sliced_fmt,
|
|
|
|
.s_raw_fmt = tvp5150_s_raw_fmt,
|
2008-12-18 22:17:25 +08:00
|
|
|
};
|
|
|
|
|
2015-04-09 15:01:33 +08:00
|
|
|
static const struct v4l2_subdev_pad_ops tvp5150_pad_ops = {
|
2018-06-29 00:20:40 +08:00
|
|
|
.init_cfg = tvp5150_init_cfg,
|
2015-04-09 15:01:33 +08:00
|
|
|
.enum_mbus_code = tvp5150_enum_mbus_code,
|
2016-01-26 20:46:24 +08:00
|
|
|
.enum_frame_size = tvp5150_enum_frame_size,
|
2015-04-09 15:02:34 +08:00
|
|
|
.set_fmt = tvp5150_fill_fmt,
|
|
|
|
.get_fmt = tvp5150_fill_fmt,
|
2015-12-14 18:25:32 +08:00
|
|
|
.get_selection = tvp5150_get_selection,
|
|
|
|
.set_selection = tvp5150_set_selection,
|
2020-07-17 22:53:16 +08:00
|
|
|
.get_mbus_config = tvp5150_get_mbus_config,
|
2015-04-09 15:01:33 +08:00
|
|
|
};
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static const struct v4l2_subdev_ops tvp5150_ops = {
|
|
|
|
.core = &tvp5150_core_ops,
|
|
|
|
.tuner = &tvp5150_tuner_ops,
|
|
|
|
.video = &tvp5150_video_ops,
|
2010-03-14 20:57:30 +08:00
|
|
|
.vbi = &tvp5150_vbi_ops,
|
2015-04-09 15:01:33 +08:00
|
|
|
.pad = &tvp5150_pad_ops,
|
2008-12-18 22:17:25 +08:00
|
|
|
};
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
static const struct v4l2_subdev_internal_ops tvp5150_internal_ops = {
|
|
|
|
.registered = tvp5150_registered,
|
2020-03-12 18:31:52 +08:00
|
|
|
.open = tvp5150_open,
|
|
|
|
.close = tvp5150_close,
|
2020-03-12 18:31:45 +08:00
|
|
|
};
|
|
|
|
|
2005-11-09 13:36:40 +08:00
|
|
|
/****************************************************************************
|
|
|
|
I2C Client & Driver
|
|
|
|
****************************************************************************/
|
|
|
|
|
2018-06-29 00:20:35 +08:00
|
|
|
static const struct regmap_range tvp5150_readable_ranges[] = {
|
|
|
|
{
|
|
|
|
.range_min = TVP5150_VD_IN_SRC_SEL_1,
|
|
|
|
.range_max = TVP5150_AUTOSW_MSK,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_COLOR_KIL_THSH_CTL,
|
|
|
|
.range_max = TVP5150_CONF_SHARED_PIN,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_ACT_VD_CROP_ST_MSB,
|
|
|
|
.range_max = TVP5150_HORIZ_SYNC_START,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_VERT_BLANKING_START,
|
|
|
|
.range_max = TVP5150_INTT_CONFIG_REG_B,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_VIDEO_STD,
|
|
|
|
.range_max = TVP5150_VIDEO_STD,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_CB_GAIN_FACT,
|
|
|
|
.range_max = TVP5150_REV_SELECT,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_MSB_DEV_ID,
|
|
|
|
.range_max = TVP5150_STATUS_REG_5,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_CC_DATA_INI,
|
|
|
|
.range_max = TVP5150_TELETEXT_FIL_ENA,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_INT_STATUS_REG_A,
|
|
|
|
.range_max = TVP5150_FIFO_OUT_CTRL,
|
|
|
|
}, {
|
|
|
|
.range_min = TVP5150_FULL_FIELD_ENA,
|
|
|
|
.range_max = TVP5150_FULL_FIELD_MODE_REG,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2018-08-01 22:16:48 +08:00
|
|
|
static bool tvp5150_volatile_reg(struct device *dev, unsigned int reg)
|
2018-06-29 00:20:35 +08:00
|
|
|
{
|
|
|
|
switch (reg) {
|
|
|
|
case TVP5150_VERT_LN_COUNT_MSB:
|
|
|
|
case TVP5150_VERT_LN_COUNT_LSB:
|
|
|
|
case TVP5150_INT_STATUS_REG_A:
|
|
|
|
case TVP5150_INT_STATUS_REG_B:
|
|
|
|
case TVP5150_INT_ACTIVE_REG_B:
|
|
|
|
case TVP5150_STATUS_REG_1:
|
|
|
|
case TVP5150_STATUS_REG_2:
|
|
|
|
case TVP5150_STATUS_REG_3:
|
|
|
|
case TVP5150_STATUS_REG_4:
|
|
|
|
case TVP5150_STATUS_REG_5:
|
|
|
|
/* CC, WSS, VPS, VITC data? */
|
|
|
|
case TVP5150_VBI_FIFO_READ_DATA:
|
|
|
|
case TVP5150_VDP_STATUS_REG:
|
|
|
|
case TVP5150_FIFO_WORD_COUNT:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct regmap_access_table tvp5150_readable_table = {
|
|
|
|
.yes_ranges = tvp5150_readable_ranges,
|
|
|
|
.n_yes_ranges = ARRAY_SIZE(tvp5150_readable_ranges),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct regmap_config tvp5150_config = {
|
|
|
|
.reg_bits = 8,
|
|
|
|
.val_bits = 8,
|
|
|
|
.max_register = 0xff,
|
|
|
|
|
|
|
|
.cache_type = REGCACHE_RBTREE,
|
|
|
|
|
|
|
|
.rd_table = &tvp5150_readable_table,
|
|
|
|
.volatile_reg = tvp5150_volatile_reg,
|
|
|
|
};
|
|
|
|
|
2016-01-07 20:46:41 +08:00
|
|
|
static int tvp5150_detect_version(struct tvp5150 *core)
|
|
|
|
{
|
|
|
|
struct v4l2_subdev *sd = &core->sd;
|
|
|
|
struct i2c_client *c = v4l2_get_subdevdata(sd);
|
|
|
|
u8 regs[4];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read consequent registers - TVP5150_MSB_DEV_ID, TVP5150_LSB_DEV_ID,
|
|
|
|
* TVP5150_ROM_MAJOR_VER, TVP5150_ROM_MINOR_VER
|
|
|
|
*/
|
2018-06-29 00:20:35 +08:00
|
|
|
res = regmap_bulk_read(core->regmap, TVP5150_MSB_DEV_ID, regs, 4);
|
|
|
|
if (res < 0) {
|
|
|
|
dev_err(&c->dev, "reading ID registers failed: %d\n", res);
|
|
|
|
return res;
|
2016-01-07 20:46:41 +08:00
|
|
|
}
|
|
|
|
|
2016-02-06 03:09:54 +08:00
|
|
|
core->dev_id = (regs[0] << 8) | regs[1];
|
|
|
|
core->rom_ver = (regs[2] << 8) | regs[3];
|
2016-01-07 20:46:41 +08:00
|
|
|
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_info(sd->dev, "tvp%04x (%u.%u) chip found @ 0x%02x (%s)\n",
|
2016-02-06 03:09:54 +08:00
|
|
|
core->dev_id, regs[2], regs[3], c->addr << 1,
|
|
|
|
c->adapter->name);
|
2016-01-07 20:46:41 +08:00
|
|
|
|
2016-02-06 03:09:54 +08:00
|
|
|
if (core->dev_id == 0x5150 && core->rom_ver == 0x0321) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_info(sd->dev, "tvp5150a detected.\n");
|
2016-02-06 03:09:54 +08:00
|
|
|
} else if (core->dev_id == 0x5150 && core->rom_ver == 0x0400) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_info(sd->dev, "tvp5150am1 detected.\n");
|
2016-01-07 20:46:41 +08:00
|
|
|
|
|
|
|
/* ITU-T BT.656.4 timing */
|
2018-06-29 00:20:35 +08:00
|
|
|
regmap_write(core->regmap, TVP5150_REV_SELECT, 0);
|
2016-02-06 03:09:54 +08:00
|
|
|
} else if (core->dev_id == 0x5151 && core->rom_ver == 0x0100) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_info(sd->dev, "tvp5151 detected.\n");
|
2016-01-07 20:46:41 +08:00
|
|
|
} else {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_info(sd->dev, "*** unknown tvp%04x chip detected.\n",
|
2016-02-06 03:09:54 +08:00
|
|
|
core->dev_id);
|
2016-01-07 20:46:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-07 20:46:49 +08:00
|
|
|
static int tvp5150_init(struct i2c_client *c)
|
|
|
|
{
|
|
|
|
struct gpio_desc *pdn_gpio;
|
|
|
|
struct gpio_desc *reset_gpio;
|
|
|
|
|
|
|
|
pdn_gpio = devm_gpiod_get_optional(&c->dev, "pdn", GPIOD_OUT_HIGH);
|
|
|
|
if (IS_ERR(pdn_gpio))
|
|
|
|
return PTR_ERR(pdn_gpio);
|
|
|
|
|
|
|
|
if (pdn_gpio) {
|
|
|
|
gpiod_set_value_cansleep(pdn_gpio, 0);
|
|
|
|
/* Delay time between power supplies active and reset */
|
|
|
|
msleep(20);
|
|
|
|
}
|
|
|
|
|
|
|
|
reset_gpio = devm_gpiod_get_optional(&c->dev, "reset", GPIOD_OUT_HIGH);
|
|
|
|
if (IS_ERR(reset_gpio))
|
|
|
|
return PTR_ERR(reset_gpio);
|
|
|
|
|
|
|
|
if (reset_gpio) {
|
|
|
|
/* RESETB pulse duration */
|
|
|
|
ndelay(500);
|
|
|
|
gpiod_set_value_cansleep(reset_gpio, 0);
|
|
|
|
/* Delay time between end of reset to I2C active */
|
|
|
|
usleep_range(200, 250);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
#if defined(CONFIG_MEDIA_CONTROLLER)
|
|
|
|
static int tvp5150_mc_init(struct tvp5150 *decoder)
|
|
|
|
{
|
|
|
|
struct v4l2_subdev *sd = &decoder->sd;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
sd->entity.ops = &tvp5150_sd_media_ops;
|
|
|
|
sd->entity.function = MEDIA_ENT_F_ATV_DECODER;
|
|
|
|
|
|
|
|
for (i = 0; i < TVP5150_NUM_PADS - 1; i++) {
|
|
|
|
decoder->pads[i].flags = MEDIA_PAD_FL_SINK;
|
|
|
|
decoder->pads[i].sig_type = PAD_SIGNAL_ANALOG;
|
|
|
|
}
|
|
|
|
|
|
|
|
decoder->pads[i].flags = MEDIA_PAD_FL_SOURCE;
|
|
|
|
decoder->pads[i].sig_type = PAD_SIGNAL_DV;
|
|
|
|
|
|
|
|
return media_entity_pads_init(&sd->entity, TVP5150_NUM_PADS,
|
|
|
|
decoder->pads);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !defined(CONFIG_MEDIA_CONTROLLER) */
|
|
|
|
|
|
|
|
static inline int tvp5150_mc_init(struct tvp5150 *decoder)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* defined(CONFIG_MEDIA_CONTROLLER) */
|
|
|
|
|
|
|
|
static int tvp5150_validate_connectors(struct tvp5150 *decoder)
|
|
|
|
{
|
|
|
|
struct device *dev = decoder->sd.dev;
|
|
|
|
struct tvp5150_connector *tvpc;
|
|
|
|
struct v4l2_fwnode_connector *v4l2c;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!decoder->connectors_num) {
|
|
|
|
dev_err(dev, "No valid connector found\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < decoder->connectors_num; i++) {
|
|
|
|
struct v4l2_connector_link *link0 = NULL;
|
|
|
|
struct v4l2_connector_link *link1;
|
|
|
|
|
|
|
|
tvpc = &decoder->connectors[i];
|
|
|
|
v4l2c = &tvpc->base;
|
|
|
|
|
|
|
|
if (v4l2c->type == V4L2_CONN_COMPOSITE) {
|
|
|
|
if (v4l2c->nr_of_links != 1) {
|
|
|
|
dev_err(dev, "Composite: connector needs 1 link\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
link0 = v4l2_connector_first_link(v4l2c);
|
|
|
|
if (!link0) {
|
|
|
|
dev_err(dev, "Composite: invalid first link\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (link0->fwnode_link.remote_id == 1) {
|
|
|
|
dev_err(dev, "Composite: invalid endpoint id\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (v4l2c->type == V4L2_CONN_SVIDEO) {
|
|
|
|
if (v4l2c->nr_of_links != 2) {
|
|
|
|
dev_err(dev, "SVideo: connector needs 2 links\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
link0 = v4l2_connector_first_link(v4l2c);
|
|
|
|
if (!link0) {
|
|
|
|
dev_err(dev, "SVideo: invalid first link\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
link1 = v4l2_connector_last_link(v4l2c);
|
|
|
|
if (link0->fwnode_link.remote_port ==
|
|
|
|
link1->fwnode_link.remote_port) {
|
|
|
|
dev_err(dev, "SVideo: invalid link setup\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
2020-03-12 18:31:55 +08:00
|
|
|
|
|
|
|
if (!(v4l2c->connector.analog.sdtv_stds & TVP5150_STD_MASK)) {
|
|
|
|
dev_err(dev, "Unsupported tv-norm on connector %s\n",
|
|
|
|
v4l2c->name);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2020-03-12 18:31:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-07 20:46:50 +08:00
|
|
|
static int tvp5150_parse_dt(struct tvp5150 *decoder, struct device_node *np)
|
|
|
|
{
|
2020-03-12 18:31:45 +08:00
|
|
|
struct device *dev = decoder->sd.dev;
|
|
|
|
struct v4l2_fwnode_endpoint bus_cfg = {
|
|
|
|
.bus_type = V4L2_MBUS_UNKNOWN
|
|
|
|
};
|
|
|
|
struct device_node *ep_np;
|
|
|
|
struct tvp5150_connector *tvpc;
|
|
|
|
struct v4l2_fwnode_connector *v4l2c;
|
|
|
|
unsigned int flags, ep_num;
|
|
|
|
unsigned int i;
|
|
|
|
int ret;
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
/* At least 1 output and 1 input */
|
|
|
|
ep_num = of_graph_get_endpoint_count(np);
|
|
|
|
if (ep_num < 2 || ep_num > 5) {
|
|
|
|
dev_err(dev, "At least 1 input and 1 output must be connected to the device.\n");
|
2016-01-07 20:46:50 +08:00
|
|
|
return -EINVAL;
|
2020-03-12 18:31:45 +08:00
|
|
|
}
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
/* Layout if all connectors are used:
|
|
|
|
*
|
|
|
|
* tvp-5150 port@0 (AIP1A)
|
|
|
|
* endpoint@0 -----------> Comp0-Con port
|
|
|
|
* endpoint@1 --------+--> Svideo-Con port
|
|
|
|
* tvp-5150 port@1 (AIP1B) |
|
|
|
|
* endpoint@1 --------+
|
|
|
|
* endpoint@0 -----------> Comp1-Con port
|
|
|
|
* tvp-5150 port@2
|
|
|
|
* endpoint (video bitstream output at YOUT[0-7] parallel bus)
|
|
|
|
*/
|
|
|
|
for_each_endpoint_of_node(np, ep_np) {
|
|
|
|
struct fwnode_handle *ep_fwnode = of_fwnode_handle(ep_np);
|
|
|
|
unsigned int next_connector = decoder->connectors_num;
|
|
|
|
struct of_endpoint ep;
|
|
|
|
|
|
|
|
of_graph_parse_endpoint(ep_np, &ep);
|
|
|
|
if (ep.port > 1 || ep.id > 1) {
|
|
|
|
dev_dbg(dev, "Ignore connector on port@%u/ep@%u\n",
|
|
|
|
ep.port, ep.id);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
tvpc = &decoder->connectors[next_connector];
|
|
|
|
v4l2c = &tvpc->base;
|
|
|
|
|
|
|
|
if (ep.port == 0 || (ep.port == 1 && ep.id == 0)) {
|
|
|
|
ret = v4l2_fwnode_connector_parse(ep_fwnode, v4l2c);
|
|
|
|
if (ret)
|
|
|
|
goto err_put;
|
|
|
|
ret = v4l2_fwnode_connector_add_link(ep_fwnode, v4l2c);
|
|
|
|
if (ret)
|
|
|
|
goto err_put;
|
|
|
|
decoder->connectors_num++;
|
|
|
|
} else {
|
|
|
|
/* Adding the 2nd svideo link */
|
|
|
|
for (i = 0; i < TVP5150_MAX_CONNECTORS; i++) {
|
|
|
|
tvpc = &decoder->connectors[i];
|
|
|
|
v4l2c = &tvpc->base;
|
|
|
|
if (v4l2c->type == V4L2_CONN_SVIDEO)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = v4l2_fwnode_connector_add_link(ep_fwnode, v4l2c);
|
|
|
|
if (ret)
|
|
|
|
goto err_put;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = tvp5150_validate_connectors(decoder);
|
2016-01-07 20:46:50 +08:00
|
|
|
if (ret)
|
2020-03-12 18:31:45 +08:00
|
|
|
goto err_free;
|
|
|
|
|
|
|
|
for (i = 0; i < decoder->connectors_num; i++) {
|
|
|
|
tvpc = &decoder->connectors[i];
|
|
|
|
v4l2c = &tvpc->base;
|
|
|
|
tvpc->ent.flags = MEDIA_ENT_FL_CONNECTOR;
|
|
|
|
tvpc->ent.function = v4l2c->type == V4L2_CONN_SVIDEO ?
|
|
|
|
MEDIA_ENT_F_CONN_SVIDEO : MEDIA_ENT_F_CONN_COMPOSITE;
|
|
|
|
tvpc->ent.name = devm_kasprintf(dev, GFP_KERNEL, "%s %s",
|
|
|
|
v4l2c->name, v4l2c->label ?
|
|
|
|
v4l2c->label : "");
|
|
|
|
}
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
ep_np = of_graph_get_endpoint_by_regs(np, TVP5150_PAD_VID_OUT, 0);
|
|
|
|
if (!ep_np) {
|
2020-11-16 22:18:01 +08:00
|
|
|
ret = -EINVAL;
|
2020-03-12 18:31:45 +08:00
|
|
|
dev_err(dev, "Error no output endpoint available\n");
|
|
|
|
goto err_free;
|
|
|
|
}
|
|
|
|
ret = v4l2_fwnode_endpoint_parse(of_fwnode_handle(ep_np), &bus_cfg);
|
|
|
|
of_node_put(ep_np);
|
|
|
|
if (ret)
|
|
|
|
goto err_free;
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
flags = bus_cfg.bus.parallel.flags;
|
2016-01-07 20:46:50 +08:00
|
|
|
if (bus_cfg.bus_type == V4L2_MBUS_PARALLEL &&
|
|
|
|
!(flags & V4L2_MBUS_HSYNC_ACTIVE_HIGH &&
|
|
|
|
flags & V4L2_MBUS_VSYNC_ACTIVE_HIGH &&
|
2016-02-06 03:09:53 +08:00
|
|
|
flags & V4L2_MBUS_FIELD_EVEN_LOW)) {
|
|
|
|
ret = -EINVAL;
|
2020-03-12 18:31:45 +08:00
|
|
|
goto err_free;
|
2016-02-06 03:09:53 +08:00
|
|
|
}
|
2016-01-07 20:46:50 +08:00
|
|
|
|
|
|
|
decoder->mbus_type = bus_cfg.bus_type;
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_put:
|
|
|
|
of_node_put(ep_np);
|
|
|
|
err_free:
|
|
|
|
for (i = 0; i < TVP5150_MAX_CONNECTORS; i++)
|
|
|
|
v4l2_fwnode_connector_free(&decoder->connectors[i].base);
|
|
|
|
|
2016-01-07 20:46:50 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-02-13 01:42:02 +08:00
|
|
|
static const char * const tvp5150_test_patterns[2] = {
|
|
|
|
"Disabled",
|
|
|
|
"Black screen"
|
|
|
|
};
|
|
|
|
|
2019-07-11 05:51:49 +08:00
|
|
|
static int tvp5150_probe(struct i2c_client *c)
|
2005-11-09 13:36:40 +08:00
|
|
|
{
|
|
|
|
struct tvp5150 *core;
|
2008-12-18 22:17:25 +08:00
|
|
|
struct v4l2_subdev *sd;
|
2016-01-07 20:46:50 +08:00
|
|
|
struct device_node *np = c->dev.of_node;
|
2018-06-29 00:20:35 +08:00
|
|
|
struct regmap *map;
|
2020-03-12 18:31:55 +08:00
|
|
|
unsigned int i;
|
2016-01-07 20:46:41 +08:00
|
|
|
int res;
|
2005-11-09 13:36:40 +08:00
|
|
|
|
|
|
|
/* Check if the adapter supports the needed features */
|
2008-12-18 22:17:25 +08:00
|
|
|
if (!i2c_check_functionality(c->adapter,
|
2005-11-09 13:36:40 +08:00
|
|
|
I2C_FUNC_SMBUS_READ_BYTE | I2C_FUNC_SMBUS_WRITE_BYTE_DATA))
|
2008-12-18 22:17:25 +08:00
|
|
|
return -EIO;
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2016-01-07 20:46:49 +08:00
|
|
|
res = tvp5150_init(c);
|
|
|
|
if (res)
|
|
|
|
return res;
|
|
|
|
|
2013-05-02 19:29:43 +08:00
|
|
|
core = devm_kzalloc(&c->dev, sizeof(*core), GFP_KERNEL);
|
|
|
|
if (!core)
|
2005-11-09 13:36:40 +08:00
|
|
|
return -ENOMEM;
|
2016-01-07 20:46:50 +08:00
|
|
|
|
2018-06-29 00:20:35 +08:00
|
|
|
map = devm_regmap_init_i2c(c, &tvp5150_config);
|
|
|
|
if (IS_ERR(map))
|
|
|
|
return PTR_ERR(map);
|
|
|
|
|
|
|
|
core->regmap = map;
|
2008-12-18 22:17:25 +08:00
|
|
|
sd = &core->sd;
|
2020-03-12 18:31:49 +08:00
|
|
|
v4l2_i2c_subdev_init(sd, c, &tvp5150_ops);
|
|
|
|
sd->internal_ops = &tvp5150_internal_ops;
|
2020-03-12 18:31:51 +08:00
|
|
|
sd->flags |= V4L2_SUBDEV_FL_HAS_DEVNODE | V4L2_SUBDEV_FL_HAS_EVENTS;
|
2016-01-07 20:46:50 +08:00
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_OF) && np) {
|
|
|
|
res = tvp5150_parse_dt(core, np);
|
|
|
|
if (res) {
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_err(sd->dev, "DT parsing error: %d\n", res);
|
2016-01-07 20:46:50 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Default to BT.656 embedded sync */
|
|
|
|
core->mbus_type = V4L2_MBUS_BT656;
|
|
|
|
}
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
res = tvp5150_mc_init(core);
|
|
|
|
if (res)
|
2016-01-26 20:46:24 +08:00
|
|
|
return res;
|
2016-02-06 03:09:58 +08:00
|
|
|
|
2016-01-07 20:46:41 +08:00
|
|
|
res = tvp5150_detect_version(core);
|
|
|
|
if (res < 0)
|
|
|
|
return res;
|
2011-02-22 11:10:22 +08:00
|
|
|
|
2020-03-12 18:31:55 +08:00
|
|
|
/*
|
|
|
|
* Iterate over all available connectors in case they are supported and
|
|
|
|
* successfully parsed. Fallback to default autodetect in case they
|
|
|
|
* aren't supported.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < core->connectors_num; i++) {
|
|
|
|
struct v4l2_fwnode_connector *v4l2c;
|
|
|
|
|
|
|
|
v4l2c = &core->connectors[i].base;
|
|
|
|
core->norm |= v4l2c->connector.analog.sdtv_stds;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!core->connectors_num)
|
|
|
|
core->norm = V4L2_STD_ALL;
|
|
|
|
|
2018-06-29 00:20:40 +08:00
|
|
|
core->detected_norm = V4L2_STD_UNKNOWN;
|
2009-04-02 22:26:22 +08:00
|
|
|
core->input = TVP5150_COMPOSITE1;
|
2016-02-13 01:42:02 +08:00
|
|
|
core->enable = true;
|
2010-12-12 19:45:43 +08:00
|
|
|
|
2016-01-07 20:46:44 +08:00
|
|
|
v4l2_ctrl_handler_init(&core->hdl, 5);
|
2010-12-12 19:45:43 +08:00
|
|
|
v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
|
|
|
|
V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
|
|
|
|
v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
|
|
|
|
V4L2_CID_CONTRAST, 0, 255, 1, 128);
|
|
|
|
v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
|
|
|
|
V4L2_CID_SATURATION, 0, 255, 1, 128);
|
|
|
|
v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
|
|
|
|
V4L2_CID_HUE, -128, 127, 1, 0);
|
2016-01-07 20:46:44 +08:00
|
|
|
v4l2_ctrl_new_std(&core->hdl, &tvp5150_ctrl_ops,
|
|
|
|
V4L2_CID_PIXEL_RATE, 27000000,
|
|
|
|
27000000, 1, 27000000);
|
2016-02-13 01:42:02 +08:00
|
|
|
v4l2_ctrl_new_std_menu_items(&core->hdl, &tvp5150_ctrl_ops,
|
|
|
|
V4L2_CID_TEST_PATTERN,
|
2018-09-14 04:49:51 +08:00
|
|
|
ARRAY_SIZE(tvp5150_test_patterns) - 1,
|
2016-02-13 01:42:02 +08:00
|
|
|
0, 0, tvp5150_test_patterns);
|
2010-12-12 19:45:43 +08:00
|
|
|
sd->ctrl_handler = &core->hdl;
|
|
|
|
if (core->hdl.error) {
|
2012-06-13 18:49:30 +08:00
|
|
|
res = core->hdl.error;
|
2015-09-21 19:23:09 +08:00
|
|
|
goto err;
|
2010-12-12 19:45:43 +08:00
|
|
|
}
|
2005-11-09 13:36:43 +08:00
|
|
|
|
2018-06-29 00:20:39 +08:00
|
|
|
tvp5150_set_default(tvp5150_read_std(sd), &core->rect);
|
2012-01-31 16:23:46 +08:00
|
|
|
|
2018-06-29 00:20:44 +08:00
|
|
|
core->irq = c->irq;
|
2016-12-09 19:47:17 +08:00
|
|
|
tvp5150_reset(sd, 0); /* Calls v4l2_ctrl_handler_setup() */
|
2018-06-29 00:20:44 +08:00
|
|
|
if (c->irq) {
|
|
|
|
res = devm_request_threaded_irq(&c->dev, c->irq, NULL,
|
|
|
|
tvp5150_isr, IRQF_TRIGGER_HIGH |
|
|
|
|
IRQF_ONESHOT, "tvp5150", core);
|
|
|
|
if (res)
|
2018-09-18 21:14:46 +08:00
|
|
|
goto err;
|
2018-06-29 00:20:44 +08:00
|
|
|
}
|
2016-12-09 19:47:17 +08:00
|
|
|
|
2015-09-21 19:23:09 +08:00
|
|
|
res = v4l2_async_register_subdev(sd);
|
|
|
|
if (res < 0)
|
|
|
|
goto err;
|
|
|
|
|
2006-02-07 11:01:19 +08:00
|
|
|
if (debug > 1)
|
2008-12-18 22:17:25 +08:00
|
|
|
tvp5150_log_status(sd);
|
2020-03-12 18:31:50 +08:00
|
|
|
|
|
|
|
pm_runtime_set_active(&c->dev);
|
|
|
|
pm_runtime_enable(&c->dev);
|
|
|
|
pm_runtime_idle(&c->dev);
|
|
|
|
|
2005-11-09 13:36:40 +08:00
|
|
|
return 0;
|
2015-09-21 19:23:09 +08:00
|
|
|
|
|
|
|
err:
|
|
|
|
v4l2_ctrl_handler_free(&core->hdl);
|
|
|
|
return res;
|
2005-11-09 13:36:40 +08:00
|
|
|
}
|
|
|
|
|
2022-08-15 16:02:30 +08:00
|
|
|
static void tvp5150_remove(struct i2c_client *c)
|
2005-11-09 13:36:40 +08:00
|
|
|
{
|
2008-12-18 22:17:25 +08:00
|
|
|
struct v4l2_subdev *sd = i2c_get_clientdata(c);
|
2010-12-12 19:45:43 +08:00
|
|
|
struct tvp5150 *decoder = to_tvp5150(sd);
|
2020-03-12 18:31:45 +08:00
|
|
|
unsigned int i;
|
2005-11-09 13:36:40 +08:00
|
|
|
|
2016-11-16 18:58:05 +08:00
|
|
|
dev_dbg_lvl(sd->dev, 1, debug,
|
2006-01-10 01:25:36 +08:00
|
|
|
"tvp5150.c: removing tvp5150 adapter on address 0x%x\n",
|
|
|
|
c->addr << 1);
|
|
|
|
|
2020-03-12 18:31:45 +08:00
|
|
|
for (i = 0; i < decoder->connectors_num; i++)
|
|
|
|
v4l2_fwnode_connector_free(&decoder->connectors[i].base);
|
2020-06-06 22:39:18 +08:00
|
|
|
for (i = 0; i < decoder->connectors_num; i++) {
|
2020-03-12 18:31:45 +08:00
|
|
|
media_device_unregister_entity(&decoder->connectors[i].ent);
|
2020-06-06 22:39:18 +08:00
|
|
|
media_entity_cleanup(&decoder->connectors[i].ent);
|
|
|
|
}
|
2015-09-21 19:23:09 +08:00
|
|
|
v4l2_async_unregister_subdev(sd);
|
2010-12-12 19:45:43 +08:00
|
|
|
v4l2_ctrl_handler_free(&decoder->hdl);
|
2020-03-12 18:31:50 +08:00
|
|
|
pm_runtime_disable(&c->dev);
|
|
|
|
pm_runtime_set_suspended(&c->dev);
|
2005-11-09 13:36:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------- */
|
|
|
|
|
2020-03-12 18:31:50 +08:00
|
|
|
static const struct dev_pm_ops tvp5150_pm_ops = {
|
|
|
|
SET_RUNTIME_PM_OPS(tvp5150_runtime_suspend,
|
|
|
|
tvp5150_runtime_resume,
|
|
|
|
NULL)
|
|
|
|
};
|
|
|
|
|
2008-12-18 22:17:25 +08:00
|
|
|
static const struct i2c_device_id tvp5150_id[] = {
|
|
|
|
{ "tvp5150", 0 },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, tvp5150_id);
|
2005-11-09 13:36:41 +08:00
|
|
|
|
2016-01-07 20:46:48 +08:00
|
|
|
#if IS_ENABLED(CONFIG_OF)
|
|
|
|
static const struct of_device_id tvp5150_of_match[] = {
|
|
|
|
{ .compatible = "ti,tvp5150", },
|
|
|
|
{ /* sentinel */ },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, tvp5150_of_match);
|
|
|
|
#endif
|
|
|
|
|
2010-09-16 02:45:20 +08:00
|
|
|
static struct i2c_driver tvp5150_driver = {
|
|
|
|
.driver = {
|
2016-01-07 20:46:48 +08:00
|
|
|
.of_match_table = of_match_ptr(tvp5150_of_match),
|
2010-09-16 02:45:20 +08:00
|
|
|
.name = "tvp5150",
|
2020-03-12 18:31:50 +08:00
|
|
|
.pm = &tvp5150_pm_ops,
|
2010-09-16 02:45:20 +08:00
|
|
|
},
|
2019-07-11 05:51:49 +08:00
|
|
|
.probe_new = tvp5150_probe,
|
2010-09-16 02:45:20 +08:00
|
|
|
.remove = tvp5150_remove,
|
|
|
|
.id_table = tvp5150_id,
|
2005-11-09 13:36:40 +08:00
|
|
|
};
|
2010-09-16 02:45:20 +08:00
|
|
|
|
2012-02-12 17:56:32 +08:00
|
|
|
module_i2c_driver(tvp5150_driver);
|