[media] omap3isp: Statistics
The OMAP3 ISP statistics entities compute histogram and H3A statistics information from capture images. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: David Cohen <dacohen@gmail.com> Signed-off-by: Stanimir Varbanov <svarbanov@mm-sol.com> Signed-off-by: Vimarsh Zutshi <vimarsh.zutshi@gmail.com> Signed-off-by: Tuukka Toivonen <tuukkat76@gmail.com> Signed-off-by: Sergio Aguirre <saaguirre@ti.com> Signed-off-by: Antti Koskipaa <akoskipa@gmail.com> Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com> Signed-off-by: RaniSuneela <r-m@ti.com> Signed-off-by: Atanas Filipov <afilipov@mm-sol.com> Signed-off-by: Gjorgji Rosikopulos <grosikopulos@mm-sol.com> Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com> Signed-off-by: Nayden Kanchev <nkanchev@mm-sol.com> Signed-off-by: Phil Carmody <ext-phil.2.carmody@nokia.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: Dominic Curran <dcurran@ti.com> Signed-off-by: Ilkka Myllyperkio <ilkka.myllyperkio@sofica.fi> Signed-off-by: Pallavi Kulkarni <p-kulkarni@ti.com> Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com> Acked-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Родитель
de1135d44f
Коммит
68e342b306
|
@ -0,0 +1,117 @@
|
|||
/*
|
||||
* isph3a.h
|
||||
*
|
||||
* TI OMAP3 ISP - H3A AF module
|
||||
*
|
||||
* Copyright (C) 2010 Nokia Corporation
|
||||
* Copyright (C) 2009 Texas Instruments, Inc.
|
||||
*
|
||||
* Contacts: David Cohen <dacohen@gmail.com>
|
||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||
* Sakari Ailus <sakari.ailus@iki.fi>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef OMAP3_ISP_H3A_H
|
||||
#define OMAP3_ISP_H3A_H
|
||||
|
||||
#include <linux/omap3isp.h>
|
||||
|
||||
/*
|
||||
* ----------
|
||||
* -H3A AEWB-
|
||||
* ----------
|
||||
*/
|
||||
|
||||
#define AEWB_PACKET_SIZE 16
|
||||
#define AEWB_SATURATION_LIMIT 0x3ff
|
||||
|
||||
/* Flags for changed registers */
|
||||
#define PCR_CHNG (1 << 0)
|
||||
#define AEWWIN1_CHNG (1 << 1)
|
||||
#define AEWINSTART_CHNG (1 << 2)
|
||||
#define AEWINBLK_CHNG (1 << 3)
|
||||
#define AEWSUBWIN_CHNG (1 << 4)
|
||||
#define PRV_WBDGAIN_CHNG (1 << 5)
|
||||
#define PRV_WBGAIN_CHNG (1 << 6)
|
||||
|
||||
/* ISPH3A REGISTERS bits */
|
||||
#define ISPH3A_PCR_AF_EN (1 << 0)
|
||||
#define ISPH3A_PCR_AF_ALAW_EN (1 << 1)
|
||||
#define ISPH3A_PCR_AF_MED_EN (1 << 2)
|
||||
#define ISPH3A_PCR_AF_BUSY (1 << 15)
|
||||
#define ISPH3A_PCR_AEW_EN (1 << 16)
|
||||
#define ISPH3A_PCR_AEW_ALAW_EN (1 << 17)
|
||||
#define ISPH3A_PCR_AEW_BUSY (1 << 18)
|
||||
#define ISPH3A_PCR_AEW_MASK (ISPH3A_PCR_AEW_ALAW_EN | \
|
||||
ISPH3A_PCR_AEW_AVE2LMT_MASK)
|
||||
|
||||
/*
|
||||
* --------
|
||||
* -H3A AF-
|
||||
* --------
|
||||
*/
|
||||
|
||||
/* Peripheral Revision */
|
||||
#define AFPID 0x0
|
||||
|
||||
#define AFCOEF_OFFSET 0x00000004 /* COEF base address */
|
||||
|
||||
/* PCR fields */
|
||||
#define AF_BUSYAF (1 << 15)
|
||||
#define AF_FVMODE (1 << 14)
|
||||
#define AF_RGBPOS (0x7 << 11)
|
||||
#define AF_MED_TH (0xFF << 3)
|
||||
#define AF_MED_EN (1 << 2)
|
||||
#define AF_ALAW_EN (1 << 1)
|
||||
#define AF_EN (1 << 0)
|
||||
#define AF_PCR_MASK (AF_FVMODE | AF_RGBPOS | AF_MED_TH | \
|
||||
AF_MED_EN | AF_ALAW_EN)
|
||||
|
||||
/* AFPAX1 fields */
|
||||
#define AF_PAXW (0x7F << 16)
|
||||
#define AF_PAXH 0x7F
|
||||
|
||||
/* AFPAX2 fields */
|
||||
#define AF_AFINCV (0xF << 13)
|
||||
#define AF_PAXVC (0x7F << 6)
|
||||
#define AF_PAXHC 0x3F
|
||||
|
||||
/* AFPAXSTART fields */
|
||||
#define AF_PAXSH (0xFFF<<16)
|
||||
#define AF_PAXSV 0xFFF
|
||||
|
||||
/* COEFFICIENT MASK */
|
||||
#define AF_COEF_MASK0 0xFFF
|
||||
#define AF_COEF_MASK1 (0xFFF<<16)
|
||||
|
||||
/* BIT SHIFTS */
|
||||
#define AF_RGBPOS_SHIFT 11
|
||||
#define AF_MED_TH_SHIFT 3
|
||||
#define AF_PAXW_SHIFT 16
|
||||
#define AF_LINE_INCR_SHIFT 13
|
||||
#define AF_VT_COUNT_SHIFT 6
|
||||
#define AF_HZ_START_SHIFT 16
|
||||
#define AF_COEF_SHIFT 16
|
||||
|
||||
/* Init and cleanup functions */
|
||||
int omap3isp_h3a_aewb_init(struct isp_device *isp);
|
||||
int omap3isp_h3a_af_init(struct isp_device *isp);
|
||||
|
||||
void omap3isp_h3a_aewb_cleanup(struct isp_device *isp);
|
||||
void omap3isp_h3a_af_cleanup(struct isp_device *isp);
|
||||
|
||||
#endif /* OMAP3_ISP_H3A_H */
|
|
@ -0,0 +1,374 @@
|
|||
/*
|
||||
* isph3a.c
|
||||
*
|
||||
* TI OMAP3 ISP - H3A module
|
||||
*
|
||||
* Copyright (C) 2010 Nokia Corporation
|
||||
* Copyright (C) 2009 Texas Instruments, Inc.
|
||||
*
|
||||
* Contacts: David Cohen <dacohen@gmail.com>
|
||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||
* Sakari Ailus <sakari.ailus@iki.fi>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <linux/slab.h>
|
||||
#include <linux/uaccess.h>
|
||||
|
||||
#include "isp.h"
|
||||
#include "isph3a.h"
|
||||
#include "ispstat.h"
|
||||
|
||||
/*
|
||||
* h3a_aewb_update_regs - Helper function to update h3a registers.
|
||||
*/
|
||||
static void h3a_aewb_setup_regs(struct ispstat *aewb, void *priv)
|
||||
{
|
||||
struct omap3isp_h3a_aewb_config *conf = priv;
|
||||
u32 pcr;
|
||||
u32 win1;
|
||||
u32 start;
|
||||
u32 blk;
|
||||
u32 subwin;
|
||||
|
||||
if (aewb->state == ISPSTAT_DISABLED)
|
||||
return;
|
||||
|
||||
isp_reg_writel(aewb->isp, aewb->active_buf->iommu_addr,
|
||||
OMAP3_ISP_IOMEM_H3A, ISPH3A_AEWBUFST);
|
||||
|
||||
if (!aewb->update)
|
||||
return;
|
||||
|
||||
/* Converting config metadata into reg values */
|
||||
pcr = conf->saturation_limit << ISPH3A_PCR_AEW_AVE2LMT_SHIFT;
|
||||
pcr |= !!conf->alaw_enable << ISPH3A_PCR_AEW_ALAW_EN_SHIFT;
|
||||
|
||||
win1 = ((conf->win_height >> 1) - 1) << ISPH3A_AEWWIN1_WINH_SHIFT;
|
||||
win1 |= ((conf->win_width >> 1) - 1) << ISPH3A_AEWWIN1_WINW_SHIFT;
|
||||
win1 |= (conf->ver_win_count - 1) << ISPH3A_AEWWIN1_WINVC_SHIFT;
|
||||
win1 |= (conf->hor_win_count - 1) << ISPH3A_AEWWIN1_WINHC_SHIFT;
|
||||
|
||||
start = conf->hor_win_start << ISPH3A_AEWINSTART_WINSH_SHIFT;
|
||||
start |= conf->ver_win_start << ISPH3A_AEWINSTART_WINSV_SHIFT;
|
||||
|
||||
blk = conf->blk_ver_win_start << ISPH3A_AEWINBLK_WINSV_SHIFT;
|
||||
blk |= ((conf->blk_win_height >> 1) - 1) << ISPH3A_AEWINBLK_WINH_SHIFT;
|
||||
|
||||
subwin = ((conf->subsample_ver_inc >> 1) - 1) <<
|
||||
ISPH3A_AEWSUBWIN_AEWINCV_SHIFT;
|
||||
subwin |= ((conf->subsample_hor_inc >> 1) - 1) <<
|
||||
ISPH3A_AEWSUBWIN_AEWINCH_SHIFT;
|
||||
|
||||
isp_reg_writel(aewb->isp, win1, OMAP3_ISP_IOMEM_H3A, ISPH3A_AEWWIN1);
|
||||
isp_reg_writel(aewb->isp, start, OMAP3_ISP_IOMEM_H3A,
|
||||
ISPH3A_AEWINSTART);
|
||||
isp_reg_writel(aewb->isp, blk, OMAP3_ISP_IOMEM_H3A, ISPH3A_AEWINBLK);
|
||||
isp_reg_writel(aewb->isp, subwin, OMAP3_ISP_IOMEM_H3A,
|
||||
ISPH3A_AEWSUBWIN);
|
||||
isp_reg_clr_set(aewb->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR,
|
||||
ISPH3A_PCR_AEW_MASK, pcr);
|
||||
|
||||
aewb->update = 0;
|
||||
aewb->config_counter += aewb->inc_config;
|
||||
aewb->inc_config = 0;
|
||||
aewb->buf_size = conf->buf_size;
|
||||
}
|
||||
|
||||
static void h3a_aewb_enable(struct ispstat *aewb, int enable)
|
||||
{
|
||||
if (enable) {
|
||||
isp_reg_set(aewb->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR,
|
||||
ISPH3A_PCR_AEW_EN);
|
||||
/* This bit is already set if AF is enabled */
|
||||
if (aewb->isp->isp_af.state != ISPSTAT_ENABLED)
|
||||
isp_reg_set(aewb->isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL,
|
||||
ISPCTRL_H3A_CLK_EN);
|
||||
} else {
|
||||
isp_reg_clr(aewb->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR,
|
||||
ISPH3A_PCR_AEW_EN);
|
||||
/* This bit can't be cleared if AF is enabled */
|
||||
if (aewb->isp->isp_af.state != ISPSTAT_ENABLED)
|
||||
isp_reg_clr(aewb->isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL,
|
||||
ISPCTRL_H3A_CLK_EN);
|
||||
}
|
||||
}
|
||||
|
||||
static int h3a_aewb_busy(struct ispstat *aewb)
|
||||
{
|
||||
return isp_reg_readl(aewb->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR)
|
||||
& ISPH3A_PCR_BUSYAEAWB;
|
||||
}
|
||||
|
||||
static u32 h3a_aewb_get_buf_size(struct omap3isp_h3a_aewb_config *conf)
|
||||
{
|
||||
/* Number of configured windows + extra row for black data */
|
||||
u32 win_count = (conf->ver_win_count + 1) * conf->hor_win_count;
|
||||
|
||||
/*
|
||||
* Unsaturated block counts for each 8 windows.
|
||||
* 1 extra for the last (win_count % 8) windows if win_count is not
|
||||
* divisible by 8.
|
||||
*/
|
||||
win_count += (win_count + 7) / 8;
|
||||
|
||||
return win_count * AEWB_PACKET_SIZE;
|
||||
}
|
||||
|
||||
static int h3a_aewb_validate_params(struct ispstat *aewb, void *new_conf)
|
||||
{
|
||||
struct omap3isp_h3a_aewb_config *user_cfg = new_conf;
|
||||
u32 buf_size;
|
||||
|
||||
if (unlikely(user_cfg->saturation_limit >
|
||||
OMAP3ISP_AEWB_MAX_SATURATION_LIM))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->win_height < OMAP3ISP_AEWB_MIN_WIN_H ||
|
||||
user_cfg->win_height > OMAP3ISP_AEWB_MAX_WIN_H ||
|
||||
user_cfg->win_height & 0x01))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->win_width < OMAP3ISP_AEWB_MIN_WIN_W ||
|
||||
user_cfg->win_width > OMAP3ISP_AEWB_MAX_WIN_W ||
|
||||
user_cfg->win_width & 0x01))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->ver_win_count < OMAP3ISP_AEWB_MIN_WINVC ||
|
||||
user_cfg->ver_win_count > OMAP3ISP_AEWB_MAX_WINVC))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->hor_win_count < OMAP3ISP_AEWB_MIN_WINHC ||
|
||||
user_cfg->hor_win_count > OMAP3ISP_AEWB_MAX_WINHC))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->ver_win_start > OMAP3ISP_AEWB_MAX_WINSTART))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->hor_win_start > OMAP3ISP_AEWB_MAX_WINSTART))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->blk_ver_win_start > OMAP3ISP_AEWB_MAX_WINSTART))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->blk_win_height < OMAP3ISP_AEWB_MIN_WIN_H ||
|
||||
user_cfg->blk_win_height > OMAP3ISP_AEWB_MAX_WIN_H ||
|
||||
user_cfg->blk_win_height & 0x01))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->subsample_ver_inc < OMAP3ISP_AEWB_MIN_SUB_INC ||
|
||||
user_cfg->subsample_ver_inc > OMAP3ISP_AEWB_MAX_SUB_INC ||
|
||||
user_cfg->subsample_ver_inc & 0x01))
|
||||
return -EINVAL;
|
||||
|
||||
if (unlikely(user_cfg->subsample_hor_inc < OMAP3ISP_AEWB_MIN_SUB_INC ||
|
||||
user_cfg->subsample_hor_inc > OMAP3ISP_AEWB_MAX_SUB_INC ||
|
||||
user_cfg->subsample_hor_inc & 0x01))
|
||||
return -EINVAL;
|
||||
|
||||
buf_size = h3a_aewb_get_buf_size(user_cfg);
|
||||
if (buf_size > user_cfg->buf_size)
|
||||
user_cfg->buf_size = buf_size;
|
||||
else if (user_cfg->buf_size > OMAP3ISP_AEWB_MAX_BUF_SIZE)
|
||||
user_cfg->buf_size = OMAP3ISP_AEWB_MAX_BUF_SIZE;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* h3a_aewb_set_params - Helper function to check & store user given params.
|
||||
* @new_conf: Pointer to AE and AWB parameters struct.
|
||||
*
|
||||
* As most of them are busy-lock registers, need to wait until AEW_BUSY = 0 to
|
||||
* program them during ISR.
|
||||
*/
|
||||
static void h3a_aewb_set_params(struct ispstat *aewb, void *new_conf)
|
||||
{
|
||||
struct omap3isp_h3a_aewb_config *user_cfg = new_conf;
|
||||
struct omap3isp_h3a_aewb_config *cur_cfg = aewb->priv;
|
||||
int update = 0;
|
||||
|
||||
if (cur_cfg->saturation_limit != user_cfg->saturation_limit) {
|
||||
cur_cfg->saturation_limit = user_cfg->saturation_limit;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->alaw_enable != user_cfg->alaw_enable) {
|
||||
cur_cfg->alaw_enable = user_cfg->alaw_enable;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->win_height != user_cfg->win_height) {
|
||||
cur_cfg->win_height = user_cfg->win_height;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->win_width != user_cfg->win_width) {
|
||||
cur_cfg->win_width = user_cfg->win_width;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->ver_win_count != user_cfg->ver_win_count) {
|
||||
cur_cfg->ver_win_count = user_cfg->ver_win_count;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->hor_win_count != user_cfg->hor_win_count) {
|
||||
cur_cfg->hor_win_count = user_cfg->hor_win_count;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->ver_win_start != user_cfg->ver_win_start) {
|
||||
cur_cfg->ver_win_start = user_cfg->ver_win_start;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->hor_win_start != user_cfg->hor_win_start) {
|
||||
cur_cfg->hor_win_start = user_cfg->hor_win_start;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->blk_ver_win_start != user_cfg->blk_ver_win_start) {
|
||||
cur_cfg->blk_ver_win_start = user_cfg->blk_ver_win_start;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->blk_win_height != user_cfg->blk_win_height) {
|
||||
cur_cfg->blk_win_height = user_cfg->blk_win_height;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->subsample_ver_inc != user_cfg->subsample_ver_inc) {
|
||||
cur_cfg->subsample_ver_inc = user_cfg->subsample_ver_inc;
|
||||
update = 1;
|
||||
}
|
||||
if (cur_cfg->subsample_hor_inc != user_cfg->subsample_hor_inc) {
|
||||
cur_cfg->subsample_hor_inc = user_cfg->subsample_hor_inc;
|
||||
update = 1;
|
||||
}
|
||||
|
||||
if (update || !aewb->configured) {
|
||||
aewb->inc_config++;
|
||||
aewb->update = 1;
|
||||
cur_cfg->buf_size = h3a_aewb_get_buf_size(cur_cfg);
|
||||
}
|
||||
}
|
||||
|
||||
static long h3a_aewb_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
|
||||
{
|
||||
struct ispstat *stat = v4l2_get_subdevdata(sd);
|
||||
|
||||
switch (cmd) {
|
||||
case VIDIOC_OMAP3ISP_AEWB_CFG:
|
||||
return omap3isp_stat_config(stat, arg);
|
||||
case VIDIOC_OMAP3ISP_STAT_REQ:
|
||||
return omap3isp_stat_request_statistics(stat, arg);
|
||||
case VIDIOC_OMAP3ISP_STAT_EN: {
|
||||
unsigned long *en = arg;
|
||||
return omap3isp_stat_enable(stat, !!*en);
|
||||
}
|
||||
}
|
||||
|
||||
return -ENOIOCTLCMD;
|
||||
}
|
||||
|
||||
static const struct ispstat_ops h3a_aewb_ops = {
|
||||
.validate_params = h3a_aewb_validate_params,
|
||||
.set_params = h3a_aewb_set_params,
|
||||
.setup_regs = h3a_aewb_setup_regs,
|
||||
.enable = h3a_aewb_enable,
|
||||
.busy = h3a_aewb_busy,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_core_ops h3a_aewb_subdev_core_ops = {
|
||||
.ioctl = h3a_aewb_ioctl,
|
||||
.subscribe_event = omap3isp_stat_subscribe_event,
|
||||
.unsubscribe_event = omap3isp_stat_unsubscribe_event,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_video_ops h3a_aewb_subdev_video_ops = {
|
||||
.s_stream = omap3isp_stat_s_stream,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_ops h3a_aewb_subdev_ops = {
|
||||
.core = &h3a_aewb_subdev_core_ops,
|
||||
.video = &h3a_aewb_subdev_video_ops,
|
||||
};
|
||||
|
||||
/*
|
||||
* omap3isp_h3a_aewb_init - Module Initialisation.
|
||||
*/
|
||||
int omap3isp_h3a_aewb_init(struct isp_device *isp)
|
||||
{
|
||||
struct ispstat *aewb = &isp->isp_aewb;
|
||||
struct omap3isp_h3a_aewb_config *aewb_cfg;
|
||||
struct omap3isp_h3a_aewb_config *aewb_recover_cfg;
|
||||
int ret;
|
||||
|
||||
aewb_cfg = kzalloc(sizeof(*aewb_cfg), GFP_KERNEL);
|
||||
if (!aewb_cfg)
|
||||
return -ENOMEM;
|
||||
|
||||
memset(aewb, 0, sizeof(*aewb));
|
||||
aewb->ops = &h3a_aewb_ops;
|
||||
aewb->priv = aewb_cfg;
|
||||
aewb->dma_ch = -1;
|
||||
aewb->event_type = V4L2_EVENT_OMAP3ISP_AEWB;
|
||||
aewb->isp = isp;
|
||||
|
||||
/* Set recover state configuration */
|
||||
aewb_recover_cfg = kzalloc(sizeof(*aewb_recover_cfg), GFP_KERNEL);
|
||||
if (!aewb_recover_cfg) {
|
||||
dev_err(aewb->isp->dev, "AEWB: cannot allocate memory for "
|
||||
"recover configuration.\n");
|
||||
ret = -ENOMEM;
|
||||
goto err_recover_alloc;
|
||||
}
|
||||
|
||||
aewb_recover_cfg->saturation_limit = OMAP3ISP_AEWB_MAX_SATURATION_LIM;
|
||||
aewb_recover_cfg->win_height = OMAP3ISP_AEWB_MIN_WIN_H;
|
||||
aewb_recover_cfg->win_width = OMAP3ISP_AEWB_MIN_WIN_W;
|
||||
aewb_recover_cfg->ver_win_count = OMAP3ISP_AEWB_MIN_WINVC;
|
||||
aewb_recover_cfg->hor_win_count = OMAP3ISP_AEWB_MIN_WINHC;
|
||||
aewb_recover_cfg->blk_ver_win_start = aewb_recover_cfg->ver_win_start +
|
||||
aewb_recover_cfg->win_height * aewb_recover_cfg->ver_win_count;
|
||||
aewb_recover_cfg->blk_win_height = OMAP3ISP_AEWB_MIN_WIN_H;
|
||||
aewb_recover_cfg->subsample_ver_inc = OMAP3ISP_AEWB_MIN_SUB_INC;
|
||||
aewb_recover_cfg->subsample_hor_inc = OMAP3ISP_AEWB_MIN_SUB_INC;
|
||||
|
||||
if (h3a_aewb_validate_params(aewb, aewb_recover_cfg)) {
|
||||
dev_err(aewb->isp->dev, "AEWB: recover configuration is "
|
||||
"invalid.\n");
|
||||
ret = -EINVAL;
|
||||
goto err_conf;
|
||||
}
|
||||
|
||||
aewb_recover_cfg->buf_size = h3a_aewb_get_buf_size(aewb_recover_cfg);
|
||||
aewb->recover_priv = aewb_recover_cfg;
|
||||
|
||||
ret = omap3isp_stat_init(aewb, "AEWB", &h3a_aewb_subdev_ops);
|
||||
if (ret)
|
||||
goto err_conf;
|
||||
|
||||
return 0;
|
||||
|
||||
err_conf:
|
||||
kfree(aewb_recover_cfg);
|
||||
err_recover_alloc:
|
||||
kfree(aewb_cfg);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* omap3isp_h3a_aewb_cleanup - Module exit.
|
||||
*/
|
||||
void omap3isp_h3a_aewb_cleanup(struct isp_device *isp)
|
||||
{
|
||||
kfree(isp->isp_aewb.priv);
|
||||
kfree(isp->isp_aewb.recover_priv);
|
||||
omap3isp_stat_free(&isp->isp_aewb);
|
||||
}
|
|
@ -0,0 +1,429 @@
|
|||
/*
|
||||
* isph3a_af.c
|
||||
*
|
||||
* TI OMAP3 ISP - H3A AF module
|
||||
*
|
||||
* Copyright (C) 2010 Nokia Corporation
|
||||
* Copyright (C) 2009 Texas Instruments, Inc.
|
||||
*
|
||||
* Contacts: David Cohen <dacohen@gmail.com>
|
||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||
* Sakari Ailus <sakari.ailus@iki.fi>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
/* Linux specific include files */
|
||||
#include <linux/device.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#include "isp.h"
|
||||
#include "isph3a.h"
|
||||
#include "ispstat.h"
|
||||
|
||||
#define IS_OUT_OF_BOUNDS(value, min, max) \
|
||||
(((value) < (min)) || ((value) > (max)))
|
||||
|
||||
static void h3a_af_setup_regs(struct ispstat *af, void *priv)
|
||||
{
|
||||
struct omap3isp_h3a_af_config *conf = priv;
|
||||
u32 pcr;
|
||||
u32 pax1;
|
||||
u32 pax2;
|
||||
u32 paxstart;
|
||||
u32 coef;
|
||||
u32 base_coef_set0;
|
||||
u32 base_coef_set1;
|
||||
int index;
|
||||
|
||||
if (af->state == ISPSTAT_DISABLED)
|
||||
return;
|
||||
|
||||
isp_reg_writel(af->isp, af->active_buf->iommu_addr, OMAP3_ISP_IOMEM_H3A,
|
||||
ISPH3A_AFBUFST);
|
||||
|
||||
if (!af->update)
|
||||
return;
|
||||
|
||||
/* Configure Hardware Registers */
|
||||
pax1 = ((conf->paxel.width >> 1) - 1) << AF_PAXW_SHIFT;
|
||||
/* Set height in AFPAX1 */
|
||||
pax1 |= (conf->paxel.height >> 1) - 1;
|
||||
isp_reg_writel(af->isp, pax1, OMAP3_ISP_IOMEM_H3A, ISPH3A_AFPAX1);
|
||||
|
||||
/* Configure AFPAX2 Register */
|
||||
/* Set Line Increment in AFPAX2 Register */
|
||||
pax2 = ((conf->paxel.line_inc >> 1) - 1) << AF_LINE_INCR_SHIFT;
|
||||
/* Set Vertical Count */
|
||||
pax2 |= (conf->paxel.v_cnt - 1) << AF_VT_COUNT_SHIFT;
|
||||
/* Set Horizontal Count */
|
||||
pax2 |= (conf->paxel.h_cnt - 1);
|
||||
isp_reg_writel(af->isp, pax2, OMAP3_ISP_IOMEM_H3A, ISPH3A_AFPAX2);
|
||||
|
||||
/* Configure PAXSTART Register */
|
||||
/*Configure Horizontal Start */
|
||||
paxstart = conf->paxel.h_start << AF_HZ_START_SHIFT;
|
||||
/* Configure Vertical Start */
|
||||
paxstart |= conf->paxel.v_start;
|
||||
isp_reg_writel(af->isp, paxstart, OMAP3_ISP_IOMEM_H3A,
|
||||
ISPH3A_AFPAXSTART);
|
||||
|
||||
/*SetIIRSH Register */
|
||||
isp_reg_writel(af->isp, conf->iir.h_start,
|
||||
OMAP3_ISP_IOMEM_H3A, ISPH3A_AFIIRSH);
|
||||
|
||||
base_coef_set0 = ISPH3A_AFCOEF010;
|
||||
base_coef_set1 = ISPH3A_AFCOEF110;
|
||||
for (index = 0; index <= 8; index += 2) {
|
||||
/*Set IIR Filter0 Coefficients */
|
||||
coef = 0;
|
||||
coef |= conf->iir.coeff_set0[index];
|
||||
coef |= conf->iir.coeff_set0[index + 1] <<
|
||||
AF_COEF_SHIFT;
|
||||
isp_reg_writel(af->isp, coef, OMAP3_ISP_IOMEM_H3A,
|
||||
base_coef_set0);
|
||||
base_coef_set0 += AFCOEF_OFFSET;
|
||||
|
||||
/*Set IIR Filter1 Coefficients */
|
||||
coef = 0;
|
||||
coef |= conf->iir.coeff_set1[index];
|
||||
coef |= conf->iir.coeff_set1[index + 1] <<
|
||||
AF_COEF_SHIFT;
|
||||
isp_reg_writel(af->isp, coef, OMAP3_ISP_IOMEM_H3A,
|
||||
base_coef_set1);
|
||||
base_coef_set1 += AFCOEF_OFFSET;
|
||||
}
|
||||
/* set AFCOEF0010 Register */
|
||||
isp_reg_writel(af->isp, conf->iir.coeff_set0[10],
|
||||
OMAP3_ISP_IOMEM_H3A, ISPH3A_AFCOEF0010);
|
||||
/* set AFCOEF1010 Register */
|
||||
isp_reg_writel(af->isp, conf->iir.coeff_set1[10],
|
||||
OMAP3_ISP_IOMEM_H3A, ISPH3A_AFCOEF1010);
|
||||
|
||||
/* PCR Register */
|
||||
/* Set RGB Position */
|
||||
pcr = conf->rgb_pos << AF_RGBPOS_SHIFT;
|
||||
/* Set Accumulator Mode */
|
||||
if (conf->fvmode == OMAP3ISP_AF_MODE_PEAK)
|
||||
pcr |= AF_FVMODE;
|
||||
/* Set A-law */
|
||||
if (conf->alaw_enable)
|
||||
pcr |= AF_ALAW_EN;
|
||||
/* HMF Configurations */
|
||||
if (conf->hmf.enable) {
|
||||
/* Enable HMF */
|
||||
pcr |= AF_MED_EN;
|
||||
/* Set Median Threshold */
|
||||
pcr |= conf->hmf.threshold << AF_MED_TH_SHIFT;
|
||||
}
|
||||
/* Set PCR Register */
|
||||
isp_reg_clr_set(af->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR,
|
||||
AF_PCR_MASK, pcr);
|
||||
|
||||
af->update = 0;
|
||||
af->config_counter += af->inc_config;
|
||||
af->inc_config = 0;
|
||||
af->buf_size = conf->buf_size;
|
||||
}
|
||||
|
||||
static void h3a_af_enable(struct ispstat *af, int enable)
|
||||
{
|
||||
if (enable) {
|
||||
isp_reg_set(af->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR,
|
||||
ISPH3A_PCR_AF_EN);
|
||||
/* This bit is already set if AEWB is enabled */
|
||||
if (af->isp->isp_aewb.state != ISPSTAT_ENABLED)
|
||||
isp_reg_set(af->isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL,
|
||||
ISPCTRL_H3A_CLK_EN);
|
||||
} else {
|
||||
isp_reg_clr(af->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR,
|
||||
ISPH3A_PCR_AF_EN);
|
||||
/* This bit can't be cleared if AEWB is enabled */
|
||||
if (af->isp->isp_aewb.state != ISPSTAT_ENABLED)
|
||||
isp_reg_clr(af->isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL,
|
||||
ISPCTRL_H3A_CLK_EN);
|
||||
}
|
||||
}
|
||||
|
||||
static int h3a_af_busy(struct ispstat *af)
|
||||
{
|
||||
return isp_reg_readl(af->isp, OMAP3_ISP_IOMEM_H3A, ISPH3A_PCR)
|
||||
& ISPH3A_PCR_BUSYAF;
|
||||
}
|
||||
|
||||
static u32 h3a_af_get_buf_size(struct omap3isp_h3a_af_config *conf)
|
||||
{
|
||||
return conf->paxel.h_cnt * conf->paxel.v_cnt * OMAP3ISP_AF_PAXEL_SIZE;
|
||||
}
|
||||
|
||||
/* Function to check paxel parameters */
|
||||
static int h3a_af_validate_params(struct ispstat *af, void *new_conf)
|
||||
{
|
||||
struct omap3isp_h3a_af_config *user_cfg = new_conf;
|
||||
struct omap3isp_h3a_af_paxel *paxel_cfg = &user_cfg->paxel;
|
||||
struct omap3isp_h3a_af_iir *iir_cfg = &user_cfg->iir;
|
||||
int index;
|
||||
u32 buf_size;
|
||||
|
||||
/* Check horizontal Count */
|
||||
if (IS_OUT_OF_BOUNDS(paxel_cfg->h_cnt,
|
||||
OMAP3ISP_AF_PAXEL_HORIZONTAL_COUNT_MIN,
|
||||
OMAP3ISP_AF_PAXEL_HORIZONTAL_COUNT_MAX))
|
||||
return -EINVAL;
|
||||
|
||||
/* Check Vertical Count */
|
||||
if (IS_OUT_OF_BOUNDS(paxel_cfg->v_cnt,
|
||||
OMAP3ISP_AF_PAXEL_VERTICAL_COUNT_MIN,
|
||||
OMAP3ISP_AF_PAXEL_VERTICAL_COUNT_MAX))
|
||||
return -EINVAL;
|
||||
|
||||
if (IS_OUT_OF_BOUNDS(paxel_cfg->height, OMAP3ISP_AF_PAXEL_HEIGHT_MIN,
|
||||
OMAP3ISP_AF_PAXEL_HEIGHT_MAX) ||
|
||||
paxel_cfg->height % 2)
|
||||
return -EINVAL;
|
||||
|
||||
/* Check width */
|
||||
if (IS_OUT_OF_BOUNDS(paxel_cfg->width, OMAP3ISP_AF_PAXEL_WIDTH_MIN,
|
||||
OMAP3ISP_AF_PAXEL_WIDTH_MAX) ||
|
||||
paxel_cfg->width % 2)
|
||||
return -EINVAL;
|
||||
|
||||
/* Check Line Increment */
|
||||
if (IS_OUT_OF_BOUNDS(paxel_cfg->line_inc,
|
||||
OMAP3ISP_AF_PAXEL_INCREMENT_MIN,
|
||||
OMAP3ISP_AF_PAXEL_INCREMENT_MAX) ||
|
||||
paxel_cfg->line_inc % 2)
|
||||
return -EINVAL;
|
||||
|
||||
/* Check Horizontal Start */
|
||||
if ((paxel_cfg->h_start < iir_cfg->h_start) ||
|
||||
IS_OUT_OF_BOUNDS(paxel_cfg->h_start,
|
||||
OMAP3ISP_AF_PAXEL_HZSTART_MIN,
|
||||
OMAP3ISP_AF_PAXEL_HZSTART_MAX))
|
||||
return -EINVAL;
|
||||
|
||||
/* Check IIR */
|
||||
for (index = 0; index < OMAP3ISP_AF_NUM_COEF; index++) {
|
||||
if ((iir_cfg->coeff_set0[index]) > OMAP3ISP_AF_COEF_MAX)
|
||||
return -EINVAL;
|
||||
|
||||
if ((iir_cfg->coeff_set1[index]) > OMAP3ISP_AF_COEF_MAX)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (IS_OUT_OF_BOUNDS(iir_cfg->h_start, OMAP3ISP_AF_IIRSH_MIN,
|
||||
OMAP3ISP_AF_IIRSH_MAX))
|
||||
return -EINVAL;
|
||||
|
||||
/* Hack: If paxel size is 12, the 10th AF window may be corrupted */
|
||||
if ((paxel_cfg->h_cnt * paxel_cfg->v_cnt > 9) &&
|
||||
(paxel_cfg->width * paxel_cfg->height == 12))
|
||||
return -EINVAL;
|
||||
|
||||
buf_size = h3a_af_get_buf_size(user_cfg);
|
||||
if (buf_size > user_cfg->buf_size)
|
||||
/* User buf_size request wasn't enough */
|
||||
user_cfg->buf_size = buf_size;
|
||||
else if (user_cfg->buf_size > OMAP3ISP_AF_MAX_BUF_SIZE)
|
||||
user_cfg->buf_size = OMAP3ISP_AF_MAX_BUF_SIZE;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Update local parameters */
|
||||
static void h3a_af_set_params(struct ispstat *af, void *new_conf)
|
||||
{
|
||||
struct omap3isp_h3a_af_config *user_cfg = new_conf;
|
||||
struct omap3isp_h3a_af_config *cur_cfg = af->priv;
|
||||
int update = 0;
|
||||
int index;
|
||||
|
||||
/* alaw */
|
||||
if (cur_cfg->alaw_enable != user_cfg->alaw_enable) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* hmf */
|
||||
if (cur_cfg->hmf.enable != user_cfg->hmf.enable) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
if (cur_cfg->hmf.threshold != user_cfg->hmf.threshold) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* rgbpos */
|
||||
if (cur_cfg->rgb_pos != user_cfg->rgb_pos) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* iir */
|
||||
if (cur_cfg->iir.h_start != user_cfg->iir.h_start) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
for (index = 0; index < OMAP3ISP_AF_NUM_COEF; index++) {
|
||||
if (cur_cfg->iir.coeff_set0[index] !=
|
||||
user_cfg->iir.coeff_set0[index]) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
if (cur_cfg->iir.coeff_set1[index] !=
|
||||
user_cfg->iir.coeff_set1[index]) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
/* paxel */
|
||||
if ((cur_cfg->paxel.width != user_cfg->paxel.width) ||
|
||||
(cur_cfg->paxel.height != user_cfg->paxel.height) ||
|
||||
(cur_cfg->paxel.h_start != user_cfg->paxel.h_start) ||
|
||||
(cur_cfg->paxel.v_start != user_cfg->paxel.v_start) ||
|
||||
(cur_cfg->paxel.h_cnt != user_cfg->paxel.h_cnt) ||
|
||||
(cur_cfg->paxel.v_cnt != user_cfg->paxel.v_cnt) ||
|
||||
(cur_cfg->paxel.line_inc != user_cfg->paxel.line_inc)) {
|
||||
update = 1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* af_mode */
|
||||
if (cur_cfg->fvmode != user_cfg->fvmode)
|
||||
update = 1;
|
||||
|
||||
out:
|
||||
if (update || !af->configured) {
|
||||
memcpy(cur_cfg, user_cfg, sizeof(*cur_cfg));
|
||||
af->inc_config++;
|
||||
af->update = 1;
|
||||
/*
|
||||
* User might be asked for a bigger buffer than necessary for
|
||||
* this configuration. In order to return the right amount of
|
||||
* data during buffer request, let's calculate the size here
|
||||
* instead of stick with user_cfg->buf_size.
|
||||
*/
|
||||
cur_cfg->buf_size = h3a_af_get_buf_size(cur_cfg);
|
||||
}
|
||||
}
|
||||
|
||||
static long h3a_af_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
|
||||
{
|
||||
struct ispstat *stat = v4l2_get_subdevdata(sd);
|
||||
|
||||
switch (cmd) {
|
||||
case VIDIOC_OMAP3ISP_AF_CFG:
|
||||
return omap3isp_stat_config(stat, arg);
|
||||
case VIDIOC_OMAP3ISP_STAT_REQ:
|
||||
return omap3isp_stat_request_statistics(stat, arg);
|
||||
case VIDIOC_OMAP3ISP_STAT_EN: {
|
||||
int *en = arg;
|
||||
return omap3isp_stat_enable(stat, !!*en);
|
||||
}
|
||||
}
|
||||
|
||||
return -ENOIOCTLCMD;
|
||||
|
||||
}
|
||||
|
||||
static const struct ispstat_ops h3a_af_ops = {
|
||||
.validate_params = h3a_af_validate_params,
|
||||
.set_params = h3a_af_set_params,
|
||||
.setup_regs = h3a_af_setup_regs,
|
||||
.enable = h3a_af_enable,
|
||||
.busy = h3a_af_busy,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_core_ops h3a_af_subdev_core_ops = {
|
||||
.ioctl = h3a_af_ioctl,
|
||||
.subscribe_event = omap3isp_stat_subscribe_event,
|
||||
.unsubscribe_event = omap3isp_stat_unsubscribe_event,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_video_ops h3a_af_subdev_video_ops = {
|
||||
.s_stream = omap3isp_stat_s_stream,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_ops h3a_af_subdev_ops = {
|
||||
.core = &h3a_af_subdev_core_ops,
|
||||
.video = &h3a_af_subdev_video_ops,
|
||||
};
|
||||
|
||||
/* Function to register the AF character device driver. */
|
||||
int omap3isp_h3a_af_init(struct isp_device *isp)
|
||||
{
|
||||
struct ispstat *af = &isp->isp_af;
|
||||
struct omap3isp_h3a_af_config *af_cfg;
|
||||
struct omap3isp_h3a_af_config *af_recover_cfg;
|
||||
int ret;
|
||||
|
||||
af_cfg = kzalloc(sizeof(*af_cfg), GFP_KERNEL);
|
||||
if (af_cfg == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
memset(af, 0, sizeof(*af));
|
||||
af->ops = &h3a_af_ops;
|
||||
af->priv = af_cfg;
|
||||
af->dma_ch = -1;
|
||||
af->event_type = V4L2_EVENT_OMAP3ISP_AF;
|
||||
af->isp = isp;
|
||||
|
||||
/* Set recover state configuration */
|
||||
af_recover_cfg = kzalloc(sizeof(*af_recover_cfg), GFP_KERNEL);
|
||||
if (!af_recover_cfg) {
|
||||
dev_err(af->isp->dev, "AF: cannot allocate memory for recover "
|
||||
"configuration.\n");
|
||||
ret = -ENOMEM;
|
||||
goto err_recover_alloc;
|
||||
}
|
||||
|
||||
af_recover_cfg->paxel.h_start = OMAP3ISP_AF_PAXEL_HZSTART_MIN;
|
||||
af_recover_cfg->paxel.width = OMAP3ISP_AF_PAXEL_WIDTH_MIN;
|
||||
af_recover_cfg->paxel.height = OMAP3ISP_AF_PAXEL_HEIGHT_MIN;
|
||||
af_recover_cfg->paxel.h_cnt = OMAP3ISP_AF_PAXEL_HORIZONTAL_COUNT_MIN;
|
||||
af_recover_cfg->paxel.v_cnt = OMAP3ISP_AF_PAXEL_VERTICAL_COUNT_MIN;
|
||||
af_recover_cfg->paxel.line_inc = OMAP3ISP_AF_PAXEL_INCREMENT_MIN;
|
||||
if (h3a_af_validate_params(af, af_recover_cfg)) {
|
||||
dev_err(af->isp->dev, "AF: recover configuration is "
|
||||
"invalid.\n");
|
||||
ret = -EINVAL;
|
||||
goto err_conf;
|
||||
}
|
||||
|
||||
af_recover_cfg->buf_size = h3a_af_get_buf_size(af_recover_cfg);
|
||||
af->recover_priv = af_recover_cfg;
|
||||
|
||||
ret = omap3isp_stat_init(af, "AF", &h3a_af_subdev_ops);
|
||||
if (ret)
|
||||
goto err_conf;
|
||||
|
||||
return 0;
|
||||
|
||||
err_conf:
|
||||
kfree(af_recover_cfg);
|
||||
err_recover_alloc:
|
||||
kfree(af_cfg);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
void omap3isp_h3a_af_cleanup(struct isp_device *isp)
|
||||
{
|
||||
kfree(isp->isp_af.priv);
|
||||
kfree(isp->isp_af.recover_priv);
|
||||
omap3isp_stat_free(&isp->isp_af);
|
||||
}
|
|
@ -0,0 +1,520 @@
|
|||
/*
|
||||
* isphist.c
|
||||
*
|
||||
* TI OMAP3 ISP - Histogram module
|
||||
*
|
||||
* Copyright (C) 2010 Nokia Corporation
|
||||
* Copyright (C) 2009 Texas Instruments, Inc.
|
||||
*
|
||||
* Contacts: David Cohen <dacohen@gmail.com>
|
||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||
* Sakari Ailus <sakari.ailus@iki.fi>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <linux/delay.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/uaccess.h>
|
||||
#include <linux/device.h>
|
||||
|
||||
#include "isp.h"
|
||||
#include "ispreg.h"
|
||||
#include "isphist.h"
|
||||
|
||||
#define HIST_CONFIG_DMA 1
|
||||
|
||||
#define HIST_USING_DMA(hist) ((hist)->dma_ch >= 0)
|
||||
|
||||
/*
|
||||
* hist_reset_mem - clear Histogram memory before start stats engine.
|
||||
*/
|
||||
static void hist_reset_mem(struct ispstat *hist)
|
||||
{
|
||||
struct isp_device *isp = hist->isp;
|
||||
struct omap3isp_hist_config *conf = hist->priv;
|
||||
unsigned int i;
|
||||
|
||||
isp_reg_writel(isp, 0, OMAP3_ISP_IOMEM_HIST, ISPHIST_ADDR);
|
||||
|
||||
/*
|
||||
* By setting it, the histogram internal buffer is being cleared at the
|
||||
* same time it's being read. This bit must be cleared afterwards.
|
||||
*/
|
||||
isp_reg_set(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_CNT, ISPHIST_CNT_CLEAR);
|
||||
|
||||
/*
|
||||
* We'll clear 4 words at each iteration for optimization. It avoids
|
||||
* 3/4 of the jumps. We also know HIST_MEM_SIZE is divisible by 4.
|
||||
*/
|
||||
for (i = OMAP3ISP_HIST_MEM_SIZE / 4; i > 0; i--) {
|
||||
isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
}
|
||||
isp_reg_clr(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_CNT, ISPHIST_CNT_CLEAR);
|
||||
|
||||
hist->wait_acc_frames = conf->num_acc_frames;
|
||||
}
|
||||
|
||||
static void hist_dma_config(struct ispstat *hist)
|
||||
{
|
||||
hist->dma_config.data_type = OMAP_DMA_DATA_TYPE_S32;
|
||||
hist->dma_config.sync_mode = OMAP_DMA_SYNC_ELEMENT;
|
||||
hist->dma_config.frame_count = 1;
|
||||
hist->dma_config.src_amode = OMAP_DMA_AMODE_CONSTANT;
|
||||
hist->dma_config.src_start = OMAP3ISP_HIST_REG_BASE + ISPHIST_DATA;
|
||||
hist->dma_config.dst_amode = OMAP_DMA_AMODE_POST_INC;
|
||||
hist->dma_config.src_or_dst_synch = OMAP_DMA_SRC_SYNC;
|
||||
}
|
||||
|
||||
/*
|
||||
* hist_setup_regs - Helper function to update Histogram registers.
|
||||
*/
|
||||
static void hist_setup_regs(struct ispstat *hist, void *priv)
|
||||
{
|
||||
struct isp_device *isp = hist->isp;
|
||||
struct omap3isp_hist_config *conf = priv;
|
||||
int c;
|
||||
u32 cnt;
|
||||
u32 wb_gain;
|
||||
u32 reg_hor[OMAP3ISP_HIST_MAX_REGIONS];
|
||||
u32 reg_ver[OMAP3ISP_HIST_MAX_REGIONS];
|
||||
|
||||
if (!hist->update || hist->state == ISPSTAT_DISABLED ||
|
||||
hist->state == ISPSTAT_DISABLING)
|
||||
return;
|
||||
|
||||
cnt = conf->cfa << ISPHIST_CNT_CFA_SHIFT;
|
||||
|
||||
wb_gain = conf->wg[0] << ISPHIST_WB_GAIN_WG00_SHIFT;
|
||||
wb_gain |= conf->wg[1] << ISPHIST_WB_GAIN_WG01_SHIFT;
|
||||
wb_gain |= conf->wg[2] << ISPHIST_WB_GAIN_WG02_SHIFT;
|
||||
if (conf->cfa == OMAP3ISP_HIST_CFA_BAYER)
|
||||
wb_gain |= conf->wg[3] << ISPHIST_WB_GAIN_WG03_SHIFT;
|
||||
|
||||
/* Regions size and position */
|
||||
for (c = 0; c < OMAP3ISP_HIST_MAX_REGIONS; c++) {
|
||||
if (c < conf->num_regions) {
|
||||
reg_hor[c] = conf->region[c].h_start <<
|
||||
ISPHIST_REG_START_SHIFT;
|
||||
reg_hor[c] = conf->region[c].h_end <<
|
||||
ISPHIST_REG_END_SHIFT;
|
||||
reg_ver[c] = conf->region[c].v_start <<
|
||||
ISPHIST_REG_START_SHIFT;
|
||||
reg_ver[c] = conf->region[c].v_end <<
|
||||
ISPHIST_REG_END_SHIFT;
|
||||
} else {
|
||||
reg_hor[c] = 0;
|
||||
reg_ver[c] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
cnt |= conf->hist_bins << ISPHIST_CNT_BINS_SHIFT;
|
||||
switch (conf->hist_bins) {
|
||||
case OMAP3ISP_HIST_BINS_256:
|
||||
cnt |= (ISPHIST_IN_BIT_WIDTH_CCDC - 8) <<
|
||||
ISPHIST_CNT_SHIFT_SHIFT;
|
||||
break;
|
||||
case OMAP3ISP_HIST_BINS_128:
|
||||
cnt |= (ISPHIST_IN_BIT_WIDTH_CCDC - 7) <<
|
||||
ISPHIST_CNT_SHIFT_SHIFT;
|
||||
break;
|
||||
case OMAP3ISP_HIST_BINS_64:
|
||||
cnt |= (ISPHIST_IN_BIT_WIDTH_CCDC - 6) <<
|
||||
ISPHIST_CNT_SHIFT_SHIFT;
|
||||
break;
|
||||
default: /* OMAP3ISP_HIST_BINS_32 */
|
||||
cnt |= (ISPHIST_IN_BIT_WIDTH_CCDC - 5) <<
|
||||
ISPHIST_CNT_SHIFT_SHIFT;
|
||||
break;
|
||||
}
|
||||
|
||||
hist_reset_mem(hist);
|
||||
|
||||
isp_reg_writel(isp, cnt, OMAP3_ISP_IOMEM_HIST, ISPHIST_CNT);
|
||||
isp_reg_writel(isp, wb_gain, OMAP3_ISP_IOMEM_HIST, ISPHIST_WB_GAIN);
|
||||
isp_reg_writel(isp, reg_hor[0], OMAP3_ISP_IOMEM_HIST, ISPHIST_R0_HORZ);
|
||||
isp_reg_writel(isp, reg_ver[0], OMAP3_ISP_IOMEM_HIST, ISPHIST_R0_VERT);
|
||||
isp_reg_writel(isp, reg_hor[1], OMAP3_ISP_IOMEM_HIST, ISPHIST_R1_HORZ);
|
||||
isp_reg_writel(isp, reg_ver[1], OMAP3_ISP_IOMEM_HIST, ISPHIST_R1_VERT);
|
||||
isp_reg_writel(isp, reg_hor[2], OMAP3_ISP_IOMEM_HIST, ISPHIST_R2_HORZ);
|
||||
isp_reg_writel(isp, reg_ver[2], OMAP3_ISP_IOMEM_HIST, ISPHIST_R2_VERT);
|
||||
isp_reg_writel(isp, reg_hor[3], OMAP3_ISP_IOMEM_HIST, ISPHIST_R3_HORZ);
|
||||
isp_reg_writel(isp, reg_ver[3], OMAP3_ISP_IOMEM_HIST, ISPHIST_R3_VERT);
|
||||
|
||||
hist->update = 0;
|
||||
hist->config_counter += hist->inc_config;
|
||||
hist->inc_config = 0;
|
||||
hist->buf_size = conf->buf_size;
|
||||
}
|
||||
|
||||
static void hist_enable(struct ispstat *hist, int enable)
|
||||
{
|
||||
if (enable) {
|
||||
isp_reg_set(hist->isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_PCR,
|
||||
ISPHIST_PCR_ENABLE);
|
||||
isp_reg_set(hist->isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL,
|
||||
ISPCTRL_HIST_CLK_EN);
|
||||
} else {
|
||||
isp_reg_clr(hist->isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_PCR,
|
||||
ISPHIST_PCR_ENABLE);
|
||||
isp_reg_clr(hist->isp, OMAP3_ISP_IOMEM_MAIN, ISP_CTRL,
|
||||
ISPCTRL_HIST_CLK_EN);
|
||||
}
|
||||
}
|
||||
|
||||
static int hist_busy(struct ispstat *hist)
|
||||
{
|
||||
return isp_reg_readl(hist->isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_PCR)
|
||||
& ISPHIST_PCR_BUSY;
|
||||
}
|
||||
|
||||
static void hist_dma_cb(int lch, u16 ch_status, void *data)
|
||||
{
|
||||
struct ispstat *hist = data;
|
||||
|
||||
if (ch_status & ~OMAP_DMA_BLOCK_IRQ) {
|
||||
dev_dbg(hist->isp->dev, "hist: DMA error. status = 0x%04x\n",
|
||||
ch_status);
|
||||
omap_stop_dma(lch);
|
||||
hist_reset_mem(hist);
|
||||
atomic_set(&hist->buf_err, 1);
|
||||
}
|
||||
isp_reg_clr(hist->isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_CNT,
|
||||
ISPHIST_CNT_CLEAR);
|
||||
|
||||
omap3isp_stat_dma_isr(hist);
|
||||
if (hist->state != ISPSTAT_DISABLED)
|
||||
omap3isp_hist_dma_done(hist->isp);
|
||||
}
|
||||
|
||||
static int hist_buf_dma(struct ispstat *hist)
|
||||
{
|
||||
dma_addr_t dma_addr = hist->active_buf->dma_addr;
|
||||
|
||||
if (unlikely(!dma_addr)) {
|
||||
dev_dbg(hist->isp->dev, "hist: invalid DMA buffer address\n");
|
||||
hist_reset_mem(hist);
|
||||
return STAT_NO_BUF;
|
||||
}
|
||||
|
||||
isp_reg_writel(hist->isp, 0, OMAP3_ISP_IOMEM_HIST, ISPHIST_ADDR);
|
||||
isp_reg_set(hist->isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_CNT,
|
||||
ISPHIST_CNT_CLEAR);
|
||||
omap3isp_flush(hist->isp);
|
||||
hist->dma_config.dst_start = dma_addr;
|
||||
hist->dma_config.elem_count = hist->buf_size / sizeof(u32);
|
||||
omap_set_dma_params(hist->dma_ch, &hist->dma_config);
|
||||
|
||||
omap_start_dma(hist->dma_ch);
|
||||
|
||||
return STAT_BUF_WAITING_DMA;
|
||||
}
|
||||
|
||||
static int hist_buf_pio(struct ispstat *hist)
|
||||
{
|
||||
struct isp_device *isp = hist->isp;
|
||||
u32 *buf = hist->active_buf->virt_addr;
|
||||
unsigned int i;
|
||||
|
||||
if (!buf) {
|
||||
dev_dbg(isp->dev, "hist: invalid PIO buffer address\n");
|
||||
hist_reset_mem(hist);
|
||||
return STAT_NO_BUF;
|
||||
}
|
||||
|
||||
isp_reg_writel(isp, 0, OMAP3_ISP_IOMEM_HIST, ISPHIST_ADDR);
|
||||
|
||||
/*
|
||||
* By setting it, the histogram internal buffer is being cleared at the
|
||||
* same time it's being read. This bit must be cleared just after all
|
||||
* data is acquired.
|
||||
*/
|
||||
isp_reg_set(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_CNT, ISPHIST_CNT_CLEAR);
|
||||
|
||||
/*
|
||||
* We'll read 4 times a 4-bytes-word at each iteration for
|
||||
* optimization. It avoids 3/4 of the jumps. We also know buf_size is
|
||||
* divisible by 16.
|
||||
*/
|
||||
for (i = hist->buf_size / 16; i > 0; i--) {
|
||||
*buf++ = isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
*buf++ = isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
*buf++ = isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
*buf++ = isp_reg_readl(isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_DATA);
|
||||
}
|
||||
isp_reg_clr(hist->isp, OMAP3_ISP_IOMEM_HIST, ISPHIST_CNT,
|
||||
ISPHIST_CNT_CLEAR);
|
||||
|
||||
return STAT_BUF_DONE;
|
||||
}
|
||||
|
||||
/*
|
||||
* hist_buf_process - Callback from ISP driver for HIST interrupt.
|
||||
*/
|
||||
static int hist_buf_process(struct ispstat *hist)
|
||||
{
|
||||
struct omap3isp_hist_config *user_cfg = hist->priv;
|
||||
int ret;
|
||||
|
||||
if (atomic_read(&hist->buf_err) || hist->state != ISPSTAT_ENABLED) {
|
||||
hist_reset_mem(hist);
|
||||
return STAT_NO_BUF;
|
||||
}
|
||||
|
||||
if (--(hist->wait_acc_frames))
|
||||
return STAT_NO_BUF;
|
||||
|
||||
if (HIST_USING_DMA(hist))
|
||||
ret = hist_buf_dma(hist);
|
||||
else
|
||||
ret = hist_buf_pio(hist);
|
||||
|
||||
hist->wait_acc_frames = user_cfg->num_acc_frames;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static u32 hist_get_buf_size(struct omap3isp_hist_config *conf)
|
||||
{
|
||||
return OMAP3ISP_HIST_MEM_SIZE_BINS(conf->hist_bins) * conf->num_regions;
|
||||
}
|
||||
|
||||
/*
|
||||
* hist_validate_params - Helper function to check user given params.
|
||||
* @user_cfg: Pointer to user configuration structure.
|
||||
*
|
||||
* Returns 0 on success configuration.
|
||||
*/
|
||||
static int hist_validate_params(struct ispstat *hist, void *new_conf)
|
||||
{
|
||||
struct omap3isp_hist_config *user_cfg = new_conf;
|
||||
int c;
|
||||
u32 buf_size;
|
||||
|
||||
if (user_cfg->cfa > OMAP3ISP_HIST_CFA_FOVEONX3)
|
||||
return -EINVAL;
|
||||
|
||||
/* Regions size and position */
|
||||
|
||||
if ((user_cfg->num_regions < OMAP3ISP_HIST_MIN_REGIONS) ||
|
||||
(user_cfg->num_regions > OMAP3ISP_HIST_MAX_REGIONS))
|
||||
return -EINVAL;
|
||||
|
||||
/* Regions */
|
||||
for (c = 0; c < user_cfg->num_regions; c++) {
|
||||
if (user_cfg->region[c].h_start & ~ISPHIST_REG_START_END_MASK)
|
||||
return -EINVAL;
|
||||
if (user_cfg->region[c].h_end & ~ISPHIST_REG_START_END_MASK)
|
||||
return -EINVAL;
|
||||
if (user_cfg->region[c].v_start & ~ISPHIST_REG_START_END_MASK)
|
||||
return -EINVAL;
|
||||
if (user_cfg->region[c].v_end & ~ISPHIST_REG_START_END_MASK)
|
||||
return -EINVAL;
|
||||
if (user_cfg->region[c].h_start > user_cfg->region[c].h_end)
|
||||
return -EINVAL;
|
||||
if (user_cfg->region[c].v_start > user_cfg->region[c].v_end)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
switch (user_cfg->num_regions) {
|
||||
case 1:
|
||||
if (user_cfg->hist_bins > OMAP3ISP_HIST_BINS_256)
|
||||
return -EINVAL;
|
||||
break;
|
||||
case 2:
|
||||
if (user_cfg->hist_bins > OMAP3ISP_HIST_BINS_128)
|
||||
return -EINVAL;
|
||||
break;
|
||||
default: /* 3 or 4 */
|
||||
if (user_cfg->hist_bins > OMAP3ISP_HIST_BINS_64)
|
||||
return -EINVAL;
|
||||
break;
|
||||
}
|
||||
|
||||
buf_size = hist_get_buf_size(user_cfg);
|
||||
if (buf_size > user_cfg->buf_size)
|
||||
/* User's buf_size request wasn't enoght */
|
||||
user_cfg->buf_size = buf_size;
|
||||
else if (user_cfg->buf_size > OMAP3ISP_HIST_MAX_BUF_SIZE)
|
||||
user_cfg->buf_size = OMAP3ISP_HIST_MAX_BUF_SIZE;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int hist_comp_params(struct ispstat *hist,
|
||||
struct omap3isp_hist_config *user_cfg)
|
||||
{
|
||||
struct omap3isp_hist_config *cur_cfg = hist->priv;
|
||||
int c;
|
||||
|
||||
if (cur_cfg->cfa != user_cfg->cfa)
|
||||
return 1;
|
||||
|
||||
if (cur_cfg->num_acc_frames != user_cfg->num_acc_frames)
|
||||
return 1;
|
||||
|
||||
if (cur_cfg->hist_bins != user_cfg->hist_bins)
|
||||
return 1;
|
||||
|
||||
for (c = 0; c < OMAP3ISP_HIST_MAX_WG; c++) {
|
||||
if (c == 3 && user_cfg->cfa == OMAP3ISP_HIST_CFA_FOVEONX3)
|
||||
break;
|
||||
else if (cur_cfg->wg[c] != user_cfg->wg[c])
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (cur_cfg->num_regions != user_cfg->num_regions)
|
||||
return 1;
|
||||
|
||||
/* Regions */
|
||||
for (c = 0; c < user_cfg->num_regions; c++) {
|
||||
if (cur_cfg->region[c].h_start != user_cfg->region[c].h_start)
|
||||
return 1;
|
||||
if (cur_cfg->region[c].h_end != user_cfg->region[c].h_end)
|
||||
return 1;
|
||||
if (cur_cfg->region[c].v_start != user_cfg->region[c].v_start)
|
||||
return 1;
|
||||
if (cur_cfg->region[c].v_end != user_cfg->region[c].v_end)
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* hist_update_params - Helper function to check and store user given params.
|
||||
* @new_conf: Pointer to user configuration structure.
|
||||
*/
|
||||
static void hist_set_params(struct ispstat *hist, void *new_conf)
|
||||
{
|
||||
struct omap3isp_hist_config *user_cfg = new_conf;
|
||||
struct omap3isp_hist_config *cur_cfg = hist->priv;
|
||||
|
||||
if (!hist->configured || hist_comp_params(hist, user_cfg)) {
|
||||
memcpy(cur_cfg, user_cfg, sizeof(*user_cfg));
|
||||
if (user_cfg->num_acc_frames == 0)
|
||||
user_cfg->num_acc_frames = 1;
|
||||
hist->inc_config++;
|
||||
hist->update = 1;
|
||||
/*
|
||||
* User might be asked for a bigger buffer than necessary for
|
||||
* this configuration. In order to return the right amount of
|
||||
* data during buffer request, let's calculate the size here
|
||||
* instead of stick with user_cfg->buf_size.
|
||||
*/
|
||||
cur_cfg->buf_size = hist_get_buf_size(cur_cfg);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
static long hist_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg)
|
||||
{
|
||||
struct ispstat *stat = v4l2_get_subdevdata(sd);
|
||||
|
||||
switch (cmd) {
|
||||
case VIDIOC_OMAP3ISP_HIST_CFG:
|
||||
return omap3isp_stat_config(stat, arg);
|
||||
case VIDIOC_OMAP3ISP_STAT_REQ:
|
||||
return omap3isp_stat_request_statistics(stat, arg);
|
||||
case VIDIOC_OMAP3ISP_STAT_EN: {
|
||||
int *en = arg;
|
||||
return omap3isp_stat_enable(stat, !!*en);
|
||||
}
|
||||
}
|
||||
|
||||
return -ENOIOCTLCMD;
|
||||
|
||||
}
|
||||
|
||||
static const struct ispstat_ops hist_ops = {
|
||||
.validate_params = hist_validate_params,
|
||||
.set_params = hist_set_params,
|
||||
.setup_regs = hist_setup_regs,
|
||||
.enable = hist_enable,
|
||||
.busy = hist_busy,
|
||||
.buf_process = hist_buf_process,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_core_ops hist_subdev_core_ops = {
|
||||
.ioctl = hist_ioctl,
|
||||
.subscribe_event = omap3isp_stat_subscribe_event,
|
||||
.unsubscribe_event = omap3isp_stat_unsubscribe_event,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_video_ops hist_subdev_video_ops = {
|
||||
.s_stream = omap3isp_stat_s_stream,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_ops hist_subdev_ops = {
|
||||
.core = &hist_subdev_core_ops,
|
||||
.video = &hist_subdev_video_ops,
|
||||
};
|
||||
|
||||
/*
|
||||
* omap3isp_hist_init - Module Initialization.
|
||||
*/
|
||||
int omap3isp_hist_init(struct isp_device *isp)
|
||||
{
|
||||
struct ispstat *hist = &isp->isp_hist;
|
||||
struct omap3isp_hist_config *hist_cfg;
|
||||
int ret = -1;
|
||||
|
||||
hist_cfg = kzalloc(sizeof(*hist_cfg), GFP_KERNEL);
|
||||
if (hist_cfg == NULL)
|
||||
return -ENOMEM;
|
||||
|
||||
memset(hist, 0, sizeof(*hist));
|
||||
if (HIST_CONFIG_DMA)
|
||||
ret = omap_request_dma(OMAP24XX_DMA_NO_DEVICE, "DMA_ISP_HIST",
|
||||
hist_dma_cb, hist, &hist->dma_ch);
|
||||
if (ret) {
|
||||
if (HIST_CONFIG_DMA)
|
||||
dev_warn(isp->dev, "hist: DMA request channel failed. "
|
||||
"Using PIO only.\n");
|
||||
hist->dma_ch = -1;
|
||||
} else {
|
||||
dev_dbg(isp->dev, "hist: DMA channel = %d\n", hist->dma_ch);
|
||||
hist_dma_config(hist);
|
||||
omap_enable_dma_irq(hist->dma_ch, OMAP_DMA_BLOCK_IRQ);
|
||||
}
|
||||
|
||||
hist->ops = &hist_ops;
|
||||
hist->priv = hist_cfg;
|
||||
hist->event_type = V4L2_EVENT_OMAP3ISP_HIST;
|
||||
hist->isp = isp;
|
||||
|
||||
ret = omap3isp_stat_init(hist, "histogram", &hist_subdev_ops);
|
||||
if (ret) {
|
||||
kfree(hist_cfg);
|
||||
if (HIST_USING_DMA(hist))
|
||||
omap_free_dma(hist->dma_ch);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* omap3isp_hist_cleanup - Module cleanup.
|
||||
*/
|
||||
void omap3isp_hist_cleanup(struct isp_device *isp)
|
||||
{
|
||||
if (HIST_USING_DMA(&isp->isp_hist))
|
||||
omap_free_dma(isp->isp_hist.dma_ch);
|
||||
kfree(isp->isp_hist.priv);
|
||||
omap3isp_stat_free(&isp->isp_hist);
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* isphist.h
|
||||
*
|
||||
* TI OMAP3 ISP - Histogram module
|
||||
*
|
||||
* Copyright (C) 2010 Nokia Corporation
|
||||
* Copyright (C) 2009 Texas Instruments, Inc.
|
||||
*
|
||||
* Contacts: David Cohen <dacohen@gmail.com>
|
||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||
* Sakari Ailus <sakari.ailus@iki.fi>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef OMAP3_ISP_HIST_H
|
||||
#define OMAP3_ISP_HIST_H
|
||||
|
||||
#include <linux/omap3isp.h>
|
||||
|
||||
#define ISPHIST_IN_BIT_WIDTH_CCDC 10
|
||||
|
||||
struct isp_device;
|
||||
|
||||
int omap3isp_hist_init(struct isp_device *isp);
|
||||
void omap3isp_hist_cleanup(struct isp_device *isp);
|
||||
|
||||
#endif /* OMAP3_ISP_HIST */
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,169 @@
|
|||
/*
|
||||
* ispstat.h
|
||||
*
|
||||
* TI OMAP3 ISP - Statistics core
|
||||
*
|
||||
* Copyright (C) 2010 Nokia Corporation
|
||||
* Copyright (C) 2009 Texas Instruments, Inc
|
||||
*
|
||||
* Contacts: David Cohen <dacohen@gmail.com>
|
||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||
* Sakari Ailus <sakari.ailus@iki.fi>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
||||
* 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef OMAP3_ISP_STAT_H
|
||||
#define OMAP3_ISP_STAT_H
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <linux/omap3isp.h>
|
||||
#include <plat/dma.h>
|
||||
#include <media/v4l2-event.h>
|
||||
|
||||
#include "isp.h"
|
||||
#include "ispvideo.h"
|
||||
|
||||
#define STAT_MAX_BUFS 5
|
||||
#define STAT_NEVENTS 8
|
||||
|
||||
#define STAT_BUF_DONE 0 /* Buffer is ready */
|
||||
#define STAT_NO_BUF 1 /* An error has occurred */
|
||||
#define STAT_BUF_WAITING_DMA 2 /* Histogram only: DMA is running */
|
||||
|
||||
struct ispstat;
|
||||
|
||||
struct ispstat_buffer {
|
||||
unsigned long iommu_addr;
|
||||
struct iovm_struct *iovm;
|
||||
void *virt_addr;
|
||||
dma_addr_t dma_addr;
|
||||
struct timeval ts;
|
||||
u32 buf_size;
|
||||
u32 frame_number;
|
||||
u16 config_counter;
|
||||
u8 empty;
|
||||
};
|
||||
|
||||
struct ispstat_ops {
|
||||
/*
|
||||
* Validate new params configuration.
|
||||
* new_conf->buf_size value must be changed to the exact buffer size
|
||||
* necessary for the new configuration if it's smaller.
|
||||
*/
|
||||
int (*validate_params)(struct ispstat *stat, void *new_conf);
|
||||
|
||||
/*
|
||||
* Save new params configuration.
|
||||
* stat->priv->buf_size value must be set to the exact buffer size for
|
||||
* the new configuration.
|
||||
* stat->update is set to 1 if new configuration is different than
|
||||
* current one.
|
||||
*/
|
||||
void (*set_params)(struct ispstat *stat, void *new_conf);
|
||||
|
||||
/* Apply stored configuration. */
|
||||
void (*setup_regs)(struct ispstat *stat, void *priv);
|
||||
|
||||
/* Enable/Disable module. */
|
||||
void (*enable)(struct ispstat *stat, int enable);
|
||||
|
||||
/* Verify is module is busy. */
|
||||
int (*busy)(struct ispstat *stat);
|
||||
|
||||
/* Used for specific operations during generic buf process task. */
|
||||
int (*buf_process)(struct ispstat *stat);
|
||||
};
|
||||
|
||||
enum ispstat_state_t {
|
||||
ISPSTAT_DISABLED = 0,
|
||||
ISPSTAT_DISABLING,
|
||||
ISPSTAT_ENABLED,
|
||||
ISPSTAT_ENABLING,
|
||||
ISPSTAT_SUSPENDED,
|
||||
};
|
||||
|
||||
struct ispstat {
|
||||
struct v4l2_subdev subdev;
|
||||
struct media_pad pad; /* sink pad */
|
||||
|
||||
/* Control */
|
||||
unsigned configured:1;
|
||||
unsigned update:1;
|
||||
unsigned buf_processing:1;
|
||||
unsigned sbl_ovl_recover:1;
|
||||
u8 inc_config;
|
||||
atomic_t buf_err;
|
||||
enum ispstat_state_t state; /* enabling/disabling state */
|
||||
struct omap_dma_channel_params dma_config;
|
||||
struct isp_device *isp;
|
||||
void *priv; /* pointer to priv config struct */
|
||||
void *recover_priv; /* pointer to recover priv configuration */
|
||||
struct mutex ioctl_lock; /* serialize private ioctl */
|
||||
|
||||
const struct ispstat_ops *ops;
|
||||
|
||||
/* Buffer */
|
||||
u8 wait_acc_frames;
|
||||
u16 config_counter;
|
||||
u32 frame_number;
|
||||
u32 buf_size;
|
||||
u32 buf_alloc_size;
|
||||
int dma_ch;
|
||||
unsigned long event_type;
|
||||
struct ispstat_buffer *buf;
|
||||
struct ispstat_buffer *active_buf;
|
||||
struct ispstat_buffer *locked_buf;
|
||||
};
|
||||
|
||||
struct ispstat_generic_config {
|
||||
/*
|
||||
* Fields must be in the same order as in:
|
||||
* - isph3a_aewb_config
|
||||
* - isph3a_af_config
|
||||
* - isphist_config
|
||||
*/
|
||||
u32 buf_size;
|
||||
u16 config_counter;
|
||||
};
|
||||
|
||||
int omap3isp_stat_config(struct ispstat *stat, void *new_conf);
|
||||
int omap3isp_stat_request_statistics(struct ispstat *stat,
|
||||
struct omap3isp_stat_data *data);
|
||||
int omap3isp_stat_init(struct ispstat *stat, const char *name,
|
||||
const struct v4l2_subdev_ops *sd_ops);
|
||||
void omap3isp_stat_free(struct ispstat *stat);
|
||||
int omap3isp_stat_subscribe_event(struct v4l2_subdev *subdev,
|
||||
struct v4l2_fh *fh,
|
||||
struct v4l2_event_subscription *sub);
|
||||
int omap3isp_stat_unsubscribe_event(struct v4l2_subdev *subdev,
|
||||
struct v4l2_fh *fh,
|
||||
struct v4l2_event_subscription *sub);
|
||||
int omap3isp_stat_s_stream(struct v4l2_subdev *subdev, int enable);
|
||||
|
||||
int omap3isp_stat_busy(struct ispstat *stat);
|
||||
int omap3isp_stat_pcr_busy(struct ispstat *stat);
|
||||
void omap3isp_stat_suspend(struct ispstat *stat);
|
||||
void omap3isp_stat_resume(struct ispstat *stat);
|
||||
int omap3isp_stat_enable(struct ispstat *stat, u8 enable);
|
||||
void omap3isp_stat_sbl_overflow(struct ispstat *stat);
|
||||
void omap3isp_stat_isr(struct ispstat *stat);
|
||||
void omap3isp_stat_isr_frame_sync(struct ispstat *stat);
|
||||
void omap3isp_stat_dma_isr(struct ispstat *stat);
|
||||
int omap3isp_stat_register_entities(struct ispstat *stat,
|
||||
struct v4l2_device *vdev);
|
||||
void omap3isp_stat_unregister_entities(struct ispstat *stat);
|
||||
|
||||
#endif /* OMAP3_ISP_STAT_H */
|
Загрузка…
Ссылка в новой задаче