PageRenderTime 31ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 1ms

/drivers/dma/coh901318.c

http://github.com/mirrors/linux
C | 2809 lines | 2215 code | 322 blank | 272 comment | 120 complexity | 634f806a110a532eb22bc2bb4cea9280 MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.0
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * driver/dma/coh901318.c
  4. *
  5. * Copyright (C) 2007-2009 ST-Ericsson
  6. * DMA driver for COH 901 318
  7. * Author: Per Friden <per.friden@stericsson.com>
  8. */
  9. #include <linux/init.h>
  10. #include <linux/module.h>
  11. #include <linux/kernel.h> /* printk() */
  12. #include <linux/fs.h> /* everything... */
  13. #include <linux/scatterlist.h>
  14. #include <linux/slab.h> /* kmalloc() */
  15. #include <linux/dmaengine.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/device.h>
  18. #include <linux/irqreturn.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/io.h>
  21. #include <linux/uaccess.h>
  22. #include <linux/debugfs.h>
  23. #include <linux/platform_data/dma-coh901318.h>
  24. #include <linux/of_dma.h>
  25. #include "coh901318.h"
  26. #include "dmaengine.h"
  27. #define COH901318_MOD32_MASK (0x1F)
  28. #define COH901318_WORD_MASK (0xFFFFFFFF)
  29. /* INT_STATUS - Interrupt Status Registers 32bit (R/-) */
  30. #define COH901318_INT_STATUS1 (0x0000)
  31. #define COH901318_INT_STATUS2 (0x0004)
  32. /* TC_INT_STATUS - Terminal Count Interrupt Status Registers 32bit (R/-) */
  33. #define COH901318_TC_INT_STATUS1 (0x0008)
  34. #define COH901318_TC_INT_STATUS2 (0x000C)
  35. /* TC_INT_CLEAR - Terminal Count Interrupt Clear Registers 32bit (-/W) */
  36. #define COH901318_TC_INT_CLEAR1 (0x0010)
  37. #define COH901318_TC_INT_CLEAR2 (0x0014)
  38. /* RAW_TC_INT_STATUS - Raw Term Count Interrupt Status Registers 32bit (R/-) */
  39. #define COH901318_RAW_TC_INT_STATUS1 (0x0018)
  40. #define COH901318_RAW_TC_INT_STATUS2 (0x001C)
  41. /* BE_INT_STATUS - Bus Error Interrupt Status Registers 32bit (R/-) */
  42. #define COH901318_BE_INT_STATUS1 (0x0020)
  43. #define COH901318_BE_INT_STATUS2 (0x0024)
  44. /* BE_INT_CLEAR - Bus Error Interrupt Clear Registers 32bit (-/W) */
  45. #define COH901318_BE_INT_CLEAR1 (0x0028)
  46. #define COH901318_BE_INT_CLEAR2 (0x002C)
  47. /* RAW_BE_INT_STATUS - Raw Term Count Interrupt Status Registers 32bit (R/-) */
  48. #define COH901318_RAW_BE_INT_STATUS1 (0x0030)
  49. #define COH901318_RAW_BE_INT_STATUS2 (0x0034)
  50. /*
  51. * CX_CFG - Channel Configuration Registers 32bit (R/W)
  52. */
  53. #define COH901318_CX_CFG (0x0100)
  54. #define COH901318_CX_CFG_SPACING (0x04)
  55. /* Channel enable activates tha dma job */
  56. #define COH901318_CX_CFG_CH_ENABLE (0x00000001)
  57. #define COH901318_CX_CFG_CH_DISABLE (0x00000000)
  58. /* Request Mode */
  59. #define COH901318_CX_CFG_RM_MASK (0x00000006)
  60. #define COH901318_CX_CFG_RM_MEMORY_TO_MEMORY (0x0 << 1)
  61. #define COH901318_CX_CFG_RM_PRIMARY_TO_MEMORY (0x1 << 1)
  62. #define COH901318_CX_CFG_RM_MEMORY_TO_PRIMARY (0x1 << 1)
  63. #define COH901318_CX_CFG_RM_PRIMARY_TO_SECONDARY (0x3 << 1)
  64. #define COH901318_CX_CFG_RM_SECONDARY_TO_PRIMARY (0x3 << 1)
  65. /* Linked channel request field. RM must == 11 */
  66. #define COH901318_CX_CFG_LCRF_SHIFT 3
  67. #define COH901318_CX_CFG_LCRF_MASK (0x000001F8)
  68. #define COH901318_CX_CFG_LCR_DISABLE (0x00000000)
  69. /* Terminal Counter Interrupt Request Mask */
  70. #define COH901318_CX_CFG_TC_IRQ_ENABLE (0x00000200)
  71. #define COH901318_CX_CFG_TC_IRQ_DISABLE (0x00000000)
  72. /* Bus Error interrupt Mask */
  73. #define COH901318_CX_CFG_BE_IRQ_ENABLE (0x00000400)
  74. #define COH901318_CX_CFG_BE_IRQ_DISABLE (0x00000000)
  75. /*
  76. * CX_STAT - Channel Status Registers 32bit (R/-)
  77. */
  78. #define COH901318_CX_STAT (0x0200)
  79. #define COH901318_CX_STAT_SPACING (0x04)
  80. #define COH901318_CX_STAT_RBE_IRQ_IND (0x00000008)
  81. #define COH901318_CX_STAT_RTC_IRQ_IND (0x00000004)
  82. #define COH901318_CX_STAT_ACTIVE (0x00000002)
  83. #define COH901318_CX_STAT_ENABLED (0x00000001)
  84. /*
  85. * CX_CTRL - Channel Control Registers 32bit (R/W)
  86. */
  87. #define COH901318_CX_CTRL (0x0400)
  88. #define COH901318_CX_CTRL_SPACING (0x10)
  89. /* Transfer Count Enable */
  90. #define COH901318_CX_CTRL_TC_ENABLE (0x00001000)
  91. #define COH901318_CX_CTRL_TC_DISABLE (0x00000000)
  92. /* Transfer Count Value 0 - 4095 */
  93. #define COH901318_CX_CTRL_TC_VALUE_MASK (0x00000FFF)
  94. /* Burst count */
  95. #define COH901318_CX_CTRL_BURST_COUNT_MASK (0x0000E000)
  96. #define COH901318_CX_CTRL_BURST_COUNT_64_BYTES (0x7 << 13)
  97. #define COH901318_CX_CTRL_BURST_COUNT_48_BYTES (0x6 << 13)
  98. #define COH901318_CX_CTRL_BURST_COUNT_32_BYTES (0x5 << 13)
  99. #define COH901318_CX_CTRL_BURST_COUNT_16_BYTES (0x4 << 13)
  100. #define COH901318_CX_CTRL_BURST_COUNT_8_BYTES (0x3 << 13)
  101. #define COH901318_CX_CTRL_BURST_COUNT_4_BYTES (0x2 << 13)
  102. #define COH901318_CX_CTRL_BURST_COUNT_2_BYTES (0x1 << 13)
  103. #define COH901318_CX_CTRL_BURST_COUNT_1_BYTE (0x0 << 13)
  104. /* Source bus size */
  105. #define COH901318_CX_CTRL_SRC_BUS_SIZE_MASK (0x00030000)
  106. #define COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS (0x2 << 16)
  107. #define COH901318_CX_CTRL_SRC_BUS_SIZE_16_BITS (0x1 << 16)
  108. #define COH901318_CX_CTRL_SRC_BUS_SIZE_8_BITS (0x0 << 16)
  109. /* Source address increment */
  110. #define COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE (0x00040000)
  111. #define COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE (0x00000000)
  112. /* Destination Bus Size */
  113. #define COH901318_CX_CTRL_DST_BUS_SIZE_MASK (0x00180000)
  114. #define COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS (0x2 << 19)
  115. #define COH901318_CX_CTRL_DST_BUS_SIZE_16_BITS (0x1 << 19)
  116. #define COH901318_CX_CTRL_DST_BUS_SIZE_8_BITS (0x0 << 19)
  117. /* Destination address increment */
  118. #define COH901318_CX_CTRL_DST_ADDR_INC_ENABLE (0x00200000)
  119. #define COH901318_CX_CTRL_DST_ADDR_INC_DISABLE (0x00000000)
  120. /* Master Mode (Master2 is only connected to MSL) */
  121. #define COH901318_CX_CTRL_MASTER_MODE_MASK (0x00C00000)
  122. #define COH901318_CX_CTRL_MASTER_MODE_M2R_M1W (0x3 << 22)
  123. #define COH901318_CX_CTRL_MASTER_MODE_M1R_M2W (0x2 << 22)
  124. #define COH901318_CX_CTRL_MASTER_MODE_M2RW (0x1 << 22)
  125. #define COH901318_CX_CTRL_MASTER_MODE_M1RW (0x0 << 22)
  126. /* Terminal Count flag to PER enable */
  127. #define COH901318_CX_CTRL_TCP_ENABLE (0x01000000)
  128. #define COH901318_CX_CTRL_TCP_DISABLE (0x00000000)
  129. /* Terminal Count flags to CPU enable */
  130. #define COH901318_CX_CTRL_TC_IRQ_ENABLE (0x02000000)
  131. #define COH901318_CX_CTRL_TC_IRQ_DISABLE (0x00000000)
  132. /* Hand shake to peripheral */
  133. #define COH901318_CX_CTRL_HSP_ENABLE (0x04000000)
  134. #define COH901318_CX_CTRL_HSP_DISABLE (0x00000000)
  135. #define COH901318_CX_CTRL_HSS_ENABLE (0x08000000)
  136. #define COH901318_CX_CTRL_HSS_DISABLE (0x00000000)
  137. /* DMA mode */
  138. #define COH901318_CX_CTRL_DDMA_MASK (0x30000000)
  139. #define COH901318_CX_CTRL_DDMA_LEGACY (0x0 << 28)
  140. #define COH901318_CX_CTRL_DDMA_DEMAND_DMA1 (0x1 << 28)
  141. #define COH901318_CX_CTRL_DDMA_DEMAND_DMA2 (0x2 << 28)
  142. /* Primary Request Data Destination */
  143. #define COH901318_CX_CTRL_PRDD_MASK (0x40000000)
  144. #define COH901318_CX_CTRL_PRDD_DEST (0x1 << 30)
  145. #define COH901318_CX_CTRL_PRDD_SOURCE (0x0 << 30)
  146. /*
  147. * CX_SRC_ADDR - Channel Source Address Registers 32bit (R/W)
  148. */
  149. #define COH901318_CX_SRC_ADDR (0x0404)
  150. #define COH901318_CX_SRC_ADDR_SPACING (0x10)
  151. /*
  152. * CX_DST_ADDR - Channel Destination Address Registers 32bit R/W
  153. */
  154. #define COH901318_CX_DST_ADDR (0x0408)
  155. #define COH901318_CX_DST_ADDR_SPACING (0x10)
  156. /*
  157. * CX_LNK_ADDR - Channel Link Address Registers 32bit (R/W)
  158. */
  159. #define COH901318_CX_LNK_ADDR (0x040C)
  160. #define COH901318_CX_LNK_ADDR_SPACING (0x10)
  161. #define COH901318_CX_LNK_LINK_IMMEDIATE (0x00000001)
  162. /**
  163. * struct coh901318_params - parameters for DMAC configuration
  164. * @config: DMA config register
  165. * @ctrl_lli_last: DMA control register for the last lli in the list
  166. * @ctrl_lli: DMA control register for an lli
  167. * @ctrl_lli_chained: DMA control register for a chained lli
  168. */
  169. struct coh901318_params {
  170. u32 config;
  171. u32 ctrl_lli_last;
  172. u32 ctrl_lli;
  173. u32 ctrl_lli_chained;
  174. };
  175. /**
  176. * struct coh_dma_channel - dma channel base
  177. * @name: ascii name of dma channel
  178. * @number: channel id number
  179. * @desc_nbr_max: number of preallocated descriptors
  180. * @priority_high: prio of channel, 0 low otherwise high.
  181. * @param: configuration parameters
  182. */
  183. struct coh_dma_channel {
  184. const char name[32];
  185. const int number;
  186. const int desc_nbr_max;
  187. const int priority_high;
  188. const struct coh901318_params param;
  189. };
  190. /**
  191. * struct powersave - DMA power save structure
  192. * @lock: lock protecting data in this struct
  193. * @started_channels: bit mask indicating active dma channels
  194. */
  195. struct powersave {
  196. spinlock_t lock;
  197. u64 started_channels;
  198. };
  199. /* points out all dma slave channels.
  200. * Syntax is [A1, B1, A2, B2, .... ,-1,-1]
  201. * Select all channels from A to B, end of list is marked with -1,-1
  202. */
  203. static int dma_slave_channels[] = {
  204. U300_DMA_MSL_TX_0, U300_DMA_SPI_RX,
  205. U300_DMA_UART1_TX, U300_DMA_UART1_RX, -1, -1};
  206. /* points out all dma memcpy channels. */
  207. static int dma_memcpy_channels[] = {
  208. U300_DMA_GENERAL_PURPOSE_0, U300_DMA_GENERAL_PURPOSE_8, -1, -1};
  209. #define flags_memcpy_config (COH901318_CX_CFG_CH_DISABLE | \
  210. COH901318_CX_CFG_RM_MEMORY_TO_MEMORY | \
  211. COH901318_CX_CFG_LCR_DISABLE | \
  212. COH901318_CX_CFG_TC_IRQ_ENABLE | \
  213. COH901318_CX_CFG_BE_IRQ_ENABLE)
  214. #define flags_memcpy_lli_chained (COH901318_CX_CTRL_TC_ENABLE | \
  215. COH901318_CX_CTRL_BURST_COUNT_32_BYTES | \
  216. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS | \
  217. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE | \
  218. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS | \
  219. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE | \
  220. COH901318_CX_CTRL_MASTER_MODE_M1RW | \
  221. COH901318_CX_CTRL_TCP_DISABLE | \
  222. COH901318_CX_CTRL_TC_IRQ_DISABLE | \
  223. COH901318_CX_CTRL_HSP_DISABLE | \
  224. COH901318_CX_CTRL_HSS_DISABLE | \
  225. COH901318_CX_CTRL_DDMA_LEGACY | \
  226. COH901318_CX_CTRL_PRDD_SOURCE)
  227. #define flags_memcpy_lli (COH901318_CX_CTRL_TC_ENABLE | \
  228. COH901318_CX_CTRL_BURST_COUNT_32_BYTES | \
  229. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS | \
  230. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE | \
  231. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS | \
  232. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE | \
  233. COH901318_CX_CTRL_MASTER_MODE_M1RW | \
  234. COH901318_CX_CTRL_TCP_DISABLE | \
  235. COH901318_CX_CTRL_TC_IRQ_DISABLE | \
  236. COH901318_CX_CTRL_HSP_DISABLE | \
  237. COH901318_CX_CTRL_HSS_DISABLE | \
  238. COH901318_CX_CTRL_DDMA_LEGACY | \
  239. COH901318_CX_CTRL_PRDD_SOURCE)
  240. #define flags_memcpy_lli_last (COH901318_CX_CTRL_TC_ENABLE | \
  241. COH901318_CX_CTRL_BURST_COUNT_32_BYTES | \
  242. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS | \
  243. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE | \
  244. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS | \
  245. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE | \
  246. COH901318_CX_CTRL_MASTER_MODE_M1RW | \
  247. COH901318_CX_CTRL_TCP_DISABLE | \
  248. COH901318_CX_CTRL_TC_IRQ_ENABLE | \
  249. COH901318_CX_CTRL_HSP_DISABLE | \
  250. COH901318_CX_CTRL_HSS_DISABLE | \
  251. COH901318_CX_CTRL_DDMA_LEGACY | \
  252. COH901318_CX_CTRL_PRDD_SOURCE)
  253. static const struct coh_dma_channel chan_config[U300_DMA_CHANNELS] = {
  254. {
  255. .number = U300_DMA_MSL_TX_0,
  256. .name = "MSL TX 0",
  257. .priority_high = 0,
  258. },
  259. {
  260. .number = U300_DMA_MSL_TX_1,
  261. .name = "MSL TX 1",
  262. .priority_high = 0,
  263. .param.config = COH901318_CX_CFG_CH_DISABLE |
  264. COH901318_CX_CFG_LCR_DISABLE |
  265. COH901318_CX_CFG_TC_IRQ_ENABLE |
  266. COH901318_CX_CFG_BE_IRQ_ENABLE,
  267. .param.ctrl_lli_chained = 0 |
  268. COH901318_CX_CTRL_TC_ENABLE |
  269. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  270. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  271. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  272. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  273. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  274. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  275. COH901318_CX_CTRL_TCP_DISABLE |
  276. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  277. COH901318_CX_CTRL_HSP_ENABLE |
  278. COH901318_CX_CTRL_HSS_DISABLE |
  279. COH901318_CX_CTRL_DDMA_LEGACY |
  280. COH901318_CX_CTRL_PRDD_SOURCE,
  281. .param.ctrl_lli = 0 |
  282. COH901318_CX_CTRL_TC_ENABLE |
  283. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  284. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  285. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  286. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  287. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  288. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  289. COH901318_CX_CTRL_TCP_ENABLE |
  290. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  291. COH901318_CX_CTRL_HSP_ENABLE |
  292. COH901318_CX_CTRL_HSS_DISABLE |
  293. COH901318_CX_CTRL_DDMA_LEGACY |
  294. COH901318_CX_CTRL_PRDD_SOURCE,
  295. .param.ctrl_lli_last = 0 |
  296. COH901318_CX_CTRL_TC_ENABLE |
  297. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  298. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  299. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  300. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  301. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  302. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  303. COH901318_CX_CTRL_TCP_ENABLE |
  304. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  305. COH901318_CX_CTRL_HSP_ENABLE |
  306. COH901318_CX_CTRL_HSS_DISABLE |
  307. COH901318_CX_CTRL_DDMA_LEGACY |
  308. COH901318_CX_CTRL_PRDD_SOURCE,
  309. },
  310. {
  311. .number = U300_DMA_MSL_TX_2,
  312. .name = "MSL TX 2",
  313. .priority_high = 0,
  314. .param.config = COH901318_CX_CFG_CH_DISABLE |
  315. COH901318_CX_CFG_LCR_DISABLE |
  316. COH901318_CX_CFG_TC_IRQ_ENABLE |
  317. COH901318_CX_CFG_BE_IRQ_ENABLE,
  318. .param.ctrl_lli_chained = 0 |
  319. COH901318_CX_CTRL_TC_ENABLE |
  320. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  321. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  322. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  323. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  324. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  325. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  326. COH901318_CX_CTRL_TCP_DISABLE |
  327. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  328. COH901318_CX_CTRL_HSP_ENABLE |
  329. COH901318_CX_CTRL_HSS_DISABLE |
  330. COH901318_CX_CTRL_DDMA_LEGACY |
  331. COH901318_CX_CTRL_PRDD_SOURCE,
  332. .param.ctrl_lli = 0 |
  333. COH901318_CX_CTRL_TC_ENABLE |
  334. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  335. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  336. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  337. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  338. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  339. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  340. COH901318_CX_CTRL_TCP_ENABLE |
  341. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  342. COH901318_CX_CTRL_HSP_ENABLE |
  343. COH901318_CX_CTRL_HSS_DISABLE |
  344. COH901318_CX_CTRL_DDMA_LEGACY |
  345. COH901318_CX_CTRL_PRDD_SOURCE,
  346. .param.ctrl_lli_last = 0 |
  347. COH901318_CX_CTRL_TC_ENABLE |
  348. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  349. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  350. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  351. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  352. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  353. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  354. COH901318_CX_CTRL_TCP_ENABLE |
  355. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  356. COH901318_CX_CTRL_HSP_ENABLE |
  357. COH901318_CX_CTRL_HSS_DISABLE |
  358. COH901318_CX_CTRL_DDMA_LEGACY |
  359. COH901318_CX_CTRL_PRDD_SOURCE,
  360. .desc_nbr_max = 10,
  361. },
  362. {
  363. .number = U300_DMA_MSL_TX_3,
  364. .name = "MSL TX 3",
  365. .priority_high = 0,
  366. .param.config = COH901318_CX_CFG_CH_DISABLE |
  367. COH901318_CX_CFG_LCR_DISABLE |
  368. COH901318_CX_CFG_TC_IRQ_ENABLE |
  369. COH901318_CX_CFG_BE_IRQ_ENABLE,
  370. .param.ctrl_lli_chained = 0 |
  371. COH901318_CX_CTRL_TC_ENABLE |
  372. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  373. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  374. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  375. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  376. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  377. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  378. COH901318_CX_CTRL_TCP_DISABLE |
  379. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  380. COH901318_CX_CTRL_HSP_ENABLE |
  381. COH901318_CX_CTRL_HSS_DISABLE |
  382. COH901318_CX_CTRL_DDMA_LEGACY |
  383. COH901318_CX_CTRL_PRDD_SOURCE,
  384. .param.ctrl_lli = 0 |
  385. COH901318_CX_CTRL_TC_ENABLE |
  386. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  387. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  388. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  389. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  390. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  391. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  392. COH901318_CX_CTRL_TCP_ENABLE |
  393. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  394. COH901318_CX_CTRL_HSP_ENABLE |
  395. COH901318_CX_CTRL_HSS_DISABLE |
  396. COH901318_CX_CTRL_DDMA_LEGACY |
  397. COH901318_CX_CTRL_PRDD_SOURCE,
  398. .param.ctrl_lli_last = 0 |
  399. COH901318_CX_CTRL_TC_ENABLE |
  400. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  401. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  402. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  403. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  404. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  405. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  406. COH901318_CX_CTRL_TCP_ENABLE |
  407. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  408. COH901318_CX_CTRL_HSP_ENABLE |
  409. COH901318_CX_CTRL_HSS_DISABLE |
  410. COH901318_CX_CTRL_DDMA_LEGACY |
  411. COH901318_CX_CTRL_PRDD_SOURCE,
  412. },
  413. {
  414. .number = U300_DMA_MSL_TX_4,
  415. .name = "MSL TX 4",
  416. .priority_high = 0,
  417. .param.config = COH901318_CX_CFG_CH_DISABLE |
  418. COH901318_CX_CFG_LCR_DISABLE |
  419. COH901318_CX_CFG_TC_IRQ_ENABLE |
  420. COH901318_CX_CFG_BE_IRQ_ENABLE,
  421. .param.ctrl_lli_chained = 0 |
  422. COH901318_CX_CTRL_TC_ENABLE |
  423. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  424. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  425. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  426. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  427. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  428. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  429. COH901318_CX_CTRL_TCP_DISABLE |
  430. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  431. COH901318_CX_CTRL_HSP_ENABLE |
  432. COH901318_CX_CTRL_HSS_DISABLE |
  433. COH901318_CX_CTRL_DDMA_LEGACY |
  434. COH901318_CX_CTRL_PRDD_SOURCE,
  435. .param.ctrl_lli = 0 |
  436. COH901318_CX_CTRL_TC_ENABLE |
  437. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  438. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  439. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  440. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  441. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  442. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  443. COH901318_CX_CTRL_TCP_ENABLE |
  444. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  445. COH901318_CX_CTRL_HSP_ENABLE |
  446. COH901318_CX_CTRL_HSS_DISABLE |
  447. COH901318_CX_CTRL_DDMA_LEGACY |
  448. COH901318_CX_CTRL_PRDD_SOURCE,
  449. .param.ctrl_lli_last = 0 |
  450. COH901318_CX_CTRL_TC_ENABLE |
  451. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  452. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  453. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  454. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  455. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  456. COH901318_CX_CTRL_MASTER_MODE_M1R_M2W |
  457. COH901318_CX_CTRL_TCP_ENABLE |
  458. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  459. COH901318_CX_CTRL_HSP_ENABLE |
  460. COH901318_CX_CTRL_HSS_DISABLE |
  461. COH901318_CX_CTRL_DDMA_LEGACY |
  462. COH901318_CX_CTRL_PRDD_SOURCE,
  463. },
  464. {
  465. .number = U300_DMA_MSL_TX_5,
  466. .name = "MSL TX 5",
  467. .priority_high = 0,
  468. },
  469. {
  470. .number = U300_DMA_MSL_TX_6,
  471. .name = "MSL TX 6",
  472. .priority_high = 0,
  473. },
  474. {
  475. .number = U300_DMA_MSL_RX_0,
  476. .name = "MSL RX 0",
  477. .priority_high = 0,
  478. },
  479. {
  480. .number = U300_DMA_MSL_RX_1,
  481. .name = "MSL RX 1",
  482. .priority_high = 0,
  483. .param.config = COH901318_CX_CFG_CH_DISABLE |
  484. COH901318_CX_CFG_LCR_DISABLE |
  485. COH901318_CX_CFG_TC_IRQ_ENABLE |
  486. COH901318_CX_CFG_BE_IRQ_ENABLE,
  487. .param.ctrl_lli_chained = 0 |
  488. COH901318_CX_CTRL_TC_ENABLE |
  489. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  490. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  491. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  492. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  493. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  494. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  495. COH901318_CX_CTRL_TCP_DISABLE |
  496. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  497. COH901318_CX_CTRL_HSP_ENABLE |
  498. COH901318_CX_CTRL_HSS_DISABLE |
  499. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  500. COH901318_CX_CTRL_PRDD_DEST,
  501. .param.ctrl_lli = 0,
  502. .param.ctrl_lli_last = 0 |
  503. COH901318_CX_CTRL_TC_ENABLE |
  504. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  505. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  506. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  507. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  508. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  509. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  510. COH901318_CX_CTRL_TCP_DISABLE |
  511. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  512. COH901318_CX_CTRL_HSP_ENABLE |
  513. COH901318_CX_CTRL_HSS_DISABLE |
  514. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  515. COH901318_CX_CTRL_PRDD_DEST,
  516. },
  517. {
  518. .number = U300_DMA_MSL_RX_2,
  519. .name = "MSL RX 2",
  520. .priority_high = 0,
  521. .param.config = COH901318_CX_CFG_CH_DISABLE |
  522. COH901318_CX_CFG_LCR_DISABLE |
  523. COH901318_CX_CFG_TC_IRQ_ENABLE |
  524. COH901318_CX_CFG_BE_IRQ_ENABLE,
  525. .param.ctrl_lli_chained = 0 |
  526. COH901318_CX_CTRL_TC_ENABLE |
  527. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  528. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  529. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  530. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  531. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  532. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  533. COH901318_CX_CTRL_TCP_DISABLE |
  534. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  535. COH901318_CX_CTRL_HSP_ENABLE |
  536. COH901318_CX_CTRL_HSS_DISABLE |
  537. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  538. COH901318_CX_CTRL_PRDD_DEST,
  539. .param.ctrl_lli = 0 |
  540. COH901318_CX_CTRL_TC_ENABLE |
  541. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  542. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  543. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  544. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  545. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  546. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  547. COH901318_CX_CTRL_TCP_DISABLE |
  548. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  549. COH901318_CX_CTRL_HSP_ENABLE |
  550. COH901318_CX_CTRL_HSS_DISABLE |
  551. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  552. COH901318_CX_CTRL_PRDD_DEST,
  553. .param.ctrl_lli_last = 0 |
  554. COH901318_CX_CTRL_TC_ENABLE |
  555. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  556. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  557. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  558. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  559. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  560. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  561. COH901318_CX_CTRL_TCP_DISABLE |
  562. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  563. COH901318_CX_CTRL_HSP_ENABLE |
  564. COH901318_CX_CTRL_HSS_DISABLE |
  565. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  566. COH901318_CX_CTRL_PRDD_DEST,
  567. },
  568. {
  569. .number = U300_DMA_MSL_RX_3,
  570. .name = "MSL RX 3",
  571. .priority_high = 0,
  572. .param.config = COH901318_CX_CFG_CH_DISABLE |
  573. COH901318_CX_CFG_LCR_DISABLE |
  574. COH901318_CX_CFG_TC_IRQ_ENABLE |
  575. COH901318_CX_CFG_BE_IRQ_ENABLE,
  576. .param.ctrl_lli_chained = 0 |
  577. COH901318_CX_CTRL_TC_ENABLE |
  578. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  579. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  580. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  581. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  582. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  583. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  584. COH901318_CX_CTRL_TCP_DISABLE |
  585. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  586. COH901318_CX_CTRL_HSP_ENABLE |
  587. COH901318_CX_CTRL_HSS_DISABLE |
  588. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  589. COH901318_CX_CTRL_PRDD_DEST,
  590. .param.ctrl_lli = 0 |
  591. COH901318_CX_CTRL_TC_ENABLE |
  592. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  593. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  594. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  595. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  596. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  597. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  598. COH901318_CX_CTRL_TCP_DISABLE |
  599. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  600. COH901318_CX_CTRL_HSP_ENABLE |
  601. COH901318_CX_CTRL_HSS_DISABLE |
  602. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  603. COH901318_CX_CTRL_PRDD_DEST,
  604. .param.ctrl_lli_last = 0 |
  605. COH901318_CX_CTRL_TC_ENABLE |
  606. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  607. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  608. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  609. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  610. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  611. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  612. COH901318_CX_CTRL_TCP_DISABLE |
  613. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  614. COH901318_CX_CTRL_HSP_ENABLE |
  615. COH901318_CX_CTRL_HSS_DISABLE |
  616. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  617. COH901318_CX_CTRL_PRDD_DEST,
  618. },
  619. {
  620. .number = U300_DMA_MSL_RX_4,
  621. .name = "MSL RX 4",
  622. .priority_high = 0,
  623. .param.config = COH901318_CX_CFG_CH_DISABLE |
  624. COH901318_CX_CFG_LCR_DISABLE |
  625. COH901318_CX_CFG_TC_IRQ_ENABLE |
  626. COH901318_CX_CFG_BE_IRQ_ENABLE,
  627. .param.ctrl_lli_chained = 0 |
  628. COH901318_CX_CTRL_TC_ENABLE |
  629. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  630. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  631. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  632. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  633. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  634. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  635. COH901318_CX_CTRL_TCP_DISABLE |
  636. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  637. COH901318_CX_CTRL_HSP_ENABLE |
  638. COH901318_CX_CTRL_HSS_DISABLE |
  639. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  640. COH901318_CX_CTRL_PRDD_DEST,
  641. .param.ctrl_lli = 0 |
  642. COH901318_CX_CTRL_TC_ENABLE |
  643. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  644. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  645. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  646. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  647. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  648. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  649. COH901318_CX_CTRL_TCP_DISABLE |
  650. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  651. COH901318_CX_CTRL_HSP_ENABLE |
  652. COH901318_CX_CTRL_HSS_DISABLE |
  653. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  654. COH901318_CX_CTRL_PRDD_DEST,
  655. .param.ctrl_lli_last = 0 |
  656. COH901318_CX_CTRL_TC_ENABLE |
  657. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  658. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  659. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  660. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  661. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  662. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  663. COH901318_CX_CTRL_TCP_DISABLE |
  664. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  665. COH901318_CX_CTRL_HSP_ENABLE |
  666. COH901318_CX_CTRL_HSS_DISABLE |
  667. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  668. COH901318_CX_CTRL_PRDD_DEST,
  669. },
  670. {
  671. .number = U300_DMA_MSL_RX_5,
  672. .name = "MSL RX 5",
  673. .priority_high = 0,
  674. .param.config = COH901318_CX_CFG_CH_DISABLE |
  675. COH901318_CX_CFG_LCR_DISABLE |
  676. COH901318_CX_CFG_TC_IRQ_ENABLE |
  677. COH901318_CX_CFG_BE_IRQ_ENABLE,
  678. .param.ctrl_lli_chained = 0 |
  679. COH901318_CX_CTRL_TC_ENABLE |
  680. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  681. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  682. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  683. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  684. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  685. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  686. COH901318_CX_CTRL_TCP_DISABLE |
  687. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  688. COH901318_CX_CTRL_HSP_ENABLE |
  689. COH901318_CX_CTRL_HSS_DISABLE |
  690. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  691. COH901318_CX_CTRL_PRDD_DEST,
  692. .param.ctrl_lli = 0 |
  693. COH901318_CX_CTRL_TC_ENABLE |
  694. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  695. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  696. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  697. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  698. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  699. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  700. COH901318_CX_CTRL_TCP_DISABLE |
  701. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  702. COH901318_CX_CTRL_HSP_ENABLE |
  703. COH901318_CX_CTRL_HSS_DISABLE |
  704. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  705. COH901318_CX_CTRL_PRDD_DEST,
  706. .param.ctrl_lli_last = 0 |
  707. COH901318_CX_CTRL_TC_ENABLE |
  708. COH901318_CX_CTRL_BURST_COUNT_32_BYTES |
  709. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  710. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  711. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  712. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  713. COH901318_CX_CTRL_MASTER_MODE_M2R_M1W |
  714. COH901318_CX_CTRL_TCP_DISABLE |
  715. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  716. COH901318_CX_CTRL_HSP_ENABLE |
  717. COH901318_CX_CTRL_HSS_DISABLE |
  718. COH901318_CX_CTRL_DDMA_DEMAND_DMA1 |
  719. COH901318_CX_CTRL_PRDD_DEST,
  720. },
  721. {
  722. .number = U300_DMA_MSL_RX_6,
  723. .name = "MSL RX 6",
  724. .priority_high = 0,
  725. },
  726. /*
  727. * Don't set up device address, burst count or size of src
  728. * or dst bus for this peripheral - handled by PrimeCell
  729. * DMA extension.
  730. */
  731. {
  732. .number = U300_DMA_MMCSD_RX_TX,
  733. .name = "MMCSD RX TX",
  734. .priority_high = 0,
  735. .param.config = COH901318_CX_CFG_CH_DISABLE |
  736. COH901318_CX_CFG_LCR_DISABLE |
  737. COH901318_CX_CFG_TC_IRQ_ENABLE |
  738. COH901318_CX_CFG_BE_IRQ_ENABLE,
  739. .param.ctrl_lli_chained = 0 |
  740. COH901318_CX_CTRL_TC_ENABLE |
  741. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  742. COH901318_CX_CTRL_TCP_ENABLE |
  743. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  744. COH901318_CX_CTRL_HSP_ENABLE |
  745. COH901318_CX_CTRL_HSS_DISABLE |
  746. COH901318_CX_CTRL_DDMA_LEGACY,
  747. .param.ctrl_lli = 0 |
  748. COH901318_CX_CTRL_TC_ENABLE |
  749. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  750. COH901318_CX_CTRL_TCP_ENABLE |
  751. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  752. COH901318_CX_CTRL_HSP_ENABLE |
  753. COH901318_CX_CTRL_HSS_DISABLE |
  754. COH901318_CX_CTRL_DDMA_LEGACY,
  755. .param.ctrl_lli_last = 0 |
  756. COH901318_CX_CTRL_TC_ENABLE |
  757. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  758. COH901318_CX_CTRL_TCP_DISABLE |
  759. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  760. COH901318_CX_CTRL_HSP_ENABLE |
  761. COH901318_CX_CTRL_HSS_DISABLE |
  762. COH901318_CX_CTRL_DDMA_LEGACY,
  763. },
  764. {
  765. .number = U300_DMA_MSPRO_TX,
  766. .name = "MSPRO TX",
  767. .priority_high = 0,
  768. },
  769. {
  770. .number = U300_DMA_MSPRO_RX,
  771. .name = "MSPRO RX",
  772. .priority_high = 0,
  773. },
  774. /*
  775. * Don't set up device address, burst count or size of src
  776. * or dst bus for this peripheral - handled by PrimeCell
  777. * DMA extension.
  778. */
  779. {
  780. .number = U300_DMA_UART0_TX,
  781. .name = "UART0 TX",
  782. .priority_high = 0,
  783. .param.config = COH901318_CX_CFG_CH_DISABLE |
  784. COH901318_CX_CFG_LCR_DISABLE |
  785. COH901318_CX_CFG_TC_IRQ_ENABLE |
  786. COH901318_CX_CFG_BE_IRQ_ENABLE,
  787. .param.ctrl_lli_chained = 0 |
  788. COH901318_CX_CTRL_TC_ENABLE |
  789. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  790. COH901318_CX_CTRL_TCP_ENABLE |
  791. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  792. COH901318_CX_CTRL_HSP_ENABLE |
  793. COH901318_CX_CTRL_HSS_DISABLE |
  794. COH901318_CX_CTRL_DDMA_LEGACY,
  795. .param.ctrl_lli = 0 |
  796. COH901318_CX_CTRL_TC_ENABLE |
  797. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  798. COH901318_CX_CTRL_TCP_ENABLE |
  799. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  800. COH901318_CX_CTRL_HSP_ENABLE |
  801. COH901318_CX_CTRL_HSS_DISABLE |
  802. COH901318_CX_CTRL_DDMA_LEGACY,
  803. .param.ctrl_lli_last = 0 |
  804. COH901318_CX_CTRL_TC_ENABLE |
  805. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  806. COH901318_CX_CTRL_TCP_ENABLE |
  807. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  808. COH901318_CX_CTRL_HSP_ENABLE |
  809. COH901318_CX_CTRL_HSS_DISABLE |
  810. COH901318_CX_CTRL_DDMA_LEGACY,
  811. },
  812. {
  813. .number = U300_DMA_UART0_RX,
  814. .name = "UART0 RX",
  815. .priority_high = 0,
  816. .param.config = COH901318_CX_CFG_CH_DISABLE |
  817. COH901318_CX_CFG_LCR_DISABLE |
  818. COH901318_CX_CFG_TC_IRQ_ENABLE |
  819. COH901318_CX_CFG_BE_IRQ_ENABLE,
  820. .param.ctrl_lli_chained = 0 |
  821. COH901318_CX_CTRL_TC_ENABLE |
  822. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  823. COH901318_CX_CTRL_TCP_ENABLE |
  824. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  825. COH901318_CX_CTRL_HSP_ENABLE |
  826. COH901318_CX_CTRL_HSS_DISABLE |
  827. COH901318_CX_CTRL_DDMA_LEGACY,
  828. .param.ctrl_lli = 0 |
  829. COH901318_CX_CTRL_TC_ENABLE |
  830. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  831. COH901318_CX_CTRL_TCP_ENABLE |
  832. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  833. COH901318_CX_CTRL_HSP_ENABLE |
  834. COH901318_CX_CTRL_HSS_DISABLE |
  835. COH901318_CX_CTRL_DDMA_LEGACY,
  836. .param.ctrl_lli_last = 0 |
  837. COH901318_CX_CTRL_TC_ENABLE |
  838. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  839. COH901318_CX_CTRL_TCP_ENABLE |
  840. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  841. COH901318_CX_CTRL_HSP_ENABLE |
  842. COH901318_CX_CTRL_HSS_DISABLE |
  843. COH901318_CX_CTRL_DDMA_LEGACY,
  844. },
  845. {
  846. .number = U300_DMA_APEX_TX,
  847. .name = "APEX TX",
  848. .priority_high = 0,
  849. },
  850. {
  851. .number = U300_DMA_APEX_RX,
  852. .name = "APEX RX",
  853. .priority_high = 0,
  854. },
  855. {
  856. .number = U300_DMA_PCM_I2S0_TX,
  857. .name = "PCM I2S0 TX",
  858. .priority_high = 1,
  859. .param.config = COH901318_CX_CFG_CH_DISABLE |
  860. COH901318_CX_CFG_LCR_DISABLE |
  861. COH901318_CX_CFG_TC_IRQ_ENABLE |
  862. COH901318_CX_CFG_BE_IRQ_ENABLE,
  863. .param.ctrl_lli_chained = 0 |
  864. COH901318_CX_CTRL_TC_ENABLE |
  865. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  866. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  867. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  868. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  869. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  870. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  871. COH901318_CX_CTRL_TCP_DISABLE |
  872. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  873. COH901318_CX_CTRL_HSP_ENABLE |
  874. COH901318_CX_CTRL_HSS_DISABLE |
  875. COH901318_CX_CTRL_DDMA_LEGACY |
  876. COH901318_CX_CTRL_PRDD_SOURCE,
  877. .param.ctrl_lli = 0 |
  878. COH901318_CX_CTRL_TC_ENABLE |
  879. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  880. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  881. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  882. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  883. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  884. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  885. COH901318_CX_CTRL_TCP_ENABLE |
  886. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  887. COH901318_CX_CTRL_HSP_ENABLE |
  888. COH901318_CX_CTRL_HSS_DISABLE |
  889. COH901318_CX_CTRL_DDMA_LEGACY |
  890. COH901318_CX_CTRL_PRDD_SOURCE,
  891. .param.ctrl_lli_last = 0 |
  892. COH901318_CX_CTRL_TC_ENABLE |
  893. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  894. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  895. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  896. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  897. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  898. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  899. COH901318_CX_CTRL_TCP_ENABLE |
  900. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  901. COH901318_CX_CTRL_HSP_ENABLE |
  902. COH901318_CX_CTRL_HSS_DISABLE |
  903. COH901318_CX_CTRL_DDMA_LEGACY |
  904. COH901318_CX_CTRL_PRDD_SOURCE,
  905. },
  906. {
  907. .number = U300_DMA_PCM_I2S0_RX,
  908. .name = "PCM I2S0 RX",
  909. .priority_high = 1,
  910. .param.config = COH901318_CX_CFG_CH_DISABLE |
  911. COH901318_CX_CFG_LCR_DISABLE |
  912. COH901318_CX_CFG_TC_IRQ_ENABLE |
  913. COH901318_CX_CFG_BE_IRQ_ENABLE,
  914. .param.ctrl_lli_chained = 0 |
  915. COH901318_CX_CTRL_TC_ENABLE |
  916. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  917. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  918. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  919. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  920. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  921. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  922. COH901318_CX_CTRL_TCP_DISABLE |
  923. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  924. COH901318_CX_CTRL_HSP_ENABLE |
  925. COH901318_CX_CTRL_HSS_DISABLE |
  926. COH901318_CX_CTRL_DDMA_LEGACY |
  927. COH901318_CX_CTRL_PRDD_DEST,
  928. .param.ctrl_lli = 0 |
  929. COH901318_CX_CTRL_TC_ENABLE |
  930. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  931. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  932. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  933. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  934. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  935. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  936. COH901318_CX_CTRL_TCP_ENABLE |
  937. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  938. COH901318_CX_CTRL_HSP_ENABLE |
  939. COH901318_CX_CTRL_HSS_DISABLE |
  940. COH901318_CX_CTRL_DDMA_LEGACY |
  941. COH901318_CX_CTRL_PRDD_DEST,
  942. .param.ctrl_lli_last = 0 |
  943. COH901318_CX_CTRL_TC_ENABLE |
  944. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  945. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  946. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  947. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  948. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  949. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  950. COH901318_CX_CTRL_TCP_ENABLE |
  951. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  952. COH901318_CX_CTRL_HSP_ENABLE |
  953. COH901318_CX_CTRL_HSS_DISABLE |
  954. COH901318_CX_CTRL_DDMA_LEGACY |
  955. COH901318_CX_CTRL_PRDD_DEST,
  956. },
  957. {
  958. .number = U300_DMA_PCM_I2S1_TX,
  959. .name = "PCM I2S1 TX",
  960. .priority_high = 1,
  961. .param.config = COH901318_CX_CFG_CH_DISABLE |
  962. COH901318_CX_CFG_LCR_DISABLE |
  963. COH901318_CX_CFG_TC_IRQ_ENABLE |
  964. COH901318_CX_CFG_BE_IRQ_ENABLE,
  965. .param.ctrl_lli_chained = 0 |
  966. COH901318_CX_CTRL_TC_ENABLE |
  967. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  968. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  969. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  970. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  971. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  972. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  973. COH901318_CX_CTRL_TCP_DISABLE |
  974. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  975. COH901318_CX_CTRL_HSP_ENABLE |
  976. COH901318_CX_CTRL_HSS_DISABLE |
  977. COH901318_CX_CTRL_DDMA_LEGACY |
  978. COH901318_CX_CTRL_PRDD_SOURCE,
  979. .param.ctrl_lli = 0 |
  980. COH901318_CX_CTRL_TC_ENABLE |
  981. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  982. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  983. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  984. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  985. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  986. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  987. COH901318_CX_CTRL_TCP_ENABLE |
  988. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  989. COH901318_CX_CTRL_HSP_ENABLE |
  990. COH901318_CX_CTRL_HSS_DISABLE |
  991. COH901318_CX_CTRL_DDMA_LEGACY |
  992. COH901318_CX_CTRL_PRDD_SOURCE,
  993. .param.ctrl_lli_last = 0 |
  994. COH901318_CX_CTRL_TC_ENABLE |
  995. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  996. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  997. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE |
  998. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  999. COH901318_CX_CTRL_DST_ADDR_INC_DISABLE |
  1000. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1001. COH901318_CX_CTRL_TCP_ENABLE |
  1002. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1003. COH901318_CX_CTRL_HSP_ENABLE |
  1004. COH901318_CX_CTRL_HSS_DISABLE |
  1005. COH901318_CX_CTRL_DDMA_LEGACY |
  1006. COH901318_CX_CTRL_PRDD_SOURCE,
  1007. },
  1008. {
  1009. .number = U300_DMA_PCM_I2S1_RX,
  1010. .name = "PCM I2S1 RX",
  1011. .priority_high = 1,
  1012. .param.config = COH901318_CX_CFG_CH_DISABLE |
  1013. COH901318_CX_CFG_LCR_DISABLE |
  1014. COH901318_CX_CFG_TC_IRQ_ENABLE |
  1015. COH901318_CX_CFG_BE_IRQ_ENABLE,
  1016. .param.ctrl_lli_chained = 0 |
  1017. COH901318_CX_CTRL_TC_ENABLE |
  1018. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  1019. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  1020. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  1021. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  1022. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  1023. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1024. COH901318_CX_CTRL_TCP_DISABLE |
  1025. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1026. COH901318_CX_CTRL_HSP_ENABLE |
  1027. COH901318_CX_CTRL_HSS_DISABLE |
  1028. COH901318_CX_CTRL_DDMA_LEGACY |
  1029. COH901318_CX_CTRL_PRDD_DEST,
  1030. .param.ctrl_lli = 0 |
  1031. COH901318_CX_CTRL_TC_ENABLE |
  1032. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  1033. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  1034. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  1035. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  1036. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  1037. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1038. COH901318_CX_CTRL_TCP_ENABLE |
  1039. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1040. COH901318_CX_CTRL_HSP_ENABLE |
  1041. COH901318_CX_CTRL_HSS_DISABLE |
  1042. COH901318_CX_CTRL_DDMA_LEGACY |
  1043. COH901318_CX_CTRL_PRDD_DEST,
  1044. .param.ctrl_lli_last = 0 |
  1045. COH901318_CX_CTRL_TC_ENABLE |
  1046. COH901318_CX_CTRL_BURST_COUNT_16_BYTES |
  1047. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  1048. COH901318_CX_CTRL_SRC_ADDR_INC_DISABLE |
  1049. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS |
  1050. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE |
  1051. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1052. COH901318_CX_CTRL_TCP_ENABLE |
  1053. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1054. COH901318_CX_CTRL_HSP_ENABLE |
  1055. COH901318_CX_CTRL_HSS_DISABLE |
  1056. COH901318_CX_CTRL_DDMA_LEGACY |
  1057. COH901318_CX_CTRL_PRDD_DEST,
  1058. },
  1059. {
  1060. .number = U300_DMA_XGAM_CDI,
  1061. .name = "XGAM CDI",
  1062. .priority_high = 0,
  1063. },
  1064. {
  1065. .number = U300_DMA_XGAM_PDI,
  1066. .name = "XGAM PDI",
  1067. .priority_high = 0,
  1068. },
  1069. /*
  1070. * Don't set up device address, burst count or size of src
  1071. * or dst bus for this peripheral - handled by PrimeCell
  1072. * DMA extension.
  1073. */
  1074. {
  1075. .number = U300_DMA_SPI_TX,
  1076. .name = "SPI TX",
  1077. .priority_high = 0,
  1078. .param.config = COH901318_CX_CFG_CH_DISABLE |
  1079. COH901318_CX_CFG_LCR_DISABLE |
  1080. COH901318_CX_CFG_TC_IRQ_ENABLE |
  1081. COH901318_CX_CFG_BE_IRQ_ENABLE,
  1082. .param.ctrl_lli_chained = 0 |
  1083. COH901318_CX_CTRL_TC_ENABLE |
  1084. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1085. COH901318_CX_CTRL_TCP_DISABLE |
  1086. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1087. COH901318_CX_CTRL_HSP_ENABLE |
  1088. COH901318_CX_CTRL_HSS_DISABLE |
  1089. COH901318_CX_CTRL_DDMA_LEGACY,
  1090. .param.ctrl_lli = 0 |
  1091. COH901318_CX_CTRL_TC_ENABLE |
  1092. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1093. COH901318_CX_CTRL_TCP_DISABLE |
  1094. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1095. COH901318_CX_CTRL_HSP_ENABLE |
  1096. COH901318_CX_CTRL_HSS_DISABLE |
  1097. COH901318_CX_CTRL_DDMA_LEGACY,
  1098. .param.ctrl_lli_last = 0 |
  1099. COH901318_CX_CTRL_TC_ENABLE |
  1100. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1101. COH901318_CX_CTRL_TCP_DISABLE |
  1102. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1103. COH901318_CX_CTRL_HSP_ENABLE |
  1104. COH901318_CX_CTRL_HSS_DISABLE |
  1105. COH901318_CX_CTRL_DDMA_LEGACY,
  1106. },
  1107. {
  1108. .number = U300_DMA_SPI_RX,
  1109. .name = "SPI RX",
  1110. .priority_high = 0,
  1111. .param.config = COH901318_CX_CFG_CH_DISABLE |
  1112. COH901318_CX_CFG_LCR_DISABLE |
  1113. COH901318_CX_CFG_TC_IRQ_ENABLE |
  1114. COH901318_CX_CFG_BE_IRQ_ENABLE,
  1115. .param.ctrl_lli_chained = 0 |
  1116. COH901318_CX_CTRL_TC_ENABLE |
  1117. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1118. COH901318_CX_CTRL_TCP_DISABLE |
  1119. COH901318_CX_CTRL_TC_IRQ_DISABLE |
  1120. COH901318_CX_CTRL_HSP_ENABLE |
  1121. COH901318_CX_CTRL_HSS_DISABLE |
  1122. COH901318_CX_CTRL_DDMA_LEGACY,
  1123. .param.ctrl_lli = 0 |
  1124. COH901318_CX_CTRL_TC_ENABLE |
  1125. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1126. COH901318_CX_CTRL_TCP_DISABLE |
  1127. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1128. COH901318_CX_CTRL_HSP_ENABLE |
  1129. COH901318_CX_CTRL_HSS_DISABLE |
  1130. COH901318_CX_CTRL_DDMA_LEGACY,
  1131. .param.ctrl_lli_last = 0 |
  1132. COH901318_CX_CTRL_TC_ENABLE |
  1133. COH901318_CX_CTRL_MASTER_MODE_M1RW |
  1134. COH901318_CX_CTRL_TCP_DISABLE |
  1135. COH901318_CX_CTRL_TC_IRQ_ENABLE |
  1136. COH901318_CX_CTRL_HSP_ENABLE |
  1137. COH901318_CX_CTRL_HSS_DISABLE |
  1138. COH901318_CX_CTRL_DDMA_LEGACY,
  1139. },
  1140. {
  1141. .number = U300_DMA_GENERAL_PURPOSE_0,
  1142. .name = "GENERAL 00",
  1143. .priority_high = 0,
  1144. .param.config = flags_memcpy_config,
  1145. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1146. .param.ctrl_lli = flags_memcpy_lli,
  1147. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1148. },
  1149. {
  1150. .number = U300_DMA_GENERAL_PURPOSE_1,
  1151. .name = "GENERAL 01",
  1152. .priority_high = 0,
  1153. .param.config = flags_memcpy_config,
  1154. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1155. .param.ctrl_lli = flags_memcpy_lli,
  1156. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1157. },
  1158. {
  1159. .number = U300_DMA_GENERAL_PURPOSE_2,
  1160. .name = "GENERAL 02",
  1161. .priority_high = 0,
  1162. .param.config = flags_memcpy_config,
  1163. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1164. .param.ctrl_lli = flags_memcpy_lli,
  1165. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1166. },
  1167. {
  1168. .number = U300_DMA_GENERAL_PURPOSE_3,
  1169. .name = "GENERAL 03",
  1170. .priority_high = 0,
  1171. .param.config = flags_memcpy_config,
  1172. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1173. .param.ctrl_lli = flags_memcpy_lli,
  1174. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1175. },
  1176. {
  1177. .number = U300_DMA_GENERAL_PURPOSE_4,
  1178. .name = "GENERAL 04",
  1179. .priority_high = 0,
  1180. .param.config = flags_memcpy_config,
  1181. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1182. .param.ctrl_lli = flags_memcpy_lli,
  1183. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1184. },
  1185. {
  1186. .number = U300_DMA_GENERAL_PURPOSE_5,
  1187. .name = "GENERAL 05",
  1188. .priority_high = 0,
  1189. .param.config = flags_memcpy_config,
  1190. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1191. .param.ctrl_lli = flags_memcpy_lli,
  1192. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1193. },
  1194. {
  1195. .number = U300_DMA_GENERAL_PURPOSE_6,
  1196. .name = "GENERAL 06",
  1197. .priority_high = 0,
  1198. .param.config = flags_memcpy_config,
  1199. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1200. .param.ctrl_lli = flags_memcpy_lli,
  1201. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1202. },
  1203. {
  1204. .number = U300_DMA_GENERAL_PURPOSE_7,
  1205. .name = "GENERAL 07",
  1206. .priority_high = 0,
  1207. .param.config = flags_memcpy_config,
  1208. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1209. .param.ctrl_lli = flags_memcpy_lli,
  1210. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1211. },
  1212. {
  1213. .number = U300_DMA_GENERAL_PURPOSE_8,
  1214. .name = "GENERAL 08",
  1215. .priority_high = 0,
  1216. .param.config = flags_memcpy_config,
  1217. .param.ctrl_lli_chained = flags_memcpy_lli_chained,
  1218. .param.ctrl_lli = flags_memcpy_lli,
  1219. .param.ctrl_lli_last = flags_memcpy_lli_last,
  1220. },
  1221. {
  1222. .number = U300_DMA_UART1_TX,
  1223. .name = "UART1 TX",
  1224. .priority_high = 0,
  1225. },
  1226. {
  1227. .number = U300_DMA_UART1_RX,
  1228. .name = "UART1 RX",
  1229. .priority_high = 0,
  1230. }
  1231. };
  1232. #define COHC_2_DEV(cohc) (&cohc->chan.dev->device)
  1233. #ifdef VERBOSE_DEBUG
  1234. #define COH_DBG(x) ({ if (1) x; 0; })
  1235. #else
  1236. #define COH_DBG(x) ({ if (0) x; 0; })
  1237. #endif
  1238. struct coh901318_desc {
  1239. struct dma_async_tx_descriptor desc;
  1240. struct list_head node;
  1241. struct scatterlist *sg;
  1242. unsigned int sg_len;
  1243. struct coh901318_lli *lli;
  1244. enum dma_transfer_direction dir;
  1245. unsigned long flags;
  1246. u32 head_config;
  1247. u32 head_ctrl;
  1248. };
  1249. struct coh901318_base {
  1250. struct device *dev;
  1251. void __iomem *virtbase;
  1252. unsigned int irq;
  1253. struct coh901318_pool pool;
  1254. struct powersave pm;
  1255. struct dma_device dma_slave;
  1256. struct dma_device dma_memcpy;
  1257. struct coh901318_chan *chans;
  1258. };
  1259. struct coh901318_chan {
  1260. spinlock_t lock;
  1261. int allocated;
  1262. int id;
  1263. int stopped;
  1264. struct work_struct free_work;
  1265. struct dma_chan chan;
  1266. struct tasklet_struct tasklet;
  1267. struct list_head active;
  1268. struct list_head queue;
  1269. struct list_head free;
  1270. unsigned long nbr_active_done;
  1271. unsigned long busy;
  1272. struct dma_slave_config config;
  1273. u32 addr;
  1274. u32 ctrl;
  1275. struct coh901318_base *base;
  1276. };
  1277. static void coh901318_list_print(struct coh901318_chan *cohc,
  1278. struct coh901318_lli *lli)
  1279. {
  1280. struct coh901318_lli *l = lli;
  1281. int i = 0;
  1282. while (l) {
  1283. dev_vdbg(COHC_2_DEV(cohc), "i %d, lli %p, ctrl 0x%x, src %pad"
  1284. ", dst %pad, link %pad virt_link_addr 0x%p\n",
  1285. i, l, l->control, &l->src_addr, &l->dst_addr,
  1286. &l->link_addr, l->virt_link_addr);
  1287. i++;
  1288. l = l->virt_link_addr;
  1289. }
  1290. }
  1291. #ifdef CONFIG_DEBUG_FS
  1292. #define COH901318_DEBUGFS_ASSIGN(x, y) (x = y)
  1293. static struct coh901318_base *debugfs_dma_base;
  1294. static struct dentry *dma_dentry;
  1295. static ssize_t coh901318_debugfs_read(struct file *file, char __user *buf,
  1296. size_t count, loff_t *f_pos)
  1297. {
  1298. u64 started_channels = debugfs_dma_base->pm.started_channels;
  1299. int pool_count = debugfs_dma_base->pool.debugfs_pool_counter;
  1300. char *dev_buf;
  1301. char *tmp;
  1302. int ret;
  1303. int i;
  1304. dev_buf = kmalloc(4*1024, GFP_KERNEL);
  1305. if (dev_buf == NULL)
  1306. return -ENOMEM;
  1307. tmp = dev_buf;
  1308. tmp += sprintf(tmp, "DMA -- enabled dma channels\n");
  1309. for (i = 0; i < U300_DMA_CHANNELS; i++) {
  1310. if (started_channels & (1ULL << i))
  1311. tmp += sprintf(tmp, "channel %d\n", i);
  1312. }
  1313. tmp += sprintf(tmp, "Pool alloc nbr %d\n", pool_count);
  1314. ret = simple_read_from_buffer(buf, count, f_pos, dev_buf,
  1315. tmp - dev_buf);
  1316. kfree(dev_buf);
  1317. return ret;
  1318. }
  1319. static const struct file_operations coh901318_debugfs_status_operations = {
  1320. .open = simple_open,
  1321. .read = coh901318_debugfs_read,
  1322. .llseek = default_llseek,
  1323. };
  1324. static int __init init_coh901318_debugfs(void)
  1325. {
  1326. dma_dentry = debugfs_create_dir("dma", NULL);
  1327. debugfs_create_file("status", S_IFREG | S_IRUGO, dma_dentry, NULL,
  1328. &coh901318_debugfs_status_operations);
  1329. return 0;
  1330. }
  1331. static void __exit exit_coh901318_debugfs(void)
  1332. {
  1333. debugfs_remove_recursive(dma_dentry);
  1334. }
  1335. module_init(init_coh901318_debugfs);
  1336. module_exit(exit_coh901318_debugfs);
  1337. #else
  1338. #define COH901318_DEBUGFS_ASSIGN(x, y)
  1339. #endif /* CONFIG_DEBUG_FS */
  1340. static inline struct coh901318_chan *to_coh901318_chan(struct dma_chan *chan)
  1341. {
  1342. return container_of(chan, struct coh901318_chan, chan);
  1343. }
  1344. static int coh901318_dma_set_runtimeconfig(struct dma_chan *chan,
  1345. struct dma_slave_config *config,
  1346. enum dma_transfer_direction direction);
  1347. static inline const struct coh901318_params *
  1348. cohc_chan_param(struct coh901318_chan *cohc)
  1349. {
  1350. return &chan_config[cohc->id].param;
  1351. }
  1352. static inline const struct coh_dma_channel *
  1353. cohc_chan_conf(struct coh901318_chan *cohc)
  1354. {
  1355. return &chan_config[cohc->id];
  1356. }
  1357. static void enable_powersave(struct coh901318_chan *cohc)
  1358. {
  1359. unsigned long flags;
  1360. struct powersave *pm = &cohc->base->pm;
  1361. spin_lock_irqsave(&pm->lock, flags);
  1362. pm->started_channels &= ~(1ULL << cohc->id);
  1363. spin_unlock_irqrestore(&pm->lock, flags);
  1364. }
  1365. static void disable_powersave(struct coh901318_chan *cohc)
  1366. {
  1367. unsigned long flags;
  1368. struct powersave *pm = &cohc->base->pm;
  1369. spin_lock_irqsave(&pm->lock, flags);
  1370. pm->started_channels |= (1ULL << cohc->id);
  1371. spin_unlock_irqrestore(&pm->lock, flags);
  1372. }
  1373. static inline int coh901318_set_ctrl(struct coh901318_chan *cohc, u32 control)
  1374. {
  1375. int channel = cohc->id;
  1376. void __iomem *virtbase = cohc->base->virtbase;
  1377. writel(control,
  1378. virtbase + COH901318_CX_CTRL +
  1379. COH901318_CX_CTRL_SPACING * channel);
  1380. return 0;
  1381. }
  1382. static inline int coh901318_set_conf(struct coh901318_chan *cohc, u32 conf)
  1383. {
  1384. int channel = cohc->id;
  1385. void __iomem *virtbase = cohc->base->virtbase;
  1386. writel(conf,
  1387. virtbase + COH901318_CX_CFG +
  1388. COH901318_CX_CFG_SPACING*channel);
  1389. return 0;
  1390. }
  1391. static int coh901318_start(struct coh901318_chan *cohc)
  1392. {
  1393. u32 val;
  1394. int channel = cohc->id;
  1395. void __iomem *virtbase = cohc->base->virtbase;
  1396. disable_powersave(cohc);
  1397. val = readl(virtbase + COH901318_CX_CFG +
  1398. COH901318_CX_CFG_SPACING * channel);
  1399. /* Enable channel */
  1400. val |= COH901318_CX_CFG_CH_ENABLE;
  1401. writel(val, virtbase + COH901318_CX_CFG +
  1402. COH901318_CX_CFG_SPACING * channel);
  1403. return 0;
  1404. }
  1405. static int coh901318_prep_linked_list(struct coh901318_chan *cohc,
  1406. struct coh901318_lli *lli)
  1407. {
  1408. int channel = cohc->id;
  1409. void __iomem *virtbase = cohc->base->virtbase;
  1410. BUG_ON(readl(virtbase + COH901318_CX_STAT +
  1411. COH901318_CX_STAT_SPACING*channel) &
  1412. COH901318_CX_STAT_ACTIVE);
  1413. writel(lli->src_addr,
  1414. virtbase + COH901318_CX_SRC_ADDR +
  1415. COH901318_CX_SRC_ADDR_SPACING * channel);
  1416. writel(lli->dst_addr, virtbase +
  1417. COH901318_CX_DST_ADDR +
  1418. COH901318_CX_DST_ADDR_SPACING * channel);
  1419. writel(lli->link_addr, virtbase + COH901318_CX_LNK_ADDR +
  1420. COH901318_CX_LNK_ADDR_SPACING * channel);
  1421. writel(lli->control, virtbase + COH901318_CX_CTRL +
  1422. COH901318_CX_CTRL_SPACING * channel);
  1423. return 0;
  1424. }
  1425. static struct coh901318_desc *
  1426. coh901318_desc_get(struct coh901318_chan *cohc)
  1427. {
  1428. struct coh901318_desc *desc;
  1429. if (list_empty(&cohc->free)) {
  1430. /* alloc new desc because we're out of used ones
  1431. * TODO: alloc a pile of descs instead of just one,
  1432. * avoid many small allocations.
  1433. */
  1434. desc = kzalloc(sizeof(struct coh901318_desc), GFP_NOWAIT);
  1435. if (desc == NULL)
  1436. goto out;
  1437. INIT_LIST_HEAD(&desc->node);
  1438. dma_async_tx_descriptor_init(&desc->desc, &cohc->chan);
  1439. } else {
  1440. /* Reuse an old desc. */
  1441. desc = list_first_entry(&cohc->free,
  1442. struct coh901318_desc,
  1443. node);
  1444. list_del(&desc->node);
  1445. /* Initialize it a bit so it's not insane */
  1446. desc->sg = NULL;
  1447. desc->sg_len = 0;
  1448. desc->desc.callback = NULL;
  1449. desc->desc.callback_param = NULL;
  1450. }
  1451. out:
  1452. return desc;
  1453. }
  1454. static void
  1455. coh901318_desc_free(struct coh901318_chan *cohc, struct coh901318_desc *cohd)
  1456. {
  1457. list_add_tail(&cohd->node, &cohc->free);
  1458. }
  1459. /* call with irq lock held */
  1460. static void
  1461. coh901318_desc_submit(struct coh901318_chan *cohc, struct coh901318_desc *desc)
  1462. {
  1463. list_add_tail(&desc->node, &cohc->active);
  1464. }
  1465. static struct coh901318_desc *
  1466. coh901318_first_active_get(struct coh901318_chan *cohc)
  1467. {
  1468. return list_first_entry_or_null(&cohc->active, struct coh901318_desc,
  1469. node);
  1470. }
  1471. static void
  1472. coh901318_desc_remove(struct coh901318_desc *cohd)
  1473. {
  1474. list_del(&cohd->node);
  1475. }
  1476. static void
  1477. coh901318_desc_queue(struct coh901318_chan *cohc, struct coh901318_desc *desc)
  1478. {
  1479. list_add_tail(&desc->node, &cohc->queue);
  1480. }
  1481. static struct coh901318_desc *
  1482. coh901318_first_queued(struct coh901318_chan *cohc)
  1483. {
  1484. return list_first_entry_or_null(&cohc->queue, struct coh901318_desc,
  1485. node);
  1486. }
  1487. static inline u32 coh901318_get_bytes_in_lli(struct coh901318_lli *in_lli)
  1488. {
  1489. struct coh901318_lli *lli = in_lli;
  1490. u32 bytes = 0;
  1491. while (lli) {
  1492. bytes += lli->control & COH901318_CX_CTRL_TC_VALUE_MASK;
  1493. lli = lli->virt_link_addr;
  1494. }
  1495. return bytes;
  1496. }
  1497. /*
  1498. * Get the number of bytes left to transfer on this channel,
  1499. * it is unwise to call this before stopping the channel for
  1500. * absolute measures, but for a rough guess you can still call
  1501. * it.
  1502. */
  1503. static u32 coh901318_get_bytes_left(struct dma_chan *chan)
  1504. {
  1505. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1506. struct coh901318_desc *cohd;
  1507. struct list_head *pos;
  1508. unsigned long flags;
  1509. u32 left = 0;
  1510. int i = 0;
  1511. spin_lock_irqsave(&cohc->lock, flags);
  1512. /*
  1513. * If there are many queued jobs, we iterate and add the
  1514. * size of them all. We take a special look on the first
  1515. * job though, since it is probably active.
  1516. */
  1517. list_for_each(pos, &cohc->active) {
  1518. /*
  1519. * The first job in the list will be working on the
  1520. * hardware. The job can be stopped but still active,
  1521. * so that the transfer counter is somewhere inside
  1522. * the buffer.
  1523. */
  1524. cohd = list_entry(pos, struct coh901318_desc, node);
  1525. if (i == 0) {
  1526. struct coh901318_lli *lli;
  1527. dma_addr_t ladd;
  1528. /* Read current transfer count value */
  1529. left = readl(cohc->base->virtbase +
  1530. COH901318_CX_CTRL +
  1531. COH901318_CX_CTRL_SPACING * cohc->id) &
  1532. COH901318_CX_CTRL_TC_VALUE_MASK;
  1533. /* See if the transfer is linked... */
  1534. ladd = readl(cohc->base->virtbase +
  1535. COH901318_CX_LNK_ADDR +
  1536. COH901318_CX_LNK_ADDR_SPACING *
  1537. cohc->id) &
  1538. ~COH901318_CX_LNK_LINK_IMMEDIATE;
  1539. /* Single transaction */
  1540. if (!ladd)
  1541. continue;
  1542. /*
  1543. * Linked transaction, follow the lli, find the
  1544. * currently processing lli, and proceed to the next
  1545. */
  1546. lli = cohd->lli;
  1547. while (lli && lli->link_addr != ladd)
  1548. lli = lli->virt_link_addr;
  1549. if (lli)
  1550. lli = lli->virt_link_addr;
  1551. /*
  1552. * Follow remaining lli links around to count the total
  1553. * number of bytes left
  1554. */
  1555. left += coh901318_get_bytes_in_lli(lli);
  1556. } else {
  1557. left += coh901318_get_bytes_in_lli(cohd->lli);
  1558. }
  1559. i++;
  1560. }
  1561. /* Also count bytes in the queued jobs */
  1562. list_for_each(pos, &cohc->queue) {
  1563. cohd = list_entry(pos, struct coh901318_desc, node);
  1564. left += coh901318_get_bytes_in_lli(cohd->lli);
  1565. }
  1566. spin_unlock_irqrestore(&cohc->lock, flags);
  1567. return left;
  1568. }
  1569. /*
  1570. * Pauses a transfer without losing data. Enables power save.
  1571. * Use this function in conjunction with coh901318_resume.
  1572. */
  1573. static int coh901318_pause(struct dma_chan *chan)
  1574. {
  1575. u32 val;
  1576. unsigned long flags;
  1577. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1578. int channel = cohc->id;
  1579. void __iomem *virtbase = cohc->base->virtbase;
  1580. spin_lock_irqsave(&cohc->lock, flags);
  1581. /* Disable channel in HW */
  1582. val = readl(virtbase + COH901318_CX_CFG +
  1583. COH901318_CX_CFG_SPACING * channel);
  1584. /* Stopping infinite transfer */
  1585. if ((val & COH901318_CX_CTRL_TC_ENABLE) == 0 &&
  1586. (val & COH901318_CX_CFG_CH_ENABLE))
  1587. cohc->stopped = 1;
  1588. val &= ~COH901318_CX_CFG_CH_ENABLE;
  1589. /* Enable twice, HW bug work around */
  1590. writel(val, virtbase + COH901318_CX_CFG +
  1591. COH901318_CX_CFG_SPACING * channel);
  1592. writel(val, virtbase + COH901318_CX_CFG +
  1593. COH901318_CX_CFG_SPACING * channel);
  1594. /* Spin-wait for it to actually go inactive */
  1595. while (readl(virtbase + COH901318_CX_STAT+COH901318_CX_STAT_SPACING *
  1596. channel) & COH901318_CX_STAT_ACTIVE)
  1597. cpu_relax();
  1598. /* Check if we stopped an active job */
  1599. if ((readl(virtbase + COH901318_CX_CTRL+COH901318_CX_CTRL_SPACING *
  1600. channel) & COH901318_CX_CTRL_TC_VALUE_MASK) > 0)
  1601. cohc->stopped = 1;
  1602. enable_powersave(cohc);
  1603. spin_unlock_irqrestore(&cohc->lock, flags);
  1604. return 0;
  1605. }
  1606. /* Resumes a transfer that has been stopped via 300_dma_stop(..).
  1607. Power save is handled.
  1608. */
  1609. static int coh901318_resume(struct dma_chan *chan)
  1610. {
  1611. u32 val;
  1612. unsigned long flags;
  1613. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1614. int channel = cohc->id;
  1615. spin_lock_irqsave(&cohc->lock, flags);
  1616. disable_powersave(cohc);
  1617. if (cohc->stopped) {
  1618. /* Enable channel in HW */
  1619. val = readl(cohc->base->virtbase + COH901318_CX_CFG +
  1620. COH901318_CX_CFG_SPACING * channel);
  1621. val |= COH901318_CX_CFG_CH_ENABLE;
  1622. writel(val, cohc->base->virtbase + COH901318_CX_CFG +
  1623. COH901318_CX_CFG_SPACING*channel);
  1624. cohc->stopped = 0;
  1625. }
  1626. spin_unlock_irqrestore(&cohc->lock, flags);
  1627. return 0;
  1628. }
  1629. bool coh901318_filter_id(struct dma_chan *chan, void *chan_id)
  1630. {
  1631. unsigned long ch_nr = (unsigned long) chan_id;
  1632. if (ch_nr == to_coh901318_chan(chan)->id)
  1633. return true;
  1634. return false;
  1635. }
  1636. EXPORT_SYMBOL(coh901318_filter_id);
  1637. struct coh901318_filter_args {
  1638. struct coh901318_base *base;
  1639. unsigned int ch_nr;
  1640. };
  1641. static bool coh901318_filter_base_and_id(struct dma_chan *chan, void *data)
  1642. {
  1643. struct coh901318_filter_args *args = data;
  1644. if (&args->base->dma_slave == chan->device &&
  1645. args->ch_nr == to_coh901318_chan(chan)->id)
  1646. return true;
  1647. return false;
  1648. }
  1649. static struct dma_chan *coh901318_xlate(struct of_phandle_args *dma_spec,
  1650. struct of_dma *ofdma)
  1651. {
  1652. struct coh901318_filter_args args = {
  1653. .base = ofdma->of_dma_data,
  1654. .ch_nr = dma_spec->args[0],
  1655. };
  1656. dma_cap_mask_t cap;
  1657. dma_cap_zero(cap);
  1658. dma_cap_set(DMA_SLAVE, cap);
  1659. return dma_request_channel(cap, coh901318_filter_base_and_id, &args);
  1660. }
  1661. /*
  1662. * DMA channel allocation
  1663. */
  1664. static int coh901318_config(struct coh901318_chan *cohc,
  1665. struct coh901318_params *param)
  1666. {
  1667. const struct coh901318_params *p;
  1668. int channel = cohc->id;
  1669. void __iomem *virtbase = cohc->base->virtbase;
  1670. if (param)
  1671. p = param;
  1672. else
  1673. p = cohc_chan_param(cohc);
  1674. /* Clear any pending BE or TC interrupt */
  1675. if (channel < 32) {
  1676. writel(1 << channel, virtbase + COH901318_BE_INT_CLEAR1);
  1677. writel(1 << channel, virtbase + COH901318_TC_INT_CLEAR1);
  1678. } else {
  1679. writel(1 << (channel - 32), virtbase +
  1680. COH901318_BE_INT_CLEAR2);
  1681. writel(1 << (channel - 32), virtbase +
  1682. COH901318_TC_INT_CLEAR2);
  1683. }
  1684. coh901318_set_conf(cohc, p->config);
  1685. coh901318_set_ctrl(cohc, p->ctrl_lli_last);
  1686. return 0;
  1687. }
  1688. /* must lock when calling this function
  1689. * start queued jobs, if any
  1690. * TODO: start all queued jobs in one go
  1691. *
  1692. * Returns descriptor if queued job is started otherwise NULL.
  1693. * If the queue is empty NULL is returned.
  1694. */
  1695. static struct coh901318_desc *coh901318_queue_start(struct coh901318_chan *cohc)
  1696. {
  1697. struct coh901318_desc *cohd;
  1698. /*
  1699. * start queued jobs, if any
  1700. * TODO: transmit all queued jobs in one go
  1701. */
  1702. cohd = coh901318_first_queued(cohc);
  1703. if (cohd != NULL) {
  1704. /* Remove from queue */
  1705. coh901318_desc_remove(cohd);
  1706. /* initiate DMA job */
  1707. cohc->busy = 1;
  1708. coh901318_desc_submit(cohc, cohd);
  1709. /* Program the transaction head */
  1710. coh901318_set_conf(cohc, cohd->head_config);
  1711. coh901318_set_ctrl(cohc, cohd->head_ctrl);
  1712. coh901318_prep_linked_list(cohc, cohd->lli);
  1713. /* start dma job on this channel */
  1714. coh901318_start(cohc);
  1715. }
  1716. return cohd;
  1717. }
  1718. /*
  1719. * This tasklet is called from the interrupt handler to
  1720. * handle each descriptor (DMA job) that is sent to a channel.
  1721. */
  1722. static void dma_tasklet(unsigned long data)
  1723. {
  1724. struct coh901318_chan *cohc = (struct coh901318_chan *) data;
  1725. struct coh901318_desc *cohd_fin;
  1726. unsigned long flags;
  1727. struct dmaengine_desc_callback cb;
  1728. dev_vdbg(COHC_2_DEV(cohc), "[%s] chan_id %d"
  1729. " nbr_active_done %ld\n", __func__,
  1730. cohc->id, cohc->nbr_active_done);
  1731. spin_lock_irqsave(&cohc->lock, flags);
  1732. /* get first active descriptor entry from list */
  1733. cohd_fin = coh901318_first_active_get(cohc);
  1734. if (cohd_fin == NULL)
  1735. goto err;
  1736. /* locate callback to client */
  1737. dmaengine_desc_get_callback(&cohd_fin->desc, &cb);
  1738. /* sign this job as completed on the channel */
  1739. dma_cookie_complete(&cohd_fin->desc);
  1740. /* release the lli allocation and remove the descriptor */
  1741. coh901318_lli_free(&cohc->base->pool, &cohd_fin->lli);
  1742. /* return desc to free-list */
  1743. coh901318_desc_remove(cohd_fin);
  1744. coh901318_desc_free(cohc, cohd_fin);
  1745. spin_unlock_irqrestore(&cohc->lock, flags);
  1746. /* Call the callback when we're done */
  1747. dmaengine_desc_callback_invoke(&cb, NULL);
  1748. spin_lock_irqsave(&cohc->lock, flags);
  1749. /*
  1750. * If another interrupt fired while the tasklet was scheduling,
  1751. * we don't get called twice, so we have this number of active
  1752. * counter that keep track of the number of IRQs expected to
  1753. * be handled for this channel. If there happen to be more than
  1754. * one IRQ to be ack:ed, we simply schedule this tasklet again.
  1755. */
  1756. cohc->nbr_active_done--;
  1757. if (cohc->nbr_active_done) {
  1758. dev_dbg(COHC_2_DEV(cohc), "scheduling tasklet again, new IRQs "
  1759. "came in while we were scheduling this tasklet\n");
  1760. if (cohc_chan_conf(cohc)->priority_high)
  1761. tasklet_hi_schedule(&cohc->tasklet);
  1762. else
  1763. tasklet_schedule(&cohc->tasklet);
  1764. }
  1765. spin_unlock_irqrestore(&cohc->lock, flags);
  1766. return;
  1767. err:
  1768. spin_unlock_irqrestore(&cohc->lock, flags);
  1769. dev_err(COHC_2_DEV(cohc), "[%s] No active dma desc\n", __func__);
  1770. }
  1771. /* called from interrupt context */
  1772. static void dma_tc_handle(struct coh901318_chan *cohc)
  1773. {
  1774. /*
  1775. * If the channel is not allocated, then we shouldn't have
  1776. * any TC interrupts on it.
  1777. */
  1778. if (!cohc->allocated) {
  1779. dev_err(COHC_2_DEV(cohc), "spurious interrupt from "
  1780. "unallocated channel\n");
  1781. return;
  1782. }
  1783. /*
  1784. * When we reach this point, at least one queue item
  1785. * should have been moved over from cohc->queue to
  1786. * cohc->active and run to completion, that is why we're
  1787. * getting a terminal count interrupt is it not?
  1788. * If you get this BUG() the most probable cause is that
  1789. * the individual nodes in the lli chain have IRQ enabled,
  1790. * so check your platform config for lli chain ctrl.
  1791. */
  1792. BUG_ON(list_empty(&cohc->active));
  1793. cohc->nbr_active_done++;
  1794. /*
  1795. * This attempt to take a job from cohc->queue, put it
  1796. * into cohc->active and start it.
  1797. */
  1798. if (coh901318_queue_start(cohc) == NULL)
  1799. cohc->busy = 0;
  1800. /*
  1801. * This tasklet will remove items from cohc->active
  1802. * and thus terminates them.
  1803. */
  1804. if (cohc_chan_conf(cohc)->priority_high)
  1805. tasklet_hi_schedule(&cohc->tasklet);
  1806. else
  1807. tasklet_schedule(&cohc->tasklet);
  1808. }
  1809. static irqreturn_t dma_irq_handler(int irq, void *dev_id)
  1810. {
  1811. u32 status1;
  1812. u32 status2;
  1813. int i;
  1814. int ch;
  1815. struct coh901318_base *base = dev_id;
  1816. struct coh901318_chan *cohc;
  1817. void __iomem *virtbase = base->virtbase;
  1818. status1 = readl(virtbase + COH901318_INT_STATUS1);
  1819. status2 = readl(virtbase + COH901318_INT_STATUS2);
  1820. if (unlikely(status1 == 0 && status2 == 0)) {
  1821. dev_warn(base->dev, "spurious DMA IRQ from no channel!\n");
  1822. return IRQ_HANDLED;
  1823. }
  1824. /* TODO: consider handle IRQ in tasklet here to
  1825. * minimize interrupt latency */
  1826. /* Check the first 32 DMA channels for IRQ */
  1827. while (status1) {
  1828. /* Find first bit set, return as a number. */
  1829. i = ffs(status1) - 1;
  1830. ch = i;
  1831. cohc = &base->chans[ch];
  1832. spin_lock(&cohc->lock);
  1833. /* Mask off this bit */
  1834. status1 &= ~(1 << i);
  1835. /* Check the individual channel bits */
  1836. if (test_bit(i, virtbase + COH901318_BE_INT_STATUS1)) {
  1837. dev_crit(COHC_2_DEV(cohc),
  1838. "DMA bus error on channel %d!\n", ch);
  1839. BUG_ON(1);
  1840. /* Clear BE interrupt */
  1841. __set_bit(i, virtbase + COH901318_BE_INT_CLEAR1);
  1842. } else {
  1843. /* Caused by TC, really? */
  1844. if (unlikely(!test_bit(i, virtbase +
  1845. COH901318_TC_INT_STATUS1))) {
  1846. dev_warn(COHC_2_DEV(cohc),
  1847. "ignoring interrupt not caused by terminal count on channel %d\n", ch);
  1848. /* Clear TC interrupt */
  1849. BUG_ON(1);
  1850. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR1);
  1851. } else {
  1852. /* Enable powersave if transfer has finished */
  1853. if (!(readl(virtbase + COH901318_CX_STAT +
  1854. COH901318_CX_STAT_SPACING*ch) &
  1855. COH901318_CX_STAT_ENABLED)) {
  1856. enable_powersave(cohc);
  1857. }
  1858. /* Must clear TC interrupt before calling
  1859. * dma_tc_handle
  1860. * in case tc_handle initiate a new dma job
  1861. */
  1862. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR1);
  1863. dma_tc_handle(cohc);
  1864. }
  1865. }
  1866. spin_unlock(&cohc->lock);
  1867. }
  1868. /* Check the remaining 32 DMA channels for IRQ */
  1869. while (status2) {
  1870. /* Find first bit set, return as a number. */
  1871. i = ffs(status2) - 1;
  1872. ch = i + 32;
  1873. cohc = &base->chans[ch];
  1874. spin_lock(&cohc->lock);
  1875. /* Mask off this bit */
  1876. status2 &= ~(1 << i);
  1877. /* Check the individual channel bits */
  1878. if (test_bit(i, virtbase + COH901318_BE_INT_STATUS2)) {
  1879. dev_crit(COHC_2_DEV(cohc),
  1880. "DMA bus error on channel %d!\n", ch);
  1881. /* Clear BE interrupt */
  1882. BUG_ON(1);
  1883. __set_bit(i, virtbase + COH901318_BE_INT_CLEAR2);
  1884. } else {
  1885. /* Caused by TC, really? */
  1886. if (unlikely(!test_bit(i, virtbase +
  1887. COH901318_TC_INT_STATUS2))) {
  1888. dev_warn(COHC_2_DEV(cohc),
  1889. "ignoring interrupt not caused by terminal count on channel %d\n", ch);
  1890. /* Clear TC interrupt */
  1891. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR2);
  1892. BUG_ON(1);
  1893. } else {
  1894. /* Enable powersave if transfer has finished */
  1895. if (!(readl(virtbase + COH901318_CX_STAT +
  1896. COH901318_CX_STAT_SPACING*ch) &
  1897. COH901318_CX_STAT_ENABLED)) {
  1898. enable_powersave(cohc);
  1899. }
  1900. /* Must clear TC interrupt before calling
  1901. * dma_tc_handle
  1902. * in case tc_handle initiate a new dma job
  1903. */
  1904. __set_bit(i, virtbase + COH901318_TC_INT_CLEAR2);
  1905. dma_tc_handle(cohc);
  1906. }
  1907. }
  1908. spin_unlock(&cohc->lock);
  1909. }
  1910. return IRQ_HANDLED;
  1911. }
  1912. static int coh901318_terminate_all(struct dma_chan *chan)
  1913. {
  1914. unsigned long flags;
  1915. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1916. struct coh901318_desc *cohd;
  1917. void __iomem *virtbase = cohc->base->virtbase;
  1918. /* The remainder of this function terminates the transfer */
  1919. coh901318_pause(chan);
  1920. spin_lock_irqsave(&cohc->lock, flags);
  1921. /* Clear any pending BE or TC interrupt */
  1922. if (cohc->id < 32) {
  1923. writel(1 << cohc->id, virtbase + COH901318_BE_INT_CLEAR1);
  1924. writel(1 << cohc->id, virtbase + COH901318_TC_INT_CLEAR1);
  1925. } else {
  1926. writel(1 << (cohc->id - 32), virtbase +
  1927. COH901318_BE_INT_CLEAR2);
  1928. writel(1 << (cohc->id - 32), virtbase +
  1929. COH901318_TC_INT_CLEAR2);
  1930. }
  1931. enable_powersave(cohc);
  1932. while ((cohd = coh901318_first_active_get(cohc))) {
  1933. /* release the lli allocation*/
  1934. coh901318_lli_free(&cohc->base->pool, &cohd->lli);
  1935. /* return desc to free-list */
  1936. coh901318_desc_remove(cohd);
  1937. coh901318_desc_free(cohc, cohd);
  1938. }
  1939. while ((cohd = coh901318_first_queued(cohc))) {
  1940. /* release the lli allocation*/
  1941. coh901318_lli_free(&cohc->base->pool, &cohd->lli);
  1942. /* return desc to free-list */
  1943. coh901318_desc_remove(cohd);
  1944. coh901318_desc_free(cohc, cohd);
  1945. }
  1946. cohc->nbr_active_done = 0;
  1947. cohc->busy = 0;
  1948. spin_unlock_irqrestore(&cohc->lock, flags);
  1949. return 0;
  1950. }
  1951. static int coh901318_alloc_chan_resources(struct dma_chan *chan)
  1952. {
  1953. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1954. unsigned long flags;
  1955. dev_vdbg(COHC_2_DEV(cohc), "[%s] DMA channel %d\n",
  1956. __func__, cohc->id);
  1957. if (chan->client_count > 1)
  1958. return -EBUSY;
  1959. spin_lock_irqsave(&cohc->lock, flags);
  1960. coh901318_config(cohc, NULL);
  1961. cohc->allocated = 1;
  1962. dma_cookie_init(chan);
  1963. spin_unlock_irqrestore(&cohc->lock, flags);
  1964. return 1;
  1965. }
  1966. static void
  1967. coh901318_free_chan_resources(struct dma_chan *chan)
  1968. {
  1969. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  1970. int channel = cohc->id;
  1971. unsigned long flags;
  1972. spin_lock_irqsave(&cohc->lock, flags);
  1973. /* Disable HW */
  1974. writel(0x00000000U, cohc->base->virtbase + COH901318_CX_CFG +
  1975. COH901318_CX_CFG_SPACING*channel);
  1976. writel(0x00000000U, cohc->base->virtbase + COH901318_CX_CTRL +
  1977. COH901318_CX_CTRL_SPACING*channel);
  1978. cohc->allocated = 0;
  1979. spin_unlock_irqrestore(&cohc->lock, flags);
  1980. coh901318_terminate_all(chan);
  1981. }
  1982. static dma_cookie_t
  1983. coh901318_tx_submit(struct dma_async_tx_descriptor *tx)
  1984. {
  1985. struct coh901318_desc *cohd = container_of(tx, struct coh901318_desc,
  1986. desc);
  1987. struct coh901318_chan *cohc = to_coh901318_chan(tx->chan);
  1988. unsigned long flags;
  1989. dma_cookie_t cookie;
  1990. spin_lock_irqsave(&cohc->lock, flags);
  1991. cookie = dma_cookie_assign(tx);
  1992. coh901318_desc_queue(cohc, cohd);
  1993. spin_unlock_irqrestore(&cohc->lock, flags);
  1994. return cookie;
  1995. }
  1996. static struct dma_async_tx_descriptor *
  1997. coh901318_prep_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
  1998. size_t size, unsigned long flags)
  1999. {
  2000. struct coh901318_lli *lli;
  2001. struct coh901318_desc *cohd;
  2002. unsigned long flg;
  2003. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2004. int lli_len;
  2005. u32 ctrl_last = cohc_chan_param(cohc)->ctrl_lli_last;
  2006. int ret;
  2007. spin_lock_irqsave(&cohc->lock, flg);
  2008. dev_vdbg(COHC_2_DEV(cohc),
  2009. "[%s] channel %d src %pad dest %pad size %zu\n",
  2010. __func__, cohc->id, &src, &dest, size);
  2011. if (flags & DMA_PREP_INTERRUPT)
  2012. /* Trigger interrupt after last lli */
  2013. ctrl_last |= COH901318_CX_CTRL_TC_IRQ_ENABLE;
  2014. lli_len = size >> MAX_DMA_PACKET_SIZE_SHIFT;
  2015. if ((lli_len << MAX_DMA_PACKET_SIZE_SHIFT) < size)
  2016. lli_len++;
  2017. lli = coh901318_lli_alloc(&cohc->base->pool, lli_len);
  2018. if (lli == NULL)
  2019. goto err;
  2020. ret = coh901318_lli_fill_memcpy(
  2021. &cohc->base->pool, lli, src, size, dest,
  2022. cohc_chan_param(cohc)->ctrl_lli_chained,
  2023. ctrl_last);
  2024. if (ret)
  2025. goto err;
  2026. COH_DBG(coh901318_list_print(cohc, lli));
  2027. /* Pick a descriptor to handle this transfer */
  2028. cohd = coh901318_desc_get(cohc);
  2029. cohd->lli = lli;
  2030. cohd->flags = flags;
  2031. cohd->desc.tx_submit = coh901318_tx_submit;
  2032. spin_unlock_irqrestore(&cohc->lock, flg);
  2033. return &cohd->desc;
  2034. err:
  2035. spin_unlock_irqrestore(&cohc->lock, flg);
  2036. return NULL;
  2037. }
  2038. static struct dma_async_tx_descriptor *
  2039. coh901318_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
  2040. unsigned int sg_len, enum dma_transfer_direction direction,
  2041. unsigned long flags, void *context)
  2042. {
  2043. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2044. struct coh901318_lli *lli;
  2045. struct coh901318_desc *cohd;
  2046. const struct coh901318_params *params;
  2047. struct scatterlist *sg;
  2048. int len = 0;
  2049. int size;
  2050. int i;
  2051. u32 ctrl_chained = cohc_chan_param(cohc)->ctrl_lli_chained;
  2052. u32 ctrl = cohc_chan_param(cohc)->ctrl_lli;
  2053. u32 ctrl_last = cohc_chan_param(cohc)->ctrl_lli_last;
  2054. u32 config;
  2055. unsigned long flg;
  2056. int ret;
  2057. if (!sgl)
  2058. goto out;
  2059. if (sg_dma_len(sgl) == 0)
  2060. goto out;
  2061. spin_lock_irqsave(&cohc->lock, flg);
  2062. dev_vdbg(COHC_2_DEV(cohc), "[%s] sg_len %d dir %d\n",
  2063. __func__, sg_len, direction);
  2064. if (flags & DMA_PREP_INTERRUPT)
  2065. /* Trigger interrupt after last lli */
  2066. ctrl_last |= COH901318_CX_CTRL_TC_IRQ_ENABLE;
  2067. params = cohc_chan_param(cohc);
  2068. config = params->config;
  2069. /*
  2070. * Add runtime-specific control on top, make
  2071. * sure the bits you set per peripheral channel are
  2072. * cleared in the default config from the platform.
  2073. */
  2074. ctrl_chained |= cohc->ctrl;
  2075. ctrl_last |= cohc->ctrl;
  2076. ctrl |= cohc->ctrl;
  2077. if (direction == DMA_MEM_TO_DEV) {
  2078. u32 tx_flags = COH901318_CX_CTRL_PRDD_SOURCE |
  2079. COH901318_CX_CTRL_SRC_ADDR_INC_ENABLE;
  2080. config |= COH901318_CX_CFG_RM_MEMORY_TO_PRIMARY;
  2081. ctrl_chained |= tx_flags;
  2082. ctrl_last |= tx_flags;
  2083. ctrl |= tx_flags;
  2084. } else if (direction == DMA_DEV_TO_MEM) {
  2085. u32 rx_flags = COH901318_CX_CTRL_PRDD_DEST |
  2086. COH901318_CX_CTRL_DST_ADDR_INC_ENABLE;
  2087. config |= COH901318_CX_CFG_RM_PRIMARY_TO_MEMORY;
  2088. ctrl_chained |= rx_flags;
  2089. ctrl_last |= rx_flags;
  2090. ctrl |= rx_flags;
  2091. } else
  2092. goto err_direction;
  2093. /* The dma only supports transmitting packages up to
  2094. * MAX_DMA_PACKET_SIZE. Calculate to total number of
  2095. * dma elemts required to send the entire sg list
  2096. */
  2097. for_each_sg(sgl, sg, sg_len, i) {
  2098. unsigned int factor;
  2099. size = sg_dma_len(sg);
  2100. if (size <= MAX_DMA_PACKET_SIZE) {
  2101. len++;
  2102. continue;
  2103. }
  2104. factor = size >> MAX_DMA_PACKET_SIZE_SHIFT;
  2105. if ((factor << MAX_DMA_PACKET_SIZE_SHIFT) < size)
  2106. factor++;
  2107. len += factor;
  2108. }
  2109. pr_debug("Allocate %d lli:s for this transfer\n", len);
  2110. lli = coh901318_lli_alloc(&cohc->base->pool, len);
  2111. if (lli == NULL)
  2112. goto err_dma_alloc;
  2113. coh901318_dma_set_runtimeconfig(chan, &cohc->config, direction);
  2114. /* initiate allocated lli list */
  2115. ret = coh901318_lli_fill_sg(&cohc->base->pool, lli, sgl, sg_len,
  2116. cohc->addr,
  2117. ctrl_chained,
  2118. ctrl,
  2119. ctrl_last,
  2120. direction, COH901318_CX_CTRL_TC_IRQ_ENABLE);
  2121. if (ret)
  2122. goto err_lli_fill;
  2123. COH_DBG(coh901318_list_print(cohc, lli));
  2124. /* Pick a descriptor to handle this transfer */
  2125. cohd = coh901318_desc_get(cohc);
  2126. cohd->head_config = config;
  2127. /*
  2128. * Set the default head ctrl for the channel to the one from the
  2129. * lli, things may have changed due to odd buffer alignment
  2130. * etc.
  2131. */
  2132. cohd->head_ctrl = lli->control;
  2133. cohd->dir = direction;
  2134. cohd->flags = flags;
  2135. cohd->desc.tx_submit = coh901318_tx_submit;
  2136. cohd->lli = lli;
  2137. spin_unlock_irqrestore(&cohc->lock, flg);
  2138. return &cohd->desc;
  2139. err_lli_fill:
  2140. err_dma_alloc:
  2141. err_direction:
  2142. spin_unlock_irqrestore(&cohc->lock, flg);
  2143. out:
  2144. return NULL;
  2145. }
  2146. static enum dma_status
  2147. coh901318_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
  2148. struct dma_tx_state *txstate)
  2149. {
  2150. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2151. enum dma_status ret;
  2152. ret = dma_cookie_status(chan, cookie, txstate);
  2153. if (ret == DMA_COMPLETE || !txstate)
  2154. return ret;
  2155. dma_set_residue(txstate, coh901318_get_bytes_left(chan));
  2156. if (ret == DMA_IN_PROGRESS && cohc->stopped)
  2157. ret = DMA_PAUSED;
  2158. return ret;
  2159. }
  2160. static void
  2161. coh901318_issue_pending(struct dma_chan *chan)
  2162. {
  2163. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2164. unsigned long flags;
  2165. spin_lock_irqsave(&cohc->lock, flags);
  2166. /*
  2167. * Busy means that pending jobs are already being processed,
  2168. * and then there is no point in starting the queue: the
  2169. * terminal count interrupt on the channel will take the next
  2170. * job on the queue and execute it anyway.
  2171. */
  2172. if (!cohc->busy)
  2173. coh901318_queue_start(cohc);
  2174. spin_unlock_irqrestore(&cohc->lock, flags);
  2175. }
  2176. /*
  2177. * Here we wrap in the runtime dma control interface
  2178. */
  2179. struct burst_table {
  2180. int burst_8bit;
  2181. int burst_16bit;
  2182. int burst_32bit;
  2183. u32 reg;
  2184. };
  2185. static const struct burst_table burst_sizes[] = {
  2186. {
  2187. .burst_8bit = 64,
  2188. .burst_16bit = 32,
  2189. .burst_32bit = 16,
  2190. .reg = COH901318_CX_CTRL_BURST_COUNT_64_BYTES,
  2191. },
  2192. {
  2193. .burst_8bit = 48,
  2194. .burst_16bit = 24,
  2195. .burst_32bit = 12,
  2196. .reg = COH901318_CX_CTRL_BURST_COUNT_48_BYTES,
  2197. },
  2198. {
  2199. .burst_8bit = 32,
  2200. .burst_16bit = 16,
  2201. .burst_32bit = 8,
  2202. .reg = COH901318_CX_CTRL_BURST_COUNT_32_BYTES,
  2203. },
  2204. {
  2205. .burst_8bit = 16,
  2206. .burst_16bit = 8,
  2207. .burst_32bit = 4,
  2208. .reg = COH901318_CX_CTRL_BURST_COUNT_16_BYTES,
  2209. },
  2210. {
  2211. .burst_8bit = 8,
  2212. .burst_16bit = 4,
  2213. .burst_32bit = 2,
  2214. .reg = COH901318_CX_CTRL_BURST_COUNT_8_BYTES,
  2215. },
  2216. {
  2217. .burst_8bit = 4,
  2218. .burst_16bit = 2,
  2219. .burst_32bit = 1,
  2220. .reg = COH901318_CX_CTRL_BURST_COUNT_4_BYTES,
  2221. },
  2222. {
  2223. .burst_8bit = 2,
  2224. .burst_16bit = 1,
  2225. .burst_32bit = 0,
  2226. .reg = COH901318_CX_CTRL_BURST_COUNT_2_BYTES,
  2227. },
  2228. {
  2229. .burst_8bit = 1,
  2230. .burst_16bit = 0,
  2231. .burst_32bit = 0,
  2232. .reg = COH901318_CX_CTRL_BURST_COUNT_1_BYTE,
  2233. },
  2234. };
  2235. static int coh901318_dma_set_runtimeconfig(struct dma_chan *chan,
  2236. struct dma_slave_config *config,
  2237. enum dma_transfer_direction direction)
  2238. {
  2239. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2240. dma_addr_t addr;
  2241. enum dma_slave_buswidth addr_width;
  2242. u32 maxburst;
  2243. u32 ctrl = 0;
  2244. int i = 0;
  2245. /* We only support mem to per or per to mem transfers */
  2246. if (direction == DMA_DEV_TO_MEM) {
  2247. addr = config->src_addr;
  2248. addr_width = config->src_addr_width;
  2249. maxburst = config->src_maxburst;
  2250. } else if (direction == DMA_MEM_TO_DEV) {
  2251. addr = config->dst_addr;
  2252. addr_width = config->dst_addr_width;
  2253. maxburst = config->dst_maxburst;
  2254. } else {
  2255. dev_err(COHC_2_DEV(cohc), "illegal channel mode\n");
  2256. return -EINVAL;
  2257. }
  2258. dev_dbg(COHC_2_DEV(cohc), "configure channel for %d byte transfers\n",
  2259. addr_width);
  2260. switch (addr_width) {
  2261. case DMA_SLAVE_BUSWIDTH_1_BYTE:
  2262. ctrl |=
  2263. COH901318_CX_CTRL_SRC_BUS_SIZE_8_BITS |
  2264. COH901318_CX_CTRL_DST_BUS_SIZE_8_BITS;
  2265. while (i < ARRAY_SIZE(burst_sizes)) {
  2266. if (burst_sizes[i].burst_8bit <= maxburst)
  2267. break;
  2268. i++;
  2269. }
  2270. break;
  2271. case DMA_SLAVE_BUSWIDTH_2_BYTES:
  2272. ctrl |=
  2273. COH901318_CX_CTRL_SRC_BUS_SIZE_16_BITS |
  2274. COH901318_CX_CTRL_DST_BUS_SIZE_16_BITS;
  2275. while (i < ARRAY_SIZE(burst_sizes)) {
  2276. if (burst_sizes[i].burst_16bit <= maxburst)
  2277. break;
  2278. i++;
  2279. }
  2280. break;
  2281. case DMA_SLAVE_BUSWIDTH_4_BYTES:
  2282. /* Direction doesn't matter here, it's 32/32 bits */
  2283. ctrl |=
  2284. COH901318_CX_CTRL_SRC_BUS_SIZE_32_BITS |
  2285. COH901318_CX_CTRL_DST_BUS_SIZE_32_BITS;
  2286. while (i < ARRAY_SIZE(burst_sizes)) {
  2287. if (burst_sizes[i].burst_32bit <= maxburst)
  2288. break;
  2289. i++;
  2290. }
  2291. break;
  2292. default:
  2293. dev_err(COHC_2_DEV(cohc),
  2294. "bad runtimeconfig: alien address width\n");
  2295. return -EINVAL;
  2296. }
  2297. ctrl |= burst_sizes[i].reg;
  2298. dev_dbg(COHC_2_DEV(cohc),
  2299. "selected burst size %d bytes for address width %d bytes, maxburst %d\n",
  2300. burst_sizes[i].burst_8bit, addr_width, maxburst);
  2301. cohc->addr = addr;
  2302. cohc->ctrl = ctrl;
  2303. return 0;
  2304. }
  2305. static int coh901318_dma_slave_config(struct dma_chan *chan,
  2306. struct dma_slave_config *config)
  2307. {
  2308. struct coh901318_chan *cohc = to_coh901318_chan(chan);
  2309. memcpy(&cohc->config, config, sizeof(*config));
  2310. return 0;
  2311. }
  2312. static void coh901318_base_init(struct dma_device *dma, const int *pick_chans,
  2313. struct coh901318_base *base)
  2314. {
  2315. int chans_i;
  2316. int i = 0;
  2317. struct coh901318_chan *cohc;
  2318. INIT_LIST_HEAD(&dma->channels);
  2319. for (chans_i = 0; pick_chans[chans_i] != -1; chans_i += 2) {
  2320. for (i = pick_chans[chans_i]; i <= pick_chans[chans_i+1]; i++) {
  2321. cohc = &base->chans[i];
  2322. cohc->base = base;
  2323. cohc->chan.device = dma;
  2324. cohc->id = i;
  2325. /* TODO: do we really need this lock if only one
  2326. * client is connected to each channel?
  2327. */
  2328. spin_lock_init(&cohc->lock);
  2329. cohc->nbr_active_done = 0;
  2330. cohc->busy = 0;
  2331. INIT_LIST_HEAD(&cohc->free);
  2332. INIT_LIST_HEAD(&cohc->active);
  2333. INIT_LIST_HEAD(&cohc->queue);
  2334. tasklet_init(&cohc->tasklet, dma_tasklet,
  2335. (unsigned long) cohc);
  2336. list_add_tail(&cohc->chan.device_node,
  2337. &dma->channels);
  2338. }
  2339. }
  2340. }
  2341. static int __init coh901318_probe(struct platform_device *pdev)
  2342. {
  2343. int err = 0;
  2344. struct coh901318_base *base;
  2345. int irq;
  2346. struct resource *io;
  2347. io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  2348. if (!io)
  2349. return -ENODEV;
  2350. /* Map DMA controller registers to virtual memory */
  2351. if (devm_request_mem_region(&pdev->dev,
  2352. io->start,
  2353. resource_size(io),
  2354. pdev->dev.driver->name) == NULL)
  2355. return -ENOMEM;
  2356. base = devm_kzalloc(&pdev->dev,
  2357. ALIGN(sizeof(struct coh901318_base), 4) +
  2358. U300_DMA_CHANNELS *
  2359. sizeof(struct coh901318_chan),
  2360. GFP_KERNEL);
  2361. if (!base)
  2362. return -ENOMEM;
  2363. base->chans = ((void *)base) + ALIGN(sizeof(struct coh901318_base), 4);
  2364. base->virtbase = devm_ioremap(&pdev->dev, io->start, resource_size(io));
  2365. if (!base->virtbase)
  2366. return -ENOMEM;
  2367. base->dev = &pdev->dev;
  2368. spin_lock_init(&base->pm.lock);
  2369. base->pm.started_channels = 0;
  2370. COH901318_DEBUGFS_ASSIGN(debugfs_dma_base, base);
  2371. irq = platform_get_irq(pdev, 0);
  2372. if (irq < 0)
  2373. return irq;
  2374. err = devm_request_irq(&pdev->dev, irq, dma_irq_handler, 0,
  2375. "coh901318", base);
  2376. if (err)
  2377. return err;
  2378. base->irq = irq;
  2379. err = coh901318_pool_create(&base->pool, &pdev->dev,
  2380. sizeof(struct coh901318_lli),
  2381. 32);
  2382. if (err)
  2383. return err;
  2384. /* init channels for device transfers */
  2385. coh901318_base_init(&base->dma_slave, dma_slave_channels,
  2386. base);
  2387. dma_cap_zero(base->dma_slave.cap_mask);
  2388. dma_cap_set(DMA_SLAVE, base->dma_slave.cap_mask);
  2389. base->dma_slave.device_alloc_chan_resources = coh901318_alloc_chan_resources;
  2390. base->dma_slave.device_free_chan_resources = coh901318_free_chan_resources;
  2391. base->dma_slave.device_prep_slave_sg = coh901318_prep_slave_sg;
  2392. base->dma_slave.device_tx_status = coh901318_tx_status;
  2393. base->dma_slave.device_issue_pending = coh901318_issue_pending;
  2394. base->dma_slave.device_config = coh901318_dma_slave_config;
  2395. base->dma_slave.device_pause = coh901318_pause;
  2396. base->dma_slave.device_resume = coh901318_resume;
  2397. base->dma_slave.device_terminate_all = coh901318_terminate_all;
  2398. base->dma_slave.dev = &pdev->dev;
  2399. err = dma_async_device_register(&base->dma_slave);
  2400. if (err)
  2401. goto err_register_slave;
  2402. /* init channels for memcpy */
  2403. coh901318_base_init(&base->dma_memcpy, dma_memcpy_channels,
  2404. base);
  2405. dma_cap_zero(base->dma_memcpy.cap_mask);
  2406. dma_cap_set(DMA_MEMCPY, base->dma_memcpy.cap_mask);
  2407. base->dma_memcpy.device_alloc_chan_resources = coh901318_alloc_chan_resources;
  2408. base->dma_memcpy.device_free_chan_resources = coh901318_free_chan_resources;
  2409. base->dma_memcpy.device_prep_dma_memcpy = coh901318_prep_memcpy;
  2410. base->dma_memcpy.device_tx_status = coh901318_tx_status;
  2411. base->dma_memcpy.device_issue_pending = coh901318_issue_pending;
  2412. base->dma_memcpy.device_config = coh901318_dma_slave_config;
  2413. base->dma_memcpy.device_pause = coh901318_pause;
  2414. base->dma_memcpy.device_resume = coh901318_resume;
  2415. base->dma_memcpy.device_terminate_all = coh901318_terminate_all;
  2416. base->dma_memcpy.dev = &pdev->dev;
  2417. /*
  2418. * This controller can only access address at even 32bit boundaries,
  2419. * i.e. 2^2
  2420. */
  2421. base->dma_memcpy.copy_align = DMAENGINE_ALIGN_4_BYTES;
  2422. err = dma_async_device_register(&base->dma_memcpy);
  2423. if (err)
  2424. goto err_register_memcpy;
  2425. err = of_dma_controller_register(pdev->dev.of_node, coh901318_xlate,
  2426. base);
  2427. if (err)
  2428. goto err_register_of_dma;
  2429. platform_set_drvdata(pdev, base);
  2430. dev_info(&pdev->dev, "Initialized COH901318 DMA on virtual base 0x%p\n",
  2431. base->virtbase);
  2432. return err;
  2433. err_register_of_dma:
  2434. dma_async_device_unregister(&base->dma_memcpy);
  2435. err_register_memcpy:
  2436. dma_async_device_unregister(&base->dma_slave);
  2437. err_register_slave:
  2438. coh901318_pool_destroy(&base->pool);
  2439. return err;
  2440. }
  2441. static void coh901318_base_remove(struct coh901318_base *base, const int *pick_chans)
  2442. {
  2443. int chans_i;
  2444. int i = 0;
  2445. struct coh901318_chan *cohc;
  2446. for (chans_i = 0; pick_chans[chans_i] != -1; chans_i += 2) {
  2447. for (i = pick_chans[chans_i]; i <= pick_chans[chans_i+1]; i++) {
  2448. cohc = &base->chans[i];
  2449. tasklet_kill(&cohc->tasklet);
  2450. }
  2451. }
  2452. }
  2453. static int coh901318_remove(struct platform_device *pdev)
  2454. {
  2455. struct coh901318_base *base = platform_get_drvdata(pdev);
  2456. devm_free_irq(&pdev->dev, base->irq, base);
  2457. coh901318_base_remove(base, dma_slave_channels);
  2458. coh901318_base_remove(base, dma_memcpy_channels);
  2459. of_dma_controller_free(pdev->dev.of_node);
  2460. dma_async_device_unregister(&base->dma_memcpy);
  2461. dma_async_device_unregister(&base->dma_slave);
  2462. coh901318_pool_destroy(&base->pool);
  2463. return 0;
  2464. }
  2465. static const struct of_device_id coh901318_dt_match[] = {
  2466. { .compatible = "stericsson,coh901318" },
  2467. {},
  2468. };
  2469. static struct platform_driver coh901318_driver = {
  2470. .remove = coh901318_remove,
  2471. .driver = {
  2472. .name = "coh901318",
  2473. .of_match_table = coh901318_dt_match,
  2474. },
  2475. };
  2476. static int __init coh901318_init(void)
  2477. {
  2478. return platform_driver_probe(&coh901318_driver, coh901318_probe);
  2479. }
  2480. subsys_initcall(coh901318_init);
  2481. static void __exit coh901318_exit(void)
  2482. {
  2483. platform_driver_unregister(&coh901318_driver);
  2484. }
  2485. module_exit(coh901318_exit);
  2486. MODULE_LICENSE("GPL");
  2487. MODULE_AUTHOR("Per Friden");