blob: befe3fbd9e28e1c2101aa0572a7ede55cdae0ddb [file] [log] [blame]
Vinod Koulb3c567e2010-07-21 13:28:10 +05301/*
2 * intel_mid_dma.h - Intel MID DMA Drivers
3 *
4 * Copyright (C) 2008-10 Intel Corp
5 * Author: Vinod Koul <vinod.koul@intel.com>
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20 *
21 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22 *
23 *
24 */
25#ifndef __INTEL_MID_DMA_H__
26#define __INTEL_MID_DMA_H__
27
28#include <linux/dmaengine.h>
29
Ramesh Babu K V576e3c32010-10-04 10:37:53 +000030#define DMA_PREP_CIRCULAR_LIST (1 << 10)
Vinod Koulb3c567e2010-07-21 13:28:10 +053031/*DMA transaction width, src and dstn width would be same
32The DMA length must be width aligned,
33for 32 bit width the length must be 32 bit (4bytes) aligned only*/
34enum intel_mid_dma_width {
35 LNW_DMA_WIDTH_8BIT = 0x0,
36 LNW_DMA_WIDTH_16BIT = 0x1,
37 LNW_DMA_WIDTH_32BIT = 0x2,
38};
39
40/*DMA mode configurations*/
41enum intel_mid_dma_mode {
42 LNW_DMA_PER_TO_MEM = 0, /*periphral to memory configuration*/
43 LNW_DMA_MEM_TO_PER, /*memory to periphral configuration*/
44 LNW_DMA_MEM_TO_MEM, /*mem to mem confg (testing only)*/
45};
46
47/*DMA handshaking*/
48enum intel_mid_dma_hs_mode {
49 LNW_DMA_HW_HS = 0, /*HW Handshaking only*/
50 LNW_DMA_SW_HS = 1, /*SW Handshaking not recommended*/
51};
52
53/*Burst size configuration*/
54enum intel_mid_dma_msize {
55 LNW_DMA_MSIZE_1 = 0x0,
56 LNW_DMA_MSIZE_4 = 0x1,
57 LNW_DMA_MSIZE_8 = 0x2,
58 LNW_DMA_MSIZE_16 = 0x3,
59 LNW_DMA_MSIZE_32 = 0x4,
60 LNW_DMA_MSIZE_64 = 0x5,
61};
62
63/**
64 * struct intel_mid_dma_slave - DMA slave structure
65 *
66 * @dirn: DMA trf direction
67 * @src_width: tx register width
68 * @dst_width: rx register width
69 * @hs_mode: HW/SW handshaking mode
70 * @cfg_mode: DMA data transfer mode (per-per/mem-per/mem-mem)
71 * @src_msize: Source DMA burst size
72 * @dst_msize: Dst DMA burst size
Ramesh Babu K V576e3c32010-10-04 10:37:53 +000073 * @per_addr: Periphral address
Vinod Koulb3c567e2010-07-21 13:28:10 +053074 * @device_instance: DMA peripheral device instance, we can have multiple
75 * peripheral device connected to single DMAC
76 */
77struct intel_mid_dma_slave {
78 enum dma_data_direction dirn;
79 enum intel_mid_dma_width src_width; /*width of DMA src txn*/
80 enum intel_mid_dma_width dst_width; /*width of DMA dst txn*/
81 enum intel_mid_dma_hs_mode hs_mode; /*handshaking*/
82 enum intel_mid_dma_mode cfg_mode; /*mode configuration*/
83 enum intel_mid_dma_msize src_msize; /*size if src burst*/
84 enum intel_mid_dma_msize dst_msize; /*size of dst burst*/
Ramesh Babu K V576e3c32010-10-04 10:37:53 +000085 dma_addr_t per_addr; /*Peripheral address*/
Vinod Koulb3c567e2010-07-21 13:28:10 +053086 unsigned int device_instance; /*0, 1 for periphral instance*/
87};
88
89#endif /*__INTEL_MID_DMA_H__*/