blob: 64c76da571efbbb21a1025611ef7797631b9de0b [file] [log] [blame]
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -07001/*
2 * Driver for the Synopsys DesignWare DMA Controller (aka DMACA on
3 * AVR32 systems.)
4 *
5 * Copyright (C) 2007 Atmel Corporation
6 *
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.
10 */
11#ifndef DW_DMAC_H
12#define DW_DMAC_H
13
14#include <linux/dmaengine.h>
15
16/**
17 * struct dw_dma_platform_data - Controller configuration parameters
18 * @nr_channels: Number of channels supported by hardware (max 8)
Jamie Iles95ea7592011-01-21 14:11:54 +000019 * @is_private: The device channels should be marked as private and not for
20 * by the general purpose DMA channel allocator.
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070021 */
22struct dw_dma_platform_data {
23 unsigned int nr_channels;
Jamie Iles95ea7592011-01-21 14:11:54 +000024 bool is_private;
Viresh Kumarb0c31302011-03-03 15:47:21 +053025#define CHAN_ALLOCATION_ASCENDING 0 /* zero to seven */
26#define CHAN_ALLOCATION_DESCENDING 1 /* seven to zero */
27 unsigned char chan_allocation_order;
Viresh Kumar93317e82011-03-03 15:47:22 +053028#define CHAN_PRIORITY_ASCENDING 0 /* chan0 highest */
29#define CHAN_PRIORITY_DESCENDING 1 /* chan7 highest */
30 unsigned char chan_priority;
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070031};
32
33/**
Dan Williams74465b42009-01-06 11:38:16 -070034 * enum dw_dma_slave_width - DMA slave register access width.
35 * @DMA_SLAVE_WIDTH_8BIT: Do 8-bit slave register accesses
36 * @DMA_SLAVE_WIDTH_16BIT: Do 16-bit slave register accesses
37 * @DMA_SLAVE_WIDTH_32BIT: Do 32-bit slave register accesses
38 */
39enum dw_dma_slave_width {
40 DW_DMA_SLAVE_WIDTH_8BIT,
41 DW_DMA_SLAVE_WIDTH_16BIT,
42 DW_DMA_SLAVE_WIDTH_32BIT,
43};
44
45/**
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070046 * struct dw_dma_slave - Controller-specific information about a slave
Dan Williams74465b42009-01-06 11:38:16 -070047 *
48 * @dma_dev: required DMA master device
49 * @tx_reg: physical address of data register used for
50 * memory-to-peripheral transfers
51 * @rx_reg: physical address of data register used for
52 * peripheral-to-memory transfers
53 * @reg_width: peripheral register width
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070054 * @cfg_hi: Platform-specific initializer for the CFG_HI register
55 * @cfg_lo: Platform-specific initializer for the CFG_LO register
56 */
57struct dw_dma_slave {
Dan Williams74465b42009-01-06 11:38:16 -070058 struct device *dma_dev;
59 dma_addr_t tx_reg;
60 dma_addr_t rx_reg;
61 enum dw_dma_slave_width reg_width;
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070062 u32 cfg_hi;
63 u32 cfg_lo;
Jamie Ilesf301c062011-01-21 14:11:53 +000064 int src_master;
65 int dst_master;
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070066};
67
68/* Platform-configurable bits in CFG_HI */
69#define DWC_CFGH_FCMODE (1 << 0)
70#define DWC_CFGH_FIFO_MODE (1 << 1)
71#define DWC_CFGH_PROTCTL(x) ((x) << 2)
72#define DWC_CFGH_SRC_PER(x) ((x) << 7)
73#define DWC_CFGH_DST_PER(x) ((x) << 11)
74
75/* Platform-configurable bits in CFG_LO */
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -070076#define DWC_CFGL_LOCK_CH_XFER (0 << 12) /* scope of LOCK_CH */
77#define DWC_CFGL_LOCK_CH_BLOCK (1 << 12)
78#define DWC_CFGL_LOCK_CH_XACT (2 << 12)
79#define DWC_CFGL_LOCK_BUS_XFER (0 << 14) /* scope of LOCK_BUS */
80#define DWC_CFGL_LOCK_BUS_BLOCK (1 << 14)
81#define DWC_CFGL_LOCK_BUS_XACT (2 << 14)
82#define DWC_CFGL_LOCK_CH (1 << 15) /* channel lockout */
83#define DWC_CFGL_LOCK_BUS (1 << 16) /* busmaster lockout */
84#define DWC_CFGL_HS_DST_POL (1 << 18) /* dst handshake active low */
85#define DWC_CFGL_HS_SRC_POL (1 << 19) /* src handshake active low */
86
Hans-Christian Egtvedtd9de4512009-04-01 15:47:02 +020087/* DMA API extensions */
88struct dw_cyclic_desc {
89 struct dw_desc **desc;
90 unsigned long periods;
91 void (*period_callback)(void *param);
92 void *period_callback_param;
93};
94
95struct dw_cyclic_desc *dw_dma_cyclic_prep(struct dma_chan *chan,
96 dma_addr_t buf_addr, size_t buf_len, size_t period_len,
97 enum dma_data_direction direction);
98void dw_dma_cyclic_free(struct dma_chan *chan);
99int dw_dma_cyclic_start(struct dma_chan *chan);
100void dw_dma_cyclic_stop(struct dma_chan *chan);
101
102dma_addr_t dw_dma_get_src_addr(struct dma_chan *chan);
103
104dma_addr_t dw_dma_get_dst_addr(struct dma_chan *chan);
105
Haavard Skinnemoen3bfb1d22008-07-08 11:59:42 -0700106#endif /* DW_DMAC_H */