f327ebbd00
- Add support for SN9C105 and SN9C120 - Add some more USB device identifiers - Add support for OV7660 - Implement audio ioctl's and VIDIOC_ENUM_FRAMESIZES - Add preliminary support for 0x0c45/0x6007 - Documentation updates - Generic improvements Signed-off-by: Luca Risolia <luca.risolia@studio.unibo.it> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
87 lines
3.5 KiB
C
87 lines
3.5 KiB
C
/***************************************************************************
|
|
* Global parameters for the V4L2 driver for SN9C1xx PC Camera Controllers *
|
|
* *
|
|
* Copyright (C) 2007 by Luca Risolia <luca.risolia@studio.unibo.it> *
|
|
* *
|
|
* 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. *
|
|
* *
|
|
* 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., 675 Mass Ave, Cambridge, MA 02139, USA. *
|
|
***************************************************************************/
|
|
|
|
#ifndef _SN9C102_CONFIG_H_
|
|
#define _SN9C102_CONFIG_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/jiffies.h>
|
|
|
|
#define SN9C102_DEBUG
|
|
#define SN9C102_DEBUG_LEVEL 2
|
|
#define SN9C102_MAX_DEVICES 64
|
|
#define SN9C102_PRESERVE_IMGSCALE 0
|
|
#define SN9C102_FORCE_MUNMAP 0
|
|
#define SN9C102_MAX_FRAMES 32
|
|
#define SN9C102_URBS 2
|
|
#define SN9C102_ISO_PACKETS 7
|
|
#define SN9C102_ALTERNATE_SETTING 8
|
|
#define SN9C102_URB_TIMEOUT msecs_to_jiffies(2 * SN9C102_ISO_PACKETS)
|
|
#define SN9C102_CTRL_TIMEOUT 300
|
|
#define SN9C102_FRAME_TIMEOUT 0
|
|
|
|
/*****************************************************************************/
|
|
|
|
static const u8 SN9C102_Y_QTABLE0[64] = {
|
|
8, 5, 5, 8, 12, 20, 25, 30,
|
|
6, 6, 7, 9, 13, 29, 30, 27,
|
|
7, 6, 8, 12, 20, 28, 34, 28,
|
|
7, 8, 11, 14, 25, 43, 40, 31,
|
|
9, 11, 18, 28, 34, 54, 51, 38,
|
|
12, 17, 27, 32, 40, 52, 56, 46,
|
|
24, 32, 39, 43, 51, 60, 60, 50,
|
|
36, 46, 47, 49, 56, 50, 51, 49
|
|
};
|
|
|
|
static const u8 SN9C102_UV_QTABLE0[64] = {
|
|
8, 9, 12, 23, 49, 49, 49, 49,
|
|
9, 10, 13, 33, 49, 49, 49, 49,
|
|
12, 13, 28, 49, 49, 49, 49, 49,
|
|
23, 33, 49, 49, 49, 49, 49, 49,
|
|
49, 49, 49, 49, 49, 49, 49, 49,
|
|
49, 49, 49, 49, 49, 49, 49, 49,
|
|
49, 49, 49, 49, 49, 49, 49, 49,
|
|
49, 49, 49, 49, 49, 49, 49, 49
|
|
};
|
|
|
|
static const u8 SN9C102_Y_QTABLE1[64] = {
|
|
16, 11, 10, 16, 24, 40, 51, 61,
|
|
12, 12, 14, 19, 26, 58, 60, 55,
|
|
14, 13, 16, 24, 40, 57, 69, 56,
|
|
14, 17, 22, 29, 51, 87, 80, 62,
|
|
18, 22, 37, 56, 68, 109, 103, 77,
|
|
24, 35, 55, 64, 81, 104, 113, 92,
|
|
49, 64, 78, 87, 103, 121, 120, 101,
|
|
72, 92, 95, 98, 112, 100, 103, 99
|
|
};
|
|
|
|
static const u8 SN9C102_UV_QTABLE1[64] = {
|
|
17, 18, 24, 47, 99, 99, 99, 99,
|
|
18, 21, 26, 66, 99, 99, 99, 99,
|
|
24, 26, 56, 99, 99, 99, 99, 99,
|
|
47, 66, 99, 99, 99, 99, 99, 99,
|
|
99, 99, 99, 99, 99, 99, 99, 99,
|
|
99, 99, 99, 99, 99, 99, 99, 99,
|
|
99, 99, 99, 99, 99, 99, 99, 99,
|
|
99, 99, 99, 99, 99, 99, 99, 99
|
|
};
|
|
|
|
#endif /* _SN9C102_CONFIG_H_ */
|