blob: 6aa2080c0065c66a925b02e0cdd67b14e6007e5a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-sh/dma.h
3 *
4 * Copyright (C) 2003, 2004 Paul Mundt
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10#ifndef __ASM_SH_DMA_H
11#define __ASM_SH_DMA_H
12#ifdef __KERNEL__
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/spinlock.h>
15#include <linux/wait.h>
Evgeniy Polyakov66c52272007-05-31 13:46:21 +090016#include <linux/sched.h>
Kay Sieversdc6876a2011-12-21 15:09:52 -080017#include <linux/device.h>
Paul Mundtf15cbe62008-07-29 08:09:44 +090018#include <cpu/dma.h>
Paul Mundt9deaa3b2009-06-14 21:45:06 +090019#include <asm-generic/dma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#ifdef CONFIG_NR_DMA_CHANNELS
Paul Mundt2f7bb2d2009-12-17 14:25:10 +090022# define MAX_DMA_CHANNELS (CONFIG_NR_DMA_CHANNELS)
23#elif defined(CONFIG_NR_ONCHIP_DMA_CHANNELS)
24# define MAX_DMA_CHANNELS (CONFIG_NR_ONCHIP_DMA_CHANNELS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#else
Paul Mundt2f7bb2d2009-12-17 14:25:10 +090026# define MAX_DMA_CHANNELS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#endif
28
29/*
30 * Read and write modes can mean drastically different things depending on the
31 * channel configuration. Consult your DMAC documentation and module
32 * implementation for further clues.
33 */
34#define DMA_MODE_READ 0x00
35#define DMA_MODE_WRITE 0x01
36#define DMA_MODE_MASK 0x01
37
38#define DMA_AUTOINIT 0x10
39
40/*
41 * DMAC (dma_info) flags
42 */
43enum {
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090044 DMAC_CHANNELS_CONFIGURED = 0x01,
45 DMAC_CHANNELS_TEI_CAPABLE = 0x02, /* Transfer end interrupt */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
47
48/*
49 * DMA channel capabilities / flags
50 */
51enum {
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090052 DMA_CONFIGURED = 0x01,
53
54 /*
55 * Transfer end interrupt, inherited from DMAC.
56 * wait_queue used in dma_wait_for_completion.
57 */
58 DMA_TEI_CAPABLE = 0x02,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
61extern spinlock_t dma_spin_lock;
62
63struct dma_channel;
64
65struct dma_ops {
66 int (*request)(struct dma_channel *chan);
67 void (*free)(struct dma_channel *chan);
68
69 int (*get_residue)(struct dma_channel *chan);
70 int (*xfer)(struct dma_channel *chan);
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090071 int (*configure)(struct dma_channel *chan, unsigned long flags);
72 int (*extend)(struct dma_channel *chan, unsigned long op, void *param);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
75struct dma_channel {
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090076 char dev_id[16]; /* unique name per DMAC of channel */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090078 unsigned int chan; /* DMAC channel number */
Paul Mundt0d831772006-01-16 22:14:09 -080079 unsigned int vchan; /* Virtual channel number */
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 unsigned int mode;
82 unsigned int count;
83
84 unsigned long sar;
85 unsigned long dar;
86
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090087 const char **caps;
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 unsigned long flags;
90 atomic_t busy;
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 wait_queue_head_t wait_queue;
93
Kay Sieversdc6876a2011-12-21 15:09:52 -080094 struct device dev;
Mark Glaisherdb9b99d2006-11-24 15:13:52 +090095 void *priv_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
98struct dma_info {
Paul Mundt0d831772006-01-16 22:14:09 -080099 struct platform_device *pdev;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 const char *name;
102 unsigned int nr_channels;
103 unsigned long flags;
104
105 struct dma_ops *ops;
106 struct dma_channel *channels;
107
108 struct list_head list;
Mark Glaisherdb9b99d2006-11-24 15:13:52 +0900109 int first_channel_nr;
Adrian McMenamineb695db2007-07-24 13:30:55 +0900110 int first_vchannel_nr;
Mark Glaisherdb9b99d2006-11-24 15:13:52 +0900111};
112
113struct dma_chan_caps {
114 int ch_num;
115 const char **caplist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116};
117
118#define to_dma_channel(channel) container_of(channel, struct dma_channel, dev)
119
120/* arch/sh/drivers/dma/dma-api.c */
121extern int dma_xfer(unsigned int chan, unsigned long from,
122 unsigned long to, size_t size, unsigned int mode);
123
124#define dma_write(chan, from, to, size) \
125 dma_xfer(chan, from, to, size, DMA_MODE_WRITE)
126#define dma_write_page(chan, from, to) \
127 dma_write(chan, from, to, PAGE_SIZE)
128
129#define dma_read(chan, from, to, size) \
130 dma_xfer(chan, from, to, size, DMA_MODE_READ)
131#define dma_read_page(chan, from, to) \
132 dma_read(chan, from, to, PAGE_SIZE)
133
Mark Glaisherdb9b99d2006-11-24 15:13:52 +0900134extern int request_dma_bycap(const char **dmac, const char **caps,
135 const char *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136extern int get_dma_residue(unsigned int chan);
137extern struct dma_info *get_dma_info(unsigned int chan);
138extern struct dma_channel *get_dma_channel(unsigned int chan);
139extern void dma_wait_for_completion(unsigned int chan);
140extern void dma_configure_channel(unsigned int chan, unsigned long flags);
141
142extern int register_dmac(struct dma_info *info);
143extern void unregister_dmac(struct dma_info *info);
Mark Glaisherdb9b99d2006-11-24 15:13:52 +0900144extern struct dma_info *get_dma_info_by_name(const char *dmac_name);
145
146extern int dma_extend(unsigned int chan, unsigned long op, void *param);
147extern int register_chan_caps(const char *dmac, struct dma_chan_caps *capslist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* arch/sh/drivers/dma/dma-sysfs.c */
Paul Mundt0d831772006-01-16 22:14:09 -0800150extern int dma_create_sysfs_files(struct dma_channel *, struct dma_info *);
151extern void dma_remove_sysfs_files(struct dma_channel *, struct dma_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#ifdef CONFIG_PCI
154extern int isa_dma_bridge_buggy;
155#else
156#define isa_dma_bridge_buggy (0)
157#endif
158
159#endif /* __KERNEL__ */
160#endif /* __ASM_SH_DMA_H */