263 lines
8.7 KiB
C
263 lines
8.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/********************************************************************************
|
|
*
|
|
* Copyright (C) 2017 NEXTCHIP Inc. All rights reserved.
|
|
* Module : motion.c
|
|
* Description :
|
|
* Author :
|
|
* Date :
|
|
* Version : Version 1.0
|
|
*
|
|
********************************************************************************
|
|
* History :
|
|
*
|
|
*
|
|
********************************************************************************/
|
|
#include <linux/string.h>
|
|
#include <linux/delay.h>
|
|
#include "jaguar1_common.h"
|
|
#include "jaguar1_motion.h"
|
|
|
|
/**************************************************************************************
|
|
* @desc
|
|
* JAGUAR1's
|
|
*
|
|
* @param_in (motion_mode *)p_param->channel FW Update channel
|
|
*
|
|
* @return void None
|
|
*
|
|
* ioctl : IOC_VDEC_MOTION_SET
|
|
***************************************************************************************/
|
|
|
|
void motion_detection_get(motion_mode *motion_set)
|
|
{
|
|
//BANK2_MOTION
|
|
unsigned char ReadVal = 0;
|
|
unsigned char ch_mask = 1;
|
|
unsigned char ch = motion_set->ch;
|
|
unsigned char ret = 0;
|
|
|
|
ch_mask = ch_mask<<ch;
|
|
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0xFF, 0x00);
|
|
ReadVal = gpio_i2c_read(jaguar1_i2c_addr[motion_set->devnum], 0xA1);
|
|
|
|
ret = ReadVal&ch_mask;
|
|
motion_set->set_val = ret;
|
|
|
|
// printk("motion_detection_get:: %x\n", motion_set->set_val);
|
|
|
|
}
|
|
|
|
void motion_onoff_set(motion_mode *motion_set)
|
|
{
|
|
//BANK2_MOTION
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0xFF, 0x04);
|
|
|
|
if(motion_set->fmtdef == TVI_3M_18P || motion_set->fmtdef == TVI_5M_12_5P || motion_set->fmtdef == TVI_5M_12_5P/*TVI_5M_20P*/)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x00 + (0x07 * motion_set->ch), 0x0C);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x02 + (0x07 * motion_set->ch), 0x23);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x28 + (0x06 * motion_set->ch), 0x11);
|
|
|
|
if(motion_set->fmtdef == TVI_3M_18P)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x29 + (0x06 * motion_set->ch), 0x78);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2A + (0x06 * motion_set->ch), 0x40);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2C + (0x06 * motion_set->ch), 0x72);
|
|
}
|
|
else if(motion_set->fmtdef == TVI_5M_12_5P)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x29 + (0x06 * motion_set->ch), 0xA2);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2A + (0x06 * motion_set->ch), 0x51);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2C + (0x06 * motion_set->ch), 0x96);
|
|
}
|
|
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2B + (0x06 * motion_set->ch), 0x6);
|
|
|
|
printk("[DRV_Motion_OnOff] ch(%d) fmtdef(%d)\n", motion_set->ch, motion_set->fmtdef);
|
|
}
|
|
else
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x28 + (0x06 * motion_set->ch), 0x00);
|
|
}
|
|
|
|
if(motion_set->set_val<0 || motion_set->set_val>1)
|
|
{
|
|
printk("[DRV_Motion_OnOff]Error!! ch(%d) Setting Value Over:%x!! Only 0 or 1\n", motion_set->ch, motion_set->set_val);
|
|
return;
|
|
}
|
|
|
|
switch(motion_set->set_val)
|
|
{
|
|
case FUNC_OFF : gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], (0x00 + (0x07 * motion_set->ch)), 0x0D);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x28 + (0x06 * motion_set->ch), 0x00);
|
|
break;
|
|
case FUNC_ON : gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], (0x00 + (0x07 * motion_set->ch)), 0x0C);
|
|
break;
|
|
}
|
|
|
|
|
|
}
|
|
|
|
void motion_pixel_all_onoff_set(motion_mode *motion_set)
|
|
{
|
|
int ii=0;
|
|
unsigned char addr = 0;
|
|
|
|
//BANK2_MOTION
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0xFF, 0x04);
|
|
|
|
if(motion_set->fmtdef == TVI_3M_18P || motion_set->fmtdef == TVI_5M_12_5P || motion_set->fmtdef == TVI_5M_12_5P/*TVI_5M_20P*/)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x00 + (0x07 * motion_set->ch), 0x0C);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x02 + (0x07 * motion_set->ch), 0x23);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x28 + (0x06 * motion_set->ch), 0x11);
|
|
|
|
if(motion_set->fmtdef == TVI_3M_18P)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x29 + (0x06 * motion_set->ch), 0x78);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2A + (0x06 * motion_set->ch), 0x40);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2C + (0x06 * motion_set->ch), 0x72);
|
|
}
|
|
else if(motion_set->fmtdef == TVI_5M_12_5P)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x29 + (0x06 * motion_set->ch), 0xA2);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2A + (0x06 * motion_set->ch), 0x51);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2C + (0x06 * motion_set->ch), 0x96);
|
|
}
|
|
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2B + (0x06 * motion_set->ch), 0x6);
|
|
|
|
printk("[DRV_Motion_OnOff] ch(%d) fmtdef(%d)\n", motion_set->ch, motion_set->fmtdef);
|
|
}
|
|
else
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x28 + (0x06 * motion_set->ch), 0x00);
|
|
}
|
|
|
|
for(ii=0; ii<24; ii++)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], (0x40 +(0x18 *motion_set->ch)) + ii, motion_set->set_val);
|
|
addr = (0x40 +(0x18 *motion_set->ch)) + ii;
|
|
}
|
|
}
|
|
|
|
void motion_pixel_onoff_set(motion_mode *motion_set)
|
|
{
|
|
unsigned char val = 0x80;
|
|
unsigned char ReadVal;
|
|
unsigned char on;
|
|
|
|
unsigned char ch = motion_set->ch;
|
|
unsigned char SetPix = motion_set->set_val/8;
|
|
unsigned char SetVal = motion_set->set_val%8;
|
|
|
|
val = val >> SetVal;
|
|
|
|
//BANK2_MOTION
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0xFF, 0x04);
|
|
|
|
if(motion_set->fmtdef == TVI_3M_18P || motion_set->fmtdef == TVI_5M_12_5P || motion_set->fmtdef == TVI_5M_12_5P/*TVI_5M_20P*/)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x00 + (0x07 * motion_set->ch), 0x0C);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x02 + (0x07 * motion_set->ch), 0x23);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x28 + (0x06 * motion_set->ch), 0x11);
|
|
|
|
if(motion_set->fmtdef == TVI_3M_18P)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x29 + (0x06 * motion_set->ch), 0x78);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2A + (0x06 * motion_set->ch), 0x40);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2C + (0x06 * motion_set->ch), 0x72);
|
|
}
|
|
else if(motion_set->fmtdef == TVI_5M_12_5P)
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x29 + (0x06 * motion_set->ch), 0xA2);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2A + (0x06 * motion_set->ch), 0x51);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2C + (0x06 * motion_set->ch), 0x96);
|
|
}
|
|
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x2B + (0x06 * motion_set->ch), 0x6);
|
|
|
|
printk("[DRV_Motion_OnOff] ch(%d) fmtdef(%d)\n", motion_set->ch, motion_set->fmtdef);
|
|
}
|
|
else
|
|
{
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0x28 + (0x06 * motion_set->ch), 0x00);
|
|
}
|
|
|
|
ReadVal = gpio_i2c_read(jaguar1_i2c_addr[motion_set->devnum], (0x40 +(0x18 *ch)) + SetPix);
|
|
on = val&ReadVal;
|
|
if(on)
|
|
{
|
|
val = ~val;
|
|
val = val&ReadVal;
|
|
}
|
|
else
|
|
{
|
|
val = val|ReadVal;
|
|
}
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], (0x40 +(0x18 *ch)) + SetPix, val);
|
|
}
|
|
|
|
void motion_pixel_onoff_get(motion_mode *motion_set)
|
|
{
|
|
unsigned char val = 0x80;
|
|
unsigned char ReadVal;
|
|
unsigned char on;
|
|
|
|
unsigned char Ch = motion_set->ch;
|
|
unsigned char SetPix = motion_set->set_val/8;
|
|
unsigned char SetVal = motion_set->set_val%8;
|
|
|
|
val = val >> SetVal;
|
|
|
|
//BANK2_MOTION
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0xFF, 0x04);
|
|
ReadVal = gpio_i2c_read(jaguar1_i2c_addr[motion_set->devnum], (0x40 +(0x18 *Ch)) + SetPix);
|
|
|
|
on = val&ReadVal;
|
|
|
|
if(on)
|
|
{
|
|
motion_set->set_val = 1;
|
|
}
|
|
else
|
|
{
|
|
motion_set->set_val = 0;
|
|
}
|
|
}
|
|
|
|
void motion_tsen_set(motion_mode *motion_set)
|
|
{
|
|
unsigned char ch = motion_set->ch;
|
|
unsigned char SetVal = motion_set->set_val;
|
|
|
|
//BANK2_MOTION
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0xFF, 0x04);
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], (0x01 +(0x07 * ch)), SetVal);
|
|
printk("[DRV_Motion]ch(%d), TSEN Val(%x)\n", ch, SetVal);
|
|
}
|
|
|
|
void motion_psen_set(motion_mode *motion_set)
|
|
{
|
|
unsigned char msb_mask = 0xf0;
|
|
unsigned char lsb_mask = 0x07;
|
|
unsigned char ch = motion_set->ch;
|
|
unsigned char SetVal = motion_set->set_val;
|
|
unsigned char ReadVal;
|
|
|
|
//BANK2_MOTION
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], 0xFF, 0x04);
|
|
ReadVal = gpio_i2c_read(jaguar1_i2c_addr[motion_set->devnum], (0x02 +(0x07 * ch)));
|
|
|
|
msb_mask = msb_mask&ReadVal;
|
|
SetVal = lsb_mask&SetVal;
|
|
|
|
SetVal = SetVal|msb_mask;
|
|
|
|
gpio_i2c_write(jaguar1_i2c_addr[motion_set->devnum], (0x02 +(0x07 * ch)), SetVal);
|
|
printk("[DRV_Motion]ch(%d), readVal(%x), SetVal(%x)\n", ch, ReadVal, SetVal);
|
|
}
|
|
|