dma.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  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. #include <linux/spinlock.h>
  14. #include <linux/wait.h>
  15. #include <linux/sched.h>
  16. #include <linux/device.h>
  17. #include <asm-generic/dma.h>
  18. /*
  19. * Read and write modes can mean drastically different things depending on the
  20. * channel configuration. Consult your DMAC documentation and module
  21. * implementation for further clues.
  22. */
  23. #define DMA_MODE_READ 0x00
  24. #define DMA_MODE_WRITE 0x01
  25. #define DMA_MODE_MASK 0x01
  26. #define DMA_AUTOINIT 0x10
  27. /*
  28. * DMAC (dma_info) flags
  29. */
  30. enum {
  31. DMAC_CHANNELS_CONFIGURED = 0x01,
  32. DMAC_CHANNELS_TEI_CAPABLE = 0x02, /* Transfer end interrupt */
  33. };
  34. /*
  35. * DMA channel capabilities / flags
  36. */
  37. enum {
  38. DMA_CONFIGURED = 0x01,
  39. /*
  40. * Transfer end interrupt, inherited from DMAC.
  41. * wait_queue used in dma_wait_for_completion.
  42. */
  43. DMA_TEI_CAPABLE = 0x02,
  44. };
  45. extern spinlock_t dma_spin_lock;
  46. struct dma_channel;
  47. struct dma_ops {
  48. int (*request)(struct dma_channel *chan);
  49. void (*free)(struct dma_channel *chan);
  50. int (*get_residue)(struct dma_channel *chan);
  51. int (*xfer)(struct dma_channel *chan);
  52. int (*configure)(struct dma_channel *chan, unsigned long flags);
  53. int (*extend)(struct dma_channel *chan, unsigned long op, void *param);
  54. };
  55. struct dma_channel {
  56. char dev_id[16]; /* unique name per DMAC of channel */
  57. unsigned int chan; /* DMAC channel number */
  58. unsigned int vchan; /* Virtual channel number */
  59. unsigned int mode;
  60. unsigned int count;
  61. unsigned long sar;
  62. unsigned long dar;
  63. const char **caps;
  64. unsigned long flags;
  65. atomic_t busy;
  66. wait_queue_head_t wait_queue;
  67. struct device dev;
  68. void *priv_data;
  69. };
  70. struct dma_info {
  71. struct platform_device *pdev;
  72. const char *name;
  73. unsigned int nr_channels;
  74. unsigned long flags;
  75. struct dma_ops *ops;
  76. struct dma_channel *channels;
  77. struct list_head list;
  78. int first_channel_nr;
  79. int first_vchannel_nr;
  80. };
  81. struct dma_chan_caps {
  82. int ch_num;
  83. const char **caplist;
  84. };
  85. #define to_dma_channel(channel) container_of(channel, struct dma_channel, dev)
  86. /* arch/sh/drivers/dma/dma-api.c */
  87. extern int dma_xfer(unsigned int chan, unsigned long from,
  88. unsigned long to, size_t size, unsigned int mode);
  89. #define dma_write(chan, from, to, size) \
  90. dma_xfer(chan, from, to, size, DMA_MODE_WRITE)
  91. #define dma_write_page(chan, from, to) \
  92. dma_write(chan, from, to, PAGE_SIZE)
  93. #define dma_read(chan, from, to, size) \
  94. dma_xfer(chan, from, to, size, DMA_MODE_READ)
  95. #define dma_read_page(chan, from, to) \
  96. dma_read(chan, from, to, PAGE_SIZE)
  97. extern int request_dma_bycap(const char **dmac, const char **caps,
  98. const char *dev_id);
  99. extern int get_dma_residue(unsigned int chan);
  100. extern struct dma_info *get_dma_info(unsigned int chan);
  101. extern struct dma_channel *get_dma_channel(unsigned int chan);
  102. extern void dma_wait_for_completion(unsigned int chan);
  103. extern void dma_configure_channel(unsigned int chan, unsigned long flags);
  104. extern int register_dmac(struct dma_info *info);
  105. extern void unregister_dmac(struct dma_info *info);
  106. extern struct dma_info *get_dma_info_by_name(const char *dmac_name);
  107. extern int dma_extend(unsigned int chan, unsigned long op, void *param);
  108. extern int register_chan_caps(const char *dmac, struct dma_chan_caps *capslist);
  109. /* arch/sh/drivers/dma/dma-sysfs.c */
  110. extern int dma_create_sysfs_files(struct dma_channel *, struct dma_info *);
  111. extern void dma_remove_sysfs_files(struct dma_channel *, struct dma_info *);
  112. #ifdef CONFIG_PCI
  113. extern int isa_dma_bridge_buggy;
  114. #else
  115. #define isa_dma_bridge_buggy (0)
  116. #endif
  117. #endif /* __KERNEL__ */
  118. #endif /* __ASM_SH_DMA_H */