2 * arch/ppc/kernel/ppc4xx_sgdma.c
4 * IBM PPC4xx DMA engine scatter/gather library
6 * Copyright 2002-2003 MontaVista Software Inc.
8 * Cleaned up and converted to new DCR access
9 * Matt Porter <mporter@kernel.crashing.org>
11 * Original code by Armin Kuster <akuster@mvista.com>
12 * and Pete Popov <ppopov@mvista.com>
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <linux/config.h>
25 #include <linux/kernel.h>
27 #include <linux/init.h>
28 #include <linux/module.h>
29 #include <linux/pci.h>
31 #include <asm/system.h>
33 #include <asm/ppc4xx_dma.h>
36 ppc4xx_set_sg_addr(int dmanr
, phys_addr_t sg_addr
)
38 if (dmanr
>= MAX_PPC4xx_DMA_CHANNELS
) {
39 printk("ppc4xx_set_sg_addr: bad channel: %d\n", dmanr
);
43 #ifdef PPC4xx_DMA_64BIT
44 mtdcr(DCRN_ASGH0
+ (dmanr
* 0x8), (u32
)(sg_addr
>> 32));
46 mtdcr(DCRN_ASG0
+ (dmanr
* 0x8), (u32
)sg_addr
);
50 * Add a new sgl descriptor to the end of a scatter/gather list
51 * which was created by alloc_dma_handle().
53 * For a memory to memory transfer, both dma addresses must be
54 * valid. For a peripheral to memory transfer, one of the addresses
55 * must be set to NULL, depending on the direction of the transfer:
56 * memory to peripheral: set dst_addr to NULL,
57 * peripheral to memory: set src_addr to NULL.
60 ppc4xx_add_dma_sgl(sgl_handle_t handle
, phys_addr_t src_addr
, phys_addr_t dst_addr
,
63 sgl_list_info_t
*psgl
= (sgl_list_info_t
*) handle
;
64 ppc_dma_ch_t
*p_dma_ch
;
67 printk("ppc4xx_add_dma_sgl: null handle\n");
68 return DMA_STATUS_BAD_HANDLE
;
71 if (psgl
->dmanr
>= MAX_PPC4xx_DMA_CHANNELS
) {
72 printk("ppc4xx_add_dma_sgl: bad channel: %d\n", psgl
->dmanr
);
73 return DMA_STATUS_BAD_CHANNEL
;
76 p_dma_ch
= &dma_channels
[psgl
->dmanr
];
81 unsigned int aligned
=
82 (unsigned) src_addr
| (unsigned) dst_addr
| count
;
83 switch (p_dma_ch
->pwidth
) {
99 printk("ppc4xx_add_dma_sgl: invalid bus width: 0x%x\n",
101 return DMA_STATUS_GENERAL_ERROR
;
105 ("Alignment warning: ppc4xx_add_dma_sgl src 0x%x dst 0x%x count 0x%x bus width var %d\n",
106 src_addr
, dst_addr
, count
, p_dma_ch
->pwidth
);
111 if ((unsigned) (psgl
->ptail
+ 1) >= ((unsigned) psgl
+ SGL_LIST_SIZE
)) {
112 printk("sgl handle out of memory \n");
113 return DMA_STATUS_OUT_OF_MEMORY
;
117 psgl
->phead
= (ppc_sgl_t
*)
118 ((unsigned) psgl
+ sizeof (sgl_list_info_t
));
119 psgl
->phead_dma
= psgl
->dma_addr
+ sizeof(sgl_list_info_t
);
120 psgl
->ptail
= psgl
->phead
;
121 psgl
->ptail_dma
= psgl
->phead_dma
;
123 if(p_dma_ch
->int_on_final_sg
) {
124 /* mask out all dma interrupts, except error, on tail
125 before adding new tail. */
126 psgl
->ptail
->control_count
&=
127 ~(SG_TCI_ENABLE
| SG_ETI_ENABLE
);
129 psgl
->ptail
->next
= psgl
->ptail_dma
+ sizeof(ppc_sgl_t
);
131 psgl
->ptail_dma
+= sizeof(ppc_sgl_t
);
134 psgl
->ptail
->control
= psgl
->control
;
135 psgl
->ptail
->src_addr
= src_addr
;
136 psgl
->ptail
->dst_addr
= dst_addr
;
137 psgl
->ptail
->control_count
= (count
>> p_dma_ch
->shift
) |
139 psgl
->ptail
->next
= (uint32_t) NULL
;
141 return DMA_STATUS_GOOD
;
145 * Enable (start) the DMA described by the sgl handle.
148 ppc4xx_enable_dma_sgl(sgl_handle_t handle
)
150 sgl_list_info_t
*psgl
= (sgl_list_info_t
*) handle
;
151 ppc_dma_ch_t
*p_dma_ch
;
155 printk("ppc4xx_enable_dma_sgl: null handle\n");
157 } else if (psgl
->dmanr
> (MAX_PPC4xx_DMA_CHANNELS
- 1)) {
158 printk("ppc4xx_enable_dma_sgl: bad channel in handle %d\n",
161 } else if (!psgl
->phead
) {
162 printk("ppc4xx_enable_dma_sgl: sg list empty\n");
166 p_dma_ch
= &dma_channels
[psgl
->dmanr
];
167 psgl
->ptail
->control_count
&= ~SG_LINK
; /* make this the last dscrptr */
168 sg_command
= mfdcr(DCRN_ASGC
);
170 ppc4xx_set_sg_addr(psgl
->dmanr
, psgl
->phead_dma
);
172 sg_command
|= SSG_ENABLE(psgl
->dmanr
);
174 mtdcr(DCRN_ASGC
, sg_command
); /* start transfer */
178 * Halt an active scatter/gather DMA operation.
181 ppc4xx_disable_dma_sgl(sgl_handle_t handle
)
183 sgl_list_info_t
*psgl
= (sgl_list_info_t
*) handle
;
187 printk("ppc4xx_enable_dma_sgl: null handle\n");
189 } else if (psgl
->dmanr
> (MAX_PPC4xx_DMA_CHANNELS
- 1)) {
190 printk("ppc4xx_enable_dma_sgl: bad channel in handle %d\n",
195 sg_command
= mfdcr(DCRN_ASGC
);
196 sg_command
&= ~SSG_ENABLE(psgl
->dmanr
);
197 mtdcr(DCRN_ASGC
, sg_command
); /* stop transfer */
201 * Returns number of bytes left to be transferred from the entire sgl list.
202 * *src_addr and *dst_addr get set to the source/destination address of
203 * the sgl descriptor where the DMA stopped.
205 * An sgl transfer must NOT be active when this function is called.
208 ppc4xx_get_dma_sgl_residue(sgl_handle_t handle
, phys_addr_t
* src_addr
,
209 phys_addr_t
* dst_addr
)
211 sgl_list_info_t
*psgl
= (sgl_list_info_t
*) handle
;
212 ppc_dma_ch_t
*p_dma_ch
;
213 ppc_sgl_t
*pnext
, *sgl_addr
;
217 printk("ppc4xx_get_dma_sgl_residue: null handle\n");
218 return DMA_STATUS_BAD_HANDLE
;
219 } else if (psgl
->dmanr
> (MAX_PPC4xx_DMA_CHANNELS
- 1)) {
220 printk("ppc4xx_get_dma_sgl_residue: bad channel in handle %d\n",
222 return DMA_STATUS_BAD_CHANNEL
;
225 sgl_addr
= (ppc_sgl_t
*) __va(mfdcr(DCRN_ASG0
+ (psgl
->dmanr
* 0x8)));
226 count_left
= mfdcr(DCRN_DMACT0
+ (psgl
->dmanr
* 0x8)) & SG_COUNT_MASK
;
229 printk("ppc4xx_get_dma_sgl_residue: sgl addr register is null\n");
235 ((unsigned) pnext
< ((unsigned) psgl
+ SGL_LIST_SIZE
) &&
241 if (pnext
== sgl_addr
) { /* found the sgl descriptor */
243 *src_addr
= pnext
->src_addr
;
244 *dst_addr
= pnext
->dst_addr
;
247 * Now search the remaining descriptors and add their count.
248 * We already have the remaining count from this descriptor in
253 while ((pnext
!= psgl
->ptail
) &&
254 ((unsigned) pnext
< ((unsigned) psgl
+ SGL_LIST_SIZE
))
256 count_left
+= pnext
->control_count
& SG_COUNT_MASK
;
259 if (pnext
!= psgl
->ptail
) { /* should never happen */
261 ("ppc4xx_get_dma_sgl_residue error (1) psgl->ptail 0x%x handle 0x%x\n",
262 (unsigned int) psgl
->ptail
, (unsigned int) handle
);
267 p_dma_ch
= &dma_channels
[psgl
->dmanr
];
268 return (count_left
<< p_dma_ch
->shift
); /* count in bytes */
271 /* this shouldn't happen */
273 ("get_dma_sgl_residue, unable to match current address 0x%x, handle 0x%x\n",
274 (unsigned int) sgl_addr
, (unsigned int) handle
);
279 *src_addr
= (phys_addr_t
) NULL
;
280 *dst_addr
= (phys_addr_t
) NULL
;
285 * Returns the address(es) of the buffer(s) contained in the head element of
286 * the scatter/gather list. The element is removed from the scatter/gather
287 * list and the next element becomes the head.
289 * This function should only be called when the DMA is not active.
292 ppc4xx_delete_dma_sgl_element(sgl_handle_t handle
, phys_addr_t
* src_dma_addr
,
293 phys_addr_t
* dst_dma_addr
)
295 sgl_list_info_t
*psgl
= (sgl_list_info_t
*) handle
;
298 printk("ppc4xx_delete_sgl_element: null handle\n");
299 return DMA_STATUS_BAD_HANDLE
;
300 } else if (psgl
->dmanr
> (MAX_PPC4xx_DMA_CHANNELS
- 1)) {
301 printk("ppc4xx_delete_sgl_element: bad channel in handle %d\n",
303 return DMA_STATUS_BAD_CHANNEL
;
307 printk("ppc4xx_delete_sgl_element: sgl list empty\n");
308 *src_dma_addr
= (phys_addr_t
) NULL
;
309 *dst_dma_addr
= (phys_addr_t
) NULL
;
310 return DMA_STATUS_SGL_LIST_EMPTY
;
313 *src_dma_addr
= (phys_addr_t
) psgl
->phead
->src_addr
;
314 *dst_dma_addr
= (phys_addr_t
) psgl
->phead
->dst_addr
;
316 if (psgl
->phead
== psgl
->ptail
) {
317 /* last descriptor on the list */
322 psgl
->phead_dma
+= sizeof(ppc_sgl_t
);
325 return DMA_STATUS_GOOD
;
330 * Create a scatter/gather list handle. This is simply a structure which
331 * describes a scatter/gather list.
333 * A handle is returned in "handle" which the driver should save in order to
334 * be able to access this list later. A chunk of memory will be allocated
335 * to be used by the API for internal management purposes, including managing
336 * the sg list and allocating memory for the sgl descriptors. One page should
337 * be more than enough for that purpose. Perhaps it's a bit wasteful to use
338 * a whole page for a single sg list, but most likely there will be only one
339 * sg list per channel.
342 * Each sgl descriptor has a copy of the DMA control word which the DMA engine
343 * loads in the control register. The control word has a "global" interrupt
344 * enable bit for that channel. Interrupts are further qualified by a few bits
345 * in the sgl descriptor count register. In order to setup an sgl, we have to
346 * know ahead of time whether or not interrupts will be enabled at the completion
347 * of the transfers. Thus, enable_dma_interrupt()/disable_dma_interrupt() MUST
348 * be called before calling alloc_dma_handle(). If the interrupt mode will never
349 * change after powerup, then enable_dma_interrupt()/disable_dma_interrupt()
350 * do not have to be called -- interrupts will be enabled or disabled based
351 * on how the channel was configured after powerup by the hw_init_dma_channel()
352 * function. Each sgl descriptor will be setup to interrupt if an error occurs;
353 * however, only the last descriptor will be setup to interrupt. Thus, an
354 * interrupt will occur (if interrupts are enabled) only after the complete
355 * sgl transfer is done.
358 ppc4xx_alloc_dma_handle(sgl_handle_t
* phandle
, unsigned int mode
, unsigned int dmanr
)
360 sgl_list_info_t
*psgl
=NULL
;
362 ppc_dma_ch_t
*p_dma_ch
= &dma_channels
[dmanr
];
364 uint32_t ctc_settings
;
367 if (dmanr
>= MAX_PPC4xx_DMA_CHANNELS
) {
368 printk("ppc4xx_alloc_dma_handle: invalid channel 0x%x\n", dmanr
);
369 return DMA_STATUS_BAD_CHANNEL
;
373 printk("ppc4xx_alloc_dma_handle: null handle pointer\n");
374 return DMA_STATUS_NULL_POINTER
;
377 /* Get a page of memory, which is zeroed out by consistent_alloc() */
378 ret
= dma_alloc_coherent(NULL
, DMA_PPC4xx_SIZE
, &dma_addr
, GFP_KERNEL
);
380 memset(ret
, 0, DMA_PPC4xx_SIZE
);
381 psgl
= (sgl_list_info_t
*) ret
;
385 *phandle
= (sgl_handle_t
) NULL
;
386 return DMA_STATUS_OUT_OF_MEMORY
;
389 psgl
->dma_addr
= dma_addr
;
393 * Modify and save the control word. These words will be
394 * written to each sgl descriptor. The DMA engine then
395 * loads this control word into the control register
396 * every time it reads a new descriptor.
398 psgl
->control
= p_dma_ch
->control
;
399 /* Clear all mode bits */
400 psgl
->control
&= ~(DMA_TM_MASK
| DMA_TD
);
401 /* Save control word and mode */
402 psgl
->control
|= (mode
| DMA_CE_ENABLE
);
404 /* In MM mode, we must set ETD/TCE */
405 if (mode
== DMA_MODE_MM
)
406 psgl
->control
|= DMA_ETD_OUTPUT
| DMA_TCE_ENABLE
;
408 if (p_dma_ch
->int_enable
) {
409 /* Enable channel interrupt */
410 psgl
->control
|= DMA_CIE_ENABLE
;
412 psgl
->control
&= ~DMA_CIE_ENABLE
;
415 sg_command
= mfdcr(DCRN_ASGC
);
416 sg_command
|= SSG_MASK_ENABLE(dmanr
);
418 /* Enable SGL control access */
419 mtdcr(DCRN_ASGC
, sg_command
);
420 psgl
->sgl_control
= SG_ERI_ENABLE
| SG_LINK
;
422 /* keep control count register settings */
423 ctc_settings
= mfdcr(DCRN_DMACT0
+ (dmanr
* 0x8))
424 & (DMA_CTC_BSIZ_MSK
| DMA_CTC_BTEN
); /*burst mode settings*/
425 psgl
->sgl_control
|= ctc_settings
;
427 if (p_dma_ch
->int_enable
) {
428 if (p_dma_ch
->tce_enable
)
429 psgl
->sgl_control
|= SG_TCI_ENABLE
;
431 psgl
->sgl_control
|= SG_ETI_ENABLE
;
434 *phandle
= (sgl_handle_t
) psgl
;
435 return DMA_STATUS_GOOD
;
439 * Destroy a scatter/gather list handle that was created by alloc_dma_handle().
440 * The list must be empty (contain no elements).
443 ppc4xx_free_dma_handle(sgl_handle_t handle
)
445 sgl_list_info_t
*psgl
= (sgl_list_info_t
*) handle
;
448 printk("ppc4xx_free_dma_handle: got NULL\n");
450 } else if (psgl
->phead
) {
451 printk("ppc4xx_free_dma_handle: list not empty\n");
453 } else if (!psgl
->dma_addr
) { /* should never happen */
454 printk("ppc4xx_free_dma_handle: no dma address\n");
458 dma_free_coherent(NULL
, DMA_PPC4xx_SIZE
, (void *) psgl
, 0);
461 EXPORT_SYMBOL(ppc4xx_alloc_dma_handle
);
462 EXPORT_SYMBOL(ppc4xx_free_dma_handle
);
463 EXPORT_SYMBOL(ppc4xx_add_dma_sgl
);
464 EXPORT_SYMBOL(ppc4xx_delete_dma_sgl_element
);
465 EXPORT_SYMBOL(ppc4xx_enable_dma_sgl
);
466 EXPORT_SYMBOL(ppc4xx_disable_dma_sgl
);
467 EXPORT_SYMBOL(ppc4xx_get_dma_sgl_residue
);