1 /***************************************************************************
2 * V4L2 driver for SN9C10x PC Camera Controllers *
4 * Copyright (C) 2004-2006 by Luca Risolia <luca.risolia@studio.unibo.it> *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
19 ***************************************************************************/
24 #include <linux/version.h>
25 #include <linux/usb.h>
26 #include <linux/videodev2.h>
27 #include <media/v4l2-common.h>
28 #include <linux/device.h>
29 #include <linux/list.h>
30 #include <linux/spinlock.h>
31 #include <linux/time.h>
32 #include <linux/wait.h>
33 #include <linux/types.h>
34 #include <linux/param.h>
35 #include <linux/rwsem.h>
36 #include <linux/mutex.h>
37 #include <asm/semaphore.h>
39 #include "sn9c102_sensor.h"
41 /*****************************************************************************/
44 #define SN9C102_DEBUG_LEVEL 2
45 #define SN9C102_MAX_DEVICES 64
46 #define SN9C102_PRESERVE_IMGSCALE 0
47 #define SN9C102_FORCE_MUNMAP 0
48 #define SN9C102_MAX_FRAMES 32
49 #define SN9C102_URBS 2
50 #define SN9C102_ISO_PACKETS 7
51 #define SN9C102_ALTERNATE_SETTING 8
52 #define SN9C102_URB_TIMEOUT msecs_to_jiffies(2 * SN9C102_ISO_PACKETS)
53 #define SN9C102_CTRL_TIMEOUT 300
55 /*****************************************************************************/
58 BRIDGE_SN9C101 = 0x01,
59 BRIDGE_SN9C102 = 0x02,
60 BRIDGE_SN9C103 = 0x04,
66 enum sn9c102_frame_state {
74 struct sn9c102_frame_t {
76 struct v4l2_buffer buf;
77 enum sn9c102_frame_state state;
78 struct list_head frame;
79 unsigned long vma_use_count;
82 enum sn9c102_dev_state {
83 DEV_INITIALIZED = 0x01,
84 DEV_DISCONNECTED = 0x02,
85 DEV_MISCONFIGURED = 0x04,
88 enum sn9c102_io_method {
94 enum sn9c102_stream_state {
100 typedef char sn9c103_sof_header_t[18];
101 typedef char sn9c102_sof_header_t[12];
102 typedef char sn9c102_eof_header_t[4];
104 struct sn9c102_sysfs_attr {
106 sn9c103_sof_header_t frame_header;
109 struct sn9c102_module_param {
113 static DEFINE_MUTEX(sn9c102_sysfs_lock);
114 static DECLARE_RWSEM(sn9c102_disconnect);
116 struct sn9c102_device {
117 struct video_device* v4ldev;
119 enum sn9c102_bridge bridge;
120 struct sn9c102_sensor* sensor;
122 struct usb_device* usbdev;
123 struct urb* urb[SN9C102_URBS];
124 void* transfer_buffer[SN9C102_URBS];
127 struct sn9c102_frame_t *frame_current, frame[SN9C102_MAX_FRAMES];
128 struct list_head inqueue, outqueue;
129 u32 frame_count, nbuffers, nreadbuffers;
131 enum sn9c102_io_method io;
132 enum sn9c102_stream_state stream;
134 struct v4l2_jpegcompression compression;
136 struct sn9c102_sysfs_attr sysfs;
137 sn9c103_sof_header_t sof_header;
140 struct sn9c102_module_param module_param;
142 enum sn9c102_dev_state state;
145 struct mutex dev_mutex, fileop_mutex;
146 spinlock_t queue_lock;
147 wait_queue_head_t open, wait_frame, wait_stream;
150 /*****************************************************************************/
153 sn9c102_attach_sensor(struct sn9c102_device* cam,
154 struct sn9c102_sensor* sensor)
156 cam->sensor = sensor;
157 cam->sensor->usbdev = cam->usbdev;
160 /*****************************************************************************/
165 # define DBG(level, fmt, args...) \
167 if (debug >= (level)) { \
169 dev_err(&cam->usbdev->dev, fmt "\n", ## args); \
170 else if ((level) == 2) \
171 dev_info(&cam->usbdev->dev, fmt "\n", ## args); \
172 else if ((level) >= 3) \
173 dev_info(&cam->usbdev->dev, "[%s:%d] " fmt "\n", \
174 __FUNCTION__, __LINE__ , ## args); \
177 # define V4LDBG(level, name, cmd) \
179 if (debug >= (level)) \
180 v4l_print_ioctl(name, cmd); \
182 # define KDBG(level, fmt, args...) \
184 if (debug >= (level)) { \
185 if ((level) == 1 || (level) == 2) \
186 pr_info("sn9c102: " fmt "\n", ## args); \
187 else if ((level) == 3) \
188 pr_debug("sn9c102: [%s:%d] " fmt "\n", __FUNCTION__, \
189 __LINE__ , ## args); \
193 # define DBG(level, fmt, args...) do {;} while(0)
194 # define V4LDBG(level, name, cmd) do {;} while(0)
195 # define KDBG(level, fmt, args...) do {;} while(0)
199 #define PDBG(fmt, args...) \
200 dev_info(&cam->dev, "[%s:%d] " fmt "\n", __FUNCTION__, __LINE__ , ## args)
203 #define PDBGG(fmt, args...) do {;} while(0) /* placeholder */
205 #endif /* _SN9C102_H_ */