dma.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /* linux/include/asm-arm/arch-msm/dma.h
  2. *
  3. * Copyright (C) 2007 Google, Inc.
  4. *
  5. * This software is licensed under the terms of the GNU General Public
  6. * License version 2, as published by the Free Software Foundation, and
  7. * may be copied, distributed, and modified under those terms.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. */
  15. #ifndef __ASM_ARCH_MSM_DMA_H
  16. #include <linux/list.h>
  17. #include <asm/arch/msm_iomap.h>
  18. struct msm_dmov_cmd {
  19. struct list_head list;
  20. unsigned int cmdptr;
  21. void (*complete_func)(struct msm_dmov_cmd *cmd, unsigned int result);
  22. /* void (*user_result_func)(struct msm_dmov_cmd *cmd); */
  23. };
  24. void msm_dmov_enqueue_cmd(unsigned id, struct msm_dmov_cmd *cmd);
  25. void msm_dmov_stop_cmd(unsigned id, struct msm_dmov_cmd *cmd);
  26. int msm_dmov_exec_cmd(unsigned id, unsigned int cmdptr);
  27. /* int msm_dmov_exec_cmd_etc(unsigned id, unsigned int cmdptr, int timeout, int interruptible); */
  28. #define DMOV_SD0(off, ch) (MSM_DMOV_BASE + 0x0000 + (off) + ((ch) << 2))
  29. #define DMOV_SD1(off, ch) (MSM_DMOV_BASE + 0x0400 + (off) + ((ch) << 2))
  30. #define DMOV_SD2(off, ch) (MSM_DMOV_BASE + 0x0800 + (off) + ((ch) << 2))
  31. #define DMOV_SD3(off, ch) (MSM_DMOV_BASE + 0x0C00 + (off) + ((ch) << 2))
  32. /* only security domain 3 is available to the ARM11
  33. * SD0 -> mARM trusted, SD1 -> mARM nontrusted, SD2 -> aDSP, SD3 -> aARM
  34. */
  35. #define DMOV_CMD_PTR(ch) DMOV_SD3(0x000, ch)
  36. #define DMOV_CMD_LIST (0 << 29) /* does not work */
  37. #define DMOV_CMD_PTR_LIST (1 << 29) /* works */
  38. #define DMOV_CMD_INPUT_CFG (2 << 29) /* untested */
  39. #define DMOV_CMD_OUTPUT_CFG (3 << 29) /* untested */
  40. #define DMOV_CMD_ADDR(addr) ((addr) >> 3)
  41. #define DMOV_RSLT(ch) DMOV_SD3(0x040, ch)
  42. #define DMOV_RSLT_VALID (1 << 31) /* 0 == host has empties result fifo */
  43. #define DMOV_RSLT_ERROR (1 << 3)
  44. #define DMOV_RSLT_FLUSH (1 << 2)
  45. #define DMOV_RSLT_DONE (1 << 1) /* top pointer done */
  46. #define DMOV_RSLT_USER (1 << 0) /* command with FR force result */
  47. #define DMOV_FLUSH0(ch) DMOV_SD3(0x080, ch)
  48. #define DMOV_FLUSH1(ch) DMOV_SD3(0x0C0, ch)
  49. #define DMOV_FLUSH2(ch) DMOV_SD3(0x100, ch)
  50. #define DMOV_FLUSH3(ch) DMOV_SD3(0x140, ch)
  51. #define DMOV_FLUSH4(ch) DMOV_SD3(0x180, ch)
  52. #define DMOV_FLUSH5(ch) DMOV_SD3(0x1C0, ch)
  53. #define DMOV_STATUS(ch) DMOV_SD3(0x200, ch)
  54. #define DMOV_STATUS_RSLT_COUNT(n) (((n) >> 29))
  55. #define DMOV_STATUS_CMD_COUNT(n) (((n) >> 27) & 3)
  56. #define DMOV_STATUS_RSLT_VALID (1 << 1)
  57. #define DMOV_STATUS_CMD_PTR_RDY (1 << 0)
  58. #define DMOV_ISR DMOV_SD3(0x380, 0)
  59. #define DMOV_CONFIG(ch) DMOV_SD3(0x300, ch)
  60. #define DMOV_CONFIG_FORCE_TOP_PTR_RSLT (1 << 2)
  61. #define DMOV_CONFIG_FORCE_FLUSH_RSLT (1 << 1)
  62. #define DMOV_CONFIG_IRQ_EN (1 << 0)
  63. /* channel assignments */
  64. #define DMOV_NAND_CHAN 7
  65. #define DMOV_NAND_CRCI_CMD 5
  66. #define DMOV_NAND_CRCI_DATA 4
  67. #define DMOV_SDC1_CHAN 8
  68. #define DMOV_SDC1_CRCI 6
  69. #define DMOV_SDC2_CHAN 8
  70. #define DMOV_SDC2_CRCI 7
  71. #define DMOV_TSIF_CHAN 10
  72. #define DMOV_TSIF_CRCI 10
  73. #define DMOV_USB_CHAN 11
  74. /* no client rate control ifc (eg, ram) */
  75. #define DMOV_NONE_CRCI 0
  76. /* If the CMD_PTR register has CMD_PTR_LIST selected, the data mover
  77. * is going to walk a list of 32bit pointers as described below. Each
  78. * pointer points to a *array* of dmov_s, etc structs. The last pointer
  79. * in the list is marked with CMD_PTR_LP. The last struct in each array
  80. * is marked with CMD_LC (see below).
  81. */
  82. #define CMD_PTR_ADDR(addr) ((addr) >> 3)
  83. #define CMD_PTR_LP (1 << 31) /* last pointer */
  84. #define CMD_PTR_PT (3 << 29) /* ? */
  85. /* Single Item Mode */
  86. typedef struct {
  87. unsigned cmd;
  88. unsigned src;
  89. unsigned dst;
  90. unsigned len;
  91. } dmov_s;
  92. /* Scatter/Gather Mode */
  93. typedef struct {
  94. unsigned cmd;
  95. unsigned src_dscr;
  96. unsigned dst_dscr;
  97. unsigned _reserved;
  98. } dmov_sg;
  99. /* bits for the cmd field of the above structures */
  100. #define CMD_LC (1 << 31) /* last command */
  101. #define CMD_FR (1 << 22) /* force result -- does not work? */
  102. #define CMD_OCU (1 << 21) /* other channel unblock */
  103. #define CMD_OCB (1 << 20) /* other channel block */
  104. #define CMD_TCB (1 << 19) /* ? */
  105. #define CMD_DAH (1 << 18) /* destination address hold -- does not work?*/
  106. #define CMD_SAH (1 << 17) /* source address hold -- does not work? */
  107. #define CMD_MODE_SINGLE (0 << 0) /* dmov_s structure used */
  108. #define CMD_MODE_SG (1 << 0) /* untested */
  109. #define CMD_MODE_IND_SG (2 << 0) /* untested */
  110. #define CMD_MODE_BOX (3 << 0) /* untested */
  111. #define CMD_DST_SWAP_BYTES (1 << 14) /* exchange each byte n with byte n+1 */
  112. #define CMD_DST_SWAP_SHORTS (1 << 15) /* exchange each short n with short n+1 */
  113. #define CMD_DST_SWAP_WORDS (1 << 16) /* exchange each word n with word n+1 */
  114. #define CMD_SRC_SWAP_BYTES (1 << 11) /* exchange each byte n with byte n+1 */
  115. #define CMD_SRC_SWAP_SHORTS (1 << 12) /* exchange each short n with short n+1 */
  116. #define CMD_SRC_SWAP_WORDS (1 << 13) /* exchange each word n with word n+1 */
  117. #define CMD_DST_CRCI(n) (((n) & 15) << 7)
  118. #define CMD_SRC_CRCI(n) (((n) & 15) << 3)
  119. #endif