3 * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
5 * Copyright (C) 2005-2007 Freescale Semiconductor, Inc. All Rights Reserved.
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/dma-mapping.h>
13 #include <linux/init.h>
14 #include <linux/platform_device.h>
15 #include <linux/err.h>
16 #include <linux/spinlock.h>
17 #include <linux/delay.h>
18 #include <linux/list.h>
19 #include <linux/clk.h>
20 #include <linux/vmalloc.h>
21 #include <linux/string.h>
22 #include <linux/interrupt.h>
24 #include <linux/module.h>
28 #include "ipu_intern.h"
30 #define FS_VF_IN_VALID 0x00000002
31 #define FS_ENC_IN_VALID 0x00000001
33 static int ipu_disable_channel(struct idmac
*idmac
, struct idmac_channel
*ichan
,
37 * There can be only one, we could allocate it dynamically, but then we'd have
38 * to add an extra parameter to some functions, and use something as ugly as
39 * struct ipu *ipu = to_ipu(to_idmac(ichan->dma_chan.device));
42 static struct ipu ipu_data
;
44 #define to_ipu(id) container_of(id, struct ipu, idmac)
46 static u32
__idmac_read_icreg(struct ipu
*ipu
, unsigned long reg
)
48 return __raw_readl(ipu
->reg_ic
+ reg
);
51 #define idmac_read_icreg(ipu, reg) __idmac_read_icreg(ipu, reg - IC_CONF)
53 static void __idmac_write_icreg(struct ipu
*ipu
, u32 value
, unsigned long reg
)
55 __raw_writel(value
, ipu
->reg_ic
+ reg
);
58 #define idmac_write_icreg(ipu, v, reg) __idmac_write_icreg(ipu, v, reg - IC_CONF)
60 static u32
idmac_read_ipureg(struct ipu
*ipu
, unsigned long reg
)
62 return __raw_readl(ipu
->reg_ipu
+ reg
);
65 static void idmac_write_ipureg(struct ipu
*ipu
, u32 value
, unsigned long reg
)
67 __raw_writel(value
, ipu
->reg_ipu
+ reg
);
70 /*****************************************************************************
71 * IPU / IC common functions
73 static void dump_idmac_reg(struct ipu
*ipu
)
75 dev_dbg(ipu
->dev
, "IDMAC_CONF 0x%x, IC_CONF 0x%x, IDMAC_CHA_EN 0x%x, "
76 "IDMAC_CHA_PRI 0x%x, IDMAC_CHA_BUSY 0x%x\n",
77 idmac_read_icreg(ipu
, IDMAC_CONF
),
78 idmac_read_icreg(ipu
, IC_CONF
),
79 idmac_read_icreg(ipu
, IDMAC_CHA_EN
),
80 idmac_read_icreg(ipu
, IDMAC_CHA_PRI
),
81 idmac_read_icreg(ipu
, IDMAC_CHA_BUSY
));
82 dev_dbg(ipu
->dev
, "BUF0_RDY 0x%x, BUF1_RDY 0x%x, CUR_BUF 0x%x, "
83 "DB_MODE 0x%x, TASKS_STAT 0x%x\n",
84 idmac_read_ipureg(ipu
, IPU_CHA_BUF0_RDY
),
85 idmac_read_ipureg(ipu
, IPU_CHA_BUF1_RDY
),
86 idmac_read_ipureg(ipu
, IPU_CHA_CUR_BUF
),
87 idmac_read_ipureg(ipu
, IPU_CHA_DB_MODE_SEL
),
88 idmac_read_ipureg(ipu
, IPU_TASKS_STAT
));
91 static uint32_t bytes_per_pixel(enum pixel_fmt fmt
)
94 case IPU_PIX_FMT_GENERIC
: /* generic data */
95 case IPU_PIX_FMT_RGB332
:
96 case IPU_PIX_FMT_YUV420P
:
97 case IPU_PIX_FMT_YUV422P
:
100 case IPU_PIX_FMT_RGB565
:
101 case IPU_PIX_FMT_YUYV
:
102 case IPU_PIX_FMT_UYVY
:
104 case IPU_PIX_FMT_BGR24
:
105 case IPU_PIX_FMT_RGB24
:
107 case IPU_PIX_FMT_GENERIC_32
: /* generic data */
108 case IPU_PIX_FMT_BGR32
:
109 case IPU_PIX_FMT_RGB32
:
110 case IPU_PIX_FMT_ABGR32
:
115 /* Enable direct write to memory by the Camera Sensor Interface */
116 static void ipu_ic_enable_task(struct ipu
*ipu
, enum ipu_channel channel
)
118 uint32_t ic_conf
, mask
;
122 mask
= IC_CONF_PRPENC_EN
;
125 mask
= IC_CONF_RWS_EN
| IC_CONF_PRPENC_EN
;
130 ic_conf
= idmac_read_icreg(ipu
, IC_CONF
) | mask
;
131 idmac_write_icreg(ipu
, ic_conf
, IC_CONF
);
134 /* Called under spin_lock_irqsave(&ipu_data.lock) */
135 static void ipu_ic_disable_task(struct ipu
*ipu
, enum ipu_channel channel
)
137 uint32_t ic_conf
, mask
;
141 mask
= IC_CONF_PRPENC_EN
;
144 mask
= IC_CONF_RWS_EN
| IC_CONF_PRPENC_EN
;
149 ic_conf
= idmac_read_icreg(ipu
, IC_CONF
) & ~mask
;
150 idmac_write_icreg(ipu
, ic_conf
, IC_CONF
);
153 static uint32_t ipu_channel_status(struct ipu
*ipu
, enum ipu_channel channel
)
155 uint32_t stat
= TASK_STAT_IDLE
;
156 uint32_t task_stat_reg
= idmac_read_ipureg(ipu
, IPU_TASKS_STAT
);
160 stat
= (task_stat_reg
& TSTAT_CSI2MEM_MASK
) >>
161 TSTAT_CSI2MEM_OFFSET
;
172 struct chan_param_mem_planar
{
210 } __attribute__ ((packed
));
212 struct chan_param_mem_interleaved
{
269 } __attribute__ ((packed
));
271 union chan_param_mem
{
272 struct chan_param_mem_planar pp
;
273 struct chan_param_mem_interleaved ip
;
276 static void ipu_ch_param_set_plane_offset(union chan_param_mem
*params
,
277 u32 u_offset
, u32 v_offset
)
279 params
->pp
.ubo_l
= u_offset
& 0x7ff;
280 params
->pp
.ubo_h
= u_offset
>> 11;
281 params
->pp
.vbo_l
= v_offset
& 0x1ffff;
282 params
->pp
.vbo_h
= v_offset
>> 17;
285 static void ipu_ch_param_set_size(union chan_param_mem
*params
,
286 uint32_t pixel_fmt
, uint16_t width
,
287 uint16_t height
, uint16_t stride
)
292 params
->pp
.fw
= width
- 1;
293 params
->pp
.fh_l
= height
- 1;
294 params
->pp
.fh_h
= (height
- 1) >> 8;
295 params
->pp
.sl
= stride
- 1;
298 case IPU_PIX_FMT_GENERIC
:
299 /*Represents 8-bit Generic data */
303 params
->pp
.sat
= 2; /* SAT = use 32-bit access */
305 case IPU_PIX_FMT_GENERIC_32
:
306 /*Represents 32-bit Generic data */
310 params
->pp
.sat
= 2; /* SAT = use 32-bit access */
312 case IPU_PIX_FMT_RGB565
:
316 params
->ip
.sat
= 2; /* SAT = 32-bit access */
317 params
->ip
.ofs0
= 0; /* Red bit offset */
318 params
->ip
.ofs1
= 5; /* Green bit offset */
319 params
->ip
.ofs2
= 11; /* Blue bit offset */
320 params
->ip
.ofs3
= 16; /* Alpha bit offset */
321 params
->ip
.wid0
= 4; /* Red bit width - 1 */
322 params
->ip
.wid1
= 5; /* Green bit width - 1 */
323 params
->ip
.wid2
= 4; /* Blue bit width - 1 */
325 case IPU_PIX_FMT_BGR24
:
326 params
->ip
.bpp
= 1; /* 24 BPP & RGB PFS */
329 params
->ip
.sat
= 2; /* SAT = 32-bit access */
330 params
->ip
.ofs0
= 0; /* Red bit offset */
331 params
->ip
.ofs1
= 8; /* Green bit offset */
332 params
->ip
.ofs2
= 16; /* Blue bit offset */
333 params
->ip
.ofs3
= 24; /* Alpha bit offset */
334 params
->ip
.wid0
= 7; /* Red bit width - 1 */
335 params
->ip
.wid1
= 7; /* Green bit width - 1 */
336 params
->ip
.wid2
= 7; /* Blue bit width - 1 */
338 case IPU_PIX_FMT_RGB24
:
339 params
->ip
.bpp
= 1; /* 24 BPP & RGB PFS */
342 params
->ip
.sat
= 2; /* SAT = 32-bit access */
343 params
->ip
.ofs0
= 16; /* Red bit offset */
344 params
->ip
.ofs1
= 8; /* Green bit offset */
345 params
->ip
.ofs2
= 0; /* Blue bit offset */
346 params
->ip
.ofs3
= 24; /* Alpha bit offset */
347 params
->ip
.wid0
= 7; /* Red bit width - 1 */
348 params
->ip
.wid1
= 7; /* Green bit width - 1 */
349 params
->ip
.wid2
= 7; /* Blue bit width - 1 */
351 case IPU_PIX_FMT_BGRA32
:
352 case IPU_PIX_FMT_BGR32
:
353 case IPU_PIX_FMT_ABGR32
:
357 params
->ip
.sat
= 2; /* SAT = 32-bit access */
358 params
->ip
.ofs0
= 8; /* Red bit offset */
359 params
->ip
.ofs1
= 16; /* Green bit offset */
360 params
->ip
.ofs2
= 24; /* Blue bit offset */
361 params
->ip
.ofs3
= 0; /* Alpha bit offset */
362 params
->ip
.wid0
= 7; /* Red bit width - 1 */
363 params
->ip
.wid1
= 7; /* Green bit width - 1 */
364 params
->ip
.wid2
= 7; /* Blue bit width - 1 */
365 params
->ip
.wid3
= 7; /* Alpha bit width - 1 */
367 case IPU_PIX_FMT_RGBA32
:
368 case IPU_PIX_FMT_RGB32
:
372 params
->ip
.sat
= 2; /* SAT = 32-bit access */
373 params
->ip
.ofs0
= 24; /* Red bit offset */
374 params
->ip
.ofs1
= 16; /* Green bit offset */
375 params
->ip
.ofs2
= 8; /* Blue bit offset */
376 params
->ip
.ofs3
= 0; /* Alpha bit offset */
377 params
->ip
.wid0
= 7; /* Red bit width - 1 */
378 params
->ip
.wid1
= 7; /* Green bit width - 1 */
379 params
->ip
.wid2
= 7; /* Blue bit width - 1 */
380 params
->ip
.wid3
= 7; /* Alpha bit width - 1 */
382 case IPU_PIX_FMT_UYVY
:
386 params
->ip
.sat
= 2; /* SAT = 32-bit access */
388 case IPU_PIX_FMT_YUV420P2
:
389 case IPU_PIX_FMT_YUV420P
:
393 params
->ip
.sat
= 2; /* SAT = 32-bit access */
394 u_offset
= stride
* height
;
395 v_offset
= u_offset
+ u_offset
/ 4;
396 ipu_ch_param_set_plane_offset(params
, u_offset
, v_offset
);
398 case IPU_PIX_FMT_YVU422P
:
402 params
->ip
.sat
= 2; /* SAT = 32-bit access */
403 v_offset
= stride
* height
;
404 u_offset
= v_offset
+ v_offset
/ 2;
405 ipu_ch_param_set_plane_offset(params
, u_offset
, v_offset
);
407 case IPU_PIX_FMT_YUV422P
:
411 params
->ip
.sat
= 2; /* SAT = 32-bit access */
412 u_offset
= stride
* height
;
413 v_offset
= u_offset
+ u_offset
/ 2;
414 ipu_ch_param_set_plane_offset(params
, u_offset
, v_offset
);
417 dev_err(ipu_data
.dev
,
418 "mx3 ipu: unimplemented pixel format %d\n", pixel_fmt
);
425 static void ipu_ch_param_set_buffer(union chan_param_mem
*params
,
426 dma_addr_t buf0
, dma_addr_t buf1
)
428 params
->pp
.eba0
= buf0
;
429 params
->pp
.eba1
= buf1
;
432 static void ipu_ch_param_set_rotation(union chan_param_mem
*params
,
433 enum ipu_rotate_mode rotate
)
435 params
->pp
.bam
= rotate
;
438 static void ipu_write_param_mem(uint32_t addr
, uint32_t *data
,
441 for (; num_words
> 0; num_words
--) {
442 dev_dbg(ipu_data
.dev
,
443 "write param mem - addr = 0x%08X, data = 0x%08X\n",
445 idmac_write_ipureg(&ipu_data
, addr
, IPU_IMA_ADDR
);
446 idmac_write_ipureg(&ipu_data
, *data
++, IPU_IMA_DATA
);
448 if ((addr
& 0x7) == 5) {
449 addr
&= ~0x7; /* set to word 0 */
450 addr
+= 8; /* increment to next row */
455 static int calc_resize_coeffs(uint32_t in_size
, uint32_t out_size
,
456 uint32_t *resize_coeff
,
457 uint32_t *downsize_coeff
)
460 uint32_t temp_downsize
;
462 *resize_coeff
= 1 << 13;
463 *downsize_coeff
= 1 << 13;
465 /* Cannot downsize more than 8:1 */
466 if (out_size
<< 3 < in_size
)
469 /* compute downsizing coefficient */
472 while (temp_size
>= out_size
* 2 && temp_downsize
< 2) {
476 *downsize_coeff
= temp_downsize
;
479 * compute resizing coefficient using the following formula:
480 * resize_coeff = M*(SI -1)/(SO - 1)
481 * where M = 2^13, SI - input size, SO - output size
483 *resize_coeff
= (8192L * (temp_size
- 1)) / (out_size
- 1);
484 if (*resize_coeff
>= 16384L) {
485 dev_err(ipu_data
.dev
, "Warning! Overflow on resize coeff.\n");
486 *resize_coeff
= 0x3FFF;
489 dev_dbg(ipu_data
.dev
, "resizing from %u -> %u pixels, "
490 "downsize=%u, resize=%u.%lu (reg=%u)\n", in_size
, out_size
,
491 *downsize_coeff
, *resize_coeff
>= 8192L ? 1 : 0,
492 ((*resize_coeff
& 0x1FFF) * 10000L) / 8192L, *resize_coeff
);
497 static enum ipu_color_space
format_to_colorspace(enum pixel_fmt fmt
)
500 case IPU_PIX_FMT_RGB565
:
501 case IPU_PIX_FMT_BGR24
:
502 case IPU_PIX_FMT_RGB24
:
503 case IPU_PIX_FMT_BGR32
:
504 case IPU_PIX_FMT_RGB32
:
505 return IPU_COLORSPACE_RGB
;
507 return IPU_COLORSPACE_YCBCR
;
511 static int ipu_ic_init_prpenc(struct ipu
*ipu
,
512 union ipu_channel_param
*params
, bool src_is_csi
)
514 uint32_t reg
, ic_conf
;
515 uint32_t downsize_coeff
, resize_coeff
;
516 enum ipu_color_space in_fmt
, out_fmt
;
518 /* Setup vertical resizing */
519 calc_resize_coeffs(params
->video
.in_height
,
520 params
->video
.out_height
,
521 &resize_coeff
, &downsize_coeff
);
522 reg
= (downsize_coeff
<< 30) | (resize_coeff
<< 16);
524 /* Setup horizontal resizing */
525 calc_resize_coeffs(params
->video
.in_width
,
526 params
->video
.out_width
,
527 &resize_coeff
, &downsize_coeff
);
528 reg
|= (downsize_coeff
<< 14) | resize_coeff
;
530 /* Setup color space conversion */
531 in_fmt
= format_to_colorspace(params
->video
.in_pixel_fmt
);
532 out_fmt
= format_to_colorspace(params
->video
.out_pixel_fmt
);
535 * Colourspace conversion unsupported yet - see _init_csc() in
538 if (in_fmt
!= out_fmt
) {
539 dev_err(ipu
->dev
, "Colourspace conversion unsupported!\n");
543 idmac_write_icreg(ipu
, reg
, IC_PRP_ENC_RSC
);
545 ic_conf
= idmac_read_icreg(ipu
, IC_CONF
);
548 ic_conf
&= ~IC_CONF_RWS_EN
;
550 ic_conf
|= IC_CONF_RWS_EN
;
552 idmac_write_icreg(ipu
, ic_conf
, IC_CONF
);
557 static uint32_t dma_param_addr(uint32_t dma_ch
)
559 /* Channel Parameter Memory */
560 return 0x10000 | (dma_ch
<< 4);
563 static void ipu_channel_set_priority(struct ipu
*ipu
, enum ipu_channel channel
,
566 u32 reg
= idmac_read_icreg(ipu
, IDMAC_CHA_PRI
);
569 reg
|= 1UL << channel
;
571 reg
&= ~(1UL << channel
);
573 idmac_write_icreg(ipu
, reg
, IDMAC_CHA_PRI
);
578 static uint32_t ipu_channel_conf_mask(enum ipu_channel channel
)
585 mask
= IPU_CONF_CSI_EN
| IPU_CONF_IC_EN
;
589 mask
= IPU_CONF_SDC_EN
| IPU_CONF_DI_EN
;
600 * ipu_enable_channel() - enable an IPU channel.
601 * @idmac: IPU DMAC context.
602 * @ichan: IDMAC channel.
603 * @return: 0 on success or negative error code on failure.
605 static int ipu_enable_channel(struct idmac
*idmac
, struct idmac_channel
*ichan
)
607 struct ipu
*ipu
= to_ipu(idmac
);
608 enum ipu_channel channel
= ichan
->dma_chan
.chan_id
;
612 spin_lock_irqsave(&ipu
->lock
, flags
);
614 /* Reset to buffer 0 */
615 idmac_write_ipureg(ipu
, 1UL << channel
, IPU_CHA_CUR_BUF
);
616 ichan
->active_buffer
= 0;
617 ichan
->status
= IPU_CHANNEL_ENABLED
;
623 ipu_channel_set_priority(ipu
, channel
, true);
628 reg
= idmac_read_icreg(ipu
, IDMAC_CHA_EN
);
630 idmac_write_icreg(ipu
, reg
| (1UL << channel
), IDMAC_CHA_EN
);
632 ipu_ic_enable_task(ipu
, channel
);
634 spin_unlock_irqrestore(&ipu
->lock
, flags
);
639 * ipu_init_channel_buffer() - initialize a buffer for logical IPU channel.
640 * @ichan: IDMAC channel.
641 * @pixel_fmt: pixel format of buffer. Pixel format is a FOURCC ASCII code.
642 * @width: width of buffer in pixels.
643 * @height: height of buffer in pixels.
644 * @stride: stride length of buffer in pixels.
645 * @rot_mode: rotation mode of buffer. A rotation setting other than
646 * IPU_ROTATE_VERT_FLIP should only be used for input buffers of
648 * @phyaddr_0: buffer 0 physical address.
649 * @phyaddr_1: buffer 1 physical address. Setting this to a value other than
650 * NULL enables double buffering mode.
651 * @return: 0 on success or negative error code on failure.
653 static int ipu_init_channel_buffer(struct idmac_channel
*ichan
,
654 enum pixel_fmt pixel_fmt
,
655 uint16_t width
, uint16_t height
,
657 enum ipu_rotate_mode rot_mode
,
658 dma_addr_t phyaddr_0
, dma_addr_t phyaddr_1
)
660 enum ipu_channel channel
= ichan
->dma_chan
.chan_id
;
661 struct idmac
*idmac
= to_idmac(ichan
->dma_chan
.device
);
662 struct ipu
*ipu
= to_ipu(idmac
);
663 union chan_param_mem params
= {};
666 uint32_t stride_bytes
;
668 stride_bytes
= stride
* bytes_per_pixel(pixel_fmt
);
670 if (stride_bytes
% 4) {
672 "Stride length must be 32-bit aligned, stride = %d, bytes = %d\n",
673 stride
, stride_bytes
);
677 /* IC channel's stride must be a multiple of 8 pixels */
678 if ((channel
<= IDMAC_IC_13
) && (stride
% 8)) {
679 dev_err(ipu
->dev
, "Stride must be 8 pixel multiple\n");
683 /* Build parameter memory data for DMA channel */
684 ipu_ch_param_set_size(¶ms
, pixel_fmt
, width
, height
, stride_bytes
);
685 ipu_ch_param_set_buffer(¶ms
, phyaddr_0
, phyaddr_1
);
686 ipu_ch_param_set_rotation(¶ms
, rot_mode
);
688 spin_lock_irqsave(&ipu
->lock
, flags
);
690 ipu_write_param_mem(dma_param_addr(channel
), (uint32_t *)¶ms
, 10);
692 reg
= idmac_read_ipureg(ipu
, IPU_CHA_DB_MODE_SEL
);
695 reg
|= 1UL << channel
;
697 reg
&= ~(1UL << channel
);
699 idmac_write_ipureg(ipu
, reg
, IPU_CHA_DB_MODE_SEL
);
701 ichan
->status
= IPU_CHANNEL_READY
;
703 spin_unlock_irqrestore(&ipu
->lock
, flags
);
709 * ipu_select_buffer() - mark a channel's buffer as ready.
710 * @channel: channel ID.
711 * @buffer_n: buffer number to mark ready.
713 static void ipu_select_buffer(enum ipu_channel channel
, int buffer_n
)
715 /* No locking - this is a write-one-to-set register, cleared by IPU */
717 /* Mark buffer 0 as ready. */
718 idmac_write_ipureg(&ipu_data
, 1UL << channel
, IPU_CHA_BUF0_RDY
);
720 /* Mark buffer 1 as ready. */
721 idmac_write_ipureg(&ipu_data
, 1UL << channel
, IPU_CHA_BUF1_RDY
);
725 * ipu_update_channel_buffer() - update physical address of a channel buffer.
726 * @ichan: IDMAC channel.
727 * @buffer_n: buffer number to update.
728 * 0 or 1 are the only valid values.
729 * @phyaddr: buffer physical address.
731 /* Called under spin_lock(_irqsave)(&ichan->lock) */
732 static void ipu_update_channel_buffer(struct idmac_channel
*ichan
,
733 int buffer_n
, dma_addr_t phyaddr
)
735 enum ipu_channel channel
= ichan
->dma_chan
.chan_id
;
739 spin_lock_irqsave(&ipu_data
.lock
, flags
);
742 reg
= idmac_read_ipureg(&ipu_data
, IPU_CHA_BUF0_RDY
);
743 if (reg
& (1UL << channel
)) {
744 ipu_ic_disable_task(&ipu_data
, channel
);
745 ichan
->status
= IPU_CHANNEL_READY
;
748 /* 44.3.3.1.9 - Row Number 1 (WORD1, offset 0) */
749 idmac_write_ipureg(&ipu_data
, dma_param_addr(channel
) +
750 0x0008UL
, IPU_IMA_ADDR
);
751 idmac_write_ipureg(&ipu_data
, phyaddr
, IPU_IMA_DATA
);
753 reg
= idmac_read_ipureg(&ipu_data
, IPU_CHA_BUF1_RDY
);
754 if (reg
& (1UL << channel
)) {
755 ipu_ic_disable_task(&ipu_data
, channel
);
756 ichan
->status
= IPU_CHANNEL_READY
;
759 /* Check if double-buffering is already enabled */
760 reg
= idmac_read_ipureg(&ipu_data
, IPU_CHA_DB_MODE_SEL
);
762 if (!(reg
& (1UL << channel
)))
763 idmac_write_ipureg(&ipu_data
, reg
| (1UL << channel
),
764 IPU_CHA_DB_MODE_SEL
);
766 /* 44.3.3.1.9 - Row Number 1 (WORD1, offset 1) */
767 idmac_write_ipureg(&ipu_data
, dma_param_addr(channel
) +
768 0x0009UL
, IPU_IMA_ADDR
);
769 idmac_write_ipureg(&ipu_data
, phyaddr
, IPU_IMA_DATA
);
772 spin_unlock_irqrestore(&ipu_data
.lock
, flags
);
775 /* Called under spin_lock_irqsave(&ichan->lock) */
776 static int ipu_submit_buffer(struct idmac_channel
*ichan
,
777 struct idmac_tx_desc
*desc
, struct scatterlist
*sg
, int buf_idx
)
779 unsigned int chan_id
= ichan
->dma_chan
.chan_id
;
780 struct device
*dev
= &ichan
->dma_chan
.dev
->device
;
782 if (async_tx_test_ack(&desc
->txd
))
786 * On first invocation this shouldn't be necessary, the call to
787 * ipu_init_channel_buffer() above will set addresses for us, so we
788 * could make it conditional on status >= IPU_CHANNEL_ENABLED, but
789 * doing it again shouldn't hurt either.
791 ipu_update_channel_buffer(ichan
, buf_idx
, sg_dma_address(sg
));
793 ipu_select_buffer(chan_id
, buf_idx
);
794 dev_dbg(dev
, "Updated sg %p on channel 0x%x buffer %d\n",
795 sg
, chan_id
, buf_idx
);
800 /* Called under spin_lock_irqsave(&ichan->lock) */
801 static int ipu_submit_channel_buffers(struct idmac_channel
*ichan
,
802 struct idmac_tx_desc
*desc
)
804 struct scatterlist
*sg
;
807 for (i
= 0, sg
= desc
->sg
; i
< 2 && sg
; i
++) {
811 ret
= ipu_submit_buffer(ichan
, desc
, sg
, i
);
822 static dma_cookie_t
idmac_tx_submit(struct dma_async_tx_descriptor
*tx
)
824 struct idmac_tx_desc
*desc
= to_tx_desc(tx
);
825 struct idmac_channel
*ichan
= to_idmac_chan(tx
->chan
);
826 struct idmac
*idmac
= to_idmac(tx
->chan
->device
);
827 struct ipu
*ipu
= to_ipu(idmac
);
828 struct device
*dev
= &ichan
->dma_chan
.dev
->device
;
834 if (!list_empty(&desc
->list
)) {
835 /* The descriptor doesn't belong to client */
836 dev_err(dev
, "Descriptor %p not prepared!\n", tx
);
840 mutex_lock(&ichan
->chan_mutex
);
842 async_tx_clear_ack(tx
);
844 if (ichan
->status
< IPU_CHANNEL_READY
) {
845 struct idmac_video_param
*video
= &ichan
->params
.video
;
847 * Initial buffer assignment - the first two sg-entries from
848 * the descriptor will end up in the IDMAC buffers
850 dma_addr_t dma_1
= sg_is_last(desc
->sg
) ? 0 :
851 sg_dma_address(&desc
->sg
[1]);
853 WARN_ON(ichan
->sg
[0] || ichan
->sg
[1]);
855 cookie
= ipu_init_channel_buffer(ichan
,
856 video
->out_pixel_fmt
,
861 sg_dma_address(&desc
->sg
[0]),
867 dev_dbg(dev
, "Submitting sg %p\n", &desc
->sg
[0]);
869 cookie
= ichan
->dma_chan
.cookie
;
874 /* from dmaengine.h: "last cookie value returned to client" */
875 ichan
->dma_chan
.cookie
= cookie
;
878 /* ipu->lock can be taken under ichan->lock, but not v.v. */
879 spin_lock_irqsave(&ichan
->lock
, flags
);
881 list_add_tail(&desc
->list
, &ichan
->queue
);
882 /* submit_buffers() atomically verifies and fills empty sg slots */
883 ret
= ipu_submit_channel_buffers(ichan
, desc
);
885 spin_unlock_irqrestore(&ichan
->lock
, flags
);
892 if (ichan
->status
< IPU_CHANNEL_ENABLED
) {
893 ret
= ipu_enable_channel(idmac
, ichan
);
904 spin_lock_irqsave(&ichan
->lock
, flags
);
905 list_del_init(&desc
->list
);
906 spin_unlock_irqrestore(&ichan
->lock
, flags
);
908 ichan
->dma_chan
.cookie
= cookie
;
912 mutex_unlock(&ichan
->chan_mutex
);
917 /* Called with ichan->chan_mutex held */
918 static int idmac_desc_alloc(struct idmac_channel
*ichan
, int n
)
920 struct idmac_tx_desc
*desc
= vmalloc(n
* sizeof(struct idmac_tx_desc
));
921 struct idmac
*idmac
= to_idmac(ichan
->dma_chan
.device
);
926 /* No interrupts, just disable the tasklet for a moment */
927 tasklet_disable(&to_ipu(idmac
)->tasklet
);
929 ichan
->n_tx_desc
= n
;
931 INIT_LIST_HEAD(&ichan
->queue
);
932 INIT_LIST_HEAD(&ichan
->free_list
);
935 struct dma_async_tx_descriptor
*txd
= &desc
->txd
;
937 memset(txd
, 0, sizeof(*txd
));
938 dma_async_tx_descriptor_init(txd
, &ichan
->dma_chan
);
939 txd
->tx_submit
= idmac_tx_submit
;
941 list_add(&desc
->list
, &ichan
->free_list
);
946 tasklet_enable(&to_ipu(idmac
)->tasklet
);
952 * ipu_init_channel() - initialize an IPU channel.
953 * @idmac: IPU DMAC context.
954 * @ichan: pointer to the channel object.
955 * @return 0 on success or negative error code on failure.
957 static int ipu_init_channel(struct idmac
*idmac
, struct idmac_channel
*ichan
)
959 union ipu_channel_param
*params
= &ichan
->params
;
961 enum ipu_channel channel
= ichan
->dma_chan
.chan_id
;
964 struct ipu
*ipu
= to_ipu(idmac
);
965 int ret
= 0, n_desc
= 0;
967 dev_dbg(ipu
->dev
, "init channel = %d\n", channel
);
969 if (channel
!= IDMAC_SDC_0
&& channel
!= IDMAC_SDC_1
&&
970 channel
!= IDMAC_IC_7
)
973 spin_lock_irqsave(&ipu
->lock
, flags
);
978 reg
= idmac_read_icreg(ipu
, IC_CONF
);
979 idmac_write_icreg(ipu
, reg
& ~IC_CONF_CSI_MEM_WR_EN
, IC_CONF
);
983 reg
= idmac_read_ipureg(ipu
, IPU_FS_PROC_FLOW
);
984 idmac_write_ipureg(ipu
, reg
& ~FS_ENC_IN_VALID
, IPU_FS_PROC_FLOW
);
985 ret
= ipu_ic_init_prpenc(ipu
, params
, true);
994 ipu
->channel_init_mask
|= 1L << channel
;
996 /* Enable IPU sub module */
997 ipu_conf
= idmac_read_ipureg(ipu
, IPU_CONF
) |
998 ipu_channel_conf_mask(channel
);
999 idmac_write_ipureg(ipu
, ipu_conf
, IPU_CONF
);
1001 spin_unlock_irqrestore(&ipu
->lock
, flags
);
1003 if (n_desc
&& !ichan
->desc
)
1004 ret
= idmac_desc_alloc(ichan
, n_desc
);
1006 dump_idmac_reg(ipu
);
1012 * ipu_uninit_channel() - uninitialize an IPU channel.
1013 * @idmac: IPU DMAC context.
1014 * @ichan: pointer to the channel object.
1016 static void ipu_uninit_channel(struct idmac
*idmac
, struct idmac_channel
*ichan
)
1018 enum ipu_channel channel
= ichan
->dma_chan
.chan_id
;
1019 unsigned long flags
;
1021 unsigned long chan_mask
= 1UL << channel
;
1023 struct ipu
*ipu
= to_ipu(idmac
);
1025 spin_lock_irqsave(&ipu
->lock
, flags
);
1027 if (!(ipu
->channel_init_mask
& chan_mask
)) {
1028 dev_err(ipu
->dev
, "Channel already uninitialized %d\n",
1030 spin_unlock_irqrestore(&ipu
->lock
, flags
);
1034 /* Reset the double buffer */
1035 reg
= idmac_read_ipureg(ipu
, IPU_CHA_DB_MODE_SEL
);
1036 idmac_write_ipureg(ipu
, reg
& ~chan_mask
, IPU_CHA_DB_MODE_SEL
);
1038 ichan
->sec_chan_en
= false;
1042 reg
= idmac_read_icreg(ipu
, IC_CONF
);
1043 idmac_write_icreg(ipu
, reg
& ~(IC_CONF_RWS_EN
| IC_CONF_PRPENC_EN
),
1047 reg
= idmac_read_icreg(ipu
, IC_CONF
);
1048 idmac_write_icreg(ipu
, reg
& ~(IC_CONF_PRPENC_EN
| IC_CONF_PRPENC_CSC1
),
1057 ipu
->channel_init_mask
&= ~(1L << channel
);
1059 ipu_conf
= idmac_read_ipureg(ipu
, IPU_CONF
) &
1060 ~ipu_channel_conf_mask(channel
);
1061 idmac_write_ipureg(ipu
, ipu_conf
, IPU_CONF
);
1063 spin_unlock_irqrestore(&ipu
->lock
, flags
);
1065 ichan
->n_tx_desc
= 0;
1071 * ipu_disable_channel() - disable an IPU channel.
1072 * @idmac: IPU DMAC context.
1073 * @ichan: channel object pointer.
1074 * @wait_for_stop: flag to set whether to wait for channel end of frame or
1075 * return immediately.
1076 * @return: 0 on success or negative error code on failure.
1078 static int ipu_disable_channel(struct idmac
*idmac
, struct idmac_channel
*ichan
,
1081 enum ipu_channel channel
= ichan
->dma_chan
.chan_id
;
1082 struct ipu
*ipu
= to_ipu(idmac
);
1084 unsigned long flags
;
1085 unsigned long chan_mask
= 1UL << channel
;
1086 unsigned int timeout
;
1088 if (wait_for_stop
&& channel
!= IDMAC_SDC_1
&& channel
!= IDMAC_SDC_0
) {
1090 /* This waiting always fails. Related to spurious irq problem */
1091 while ((idmac_read_icreg(ipu
, IDMAC_CHA_BUSY
) & chan_mask
) ||
1092 (ipu_channel_status(ipu
, channel
) == TASK_STAT_ACTIVE
)) {
1098 "Warning: timeout waiting for channel %u to "
1099 "stop: buf0_rdy = 0x%08X, buf1_rdy = 0x%08X, "
1100 "busy = 0x%08X, tstat = 0x%08X\n", channel
,
1101 idmac_read_ipureg(ipu
, IPU_CHA_BUF0_RDY
),
1102 idmac_read_ipureg(ipu
, IPU_CHA_BUF1_RDY
),
1103 idmac_read_icreg(ipu
, IDMAC_CHA_BUSY
),
1104 idmac_read_ipureg(ipu
, IPU_TASKS_STAT
));
1108 dev_dbg(ipu
->dev
, "timeout = %d * 10ms\n", 40 - timeout
);
1110 /* SDC BG and FG must be disabled before DMA is disabled */
1111 if (wait_for_stop
&& (channel
== IDMAC_SDC_0
||
1112 channel
== IDMAC_SDC_1
)) {
1114 timeout
&& !ipu_irq_status(ichan
->eof_irq
); timeout
--)
1118 spin_lock_irqsave(&ipu
->lock
, flags
);
1120 /* Disable IC task */
1121 ipu_ic_disable_task(ipu
, channel
);
1123 /* Disable DMA channel(s) */
1124 reg
= idmac_read_icreg(ipu
, IDMAC_CHA_EN
);
1125 idmac_write_icreg(ipu
, reg
& ~chan_mask
, IDMAC_CHA_EN
);
1127 spin_unlock_irqrestore(&ipu
->lock
, flags
);
1132 static struct scatterlist
*idmac_sg_next(struct idmac_channel
*ichan
,
1133 struct idmac_tx_desc
**desc
, struct scatterlist
*sg
)
1135 struct scatterlist
*sgnew
= sg
? sg_next(sg
) : NULL
;
1138 /* next sg-element in this list */
1141 if ((*desc
)->list
.next
== &ichan
->queue
)
1142 /* No more descriptors on the queue */
1145 /* Fetch next descriptor */
1146 *desc
= list_entry((*desc
)->list
.next
, struct idmac_tx_desc
, list
);
1151 * We have several possibilities here:
1152 * current BUF next BUF
1154 * not last sg next not last sg
1155 * not last sg next last sg
1156 * last sg first sg from next descriptor
1159 * Besides, the descriptor queue might be empty or not. We process all these
1162 static irqreturn_t
idmac_interrupt(int irq
, void *dev_id
)
1164 struct idmac_channel
*ichan
= dev_id
;
1165 struct device
*dev
= &ichan
->dma_chan
.dev
->device
;
1166 unsigned int chan_id
= ichan
->dma_chan
.chan_id
;
1167 struct scatterlist
**sg
, *sgnext
, *sgnew
= NULL
;
1168 /* Next transfer descriptor */
1169 struct idmac_tx_desc
*desc
, *descnew
;
1170 dma_async_tx_callback callback
;
1171 void *callback_param
;
1173 u32 ready0
, ready1
, curbuf
, err
;
1174 unsigned long flags
;
1176 /* IDMAC has cleared the respective BUFx_RDY bit, we manage the buffer */
1178 dev_dbg(dev
, "IDMAC irq %d, buf %d\n", irq
, ichan
->active_buffer
);
1180 spin_lock_irqsave(&ipu_data
.lock
, flags
);
1182 ready0
= idmac_read_ipureg(&ipu_data
, IPU_CHA_BUF0_RDY
);
1183 ready1
= idmac_read_ipureg(&ipu_data
, IPU_CHA_BUF1_RDY
);
1184 curbuf
= idmac_read_ipureg(&ipu_data
, IPU_CHA_CUR_BUF
);
1185 err
= idmac_read_ipureg(&ipu_data
, IPU_INT_STAT_4
);
1187 if (err
& (1 << chan_id
)) {
1188 idmac_write_ipureg(&ipu_data
, 1 << chan_id
, IPU_INT_STAT_4
);
1189 spin_unlock_irqrestore(&ipu_data
.lock
, flags
);
1192 * ichan->sg[0] = ichan->sg[1] = NULL;
1193 * you can force channel re-enable on the next tx_submit(), but
1194 * this is dirty - think about descriptors with multiple
1197 dev_warn(dev
, "NFB4EOF on channel %d, ready %x, %x, cur %x\n",
1198 chan_id
, ready0
, ready1
, curbuf
);
1201 spin_unlock_irqrestore(&ipu_data
.lock
, flags
);
1203 /* Other interrupts do not interfere with this channel */
1204 spin_lock(&ichan
->lock
);
1205 if (unlikely((ichan
->active_buffer
&& (ready1
>> chan_id
) & 1) ||
1206 (!ichan
->active_buffer
&& (ready0
>> chan_id
) & 1)
1208 spin_unlock(&ichan
->lock
);
1210 "IRQ with active buffer still ready on channel %x, "
1211 "active %d, ready %x, %x!\n", chan_id
,
1212 ichan
->active_buffer
, ready0
, ready1
);
1216 if (unlikely(list_empty(&ichan
->queue
))) {
1217 ichan
->sg
[ichan
->active_buffer
] = NULL
;
1218 spin_unlock(&ichan
->lock
);
1220 "IRQ without queued buffers on channel %x, active %d, "
1221 "ready %x, %x!\n", chan_id
,
1222 ichan
->active_buffer
, ready0
, ready1
);
1227 * active_buffer is a software flag, it shows which buffer we are
1228 * currently expecting back from the hardware, IDMAC should be
1229 * processing the other buffer already
1231 sg
= &ichan
->sg
[ichan
->active_buffer
];
1232 sgnext
= ichan
->sg
[!ichan
->active_buffer
];
1235 spin_unlock(&ichan
->lock
);
1239 desc
= list_entry(ichan
->queue
.next
, struct idmac_tx_desc
, list
);
1242 dev_dbg(dev
, "IDMAC irq %d, dma 0x%08x, next dma 0x%08x, current %d, curbuf 0x%08x\n",
1243 irq
, sg_dma_address(*sg
), sgnext
? sg_dma_address(sgnext
) : 0, ichan
->active_buffer
, curbuf
);
1245 /* Find the descriptor of sgnext */
1246 sgnew
= idmac_sg_next(ichan
, &descnew
, *sg
);
1247 if (sgnext
!= sgnew
)
1248 dev_err(dev
, "Submitted buffer %p, next buffer %p\n", sgnext
, sgnew
);
1251 * if sgnext == NULL sg must be the last element in a scatterlist and
1252 * queue must be empty
1254 if (unlikely(!sgnext
)) {
1255 if (!WARN_ON(sg_next(*sg
)))
1256 dev_dbg(dev
, "Underrun on channel %x\n", chan_id
);
1257 ichan
->sg
[!ichan
->active_buffer
] = sgnew
;
1259 if (unlikely(sgnew
)) {
1260 ipu_submit_buffer(ichan
, descnew
, sgnew
, !ichan
->active_buffer
);
1262 spin_lock_irqsave(&ipu_data
.lock
, flags
);
1263 ipu_ic_disable_task(&ipu_data
, chan_id
);
1264 spin_unlock_irqrestore(&ipu_data
.lock
, flags
);
1265 ichan
->status
= IPU_CHANNEL_READY
;
1266 /* Continue to check for complete descriptor */
1270 /* Calculate and submit the next sg element */
1271 sgnew
= idmac_sg_next(ichan
, &descnew
, sgnew
);
1273 if (unlikely(!sg_next(*sg
)) || !sgnext
) {
1275 * Last element in scatterlist done, remove from the queue,
1276 * _init for debugging
1278 list_del_init(&desc
->list
);
1284 if (likely(sgnew
) &&
1285 ipu_submit_buffer(ichan
, descnew
, sgnew
, ichan
->active_buffer
) < 0) {
1286 callback
= descnew
->txd
.callback
;
1287 callback_param
= descnew
->txd
.callback_param
;
1288 list_del_init(&descnew
->list
);
1289 spin_unlock(&ichan
->lock
);
1291 callback(callback_param
);
1292 spin_lock(&ichan
->lock
);
1295 /* Flip the active buffer - even if update above failed */
1296 ichan
->active_buffer
= !ichan
->active_buffer
;
1298 ichan
->completed
= desc
->txd
.cookie
;
1300 callback
= desc
->txd
.callback
;
1301 callback_param
= desc
->txd
.callback_param
;
1303 spin_unlock(&ichan
->lock
);
1305 if (done
&& (desc
->txd
.flags
& DMA_PREP_INTERRUPT
) && callback
)
1306 callback(callback_param
);
1311 static void ipu_gc_tasklet(unsigned long arg
)
1313 struct ipu
*ipu
= (struct ipu
*)arg
;
1316 for (i
= 0; i
< IPU_CHANNELS_NUM
; i
++) {
1317 struct idmac_channel
*ichan
= ipu
->channel
+ i
;
1318 struct idmac_tx_desc
*desc
;
1319 unsigned long flags
;
1320 struct scatterlist
*sg
;
1323 for (j
= 0; j
< ichan
->n_tx_desc
; j
++) {
1324 desc
= ichan
->desc
+ j
;
1325 spin_lock_irqsave(&ichan
->lock
, flags
);
1326 if (async_tx_test_ack(&desc
->txd
)) {
1327 list_move(&desc
->list
, &ichan
->free_list
);
1328 for_each_sg(desc
->sg
, sg
, desc
->sg_len
, k
) {
1329 if (ichan
->sg
[0] == sg
)
1330 ichan
->sg
[0] = NULL
;
1331 else if (ichan
->sg
[1] == sg
)
1332 ichan
->sg
[1] = NULL
;
1334 async_tx_clear_ack(&desc
->txd
);
1336 spin_unlock_irqrestore(&ichan
->lock
, flags
);
1341 /* Allocate and initialise a transfer descriptor. */
1342 static struct dma_async_tx_descriptor
*idmac_prep_slave_sg(struct dma_chan
*chan
,
1343 struct scatterlist
*sgl
, unsigned int sg_len
,
1344 enum dma_transfer_direction direction
, unsigned long tx_flags
)
1346 struct idmac_channel
*ichan
= to_idmac_chan(chan
);
1347 struct idmac_tx_desc
*desc
= NULL
;
1348 struct dma_async_tx_descriptor
*txd
= NULL
;
1349 unsigned long flags
;
1351 /* We only can handle these three channels so far */
1352 if (chan
->chan_id
!= IDMAC_SDC_0
&& chan
->chan_id
!= IDMAC_SDC_1
&&
1353 chan
->chan_id
!= IDMAC_IC_7
)
1356 if (direction
!= DMA_DEV_TO_MEM
&& direction
!= DMA_MEM_TO_DEV
) {
1357 dev_err(chan
->device
->dev
, "Invalid DMA direction %d!\n", direction
);
1361 mutex_lock(&ichan
->chan_mutex
);
1363 spin_lock_irqsave(&ichan
->lock
, flags
);
1364 if (!list_empty(&ichan
->free_list
)) {
1365 desc
= list_entry(ichan
->free_list
.next
,
1366 struct idmac_tx_desc
, list
);
1368 list_del_init(&desc
->list
);
1370 desc
->sg_len
= sg_len
;
1373 txd
->flags
= tx_flags
;
1375 spin_unlock_irqrestore(&ichan
->lock
, flags
);
1377 mutex_unlock(&ichan
->chan_mutex
);
1379 tasklet_schedule(&to_ipu(to_idmac(chan
->device
))->tasklet
);
1384 /* Re-select the current buffer and re-activate the channel */
1385 static void idmac_issue_pending(struct dma_chan
*chan
)
1387 struct idmac_channel
*ichan
= to_idmac_chan(chan
);
1388 struct idmac
*idmac
= to_idmac(chan
->device
);
1389 struct ipu
*ipu
= to_ipu(idmac
);
1390 unsigned long flags
;
1392 /* This is not always needed, but doesn't hurt either */
1393 spin_lock_irqsave(&ipu
->lock
, flags
);
1394 ipu_select_buffer(chan
->chan_id
, ichan
->active_buffer
);
1395 spin_unlock_irqrestore(&ipu
->lock
, flags
);
1398 * Might need to perform some parts of initialisation from
1399 * ipu_enable_channel(), but not all, we do not want to reset to buffer
1400 * 0, don't need to set priority again either, but re-enabling the task
1401 * and the channel might be a good idea.
1405 static int __idmac_control(struct dma_chan
*chan
, enum dma_ctrl_cmd cmd
,
1408 struct idmac_channel
*ichan
= to_idmac_chan(chan
);
1409 struct idmac
*idmac
= to_idmac(chan
->device
);
1410 struct ipu
*ipu
= to_ipu(idmac
);
1411 struct list_head
*list
, *tmp
;
1412 unsigned long flags
;
1417 spin_lock_irqsave(&ipu
->lock
, flags
);
1418 ipu_ic_disable_task(ipu
, chan
->chan_id
);
1420 /* Return all descriptors into "prepared" state */
1421 list_for_each_safe(list
, tmp
, &ichan
->queue
)
1422 list_del_init(list
);
1424 ichan
->sg
[0] = NULL
;
1425 ichan
->sg
[1] = NULL
;
1427 spin_unlock_irqrestore(&ipu
->lock
, flags
);
1429 ichan
->status
= IPU_CHANNEL_INITIALIZED
;
1431 case DMA_TERMINATE_ALL
:
1432 ipu_disable_channel(idmac
, ichan
,
1433 ichan
->status
>= IPU_CHANNEL_ENABLED
);
1435 tasklet_disable(&ipu
->tasklet
);
1437 /* ichan->queue is modified in ISR, have to spinlock */
1438 spin_lock_irqsave(&ichan
->lock
, flags
);
1439 list_splice_init(&ichan
->queue
, &ichan
->free_list
);
1442 for (i
= 0; i
< ichan
->n_tx_desc
; i
++) {
1443 struct idmac_tx_desc
*desc
= ichan
->desc
+ i
;
1444 if (list_empty(&desc
->list
))
1445 /* Descriptor was prepared, but not submitted */
1446 list_add(&desc
->list
, &ichan
->free_list
);
1448 async_tx_clear_ack(&desc
->txd
);
1451 ichan
->sg
[0] = NULL
;
1452 ichan
->sg
[1] = NULL
;
1453 spin_unlock_irqrestore(&ichan
->lock
, flags
);
1455 tasklet_enable(&ipu
->tasklet
);
1457 ichan
->status
= IPU_CHANNEL_INITIALIZED
;
1466 static int idmac_control(struct dma_chan
*chan
, enum dma_ctrl_cmd cmd
,
1469 struct idmac_channel
*ichan
= to_idmac_chan(chan
);
1472 mutex_lock(&ichan
->chan_mutex
);
1474 ret
= __idmac_control(chan
, cmd
, arg
);
1476 mutex_unlock(&ichan
->chan_mutex
);
1482 static irqreturn_t
ic_sof_irq(int irq
, void *dev_id
)
1484 struct idmac_channel
*ichan
= dev_id
;
1485 printk(KERN_DEBUG
"Got SOF IRQ %d on Channel %d\n",
1486 irq
, ichan
->dma_chan
.chan_id
);
1487 disable_irq_nosync(irq
);
1491 static irqreturn_t
ic_eof_irq(int irq
, void *dev_id
)
1493 struct idmac_channel
*ichan
= dev_id
;
1494 printk(KERN_DEBUG
"Got EOF IRQ %d on Channel %d\n",
1495 irq
, ichan
->dma_chan
.chan_id
);
1496 disable_irq_nosync(irq
);
1500 static int ic_sof
= -EINVAL
, ic_eof
= -EINVAL
;
1503 static int idmac_alloc_chan_resources(struct dma_chan
*chan
)
1505 struct idmac_channel
*ichan
= to_idmac_chan(chan
);
1506 struct idmac
*idmac
= to_idmac(chan
->device
);
1509 /* dmaengine.c now guarantees to only offer free channels */
1510 BUG_ON(chan
->client_count
> 1);
1511 WARN_ON(ichan
->status
!= IPU_CHANNEL_FREE
);
1514 ichan
->completed
= -ENXIO
;
1516 ret
= ipu_irq_map(chan
->chan_id
);
1520 ichan
->eof_irq
= ret
;
1523 * Important to first disable the channel, because maybe someone
1524 * used it before us, e.g., the bootloader
1526 ipu_disable_channel(idmac
, ichan
, true);
1528 ret
= ipu_init_channel(idmac
, ichan
);
1532 ret
= request_irq(ichan
->eof_irq
, idmac_interrupt
, 0,
1533 ichan
->eof_name
, ichan
);
1538 if (chan
->chan_id
== IDMAC_IC_7
) {
1539 ic_sof
= ipu_irq_map(69);
1541 request_irq(ic_sof
, ic_sof_irq
, 0, "IC SOF", ichan
);
1542 ic_eof
= ipu_irq_map(70);
1544 request_irq(ic_eof
, ic_eof_irq
, 0, "IC EOF", ichan
);
1548 ichan
->status
= IPU_CHANNEL_INITIALIZED
;
1550 dev_dbg(&chan
->dev
->device
, "Found channel 0x%x, irq %d\n",
1551 chan
->chan_id
, ichan
->eof_irq
);
1556 ipu_uninit_channel(idmac
, ichan
);
1558 ipu_irq_unmap(chan
->chan_id
);
1563 static void idmac_free_chan_resources(struct dma_chan
*chan
)
1565 struct idmac_channel
*ichan
= to_idmac_chan(chan
);
1566 struct idmac
*idmac
= to_idmac(chan
->device
);
1568 mutex_lock(&ichan
->chan_mutex
);
1570 __idmac_control(chan
, DMA_TERMINATE_ALL
, 0);
1572 if (ichan
->status
> IPU_CHANNEL_FREE
) {
1574 if (chan
->chan_id
== IDMAC_IC_7
) {
1576 free_irq(ic_sof
, ichan
);
1581 free_irq(ic_eof
, ichan
);
1587 free_irq(ichan
->eof_irq
, ichan
);
1588 ipu_irq_unmap(chan
->chan_id
);
1591 ichan
->status
= IPU_CHANNEL_FREE
;
1593 ipu_uninit_channel(idmac
, ichan
);
1595 mutex_unlock(&ichan
->chan_mutex
);
1597 tasklet_schedule(&to_ipu(idmac
)->tasklet
);
1600 static enum dma_status
idmac_tx_status(struct dma_chan
*chan
,
1601 dma_cookie_t cookie
, struct dma_tx_state
*txstate
)
1603 struct idmac_channel
*ichan
= to_idmac_chan(chan
);
1605 dma_set_tx_state(txstate
, ichan
->completed
, chan
->cookie
, 0);
1606 if (cookie
!= chan
->cookie
)
1611 static int __init
ipu_idmac_init(struct ipu
*ipu
)
1613 struct idmac
*idmac
= &ipu
->idmac
;
1614 struct dma_device
*dma
= &idmac
->dma
;
1617 dma_cap_set(DMA_SLAVE
, dma
->cap_mask
);
1618 dma_cap_set(DMA_PRIVATE
, dma
->cap_mask
);
1620 /* Compulsory common fields */
1621 dma
->dev
= ipu
->dev
;
1622 dma
->device_alloc_chan_resources
= idmac_alloc_chan_resources
;
1623 dma
->device_free_chan_resources
= idmac_free_chan_resources
;
1624 dma
->device_tx_status
= idmac_tx_status
;
1625 dma
->device_issue_pending
= idmac_issue_pending
;
1627 /* Compulsory for DMA_SLAVE fields */
1628 dma
->device_prep_slave_sg
= idmac_prep_slave_sg
;
1629 dma
->device_control
= idmac_control
;
1631 INIT_LIST_HEAD(&dma
->channels
);
1632 for (i
= 0; i
< IPU_CHANNELS_NUM
; i
++) {
1633 struct idmac_channel
*ichan
= ipu
->channel
+ i
;
1634 struct dma_chan
*dma_chan
= &ichan
->dma_chan
;
1636 spin_lock_init(&ichan
->lock
);
1637 mutex_init(&ichan
->chan_mutex
);
1639 ichan
->status
= IPU_CHANNEL_FREE
;
1640 ichan
->sec_chan_en
= false;
1641 ichan
->completed
= -ENXIO
;
1642 snprintf(ichan
->eof_name
, sizeof(ichan
->eof_name
), "IDMAC EOF %d", i
);
1644 dma_chan
->device
= &idmac
->dma
;
1645 dma_chan
->cookie
= 1;
1646 dma_chan
->chan_id
= i
;
1647 list_add_tail(&dma_chan
->device_node
, &dma
->channels
);
1650 idmac_write_icreg(ipu
, 0x00000070, IDMAC_CONF
);
1652 return dma_async_device_register(&idmac
->dma
);
1655 static void __exit
ipu_idmac_exit(struct ipu
*ipu
)
1658 struct idmac
*idmac
= &ipu
->idmac
;
1660 for (i
= 0; i
< IPU_CHANNELS_NUM
; i
++) {
1661 struct idmac_channel
*ichan
= ipu
->channel
+ i
;
1663 idmac_control(&ichan
->dma_chan
, DMA_TERMINATE_ALL
, 0);
1666 dma_async_device_unregister(&idmac
->dma
);
1669 /*****************************************************************************
1670 * IPU common probe / remove
1673 static int __init
ipu_probe(struct platform_device
*pdev
)
1675 struct ipu_platform_data
*pdata
= pdev
->dev
.platform_data
;
1676 struct resource
*mem_ipu
, *mem_ic
;
1679 spin_lock_init(&ipu_data
.lock
);
1681 mem_ipu
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1682 mem_ic
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1683 if (!pdata
|| !mem_ipu
|| !mem_ic
)
1686 ipu_data
.dev
= &pdev
->dev
;
1688 platform_set_drvdata(pdev
, &ipu_data
);
1690 ret
= platform_get_irq(pdev
, 0);
1694 ipu_data
.irq_fn
= ret
;
1695 ret
= platform_get_irq(pdev
, 1);
1699 ipu_data
.irq_err
= ret
;
1700 ipu_data
.irq_base
= pdata
->irq_base
;
1702 dev_dbg(&pdev
->dev
, "fn irq %u, err irq %u, irq-base %u\n",
1703 ipu_data
.irq_fn
, ipu_data
.irq_err
, ipu_data
.irq_base
);
1705 /* Remap IPU common registers */
1706 ipu_data
.reg_ipu
= ioremap(mem_ipu
->start
, resource_size(mem_ipu
));
1707 if (!ipu_data
.reg_ipu
) {
1709 goto err_ioremap_ipu
;
1712 /* Remap Image Converter and Image DMA Controller registers */
1713 ipu_data
.reg_ic
= ioremap(mem_ic
->start
, resource_size(mem_ic
));
1714 if (!ipu_data
.reg_ic
) {
1716 goto err_ioremap_ic
;
1720 ipu_data
.ipu_clk
= clk_get(&pdev
->dev
, NULL
);
1721 if (IS_ERR(ipu_data
.ipu_clk
)) {
1722 ret
= PTR_ERR(ipu_data
.ipu_clk
);
1726 /* Make sure IPU HSP clock is running */
1727 clk_enable(ipu_data
.ipu_clk
);
1729 /* Disable all interrupts */
1730 idmac_write_ipureg(&ipu_data
, 0, IPU_INT_CTRL_1
);
1731 idmac_write_ipureg(&ipu_data
, 0, IPU_INT_CTRL_2
);
1732 idmac_write_ipureg(&ipu_data
, 0, IPU_INT_CTRL_3
);
1733 idmac_write_ipureg(&ipu_data
, 0, IPU_INT_CTRL_4
);
1734 idmac_write_ipureg(&ipu_data
, 0, IPU_INT_CTRL_5
);
1736 dev_dbg(&pdev
->dev
, "%s @ 0x%08lx, fn irq %u, err irq %u\n", pdev
->name
,
1737 (unsigned long)mem_ipu
->start
, ipu_data
.irq_fn
, ipu_data
.irq_err
);
1739 ret
= ipu_irq_attach_irq(&ipu_data
, pdev
);
1741 goto err_attach_irq
;
1743 /* Initialize DMA engine */
1744 ret
= ipu_idmac_init(&ipu_data
);
1746 goto err_idmac_init
;
1748 tasklet_init(&ipu_data
.tasklet
, ipu_gc_tasklet
, (unsigned long)&ipu_data
);
1750 ipu_data
.dev
= &pdev
->dev
;
1752 dev_dbg(ipu_data
.dev
, "IPU initialized\n");
1758 ipu_irq_detach_irq(&ipu_data
, pdev
);
1759 clk_disable(ipu_data
.ipu_clk
);
1760 clk_put(ipu_data
.ipu_clk
);
1762 iounmap(ipu_data
.reg_ic
);
1764 iounmap(ipu_data
.reg_ipu
);
1767 dev_err(&pdev
->dev
, "Failed to probe IPU: %d\n", ret
);
1771 static int __exit
ipu_remove(struct platform_device
*pdev
)
1773 struct ipu
*ipu
= platform_get_drvdata(pdev
);
1775 ipu_idmac_exit(ipu
);
1776 ipu_irq_detach_irq(ipu
, pdev
);
1777 clk_disable(ipu
->ipu_clk
);
1778 clk_put(ipu
->ipu_clk
);
1779 iounmap(ipu
->reg_ic
);
1780 iounmap(ipu
->reg_ipu
);
1781 tasklet_kill(&ipu
->tasklet
);
1782 platform_set_drvdata(pdev
, NULL
);
1788 * We need two MEM resources - with IPU-common and Image Converter registers,
1789 * including PF_CONF and IDMAC_* registers, and two IRQs - function and error
1791 static struct platform_driver ipu_platform_driver
= {
1794 .owner
= THIS_MODULE
,
1796 .remove
= __exit_p(ipu_remove
),
1799 static int __init
ipu_init(void)
1801 return platform_driver_probe(&ipu_platform_driver
, ipu_probe
);
1803 subsys_initcall(ipu_init
);
1805 MODULE_DESCRIPTION("IPU core driver");
1806 MODULE_LICENSE("GPL v2");
1807 MODULE_AUTHOR("Guennadi Liakhovetski <lg@denx.de>");
1808 MODULE_ALIAS("platform:ipu-core");