dma.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * linux/include/asm-arm/arch-sa1100/dma.h
  3. *
  4. * Generic SA1100 DMA support
  5. *
  6. * Copyright (C) 2000 Nicolas Pitre
  7. *
  8. */
  9. #ifndef __ASM_ARCH_DMA_H
  10. #define __ASM_ARCH_DMA_H
  11. #include <linux/config.h>
  12. #include "hardware.h"
  13. /*
  14. * The SA1100 has six internal DMA channels.
  15. */
  16. #define SA1100_DMA_CHANNELS 6
  17. /*
  18. * Maximum physical DMA buffer size
  19. */
  20. #define MAX_DMA_SIZE 0x1fff
  21. #define CUT_DMA_SIZE 0x1000
  22. /*
  23. * All possible SA1100 devices a DMA channel can be attached to.
  24. */
  25. typedef enum {
  26. DMA_Ser0UDCWr = DDAR_Ser0UDCWr, /* Ser. port 0 UDC Write */
  27. DMA_Ser0UDCRd = DDAR_Ser0UDCRd, /* Ser. port 0 UDC Read */
  28. DMA_Ser1UARTWr = DDAR_Ser1UARTWr, /* Ser. port 1 UART Write */
  29. DMA_Ser1UARTRd = DDAR_Ser1UARTRd, /* Ser. port 1 UART Read */
  30. DMA_Ser1SDLCWr = DDAR_Ser1SDLCWr, /* Ser. port 1 SDLC Write */
  31. DMA_Ser1SDLCRd = DDAR_Ser1SDLCRd, /* Ser. port 1 SDLC Read */
  32. DMA_Ser2UARTWr = DDAR_Ser2UARTWr, /* Ser. port 2 UART Write */
  33. DMA_Ser2UARTRd = DDAR_Ser2UARTRd, /* Ser. port 2 UART Read */
  34. DMA_Ser2HSSPWr = DDAR_Ser2HSSPWr, /* Ser. port 2 HSSP Write */
  35. DMA_Ser2HSSPRd = DDAR_Ser2HSSPRd, /* Ser. port 2 HSSP Read */
  36. DMA_Ser3UARTWr = DDAR_Ser3UARTWr, /* Ser. port 3 UART Write */
  37. DMA_Ser3UARTRd = DDAR_Ser3UARTRd, /* Ser. port 3 UART Read */
  38. DMA_Ser4MCP0Wr = DDAR_Ser4MCP0Wr, /* Ser. port 4 MCP 0 Write (audio) */
  39. DMA_Ser4MCP0Rd = DDAR_Ser4MCP0Rd, /* Ser. port 4 MCP 0 Read (audio) */
  40. DMA_Ser4MCP1Wr = DDAR_Ser4MCP1Wr, /* Ser. port 4 MCP 1 Write */
  41. DMA_Ser4MCP1Rd = DDAR_Ser4MCP1Rd, /* Ser. port 4 MCP 1 Read */
  42. DMA_Ser4SSPWr = DDAR_Ser4SSPWr, /* Ser. port 4 SSP Write (16 bits) */
  43. DMA_Ser4SSPRd = DDAR_Ser4SSPRd /* Ser. port 4 SSP Read (16 bits) */
  44. } dma_device_t;
  45. typedef struct {
  46. volatile u_long DDAR;
  47. volatile u_long SetDCSR;
  48. volatile u_long ClrDCSR;
  49. volatile u_long RdDCSR;
  50. volatile dma_addr_t DBSA;
  51. volatile u_long DBTA;
  52. volatile dma_addr_t DBSB;
  53. volatile u_long DBTB;
  54. } dma_regs_t;
  55. typedef void (*dma_callback_t)(void *data);
  56. /*
  57. * DMA function prototypes
  58. */
  59. extern int sa1100_request_dma( dma_device_t device, const char *device_id,
  60. dma_callback_t callback, void *data,
  61. dma_regs_t **regs );
  62. extern void sa1100_free_dma( dma_regs_t *regs );
  63. extern int sa1100_start_dma( dma_regs_t *regs, dma_addr_t dma_ptr, u_int size );
  64. extern dma_addr_t sa1100_get_dma_pos(dma_regs_t *regs);
  65. extern void sa1100_reset_dma(dma_regs_t *regs);
  66. /**
  67. * sa1100_stop_dma - stop DMA in progress
  68. * @regs: identifier for the channel to use
  69. *
  70. * This stops DMA without clearing buffer pointers. Unlike
  71. * sa1100_clear_dma() this allows subsequent use of sa1100_resume_dma()
  72. * or sa1100_get_dma_pos().
  73. *
  74. * The @regs identifier is provided by a successful call to
  75. * sa1100_request_dma().
  76. **/
  77. #define sa1100_stop_dma(regs) ((regs)->ClrDCSR = DCSR_IE|DCSR_RUN)
  78. /**
  79. * sa1100_resume_dma - resume DMA on a stopped channel
  80. * @regs: identifier for the channel to use
  81. *
  82. * This resumes DMA on a channel previously stopped with
  83. * sa1100_stop_dma().
  84. *
  85. * The @regs identifier is provided by a successful call to
  86. * sa1100_request_dma().
  87. **/
  88. #define sa1100_resume_dma(regs) ((regs)->SetDCSR = DCSR_IE|DCSR_RUN)
  89. /**
  90. * sa1100_clear_dma - clear DMA pointers
  91. * @regs: identifier for the channel to use
  92. *
  93. * This clear any DMA state so the DMA engine is ready to restart
  94. * with new buffers through sa1100_start_dma(). Any buffers in flight
  95. * are discarded.
  96. *
  97. * The @regs identifier is provided by a successful call to
  98. * sa1100_request_dma().
  99. **/
  100. #define sa1100_clear_dma(regs) ((regs)->ClrDCSR = DCSR_IE|DCSR_RUN|DCSR_STRTA|DCSR_STRTB)
  101. #endif /* _ASM_ARCH_DMA_H */