2 * indycam.c - Silicon Graphics IndyCam digital camera driver
4 * Copyright (C) 2003 Ladislav Michl <ladis@linux-mips.org>
5 * Copyright (C) 2004,2005 Mikael Nousiainen <tmnousia@cc.hut.fi>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include <linux/delay.h>
13 #include <linux/errno.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/major.h>
18 #include <linux/module.h>
20 #include <linux/slab.h>
22 /* IndyCam decodes stream of photons into digital image representation ;-) */
23 #include <linux/videodev2.h>
24 #include <linux/i2c.h>
25 #include <media/v4l2-device.h>
26 #include <media/v4l2-chip-ident.h>
27 #include <media/v4l2-i2c-drv.h>
31 #define INDYCAM_MODULE_VERSION "0.0.5"
33 MODULE_DESCRIPTION("SGI IndyCam driver");
34 MODULE_VERSION(INDYCAM_MODULE_VERSION
);
35 MODULE_AUTHOR("Mikael Nousiainen <tmnousia@cc.hut.fi>");
36 MODULE_LICENSE("GPL");
39 // #define INDYCAM_DEBUG
42 #define dprintk(x...) printk("IndyCam: " x);
43 #define indycam_regdump(client) indycam_regdump_debug(client)
46 #define indycam_regdump(client)
50 struct v4l2_subdev sd
;
54 static inline struct indycam
*to_indycam(struct v4l2_subdev
*sd
)
56 return container_of(sd
, struct indycam
, sd
);
59 static const u8 initseq
[] = {
60 INDYCAM_CONTROL_AGCENA
, /* INDYCAM_CONTROL */
61 INDYCAM_SHUTTER_60
, /* INDYCAM_SHUTTER */
62 INDYCAM_GAIN_DEFAULT
, /* INDYCAM_GAIN */
63 0x00, /* INDYCAM_BRIGHTNESS (read-only) */
64 INDYCAM_RED_BALANCE_DEFAULT
, /* INDYCAM_RED_BALANCE */
65 INDYCAM_BLUE_BALANCE_DEFAULT
, /* INDYCAM_BLUE_BALANCE */
66 INDYCAM_RED_SATURATION_DEFAULT
, /* INDYCAM_RED_SATURATION */
67 INDYCAM_BLUE_SATURATION_DEFAULT
,/* INDYCAM_BLUE_SATURATION */
70 /* IndyCam register handling */
72 static int indycam_read_reg(struct v4l2_subdev
*sd
, u8 reg
, u8
*value
)
74 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
77 if (reg
== INDYCAM_REG_RESET
) {
78 dprintk("indycam_read_reg(): "
79 "skipping write-only register %d\n", reg
);
84 ret
= i2c_smbus_read_byte_data(client
, reg
);
87 printk(KERN_ERR
"IndyCam: indycam_read_reg(): read failed, "
88 "register = 0x%02x\n", reg
);
97 static int indycam_write_reg(struct v4l2_subdev
*sd
, u8 reg
, u8 value
)
99 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
102 if (reg
== INDYCAM_REG_BRIGHTNESS
|| reg
== INDYCAM_REG_VERSION
) {
103 dprintk("indycam_write_reg(): "
104 "skipping read-only register %d\n", reg
);
108 dprintk("Writing Reg %d = 0x%02x\n", reg
, value
);
109 err
= i2c_smbus_write_byte_data(client
, reg
, value
);
112 printk(KERN_ERR
"IndyCam: indycam_write_reg(): write failed, "
113 "register = 0x%02x, value = 0x%02x\n", reg
, value
);
118 static int indycam_write_block(struct v4l2_subdev
*sd
, u8 reg
,
123 for (i
= 0; i
< length
; i
++) {
124 err
= indycam_write_reg(sd
, reg
+ i
, data
[i
]);
132 /* Helper functions */
135 static void indycam_regdump_debug(struct v4l2_subdev
*sd
)
140 for (i
= 0; i
< 9; i
++) {
141 indycam_read_reg(sd
, i
, &val
);
142 dprintk("Reg %d = 0x%02x\n", i
, val
);
147 static int indycam_g_ctrl(struct v4l2_subdev
*sd
, struct v4l2_control
*ctrl
)
149 struct indycam
*camera
= to_indycam(sd
);
154 case V4L2_CID_AUTOGAIN
:
155 case V4L2_CID_AUTO_WHITE_BALANCE
:
156 ret
= indycam_read_reg(sd
, INDYCAM_REG_CONTROL
, ®
);
159 if (ctrl
->id
== V4L2_CID_AUTOGAIN
)
160 ctrl
->value
= (reg
& INDYCAM_CONTROL_AGCENA
)
163 ctrl
->value
= (reg
& INDYCAM_CONTROL_AWBCTL
)
166 case V4L2_CID_EXPOSURE
:
167 ret
= indycam_read_reg(sd
, INDYCAM_REG_SHUTTER
, ®
);
170 ctrl
->value
= ((s32
)reg
== 0x00) ? 0xff : ((s32
)reg
- 1);
173 ret
= indycam_read_reg(sd
, INDYCAM_REG_GAIN
, ®
);
176 ctrl
->value
= (s32
)reg
;
178 case V4L2_CID_RED_BALANCE
:
179 ret
= indycam_read_reg(sd
, INDYCAM_REG_RED_BALANCE
, ®
);
182 ctrl
->value
= (s32
)reg
;
184 case V4L2_CID_BLUE_BALANCE
:
185 ret
= indycam_read_reg(sd
, INDYCAM_REG_BLUE_BALANCE
, ®
);
188 ctrl
->value
= (s32
)reg
;
190 case INDYCAM_CONTROL_RED_SATURATION
:
191 ret
= indycam_read_reg(sd
,
192 INDYCAM_REG_RED_SATURATION
, ®
);
195 ctrl
->value
= (s32
)reg
;
197 case INDYCAM_CONTROL_BLUE_SATURATION
:
198 ret
= indycam_read_reg(sd
,
199 INDYCAM_REG_BLUE_SATURATION
, ®
);
202 ctrl
->value
= (s32
)reg
;
205 if (camera
->version
== CAMERA_VERSION_MOOSE
) {
206 ret
= indycam_read_reg(sd
,
207 INDYCAM_REG_GAMMA
, ®
);
210 ctrl
->value
= (s32
)reg
;
212 ctrl
->value
= INDYCAM_GAMMA_DEFAULT
;
222 static int indycam_s_ctrl(struct v4l2_subdev
*sd
, struct v4l2_control
*ctrl
)
224 struct indycam
*camera
= to_indycam(sd
);
229 case V4L2_CID_AUTOGAIN
:
230 case V4L2_CID_AUTO_WHITE_BALANCE
:
231 ret
= indycam_read_reg(sd
, INDYCAM_REG_CONTROL
, ®
);
235 if (ctrl
->id
== V4L2_CID_AUTOGAIN
) {
237 reg
|= INDYCAM_CONTROL_AGCENA
;
239 reg
&= ~INDYCAM_CONTROL_AGCENA
;
242 reg
|= INDYCAM_CONTROL_AWBCTL
;
244 reg
&= ~INDYCAM_CONTROL_AWBCTL
;
247 ret
= indycam_write_reg(sd
, INDYCAM_REG_CONTROL
, reg
);
249 case V4L2_CID_EXPOSURE
:
250 reg
= (ctrl
->value
== 0xff) ? 0x00 : (ctrl
->value
+ 1);
251 ret
= indycam_write_reg(sd
, INDYCAM_REG_SHUTTER
, reg
);
254 ret
= indycam_write_reg(sd
, INDYCAM_REG_GAIN
, ctrl
->value
);
256 case V4L2_CID_RED_BALANCE
:
257 ret
= indycam_write_reg(sd
, INDYCAM_REG_RED_BALANCE
,
260 case V4L2_CID_BLUE_BALANCE
:
261 ret
= indycam_write_reg(sd
, INDYCAM_REG_BLUE_BALANCE
,
264 case INDYCAM_CONTROL_RED_SATURATION
:
265 ret
= indycam_write_reg(sd
, INDYCAM_REG_RED_SATURATION
,
268 case INDYCAM_CONTROL_BLUE_SATURATION
:
269 ret
= indycam_write_reg(sd
, INDYCAM_REG_BLUE_SATURATION
,
273 if (camera
->version
== CAMERA_VERSION_MOOSE
) {
274 ret
= indycam_write_reg(sd
, INDYCAM_REG_GAMMA
,
287 static int indycam_g_chip_ident(struct v4l2_subdev
*sd
,
288 struct v4l2_dbg_chip_ident
*chip
)
290 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
291 struct indycam
*camera
= to_indycam(sd
);
293 return v4l2_chip_ident_i2c_client(client
, chip
, V4L2_IDENT_INDYCAM
,
297 /* ----------------------------------------------------------------------- */
299 static const struct v4l2_subdev_core_ops indycam_core_ops
= {
300 .g_chip_ident
= indycam_g_chip_ident
,
301 .g_ctrl
= indycam_g_ctrl
,
302 .s_ctrl
= indycam_s_ctrl
,
305 static const struct v4l2_subdev_ops indycam_ops
= {
306 .core
= &indycam_core_ops
,
309 static int indycam_probe(struct i2c_client
*client
,
310 const struct i2c_device_id
*id
)
313 struct indycam
*camera
;
314 struct v4l2_subdev
*sd
;
316 v4l_info(client
, "chip found @ 0x%x (%s)\n",
317 client
->addr
<< 1, client
->adapter
->name
);
319 camera
= kzalloc(sizeof(struct indycam
), GFP_KERNEL
);
324 v4l2_i2c_subdev_init(sd
, client
, &indycam_ops
);
326 camera
->version
= i2c_smbus_read_byte_data(client
,
327 INDYCAM_REG_VERSION
);
328 if (camera
->version
!= CAMERA_VERSION_INDY
&&
329 camera
->version
!= CAMERA_VERSION_MOOSE
) {
334 printk(KERN_INFO
"IndyCam v%d.%d detected\n",
335 INDYCAM_VERSION_MAJOR(camera
->version
),
336 INDYCAM_VERSION_MINOR(camera
->version
));
341 err
= indycam_write_block(sd
, 0, sizeof(initseq
), (u8
*)&initseq
);
343 printk(KERN_ERR
"IndyCam initialization failed\n");
351 err
= indycam_write_reg(sd
, INDYCAM_REG_CONTROL
,
352 INDYCAM_CONTROL_AGCENA
| INDYCAM_CONTROL_AWBCTL
);
354 printk(KERN_ERR
"IndyCam: White balancing camera failed\n");
361 printk(KERN_INFO
"IndyCam initialized\n");
366 static int indycam_remove(struct i2c_client
*client
)
368 struct v4l2_subdev
*sd
= i2c_get_clientdata(client
);
370 v4l2_device_unregister_subdev(sd
);
371 kfree(to_indycam(sd
));
375 static const struct i2c_device_id indycam_id
[] = {
379 MODULE_DEVICE_TABLE(i2c
, indycam_id
);
381 static struct v4l2_i2c_driver_data v4l2_i2c_data
= {
383 .probe
= indycam_probe
,
384 .remove
= indycam_remove
,
385 .id_table
= indycam_id
,