2 * TUSB6010 USB 2.0 OTG Dual Role controller OMAP DMA interface
4 * Copyright (C) 2006 Nokia Corporation
5 * Tony Lindgren <tony@atomide.com>
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.
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/init.h>
15 #include <linux/usb.h>
16 #include <linux/platform_device.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/slab.h>
19 #include <linux/omap-dma.h>
21 #include "musb_core.h"
24 #define to_chdat(c) ((struct tusb_omap_dma_ch *)(c)->private_data)
26 #define MAX_DMAREQ 5 /* REVISIT: Really 6, but req5 not OK */
28 #define OMAP24XX_DMA_EXT_DMAREQ0 2
29 #define OMAP24XX_DMA_EXT_DMAREQ1 3
30 #define OMAP242X_DMA_EXT_DMAREQ2 14
31 #define OMAP242X_DMA_EXT_DMAREQ3 15
32 #define OMAP242X_DMA_EXT_DMAREQ4 16
33 #define OMAP242X_DMA_EXT_DMAREQ5 64
35 struct tusb_omap_dma_ch
{
38 unsigned long phys_offset
;
41 struct musb_hw_ep
*hw_ep
;
47 struct tusb_omap_dma
*tusb_dma
;
53 u16 transfer_packet_sz
;
58 struct tusb_omap_dma
{
59 struct dma_controller controller
;
66 unsigned multichannel
:1;
70 * Allocate dmareq0 to the current channel unless it's already taken
72 static inline int tusb_omap_use_shared_dmareq(struct tusb_omap_dma_ch
*chdat
)
74 u32 reg
= musb_readl(chdat
->tbase
, TUSB_DMA_EP_MAP
);
77 dev_dbg(chdat
->musb
->controller
, "ep%i dmareq0 is busy for ep%i\n",
78 chdat
->epnum
, reg
& 0xf);
83 reg
= (1 << 4) | chdat
->epnum
;
87 musb_writel(chdat
->tbase
, TUSB_DMA_EP_MAP
, reg
);
92 static inline void tusb_omap_free_shared_dmareq(struct tusb_omap_dma_ch
*chdat
)
94 u32 reg
= musb_readl(chdat
->tbase
, TUSB_DMA_EP_MAP
);
96 if ((reg
& 0xf) != chdat
->epnum
) {
97 printk(KERN_ERR
"ep%i trying to release dmareq0 for ep%i\n",
98 chdat
->epnum
, reg
& 0xf);
101 musb_writel(chdat
->tbase
, TUSB_DMA_EP_MAP
, 0);
105 * See also musb_dma_completion in plat_uds.c and musb_g_[tx|rx]() in
108 static void tusb_omap_dma_cb(int lch
, u16 ch_status
, void *data
)
110 struct dma_channel
*channel
= (struct dma_channel
*)data
;
111 struct tusb_omap_dma_ch
*chdat
= to_chdat(channel
);
112 struct tusb_omap_dma
*tusb_dma
= chdat
->tusb_dma
;
113 struct musb
*musb
= chdat
->musb
;
114 struct device
*dev
= musb
->controller
;
115 struct musb_hw_ep
*hw_ep
= chdat
->hw_ep
;
116 void __iomem
*ep_conf
= hw_ep
->conf
;
117 void __iomem
*mbase
= musb
->mregs
;
118 unsigned long remaining
, flags
, pio
;
121 spin_lock_irqsave(&musb
->lock
, flags
);
123 if (tusb_dma
->multichannel
)
128 if (ch_status
!= OMAP_DMA_BLOCK_IRQ
)
129 printk(KERN_ERR
"TUSB DMA error status: %i\n", ch_status
);
131 dev_dbg(musb
->controller
, "ep%i %s dma callback ch: %i status: %x\n",
132 chdat
->epnum
, chdat
->tx
? "tx" : "rx",
136 remaining
= musb_readl(ep_conf
, TUSB_EP_TX_OFFSET
);
138 remaining
= musb_readl(ep_conf
, TUSB_EP_RX_OFFSET
);
140 remaining
= TUSB_EP_CONFIG_XFR_SIZE(remaining
);
142 /* HW issue #10: XFR_SIZE may get corrupt on DMA (both async & sync) */
143 if (unlikely(remaining
> chdat
->transfer_len
)) {
144 dev_dbg(musb
->controller
, "Corrupt %s dma ch%i XFR_SIZE: 0x%08lx\n",
145 chdat
->tx
? "tx" : "rx", chdat
->ch
,
150 channel
->actual_len
= chdat
->transfer_len
- remaining
;
151 pio
= chdat
->len
- channel
->actual_len
;
153 dev_dbg(musb
->controller
, "DMA remaining %lu/%u\n", remaining
, chdat
->transfer_len
);
155 /* Transfer remaining 1 - 31 bytes */
156 if (pio
> 0 && pio
< 32) {
159 dev_dbg(musb
->controller
, "Using PIO for remaining %lu bytes\n", pio
);
160 buf
= phys_to_virt((u32
)chdat
->dma_addr
) + chdat
->transfer_len
;
162 dma_unmap_single(dev
, chdat
->dma_addr
,
165 musb_write_fifo(hw_ep
, pio
, buf
);
167 dma_unmap_single(dev
, chdat
->dma_addr
,
170 musb_read_fifo(hw_ep
, pio
, buf
);
172 channel
->actual_len
+= pio
;
175 if (!tusb_dma
->multichannel
)
176 tusb_omap_free_shared_dmareq(chdat
);
178 channel
->status
= MUSB_DMA_STATUS_FREE
;
180 /* Handle only RX callbacks here. TX callbacks must be handled based
181 * on the TUSB DMA status interrupt.
182 * REVISIT: Use both TUSB DMA status interrupt and OMAP DMA callback
183 * interrupt for RX and TX.
186 musb_dma_completion(musb
, chdat
->epnum
, chdat
->tx
);
188 /* We must terminate short tx transfers manually by setting TXPKTRDY.
189 * REVISIT: This same problem may occur with other MUSB dma as well.
190 * Easy to test with g_ether by pinging the MUSB board with ping -s54.
192 if ((chdat
->transfer_len
< chdat
->packet_sz
)
193 || (chdat
->transfer_len
% chdat
->packet_sz
!= 0)) {
197 dev_dbg(musb
->controller
, "terminating short tx packet\n");
198 musb_ep_select(mbase
, chdat
->epnum
);
199 csr
= musb_readw(hw_ep
->regs
, MUSB_TXCSR
);
200 csr
|= MUSB_TXCSR_MODE
| MUSB_TXCSR_TXPKTRDY
201 | MUSB_TXCSR_P_WZC_BITS
;
202 musb_writew(hw_ep
->regs
, MUSB_TXCSR
, csr
);
206 spin_unlock_irqrestore(&musb
->lock
, flags
);
209 static int tusb_omap_dma_program(struct dma_channel
*channel
, u16 packet_sz
,
210 u8 rndis_mode
, dma_addr_t dma_addr
, u32 len
)
212 struct tusb_omap_dma_ch
*chdat
= to_chdat(channel
);
213 struct tusb_omap_dma
*tusb_dma
= chdat
->tusb_dma
;
214 struct musb
*musb
= chdat
->musb
;
215 struct device
*dev
= musb
->controller
;
216 struct musb_hw_ep
*hw_ep
= chdat
->hw_ep
;
217 void __iomem
*mbase
= musb
->mregs
;
218 void __iomem
*ep_conf
= hw_ep
->conf
;
219 dma_addr_t fifo
= hw_ep
->fifo_sync
;
220 struct omap_dma_channel_params dma_params
;
222 int src_burst
, dst_burst
;
228 if (unlikely(dma_addr
& 0x1) || (len
< 32) || (len
> packet_sz
))
232 * HW issue #10: Async dma will eventually corrupt the XFR_SIZE
233 * register which will cause missed DMA interrupt. We could try to
234 * use a timer for the callback, but it is unsafe as the XFR_SIZE
235 * register is corrupt, and we won't know if the DMA worked.
241 * Because of HW issue #10, it seems like mixing sync DMA and async
242 * PIO access can confuse the DMA. Make sure XFR_SIZE is reset before
243 * using the channel for DMA.
246 dma_remaining
= musb_readl(ep_conf
, TUSB_EP_TX_OFFSET
);
248 dma_remaining
= musb_readl(ep_conf
, TUSB_EP_RX_OFFSET
);
250 dma_remaining
= TUSB_EP_CONFIG_XFR_SIZE(dma_remaining
);
252 dev_dbg(musb
->controller
, "Busy %s dma ch%i, not using: %08x\n",
253 chdat
->tx
? "tx" : "rx", chdat
->ch
,
258 chdat
->transfer_len
= len
& ~0x1f;
261 chdat
->transfer_packet_sz
= chdat
->transfer_len
;
263 chdat
->transfer_packet_sz
= packet_sz
;
265 if (tusb_dma
->multichannel
) {
267 dmareq
= chdat
->dmareq
;
268 sync_dev
= chdat
->sync_dev
;
270 if (tusb_omap_use_shared_dmareq(chdat
) != 0) {
271 dev_dbg(musb
->controller
, "could not get dma for ep%i\n", chdat
->epnum
);
274 if (tusb_dma
->ch
< 0) {
275 /* REVISIT: This should get blocked earlier, happens
276 * with MSC ErrorRecoveryTest
283 dmareq
= tusb_dma
->dmareq
;
284 sync_dev
= tusb_dma
->sync_dev
;
285 omap_set_dma_callback(ch
, tusb_omap_dma_cb
, channel
);
288 chdat
->packet_sz
= packet_sz
;
290 channel
->actual_len
= 0;
291 chdat
->dma_addr
= dma_addr
;
292 channel
->status
= MUSB_DMA_STATUS_BUSY
;
294 /* Since we're recycling dma areas, we need to clean or invalidate */
296 dma_map_single(dev
, phys_to_virt(dma_addr
), len
,
299 dma_map_single(dev
, phys_to_virt(dma_addr
), len
,
302 /* Use 16-bit transfer if dma_addr is not 32-bit aligned */
303 if ((dma_addr
& 0x3) == 0) {
304 dma_params
.data_type
= OMAP_DMA_DATA_TYPE_S32
;
305 dma_params
.elem_count
= 8; /* Elements in frame */
307 dma_params
.data_type
= OMAP_DMA_DATA_TYPE_S16
;
308 dma_params
.elem_count
= 16; /* Elements in frame */
309 fifo
= hw_ep
->fifo_async
;
312 dma_params
.frame_count
= chdat
->transfer_len
/ 32; /* Burst sz frame */
314 dev_dbg(musb
->controller
, "ep%i %s dma ch%i dma: %08x len: %u(%u) packet_sz: %i(%i)\n",
315 chdat
->epnum
, chdat
->tx
? "tx" : "rx",
316 ch
, dma_addr
, chdat
->transfer_len
, len
,
317 chdat
->transfer_packet_sz
, packet_sz
);
320 * Prepare omap DMA for transfer
323 dma_params
.src_amode
= OMAP_DMA_AMODE_POST_INC
;
324 dma_params
.src_start
= (unsigned long)dma_addr
;
325 dma_params
.src_ei
= 0;
326 dma_params
.src_fi
= 0;
328 dma_params
.dst_amode
= OMAP_DMA_AMODE_DOUBLE_IDX
;
329 dma_params
.dst_start
= (unsigned long)fifo
;
330 dma_params
.dst_ei
= 1;
331 dma_params
.dst_fi
= -31; /* Loop 32 byte window */
333 dma_params
.trigger
= sync_dev
;
334 dma_params
.sync_mode
= OMAP_DMA_SYNC_FRAME
;
335 dma_params
.src_or_dst_synch
= 0; /* Dest sync */
337 src_burst
= OMAP_DMA_DATA_BURST_16
; /* 16x32 read */
338 dst_burst
= OMAP_DMA_DATA_BURST_8
; /* 8x32 write */
340 dma_params
.src_amode
= OMAP_DMA_AMODE_DOUBLE_IDX
;
341 dma_params
.src_start
= (unsigned long)fifo
;
342 dma_params
.src_ei
= 1;
343 dma_params
.src_fi
= -31; /* Loop 32 byte window */
345 dma_params
.dst_amode
= OMAP_DMA_AMODE_POST_INC
;
346 dma_params
.dst_start
= (unsigned long)dma_addr
;
347 dma_params
.dst_ei
= 0;
348 dma_params
.dst_fi
= 0;
350 dma_params
.trigger
= sync_dev
;
351 dma_params
.sync_mode
= OMAP_DMA_SYNC_FRAME
;
352 dma_params
.src_or_dst_synch
= 1; /* Source sync */
354 src_burst
= OMAP_DMA_DATA_BURST_8
; /* 8x32 read */
355 dst_burst
= OMAP_DMA_DATA_BURST_16
; /* 16x32 write */
358 dev_dbg(musb
->controller
, "ep%i %s using %i-bit %s dma from 0x%08lx to 0x%08lx\n",
359 chdat
->epnum
, chdat
->tx
? "tx" : "rx",
360 (dma_params
.data_type
== OMAP_DMA_DATA_TYPE_S32
) ? 32 : 16,
361 ((dma_addr
& 0x3) == 0) ? "sync" : "async",
362 dma_params
.src_start
, dma_params
.dst_start
);
364 omap_set_dma_params(ch
, &dma_params
);
365 omap_set_dma_src_burst_mode(ch
, src_burst
);
366 omap_set_dma_dest_burst_mode(ch
, dst_burst
);
367 omap_set_dma_write_mode(ch
, OMAP_DMA_WRITE_LAST_NON_POSTED
);
370 * Prepare MUSB for DMA transfer
373 musb_ep_select(mbase
, chdat
->epnum
);
374 csr
= musb_readw(hw_ep
->regs
, MUSB_TXCSR
);
375 csr
|= (MUSB_TXCSR_AUTOSET
| MUSB_TXCSR_DMAENAB
376 | MUSB_TXCSR_DMAMODE
| MUSB_TXCSR_MODE
);
377 csr
&= ~MUSB_TXCSR_P_UNDERRUN
;
378 musb_writew(hw_ep
->regs
, MUSB_TXCSR
, csr
);
380 musb_ep_select(mbase
, chdat
->epnum
);
381 csr
= musb_readw(hw_ep
->regs
, MUSB_RXCSR
);
382 csr
|= MUSB_RXCSR_DMAENAB
;
383 csr
&= ~(MUSB_RXCSR_AUTOCLEAR
| MUSB_RXCSR_DMAMODE
);
384 musb_writew(hw_ep
->regs
, MUSB_RXCSR
,
385 csr
| MUSB_RXCSR_P_WZC_BITS
);
394 /* Send transfer_packet_sz packets at a time */
395 musb_writel(ep_conf
, TUSB_EP_MAX_PACKET_SIZE_OFFSET
,
396 chdat
->transfer_packet_sz
);
398 musb_writel(ep_conf
, TUSB_EP_TX_OFFSET
,
399 TUSB_EP_CONFIG_XFR_SIZE(chdat
->transfer_len
));
401 /* Receive transfer_packet_sz packets at a time */
402 musb_writel(ep_conf
, TUSB_EP_MAX_PACKET_SIZE_OFFSET
,
403 chdat
->transfer_packet_sz
<< 16);
405 musb_writel(ep_conf
, TUSB_EP_RX_OFFSET
,
406 TUSB_EP_CONFIG_XFR_SIZE(chdat
->transfer_len
));
412 static int tusb_omap_dma_abort(struct dma_channel
*channel
)
414 struct tusb_omap_dma_ch
*chdat
= to_chdat(channel
);
415 struct tusb_omap_dma
*tusb_dma
= chdat
->tusb_dma
;
417 if (!tusb_dma
->multichannel
) {
418 if (tusb_dma
->ch
>= 0) {
419 omap_stop_dma(tusb_dma
->ch
);
420 omap_free_dma(tusb_dma
->ch
);
424 tusb_dma
->dmareq
= -1;
425 tusb_dma
->sync_dev
= -1;
428 channel
->status
= MUSB_DMA_STATUS_FREE
;
433 static inline int tusb_omap_dma_allocate_dmareq(struct tusb_omap_dma_ch
*chdat
)
435 u32 reg
= musb_readl(chdat
->tbase
, TUSB_DMA_EP_MAP
);
436 int i
, dmareq_nr
= -1;
438 const int sync_dev
[6] = {
439 OMAP24XX_DMA_EXT_DMAREQ0
,
440 OMAP24XX_DMA_EXT_DMAREQ1
,
441 OMAP242X_DMA_EXT_DMAREQ2
,
442 OMAP242X_DMA_EXT_DMAREQ3
,
443 OMAP242X_DMA_EXT_DMAREQ4
,
444 OMAP242X_DMA_EXT_DMAREQ5
,
447 for (i
= 0; i
< MAX_DMAREQ
; i
++) {
448 int cur
= (reg
& (0xf << (i
* 5))) >> (i
* 5);
458 reg
|= (chdat
->epnum
<< (dmareq_nr
* 5));
460 reg
|= ((1 << 4) << (dmareq_nr
* 5));
461 musb_writel(chdat
->tbase
, TUSB_DMA_EP_MAP
, reg
);
463 chdat
->dmareq
= dmareq_nr
;
464 chdat
->sync_dev
= sync_dev
[chdat
->dmareq
];
469 static inline void tusb_omap_dma_free_dmareq(struct tusb_omap_dma_ch
*chdat
)
473 if (!chdat
|| chdat
->dmareq
< 0)
476 reg
= musb_readl(chdat
->tbase
, TUSB_DMA_EP_MAP
);
477 reg
&= ~(0x1f << (chdat
->dmareq
* 5));
478 musb_writel(chdat
->tbase
, TUSB_DMA_EP_MAP
, reg
);
481 chdat
->sync_dev
= -1;
484 static struct dma_channel
*dma_channel_pool
[MAX_DMAREQ
];
486 static struct dma_channel
*
487 tusb_omap_dma_allocate(struct dma_controller
*c
,
488 struct musb_hw_ep
*hw_ep
,
492 const char *dev_name
;
493 struct tusb_omap_dma
*tusb_dma
;
496 struct dma_channel
*channel
= NULL
;
497 struct tusb_omap_dma_ch
*chdat
= NULL
;
500 tusb_dma
= container_of(c
, struct tusb_omap_dma
, controller
);
501 musb
= tusb_dma
->musb
;
502 tbase
= musb
->ctrl_base
;
504 reg
= musb_readl(tbase
, TUSB_DMA_INT_MASK
);
506 reg
&= ~(1 << hw_ep
->epnum
);
508 reg
&= ~(1 << (hw_ep
->epnum
+ 15));
509 musb_writel(tbase
, TUSB_DMA_INT_MASK
, reg
);
511 /* REVISIT: Why does dmareq5 not work? */
512 if (hw_ep
->epnum
== 0) {
513 dev_dbg(musb
->controller
, "Not allowing DMA for ep0 %s\n", tx
? "tx" : "rx");
517 for (i
= 0; i
< MAX_DMAREQ
; i
++) {
518 struct dma_channel
*ch
= dma_channel_pool
[i
];
519 if (ch
->status
== MUSB_DMA_STATUS_UNKNOWN
) {
520 ch
->status
= MUSB_DMA_STATUS_FREE
;
522 chdat
= ch
->private_data
;
532 dev_name
= "TUSB transmit";
535 dev_name
= "TUSB receive";
538 chdat
->musb
= tusb_dma
->musb
;
539 chdat
->tbase
= tusb_dma
->tbase
;
540 chdat
->hw_ep
= hw_ep
;
541 chdat
->epnum
= hw_ep
->epnum
;
543 chdat
->completed_len
= 0;
544 chdat
->tusb_dma
= tusb_dma
;
546 channel
->max_len
= 0x7fffffff;
547 channel
->desired_mode
= 0;
548 channel
->actual_len
= 0;
550 if (tusb_dma
->multichannel
) {
551 ret
= tusb_omap_dma_allocate_dmareq(chdat
);
555 ret
= omap_request_dma(chdat
->sync_dev
, dev_name
,
556 tusb_omap_dma_cb
, channel
, &chdat
->ch
);
559 } else if (tusb_dma
->ch
== -1) {
560 tusb_dma
->dmareq
= 0;
561 tusb_dma
->sync_dev
= OMAP24XX_DMA_EXT_DMAREQ0
;
563 /* Callback data gets set later in the shared dmareq case */
564 ret
= omap_request_dma(tusb_dma
->sync_dev
, "TUSB shared",
565 tusb_omap_dma_cb
, NULL
, &tusb_dma
->ch
);
573 dev_dbg(musb
->controller
, "ep%i %s dma: %s dma%i dmareq%i sync%i\n",
575 chdat
->tx
? "tx" : "rx",
576 chdat
->ch
>= 0 ? "dedicated" : "shared",
577 chdat
->ch
>= 0 ? chdat
->ch
: tusb_dma
->ch
,
578 chdat
->dmareq
>= 0 ? chdat
->dmareq
: tusb_dma
->dmareq
,
579 chdat
->sync_dev
>= 0 ? chdat
->sync_dev
: tusb_dma
->sync_dev
);
584 tusb_omap_dma_free_dmareq(chdat
);
586 dev_dbg(musb
->controller
, "ep%i: Could not get a DMA channel\n", chdat
->epnum
);
587 channel
->status
= MUSB_DMA_STATUS_UNKNOWN
;
592 static void tusb_omap_dma_release(struct dma_channel
*channel
)
594 struct tusb_omap_dma_ch
*chdat
= to_chdat(channel
);
595 struct musb
*musb
= chdat
->musb
;
596 void __iomem
*tbase
= musb
->ctrl_base
;
599 dev_dbg(musb
->controller
, "ep%i ch%i\n", chdat
->epnum
, chdat
->ch
);
601 reg
= musb_readl(tbase
, TUSB_DMA_INT_MASK
);
603 reg
|= (1 << chdat
->epnum
);
605 reg
|= (1 << (chdat
->epnum
+ 15));
606 musb_writel(tbase
, TUSB_DMA_INT_MASK
, reg
);
608 reg
= musb_readl(tbase
, TUSB_DMA_INT_CLEAR
);
610 reg
|= (1 << chdat
->epnum
);
612 reg
|= (1 << (chdat
->epnum
+ 15));
613 musb_writel(tbase
, TUSB_DMA_INT_CLEAR
, reg
);
615 channel
->status
= MUSB_DMA_STATUS_UNKNOWN
;
617 if (chdat
->ch
>= 0) {
618 omap_stop_dma(chdat
->ch
);
619 omap_free_dma(chdat
->ch
);
623 if (chdat
->dmareq
>= 0)
624 tusb_omap_dma_free_dmareq(chdat
);
629 void dma_controller_destroy(struct dma_controller
*c
)
631 struct tusb_omap_dma
*tusb_dma
;
634 tusb_dma
= container_of(c
, struct tusb_omap_dma
, controller
);
635 for (i
= 0; i
< MAX_DMAREQ
; i
++) {
636 struct dma_channel
*ch
= dma_channel_pool
[i
];
638 kfree(ch
->private_data
);
643 if (tusb_dma
&& !tusb_dma
->multichannel
&& tusb_dma
->ch
>= 0)
644 omap_free_dma(tusb_dma
->ch
);
649 struct dma_controller
*dma_controller_create(struct musb
*musb
, void __iomem
*base
)
651 void __iomem
*tbase
= musb
->ctrl_base
;
652 struct tusb_omap_dma
*tusb_dma
;
655 /* REVISIT: Get dmareq lines used from board-*.c */
657 musb_writel(musb
->ctrl_base
, TUSB_DMA_INT_MASK
, 0x7fffffff);
658 musb_writel(musb
->ctrl_base
, TUSB_DMA_EP_MAP
, 0);
660 musb_writel(tbase
, TUSB_DMA_REQ_CONF
,
661 TUSB_DMA_REQ_CONF_BURST_SIZE(2)
662 | TUSB_DMA_REQ_CONF_DMA_REQ_EN(0x3f)
663 | TUSB_DMA_REQ_CONF_DMA_REQ_ASSER(2));
665 tusb_dma
= kzalloc(sizeof(struct tusb_omap_dma
), GFP_KERNEL
);
669 tusb_dma
->musb
= musb
;
670 tusb_dma
->tbase
= musb
->ctrl_base
;
673 tusb_dma
->dmareq
= -1;
674 tusb_dma
->sync_dev
= -1;
676 tusb_dma
->controller
.channel_alloc
= tusb_omap_dma_allocate
;
677 tusb_dma
->controller
.channel_release
= tusb_omap_dma_release
;
678 tusb_dma
->controller
.channel_program
= tusb_omap_dma_program
;
679 tusb_dma
->controller
.channel_abort
= tusb_omap_dma_abort
;
681 if (tusb_get_revision(musb
) >= TUSB_REV_30
)
682 tusb_dma
->multichannel
= 1;
684 for (i
= 0; i
< MAX_DMAREQ
; i
++) {
685 struct dma_channel
*ch
;
686 struct tusb_omap_dma_ch
*chdat
;
688 ch
= kzalloc(sizeof(struct dma_channel
), GFP_KERNEL
);
692 dma_channel_pool
[i
] = ch
;
694 chdat
= kzalloc(sizeof(struct tusb_omap_dma_ch
), GFP_KERNEL
);
698 ch
->status
= MUSB_DMA_STATUS_UNKNOWN
;
699 ch
->private_data
= chdat
;
702 return &tusb_dma
->controller
;
705 dma_controller_destroy(&tusb_dma
->controller
);