2 * linux/arch/arm/plat-omap/dma.c
4 * Copyright (C) 2003 - 2008 Nokia Corporation
5 * Author: Juha Yrjölä <juha.yrjola@nokia.com>
6 * DMA channel linking for 1610 by Samuel Ortiz <samuel.ortiz@nokia.com>
7 * Graphics DMA and LCD DMA graphics tranformations
8 * by Imre Deak <imre.deak@nokia.com>
9 * OMAP2/3 support Copyright (C) 2004-2007 Texas Instruments, Inc.
10 * Merged to support both OMAP1 and OMAP2 by Tony Lindgren <tony@atomide.com>
11 * Some functions based on earlier dma-omap.c Copyright (C) 2001 RidgeRun, Inc.
13 * Copyright (C) 2009 Texas Instruments
14 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
16 * Support functions for the OMAP internal DMA channels.
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/module.h>
25 #include <linux/init.h>
26 #include <linux/sched.h>
27 #include <linux/spinlock.h>
28 #include <linux/errno.h>
29 #include <linux/interrupt.h>
30 #include <linux/irq.h>
33 #include <asm/system.h>
34 #include <mach/hardware.h>
41 #ifndef CONFIG_ARCH_OMAP1
42 enum { DMA_CH_ALLOC_DONE
, DMA_CH_PARAMS_SET_DONE
, DMA_CH_STARTED
,
43 DMA_CH_QUEUED
, DMA_CH_NOTSTARTED
, DMA_CH_PAUSED
, DMA_CH_LINK_ENABLED
46 enum { DMA_CHAIN_STARTED
, DMA_CHAIN_NOTSTARTED
};
49 #define OMAP_DMA_ACTIVE 0x01
50 #define OMAP_DMA_CCR_EN (1 << 7)
51 #define OMAP2_DMA_CSR_CLEAR_MASK 0xffe
53 #define OMAP_FUNC_MUX_ARM_BASE (0xfffe1000 + 0xec)
55 static int enable_1510_mode
;
63 void (*callback
)(int lch
, u16 ch_status
, void *data
);
66 #ifndef CONFIG_ARCH_OMAP1
67 /* required for Dynamic chaining */
78 struct dma_link_info
{
80 int no_of_lchs_linked
;
91 static struct dma_link_info
*dma_linked_lch
;
93 #ifndef CONFIG_ARCH_OMAP1
95 /* Chain handling macros */
96 #define OMAP_DMA_CHAIN_QINIT(chain_id) \
98 dma_linked_lch[chain_id].q_head = \
99 dma_linked_lch[chain_id].q_tail = \
100 dma_linked_lch[chain_id].q_count = 0; \
102 #define OMAP_DMA_CHAIN_QFULL(chain_id) \
103 (dma_linked_lch[chain_id].no_of_lchs_linked == \
104 dma_linked_lch[chain_id].q_count)
105 #define OMAP_DMA_CHAIN_QLAST(chain_id) \
107 ((dma_linked_lch[chain_id].no_of_lchs_linked-1) == \
108 dma_linked_lch[chain_id].q_count) \
110 #define OMAP_DMA_CHAIN_QEMPTY(chain_id) \
111 (0 == dma_linked_lch[chain_id].q_count)
112 #define __OMAP_DMA_CHAIN_INCQ(end) \
113 ((end) = ((end)+1) % dma_linked_lch[chain_id].no_of_lchs_linked)
114 #define OMAP_DMA_CHAIN_INCQHEAD(chain_id) \
116 __OMAP_DMA_CHAIN_INCQ(dma_linked_lch[chain_id].q_head); \
117 dma_linked_lch[chain_id].q_count--; \
120 #define OMAP_DMA_CHAIN_INCQTAIL(chain_id) \
122 __OMAP_DMA_CHAIN_INCQ(dma_linked_lch[chain_id].q_tail); \
123 dma_linked_lch[chain_id].q_count++; \
127 static int dma_lch_count
;
128 static int dma_chan_count
;
129 static int omap_dma_reserve_channels
;
131 static spinlock_t dma_chan_lock
;
132 static struct omap_dma_lch
*dma_chan
;
133 static void __iomem
*omap_dma_base
;
135 static const u8 omap1_dma_irq
[OMAP1_LOGICAL_DMA_CH_COUNT
] = {
136 INT_DMA_CH0_6
, INT_DMA_CH1_7
, INT_DMA_CH2_8
, INT_DMA_CH3
,
137 INT_DMA_CH4
, INT_DMA_CH5
, INT_1610_DMA_CH6
, INT_1610_DMA_CH7
,
138 INT_1610_DMA_CH8
, INT_1610_DMA_CH9
, INT_1610_DMA_CH10
,
139 INT_1610_DMA_CH11
, INT_1610_DMA_CH12
, INT_1610_DMA_CH13
,
140 INT_1610_DMA_CH14
, INT_1610_DMA_CH15
, INT_DMA_LCD
143 static inline void disable_lnk(int lch
);
144 static void omap_disable_channel_irq(int lch
);
145 static inline void omap_enable_channel_irq(int lch
);
147 #define REVISIT_24XX() printk(KERN_ERR "FIXME: no %s on 24xx\n", \
150 #define dma_read(reg) \
153 if (cpu_class_is_omap1()) \
154 __val = __raw_readw(omap_dma_base + OMAP1_DMA_##reg); \
156 __val = __raw_readl(omap_dma_base + OMAP_DMA4_##reg); \
160 #define dma_write(val, reg) \
162 if (cpu_class_is_omap1()) \
163 __raw_writew((u16)(val), omap_dma_base + OMAP1_DMA_##reg); \
165 __raw_writel((val), omap_dma_base + OMAP_DMA4_##reg); \
168 #ifdef CONFIG_ARCH_OMAP15XX
169 /* Returns 1 if the DMA module is in OMAP1510-compatible mode, 0 otherwise */
170 int omap_dma_in_1510_mode(void)
172 return enable_1510_mode
;
175 #define omap_dma_in_1510_mode() 0
178 #ifdef CONFIG_ARCH_OMAP1
179 static inline int get_gdma_dev(int req
)
181 u32 reg
= OMAP_FUNC_MUX_ARM_BASE
+ ((req
- 1) / 5) * 4;
182 int shift
= ((req
- 1) % 5) * 6;
184 return ((omap_readl(reg
) >> shift
) & 0x3f) + 1;
187 static inline void set_gdma_dev(int req
, int dev
)
189 u32 reg
= OMAP_FUNC_MUX_ARM_BASE
+ ((req
- 1) / 5) * 4;
190 int shift
= ((req
- 1) % 5) * 6;
194 l
&= ~(0x3f << shift
);
195 l
|= (dev
- 1) << shift
;
199 #define set_gdma_dev(req, dev) do {} while (0)
203 static void clear_lch_regs(int lch
)
206 void __iomem
*lch_base
= omap_dma_base
+ OMAP1_DMA_CH_BASE(lch
);
208 for (i
= 0; i
< 0x2c; i
+= 2)
209 __raw_writew(0, lch_base
+ i
);
212 void omap_set_dma_priority(int lch
, int dst_port
, int priority
)
217 if (cpu_class_is_omap1()) {
219 case OMAP_DMA_PORT_OCP_T1
: /* FFFECC00 */
220 reg
= OMAP_TC_OCPT1_PRIOR
;
222 case OMAP_DMA_PORT_OCP_T2
: /* FFFECCD0 */
223 reg
= OMAP_TC_OCPT2_PRIOR
;
225 case OMAP_DMA_PORT_EMIFF
: /* FFFECC08 */
226 reg
= OMAP_TC_EMIFF_PRIOR
;
228 case OMAP_DMA_PORT_EMIFS
: /* FFFECC04 */
229 reg
= OMAP_TC_EMIFS_PRIOR
;
237 l
|= (priority
& 0xf) << 8;
241 if (cpu_class_is_omap2()) {
244 ccr
= dma_read(CCR(lch
));
249 dma_write(ccr
, CCR(lch
));
252 EXPORT_SYMBOL(omap_set_dma_priority
);
254 void omap_set_dma_transfer_params(int lch
, int data_type
, int elem_count
,
255 int frame_count
, int sync_mode
,
256 int dma_trigger
, int src_or_dst_synch
)
260 l
= dma_read(CSDP(lch
));
263 dma_write(l
, CSDP(lch
));
265 if (cpu_class_is_omap1()) {
268 ccr
= dma_read(CCR(lch
));
270 if (sync_mode
== OMAP_DMA_SYNC_FRAME
)
272 dma_write(ccr
, CCR(lch
));
274 ccr
= dma_read(CCR2(lch
));
276 if (sync_mode
== OMAP_DMA_SYNC_BLOCK
)
278 dma_write(ccr
, CCR2(lch
));
281 if (cpu_class_is_omap2() && dma_trigger
) {
284 val
= dma_read(CCR(lch
));
286 /* DMA_SYNCHRO_CONTROL_UPPER depends on the channel number */
287 val
&= ~((3 << 19) | 0x1f);
288 val
|= (dma_trigger
& ~0x1f) << 14;
289 val
|= dma_trigger
& 0x1f;
291 if (sync_mode
& OMAP_DMA_SYNC_FRAME
)
296 if (sync_mode
& OMAP_DMA_SYNC_BLOCK
)
301 if (src_or_dst_synch
)
302 val
|= 1 << 24; /* source synch */
304 val
&= ~(1 << 24); /* dest synch */
306 dma_write(val
, CCR(lch
));
309 dma_write(elem_count
, CEN(lch
));
310 dma_write(frame_count
, CFN(lch
));
312 EXPORT_SYMBOL(omap_set_dma_transfer_params
);
314 void omap_set_dma_color_mode(int lch
, enum omap_dma_color_mode mode
, u32 color
)
316 BUG_ON(omap_dma_in_1510_mode());
318 if (cpu_class_is_omap1()) {
321 w
= dma_read(CCR2(lch
));
325 case OMAP_DMA_CONSTANT_FILL
:
328 case OMAP_DMA_TRANSPARENT_COPY
:
331 case OMAP_DMA_COLOR_DIS
:
336 dma_write(w
, CCR2(lch
));
338 w
= dma_read(LCH_CTRL(lch
));
340 /* Default is channel type 2D */
342 dma_write((u16
)color
, COLOR_L(lch
));
343 dma_write((u16
)(color
>> 16), COLOR_U(lch
));
344 w
|= 1; /* Channel type G */
346 dma_write(w
, LCH_CTRL(lch
));
349 if (cpu_class_is_omap2()) {
352 val
= dma_read(CCR(lch
));
353 val
&= ~((1 << 17) | (1 << 16));
356 case OMAP_DMA_CONSTANT_FILL
:
359 case OMAP_DMA_TRANSPARENT_COPY
:
362 case OMAP_DMA_COLOR_DIS
:
367 dma_write(val
, CCR(lch
));
370 dma_write(color
, COLOR(lch
));
373 EXPORT_SYMBOL(omap_set_dma_color_mode
);
375 void omap_set_dma_write_mode(int lch
, enum omap_dma_write_mode mode
)
377 if (cpu_class_is_omap2()) {
380 csdp
= dma_read(CSDP(lch
));
381 csdp
&= ~(0x3 << 16);
382 csdp
|= (mode
<< 16);
383 dma_write(csdp
, CSDP(lch
));
386 EXPORT_SYMBOL(omap_set_dma_write_mode
);
388 void omap_set_dma_channel_mode(int lch
, enum omap_dma_channel_mode mode
)
390 if (cpu_class_is_omap1() && !cpu_is_omap15xx()) {
393 l
= dma_read(LCH_CTRL(lch
));
396 dma_write(l
, LCH_CTRL(lch
));
399 EXPORT_SYMBOL(omap_set_dma_channel_mode
);
401 /* Note that src_port is only for omap1 */
402 void omap_set_dma_src_params(int lch
, int src_port
, int src_amode
,
403 unsigned long src_start
,
404 int src_ei
, int src_fi
)
408 if (cpu_class_is_omap1()) {
411 w
= dma_read(CSDP(lch
));
414 dma_write(w
, CSDP(lch
));
417 l
= dma_read(CCR(lch
));
419 l
|= src_amode
<< 12;
420 dma_write(l
, CCR(lch
));
422 if (cpu_class_is_omap1()) {
423 dma_write(src_start
>> 16, CSSA_U(lch
));
424 dma_write((u16
)src_start
, CSSA_L(lch
));
427 if (cpu_class_is_omap2())
428 dma_write(src_start
, CSSA(lch
));
430 dma_write(src_ei
, CSEI(lch
));
431 dma_write(src_fi
, CSFI(lch
));
433 EXPORT_SYMBOL(omap_set_dma_src_params
);
435 void omap_set_dma_params(int lch
, struct omap_dma_channel_params
*params
)
437 omap_set_dma_transfer_params(lch
, params
->data_type
,
438 params
->elem_count
, params
->frame_count
,
439 params
->sync_mode
, params
->trigger
,
440 params
->src_or_dst_synch
);
441 omap_set_dma_src_params(lch
, params
->src_port
,
442 params
->src_amode
, params
->src_start
,
443 params
->src_ei
, params
->src_fi
);
445 omap_set_dma_dest_params(lch
, params
->dst_port
,
446 params
->dst_amode
, params
->dst_start
,
447 params
->dst_ei
, params
->dst_fi
);
448 if (params
->read_prio
|| params
->write_prio
)
449 omap_dma_set_prio_lch(lch
, params
->read_prio
,
452 EXPORT_SYMBOL(omap_set_dma_params
);
454 void omap_set_dma_src_index(int lch
, int eidx
, int fidx
)
456 if (cpu_class_is_omap2())
459 dma_write(eidx
, CSEI(lch
));
460 dma_write(fidx
, CSFI(lch
));
462 EXPORT_SYMBOL(omap_set_dma_src_index
);
464 void omap_set_dma_src_data_pack(int lch
, int enable
)
468 l
= dma_read(CSDP(lch
));
472 dma_write(l
, CSDP(lch
));
474 EXPORT_SYMBOL(omap_set_dma_src_data_pack
);
476 void omap_set_dma_src_burst_mode(int lch
, enum omap_dma_burst_mode burst_mode
)
478 unsigned int burst
= 0;
481 l
= dma_read(CSDP(lch
));
484 switch (burst_mode
) {
485 case OMAP_DMA_DATA_BURST_DIS
:
487 case OMAP_DMA_DATA_BURST_4
:
488 if (cpu_class_is_omap2())
493 case OMAP_DMA_DATA_BURST_8
:
494 if (cpu_class_is_omap2()) {
498 /* not supported by current hardware on OMAP1
502 case OMAP_DMA_DATA_BURST_16
:
503 if (cpu_class_is_omap2()) {
507 /* OMAP1 don't support burst 16
515 dma_write(l
, CSDP(lch
));
517 EXPORT_SYMBOL(omap_set_dma_src_burst_mode
);
519 /* Note that dest_port is only for OMAP1 */
520 void omap_set_dma_dest_params(int lch
, int dest_port
, int dest_amode
,
521 unsigned long dest_start
,
522 int dst_ei
, int dst_fi
)
526 if (cpu_class_is_omap1()) {
527 l
= dma_read(CSDP(lch
));
530 dma_write(l
, CSDP(lch
));
533 l
= dma_read(CCR(lch
));
535 l
|= dest_amode
<< 14;
536 dma_write(l
, CCR(lch
));
538 if (cpu_class_is_omap1()) {
539 dma_write(dest_start
>> 16, CDSA_U(lch
));
540 dma_write(dest_start
, CDSA_L(lch
));
543 if (cpu_class_is_omap2())
544 dma_write(dest_start
, CDSA(lch
));
546 dma_write(dst_ei
, CDEI(lch
));
547 dma_write(dst_fi
, CDFI(lch
));
549 EXPORT_SYMBOL(omap_set_dma_dest_params
);
551 void omap_set_dma_dest_index(int lch
, int eidx
, int fidx
)
553 if (cpu_class_is_omap2())
556 dma_write(eidx
, CDEI(lch
));
557 dma_write(fidx
, CDFI(lch
));
559 EXPORT_SYMBOL(omap_set_dma_dest_index
);
561 void omap_set_dma_dest_data_pack(int lch
, int enable
)
565 l
= dma_read(CSDP(lch
));
569 dma_write(l
, CSDP(lch
));
571 EXPORT_SYMBOL(omap_set_dma_dest_data_pack
);
573 void omap_set_dma_dest_burst_mode(int lch
, enum omap_dma_burst_mode burst_mode
)
575 unsigned int burst
= 0;
578 l
= dma_read(CSDP(lch
));
581 switch (burst_mode
) {
582 case OMAP_DMA_DATA_BURST_DIS
:
584 case OMAP_DMA_DATA_BURST_4
:
585 if (cpu_class_is_omap2())
590 case OMAP_DMA_DATA_BURST_8
:
591 if (cpu_class_is_omap2())
596 case OMAP_DMA_DATA_BURST_16
:
597 if (cpu_class_is_omap2()) {
601 /* OMAP1 don't support burst 16
605 printk(KERN_ERR
"Invalid DMA burst mode\n");
610 dma_write(l
, CSDP(lch
));
612 EXPORT_SYMBOL(omap_set_dma_dest_burst_mode
);
614 static inline void omap_enable_channel_irq(int lch
)
619 if (cpu_class_is_omap1())
620 status
= dma_read(CSR(lch
));
621 else if (cpu_class_is_omap2())
622 dma_write(OMAP2_DMA_CSR_CLEAR_MASK
, CSR(lch
));
624 /* Enable some nice interrupts. */
625 dma_write(dma_chan
[lch
].enabled_irqs
, CICR(lch
));
628 static void omap_disable_channel_irq(int lch
)
630 if (cpu_class_is_omap2())
631 dma_write(0, CICR(lch
));
634 void omap_enable_dma_irq(int lch
, u16 bits
)
636 dma_chan
[lch
].enabled_irqs
|= bits
;
638 EXPORT_SYMBOL(omap_enable_dma_irq
);
640 void omap_disable_dma_irq(int lch
, u16 bits
)
642 dma_chan
[lch
].enabled_irqs
&= ~bits
;
644 EXPORT_SYMBOL(omap_disable_dma_irq
);
646 static inline void enable_lnk(int lch
)
650 l
= dma_read(CLNK_CTRL(lch
));
652 if (cpu_class_is_omap1())
655 /* Set the ENABLE_LNK bits */
656 if (dma_chan
[lch
].next_lch
!= -1)
657 l
= dma_chan
[lch
].next_lch
| (1 << 15);
659 #ifndef CONFIG_ARCH_OMAP1
660 if (cpu_class_is_omap2())
661 if (dma_chan
[lch
].next_linked_ch
!= -1)
662 l
= dma_chan
[lch
].next_linked_ch
| (1 << 15);
665 dma_write(l
, CLNK_CTRL(lch
));
668 static inline void disable_lnk(int lch
)
672 l
= dma_read(CLNK_CTRL(lch
));
674 /* Disable interrupts */
675 if (cpu_class_is_omap1()) {
676 dma_write(0, CICR(lch
));
677 /* Set the STOP_LNK bit */
681 if (cpu_class_is_omap2()) {
682 omap_disable_channel_irq(lch
);
683 /* Clear the ENABLE_LNK bit */
687 dma_write(l
, CLNK_CTRL(lch
));
688 dma_chan
[lch
].flags
&= ~OMAP_DMA_ACTIVE
;
691 static inline void omap2_enable_irq_lch(int lch
)
696 if (!cpu_class_is_omap2())
699 spin_lock_irqsave(&dma_chan_lock
, flags
);
700 val
= dma_read(IRQENABLE_L0
);
702 dma_write(val
, IRQENABLE_L0
);
703 spin_unlock_irqrestore(&dma_chan_lock
, flags
);
706 int omap_request_dma(int dev_id
, const char *dev_name
,
707 void (*callback
)(int lch
, u16 ch_status
, void *data
),
708 void *data
, int *dma_ch_out
)
710 int ch
, free_ch
= -1;
712 struct omap_dma_lch
*chan
;
714 spin_lock_irqsave(&dma_chan_lock
, flags
);
715 for (ch
= 0; ch
< dma_chan_count
; ch
++) {
716 if (free_ch
== -1 && dma_chan
[ch
].dev_id
== -1) {
723 spin_unlock_irqrestore(&dma_chan_lock
, flags
);
726 chan
= dma_chan
+ free_ch
;
727 chan
->dev_id
= dev_id
;
729 if (cpu_class_is_omap1())
730 clear_lch_regs(free_ch
);
732 if (cpu_class_is_omap2())
733 omap_clear_dma(free_ch
);
735 spin_unlock_irqrestore(&dma_chan_lock
, flags
);
737 chan
->dev_name
= dev_name
;
738 chan
->callback
= callback
;
742 #ifndef CONFIG_ARCH_OMAP1
743 if (cpu_class_is_omap2()) {
745 chan
->next_linked_ch
= -1;
749 chan
->enabled_irqs
= OMAP_DMA_DROP_IRQ
| OMAP_DMA_BLOCK_IRQ
;
751 if (cpu_class_is_omap1())
752 chan
->enabled_irqs
|= OMAP1_DMA_TOUT_IRQ
;
753 else if (cpu_class_is_omap2())
754 chan
->enabled_irqs
|= OMAP2_DMA_MISALIGNED_ERR_IRQ
|
755 OMAP2_DMA_TRANS_ERR_IRQ
;
757 if (cpu_is_omap16xx()) {
758 /* If the sync device is set, configure it dynamically. */
760 set_gdma_dev(free_ch
+ 1, dev_id
);
761 dev_id
= free_ch
+ 1;
764 * Disable the 1510 compatibility mode and set the sync device
767 dma_write(dev_id
| (1 << 10), CCR(free_ch
));
768 } else if (cpu_is_omap7xx() || cpu_is_omap15xx()) {
769 dma_write(dev_id
, CCR(free_ch
));
772 if (cpu_class_is_omap2()) {
773 omap2_enable_irq_lch(free_ch
);
774 omap_enable_channel_irq(free_ch
);
775 /* Clear the CSR register and IRQ status register */
776 dma_write(OMAP2_DMA_CSR_CLEAR_MASK
, CSR(free_ch
));
777 dma_write(1 << free_ch
, IRQSTATUS_L0
);
780 *dma_ch_out
= free_ch
;
784 EXPORT_SYMBOL(omap_request_dma
);
786 void omap_free_dma(int lch
)
790 if (dma_chan
[lch
].dev_id
== -1) {
791 pr_err("omap_dma: trying to free unallocated DMA channel %d\n",
796 if (cpu_class_is_omap1()) {
797 /* Disable all DMA interrupts for the channel. */
798 dma_write(0, CICR(lch
));
799 /* Make sure the DMA transfer is stopped. */
800 dma_write(0, CCR(lch
));
803 if (cpu_class_is_omap2()) {
806 spin_lock_irqsave(&dma_chan_lock
, flags
);
807 /* Disable interrupts */
808 val
= dma_read(IRQENABLE_L0
);
810 dma_write(val
, IRQENABLE_L0
);
811 spin_unlock_irqrestore(&dma_chan_lock
, flags
);
813 /* Clear the CSR register and IRQ status register */
814 dma_write(OMAP2_DMA_CSR_CLEAR_MASK
, CSR(lch
));
815 dma_write(1 << lch
, IRQSTATUS_L0
);
817 /* Disable all DMA interrupts for the channel. */
818 dma_write(0, CICR(lch
));
820 /* Make sure the DMA transfer is stopped. */
821 dma_write(0, CCR(lch
));
825 spin_lock_irqsave(&dma_chan_lock
, flags
);
826 dma_chan
[lch
].dev_id
= -1;
827 dma_chan
[lch
].next_lch
= -1;
828 dma_chan
[lch
].callback
= NULL
;
829 spin_unlock_irqrestore(&dma_chan_lock
, flags
);
831 EXPORT_SYMBOL(omap_free_dma
);
834 * @brief omap_dma_set_global_params : Set global priority settings for dma
837 * @param max_fifo_depth
838 * @param tparams - Number of threads to reserve : DMA_THREAD_RESERVE_NORM
839 * DMA_THREAD_RESERVE_ONET
840 * DMA_THREAD_RESERVE_TWOT
841 * DMA_THREAD_RESERVE_THREET
844 omap_dma_set_global_params(int arb_rate
, int max_fifo_depth
, int tparams
)
848 if (!cpu_class_is_omap2()) {
849 printk(KERN_ERR
"FIXME: no %s on 15xx/16xx\n", __func__
);
853 if (max_fifo_depth
== 0)
858 reg
= 0xff & max_fifo_depth
;
859 reg
|= (0x3 & tparams
) << 12;
860 reg
|= (arb_rate
& 0xff) << 16;
864 EXPORT_SYMBOL(omap_dma_set_global_params
);
867 * @brief omap_dma_set_prio_lch : Set channel wise priority settings
870 * @param read_prio - Read priority
871 * @param write_prio - Write priority
872 * Both of the above can be set with one of the following values :
873 * DMA_CH_PRIO_HIGH/DMA_CH_PRIO_LOW
876 omap_dma_set_prio_lch(int lch
, unsigned char read_prio
,
877 unsigned char write_prio
)
881 if (unlikely((lch
< 0 || lch
>= dma_lch_count
))) {
882 printk(KERN_ERR
"Invalid channel id\n");
885 l
= dma_read(CCR(lch
));
886 l
&= ~((1 << 6) | (1 << 26));
887 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx())
888 l
|= ((read_prio
& 0x1) << 6) | ((write_prio
& 0x1) << 26);
890 l
|= ((read_prio
& 0x1) << 6);
892 dma_write(l
, CCR(lch
));
896 EXPORT_SYMBOL(omap_dma_set_prio_lch
);
899 * Clears any DMA state so the DMA engine is ready to restart with new buffers
900 * through omap_start_dma(). Any buffers in flight are discarded.
902 void omap_clear_dma(int lch
)
906 local_irq_save(flags
);
908 if (cpu_class_is_omap1()) {
911 l
= dma_read(CCR(lch
));
912 l
&= ~OMAP_DMA_CCR_EN
;
913 dma_write(l
, CCR(lch
));
915 /* Clear pending interrupts */
916 l
= dma_read(CSR(lch
));
919 if (cpu_class_is_omap2()) {
921 void __iomem
*lch_base
= omap_dma_base
+ OMAP_DMA4_CH_BASE(lch
);
922 for (i
= 0; i
< 0x44; i
+= 4)
923 __raw_writel(0, lch_base
+ i
);
926 local_irq_restore(flags
);
928 EXPORT_SYMBOL(omap_clear_dma
);
930 void omap_start_dma(int lch
)
934 if (!omap_dma_in_1510_mode() && dma_chan
[lch
].next_lch
!= -1) {
935 int next_lch
, cur_lch
;
936 char dma_chan_link_map
[OMAP_DMA4_LOGICAL_DMA_CH_COUNT
];
938 dma_chan_link_map
[lch
] = 1;
939 /* Set the link register of the first channel */
942 memset(dma_chan_link_map
, 0, sizeof(dma_chan_link_map
));
943 cur_lch
= dma_chan
[lch
].next_lch
;
945 next_lch
= dma_chan
[cur_lch
].next_lch
;
947 /* The loop case: we've been here already */
948 if (dma_chan_link_map
[cur_lch
])
950 /* Mark the current channel */
951 dma_chan_link_map
[cur_lch
] = 1;
954 omap_enable_channel_irq(cur_lch
);
957 } while (next_lch
!= -1);
958 } else if (cpu_is_omap242x() ||
959 (cpu_is_omap243x() && omap_type() <= OMAP2430_REV_ES1_0
)) {
961 /* Errata: Need to write lch even if not using chaining */
962 dma_write(lch
, CLNK_CTRL(lch
));
965 omap_enable_channel_irq(lch
);
967 l
= dma_read(CCR(lch
));
970 * Errata: On ES2.0 BUFFERING disable must be set.
971 * This will always fail on ES1.0
973 if (cpu_is_omap24xx())
974 l
|= OMAP_DMA_CCR_EN
;
976 l
|= OMAP_DMA_CCR_EN
;
977 dma_write(l
, CCR(lch
));
979 dma_chan
[lch
].flags
|= OMAP_DMA_ACTIVE
;
981 EXPORT_SYMBOL(omap_start_dma
);
983 void omap_stop_dma(int lch
)
987 /* Disable all interrupts on the channel */
988 if (cpu_class_is_omap1())
989 dma_write(0, CICR(lch
));
991 l
= dma_read(CCR(lch
));
992 l
&= ~OMAP_DMA_CCR_EN
;
993 dma_write(l
, CCR(lch
));
995 if (!omap_dma_in_1510_mode() && dma_chan
[lch
].next_lch
!= -1) {
996 int next_lch
, cur_lch
= lch
;
997 char dma_chan_link_map
[OMAP_DMA4_LOGICAL_DMA_CH_COUNT
];
999 memset(dma_chan_link_map
, 0, sizeof(dma_chan_link_map
));
1001 /* The loop case: we've been here already */
1002 if (dma_chan_link_map
[cur_lch
])
1004 /* Mark the current channel */
1005 dma_chan_link_map
[cur_lch
] = 1;
1007 disable_lnk(cur_lch
);
1009 next_lch
= dma_chan
[cur_lch
].next_lch
;
1011 } while (next_lch
!= -1);
1014 dma_chan
[lch
].flags
&= ~OMAP_DMA_ACTIVE
;
1016 EXPORT_SYMBOL(omap_stop_dma
);
1019 * Allows changing the DMA callback function or data. This may be needed if
1020 * the driver shares a single DMA channel for multiple dma triggers.
1022 int omap_set_dma_callback(int lch
,
1023 void (*callback
)(int lch
, u16 ch_status
, void *data
),
1026 unsigned long flags
;
1031 spin_lock_irqsave(&dma_chan_lock
, flags
);
1032 if (dma_chan
[lch
].dev_id
== -1) {
1033 printk(KERN_ERR
"DMA callback for not set for free channel\n");
1034 spin_unlock_irqrestore(&dma_chan_lock
, flags
);
1037 dma_chan
[lch
].callback
= callback
;
1038 dma_chan
[lch
].data
= data
;
1039 spin_unlock_irqrestore(&dma_chan_lock
, flags
);
1043 EXPORT_SYMBOL(omap_set_dma_callback
);
1046 * Returns current physical source address for the given DMA channel.
1047 * If the channel is running the caller must disable interrupts prior calling
1048 * this function and process the returned value before re-enabling interrupt to
1049 * prevent races with the interrupt handler. Note that in continuous mode there
1050 * is a chance for CSSA_L register overflow inbetween the two reads resulting
1051 * in incorrect return value.
1053 dma_addr_t
omap_get_dma_src_pos(int lch
)
1055 dma_addr_t offset
= 0;
1057 if (cpu_is_omap15xx())
1058 offset
= dma_read(CPC(lch
));
1060 offset
= dma_read(CSAC(lch
));
1063 * omap 3.2/3.3 erratum: sometimes 0 is returned if CSAC/CDAC is
1064 * read before the DMA controller finished disabling the channel.
1066 if (!cpu_is_omap15xx() && offset
== 0)
1067 offset
= dma_read(CSAC(lch
));
1069 if (cpu_class_is_omap1())
1070 offset
|= (dma_read(CSSA_U(lch
)) << 16);
1074 EXPORT_SYMBOL(omap_get_dma_src_pos
);
1077 * Returns current physical destination address for the given DMA channel.
1078 * If the channel is running the caller must disable interrupts prior calling
1079 * this function and process the returned value before re-enabling interrupt to
1080 * prevent races with the interrupt handler. Note that in continuous mode there
1081 * is a chance for CDSA_L register overflow inbetween the two reads resulting
1082 * in incorrect return value.
1084 dma_addr_t
omap_get_dma_dst_pos(int lch
)
1086 dma_addr_t offset
= 0;
1088 if (cpu_is_omap15xx())
1089 offset
= dma_read(CPC(lch
));
1091 offset
= dma_read(CDAC(lch
));
1094 * omap 3.2/3.3 erratum: sometimes 0 is returned if CSAC/CDAC is
1095 * read before the DMA controller finished disabling the channel.
1097 if (!cpu_is_omap15xx() && offset
== 0)
1098 offset
= dma_read(CDAC(lch
));
1100 if (cpu_class_is_omap1())
1101 offset
|= (dma_read(CDSA_U(lch
)) << 16);
1105 EXPORT_SYMBOL(omap_get_dma_dst_pos
);
1107 int omap_get_dma_active_status(int lch
)
1109 return (dma_read(CCR(lch
)) & OMAP_DMA_CCR_EN
) != 0;
1111 EXPORT_SYMBOL(omap_get_dma_active_status
);
1113 int omap_dma_running(void)
1118 * On OMAP1510, internal LCD controller will start the transfer
1119 * when it gets enabled, so assume DMA running if LCD enabled.
1121 if (cpu_is_omap1510())
1122 if (omap_readw(0xfffec000 + 0x00) & (1 << 0))
1125 /* Check if LCD DMA is running */
1126 if (cpu_is_omap16xx())
1127 if (omap_readw(OMAP1610_DMA_LCD_CCR
) & OMAP_DMA_CCR_EN
)
1130 for (lch
= 0; lch
< dma_chan_count
; lch
++)
1131 if (dma_read(CCR(lch
)) & OMAP_DMA_CCR_EN
)
1138 * lch_queue DMA will start right after lch_head one is finished.
1139 * For this DMA link to start, you still need to start (see omap_start_dma)
1140 * the first one. That will fire up the entire queue.
1142 void omap_dma_link_lch(int lch_head
, int lch_queue
)
1144 if (omap_dma_in_1510_mode()) {
1145 if (lch_head
== lch_queue
) {
1146 dma_write(dma_read(CCR(lch_head
)) | (3 << 8),
1150 printk(KERN_ERR
"DMA linking is not supported in 1510 mode\n");
1155 if ((dma_chan
[lch_head
].dev_id
== -1) ||
1156 (dma_chan
[lch_queue
].dev_id
== -1)) {
1157 printk(KERN_ERR
"omap_dma: trying to link "
1158 "non requested channels\n");
1162 dma_chan
[lch_head
].next_lch
= lch_queue
;
1164 EXPORT_SYMBOL(omap_dma_link_lch
);
1167 * Once the DMA queue is stopped, we can destroy it.
1169 void omap_dma_unlink_lch(int lch_head
, int lch_queue
)
1171 if (omap_dma_in_1510_mode()) {
1172 if (lch_head
== lch_queue
) {
1173 dma_write(dma_read(CCR(lch_head
)) & ~(3 << 8),
1177 printk(KERN_ERR
"DMA linking is not supported in 1510 mode\n");
1182 if (dma_chan
[lch_head
].next_lch
!= lch_queue
||
1183 dma_chan
[lch_head
].next_lch
== -1) {
1184 printk(KERN_ERR
"omap_dma: trying to unlink "
1185 "non linked channels\n");
1189 if ((dma_chan
[lch_head
].flags
& OMAP_DMA_ACTIVE
) ||
1190 (dma_chan
[lch_head
].flags
& OMAP_DMA_ACTIVE
)) {
1191 printk(KERN_ERR
"omap_dma: You need to stop the DMA channels "
1192 "before unlinking\n");
1196 dma_chan
[lch_head
].next_lch
= -1;
1198 EXPORT_SYMBOL(omap_dma_unlink_lch
);
1200 /*----------------------------------------------------------------------------*/
1202 #ifndef CONFIG_ARCH_OMAP1
1203 /* Create chain of DMA channesls */
1204 static void create_dma_lch_chain(int lch_head
, int lch_queue
)
1208 /* Check if this is the first link in chain */
1209 if (dma_chan
[lch_head
].next_linked_ch
== -1) {
1210 dma_chan
[lch_head
].next_linked_ch
= lch_queue
;
1211 dma_chan
[lch_head
].prev_linked_ch
= lch_queue
;
1212 dma_chan
[lch_queue
].next_linked_ch
= lch_head
;
1213 dma_chan
[lch_queue
].prev_linked_ch
= lch_head
;
1216 /* a link exists, link the new channel in circular chain */
1218 dma_chan
[lch_queue
].next_linked_ch
=
1219 dma_chan
[lch_head
].next_linked_ch
;
1220 dma_chan
[lch_queue
].prev_linked_ch
= lch_head
;
1221 dma_chan
[lch_head
].next_linked_ch
= lch_queue
;
1222 dma_chan
[dma_chan
[lch_queue
].next_linked_ch
].prev_linked_ch
=
1226 l
= dma_read(CLNK_CTRL(lch_head
));
1229 dma_write(l
, CLNK_CTRL(lch_head
));
1231 l
= dma_read(CLNK_CTRL(lch_queue
));
1233 l
|= (dma_chan
[lch_queue
].next_linked_ch
);
1234 dma_write(l
, CLNK_CTRL(lch_queue
));
1238 * @brief omap_request_dma_chain : Request a chain of DMA channels
1240 * @param dev_id - Device id using the dma channel
1241 * @param dev_name - Device name
1242 * @param callback - Call back function
1244 * @no_of_chans - Number of channels requested
1245 * @chain_mode - Dynamic or static chaining : OMAP_DMA_STATIC_CHAIN
1246 * OMAP_DMA_DYNAMIC_CHAIN
1247 * @params - Channel parameters
1249 * @return - Succes : 0
1250 * Failure: -EINVAL/-ENOMEM
1252 int omap_request_dma_chain(int dev_id
, const char *dev_name
,
1253 void (*callback
) (int lch
, u16 ch_status
,
1255 int *chain_id
, int no_of_chans
, int chain_mode
,
1256 struct omap_dma_channel_params params
)
1261 /* Is the chain mode valid ? */
1262 if (chain_mode
!= OMAP_DMA_STATIC_CHAIN
1263 && chain_mode
!= OMAP_DMA_DYNAMIC_CHAIN
) {
1264 printk(KERN_ERR
"Invalid chain mode requested\n");
1268 if (unlikely((no_of_chans
< 1
1269 || no_of_chans
> dma_lch_count
))) {
1270 printk(KERN_ERR
"Invalid Number of channels requested\n");
1274 /* Allocate a queue to maintain the status of the channels
1276 channels
= kmalloc(sizeof(*channels
) * no_of_chans
, GFP_KERNEL
);
1277 if (channels
== NULL
) {
1278 printk(KERN_ERR
"omap_dma: No memory for channel queue\n");
1282 /* request and reserve DMA channels for the chain */
1283 for (i
= 0; i
< no_of_chans
; i
++) {
1284 err
= omap_request_dma(dev_id
, dev_name
,
1285 callback
, NULL
, &channels
[i
]);
1288 for (j
= 0; j
< i
; j
++)
1289 omap_free_dma(channels
[j
]);
1291 printk(KERN_ERR
"omap_dma: Request failed %d\n", err
);
1294 dma_chan
[channels
[i
]].prev_linked_ch
= -1;
1295 dma_chan
[channels
[i
]].state
= DMA_CH_NOTSTARTED
;
1298 * Allowing client drivers to set common parameters now,
1299 * so that later only relevant (src_start, dest_start
1300 * and element count) can be set
1302 omap_set_dma_params(channels
[i
], ¶ms
);
1305 *chain_id
= channels
[0];
1306 dma_linked_lch
[*chain_id
].linked_dmach_q
= channels
;
1307 dma_linked_lch
[*chain_id
].chain_mode
= chain_mode
;
1308 dma_linked_lch
[*chain_id
].chain_state
= DMA_CHAIN_NOTSTARTED
;
1309 dma_linked_lch
[*chain_id
].no_of_lchs_linked
= no_of_chans
;
1311 for (i
= 0; i
< no_of_chans
; i
++)
1312 dma_chan
[channels
[i
]].chain_id
= *chain_id
;
1314 /* Reset the Queue pointers */
1315 OMAP_DMA_CHAIN_QINIT(*chain_id
);
1317 /* Set up the chain */
1318 if (no_of_chans
== 1)
1319 create_dma_lch_chain(channels
[0], channels
[0]);
1321 for (i
= 0; i
< (no_of_chans
- 1); i
++)
1322 create_dma_lch_chain(channels
[i
], channels
[i
+ 1]);
1327 EXPORT_SYMBOL(omap_request_dma_chain
);
1330 * @brief omap_modify_dma_chain_param : Modify the chain's params - Modify the
1331 * params after setting it. Dont do this while dma is running!!
1333 * @param chain_id - Chained logical channel id.
1336 * @return - Success : 0
1339 int omap_modify_dma_chain_params(int chain_id
,
1340 struct omap_dma_channel_params params
)
1345 /* Check for input params */
1346 if (unlikely((chain_id
< 0
1347 || chain_id
>= dma_lch_count
))) {
1348 printk(KERN_ERR
"Invalid chain id\n");
1352 /* Check if the chain exists */
1353 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1354 printk(KERN_ERR
"Chain doesn't exists\n");
1357 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1359 for (i
= 0; i
< dma_linked_lch
[chain_id
].no_of_lchs_linked
; i
++) {
1361 * Allowing client drivers to set common parameters now,
1362 * so that later only relevant (src_start, dest_start
1363 * and element count) can be set
1365 omap_set_dma_params(channels
[i
], ¶ms
);
1370 EXPORT_SYMBOL(omap_modify_dma_chain_params
);
1373 * @brief omap_free_dma_chain - Free all the logical channels in a chain.
1377 * @return - Success : 0
1380 int omap_free_dma_chain(int chain_id
)
1385 /* Check for input params */
1386 if (unlikely((chain_id
< 0 || chain_id
>= dma_lch_count
))) {
1387 printk(KERN_ERR
"Invalid chain id\n");
1391 /* Check if the chain exists */
1392 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1393 printk(KERN_ERR
"Chain doesn't exists\n");
1397 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1398 for (i
= 0; i
< dma_linked_lch
[chain_id
].no_of_lchs_linked
; i
++) {
1399 dma_chan
[channels
[i
]].next_linked_ch
= -1;
1400 dma_chan
[channels
[i
]].prev_linked_ch
= -1;
1401 dma_chan
[channels
[i
]].chain_id
= -1;
1402 dma_chan
[channels
[i
]].state
= DMA_CH_NOTSTARTED
;
1403 omap_free_dma(channels
[i
]);
1408 dma_linked_lch
[chain_id
].linked_dmach_q
= NULL
;
1409 dma_linked_lch
[chain_id
].chain_mode
= -1;
1410 dma_linked_lch
[chain_id
].chain_state
= -1;
1414 EXPORT_SYMBOL(omap_free_dma_chain
);
1417 * @brief omap_dma_chain_status - Check if the chain is in
1418 * active / inactive state.
1421 * @return - Success : OMAP_DMA_CHAIN_ACTIVE/OMAP_DMA_CHAIN_INACTIVE
1424 int omap_dma_chain_status(int chain_id
)
1426 /* Check for input params */
1427 if (unlikely((chain_id
< 0 || chain_id
>= dma_lch_count
))) {
1428 printk(KERN_ERR
"Invalid chain id\n");
1432 /* Check if the chain exists */
1433 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1434 printk(KERN_ERR
"Chain doesn't exists\n");
1437 pr_debug("CHAINID=%d, qcnt=%d\n", chain_id
,
1438 dma_linked_lch
[chain_id
].q_count
);
1440 if (OMAP_DMA_CHAIN_QEMPTY(chain_id
))
1441 return OMAP_DMA_CHAIN_INACTIVE
;
1443 return OMAP_DMA_CHAIN_ACTIVE
;
1445 EXPORT_SYMBOL(omap_dma_chain_status
);
1448 * @brief omap_dma_chain_a_transfer - Get a free channel from a chain,
1449 * set the params and start the transfer.
1452 * @param src_start - buffer start address
1453 * @param dest_start - Dest address
1455 * @param frame_count
1456 * @param callbk_data - channel callback parameter data.
1458 * @return - Success : 0
1459 * Failure: -EINVAL/-EBUSY
1461 int omap_dma_chain_a_transfer(int chain_id
, int src_start
, int dest_start
,
1462 int elem_count
, int frame_count
, void *callbk_data
)
1469 * if buffer size is less than 1 then there is
1470 * no use of starting the chain
1472 if (elem_count
< 1) {
1473 printk(KERN_ERR
"Invalid buffer size\n");
1477 /* Check for input params */
1478 if (unlikely((chain_id
< 0
1479 || chain_id
>= dma_lch_count
))) {
1480 printk(KERN_ERR
"Invalid chain id\n");
1484 /* Check if the chain exists */
1485 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1486 printk(KERN_ERR
"Chain doesn't exist\n");
1490 /* Check if all the channels in chain are in use */
1491 if (OMAP_DMA_CHAIN_QFULL(chain_id
))
1494 /* Frame count may be negative in case of indexed transfers */
1495 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1497 /* Get a free channel */
1498 lch
= channels
[dma_linked_lch
[chain_id
].q_tail
];
1500 /* Store the callback data */
1501 dma_chan
[lch
].data
= callbk_data
;
1503 /* Increment the q_tail */
1504 OMAP_DMA_CHAIN_INCQTAIL(chain_id
);
1506 /* Set the params to the free channel */
1508 dma_write(src_start
, CSSA(lch
));
1509 if (dest_start
!= 0)
1510 dma_write(dest_start
, CDSA(lch
));
1512 /* Write the buffer size */
1513 dma_write(elem_count
, CEN(lch
));
1514 dma_write(frame_count
, CFN(lch
));
1517 * If the chain is dynamically linked,
1518 * then we may have to start the chain if its not active
1520 if (dma_linked_lch
[chain_id
].chain_mode
== OMAP_DMA_DYNAMIC_CHAIN
) {
1523 * In Dynamic chain, if the chain is not started,
1526 if (dma_linked_lch
[chain_id
].chain_state
==
1527 DMA_CHAIN_NOTSTARTED
) {
1528 /* Enable the link in previous channel */
1529 if (dma_chan
[dma_chan
[lch
].prev_linked_ch
].state
==
1531 enable_lnk(dma_chan
[lch
].prev_linked_ch
);
1532 dma_chan
[lch
].state
= DMA_CH_QUEUED
;
1536 * Chain is already started, make sure its active,
1537 * if not then start the chain
1542 if (dma_chan
[dma_chan
[lch
].prev_linked_ch
].state
==
1544 enable_lnk(dma_chan
[lch
].prev_linked_ch
);
1545 dma_chan
[lch
].state
= DMA_CH_QUEUED
;
1547 if (0 == ((1 << 7) & dma_read(
1548 CCR(dma_chan
[lch
].prev_linked_ch
)))) {
1549 disable_lnk(dma_chan
[lch
].
1551 pr_debug("\n prev ch is stopped\n");
1556 else if (dma_chan
[dma_chan
[lch
].prev_linked_ch
].state
1558 enable_lnk(dma_chan
[lch
].prev_linked_ch
);
1559 dma_chan
[lch
].state
= DMA_CH_QUEUED
;
1562 omap_enable_channel_irq(lch
);
1564 l
= dma_read(CCR(lch
));
1566 if ((0 == (l
& (1 << 24))))
1570 if (start_dma
== 1) {
1571 if (0 == (l
& (1 << 7))) {
1573 dma_chan
[lch
].state
= DMA_CH_STARTED
;
1574 pr_debug("starting %d\n", lch
);
1575 dma_write(l
, CCR(lch
));
1579 if (0 == (l
& (1 << 7)))
1580 dma_write(l
, CCR(lch
));
1582 dma_chan
[lch
].flags
|= OMAP_DMA_ACTIVE
;
1588 EXPORT_SYMBOL(omap_dma_chain_a_transfer
);
1591 * @brief omap_start_dma_chain_transfers - Start the chain
1595 * @return - Success : 0
1596 * Failure : -EINVAL/-EBUSY
1598 int omap_start_dma_chain_transfers(int chain_id
)
1603 if (unlikely((chain_id
< 0 || chain_id
>= dma_lch_count
))) {
1604 printk(KERN_ERR
"Invalid chain id\n");
1608 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1610 if (dma_linked_lch
[channels
[0]].chain_state
== DMA_CHAIN_STARTED
) {
1611 printk(KERN_ERR
"Chain is already started\n");
1615 if (dma_linked_lch
[chain_id
].chain_mode
== OMAP_DMA_STATIC_CHAIN
) {
1616 for (i
= 0; i
< dma_linked_lch
[chain_id
].no_of_lchs_linked
;
1618 enable_lnk(channels
[i
]);
1619 omap_enable_channel_irq(channels
[i
]);
1622 omap_enable_channel_irq(channels
[0]);
1625 l
= dma_read(CCR(channels
[0]));
1627 dma_linked_lch
[chain_id
].chain_state
= DMA_CHAIN_STARTED
;
1628 dma_chan
[channels
[0]].state
= DMA_CH_STARTED
;
1630 if ((0 == (l
& (1 << 24))))
1634 dma_write(l
, CCR(channels
[0]));
1636 dma_chan
[channels
[0]].flags
|= OMAP_DMA_ACTIVE
;
1640 EXPORT_SYMBOL(omap_start_dma_chain_transfers
);
1643 * @brief omap_stop_dma_chain_transfers - Stop the dma transfer of a chain.
1647 * @return - Success : 0
1650 int omap_stop_dma_chain_transfers(int chain_id
)
1656 /* Check for input params */
1657 if (unlikely((chain_id
< 0 || chain_id
>= dma_lch_count
))) {
1658 printk(KERN_ERR
"Invalid chain id\n");
1662 /* Check if the chain exists */
1663 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1664 printk(KERN_ERR
"Chain doesn't exists\n");
1667 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1671 * Special programming model needed to disable DMA before end of block
1673 sys_cf
= dma_read(OCP_SYSCONFIG
);
1675 /* Middle mode reg set no Standby */
1676 l
&= ~((1 << 12)|(1 << 13));
1677 dma_write(l
, OCP_SYSCONFIG
);
1679 for (i
= 0; i
< dma_linked_lch
[chain_id
].no_of_lchs_linked
; i
++) {
1681 /* Stop the Channel transmission */
1682 l
= dma_read(CCR(channels
[i
]));
1684 dma_write(l
, CCR(channels
[i
]));
1686 /* Disable the link in all the channels */
1687 disable_lnk(channels
[i
]);
1688 dma_chan
[channels
[i
]].state
= DMA_CH_NOTSTARTED
;
1691 dma_linked_lch
[chain_id
].chain_state
= DMA_CHAIN_NOTSTARTED
;
1693 /* Reset the Queue pointers */
1694 OMAP_DMA_CHAIN_QINIT(chain_id
);
1696 /* Errata - put in the old value */
1697 dma_write(sys_cf
, OCP_SYSCONFIG
);
1701 EXPORT_SYMBOL(omap_stop_dma_chain_transfers
);
1703 /* Get the index of the ongoing DMA in chain */
1705 * @brief omap_get_dma_chain_index - Get the element and frame index
1706 * of the ongoing DMA in chain
1709 * @param ei - Element index
1710 * @param fi - Frame index
1712 * @return - Success : 0
1715 int omap_get_dma_chain_index(int chain_id
, int *ei
, int *fi
)
1720 /* Check for input params */
1721 if (unlikely((chain_id
< 0 || chain_id
>= dma_lch_count
))) {
1722 printk(KERN_ERR
"Invalid chain id\n");
1726 /* Check if the chain exists */
1727 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1728 printk(KERN_ERR
"Chain doesn't exists\n");
1734 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1736 /* Get the current channel */
1737 lch
= channels
[dma_linked_lch
[chain_id
].q_head
];
1739 *ei
= dma_read(CCEN(lch
));
1740 *fi
= dma_read(CCFN(lch
));
1744 EXPORT_SYMBOL(omap_get_dma_chain_index
);
1747 * @brief omap_get_dma_chain_dst_pos - Get the destination position of the
1748 * ongoing DMA in chain
1752 * @return - Success : Destination position
1755 int omap_get_dma_chain_dst_pos(int chain_id
)
1760 /* Check for input params */
1761 if (unlikely((chain_id
< 0 || chain_id
>= dma_lch_count
))) {
1762 printk(KERN_ERR
"Invalid chain id\n");
1766 /* Check if the chain exists */
1767 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1768 printk(KERN_ERR
"Chain doesn't exists\n");
1772 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1774 /* Get the current channel */
1775 lch
= channels
[dma_linked_lch
[chain_id
].q_head
];
1777 return dma_read(CDAC(lch
));
1779 EXPORT_SYMBOL(omap_get_dma_chain_dst_pos
);
1782 * @brief omap_get_dma_chain_src_pos - Get the source position
1783 * of the ongoing DMA in chain
1786 * @return - Success : Destination position
1789 int omap_get_dma_chain_src_pos(int chain_id
)
1794 /* Check for input params */
1795 if (unlikely((chain_id
< 0 || chain_id
>= dma_lch_count
))) {
1796 printk(KERN_ERR
"Invalid chain id\n");
1800 /* Check if the chain exists */
1801 if (dma_linked_lch
[chain_id
].linked_dmach_q
== NULL
) {
1802 printk(KERN_ERR
"Chain doesn't exists\n");
1806 channels
= dma_linked_lch
[chain_id
].linked_dmach_q
;
1808 /* Get the current channel */
1809 lch
= channels
[dma_linked_lch
[chain_id
].q_head
];
1811 return dma_read(CSAC(lch
));
1813 EXPORT_SYMBOL(omap_get_dma_chain_src_pos
);
1814 #endif /* ifndef CONFIG_ARCH_OMAP1 */
1816 /*----------------------------------------------------------------------------*/
1818 #ifdef CONFIG_ARCH_OMAP1
1820 static int omap1_dma_handle_ch(int ch
)
1824 if (enable_1510_mode
&& ch
>= 6) {
1825 csr
= dma_chan
[ch
].saved_csr
;
1826 dma_chan
[ch
].saved_csr
= 0;
1828 csr
= dma_read(CSR(ch
));
1829 if (enable_1510_mode
&& ch
<= 2 && (csr
>> 7) != 0) {
1830 dma_chan
[ch
+ 6].saved_csr
= csr
>> 7;
1833 if ((csr
& 0x3f) == 0)
1835 if (unlikely(dma_chan
[ch
].dev_id
== -1)) {
1836 printk(KERN_WARNING
"Spurious interrupt from DMA channel "
1837 "%d (CSR %04x)\n", ch
, csr
);
1840 if (unlikely(csr
& OMAP1_DMA_TOUT_IRQ
))
1841 printk(KERN_WARNING
"DMA timeout with device %d\n",
1842 dma_chan
[ch
].dev_id
);
1843 if (unlikely(csr
& OMAP_DMA_DROP_IRQ
))
1844 printk(KERN_WARNING
"DMA synchronization event drop occurred "
1845 "with device %d\n", dma_chan
[ch
].dev_id
);
1846 if (likely(csr
& OMAP_DMA_BLOCK_IRQ
))
1847 dma_chan
[ch
].flags
&= ~OMAP_DMA_ACTIVE
;
1848 if (likely(dma_chan
[ch
].callback
!= NULL
))
1849 dma_chan
[ch
].callback(ch
, csr
, dma_chan
[ch
].data
);
1854 static irqreturn_t
omap1_dma_irq_handler(int irq
, void *dev_id
)
1856 int ch
= ((int) dev_id
) - 1;
1860 int handled_now
= 0;
1862 handled_now
+= omap1_dma_handle_ch(ch
);
1863 if (enable_1510_mode
&& dma_chan
[ch
+ 6].saved_csr
)
1864 handled_now
+= omap1_dma_handle_ch(ch
+ 6);
1867 handled
+= handled_now
;
1870 return handled
? IRQ_HANDLED
: IRQ_NONE
;
1874 #define omap1_dma_irq_handler NULL
1877 #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) || \
1878 defined(CONFIG_ARCH_OMAP4)
1880 static int omap2_dma_handle_ch(int ch
)
1882 u32 status
= dma_read(CSR(ch
));
1885 if (printk_ratelimit())
1886 printk(KERN_WARNING
"Spurious DMA IRQ for lch %d\n",
1888 dma_write(1 << ch
, IRQSTATUS_L0
);
1891 if (unlikely(dma_chan
[ch
].dev_id
== -1)) {
1892 if (printk_ratelimit())
1893 printk(KERN_WARNING
"IRQ %04x for non-allocated DMA"
1894 "channel %d\n", status
, ch
);
1897 if (unlikely(status
& OMAP_DMA_DROP_IRQ
))
1899 "DMA synchronization event drop occurred with device "
1900 "%d\n", dma_chan
[ch
].dev_id
);
1901 if (unlikely(status
& OMAP2_DMA_TRANS_ERR_IRQ
)) {
1902 printk(KERN_INFO
"DMA transaction error with device %d\n",
1903 dma_chan
[ch
].dev_id
);
1904 if (cpu_class_is_omap2()) {
1905 /* Errata: sDMA Channel is not disabled
1906 * after a transaction error. So we explicitely
1907 * disable the channel
1911 ccr
= dma_read(CCR(ch
));
1912 ccr
&= ~OMAP_DMA_CCR_EN
;
1913 dma_write(ccr
, CCR(ch
));
1914 dma_chan
[ch
].flags
&= ~OMAP_DMA_ACTIVE
;
1917 if (unlikely(status
& OMAP2_DMA_SECURE_ERR_IRQ
))
1918 printk(KERN_INFO
"DMA secure error with device %d\n",
1919 dma_chan
[ch
].dev_id
);
1920 if (unlikely(status
& OMAP2_DMA_MISALIGNED_ERR_IRQ
))
1921 printk(KERN_INFO
"DMA misaligned error with device %d\n",
1922 dma_chan
[ch
].dev_id
);
1924 dma_write(OMAP2_DMA_CSR_CLEAR_MASK
, CSR(ch
));
1925 dma_write(1 << ch
, IRQSTATUS_L0
);
1927 /* If the ch is not chained then chain_id will be -1 */
1928 if (dma_chan
[ch
].chain_id
!= -1) {
1929 int chain_id
= dma_chan
[ch
].chain_id
;
1930 dma_chan
[ch
].state
= DMA_CH_NOTSTARTED
;
1931 if (dma_read(CLNK_CTRL(ch
)) & (1 << 15))
1932 dma_chan
[dma_chan
[ch
].next_linked_ch
].state
=
1934 if (dma_linked_lch
[chain_id
].chain_mode
==
1935 OMAP_DMA_DYNAMIC_CHAIN
)
1938 if (!OMAP_DMA_CHAIN_QEMPTY(chain_id
))
1939 OMAP_DMA_CHAIN_INCQHEAD(chain_id
);
1941 status
= dma_read(CSR(ch
));
1944 dma_write(status
, CSR(ch
));
1946 if (likely(dma_chan
[ch
].callback
!= NULL
))
1947 dma_chan
[ch
].callback(ch
, status
, dma_chan
[ch
].data
);
1952 /* STATUS register count is from 1-32 while our is 0-31 */
1953 static irqreturn_t
omap2_dma_irq_handler(int irq
, void *dev_id
)
1955 u32 val
, enable_reg
;
1958 val
= dma_read(IRQSTATUS_L0
);
1960 if (printk_ratelimit())
1961 printk(KERN_WARNING
"Spurious DMA IRQ\n");
1964 enable_reg
= dma_read(IRQENABLE_L0
);
1965 val
&= enable_reg
; /* Dispatch only relevant interrupts */
1966 for (i
= 0; i
< dma_lch_count
&& val
!= 0; i
++) {
1968 omap2_dma_handle_ch(i
);
1975 static struct irqaction omap24xx_dma_irq
= {
1977 .handler
= omap2_dma_irq_handler
,
1978 .flags
= IRQF_DISABLED
1982 static struct irqaction omap24xx_dma_irq
;
1985 /*----------------------------------------------------------------------------*/
1987 static struct lcd_dma_info
{
1990 void (*callback
)(u16 status
, void *data
);
1994 unsigned long addr
, size
;
1995 int rotate
, data_type
, xres
, yres
;
2001 int single_transfer
;
2004 void omap_set_lcd_dma_b1(unsigned long addr
, u16 fb_xres
, u16 fb_yres
,
2007 lcd_dma
.addr
= addr
;
2008 lcd_dma
.data_type
= data_type
;
2009 lcd_dma
.xres
= fb_xres
;
2010 lcd_dma
.yres
= fb_yres
;
2012 EXPORT_SYMBOL(omap_set_lcd_dma_b1
);
2014 void omap_set_lcd_dma_src_port(int port
)
2016 lcd_dma
.src_port
= port
;
2019 void omap_set_lcd_dma_ext_controller(int external
)
2021 lcd_dma
.ext_ctrl
= external
;
2023 EXPORT_SYMBOL(omap_set_lcd_dma_ext_controller
);
2025 void omap_set_lcd_dma_single_transfer(int single
)
2027 lcd_dma
.single_transfer
= single
;
2029 EXPORT_SYMBOL(omap_set_lcd_dma_single_transfer
);
2031 void omap_set_lcd_dma_b1_rotation(int rotate
)
2033 if (omap_dma_in_1510_mode()) {
2034 printk(KERN_ERR
"DMA rotation is not supported in 1510 mode\n");
2038 lcd_dma
.rotate
= rotate
;
2040 EXPORT_SYMBOL(omap_set_lcd_dma_b1_rotation
);
2042 void omap_set_lcd_dma_b1_mirror(int mirror
)
2044 if (omap_dma_in_1510_mode()) {
2045 printk(KERN_ERR
"DMA mirror is not supported in 1510 mode\n");
2048 lcd_dma
.mirror
= mirror
;
2050 EXPORT_SYMBOL(omap_set_lcd_dma_b1_mirror
);
2052 void omap_set_lcd_dma_b1_vxres(unsigned long vxres
)
2054 if (omap_dma_in_1510_mode()) {
2055 printk(KERN_ERR
"DMA virtual resulotion is not supported "
2059 lcd_dma
.vxres
= vxres
;
2061 EXPORT_SYMBOL(omap_set_lcd_dma_b1_vxres
);
2063 void omap_set_lcd_dma_b1_scale(unsigned int xscale
, unsigned int yscale
)
2065 if (omap_dma_in_1510_mode()) {
2066 printk(KERN_ERR
"DMA scale is not supported in 1510 mode\n");
2069 lcd_dma
.xscale
= xscale
;
2070 lcd_dma
.yscale
= yscale
;
2072 EXPORT_SYMBOL(omap_set_lcd_dma_b1_scale
);
2074 static void set_b1_regs(void)
2076 unsigned long top
, bottom
;
2079 unsigned long en
, fn
;
2081 unsigned long vxres
;
2082 unsigned int xscale
, yscale
;
2084 switch (lcd_dma
.data_type
) {
2085 case OMAP_DMA_DATA_TYPE_S8
:
2088 case OMAP_DMA_DATA_TYPE_S16
:
2091 case OMAP_DMA_DATA_TYPE_S32
:
2099 vxres
= lcd_dma
.vxres
? lcd_dma
.vxres
: lcd_dma
.xres
;
2100 xscale
= lcd_dma
.xscale
? lcd_dma
.xscale
: 1;
2101 yscale
= lcd_dma
.yscale
? lcd_dma
.yscale
: 1;
2102 BUG_ON(vxres
< lcd_dma
.xres
);
2104 #define PIXADDR(x, y) (lcd_dma.addr + \
2105 ((y) * vxres * yscale + (x) * xscale) * es)
2106 #define PIXSTEP(sx, sy, dx, dy) (PIXADDR(dx, dy) - PIXADDR(sx, sy) - es + 1)
2108 switch (lcd_dma
.rotate
) {
2110 if (!lcd_dma
.mirror
) {
2111 top
= PIXADDR(0, 0);
2112 bottom
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
2113 /* 1510 DMA requires the bottom address to be 2 more
2114 * than the actual last memory access location. */
2115 if (omap_dma_in_1510_mode() &&
2116 lcd_dma
.data_type
== OMAP_DMA_DATA_TYPE_S32
)
2118 ei
= PIXSTEP(0, 0, 1, 0);
2119 fi
= PIXSTEP(lcd_dma
.xres
- 1, 0, 0, 1);
2121 top
= PIXADDR(lcd_dma
.xres
- 1, 0);
2122 bottom
= PIXADDR(0, lcd_dma
.yres
- 1);
2123 ei
= PIXSTEP(1, 0, 0, 0);
2124 fi
= PIXSTEP(0, 0, lcd_dma
.xres
- 1, 1);
2130 if (!lcd_dma
.mirror
) {
2131 top
= PIXADDR(0, lcd_dma
.yres
- 1);
2132 bottom
= PIXADDR(lcd_dma
.xres
- 1, 0);
2133 ei
= PIXSTEP(0, 1, 0, 0);
2134 fi
= PIXSTEP(0, 0, 1, lcd_dma
.yres
- 1);
2136 top
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
2137 bottom
= PIXADDR(0, 0);
2138 ei
= PIXSTEP(0, 1, 0, 0);
2139 fi
= PIXSTEP(1, 0, 0, lcd_dma
.yres
- 1);
2145 if (!lcd_dma
.mirror
) {
2146 top
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
2147 bottom
= PIXADDR(0, 0);
2148 ei
= PIXSTEP(1, 0, 0, 0);
2149 fi
= PIXSTEP(0, 1, lcd_dma
.xres
- 1, 0);
2151 top
= PIXADDR(0, lcd_dma
.yres
- 1);
2152 bottom
= PIXADDR(lcd_dma
.xres
- 1, 0);
2153 ei
= PIXSTEP(0, 0, 1, 0);
2154 fi
= PIXSTEP(lcd_dma
.xres
- 1, 1, 0, 0);
2160 if (!lcd_dma
.mirror
) {
2161 top
= PIXADDR(lcd_dma
.xres
- 1, 0);
2162 bottom
= PIXADDR(0, lcd_dma
.yres
- 1);
2163 ei
= PIXSTEP(0, 0, 0, 1);
2164 fi
= PIXSTEP(1, lcd_dma
.yres
- 1, 0, 0);
2166 top
= PIXADDR(0, 0);
2167 bottom
= PIXADDR(lcd_dma
.xres
- 1, lcd_dma
.yres
- 1);
2168 ei
= PIXSTEP(0, 0, 0, 1);
2169 fi
= PIXSTEP(0, lcd_dma
.yres
- 1, 1, 0);
2176 return; /* Suppress warning about uninitialized vars */
2179 if (omap_dma_in_1510_mode()) {
2180 omap_writew(top
>> 16, OMAP1510_DMA_LCD_TOP_F1_U
);
2181 omap_writew(top
, OMAP1510_DMA_LCD_TOP_F1_L
);
2182 omap_writew(bottom
>> 16, OMAP1510_DMA_LCD_BOT_F1_U
);
2183 omap_writew(bottom
, OMAP1510_DMA_LCD_BOT_F1_L
);
2189 omap_writew(top
>> 16, OMAP1610_DMA_LCD_TOP_B1_U
);
2190 omap_writew(top
, OMAP1610_DMA_LCD_TOP_B1_L
);
2191 omap_writew(bottom
>> 16, OMAP1610_DMA_LCD_BOT_B1_U
);
2192 omap_writew(bottom
, OMAP1610_DMA_LCD_BOT_B1_L
);
2194 omap_writew(en
, OMAP1610_DMA_LCD_SRC_EN_B1
);
2195 omap_writew(fn
, OMAP1610_DMA_LCD_SRC_FN_B1
);
2197 w
= omap_readw(OMAP1610_DMA_LCD_CSDP
);
2199 w
|= lcd_dma
.data_type
;
2200 omap_writew(w
, OMAP1610_DMA_LCD_CSDP
);
2202 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
2203 /* Always set the source port as SDRAM for now*/
2205 if (lcd_dma
.callback
!= NULL
)
2206 w
|= 1 << 1; /* Block interrupt enable */
2209 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
2211 if (!(lcd_dma
.rotate
|| lcd_dma
.mirror
||
2212 lcd_dma
.vxres
|| lcd_dma
.xscale
|| lcd_dma
.yscale
))
2215 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
2216 /* Set the double-indexed addressing mode */
2218 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
2220 omap_writew(ei
, OMAP1610_DMA_LCD_SRC_EI_B1
);
2221 omap_writew(fi
>> 16, OMAP1610_DMA_LCD_SRC_FI_B1_U
);
2222 omap_writew(fi
, OMAP1610_DMA_LCD_SRC_FI_B1_L
);
2225 static irqreturn_t
lcd_dma_irq_handler(int irq
, void *dev_id
)
2229 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
2230 if (unlikely(!(w
& (1 << 3)))) {
2231 printk(KERN_WARNING
"Spurious LCD DMA IRQ\n");
2236 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
2238 if (lcd_dma
.callback
!= NULL
)
2239 lcd_dma
.callback(w
, lcd_dma
.cb_data
);
2244 int omap_request_lcd_dma(void (*callback
)(u16 status
, void *data
),
2247 spin_lock_irq(&lcd_dma
.lock
);
2248 if (lcd_dma
.reserved
) {
2249 spin_unlock_irq(&lcd_dma
.lock
);
2250 printk(KERN_ERR
"LCD DMA channel already reserved\n");
2254 lcd_dma
.reserved
= 1;
2255 spin_unlock_irq(&lcd_dma
.lock
);
2256 lcd_dma
.callback
= callback
;
2257 lcd_dma
.cb_data
= data
;
2259 lcd_dma
.single_transfer
= 0;
2265 lcd_dma
.ext_ctrl
= 0;
2266 lcd_dma
.src_port
= 0;
2270 EXPORT_SYMBOL(omap_request_lcd_dma
);
2272 void omap_free_lcd_dma(void)
2274 spin_lock(&lcd_dma
.lock
);
2275 if (!lcd_dma
.reserved
) {
2276 spin_unlock(&lcd_dma
.lock
);
2277 printk(KERN_ERR
"LCD DMA is not reserved\n");
2281 if (!enable_1510_mode
)
2282 omap_writew(omap_readw(OMAP1610_DMA_LCD_CCR
) & ~1,
2283 OMAP1610_DMA_LCD_CCR
);
2284 lcd_dma
.reserved
= 0;
2285 spin_unlock(&lcd_dma
.lock
);
2287 EXPORT_SYMBOL(omap_free_lcd_dma
);
2289 void omap_enable_lcd_dma(void)
2294 * Set the Enable bit only if an external controller is
2295 * connected. Otherwise the OMAP internal controller will
2296 * start the transfer when it gets enabled.
2298 if (enable_1510_mode
|| !lcd_dma
.ext_ctrl
)
2301 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
2303 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
2307 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
2309 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
2311 EXPORT_SYMBOL(omap_enable_lcd_dma
);
2313 void omap_setup_lcd_dma(void)
2315 BUG_ON(lcd_dma
.active
);
2316 if (!enable_1510_mode
) {
2317 /* Set some reasonable defaults */
2318 omap_writew(0x5440, OMAP1610_DMA_LCD_CCR
);
2319 omap_writew(0x9102, OMAP1610_DMA_LCD_CSDP
);
2320 omap_writew(0x0004, OMAP1610_DMA_LCD_LCH_CTRL
);
2323 if (!enable_1510_mode
) {
2326 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
2328 * If DMA was already active set the end_prog bit to have
2329 * the programmed register set loaded into the active
2332 w
|= 1 << 11; /* End_prog */
2333 if (!lcd_dma
.single_transfer
)
2334 w
|= (3 << 8); /* Auto_init, repeat */
2335 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
2338 EXPORT_SYMBOL(omap_setup_lcd_dma
);
2340 void omap_stop_lcd_dma(void)
2345 if (enable_1510_mode
|| !lcd_dma
.ext_ctrl
)
2348 w
= omap_readw(OMAP1610_DMA_LCD_CCR
);
2350 omap_writew(w
, OMAP1610_DMA_LCD_CCR
);
2352 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
2354 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
2356 EXPORT_SYMBOL(omap_stop_lcd_dma
);
2358 /*----------------------------------------------------------------------------*/
2360 static int __init
omap_init_dma(void)
2364 if (cpu_class_is_omap1()) {
2365 omap_dma_base
= OMAP1_IO_ADDRESS(OMAP1_DMA_BASE
);
2366 dma_lch_count
= OMAP1_LOGICAL_DMA_CH_COUNT
;
2367 } else if (cpu_is_omap24xx()) {
2368 omap_dma_base
= OMAP2_IO_ADDRESS(OMAP24XX_DMA4_BASE
);
2369 dma_lch_count
= OMAP_DMA4_LOGICAL_DMA_CH_COUNT
;
2370 } else if (cpu_is_omap34xx()) {
2371 omap_dma_base
= OMAP2_IO_ADDRESS(OMAP34XX_DMA4_BASE
);
2372 dma_lch_count
= OMAP_DMA4_LOGICAL_DMA_CH_COUNT
;
2373 } else if (cpu_is_omap44xx()) {
2374 omap_dma_base
= OMAP2_IO_ADDRESS(OMAP44XX_DMA4_BASE
);
2375 dma_lch_count
= OMAP_DMA4_LOGICAL_DMA_CH_COUNT
;
2377 pr_err("DMA init failed for unsupported omap\n");
2381 if (cpu_class_is_omap2() && omap_dma_reserve_channels
2382 && (omap_dma_reserve_channels
<= dma_lch_count
))
2383 dma_lch_count
= omap_dma_reserve_channels
;
2385 dma_chan
= kzalloc(sizeof(struct omap_dma_lch
) * dma_lch_count
,
2390 if (cpu_class_is_omap2()) {
2391 dma_linked_lch
= kzalloc(sizeof(struct dma_link_info
) *
2392 dma_lch_count
, GFP_KERNEL
);
2393 if (!dma_linked_lch
) {
2399 if (cpu_is_omap15xx()) {
2400 printk(KERN_INFO
"DMA support for OMAP15xx initialized\n");
2402 enable_1510_mode
= 1;
2403 } else if (cpu_is_omap16xx() || cpu_is_omap7xx()) {
2404 printk(KERN_INFO
"OMAP DMA hardware version %d\n",
2406 printk(KERN_INFO
"DMA capabilities: %08x:%08x:%04x:%04x:%04x\n",
2407 (dma_read(CAPS_0_U
) << 16) |
2409 (dma_read(CAPS_1_U
) << 16) |
2411 dma_read(CAPS_2
), dma_read(CAPS_3
),
2413 if (!enable_1510_mode
) {
2416 /* Disable OMAP 3.0/3.1 compatibility mode. */
2420 dma_chan_count
= 16;
2423 if (cpu_is_omap16xx()) {
2426 /* this would prevent OMAP sleep */
2427 w
= omap_readw(OMAP1610_DMA_LCD_CTRL
);
2429 omap_writew(w
, OMAP1610_DMA_LCD_CTRL
);
2431 } else if (cpu_class_is_omap2()) {
2432 u8 revision
= dma_read(REVISION
) & 0xff;
2433 printk(KERN_INFO
"OMAP DMA hardware revision %d.%d\n",
2434 revision
>> 4, revision
& 0xf);
2435 dma_chan_count
= dma_lch_count
;
2441 spin_lock_init(&lcd_dma
.lock
);
2442 spin_lock_init(&dma_chan_lock
);
2444 for (ch
= 0; ch
< dma_chan_count
; ch
++) {
2446 dma_chan
[ch
].dev_id
= -1;
2447 dma_chan
[ch
].next_lch
= -1;
2449 if (ch
>= 6 && enable_1510_mode
)
2452 if (cpu_class_is_omap1()) {
2454 * request_irq() doesn't like dev_id (ie. ch) being
2455 * zero, so we have to kludge around this.
2457 r
= request_irq(omap1_dma_irq
[ch
],
2458 omap1_dma_irq_handler
, 0, "DMA",
2463 printk(KERN_ERR
"unable to request IRQ %d "
2464 "for DMA (error %d)\n",
2465 omap1_dma_irq
[ch
], r
);
2466 for (i
= 0; i
< ch
; i
++)
2467 free_irq(omap1_dma_irq
[i
],
2474 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx())
2475 omap_dma_set_global_params(DMA_DEFAULT_ARB_RATE
,
2476 DMA_DEFAULT_FIFO_DEPTH
, 0);
2478 if (cpu_class_is_omap2()) {
2480 if (cpu_is_omap44xx())
2481 irq
= INT_44XX_SDMA_IRQ0
;
2483 irq
= INT_24XX_SDMA_IRQ0
;
2484 setup_irq(irq
, &omap24xx_dma_irq
);
2487 /* Enable smartidle idlemodes and autoidle */
2488 if (cpu_is_omap34xx()) {
2489 u32 v
= dma_read(OCP_SYSCONFIG
);
2490 v
&= ~(DMA_SYSCONFIG_MIDLEMODE_MASK
|
2491 DMA_SYSCONFIG_SIDLEMODE_MASK
|
2492 DMA_SYSCONFIG_AUTOIDLE
);
2493 v
|= (DMA_SYSCONFIG_MIDLEMODE(DMA_IDLEMODE_SMARTIDLE
) |
2494 DMA_SYSCONFIG_SIDLEMODE(DMA_IDLEMODE_SMARTIDLE
) |
2495 DMA_SYSCONFIG_AUTOIDLE
);
2496 dma_write(v
, OCP_SYSCONFIG
);
2500 /* FIXME: Update LCD DMA to work on 24xx */
2501 if (cpu_class_is_omap1()) {
2502 r
= request_irq(INT_DMA_LCD
, lcd_dma_irq_handler
, 0,
2507 printk(KERN_ERR
"unable to request IRQ for LCD DMA "
2509 for (i
= 0; i
< dma_chan_count
; i
++)
2510 free_irq(omap1_dma_irq
[i
], (void *) (i
+ 1));
2518 arch_initcall(omap_init_dma
);
2521 * Reserve the omap SDMA channels using cmdline bootarg
2522 * "omap_dma_reserve_ch=". The valid range is 1 to 32
2524 static int __init
omap_dma_cmdline_reserve_ch(char *str
)
2526 if (get_option(&str
, &omap_dma_reserve_channels
) != 1)
2527 omap_dma_reserve_channels
= 0;
2531 __setup("omap_dma_reserve_ch=", omap_dma_cmdline_reserve_ch
);