2 * V4L2 SoC Camera driver for OMAP1 Camera Interface
4 * Copyright (C) 2010, Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
6 * Based on V4L2 Driver for i.MXL/i.MXL camera (CSI) host
7 * Copyright (C) 2008, Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
8 * Copyright (C) 2009, Darius Augulis <augulis.darius@gmail.com>
10 * Based on PXA SoC camera driver
11 * Copyright (C) 2006, Sascha Hauer, Pengutronix
12 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
14 * Hardware specific bits initialy based on former work by Matt Callow
15 * drivers/media/platform/omap/omap1510cam.c
16 * Copyright (C) 2006 Matt Callow
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License version 2 as
20 * published by the Free Software Foundation.
24 #include <linux/clk.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/interrupt.h>
27 #include <linux/module.h>
28 #include <linux/platform_device.h>
29 #include <linux/slab.h>
31 #include <media/omap1_camera.h>
32 #include <media/soc_camera.h>
33 #include <media/soc_mediabus.h>
34 #include <media/videobuf-dma-contig.h>
35 #include <media/videobuf-dma-sg.h>
37 #include <linux/omap-dma.h>
40 #define DRIVER_NAME "omap1-camera"
41 #define DRIVER_VERSION "0.0.2"
43 #define OMAP_DMA_CAMERA_IF_RX 20
46 * ---------------------------------------------------------------------------
47 * OMAP1 Camera Interface registers
48 * ---------------------------------------------------------------------------
51 #define REG_CTRLCLOCK 0x00
52 #define REG_IT_STATUS 0x04
54 #define REG_STATUS 0x0C
55 #define REG_CAMDATA 0x10
57 #define REG_PEAK_COUNTER 0x18
59 /* CTRLCLOCK bit shifts */
60 #define LCLK_EN BIT(7)
61 #define DPLL_EN BIT(6)
62 #define MCLK_EN BIT(5)
63 #define CAMEXCLK_EN BIT(4)
65 #define FOSCMOD_SHIFT 0
66 #define FOSCMOD_MASK (0x7 << FOSCMOD_SHIFT)
67 #define FOSCMOD_12MHz 0x0
68 #define FOSCMOD_6MHz 0x2
69 #define FOSCMOD_9_6MHz 0x4
70 #define FOSCMOD_24MHz 0x5
71 #define FOSCMOD_8MHz 0x6
73 /* IT_STATUS bit shifts */
74 #define DATA_TRANSFER BIT(5)
75 #define FIFO_FULL BIT(4)
82 #define RAZ_FIFO BIT(18)
83 #define EN_FIFO_FULL BIT(17)
84 #define EN_NIRQ BIT(16)
85 #define THRESHOLD_SHIFT 9
86 #define THRESHOLD_MASK (0x7f << THRESHOLD_SHIFT)
88 #define EN_H_DOWN BIT(7)
89 #define EN_H_UP BIT(6)
90 #define EN_V_DOWN BIT(5)
91 #define EN_V_UP BIT(4)
92 #define ORDERCAMD BIT(3)
94 #define IRQ_MASK (EN_V_UP | EN_V_DOWN | EN_H_UP | EN_H_DOWN | \
95 EN_NIRQ | EN_FIFO_FULL)
97 /* STATUS bit shifts */
98 #define HSTATUS BIT(1)
99 #define VSTATUS BIT(0)
101 /* GPIO bit shifts */
102 #define CAM_RST BIT(0)
104 /* end of OMAP1 Camera Interface registers */
107 #define SOCAM_BUS_FLAGS (V4L2_MBUS_MASTER | \
108 V4L2_MBUS_HSYNC_ACTIVE_HIGH | V4L2_MBUS_VSYNC_ACTIVE_HIGH | \
109 V4L2_MBUS_PCLK_SAMPLE_RISING | V4L2_MBUS_PCLK_SAMPLE_FALLING | \
110 V4L2_MBUS_DATA_ACTIVE_HIGH)
113 #define FIFO_SIZE ((THRESHOLD_MASK >> THRESHOLD_SHIFT) + 1)
114 #define FIFO_SHIFT __fls(FIFO_SIZE)
116 #define DMA_BURST_SHIFT (1 + OMAP_DMA_DATA_BURST_4)
117 #define DMA_BURST_SIZE (1 << DMA_BURST_SHIFT)
119 #define DMA_ELEMENT_SHIFT OMAP_DMA_DATA_TYPE_S32
120 #define DMA_ELEMENT_SIZE (1 << DMA_ELEMENT_SHIFT)
122 #define DMA_FRAME_SHIFT_CONTIG (FIFO_SHIFT - 1)
123 #define DMA_FRAME_SHIFT_SG DMA_BURST_SHIFT
125 #define DMA_FRAME_SHIFT(x) ((x) == OMAP1_CAM_DMA_CONTIG ? \
126 DMA_FRAME_SHIFT_CONTIG : \
128 #define DMA_FRAME_SIZE(x) (1 << DMA_FRAME_SHIFT(x))
129 #define DMA_SYNC OMAP_DMA_SYNC_FRAME
130 #define THRESHOLD_LEVEL DMA_FRAME_SIZE
133 #define MAX_VIDEO_MEM 4 /* arbitrary video memory limit in MB */
140 /* buffer for one video frame */
141 struct omap1_cam_buf
{
142 struct videobuf_buffer vb
;
143 enum v4l2_mbus_pixelcode code
;
145 struct scatterlist
*sgbuf
;
148 enum videobuf_state result
;
151 struct omap1_cam_dev
{
152 struct soc_camera_host soc_host
;
153 struct soc_camera_device
*icd
;
161 struct omap1_cam_platform_data
*pdata
;
162 struct resource
*res
;
163 unsigned long pflags
;
164 unsigned long camexclk
;
166 struct list_head capture
;
168 /* lock used to protect videobuf */
171 /* Pointers to DMA buffers */
172 struct omap1_cam_buf
*active
;
173 struct omap1_cam_buf
*ready
;
175 enum omap1_cam_vb_mode vb_mode
;
176 int (*mmap_mapper
)(struct videobuf_queue
*q
,
177 struct videobuf_buffer
*buf
,
178 struct vm_area_struct
*vma
);
184 static void cam_write(struct omap1_cam_dev
*pcdev
, u16 reg
, u32 val
)
186 pcdev
->reg_cache
[reg
/ sizeof(u32
)] = val
;
187 __raw_writel(val
, pcdev
->base
+ reg
);
190 static u32
cam_read(struct omap1_cam_dev
*pcdev
, u16 reg
, bool from_cache
)
192 return !from_cache
? __raw_readl(pcdev
->base
+ reg
) :
193 pcdev
->reg_cache
[reg
/ sizeof(u32
)];
196 #define CAM_READ(pcdev, reg) \
197 cam_read(pcdev, REG_##reg, false)
198 #define CAM_WRITE(pcdev, reg, val) \
199 cam_write(pcdev, REG_##reg, val)
200 #define CAM_READ_CACHE(pcdev, reg) \
201 cam_read(pcdev, REG_##reg, true)
204 * Videobuf operations
206 static int omap1_videobuf_setup(struct videobuf_queue
*vq
, unsigned int *count
,
209 struct soc_camera_device
*icd
= vq
->priv_data
;
210 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->parent
);
211 struct omap1_cam_dev
*pcdev
= ici
->priv
;
213 *size
= icd
->sizeimage
;
215 if (!*count
|| *count
< OMAP1_CAMERA_MIN_BUF_COUNT(pcdev
->vb_mode
))
216 *count
= OMAP1_CAMERA_MIN_BUF_COUNT(pcdev
->vb_mode
);
218 if (*size
* *count
> MAX_VIDEO_MEM
* 1024 * 1024)
219 *count
= (MAX_VIDEO_MEM
* 1024 * 1024) / *size
;
222 "%s: count=%d, size=%d\n", __func__
, *count
, *size
);
227 static void free_buffer(struct videobuf_queue
*vq
, struct omap1_cam_buf
*buf
,
228 enum omap1_cam_vb_mode vb_mode
)
230 struct videobuf_buffer
*vb
= &buf
->vb
;
232 BUG_ON(in_interrupt());
234 videobuf_waiton(vq
, vb
, 0, 0);
236 if (vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
237 videobuf_dma_contig_free(vq
, vb
);
239 struct soc_camera_device
*icd
= vq
->priv_data
;
240 struct device
*dev
= icd
->parent
;
241 struct videobuf_dmabuf
*dma
= videobuf_to_dma(vb
);
243 videobuf_dma_unmap(dev
, dma
);
244 videobuf_dma_free(dma
);
247 vb
->state
= VIDEOBUF_NEEDS_INIT
;
250 static int omap1_videobuf_prepare(struct videobuf_queue
*vq
,
251 struct videobuf_buffer
*vb
, enum v4l2_field field
)
253 struct soc_camera_device
*icd
= vq
->priv_data
;
254 struct omap1_cam_buf
*buf
= container_of(vb
, struct omap1_cam_buf
, vb
);
255 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->parent
);
256 struct omap1_cam_dev
*pcdev
= ici
->priv
;
259 WARN_ON(!list_empty(&vb
->queue
));
261 BUG_ON(NULL
== icd
->current_fmt
);
265 if (buf
->code
!= icd
->current_fmt
->code
|| vb
->field
!= field
||
266 vb
->width
!= icd
->user_width
||
267 vb
->height
!= icd
->user_height
) {
268 buf
->code
= icd
->current_fmt
->code
;
269 vb
->width
= icd
->user_width
;
270 vb
->height
= icd
->user_height
;
272 vb
->state
= VIDEOBUF_NEEDS_INIT
;
275 vb
->size
= icd
->sizeimage
;
277 if (vb
->baddr
&& vb
->bsize
< vb
->size
) {
282 if (vb
->state
== VIDEOBUF_NEEDS_INIT
) {
283 ret
= videobuf_iolock(vq
, vb
, NULL
);
287 vb
->state
= VIDEOBUF_PREPARED
;
293 free_buffer(vq
, buf
, pcdev
->vb_mode
);
299 static void set_dma_dest_params(int dma_ch
, struct omap1_cam_buf
*buf
,
300 enum omap1_cam_vb_mode vb_mode
)
303 unsigned int block_size
;
305 if (vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
306 dma_addr
= videobuf_to_dma_contig(&buf
->vb
);
307 block_size
= buf
->vb
.size
;
309 if (WARN_ON(!buf
->sgbuf
)) {
310 buf
->result
= VIDEOBUF_ERROR
;
313 dma_addr
= sg_dma_address(buf
->sgbuf
);
314 if (WARN_ON(!dma_addr
)) {
316 buf
->result
= VIDEOBUF_ERROR
;
319 block_size
= sg_dma_len(buf
->sgbuf
);
320 if (WARN_ON(!block_size
)) {
322 buf
->result
= VIDEOBUF_ERROR
;
325 if (unlikely(buf
->bytes_left
< block_size
))
326 block_size
= buf
->bytes_left
;
327 if (WARN_ON(dma_addr
& (DMA_FRAME_SIZE(vb_mode
) *
328 DMA_ELEMENT_SIZE
- 1))) {
329 dma_addr
= ALIGN(dma_addr
, DMA_FRAME_SIZE(vb_mode
) *
331 block_size
&= ~(DMA_FRAME_SIZE(vb_mode
) *
332 DMA_ELEMENT_SIZE
- 1);
334 buf
->bytes_left
-= block_size
;
338 omap_set_dma_dest_params(dma_ch
,
339 OMAP_DMA_PORT_EMIFF
, OMAP_DMA_AMODE_POST_INC
, dma_addr
, 0, 0);
340 omap_set_dma_transfer_params(dma_ch
,
341 OMAP_DMA_DATA_TYPE_S32
, DMA_FRAME_SIZE(vb_mode
),
342 block_size
>> (DMA_FRAME_SHIFT(vb_mode
) + DMA_ELEMENT_SHIFT
),
346 static struct omap1_cam_buf
*prepare_next_vb(struct omap1_cam_dev
*pcdev
)
348 struct omap1_cam_buf
*buf
;
351 * If there is already a buffer pointed out by the pcdev->ready,
352 * (re)use it, otherwise try to fetch and configure a new one.
356 if (list_empty(&pcdev
->capture
))
358 buf
= list_entry(pcdev
->capture
.next
,
359 struct omap1_cam_buf
, vb
.queue
);
360 buf
->vb
.state
= VIDEOBUF_ACTIVE
;
362 list_del_init(&buf
->vb
.queue
);
365 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
367 * In CONTIG mode, we can safely enter next buffer parameters
368 * into the DMA programming register set after the DMA
369 * has already been activated on the previous buffer
371 set_dma_dest_params(pcdev
->dma_ch
, buf
, pcdev
->vb_mode
);
374 * In SG mode, the above is not safe since there are probably
375 * a bunch of sgbufs from previous sglist still pending.
376 * Instead, mark the sglist fresh for the upcoming
385 static struct scatterlist
*try_next_sgbuf(int dma_ch
, struct omap1_cam_buf
*buf
)
387 struct scatterlist
*sgbuf
;
389 if (likely(buf
->sgbuf
)) {
390 /* current sglist is active */
391 if (unlikely(!buf
->bytes_left
)) {
392 /* indicate sglist complete */
395 /* process next sgbuf */
396 sgbuf
= sg_next(buf
->sgbuf
);
397 if (WARN_ON(!sgbuf
)) {
398 buf
->result
= VIDEOBUF_ERROR
;
399 } else if (WARN_ON(!sg_dma_len(sgbuf
))) {
401 buf
->result
= VIDEOBUF_ERROR
;
406 /* sglist is fresh, initialize it before using */
407 struct videobuf_dmabuf
*dma
= videobuf_to_dma(&buf
->vb
);
410 if (!(WARN_ON(!sgbuf
))) {
413 buf
->bytes_left
= buf
->vb
.size
;
414 buf
->result
= VIDEOBUF_DONE
;
419 * Put our next sgbuf parameters (address, size)
420 * into the DMA programming register set.
422 set_dma_dest_params(dma_ch
, buf
, OMAP1_CAM_DMA_SG
);
427 static void start_capture(struct omap1_cam_dev
*pcdev
)
429 struct omap1_cam_buf
*buf
= pcdev
->active
;
430 u32 ctrlclock
= CAM_READ_CACHE(pcdev
, CTRLCLOCK
);
431 u32 mode
= CAM_READ_CACHE(pcdev
, MODE
) & ~EN_V_DOWN
;
437 * Enable start of frame interrupt, which we will use for activating
438 * our end of frame watchdog when capture actually starts.
442 if (unlikely(ctrlclock
& LCLK_EN
))
443 /* stop pixel clock before FIFO reset */
444 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
& ~LCLK_EN
);
446 CAM_WRITE(pcdev
, MODE
, mode
| RAZ_FIFO
);
448 omap_start_dma(pcdev
->dma_ch
);
450 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_SG
) {
452 * In SG mode, it's a good moment for fetching next sgbuf
453 * from the current sglist and, if available, already putting
454 * its parameters into the DMA programming register set.
456 try_next_sgbuf(pcdev
->dma_ch
, buf
);
459 /* (re)enable pixel clock */
460 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
| LCLK_EN
);
461 /* release FIFO reset */
462 CAM_WRITE(pcdev
, MODE
, mode
);
465 static void suspend_capture(struct omap1_cam_dev
*pcdev
)
467 u32 ctrlclock
= CAM_READ_CACHE(pcdev
, CTRLCLOCK
);
469 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
& ~LCLK_EN
);
470 omap_stop_dma(pcdev
->dma_ch
);
473 static void disable_capture(struct omap1_cam_dev
*pcdev
)
475 u32 mode
= CAM_READ_CACHE(pcdev
, MODE
);
477 CAM_WRITE(pcdev
, MODE
, mode
& ~(IRQ_MASK
| DMA
));
480 static void omap1_videobuf_queue(struct videobuf_queue
*vq
,
481 struct videobuf_buffer
*vb
)
483 struct soc_camera_device
*icd
= vq
->priv_data
;
484 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->parent
);
485 struct omap1_cam_dev
*pcdev
= ici
->priv
;
486 struct omap1_cam_buf
*buf
;
489 list_add_tail(&vb
->queue
, &pcdev
->capture
);
490 vb
->state
= VIDEOBUF_QUEUED
;
494 * Capture in progress, so don't touch pcdev->ready even if
495 * empty. Since the transfer of the DMA programming register set
496 * content to the DMA working register set is done automatically
497 * by the DMA hardware, this can pretty well happen while we
498 * are keeping the lock here. Leave fetching it from the queue
499 * to be done when a next DMA interrupt occures instead.
504 WARN_ON(pcdev
->ready
);
506 buf
= prepare_next_vb(pcdev
);
514 "%s: capture not active, setup FIFO, start DMA\n", __func__
);
515 mode
= CAM_READ_CACHE(pcdev
, MODE
) & ~THRESHOLD_MASK
;
516 mode
|= THRESHOLD_LEVEL(pcdev
->vb_mode
) << THRESHOLD_SHIFT
;
517 CAM_WRITE(pcdev
, MODE
, mode
| EN_FIFO_FULL
| DMA
);
519 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_SG
) {
521 * In SG mode, the above prepare_next_vb() didn't actually
522 * put anything into the DMA programming register set,
523 * so we have to do it now, before activating DMA.
525 try_next_sgbuf(pcdev
->dma_ch
, buf
);
528 start_capture(pcdev
);
531 static void omap1_videobuf_release(struct videobuf_queue
*vq
,
532 struct videobuf_buffer
*vb
)
534 struct omap1_cam_buf
*buf
=
535 container_of(vb
, struct omap1_cam_buf
, vb
);
536 struct soc_camera_device
*icd
= vq
->priv_data
;
537 struct device
*dev
= icd
->parent
;
538 struct soc_camera_host
*ici
= to_soc_camera_host(dev
);
539 struct omap1_cam_dev
*pcdev
= ici
->priv
;
543 dev_dbg(dev
, "%s (done)\n", __func__
);
545 case VIDEOBUF_ACTIVE
:
546 dev_dbg(dev
, "%s (active)\n", __func__
);
548 case VIDEOBUF_QUEUED
:
549 dev_dbg(dev
, "%s (queued)\n", __func__
);
551 case VIDEOBUF_PREPARED
:
552 dev_dbg(dev
, "%s (prepared)\n", __func__
);
555 dev_dbg(dev
, "%s (unknown %d)\n", __func__
, vb
->state
);
559 free_buffer(vq
, buf
, pcdev
->vb_mode
);
562 static void videobuf_done(struct omap1_cam_dev
*pcdev
,
563 enum videobuf_state result
)
565 struct omap1_cam_buf
*buf
= pcdev
->active
;
566 struct videobuf_buffer
*vb
;
567 struct device
*dev
= pcdev
->icd
->parent
;
570 suspend_capture(pcdev
);
571 disable_capture(pcdev
);
575 if (result
== VIDEOBUF_ERROR
)
576 suspend_capture(pcdev
);
579 if (waitqueue_active(&vb
->done
)) {
580 if (!pcdev
->ready
&& result
!= VIDEOBUF_ERROR
) {
582 * No next buffer has been entered into the DMA
583 * programming register set on time (could be done only
584 * while the previous DMA interurpt was processed, not
585 * later), so the last DMA block, be it a whole buffer
586 * if in CONTIG or its last sgbuf if in SG mode, is
587 * about to be reused by the just autoreinitialized DMA
588 * engine, and overwritten with next frame data. Best we
589 * can do is stopping the capture as soon as possible,
590 * hopefully before the next frame start.
592 suspend_capture(pcdev
);
595 v4l2_get_timestamp(&vb
->ts
);
596 if (result
!= VIDEOBUF_ERROR
)
600 /* shift in next buffer */
607 * No next buffer was ready on time (see above), so
608 * indicate error condition to force capture restart or
609 * stop, depending on next buffer already queued or not.
611 result
= VIDEOBUF_ERROR
;
612 prepare_next_vb(pcdev
);
618 } else if (pcdev
->ready
) {
620 * In both CONTIG and SG mode, the DMA engine has possibly
621 * been already autoreinitialized with the preprogrammed
622 * pcdev->ready buffer. We can either accept this fact
623 * and just swap the buffers, or provoke an error condition
624 * and restart capture. The former seems less intrusive.
626 dev_dbg(dev
, "%s: nobody waiting on videobuf, swap with next\n",
628 pcdev
->active
= pcdev
->ready
;
630 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_SG
) {
632 * In SG mode, we have to make sure that the buffer we
633 * are putting back into the pcdev->ready is marked
643 * No next buffer has been entered into
644 * the DMA programming register set on time.
646 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
648 * In CONTIG mode, the DMA engine has already been
649 * reinitialized with the current buffer. Best we can do
650 * is not touching it.
653 "%s: nobody waiting on videobuf, reuse it\n",
657 * In SG mode, the DMA engine has just been
658 * autoreinitialized with the last sgbuf from the
659 * current list. Restart capture in order to transfer
660 * next frame start into the first sgbuf, not the last
663 if (result
!= VIDEOBUF_ERROR
) {
664 suspend_capture(pcdev
);
665 result
= VIDEOBUF_ERROR
;
671 dev_dbg(dev
, "%s: no more videobufs, stop capture\n", __func__
);
672 disable_capture(pcdev
);
676 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
678 * In CONTIG mode, the current buffer parameters had already
679 * been entered into the DMA programming register set while the
680 * buffer was fetched with prepare_next_vb(), they may have also
681 * been transferred into the runtime set and already active if
682 * the DMA still running.
685 /* In SG mode, extra steps are required */
686 if (result
== VIDEOBUF_ERROR
)
687 /* make sure we (re)use sglist from start on error */
691 * In any case, enter the next sgbuf parameters into the DMA
692 * programming register set. They will be used either during
693 * nearest DMA autoreinitialization or, in case of an error,
694 * on DMA startup below.
696 try_next_sgbuf(pcdev
->dma_ch
, buf
);
699 if (result
== VIDEOBUF_ERROR
) {
700 dev_dbg(dev
, "%s: videobuf error; reset FIFO, restart DMA\n",
702 start_capture(pcdev
);
704 * In SG mode, the above also resulted in the next sgbuf
705 * parameters being entered into the DMA programming register
706 * set, making them ready for next DMA autoreinitialization.
711 * Finally, try fetching next buffer.
712 * In CONTIG mode, it will also enter it into the DMA programming
713 * register set, making it ready for next DMA autoreinitialization.
715 prepare_next_vb(pcdev
);
718 static void dma_isr(int channel
, unsigned short status
, void *data
)
720 struct omap1_cam_dev
*pcdev
= data
;
721 struct omap1_cam_buf
*buf
= pcdev
->active
;
724 spin_lock_irqsave(&pcdev
->lock
, flags
);
727 suspend_capture(pcdev
);
728 disable_capture(pcdev
);
732 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
734 * In CONTIG mode, assume we have just managed to collect the
735 * whole frame, hopefully before our end of frame watchdog is
736 * triggered. Then, all we have to do is disabling the watchdog
737 * for this frame, and calling videobuf_done() with success
740 CAM_WRITE(pcdev
, MODE
,
741 CAM_READ_CACHE(pcdev
, MODE
) & ~EN_V_DOWN
);
742 videobuf_done(pcdev
, VIDEOBUF_DONE
);
745 * In SG mode, we have to process every sgbuf from the current
746 * sglist, one after another.
750 * Current sglist not completed yet, try fetching next
751 * sgbuf, hopefully putting it into the DMA programming
752 * register set, making it ready for next DMA
753 * autoreinitialization.
755 try_next_sgbuf(pcdev
->dma_ch
, buf
);
760 * No more sgbufs left in the current sglist. This
761 * doesn't mean that the whole videobuffer is already
762 * complete, but only that the last sgbuf from the
763 * current sglist is about to be filled. It will be
764 * ready on next DMA interrupt, signalled with the
765 * buf->sgbuf set back to NULL.
767 if (buf
->result
!= VIDEOBUF_ERROR
) {
769 * Video frame collected without errors so far,
770 * we can prepare for collecting a next one
771 * as soon as DMA gets autoreinitialized
772 * after the current (last) sgbuf is completed.
774 buf
= prepare_next_vb(pcdev
);
778 try_next_sgbuf(pcdev
->dma_ch
, buf
);
782 /* end of videobuf */
783 videobuf_done(pcdev
, buf
->result
);
787 spin_unlock_irqrestore(&pcdev
->lock
, flags
);
790 static irqreturn_t
cam_isr(int irq
, void *data
)
792 struct omap1_cam_dev
*pcdev
= data
;
793 struct device
*dev
= pcdev
->icd
->parent
;
794 struct omap1_cam_buf
*buf
= pcdev
->active
;
798 it_status
= CAM_READ(pcdev
, IT_STATUS
);
802 spin_lock_irqsave(&pcdev
->lock
, flags
);
805 dev_warn(dev
, "%s: unhandled camera interrupt, status == %#x\n",
806 __func__
, it_status
);
807 suspend_capture(pcdev
);
808 disable_capture(pcdev
);
812 if (unlikely(it_status
& FIFO_FULL
)) {
813 dev_warn(dev
, "%s: FIFO overflow\n", __func__
);
815 } else if (it_status
& V_DOWN
) {
816 /* end of video frame watchdog */
817 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
819 * In CONTIG mode, the watchdog is disabled with
820 * successful DMA end of block interrupt, and reenabled
821 * on next frame start. If we get here, there is nothing
822 * to check, we must be out of sync.
825 if (buf
->sgcount
== 2) {
827 * If exactly 2 sgbufs from the next sglist have
828 * been programmed into the DMA engine (the
829 * first one already transferred into the DMA
830 * runtime register set, the second one still
831 * in the programming set), then we are in sync.
836 dev_notice(dev
, "%s: unexpected end of video frame\n",
839 } else if (it_status
& V_UP
) {
842 if (pcdev
->vb_mode
== OMAP1_CAM_DMA_CONTIG
) {
844 * In CONTIG mode, we need this interrupt every frame
845 * in oredr to reenable our end of frame watchdog.
847 mode
= CAM_READ_CACHE(pcdev
, MODE
);
850 * In SG mode, the below enabled end of frame watchdog
851 * is kept on permanently, so we can turn this one shot
854 mode
= CAM_READ_CACHE(pcdev
, MODE
) & ~EN_V_UP
;
857 if (!(mode
& EN_V_DOWN
)) {
858 /* (re)enable end of frame watchdog interrupt */
861 CAM_WRITE(pcdev
, MODE
, mode
);
865 dev_warn(dev
, "%s: unhandled camera interrupt, status == %#x\n",
866 __func__
, it_status
);
870 videobuf_done(pcdev
, VIDEOBUF_ERROR
);
872 spin_unlock_irqrestore(&pcdev
->lock
, flags
);
876 static struct videobuf_queue_ops omap1_videobuf_ops
= {
877 .buf_setup
= omap1_videobuf_setup
,
878 .buf_prepare
= omap1_videobuf_prepare
,
879 .buf_queue
= omap1_videobuf_queue
,
880 .buf_release
= omap1_videobuf_release
,
885 * SOC Camera host operations
888 static void sensor_reset(struct omap1_cam_dev
*pcdev
, bool reset
)
890 /* apply/release camera sensor reset if requested by platform data */
891 if (pcdev
->pflags
& OMAP1_CAMERA_RST_HIGH
)
892 CAM_WRITE(pcdev
, GPIO
, reset
);
893 else if (pcdev
->pflags
& OMAP1_CAMERA_RST_LOW
)
894 CAM_WRITE(pcdev
, GPIO
, !reset
);
898 * The following two functions absolutely depend on the fact, that
899 * there can be only one camera on OMAP1 camera sensor interface
901 static int omap1_cam_add_device(struct soc_camera_device
*icd
)
903 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->parent
);
904 struct omap1_cam_dev
*pcdev
= ici
->priv
;
910 clk_enable(pcdev
->clk
);
912 /* setup sensor clock */
913 ctrlclock
= CAM_READ(pcdev
, CTRLCLOCK
);
914 ctrlclock
&= ~(CAMEXCLK_EN
| MCLK_EN
| DPLL_EN
);
915 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
);
917 ctrlclock
&= ~FOSCMOD_MASK
;
918 switch (pcdev
->camexclk
) {
920 ctrlclock
|= CAMEXCLK_EN
| FOSCMOD_6MHz
;
923 ctrlclock
|= CAMEXCLK_EN
| FOSCMOD_8MHz
| DPLL_EN
;
926 ctrlclock
|= CAMEXCLK_EN
| FOSCMOD_9_6MHz
| DPLL_EN
;
929 ctrlclock
|= CAMEXCLK_EN
| FOSCMOD_12MHz
;
932 ctrlclock
|= CAMEXCLK_EN
| FOSCMOD_24MHz
| DPLL_EN
;
936 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
& ~DPLL_EN
);
938 /* enable internal clock */
939 ctrlclock
|= MCLK_EN
;
940 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
);
942 sensor_reset(pcdev
, false);
946 dev_dbg(icd
->parent
, "OMAP1 Camera driver attached to camera %d\n",
951 static void omap1_cam_remove_device(struct soc_camera_device
*icd
)
953 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->parent
);
954 struct omap1_cam_dev
*pcdev
= ici
->priv
;
957 BUG_ON(icd
!= pcdev
->icd
);
959 suspend_capture(pcdev
);
960 disable_capture(pcdev
);
962 sensor_reset(pcdev
, true);
964 /* disable and release system clocks */
965 ctrlclock
= CAM_READ_CACHE(pcdev
, CTRLCLOCK
);
966 ctrlclock
&= ~(MCLK_EN
| DPLL_EN
| CAMEXCLK_EN
);
967 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
);
969 ctrlclock
= (ctrlclock
& ~FOSCMOD_MASK
) | FOSCMOD_12MHz
;
970 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
);
971 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
| MCLK_EN
);
973 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
& ~MCLK_EN
);
975 clk_disable(pcdev
->clk
);
980 "OMAP1 Camera driver detached from camera %d\n", icd
->devnum
);
983 /* Duplicate standard formats based on host capability of byte swapping */
984 static const struct soc_mbus_lookup omap1_cam_formats
[] = {
986 .code
= V4L2_MBUS_FMT_UYVY8_2X8
,
988 .fourcc
= V4L2_PIX_FMT_YUYV
,
990 .bits_per_sample
= 8,
991 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
992 .order
= SOC_MBUS_ORDER_BE
,
993 .layout
= SOC_MBUS_LAYOUT_PACKED
,
996 .code
= V4L2_MBUS_FMT_VYUY8_2X8
,
998 .fourcc
= V4L2_PIX_FMT_YVYU
,
1000 .bits_per_sample
= 8,
1001 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1002 .order
= SOC_MBUS_ORDER_BE
,
1003 .layout
= SOC_MBUS_LAYOUT_PACKED
,
1006 .code
= V4L2_MBUS_FMT_YUYV8_2X8
,
1008 .fourcc
= V4L2_PIX_FMT_UYVY
,
1010 .bits_per_sample
= 8,
1011 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1012 .order
= SOC_MBUS_ORDER_BE
,
1013 .layout
= SOC_MBUS_LAYOUT_PACKED
,
1016 .code
= V4L2_MBUS_FMT_YVYU8_2X8
,
1018 .fourcc
= V4L2_PIX_FMT_VYUY
,
1020 .bits_per_sample
= 8,
1021 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1022 .order
= SOC_MBUS_ORDER_BE
,
1023 .layout
= SOC_MBUS_LAYOUT_PACKED
,
1026 .code
= V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE
,
1028 .fourcc
= V4L2_PIX_FMT_RGB555
,
1030 .bits_per_sample
= 8,
1031 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1032 .order
= SOC_MBUS_ORDER_BE
,
1033 .layout
= SOC_MBUS_LAYOUT_PACKED
,
1036 .code
= V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE
,
1038 .fourcc
= V4L2_PIX_FMT_RGB555X
,
1040 .bits_per_sample
= 8,
1041 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1042 .order
= SOC_MBUS_ORDER_BE
,
1043 .layout
= SOC_MBUS_LAYOUT_PACKED
,
1046 .code
= V4L2_MBUS_FMT_RGB565_2X8_BE
,
1048 .fourcc
= V4L2_PIX_FMT_RGB565
,
1050 .bits_per_sample
= 8,
1051 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1052 .order
= SOC_MBUS_ORDER_BE
,
1053 .layout
= SOC_MBUS_LAYOUT_PACKED
,
1056 .code
= V4L2_MBUS_FMT_RGB565_2X8_LE
,
1058 .fourcc
= V4L2_PIX_FMT_RGB565X
,
1060 .bits_per_sample
= 8,
1061 .packing
= SOC_MBUS_PACKING_2X8_PADHI
,
1062 .order
= SOC_MBUS_ORDER_BE
,
1063 .layout
= SOC_MBUS_LAYOUT_PACKED
,
1068 static int omap1_cam_get_formats(struct soc_camera_device
*icd
,
1069 unsigned int idx
, struct soc_camera_format_xlate
*xlate
)
1071 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1072 struct device
*dev
= icd
->parent
;
1073 int formats
= 0, ret
;
1074 enum v4l2_mbus_pixelcode code
;
1075 const struct soc_mbus_pixelfmt
*fmt
;
1077 ret
= v4l2_subdev_call(sd
, video
, enum_mbus_fmt
, idx
, &code
);
1079 /* No more formats */
1082 fmt
= soc_mbus_get_fmtdesc(code
);
1084 dev_warn(dev
, "%s: unsupported format code #%d: %d\n", __func__
,
1089 /* Check support for the requested bits-per-sample */
1090 if (fmt
->bits_per_sample
!= 8)
1094 case V4L2_MBUS_FMT_YUYV8_2X8
:
1095 case V4L2_MBUS_FMT_YVYU8_2X8
:
1096 case V4L2_MBUS_FMT_UYVY8_2X8
:
1097 case V4L2_MBUS_FMT_VYUY8_2X8
:
1098 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE
:
1099 case V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE
:
1100 case V4L2_MBUS_FMT_RGB565_2X8_BE
:
1101 case V4L2_MBUS_FMT_RGB565_2X8_LE
:
1104 xlate
->host_fmt
= soc_mbus_find_fmtdesc(code
,
1106 ARRAY_SIZE(omap1_cam_formats
));
1110 "%s: providing format %s as byte swapped code #%d\n",
1111 __func__
, xlate
->host_fmt
->name
, code
);
1116 "%s: providing format %s in pass-through mode\n",
1117 __func__
, fmt
->name
);
1121 xlate
->host_fmt
= fmt
;
1129 static bool is_dma_aligned(s32 bytes_per_line
, unsigned int height
,
1130 enum omap1_cam_vb_mode vb_mode
)
1132 int size
= bytes_per_line
* height
;
1134 return IS_ALIGNED(bytes_per_line
, DMA_ELEMENT_SIZE
) &&
1135 IS_ALIGNED(size
, DMA_FRAME_SIZE(vb_mode
) * DMA_ELEMENT_SIZE
);
1138 static int dma_align(int *width
, int *height
,
1139 const struct soc_mbus_pixelfmt
*fmt
,
1140 enum omap1_cam_vb_mode vb_mode
, bool enlarge
)
1142 s32 bytes_per_line
= soc_mbus_bytes_per_line(*width
, fmt
);
1144 if (bytes_per_line
< 0)
1145 return bytes_per_line
;
1147 if (!is_dma_aligned(bytes_per_line
, *height
, vb_mode
)) {
1148 unsigned int pxalign
= __fls(bytes_per_line
/ *width
);
1149 unsigned int salign
= DMA_FRAME_SHIFT(vb_mode
) +
1150 DMA_ELEMENT_SHIFT
- pxalign
;
1151 unsigned int incr
= enlarge
<< salign
;
1153 v4l_bound_align_image(width
, 1, *width
+ incr
, 0,
1154 height
, 1, *height
+ incr
, 0, salign
);
1160 #define subdev_call_with_sense(pcdev, dev, icd, sd, function, args...) \
1162 struct soc_camera_sense sense = { \
1163 .master_clock = pcdev->camexclk, \
1164 .pixel_clock_max = 0, \
1169 sense.pixel_clock_max = pcdev->pdata->lclk_khz_max * 1000; \
1170 icd->sense = &sense; \
1171 __ret = v4l2_subdev_call(sd, video, function, ##args); \
1172 icd->sense = NULL; \
1174 if (sense.flags & SOCAM_SENSE_PCLK_CHANGED) { \
1175 if (sense.pixel_clock > sense.pixel_clock_max) { \
1177 "%s: pixel clock %lu set by the camera too high!\n", \
1178 __func__, sense.pixel_clock); \
1185 static int set_mbus_format(struct omap1_cam_dev
*pcdev
, struct device
*dev
,
1186 struct soc_camera_device
*icd
, struct v4l2_subdev
*sd
,
1187 struct v4l2_mbus_framefmt
*mf
,
1188 const struct soc_camera_format_xlate
*xlate
)
1191 int ret
= subdev_call_with_sense(pcdev
, dev
, icd
, sd
, s_mbus_fmt
, mf
);
1194 dev_err(dev
, "%s: s_mbus_fmt failed\n", __func__
);
1198 if (mf
->code
!= xlate
->code
) {
1199 dev_err(dev
, "%s: unexpected pixel code change\n", __func__
);
1203 bytes_per_line
= soc_mbus_bytes_per_line(mf
->width
, xlate
->host_fmt
);
1204 if (bytes_per_line
< 0) {
1205 dev_err(dev
, "%s: soc_mbus_bytes_per_line() failed\n",
1207 return bytes_per_line
;
1210 if (!is_dma_aligned(bytes_per_line
, mf
->height
, pcdev
->vb_mode
)) {
1211 dev_err(dev
, "%s: resulting geometry %ux%u not DMA aligned\n",
1212 __func__
, mf
->width
, mf
->height
);
1218 static int omap1_cam_set_crop(struct soc_camera_device
*icd
,
1219 const struct v4l2_crop
*crop
)
1221 const struct v4l2_rect
*rect
= &crop
->c
;
1222 const struct soc_camera_format_xlate
*xlate
= icd
->current_fmt
;
1223 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1224 struct device
*dev
= icd
->parent
;
1225 struct soc_camera_host
*ici
= to_soc_camera_host(dev
);
1226 struct omap1_cam_dev
*pcdev
= ici
->priv
;
1227 struct v4l2_mbus_framefmt mf
;
1230 ret
= subdev_call_with_sense(pcdev
, dev
, icd
, sd
, s_crop
, crop
);
1232 dev_warn(dev
, "%s: failed to crop to %ux%u@%u:%u\n", __func__
,
1233 rect
->width
, rect
->height
, rect
->left
, rect
->top
);
1237 ret
= v4l2_subdev_call(sd
, video
, g_mbus_fmt
, &mf
);
1239 dev_warn(dev
, "%s: failed to fetch current format\n", __func__
);
1243 ret
= dma_align(&mf
.width
, &mf
.height
, xlate
->host_fmt
, pcdev
->vb_mode
,
1246 dev_err(dev
, "%s: failed to align %ux%u %s with DMA\n",
1247 __func__
, mf
.width
, mf
.height
,
1248 xlate
->host_fmt
->name
);
1253 /* sensor returned geometry not DMA aligned, trying to fix */
1254 ret
= set_mbus_format(pcdev
, dev
, icd
, sd
, &mf
, xlate
);
1256 dev_err(dev
, "%s: failed to set format\n", __func__
);
1261 icd
->user_width
= mf
.width
;
1262 icd
->user_height
= mf
.height
;
1267 static int omap1_cam_set_fmt(struct soc_camera_device
*icd
,
1268 struct v4l2_format
*f
)
1270 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1271 const struct soc_camera_format_xlate
*xlate
;
1272 struct device
*dev
= icd
->parent
;
1273 struct soc_camera_host
*ici
= to_soc_camera_host(dev
);
1274 struct omap1_cam_dev
*pcdev
= ici
->priv
;
1275 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1276 struct v4l2_mbus_framefmt mf
;
1279 xlate
= soc_camera_xlate_by_fourcc(icd
, pix
->pixelformat
);
1281 dev_warn(dev
, "%s: format %#x not found\n", __func__
,
1286 mf
.width
= pix
->width
;
1287 mf
.height
= pix
->height
;
1288 mf
.field
= pix
->field
;
1289 mf
.colorspace
= pix
->colorspace
;
1290 mf
.code
= xlate
->code
;
1292 ret
= dma_align(&mf
.width
, &mf
.height
, xlate
->host_fmt
, pcdev
->vb_mode
,
1295 dev_err(dev
, "%s: failed to align %ux%u %s with DMA\n",
1296 __func__
, pix
->width
, pix
->height
,
1297 xlate
->host_fmt
->name
);
1301 ret
= set_mbus_format(pcdev
, dev
, icd
, sd
, &mf
, xlate
);
1303 dev_err(dev
, "%s: failed to set format\n", __func__
);
1307 pix
->width
= mf
.width
;
1308 pix
->height
= mf
.height
;
1309 pix
->field
= mf
.field
;
1310 pix
->colorspace
= mf
.colorspace
;
1311 icd
->current_fmt
= xlate
;
1316 static int omap1_cam_try_fmt(struct soc_camera_device
*icd
,
1317 struct v4l2_format
*f
)
1319 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1320 const struct soc_camera_format_xlate
*xlate
;
1321 struct v4l2_pix_format
*pix
= &f
->fmt
.pix
;
1322 struct v4l2_mbus_framefmt mf
;
1324 /* TODO: limit to mx1 hardware capabilities */
1326 xlate
= soc_camera_xlate_by_fourcc(icd
, pix
->pixelformat
);
1328 dev_warn(icd
->parent
, "Format %#x not found\n",
1333 mf
.width
= pix
->width
;
1334 mf
.height
= pix
->height
;
1335 mf
.field
= pix
->field
;
1336 mf
.colorspace
= pix
->colorspace
;
1337 mf
.code
= xlate
->code
;
1339 /* limit to sensor capabilities */
1340 ret
= v4l2_subdev_call(sd
, video
, try_mbus_fmt
, &mf
);
1344 pix
->width
= mf
.width
;
1345 pix
->height
= mf
.height
;
1346 pix
->field
= mf
.field
;
1347 pix
->colorspace
= mf
.colorspace
;
1352 static bool sg_mode
;
1355 * Local mmap_mapper wrapper,
1356 * used for detecting videobuf-dma-contig buffer allocation failures
1357 * and switching to videobuf-dma-sg automatically for future attempts.
1359 static int omap1_cam_mmap_mapper(struct videobuf_queue
*q
,
1360 struct videobuf_buffer
*buf
,
1361 struct vm_area_struct
*vma
)
1363 struct soc_camera_device
*icd
= q
->priv_data
;
1364 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->parent
);
1365 struct omap1_cam_dev
*pcdev
= ici
->priv
;
1368 ret
= pcdev
->mmap_mapper(q
, buf
, vma
);
1376 static void omap1_cam_init_videobuf(struct videobuf_queue
*q
,
1377 struct soc_camera_device
*icd
)
1379 struct soc_camera_host
*ici
= to_soc_camera_host(icd
->parent
);
1380 struct omap1_cam_dev
*pcdev
= ici
->priv
;
1383 videobuf_queue_dma_contig_init(q
, &omap1_videobuf_ops
,
1384 icd
->parent
, &pcdev
->lock
,
1385 V4L2_BUF_TYPE_VIDEO_CAPTURE
, V4L2_FIELD_NONE
,
1386 sizeof(struct omap1_cam_buf
), icd
, &ici
->host_lock
);
1388 videobuf_queue_sg_init(q
, &omap1_videobuf_ops
,
1389 icd
->parent
, &pcdev
->lock
,
1390 V4L2_BUF_TYPE_VIDEO_CAPTURE
, V4L2_FIELD_NONE
,
1391 sizeof(struct omap1_cam_buf
), icd
, &ici
->host_lock
);
1393 /* use videobuf mode (auto)selected with the module parameter */
1394 pcdev
->vb_mode
= sg_mode
? OMAP1_CAM_DMA_SG
: OMAP1_CAM_DMA_CONTIG
;
1397 * Ensure we substitute the videobuf-dma-contig version of the
1398 * mmap_mapper() callback with our own wrapper, used for switching
1399 * automatically to videobuf-dma-sg on buffer allocation failure.
1401 if (!sg_mode
&& q
->int_ops
->mmap_mapper
!= omap1_cam_mmap_mapper
) {
1402 pcdev
->mmap_mapper
= q
->int_ops
->mmap_mapper
;
1403 q
->int_ops
->mmap_mapper
= omap1_cam_mmap_mapper
;
1407 static int omap1_cam_reqbufs(struct soc_camera_device
*icd
,
1408 struct v4l2_requestbuffers
*p
)
1413 * This is for locking debugging only. I removed spinlocks and now I
1414 * check whether .prepare is ever called on a linked buffer, or whether
1415 * a dma IRQ can occur for an in-work or unlinked buffer. Until now
1416 * it hadn't triggered
1418 for (i
= 0; i
< p
->count
; i
++) {
1419 struct omap1_cam_buf
*buf
= container_of(icd
->vb_vidq
.bufs
[i
],
1420 struct omap1_cam_buf
, vb
);
1422 INIT_LIST_HEAD(&buf
->vb
.queue
);
1428 static int omap1_cam_querycap(struct soc_camera_host
*ici
,
1429 struct v4l2_capability
*cap
)
1431 /* cap->name is set by the friendly caller:-> */
1432 strlcpy(cap
->card
, "OMAP1 Camera", sizeof(cap
->card
));
1433 cap
->capabilities
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
1438 static int omap1_cam_set_bus_param(struct soc_camera_device
*icd
)
1440 struct v4l2_subdev
*sd
= soc_camera_to_subdev(icd
);
1441 struct device
*dev
= icd
->parent
;
1442 struct soc_camera_host
*ici
= to_soc_camera_host(dev
);
1443 struct omap1_cam_dev
*pcdev
= ici
->priv
;
1444 u32 pixfmt
= icd
->current_fmt
->host_fmt
->fourcc
;
1445 const struct soc_camera_format_xlate
*xlate
;
1446 const struct soc_mbus_pixelfmt
*fmt
;
1447 struct v4l2_mbus_config cfg
= {.type
= V4L2_MBUS_PARALLEL
,};
1448 unsigned long common_flags
;
1449 u32 ctrlclock
, mode
;
1452 ret
= v4l2_subdev_call(sd
, video
, g_mbus_config
, &cfg
);
1454 common_flags
= soc_mbus_config_compatible(&cfg
, SOCAM_BUS_FLAGS
);
1455 if (!common_flags
) {
1457 "Flags incompatible: camera 0x%x, host 0x%x\n",
1458 cfg
.flags
, SOCAM_BUS_FLAGS
);
1461 } else if (ret
!= -ENOIOCTLCMD
) {
1464 common_flags
= SOCAM_BUS_FLAGS
;
1467 /* Make choices, possibly based on platform configuration */
1468 if ((common_flags
& V4L2_MBUS_PCLK_SAMPLE_RISING
) &&
1469 (common_flags
& V4L2_MBUS_PCLK_SAMPLE_FALLING
)) {
1470 if (!pcdev
->pdata
||
1471 pcdev
->pdata
->flags
& OMAP1_CAMERA_LCLK_RISING
)
1472 common_flags
&= ~V4L2_MBUS_PCLK_SAMPLE_FALLING
;
1474 common_flags
&= ~V4L2_MBUS_PCLK_SAMPLE_RISING
;
1477 cfg
.flags
= common_flags
;
1478 ret
= v4l2_subdev_call(sd
, video
, s_mbus_config
, &cfg
);
1479 if (ret
< 0 && ret
!= -ENOIOCTLCMD
) {
1480 dev_dbg(dev
, "camera s_mbus_config(0x%lx) returned %d\n",
1485 ctrlclock
= CAM_READ_CACHE(pcdev
, CTRLCLOCK
);
1486 if (ctrlclock
& LCLK_EN
)
1487 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
& ~LCLK_EN
);
1489 if (common_flags
& V4L2_MBUS_PCLK_SAMPLE_RISING
) {
1490 dev_dbg(dev
, "CTRLCLOCK_REG |= POLCLK\n");
1491 ctrlclock
|= POLCLK
;
1493 dev_dbg(dev
, "CTRLCLOCK_REG &= ~POLCLK\n");
1494 ctrlclock
&= ~POLCLK
;
1496 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
& ~LCLK_EN
);
1498 if (ctrlclock
& LCLK_EN
)
1499 CAM_WRITE(pcdev
, CTRLCLOCK
, ctrlclock
);
1501 /* select bus endianess */
1502 xlate
= soc_camera_xlate_by_fourcc(icd
, pixfmt
);
1503 fmt
= xlate
->host_fmt
;
1505 mode
= CAM_READ(pcdev
, MODE
) & ~(RAZ_FIFO
| IRQ_MASK
| DMA
);
1506 if (fmt
->order
== SOC_MBUS_ORDER_LE
) {
1507 dev_dbg(dev
, "MODE_REG &= ~ORDERCAMD\n");
1508 CAM_WRITE(pcdev
, MODE
, mode
& ~ORDERCAMD
);
1510 dev_dbg(dev
, "MODE_REG |= ORDERCAMD\n");
1511 CAM_WRITE(pcdev
, MODE
, mode
| ORDERCAMD
);
1517 static unsigned int omap1_cam_poll(struct file
*file
, poll_table
*pt
)
1519 struct soc_camera_device
*icd
= file
->private_data
;
1520 struct omap1_cam_buf
*buf
;
1522 buf
= list_entry(icd
->vb_vidq
.stream
.next
, struct omap1_cam_buf
,
1525 poll_wait(file
, &buf
->vb
.done
, pt
);
1527 if (buf
->vb
.state
== VIDEOBUF_DONE
||
1528 buf
->vb
.state
== VIDEOBUF_ERROR
)
1529 return POLLIN
| POLLRDNORM
;
1534 static struct soc_camera_host_ops omap1_host_ops
= {
1535 .owner
= THIS_MODULE
,
1536 .add
= omap1_cam_add_device
,
1537 .remove
= omap1_cam_remove_device
,
1538 .get_formats
= omap1_cam_get_formats
,
1539 .set_crop
= omap1_cam_set_crop
,
1540 .set_fmt
= omap1_cam_set_fmt
,
1541 .try_fmt
= omap1_cam_try_fmt
,
1542 .init_videobuf
= omap1_cam_init_videobuf
,
1543 .reqbufs
= omap1_cam_reqbufs
,
1544 .querycap
= omap1_cam_querycap
,
1545 .set_bus_param
= omap1_cam_set_bus_param
,
1546 .poll
= omap1_cam_poll
,
1549 static int omap1_cam_probe(struct platform_device
*pdev
)
1551 struct omap1_cam_dev
*pcdev
;
1552 struct resource
*res
;
1558 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1559 irq
= platform_get_irq(pdev
, 0);
1560 if (!res
|| (int)irq
<= 0) {
1565 clk
= clk_get(&pdev
->dev
, "armper_ck");
1571 pcdev
= kzalloc(sizeof(*pcdev
) + resource_size(res
), GFP_KERNEL
);
1573 dev_err(&pdev
->dev
, "Could not allocate pcdev\n");
1581 pcdev
->pdata
= pdev
->dev
.platform_data
;
1583 pcdev
->pflags
= pcdev
->pdata
->flags
;
1584 pcdev
->camexclk
= pcdev
->pdata
->camexclk_khz
* 1000;
1587 switch (pcdev
->camexclk
) {
1595 /* pcdev->camexclk != 0 => pcdev->pdata != NULL */
1596 dev_warn(&pdev
->dev
,
1597 "Incorrect sensor clock frequency %ld kHz, "
1598 "should be one of 0, 6, 8, 9.6, 12 or 24 MHz, "
1599 "please correct your platform data\n",
1600 pcdev
->pdata
->camexclk_khz
);
1601 pcdev
->camexclk
= 0;
1603 dev_info(&pdev
->dev
, "Not providing sensor clock\n");
1606 INIT_LIST_HEAD(&pcdev
->capture
);
1607 spin_lock_init(&pcdev
->lock
);
1610 * Request the region.
1612 if (!request_mem_region(res
->start
, resource_size(res
), DRIVER_NAME
)) {
1617 base
= ioremap(res
->start
, resource_size(res
));
1625 sensor_reset(pcdev
, true);
1627 err
= omap_request_dma(OMAP_DMA_CAMERA_IF_RX
, DRIVER_NAME
,
1628 dma_isr
, (void *)pcdev
, &pcdev
->dma_ch
);
1630 dev_err(&pdev
->dev
, "Can't request DMA for OMAP1 Camera\n");
1634 dev_dbg(&pdev
->dev
, "got DMA channel %d\n", pcdev
->dma_ch
);
1636 /* preconfigure DMA */
1637 omap_set_dma_src_params(pcdev
->dma_ch
, OMAP_DMA_PORT_TIPB
,
1638 OMAP_DMA_AMODE_CONSTANT
, res
->start
+ REG_CAMDATA
,
1640 omap_set_dma_dest_burst_mode(pcdev
->dma_ch
, OMAP_DMA_DATA_BURST_4
);
1641 /* setup DMA autoinitialization */
1642 omap_dma_link_lch(pcdev
->dma_ch
, pcdev
->dma_ch
);
1644 err
= request_irq(pcdev
->irq
, cam_isr
, 0, DRIVER_NAME
, pcdev
);
1646 dev_err(&pdev
->dev
, "Camera interrupt register failed\n");
1650 pcdev
->soc_host
.drv_name
= DRIVER_NAME
;
1651 pcdev
->soc_host
.ops
= &omap1_host_ops
;
1652 pcdev
->soc_host
.priv
= pcdev
;
1653 pcdev
->soc_host
.v4l2_dev
.dev
= &pdev
->dev
;
1654 pcdev
->soc_host
.nr
= pdev
->id
;
1656 err
= soc_camera_host_register(&pcdev
->soc_host
);
1660 dev_info(&pdev
->dev
, "OMAP1 Camera Interface driver loaded\n");
1665 free_irq(pcdev
->irq
, pcdev
);
1667 omap_free_dma(pcdev
->dma_ch
);
1671 release_mem_region(res
->start
, resource_size(res
));
1680 static int omap1_cam_remove(struct platform_device
*pdev
)
1682 struct soc_camera_host
*soc_host
= to_soc_camera_host(&pdev
->dev
);
1683 struct omap1_cam_dev
*pcdev
= container_of(soc_host
,
1684 struct omap1_cam_dev
, soc_host
);
1685 struct resource
*res
;
1687 free_irq(pcdev
->irq
, pcdev
);
1689 omap_free_dma(pcdev
->dma_ch
);
1691 soc_camera_host_unregister(soc_host
);
1693 iounmap(pcdev
->base
);
1696 release_mem_region(res
->start
, resource_size(res
));
1698 clk_put(pcdev
->clk
);
1702 dev_info(&pdev
->dev
, "OMAP1 Camera Interface driver unloaded\n");
1707 static struct platform_driver omap1_cam_driver
= {
1709 .name
= DRIVER_NAME
,
1711 .probe
= omap1_cam_probe
,
1712 .remove
= omap1_cam_remove
,
1715 module_platform_driver(omap1_cam_driver
);
1717 module_param(sg_mode
, bool, 0644);
1718 MODULE_PARM_DESC(sg_mode
, "videobuf mode, 0: dma-contig (default), 1: dma-sg");
1720 MODULE_DESCRIPTION("OMAP1 Camera Interface driver");
1721 MODULE_AUTHOR("Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>");
1722 MODULE_LICENSE("GPL v2");
1723 MODULE_VERSION(DRIVER_VERSION
);
1724 MODULE_ALIAS("platform:" DRIVER_NAME
);