2013-06-04 22:22:30 +08:00
|
|
|
/*
|
|
|
|
* vsp1_wpf.c -- R-Car VSP1 Write Pixel Formatter
|
|
|
|
*
|
2014-02-07 01:42:31 +08:00
|
|
|
* Copyright (C) 2013-2014 Renesas Electronics Corporation
|
2013-06-04 22:22:30 +08:00
|
|
|
*
|
|
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/device.h>
|
|
|
|
|
|
|
|
#include <media/v4l2-subdev.h>
|
|
|
|
|
|
|
|
#include "vsp1.h"
|
2015-11-15 08:27:52 +08:00
|
|
|
#include "vsp1_dl.h"
|
2013-06-04 22:22:30 +08:00
|
|
|
#include "vsp1_rwpf.h"
|
|
|
|
#include "vsp1_video.h"
|
|
|
|
|
|
|
|
#define WPF_MAX_WIDTH 2048
|
|
|
|
#define WPF_MAX_HEIGHT 2048
|
|
|
|
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Device Access
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void vsp1_wpf_write(struct vsp1_rwpf *wpf, u32 reg, u32 data)
|
|
|
|
{
|
2015-09-07 12:40:25 +08:00
|
|
|
vsp1_mod_write(&wpf->entity,
|
|
|
|
reg + wpf->entity.index * VI6_WPF_OFFSET, data);
|
2013-06-04 22:22:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* V4L2 Subdevice Core Operations
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int wpf_s_stream(struct v4l2_subdev *subdev, int enable)
|
|
|
|
{
|
|
|
|
struct vsp1_rwpf *wpf = to_rwpf(subdev);
|
|
|
|
struct vsp1_device *vsp1 = wpf->entity.vsp1;
|
2014-05-22 06:00:05 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
if (enable)
|
2013-06-04 22:22:30 +08:00
|
|
|
return 0;
|
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
/* Write to registers directly when stopping the stream as there will be
|
|
|
|
* no pipeline run to apply the display list.
|
2013-07-11 05:03:46 +08:00
|
|
|
*/
|
2015-11-17 23:10:26 +08:00
|
|
|
vsp1_write(vsp1, VI6_WPF_IRQ_ENB(wpf->entity.index), 0);
|
|
|
|
vsp1_write(vsp1, wpf->entity.index * VI6_WPF_OFFSET +
|
|
|
|
VI6_WPF_SRCRPF, 0);
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2015-08-06 03:40:31 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* V4L2 Subdevice Operations
|
|
|
|
*/
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
static struct v4l2_subdev_video_ops wpf_video_ops = {
|
|
|
|
.s_stream = wpf_s_stream,
|
|
|
|
};
|
2013-07-11 05:03:46 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
static struct v4l2_subdev_ops wpf_ops = {
|
|
|
|
.video = &wpf_video_ops,
|
2015-11-22 23:37:45 +08:00
|
|
|
.pad = &vsp1_rwpf_pad_ops,
|
2015-11-17 23:10:26 +08:00
|
|
|
};
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* VSP1 Entity Operations
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void vsp1_wpf_destroy(struct vsp1_entity *entity)
|
|
|
|
{
|
|
|
|
struct vsp1_rwpf *wpf = entity_to_rwpf(entity);
|
|
|
|
|
|
|
|
vsp1_dlm_destroy(wpf->dlm);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wpf_set_memory(struct vsp1_entity *entity)
|
|
|
|
{
|
|
|
|
struct vsp1_rwpf *wpf = entity_to_rwpf(entity);
|
|
|
|
|
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_DSTM_ADDR_Y, wpf->mem.addr[0]);
|
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_DSTM_ADDR_C0, wpf->mem.addr[1]);
|
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_DSTM_ADDR_C1, wpf->mem.addr[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void wpf_configure(struct vsp1_entity *entity)
|
|
|
|
{
|
|
|
|
struct vsp1_pipeline *pipe = to_vsp1_pipeline(&entity->subdev.entity);
|
|
|
|
struct vsp1_rwpf *wpf = to_rwpf(&entity->subdev);
|
|
|
|
struct vsp1_device *vsp1 = wpf->entity.vsp1;
|
|
|
|
const struct v4l2_mbus_framefmt *source_format;
|
|
|
|
const struct v4l2_mbus_framefmt *sink_format;
|
|
|
|
const struct v4l2_rect *crop;
|
|
|
|
unsigned int i;
|
|
|
|
u32 outfmt = 0;
|
|
|
|
u32 srcrpf = 0;
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
/* Cropping */
|
2015-11-16 05:14:22 +08:00
|
|
|
crop = vsp1_rwpf_get_crop(wpf, wpf->entity.config);
|
|
|
|
|
2013-08-25 07:49:58 +08:00
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_HSZCLIP, VI6_WPF_SZCLIP_EN |
|
|
|
|
(crop->left << VI6_WPF_SZCLIP_OFST_SHIFT) |
|
|
|
|
(crop->width << VI6_WPF_SZCLIP_SIZE_SHIFT));
|
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_VSZCLIP, VI6_WPF_SZCLIP_EN |
|
|
|
|
(crop->top << VI6_WPF_SZCLIP_OFST_SHIFT) |
|
|
|
|
(crop->height << VI6_WPF_SZCLIP_SIZE_SHIFT));
|
2013-06-04 22:22:30 +08:00
|
|
|
|
|
|
|
/* Format */
|
2015-11-16 05:14:22 +08:00
|
|
|
sink_format = vsp1_entity_get_pad_format(&wpf->entity,
|
|
|
|
wpf->entity.config,
|
|
|
|
RWPF_PAD_SINK);
|
|
|
|
source_format = vsp1_entity_get_pad_format(&wpf->entity,
|
|
|
|
wpf->entity.config,
|
|
|
|
RWPF_PAD_SOURCE);
|
|
|
|
|
2013-06-04 22:22:30 +08:00
|
|
|
if (!pipe->lif) {
|
2015-11-17 23:10:26 +08:00
|
|
|
const struct v4l2_pix_format_mplane *format = &wpf->format;
|
2015-07-29 01:00:43 +08:00
|
|
|
const struct vsp1_format_info *fmtinfo = wpf->fmtinfo;
|
2013-06-04 22:22:30 +08:00
|
|
|
|
|
|
|
outfmt = fmtinfo->hwfmt << VI6_WPF_OUTFMT_WRFMT_SHIFT;
|
|
|
|
|
2014-05-27 07:12:53 +08:00
|
|
|
if (fmtinfo->alpha)
|
|
|
|
outfmt |= VI6_WPF_OUTFMT_PXA;
|
2013-06-04 22:22:30 +08:00
|
|
|
if (fmtinfo->swap_yc)
|
|
|
|
outfmt |= VI6_WPF_OUTFMT_SPYCS;
|
|
|
|
if (fmtinfo->swap_uv)
|
|
|
|
outfmt |= VI6_WPF_OUTFMT_SPUVS;
|
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
/* Destination stride and byte swapping. */
|
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_DSTM_STRIDE_Y,
|
|
|
|
format->plane_fmt[0].bytesperline);
|
|
|
|
if (format->num_planes > 1)
|
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_DSTM_STRIDE_C,
|
|
|
|
format->plane_fmt[1].bytesperline);
|
|
|
|
|
2013-06-04 22:22:30 +08:00
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_DSWAP, fmtinfo->swap);
|
|
|
|
}
|
|
|
|
|
2015-11-16 05:14:22 +08:00
|
|
|
if (sink_format->code != source_format->code)
|
2013-06-04 22:22:30 +08:00
|
|
|
outfmt |= VI6_WPF_OUTFMT_CSC;
|
|
|
|
|
2015-11-01 22:19:42 +08:00
|
|
|
outfmt |= wpf->alpha << VI6_WPF_OUTFMT_PDV_SHIFT;
|
2013-06-04 22:22:30 +08:00
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_OUTFMT, outfmt);
|
|
|
|
|
2015-09-07 12:40:25 +08:00
|
|
|
vsp1_mod_write(&wpf->entity, VI6_DPR_WPF_FPORCH(wpf->entity.index),
|
|
|
|
VI6_DPR_WPF_FPORCH_FP_WPFN);
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-09-07 12:40:25 +08:00
|
|
|
vsp1_mod_write(&wpf->entity, VI6_WPF_WRBCK_CTRL, 0);
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
/* Sources. If the pipeline has a single input and BRU is not used,
|
|
|
|
* configure it as the master layer. Otherwise configure all
|
|
|
|
* inputs as sub-layers and select the virtual RPF as the master
|
|
|
|
* layer.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < vsp1->info->rpf_count; ++i) {
|
|
|
|
struct vsp1_rwpf *input = pipe->inputs[i];
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
if (!input)
|
|
|
|
continue;
|
2013-06-04 22:22:30 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
srcrpf |= (!pipe->bru && pipe->num_inputs == 1)
|
|
|
|
? VI6_WPF_SRCRPF_RPF_ACT_MST(input->entity.index)
|
|
|
|
: VI6_WPF_SRCRPF_RPF_ACT_SUB(input->entity.index);
|
|
|
|
}
|
2015-11-17 22:23:23 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
if (pipe->bru || pipe->num_inputs > 1)
|
|
|
|
srcrpf |= VI6_WPF_SRCRPF_VIRACT_MST;
|
2015-11-17 22:23:23 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
vsp1_wpf_write(wpf, VI6_WPF_SRCRPF, srcrpf);
|
2015-11-17 22:23:23 +08:00
|
|
|
|
2015-11-17 23:10:26 +08:00
|
|
|
/* Enable interrupts */
|
|
|
|
vsp1_mod_write(&wpf->entity, VI6_WPF_IRQ_STA(wpf->entity.index), 0);
|
|
|
|
vsp1_mod_write(&wpf->entity, VI6_WPF_IRQ_ENB(wpf->entity.index),
|
|
|
|
VI6_WFP_IRQ_ENB_FREE);
|
2013-06-04 22:22:30 +08:00
|
|
|
}
|
|
|
|
|
2015-11-17 22:23:23 +08:00
|
|
|
static const struct vsp1_entity_operations wpf_entity_ops = {
|
|
|
|
.destroy = vsp1_wpf_destroy,
|
2015-07-29 03:04:47 +08:00
|
|
|
.set_memory = wpf_set_memory,
|
2015-11-17 23:10:26 +08:00
|
|
|
.configure = wpf_configure,
|
2013-06-04 22:22:30 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Initialization and Cleanup
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct vsp1_rwpf *vsp1_wpf_create(struct vsp1_device *vsp1, unsigned int index)
|
|
|
|
{
|
|
|
|
struct vsp1_rwpf *wpf;
|
2015-11-16 05:42:01 +08:00
|
|
|
char name[6];
|
2013-06-04 22:22:30 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
wpf = devm_kzalloc(vsp1->dev, sizeof(*wpf), GFP_KERNEL);
|
|
|
|
if (wpf == NULL)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
wpf->max_width = WPF_MAX_WIDTH;
|
|
|
|
wpf->max_height = WPF_MAX_HEIGHT;
|
|
|
|
|
2015-11-17 22:23:23 +08:00
|
|
|
wpf->entity.ops = &wpf_entity_ops;
|
2013-06-04 22:22:30 +08:00
|
|
|
wpf->entity.type = VSP1_ENTITY_WPF;
|
|
|
|
wpf->entity.index = index;
|
|
|
|
|
2015-11-16 05:42:01 +08:00
|
|
|
sprintf(name, "wpf.%u", index);
|
|
|
|
ret = vsp1_entity_init(vsp1, &wpf->entity, name, 2, &wpf_ops);
|
2013-06-04 22:22:30 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
2015-11-02 01:18:56 +08:00
|
|
|
/* Initialize the display list manager. */
|
|
|
|
wpf->dlm = vsp1_dlm_create(vsp1, index, 4);
|
|
|
|
if (!wpf->dlm) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto error;
|
2015-11-15 08:27:52 +08:00
|
|
|
}
|
|
|
|
|
2014-05-22 06:00:05 +08:00
|
|
|
/* Initialize the control handler. */
|
2015-11-01 22:19:42 +08:00
|
|
|
ret = vsp1_rwpf_init_ctrls(wpf);
|
|
|
|
if (ret < 0) {
|
2014-05-22 06:00:05 +08:00
|
|
|
dev_err(vsp1->dev, "wpf%u: failed to initialize controls\n",
|
|
|
|
index);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2013-06-04 22:22:30 +08:00
|
|
|
return wpf;
|
|
|
|
|
2014-05-28 23:49:13 +08:00
|
|
|
error:
|
|
|
|
vsp1_entity_destroy(&wpf->entity);
|
2013-06-04 22:22:30 +08:00
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|