2 * Driver for the VIA Chrome integrated camera controller.
4 * Copyright 2009,2010 Jonathan Corbet <corbet@lwn.net>
5 * Distributable under the terms of the GNU General Public License, version 2
7 * This work was supported by the One Laptop Per Child project
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/device.h>
12 #include <linux/list.h>
13 #include <linux/pci.h>
14 #include <linux/gpio.h>
15 #include <linux/interrupt.h>
16 #include <linux/platform_device.h>
17 #include <linux/videodev2.h>
18 #include <media/v4l2-device.h>
19 #include <media/v4l2-ioctl.h>
20 #include <media/v4l2-ctrls.h>
21 #include <media/ov7670.h>
22 #include <media/videobuf-dma-sg.h>
23 #include <linux/delay.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/pm_qos.h>
26 #include <linux/via-core.h>
27 #include <linux/via-gpio.h>
28 #include <linux/via_i2c.h>
31 #include "via-camera.h"
33 MODULE_ALIAS("platform:viafb-camera");
34 MODULE_AUTHOR("Jonathan Corbet <corbet@lwn.net>");
35 MODULE_DESCRIPTION("VIA framebuffer-based camera controller driver");
36 MODULE_LICENSE("GPL");
38 static bool flip_image
;
39 module_param(flip_image
, bool, 0444);
40 MODULE_PARM_DESC(flip_image
,
41 "If set, the sensor will be instructed to flip the image "
44 static bool override_serial
;
45 module_param(override_serial
, bool, 0444);
46 MODULE_PARM_DESC(override_serial
,
47 "The camera driver will normally refuse to load if "
48 "the XO 1.5 serial port is enabled. Set this option "
49 "to force-enable the camera.");
55 #define VGA_HEIGHT 480
56 #define QCIF_WIDTH 176
57 #define QCIF_HEIGHT 144
60 * The structure describing our camera.
62 enum viacam_opstate
{ S_IDLE
= 0, S_RUNNING
= 1 };
65 struct v4l2_device v4l2_dev
;
66 struct v4l2_ctrl_handler ctrl_handler
;
67 struct video_device vdev
;
68 struct v4l2_subdev
*sensor
;
69 struct platform_device
*platdev
;
70 struct viafb_dev
*viadev
;
72 enum viacam_opstate opstate
;
74 struct pm_qos_request qos_request
;
76 * GPIO info for power/reset management
83 void __iomem
*mmio
; /* Where the registers live */
84 void __iomem
*fbmem
; /* Frame buffer memory */
85 u32 fb_offset
; /* Reserved memory offset (FB) */
87 * Capture buffers and related. The controller supports
88 * up to three, so that's what we have here. These buffers
89 * live in frame buffer memory, so we don't call them "DMA".
91 unsigned int cb_offsets
[3]; /* offsets into fb mem */
92 u8
*cb_addrs
[3]; /* Kernel-space addresses */
93 int n_cap_bufs
; /* How many are we using? */
95 struct videobuf_queue vb_queue
;
96 struct list_head buffer_queue
; /* prot. by reg_lock */
103 * Video format information. sensor_format is kept in a form
104 * that we can use to pass to the sensor. We always run the
105 * sensor in VGA resolution, though, and let the controller
106 * downscale things if need be. So we keep the "real*
107 * dimensions separately.
109 struct v4l2_pix_format sensor_format
;
110 struct v4l2_pix_format user_format
;
111 enum v4l2_mbus_pixelcode mbus_code
;
115 * Yes, this is a hack, but there's only going to be one of these
116 * on any system we know of.
118 static struct via_camera
*via_cam_info
;
121 * Flag values, manipulated with bitops
123 #define CF_DMA_ACTIVE 0 /* A frame is incoming */
124 #define CF_CONFIG_NEEDED 1 /* Must configure hardware */
128 * Nasty ugly v4l2 boilerplate.
130 #define sensor_call(cam, optype, func, args...) \
131 v4l2_subdev_call(cam->sensor, optype, func, ##args)
134 * Debugging and related.
136 #define cam_err(cam, fmt, arg...) \
137 dev_err(&(cam)->platdev->dev, fmt, ##arg);
138 #define cam_warn(cam, fmt, arg...) \
139 dev_warn(&(cam)->platdev->dev, fmt, ##arg);
140 #define cam_dbg(cam, fmt, arg...) \
141 dev_dbg(&(cam)->platdev->dev, fmt, ##arg);
144 * Format handling. This is ripped almost directly from Hans's changes
145 * to cafe_ccic.c. It's a little unfortunate; until this change, we
146 * didn't need to know anything about the format except its byte depth;
147 * now this information must be managed at this level too.
149 static struct via_format
{
152 int bpp
; /* Bytes per pixel */
153 enum v4l2_mbus_pixelcode mbus_code
;
156 .desc
= "YUYV 4:2:2",
157 .pixelformat
= V4L2_PIX_FMT_YUYV
,
158 .mbus_code
= V4L2_MBUS_FMT_YUYV8_2X8
,
161 /* RGB444 and Bayer should be doable, but have never been
162 tested with this driver. RGB565 seems to work at the default
163 resolution, but results in color corruption when being scaled by
164 viacam_set_scaled(), and is disabled as a result. */
166 #define N_VIA_FMTS ARRAY_SIZE(via_formats)
168 static struct via_format
*via_find_format(u32 pixelformat
)
172 for (i
= 0; i
< N_VIA_FMTS
; i
++)
173 if (via_formats
[i
].pixelformat
== pixelformat
)
174 return via_formats
+ i
;
175 /* Not found? Then return the first format. */
180 /*--------------------------------------------------------------------------*/
182 * Sensor power/reset management. This piece is OLPC-specific for
183 * sure; other configurations will have things connected differently.
185 static int via_sensor_power_setup(struct via_camera
*cam
)
189 cam
->power_gpio
= viafb_gpio_lookup("VGPIO3");
190 cam
->reset_gpio
= viafb_gpio_lookup("VGPIO2");
191 if (cam
->power_gpio
< 0 || cam
->reset_gpio
< 0) {
192 dev_err(&cam
->platdev
->dev
, "Unable to find GPIO lines\n");
195 ret
= gpio_request(cam
->power_gpio
, "viafb-camera");
197 dev_err(&cam
->platdev
->dev
, "Unable to request power GPIO\n");
200 ret
= gpio_request(cam
->reset_gpio
, "viafb-camera");
202 dev_err(&cam
->platdev
->dev
, "Unable to request reset GPIO\n");
203 gpio_free(cam
->power_gpio
);
206 gpio_direction_output(cam
->power_gpio
, 0);
207 gpio_direction_output(cam
->reset_gpio
, 0);
212 * Power up the sensor and perform the reset dance.
214 static void via_sensor_power_up(struct via_camera
*cam
)
216 gpio_set_value(cam
->power_gpio
, 1);
217 gpio_set_value(cam
->reset_gpio
, 0);
218 msleep(20); /* Probably excessive */
219 gpio_set_value(cam
->reset_gpio
, 1);
223 static void via_sensor_power_down(struct via_camera
*cam
)
225 gpio_set_value(cam
->power_gpio
, 0);
226 gpio_set_value(cam
->reset_gpio
, 0);
230 static void via_sensor_power_release(struct via_camera
*cam
)
232 via_sensor_power_down(cam
);
233 gpio_free(cam
->power_gpio
);
234 gpio_free(cam
->reset_gpio
);
237 /* --------------------------------------------------------------------------*/
241 * Manage the ov7670 "flip" bit, which needs special help.
243 static int viacam_set_flip(struct via_camera
*cam
)
245 struct v4l2_control ctrl
;
247 memset(&ctrl
, 0, sizeof(ctrl
));
248 ctrl
.id
= V4L2_CID_VFLIP
;
249 ctrl
.value
= flip_image
;
250 return sensor_call(cam
, core
, s_ctrl
, &ctrl
);
254 * Configure the sensor. It's up to the caller to ensure
255 * that the camera is in the correct operating state.
257 static int viacam_configure_sensor(struct via_camera
*cam
)
259 struct v4l2_mbus_framefmt mbus_fmt
;
262 v4l2_fill_mbus_format(&mbus_fmt
, &cam
->sensor_format
, cam
->mbus_code
);
263 ret
= sensor_call(cam
, core
, init
, 0);
265 ret
= sensor_call(cam
, video
, s_mbus_fmt
, &mbus_fmt
);
267 * OV7670 does weird things if flip is set *before* format...
270 ret
= viacam_set_flip(cam
);
276 /* --------------------------------------------------------------------------*/
278 * Some simple register accessors; they assume that the lock is held.
280 * Should we want to support the second capture engine, we could
281 * hide the register difference by adding 0x1000 to registers in the
284 static inline void viacam_write_reg(struct via_camera
*cam
,
287 iowrite32(value
, cam
->mmio
+ reg
);
290 static inline int viacam_read_reg(struct via_camera
*cam
, int reg
)
292 return ioread32(cam
->mmio
+ reg
);
295 static inline void viacam_write_reg_mask(struct via_camera
*cam
,
296 int reg
, int value
, int mask
)
298 int tmp
= viacam_read_reg(cam
, reg
);
300 tmp
= (tmp
& ~mask
) | (value
& mask
);
301 viacam_write_reg(cam
, reg
, tmp
);
305 /* --------------------------------------------------------------------------*/
306 /* Interrupt management and handling */
308 static irqreturn_t
viacam_quick_irq(int irq
, void *data
)
310 struct via_camera
*cam
= data
;
311 irqreturn_t ret
= IRQ_NONE
;
315 * All we do here is to clear the interrupts and tell
316 * the handler thread to wake up.
318 spin_lock(&cam
->viadev
->reg_lock
);
319 icv
= viacam_read_reg(cam
, VCR_INTCTRL
);
320 if (icv
& VCR_IC_EAV
) {
321 icv
|= VCR_IC_EAV
|VCR_IC_EVBI
|VCR_IC_FFULL
;
322 viacam_write_reg(cam
, VCR_INTCTRL
, icv
);
323 ret
= IRQ_WAKE_THREAD
;
325 spin_unlock(&cam
->viadev
->reg_lock
);
330 * Find the next videobuf buffer which has somebody waiting on it.
332 static struct videobuf_buffer
*viacam_next_buffer(struct via_camera
*cam
)
335 struct videobuf_buffer
*buf
= NULL
;
337 spin_lock_irqsave(&cam
->viadev
->reg_lock
, flags
);
338 if (cam
->opstate
!= S_RUNNING
)
340 if (list_empty(&cam
->buffer_queue
))
342 buf
= list_entry(cam
->buffer_queue
.next
, struct videobuf_buffer
, queue
);
343 if (!waitqueue_active(&buf
->done
)) {/* Nobody waiting */
347 list_del(&buf
->queue
);
348 buf
->state
= VIDEOBUF_ACTIVE
;
350 spin_unlock_irqrestore(&cam
->viadev
->reg_lock
, flags
);
355 * The threaded IRQ handler.
357 static irqreturn_t
viacam_irq(int irq
, void *data
)
360 struct videobuf_buffer
*vb
;
361 struct via_camera
*cam
= data
;
362 struct videobuf_dmabuf
*vdma
;
365 * If there is no place to put the data frame, don't bother
366 * with anything else.
368 vb
= viacam_next_buffer(cam
);
372 * Figure out which buffer we just completed.
374 bufn
= (viacam_read_reg(cam
, VCR_INTCTRL
) & VCR_IC_ACTBUF
) >> 3;
377 bufn
= cam
->n_cap_bufs
- 1;
379 * Copy over the data and let any waiters know.
381 vdma
= videobuf_to_dma(vb
);
382 viafb_dma_copy_out_sg(cam
->cb_offsets
[bufn
], vdma
->sglist
, vdma
->sglen
);
383 vb
->state
= VIDEOBUF_DONE
;
384 vb
->size
= cam
->user_format
.sizeimage
;
392 * These functions must mess around with the general interrupt
393 * control register, which is relevant to much more than just the
394 * camera. Nothing else uses interrupts, though, as of this writing.
395 * Should that situation change, we'll have to improve support at
396 * the via-core level.
398 static void viacam_int_enable(struct via_camera
*cam
)
400 viacam_write_reg(cam
, VCR_INTCTRL
,
401 VCR_IC_INTEN
|VCR_IC_EAV
|VCR_IC_EVBI
|VCR_IC_FFULL
);
402 viafb_irq_enable(VDE_I_C0AVEN
);
405 static void viacam_int_disable(struct via_camera
*cam
)
407 viafb_irq_disable(VDE_I_C0AVEN
);
408 viacam_write_reg(cam
, VCR_INTCTRL
, 0);
413 /* --------------------------------------------------------------------------*/
414 /* Controller operations */
417 * Set up our capture buffers in framebuffer memory.
419 static int viacam_ctlr_cbufs(struct via_camera
*cam
)
421 int nbuf
= cam
->viadev
->camera_fbmem_size
/cam
->sensor_format
.sizeimage
;
426 * See how many buffers we can work with.
430 viacam_write_reg_mask(cam
, VCR_CAPINTC
, VCR_CI_3BUFS
,
432 } else if (nbuf
== 2) {
434 viacam_write_reg_mask(cam
, VCR_CAPINTC
, 0, VCR_CI_3BUFS
);
436 cam_warn(cam
, "Insufficient frame buffer memory\n");
442 offset
= cam
->fb_offset
;
443 for (i
= 0; i
< cam
->n_cap_bufs
; i
++) {
444 cam
->cb_offsets
[i
] = offset
;
445 cam
->cb_addrs
[i
] = cam
->fbmem
+ offset
;
446 viacam_write_reg(cam
, VCR_VBUF1
+ i
*4, offset
& VCR_VBUF_MASK
);
447 offset
+= cam
->sensor_format
.sizeimage
;
453 * Set the scaling register for downscaling the image.
455 * This register works like this... Vertical scaling is enabled
456 * by bit 26; if that bit is set, downscaling is controlled by the
457 * value in bits 16:25. Those bits are divided by 1024 to get
458 * the scaling factor; setting just bit 25 thus cuts the height
461 * Horizontal scaling works about the same, but it's enabled by
462 * bit 11, with bits 0:10 giving the numerator of a fraction
463 * (over 2048) for the scaling value.
465 * This function is naive in that, if the user departs from
466 * the 3x4 VGA scaling factor, the image will distort. We
467 * could work around that if it really seemed important.
469 static void viacam_set_scale(struct via_camera
*cam
)
471 unsigned int avscale
;
474 if (cam
->user_format
.width
== VGA_WIDTH
)
477 sf
= (cam
->user_format
.width
*2048)/VGA_WIDTH
;
478 avscale
= VCR_AVS_HEN
| sf
;
480 if (cam
->user_format
.height
< VGA_HEIGHT
) {
481 sf
= (1024*cam
->user_format
.height
)/VGA_HEIGHT
;
482 avscale
|= VCR_AVS_VEN
| (sf
<< 16);
484 viacam_write_reg(cam
, VCR_AVSCALE
, avscale
);
489 * Configure image-related information into the capture engine.
491 static void viacam_ctlr_image(struct via_camera
*cam
)
496 * Disable clock before messing with stuff - from the via
499 viacam_write_reg(cam
, VCR_CAPINTC
, ~(VCR_CI_ENABLE
|VCR_CI_CLKEN
));
501 * Set up the controller for VGA resolution, modulo magic
502 * offsets from the via sample driver.
504 viacam_write_reg(cam
, VCR_HORRANGE
, 0x06200120);
505 viacam_write_reg(cam
, VCR_VERTRANGE
, 0x01de0000);
506 viacam_set_scale(cam
);
510 viacam_write_reg(cam
, VCR_MAXDATA
,
511 (cam
->sensor_format
.height
<< 16) |
512 (cam
->sensor_format
.bytesperline
>> 3));
513 viacam_write_reg(cam
, VCR_MAXVBI
, 0);
514 viacam_write_reg(cam
, VCR_VSTRIDE
,
515 cam
->user_format
.bytesperline
& VCR_VS_STRIDE
);
517 * Set up the capture interface control register,
518 * everything but the "go" bit.
520 * The FIFO threshold is a bit of a magic number; 8 is what
521 * VIA's sample code uses.
523 cicreg
= VCR_CI_CLKEN
|
524 0x08000000 | /* FIFO threshold */
525 VCR_CI_FLDINV
| /* OLPC-specific? */
526 VCR_CI_VREFINV
| /* OLPC-specific? */
527 VCR_CI_DIBOTH
| /* Capture both fields */
529 if (cam
->n_cap_bufs
== 3)
530 cicreg
|= VCR_CI_3BUFS
;
532 * YUV formats need different byte swapping than RGB.
534 if (cam
->user_format
.pixelformat
== V4L2_PIX_FMT_YUYV
)
535 cicreg
|= VCR_CI_YUYV
;
537 cicreg
|= VCR_CI_UYVY
;
538 viacam_write_reg(cam
, VCR_CAPINTC
, cicreg
);
542 static int viacam_config_controller(struct via_camera
*cam
)
547 spin_lock_irqsave(&cam
->viadev
->reg_lock
, flags
);
548 ret
= viacam_ctlr_cbufs(cam
);
550 viacam_ctlr_image(cam
);
551 spin_unlock_irqrestore(&cam
->viadev
->reg_lock
, flags
);
552 clear_bit(CF_CONFIG_NEEDED
, &cam
->flags
);
557 * Make it start grabbing data.
559 static void viacam_start_engine(struct via_camera
*cam
)
561 spin_lock_irq(&cam
->viadev
->reg_lock
);
563 viacam_write_reg_mask(cam
, VCR_CAPINTC
, VCR_CI_ENABLE
, VCR_CI_ENABLE
);
564 viacam_int_enable(cam
);
565 (void) viacam_read_reg(cam
, VCR_CAPINTC
); /* Force post */
566 cam
->opstate
= S_RUNNING
;
567 spin_unlock_irq(&cam
->viadev
->reg_lock
);
571 static void viacam_stop_engine(struct via_camera
*cam
)
573 spin_lock_irq(&cam
->viadev
->reg_lock
);
574 viacam_int_disable(cam
);
575 viacam_write_reg_mask(cam
, VCR_CAPINTC
, 0, VCR_CI_ENABLE
);
576 (void) viacam_read_reg(cam
, VCR_CAPINTC
); /* Force post */
577 cam
->opstate
= S_IDLE
;
578 spin_unlock_irq(&cam
->viadev
->reg_lock
);
582 /* --------------------------------------------------------------------------*/
583 /* Videobuf callback ops */
586 * buffer_setup. The purpose of this one would appear to be to tell
587 * videobuf how big a single image is. It's also evidently up to us
588 * to put some sort of limit on the maximum number of buffers allowed.
590 static int viacam_vb_buf_setup(struct videobuf_queue
*q
,
591 unsigned int *count
, unsigned int *size
)
593 struct via_camera
*cam
= q
->priv_data
;
595 *size
= cam
->user_format
.sizeimage
;
596 if (*count
== 0 || *count
> 6) /* Arbitrary number */
604 static int viacam_vb_buf_prepare(struct videobuf_queue
*q
,
605 struct videobuf_buffer
*vb
, enum v4l2_field field
)
607 struct via_camera
*cam
= q
->priv_data
;
609 vb
->size
= cam
->user_format
.sizeimage
;
610 vb
->width
= cam
->user_format
.width
; /* bytesperline???? */
611 vb
->height
= cam
->user_format
.height
;
613 if (vb
->state
== VIDEOBUF_NEEDS_INIT
) {
614 int ret
= videobuf_iolock(q
, vb
, NULL
);
618 vb
->state
= VIDEOBUF_PREPARED
;
623 * We've got a buffer to put data into.
625 * FIXME: check for a running engine and valid buffers?
627 static void viacam_vb_buf_queue(struct videobuf_queue
*q
,
628 struct videobuf_buffer
*vb
)
630 struct via_camera
*cam
= q
->priv_data
;
633 * Note that videobuf holds the lock when it calls
634 * us, so we need not (indeed, cannot) take it here.
636 vb
->state
= VIDEOBUF_QUEUED
;
637 list_add_tail(&vb
->queue
, &cam
->buffer_queue
);
643 static void viacam_vb_buf_release(struct videobuf_queue
*q
,
644 struct videobuf_buffer
*vb
)
646 struct via_camera
*cam
= q
->priv_data
;
648 videobuf_dma_unmap(&cam
->platdev
->dev
, videobuf_to_dma(vb
));
649 videobuf_dma_free(videobuf_to_dma(vb
));
650 vb
->state
= VIDEOBUF_NEEDS_INIT
;
653 static const struct videobuf_queue_ops viacam_vb_ops
= {
654 .buf_setup
= viacam_vb_buf_setup
,
655 .buf_prepare
= viacam_vb_buf_prepare
,
656 .buf_queue
= viacam_vb_buf_queue
,
657 .buf_release
= viacam_vb_buf_release
,
660 /* --------------------------------------------------------------------------*/
661 /* File operations */
663 static int viacam_open(struct file
*filp
)
665 struct via_camera
*cam
= video_drvdata(filp
);
667 filp
->private_data
= cam
;
669 * Note the new user. If this is the first one, we'll also
670 * need to power up the sensor.
672 mutex_lock(&cam
->lock
);
673 if (cam
->users
== 0) {
674 int ret
= viafb_request_dma();
677 mutex_unlock(&cam
->lock
);
680 via_sensor_power_up(cam
);
681 set_bit(CF_CONFIG_NEEDED
, &cam
->flags
);
683 * Hook into videobuf. Evidently this cannot fail.
685 videobuf_queue_sg_init(&cam
->vb_queue
, &viacam_vb_ops
,
686 &cam
->platdev
->dev
, &cam
->viadev
->reg_lock
,
687 V4L2_BUF_TYPE_VIDEO_CAPTURE
, V4L2_FIELD_NONE
,
688 sizeof(struct videobuf_buffer
), cam
, NULL
);
691 mutex_unlock(&cam
->lock
);
695 static int viacam_release(struct file
*filp
)
697 struct via_camera
*cam
= video_drvdata(filp
);
699 mutex_lock(&cam
->lock
);
702 * If the "owner" is closing, shut down any ongoing
705 if (filp
== cam
->owner
) {
706 videobuf_stop(&cam
->vb_queue
);
708 * We don't hold the spinlock here, but, if release()
709 * is being called by the owner, nobody else will
710 * be changing the state. And an extra stop would
713 if (cam
->opstate
!= S_IDLE
)
714 viacam_stop_engine(cam
);
718 * Last one out needs to turn out the lights.
720 if (cam
->users
== 0) {
721 videobuf_mmap_free(&cam
->vb_queue
);
722 via_sensor_power_down(cam
);
725 mutex_unlock(&cam
->lock
);
730 * Read a frame from the device.
732 static ssize_t
viacam_read(struct file
*filp
, char __user
*buffer
,
733 size_t len
, loff_t
*pos
)
735 struct via_camera
*cam
= video_drvdata(filp
);
738 mutex_lock(&cam
->lock
);
740 * Enforce the V4l2 "only one owner gets to read data" rule.
742 if (cam
->owner
&& cam
->owner
!= filp
) {
748 * Do we need to configure the hardware?
750 if (test_bit(CF_CONFIG_NEEDED
, &cam
->flags
)) {
751 ret
= viacam_configure_sensor(cam
);
753 ret
= viacam_config_controller(cam
);
758 * Fire up the capture engine, then have videobuf do
759 * the heavy lifting. Someday it would be good to avoid
760 * stopping and restarting the engine each time.
762 INIT_LIST_HEAD(&cam
->buffer_queue
);
763 viacam_start_engine(cam
);
764 ret
= videobuf_read_stream(&cam
->vb_queue
, buffer
, len
, pos
, 0,
765 filp
->f_flags
& O_NONBLOCK
);
766 viacam_stop_engine(cam
);
767 /* videobuf_stop() ?? */
770 mutex_unlock(&cam
->lock
);
775 static unsigned int viacam_poll(struct file
*filp
, struct poll_table_struct
*pt
)
777 struct via_camera
*cam
= video_drvdata(filp
);
779 return videobuf_poll_stream(filp
, &cam
->vb_queue
, pt
);
783 static int viacam_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
785 struct via_camera
*cam
= video_drvdata(filp
);
787 return videobuf_mmap_mapper(&cam
->vb_queue
, vma
);
792 static const struct v4l2_file_operations viacam_fops
= {
793 .owner
= THIS_MODULE
,
795 .release
= viacam_release
,
799 .unlocked_ioctl
= video_ioctl2
,
802 /*----------------------------------------------------------------------------*/
804 * The long list of v4l2 ioctl ops
810 static int viacam_enum_input(struct file
*filp
, void *priv
,
811 struct v4l2_input
*input
)
813 if (input
->index
!= 0)
816 input
->type
= V4L2_INPUT_TYPE_CAMERA
;
817 input
->std
= V4L2_STD_ALL
; /* Not sure what should go here */
818 strcpy(input
->name
, "Camera");
822 static int viacam_g_input(struct file
*filp
, void *priv
, unsigned int *i
)
828 static int viacam_s_input(struct file
*filp
, void *priv
, unsigned int i
)
835 static int viacam_s_std(struct file
*filp
, void *priv
, v4l2_std_id std
)
840 static int viacam_g_std(struct file
*filp
, void *priv
, v4l2_std_id
*std
)
842 *std
= V4L2_STD_NTSC_M
;
847 * Video format stuff. Here is our default format until
848 * user space messes with things.
850 static const struct v4l2_pix_format viacam_def_pix_format
= {
852 .height
= VGA_HEIGHT
,
853 .pixelformat
= V4L2_PIX_FMT_YUYV
,
854 .field
= V4L2_FIELD_NONE
,
855 .bytesperline
= VGA_WIDTH
* 2,
856 .sizeimage
= VGA_WIDTH
* VGA_HEIGHT
* 2,
859 static const enum v4l2_mbus_pixelcode via_def_mbus_code
= V4L2_MBUS_FMT_YUYV8_2X8
;
861 static int viacam_enum_fmt_vid_cap(struct file
*filp
, void *priv
,
862 struct v4l2_fmtdesc
*fmt
)
864 if (fmt
->index
>= N_VIA_FMTS
)
866 strlcpy(fmt
->description
, via_formats
[fmt
->index
].desc
,
867 sizeof(fmt
->description
));
868 fmt
->pixelformat
= via_formats
[fmt
->index
].pixelformat
;
873 * Figure out proper image dimensions, but always force the
876 static void viacam_fmt_pre(struct v4l2_pix_format
*userfmt
,
877 struct v4l2_pix_format
*sensorfmt
)
879 *sensorfmt
= *userfmt
;
880 if (userfmt
->width
< QCIF_WIDTH
|| userfmt
->height
< QCIF_HEIGHT
) {
881 userfmt
->width
= QCIF_WIDTH
;
882 userfmt
->height
= QCIF_HEIGHT
;
884 if (userfmt
->width
> VGA_WIDTH
|| userfmt
->height
> VGA_HEIGHT
) {
885 userfmt
->width
= VGA_WIDTH
;
886 userfmt
->height
= VGA_HEIGHT
;
888 sensorfmt
->width
= VGA_WIDTH
;
889 sensorfmt
->height
= VGA_HEIGHT
;
892 static void viacam_fmt_post(struct v4l2_pix_format
*userfmt
,
893 struct v4l2_pix_format
*sensorfmt
)
895 struct via_format
*f
= via_find_format(userfmt
->pixelformat
);
897 sensorfmt
->bytesperline
= sensorfmt
->width
* f
->bpp
;
898 sensorfmt
->sizeimage
= sensorfmt
->height
* sensorfmt
->bytesperline
;
899 userfmt
->pixelformat
= sensorfmt
->pixelformat
;
900 userfmt
->field
= sensorfmt
->field
;
901 userfmt
->bytesperline
= 2 * userfmt
->width
;
902 userfmt
->sizeimage
= userfmt
->bytesperline
* userfmt
->height
;
907 * The real work of figuring out a workable format.
909 static int viacam_do_try_fmt(struct via_camera
*cam
,
910 struct v4l2_pix_format
*upix
, struct v4l2_pix_format
*spix
)
913 struct v4l2_mbus_framefmt mbus_fmt
;
914 struct via_format
*f
= via_find_format(upix
->pixelformat
);
916 upix
->pixelformat
= f
->pixelformat
;
917 viacam_fmt_pre(upix
, spix
);
918 v4l2_fill_mbus_format(&mbus_fmt
, spix
, f
->mbus_code
);
919 ret
= sensor_call(cam
, video
, try_mbus_fmt
, &mbus_fmt
);
920 v4l2_fill_pix_format(spix
, &mbus_fmt
);
921 viacam_fmt_post(upix
, spix
);
927 static int viacam_try_fmt_vid_cap(struct file
*filp
, void *priv
,
928 struct v4l2_format
*fmt
)
930 struct via_camera
*cam
= priv
;
931 struct v4l2_format sfmt
;
934 mutex_lock(&cam
->lock
);
935 ret
= viacam_do_try_fmt(cam
, &fmt
->fmt
.pix
, &sfmt
.fmt
.pix
);
936 mutex_unlock(&cam
->lock
);
941 static int viacam_g_fmt_vid_cap(struct file
*filp
, void *priv
,
942 struct v4l2_format
*fmt
)
944 struct via_camera
*cam
= priv
;
946 mutex_lock(&cam
->lock
);
947 fmt
->fmt
.pix
= cam
->user_format
;
948 mutex_unlock(&cam
->lock
);
952 static int viacam_s_fmt_vid_cap(struct file
*filp
, void *priv
,
953 struct v4l2_format
*fmt
)
955 struct via_camera
*cam
= priv
;
957 struct v4l2_format sfmt
;
958 struct via_format
*f
= via_find_format(fmt
->fmt
.pix
.pixelformat
);
961 * Camera must be idle or we can't mess with the
964 mutex_lock(&cam
->lock
);
965 if (cam
->opstate
!= S_IDLE
) {
970 * Let the sensor code look over and tweak the
971 * requested formatting.
973 ret
= viacam_do_try_fmt(cam
, &fmt
->fmt
.pix
, &sfmt
.fmt
.pix
);
977 * OK, let's commit to the new format.
979 cam
->user_format
= fmt
->fmt
.pix
;
980 cam
->sensor_format
= sfmt
.fmt
.pix
;
981 cam
->mbus_code
= f
->mbus_code
;
982 ret
= viacam_configure_sensor(cam
);
984 ret
= viacam_config_controller(cam
);
986 mutex_unlock(&cam
->lock
);
990 static int viacam_querycap(struct file
*filp
, void *priv
,
991 struct v4l2_capability
*cap
)
993 strcpy(cap
->driver
, "via-camera");
994 strcpy(cap
->card
, "via-camera");
996 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
|
997 V4L2_CAP_READWRITE
| V4L2_CAP_STREAMING
;
1002 * Streaming operations - pure videobuf stuff.
1004 static int viacam_reqbufs(struct file
*filp
, void *priv
,
1005 struct v4l2_requestbuffers
*rb
)
1007 struct via_camera
*cam
= priv
;
1009 return videobuf_reqbufs(&cam
->vb_queue
, rb
);
1012 static int viacam_querybuf(struct file
*filp
, void *priv
,
1013 struct v4l2_buffer
*buf
)
1015 struct via_camera
*cam
= priv
;
1017 return videobuf_querybuf(&cam
->vb_queue
, buf
);
1020 static int viacam_qbuf(struct file
*filp
, void *priv
, struct v4l2_buffer
*buf
)
1022 struct via_camera
*cam
= priv
;
1024 return videobuf_qbuf(&cam
->vb_queue
, buf
);
1027 static int viacam_dqbuf(struct file
*filp
, void *priv
, struct v4l2_buffer
*buf
)
1029 struct via_camera
*cam
= priv
;
1031 return videobuf_dqbuf(&cam
->vb_queue
, buf
, filp
->f_flags
& O_NONBLOCK
);
1034 static int viacam_streamon(struct file
*filp
, void *priv
, enum v4l2_buf_type t
)
1036 struct via_camera
*cam
= priv
;
1039 if (t
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1042 mutex_lock(&cam
->lock
);
1043 if (cam
->opstate
!= S_IDLE
) {
1048 * Enforce the V4l2 "only one owner gets to read data" rule.
1050 if (cam
->owner
&& cam
->owner
!= filp
) {
1056 * Configure things if need be.
1058 if (test_bit(CF_CONFIG_NEEDED
, &cam
->flags
)) {
1059 ret
= viacam_configure_sensor(cam
);
1062 ret
= viacam_config_controller(cam
);
1067 * If the CPU goes into C3, the DMA transfer gets corrupted and
1068 * users start filing unsightly bug reports. Put in a "latency"
1069 * requirement which will keep the CPU out of the deeper sleep
1072 pm_qos_add_request(&cam
->qos_request
, PM_QOS_CPU_DMA_LATENCY
, 50);
1076 INIT_LIST_HEAD(&cam
->buffer_queue
);
1077 ret
= videobuf_streamon(&cam
->vb_queue
);
1079 viacam_start_engine(cam
);
1081 mutex_unlock(&cam
->lock
);
1085 static int viacam_streamoff(struct file
*filp
, void *priv
, enum v4l2_buf_type t
)
1087 struct via_camera
*cam
= priv
;
1090 if (t
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1092 mutex_lock(&cam
->lock
);
1093 if (cam
->opstate
!= S_RUNNING
) {
1097 pm_qos_remove_request(&cam
->qos_request
);
1098 viacam_stop_engine(cam
);
1100 * Videobuf will recycle all of the outstanding buffers, but
1101 * we should be sure we don't retain any references to
1104 ret
= videobuf_streamoff(&cam
->vb_queue
);
1105 INIT_LIST_HEAD(&cam
->buffer_queue
);
1107 mutex_unlock(&cam
->lock
);
1113 static int viacam_g_parm(struct file
*filp
, void *priv
,
1114 struct v4l2_streamparm
*parm
)
1116 struct via_camera
*cam
= priv
;
1119 mutex_lock(&cam
->lock
);
1120 ret
= sensor_call(cam
, video
, g_parm
, parm
);
1121 mutex_unlock(&cam
->lock
);
1122 parm
->parm
.capture
.readbuffers
= cam
->n_cap_bufs
;
1126 static int viacam_s_parm(struct file
*filp
, void *priv
,
1127 struct v4l2_streamparm
*parm
)
1129 struct via_camera
*cam
= priv
;
1132 mutex_lock(&cam
->lock
);
1133 ret
= sensor_call(cam
, video
, s_parm
, parm
);
1134 mutex_unlock(&cam
->lock
);
1135 parm
->parm
.capture
.readbuffers
= cam
->n_cap_bufs
;
1139 static int viacam_enum_framesizes(struct file
*filp
, void *priv
,
1140 struct v4l2_frmsizeenum
*sizes
)
1142 if (sizes
->index
!= 0)
1144 sizes
->type
= V4L2_FRMSIZE_TYPE_CONTINUOUS
;
1145 sizes
->stepwise
.min_width
= QCIF_WIDTH
;
1146 sizes
->stepwise
.min_height
= QCIF_HEIGHT
;
1147 sizes
->stepwise
.max_width
= VGA_WIDTH
;
1148 sizes
->stepwise
.max_height
= VGA_HEIGHT
;
1149 sizes
->stepwise
.step_width
= sizes
->stepwise
.step_height
= 1;
1153 static int viacam_enum_frameintervals(struct file
*filp
, void *priv
,
1154 struct v4l2_frmivalenum
*interval
)
1156 struct via_camera
*cam
= priv
;
1159 mutex_lock(&cam
->lock
);
1160 ret
= sensor_call(cam
, video
, enum_frameintervals
, interval
);
1161 mutex_unlock(&cam
->lock
);
1167 static const struct v4l2_ioctl_ops viacam_ioctl_ops
= {
1168 .vidioc_enum_input
= viacam_enum_input
,
1169 .vidioc_g_input
= viacam_g_input
,
1170 .vidioc_s_input
= viacam_s_input
,
1171 .vidioc_s_std
= viacam_s_std
,
1172 .vidioc_g_std
= viacam_g_std
,
1173 .vidioc_enum_fmt_vid_cap
= viacam_enum_fmt_vid_cap
,
1174 .vidioc_try_fmt_vid_cap
= viacam_try_fmt_vid_cap
,
1175 .vidioc_g_fmt_vid_cap
= viacam_g_fmt_vid_cap
,
1176 .vidioc_s_fmt_vid_cap
= viacam_s_fmt_vid_cap
,
1177 .vidioc_querycap
= viacam_querycap
,
1178 .vidioc_reqbufs
= viacam_reqbufs
,
1179 .vidioc_querybuf
= viacam_querybuf
,
1180 .vidioc_qbuf
= viacam_qbuf
,
1181 .vidioc_dqbuf
= viacam_dqbuf
,
1182 .vidioc_streamon
= viacam_streamon
,
1183 .vidioc_streamoff
= viacam_streamoff
,
1184 .vidioc_g_parm
= viacam_g_parm
,
1185 .vidioc_s_parm
= viacam_s_parm
,
1186 .vidioc_enum_framesizes
= viacam_enum_framesizes
,
1187 .vidioc_enum_frameintervals
= viacam_enum_frameintervals
,
1190 /*----------------------------------------------------------------------------*/
1197 static int viacam_suspend(void *priv
)
1199 struct via_camera
*cam
= priv
;
1200 enum viacam_opstate state
= cam
->opstate
;
1202 if (cam
->opstate
!= S_IDLE
) {
1203 viacam_stop_engine(cam
);
1204 cam
->opstate
= state
; /* So resume restarts */
1210 static int viacam_resume(void *priv
)
1212 struct via_camera
*cam
= priv
;
1216 * Get back to a reasonable operating state.
1218 via_write_reg_mask(VIASR
, 0x78, 0, 0x80);
1219 via_write_reg_mask(VIASR
, 0x1e, 0xc0, 0xc0);
1220 viacam_int_disable(cam
);
1221 set_bit(CF_CONFIG_NEEDED
, &cam
->flags
);
1223 * Make sure the sensor's power state is correct
1226 via_sensor_power_up(cam
);
1228 via_sensor_power_down(cam
);
1230 * If it was operating, try to restart it.
1232 if (cam
->opstate
!= S_IDLE
) {
1233 mutex_lock(&cam
->lock
);
1234 ret
= viacam_configure_sensor(cam
);
1236 ret
= viacam_config_controller(cam
);
1237 mutex_unlock(&cam
->lock
);
1239 viacam_start_engine(cam
);
1245 static struct viafb_pm_hooks viacam_pm_hooks
= {
1246 .suspend
= viacam_suspend
,
1247 .resume
= viacam_resume
1250 #endif /* CONFIG_PM */
1256 static struct video_device viacam_v4l_template
= {
1257 .name
= "via-camera",
1259 .tvnorms
= V4L2_STD_NTSC_M
,
1260 .fops
= &viacam_fops
,
1261 .ioctl_ops
= &viacam_ioctl_ops
,
1262 .release
= video_device_release_empty
, /* Check this */
1266 * The OLPC folks put the serial port on the same pin as
1267 * the camera. They also get grumpy if we break the
1268 * serial port and keep them from using it. So we have
1269 * to check the serial enable bit and not step on it.
1271 #define VIACAM_SERIAL_DEVFN 0x88
1272 #define VIACAM_SERIAL_CREG 0x46
1273 #define VIACAM_SERIAL_BIT 0x40
1275 static bool viacam_serial_is_enabled(void)
1277 struct pci_bus
*pbus
= pci_find_bus(0, 0);
1282 pci_bus_read_config_byte(pbus
, VIACAM_SERIAL_DEVFN
,
1283 VIACAM_SERIAL_CREG
, &cbyte
);
1284 if ((cbyte
& VIACAM_SERIAL_BIT
) == 0)
1285 return false; /* Not enabled */
1286 if (override_serial
== 0) {
1287 printk(KERN_NOTICE
"Via camera: serial port is enabled, " \
1288 "refusing to load.\n");
1289 printk(KERN_NOTICE
"Specify override_serial=1 to force " \
1290 "module loading.\n");
1293 printk(KERN_NOTICE
"Via camera: overriding serial port\n");
1294 pci_bus_write_config_byte(pbus
, VIACAM_SERIAL_DEVFN
,
1295 VIACAM_SERIAL_CREG
, cbyte
& ~VIACAM_SERIAL_BIT
);
1299 static struct ov7670_config sensor_cfg
= {
1300 /* The XO-1.5 (only known user) clocks the camera at 90MHz. */
1304 static int viacam_probe(struct platform_device
*pdev
)
1307 struct i2c_adapter
*sensor_adapter
;
1308 struct viafb_dev
*viadev
= pdev
->dev
.platform_data
;
1309 struct i2c_board_info ov7670_info
= {
1312 .platform_data
= &sensor_cfg
,
1316 * Note that there are actually two capture channels on
1317 * the device. We only deal with one for now. That
1318 * is encoded here; nothing else assumes it's dealing with
1319 * a unique capture device.
1321 struct via_camera
*cam
;
1324 * Ensure that frame buffer memory has been set aside for
1325 * this purpose. As an arbitrary limit, refuse to work
1326 * with less than two frames of VGA 16-bit data.
1328 * If we ever support the second port, we'll need to set
1329 * aside more memory.
1331 if (viadev
->camera_fbmem_size
< (VGA_HEIGHT
*VGA_WIDTH
*4)) {
1332 printk(KERN_ERR
"viacam: insufficient FB memory reserved\n");
1335 if (viadev
->engine_mmio
== NULL
) {
1336 printk(KERN_ERR
"viacam: No I/O memory, so no pictures\n");
1340 if (machine_is_olpc() && viacam_serial_is_enabled())
1344 * Basic structure initialization.
1346 cam
= kzalloc (sizeof(struct via_camera
), GFP_KERNEL
);
1350 cam
->platdev
= pdev
;
1351 cam
->viadev
= viadev
;
1354 cam
->opstate
= S_IDLE
;
1355 cam
->user_format
= cam
->sensor_format
= viacam_def_pix_format
;
1356 mutex_init(&cam
->lock
);
1357 INIT_LIST_HEAD(&cam
->buffer_queue
);
1358 cam
->mmio
= viadev
->engine_mmio
;
1359 cam
->fbmem
= viadev
->fbmem
;
1360 cam
->fb_offset
= viadev
->camera_fbmem_offset
;
1361 cam
->flags
= 1 << CF_CONFIG_NEEDED
;
1362 cam
->mbus_code
= via_def_mbus_code
;
1364 * Tell V4L that we exist.
1366 ret
= v4l2_device_register(&pdev
->dev
, &cam
->v4l2_dev
);
1368 dev_err(&pdev
->dev
, "Unable to register v4l2 device\n");
1371 ret
= v4l2_ctrl_handler_init(&cam
->ctrl_handler
, 10);
1373 goto out_unregister
;
1374 cam
->v4l2_dev
.ctrl_handler
= &cam
->ctrl_handler
;
1376 * Convince the system that we can do DMA.
1378 pdev
->dev
.dma_mask
= &viadev
->pdev
->dma_mask
;
1379 dma_set_mask(&pdev
->dev
, 0xffffffff);
1381 * Fire up the capture port. The write to 0x78 looks purely
1382 * OLPCish; any system will need to tweak 0x1e.
1384 via_write_reg_mask(VIASR
, 0x78, 0, 0x80);
1385 via_write_reg_mask(VIASR
, 0x1e, 0xc0, 0xc0);
1387 * Get the sensor powered up.
1389 ret
= via_sensor_power_setup(cam
);
1391 goto out_ctrl_hdl_free
;
1392 via_sensor_power_up(cam
);
1395 * See if we can't find it on the bus. The VIA_PORT_31 assumption
1396 * is OLPC-specific. 0x42 assumption is ov7670-specific.
1398 sensor_adapter
= viafb_find_i2c_adapter(VIA_PORT_31
);
1399 cam
->sensor
= v4l2_i2c_new_subdev_board(&cam
->v4l2_dev
, sensor_adapter
,
1400 &ov7670_info
, NULL
);
1401 if (cam
->sensor
== NULL
) {
1402 dev_err(&pdev
->dev
, "Unable to find the sensor!\n");
1404 goto out_power_down
;
1409 viacam_int_disable(cam
);
1410 ret
= request_threaded_irq(viadev
->pdev
->irq
, viacam_quick_irq
,
1411 viacam_irq
, IRQF_SHARED
, "via-camera", cam
);
1413 goto out_power_down
;
1415 * Tell V4l2 that we exist.
1417 cam
->vdev
= viacam_v4l_template
;
1418 cam
->vdev
.v4l2_dev
= &cam
->v4l2_dev
;
1419 ret
= video_register_device(&cam
->vdev
, VFL_TYPE_GRABBER
, -1);
1422 video_set_drvdata(&cam
->vdev
, cam
);
1426 * Hook into PM events
1428 viacam_pm_hooks
.private = cam
;
1429 viafb_pm_register(&viacam_pm_hooks
);
1432 /* Power the sensor down until somebody opens the device */
1433 via_sensor_power_down(cam
);
1437 free_irq(viadev
->pdev
->irq
, cam
);
1439 via_sensor_power_release(cam
);
1441 v4l2_ctrl_handler_free(&cam
->ctrl_handler
);
1443 v4l2_device_unregister(&cam
->v4l2_dev
);
1449 static int viacam_remove(struct platform_device
*pdev
)
1451 struct via_camera
*cam
= via_cam_info
;
1452 struct viafb_dev
*viadev
= pdev
->dev
.platform_data
;
1454 video_unregister_device(&cam
->vdev
);
1455 v4l2_device_unregister(&cam
->v4l2_dev
);
1456 free_irq(viadev
->pdev
->irq
, cam
);
1457 via_sensor_power_release(cam
);
1458 v4l2_ctrl_handler_free(&cam
->ctrl_handler
);
1460 via_cam_info
= NULL
;
1464 static struct platform_driver viacam_driver
= {
1466 .name
= "viafb-camera",
1468 .probe
= viacam_probe
,
1469 .remove
= viacam_remove
,
1472 module_platform_driver(viacam_driver
);