summaryrefslogtreecommitdiff
path: root/arch/blackfin/include/asm/dma.h
blob: ef1db6e99c5df6b873bec4c7d42bd2128a6f6655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * dma.h - Blackfin DMA defines/structures/etc...
 *
 * Copyright 2004-2008 Analog Devices Inc.
 * Licensed under the GPL-2 or later.
 */

#ifndef _BLACKFIN_DMA_H_
#define _BLACKFIN_DMA_H_

#include <linux/types.h>
#ifdef __ADSPBF60x__
#include <asm/mach-common/bits/dde.h>
#else
#include <asm/mach-common/bits/dma.h>
#endif

struct dmasg_large {
	void *next_desc_addr;
	unsigned long start_addr;
	unsigned short cfg;
	unsigned short x_count;
	short x_modify;
	unsigned short y_count;
	short y_modify;
} __attribute__((packed));

struct dmasg {
	unsigned long start_addr;
	unsigned short cfg;
	unsigned short x_count;
	short x_modify;
	unsigned short y_count;
	short y_modify;
} __attribute__((packed));

struct dma_register {
#ifdef __ADSPBF60x__
	void *next_desc_ptr;	/* DMA Next Descriptor Pointer register */
	u32 start_addr;		/* DMA Start address  register */
	u32 config;		/* DMA Configuration register */

	u32 x_count;		/* DMA x_count register */
	s32 x_modify;		/* DMA x_modify register */
	u32 y_count;		/* DMA y_count register */
	s32 y_modify;		/* DMA y_modify register */
	u32 __pad0[2];

	void *curr_desc_ptr;	/* DMA Curr Descriptor Pointer register */
	void *prev_desc_ptr;	/* DMA Prev Descriptor Pointer register */
	void *curr_addr;	/* DMA Current Address Pointer register */
	u32 status;		/* DMA irq status register */
	u32 curr_x_count;	/* DMA Current x-count register */
	u32 curr_y_count;	/* DMA Current y-count register */
	u32 __pad1[2];

	u32 bw_limit;		/* DMA Bandwidth Limit Count */
	u32 curr_bw_limit;	/* DMA curr Bandwidth Limit Count */
	u32 bw_monitor;		/* DMA Bandwidth Monitor Count */
	u32 curr_bw_monitor;	/* DMA curr Bandwidth Monitor Count */
#else
	void *next_desc_ptr;	/* DMA Next Descriptor Pointer register */
	u32 start_addr;		/* DMA Start address  register */

	u16 config;		/* DMA Configuration register */
	u16 dummy1;		/* DMA Configuration register */

	u32 reserved;

	u16 x_count;		/* DMA x_count register */
	u16 dummy2;

	s16 x_modify;		/* DMA x_modify register */
	u16 dummy3;

	u16 y_count;		/* DMA y_count register */
	u16 dummy4;

	s16 y_modify;		/* DMA y_modify register */
	u16 dummy5;

	void *curr_desc_ptr;	/* DMA Current Descriptor Pointer register */

	u32 curr_addr_ptr;	/* DMA Current Address Pointer register */

	u16 status;		/* DMA irq status register */
	u16 dummy6;

	u16 peripheral_map;	/* DMA peripheral map register */
	u16 dummy7;

	u16 curr_x_count;	/* DMA Current x-count register */
	u16 dummy8;

	u32 reserved2;

	u16 curr_y_count;	/* DMA Current y-count register */
	u16 dummy9;

	u32 reserved3;
#endif
};

#endif