omap-dma.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. /*
  2. * OMAP DMA Engine support
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __LINUX_OMAP_DMA_H
  9. #define __LINUX_OMAP_DMA_H
  10. struct dma_chan;
  11. #if defined(CONFIG_DMA_OMAP) || defined(CONFIG_DMA_OMAP_MODULE)
  12. bool omap_dma_filter_fn(struct dma_chan *, void *);
  13. #else
  14. static inline bool omap_dma_filter_fn(struct dma_chan *c, void *d)
  15. {
  16. return false;
  17. }
  18. #endif
  19. /*
  20. * Legacy OMAP DMA handling defines and functions
  21. *
  22. * NOTE: Do not use these any longer.
  23. *
  24. * Use the generic dmaengine functions as defined in
  25. * include/linux/dmaengine.h.
  26. *
  27. * Copyright (C) 2003 Nokia Corporation
  28. * Author: Juha Yrjölä <juha.yrjola@nokia.com>
  29. *
  30. */
  31. #include <linux/platform_device.h>
  32. #define INT_DMA_LCD 25
  33. #define OMAP1_DMA_TOUT_IRQ (1 << 0)
  34. #define OMAP_DMA_DROP_IRQ (1 << 1)
  35. #define OMAP_DMA_HALF_IRQ (1 << 2)
  36. #define OMAP_DMA_FRAME_IRQ (1 << 3)
  37. #define OMAP_DMA_LAST_IRQ (1 << 4)
  38. #define OMAP_DMA_BLOCK_IRQ (1 << 5)
  39. #define OMAP1_DMA_SYNC_IRQ (1 << 6)
  40. #define OMAP2_DMA_PKT_IRQ (1 << 7)
  41. #define OMAP2_DMA_TRANS_ERR_IRQ (1 << 8)
  42. #define OMAP2_DMA_SECURE_ERR_IRQ (1 << 9)
  43. #define OMAP2_DMA_SUPERVISOR_ERR_IRQ (1 << 10)
  44. #define OMAP2_DMA_MISALIGNED_ERR_IRQ (1 << 11)
  45. #define OMAP_DMA_CCR_EN (1 << 7)
  46. #define OMAP_DMA_CCR_RD_ACTIVE (1 << 9)
  47. #define OMAP_DMA_CCR_WR_ACTIVE (1 << 10)
  48. #define OMAP_DMA_CCR_SEL_SRC_DST_SYNC (1 << 24)
  49. #define OMAP_DMA_CCR_BUFFERING_DISABLE (1 << 25)
  50. #define OMAP_DMA_DATA_TYPE_S8 0x00
  51. #define OMAP_DMA_DATA_TYPE_S16 0x01
  52. #define OMAP_DMA_DATA_TYPE_S32 0x02
  53. #define OMAP_DMA_SYNC_ELEMENT 0x00
  54. #define OMAP_DMA_SYNC_FRAME 0x01
  55. #define OMAP_DMA_SYNC_BLOCK 0x02
  56. #define OMAP_DMA_SYNC_PACKET 0x03
  57. #define OMAP_DMA_DST_SYNC_PREFETCH 0x02
  58. #define OMAP_DMA_SRC_SYNC 0x01
  59. #define OMAP_DMA_DST_SYNC 0x00
  60. #define OMAP_DMA_PORT_EMIFF 0x00
  61. #define OMAP_DMA_PORT_EMIFS 0x01
  62. #define OMAP_DMA_PORT_OCP_T1 0x02
  63. #define OMAP_DMA_PORT_TIPB 0x03
  64. #define OMAP_DMA_PORT_OCP_T2 0x04
  65. #define OMAP_DMA_PORT_MPUI 0x05
  66. #define OMAP_DMA_AMODE_CONSTANT 0x00
  67. #define OMAP_DMA_AMODE_POST_INC 0x01
  68. #define OMAP_DMA_AMODE_SINGLE_IDX 0x02
  69. #define OMAP_DMA_AMODE_DOUBLE_IDX 0x03
  70. #define DMA_DEFAULT_FIFO_DEPTH 0x10
  71. #define DMA_DEFAULT_ARB_RATE 0x01
  72. /* Pass THREAD_RESERVE ORed with THREAD_FIFO for tparams */
  73. #define DMA_THREAD_RESERVE_NORM (0x00 << 12) /* Def */
  74. #define DMA_THREAD_RESERVE_ONET (0x01 << 12)
  75. #define DMA_THREAD_RESERVE_TWOT (0x02 << 12)
  76. #define DMA_THREAD_RESERVE_THREET (0x03 << 12)
  77. #define DMA_THREAD_FIFO_NONE (0x00 << 14) /* Def */
  78. #define DMA_THREAD_FIFO_75 (0x01 << 14)
  79. #define DMA_THREAD_FIFO_25 (0x02 << 14)
  80. #define DMA_THREAD_FIFO_50 (0x03 << 14)
  81. /* DMA4_OCP_SYSCONFIG bits */
  82. #define DMA_SYSCONFIG_MIDLEMODE_MASK (3 << 12)
  83. #define DMA_SYSCONFIG_CLOCKACTIVITY_MASK (3 << 8)
  84. #define DMA_SYSCONFIG_EMUFREE (1 << 5)
  85. #define DMA_SYSCONFIG_SIDLEMODE_MASK (3 << 3)
  86. #define DMA_SYSCONFIG_SOFTRESET (1 << 2)
  87. #define DMA_SYSCONFIG_AUTOIDLE (1 << 0)
  88. #define DMA_SYSCONFIG_MIDLEMODE(n) ((n) << 12)
  89. #define DMA_SYSCONFIG_SIDLEMODE(n) ((n) << 3)
  90. #define DMA_IDLEMODE_SMARTIDLE 0x2
  91. #define DMA_IDLEMODE_NO_IDLE 0x1
  92. #define DMA_IDLEMODE_FORCE_IDLE 0x0
  93. /* Chaining modes*/
  94. #ifndef CONFIG_ARCH_OMAP1
  95. #define OMAP_DMA_STATIC_CHAIN 0x1
  96. #define OMAP_DMA_DYNAMIC_CHAIN 0x2
  97. #define OMAP_DMA_CHAIN_ACTIVE 0x1
  98. #define OMAP_DMA_CHAIN_INACTIVE 0x0
  99. #endif
  100. #define DMA_CH_PRIO_HIGH 0x1
  101. #define DMA_CH_PRIO_LOW 0x0 /* Def */
  102. /* Errata handling */
  103. #define IS_DMA_ERRATA(id) (errata & (id))
  104. #define SET_DMA_ERRATA(id) (errata |= (id))
  105. #define DMA_ERRATA_IFRAME_BUFFERING BIT(0x0)
  106. #define DMA_ERRATA_PARALLEL_CHANNELS BIT(0x1)
  107. #define DMA_ERRATA_i378 BIT(0x2)
  108. #define DMA_ERRATA_i541 BIT(0x3)
  109. #define DMA_ERRATA_i88 BIT(0x4)
  110. #define DMA_ERRATA_3_3 BIT(0x5)
  111. #define DMA_ROMCODE_BUG BIT(0x6)
  112. /* Attributes for OMAP DMA Contrller */
  113. #define DMA_LINKED_LCH BIT(0x0)
  114. #define GLOBAL_PRIORITY BIT(0x1)
  115. #define RESERVE_CHANNEL BIT(0x2)
  116. #define IS_CSSA_32 BIT(0x3)
  117. #define IS_CDSA_32 BIT(0x4)
  118. #define IS_RW_PRIORITY BIT(0x5)
  119. #define ENABLE_1510_MODE BIT(0x6)
  120. #define SRC_PORT BIT(0x7)
  121. #define DST_PORT BIT(0x8)
  122. #define SRC_INDEX BIT(0x9)
  123. #define DST_INDEX BIT(0xa)
  124. #define IS_BURST_ONLY4 BIT(0xb)
  125. #define CLEAR_CSR_ON_READ BIT(0xc)
  126. #define IS_WORD_16 BIT(0xd)
  127. #define ENABLE_16XX_MODE BIT(0xe)
  128. #define HS_CHANNELS_RESERVED BIT(0xf)
  129. /* Defines for DMA Capabilities */
  130. #define DMA_HAS_TRANSPARENT_CAPS (0x1 << 18)
  131. #define DMA_HAS_CONSTANT_FILL_CAPS (0x1 << 19)
  132. #define DMA_HAS_DESCRIPTOR_CAPS (0x3 << 20)
  133. enum omap_reg_offsets {
  134. GCR, GSCR, GRST1, HW_ID,
  135. PCH2_ID, PCH0_ID, PCH1_ID, PCHG_ID,
  136. PCHD_ID, CAPS_0, CAPS_1, CAPS_2,
  137. CAPS_3, CAPS_4, PCH2_SR, PCH0_SR,
  138. PCH1_SR, PCHD_SR, REVISION, IRQSTATUS_L0,
  139. IRQSTATUS_L1, IRQSTATUS_L2, IRQSTATUS_L3, IRQENABLE_L0,
  140. IRQENABLE_L1, IRQENABLE_L2, IRQENABLE_L3, SYSSTATUS,
  141. OCP_SYSCONFIG,
  142. /* omap1+ specific */
  143. CPC, CCR2, LCH_CTRL,
  144. /* Common registers for all omap's */
  145. CSDP, CCR, CICR, CSR,
  146. CEN, CFN, CSFI, CSEI,
  147. CSAC, CDAC, CDEI,
  148. CDFI, CLNK_CTRL,
  149. /* Channel specific registers */
  150. CSSA, CDSA, COLOR,
  151. CCEN, CCFN,
  152. /* omap3630 and omap4 specific */
  153. CDP, CNDP, CCDN,
  154. };
  155. enum omap_dma_burst_mode {
  156. OMAP_DMA_DATA_BURST_DIS = 0,
  157. OMAP_DMA_DATA_BURST_4,
  158. OMAP_DMA_DATA_BURST_8,
  159. OMAP_DMA_DATA_BURST_16,
  160. };
  161. enum end_type {
  162. OMAP_DMA_LITTLE_ENDIAN = 0,
  163. OMAP_DMA_BIG_ENDIAN
  164. };
  165. enum omap_dma_color_mode {
  166. OMAP_DMA_COLOR_DIS = 0,
  167. OMAP_DMA_CONSTANT_FILL,
  168. OMAP_DMA_TRANSPARENT_COPY
  169. };
  170. enum omap_dma_write_mode {
  171. OMAP_DMA_WRITE_NON_POSTED = 0,
  172. OMAP_DMA_WRITE_POSTED,
  173. OMAP_DMA_WRITE_LAST_NON_POSTED
  174. };
  175. enum omap_dma_channel_mode {
  176. OMAP_DMA_LCH_2D = 0,
  177. OMAP_DMA_LCH_G,
  178. OMAP_DMA_LCH_P,
  179. OMAP_DMA_LCH_PD
  180. };
  181. struct omap_dma_channel_params {
  182. int data_type; /* data type 8,16,32 */
  183. int elem_count; /* number of elements in a frame */
  184. int frame_count; /* number of frames in a element */
  185. int src_port; /* Only on OMAP1 REVISIT: Is this needed? */
  186. int src_amode; /* constant, post increment, indexed,
  187. double indexed */
  188. unsigned long src_start; /* source address : physical */
  189. int src_ei; /* source element index */
  190. int src_fi; /* source frame index */
  191. int dst_port; /* Only on OMAP1 REVISIT: Is this needed? */
  192. int dst_amode; /* constant, post increment, indexed,
  193. double indexed */
  194. unsigned long dst_start; /* source address : physical */
  195. int dst_ei; /* source element index */
  196. int dst_fi; /* source frame index */
  197. int trigger; /* trigger attached if the channel is
  198. synchronized */
  199. int sync_mode; /* sycn on element, frame , block or packet */
  200. int src_or_dst_synch; /* source synch(1) or destination synch(0) */
  201. int ie; /* interrupt enabled */
  202. unsigned char read_prio;/* read priority */
  203. unsigned char write_prio;/* write priority */
  204. #ifndef CONFIG_ARCH_OMAP1
  205. enum omap_dma_burst_mode burst_mode; /* Burst mode 4/8/16 words */
  206. #endif
  207. };
  208. struct omap_dma_lch {
  209. int next_lch;
  210. int dev_id;
  211. u16 saved_csr;
  212. u16 enabled_irqs;
  213. const char *dev_name;
  214. void (*callback)(int lch, u16 ch_status, void *data);
  215. void *data;
  216. long flags;
  217. /* required for Dynamic chaining */
  218. int prev_linked_ch;
  219. int next_linked_ch;
  220. int state;
  221. int chain_id;
  222. int status;
  223. };
  224. struct omap_dma_dev_attr {
  225. u32 dev_caps;
  226. u16 lch_count;
  227. u16 chan_count;
  228. struct omap_dma_lch *chan;
  229. };
  230. /* System DMA platform data structure */
  231. struct omap_system_dma_plat_info {
  232. struct omap_dma_dev_attr *dma_attr;
  233. u32 errata;
  234. void (*disable_irq_lch)(int lch);
  235. void (*show_dma_caps)(void);
  236. void (*clear_lch_regs)(int lch);
  237. void (*clear_dma)(int lch);
  238. void (*dma_write)(u32 val, int reg, int lch);
  239. u32 (*dma_read)(int reg, int lch);
  240. };
  241. #ifdef CONFIG_ARCH_OMAP2PLUS
  242. #define dma_omap2plus() 1
  243. #else
  244. #define dma_omap2plus() 0
  245. #endif
  246. #define dma_omap1() (!dma_omap2plus())
  247. #define dma_omap15xx() ((dma_omap1() && (d->dev_caps & ENABLE_1510_MODE)))
  248. #define dma_omap16xx() ((dma_omap1() && (d->dev_caps & ENABLE_16XX_MODE)))
  249. extern void omap_set_dma_priority(int lch, int dst_port, int priority);
  250. extern int omap_request_dma(int dev_id, const char *dev_name,
  251. void (*callback)(int lch, u16 ch_status, void *data),
  252. void *data, int *dma_ch);
  253. extern void omap_enable_dma_irq(int ch, u16 irq_bits);
  254. extern void omap_disable_dma_irq(int ch, u16 irq_bits);
  255. extern void omap_free_dma(int ch);
  256. extern void omap_start_dma(int lch);
  257. extern void omap_stop_dma(int lch);
  258. extern void omap_set_dma_transfer_params(int lch, int data_type,
  259. int elem_count, int frame_count,
  260. int sync_mode,
  261. int dma_trigger, int src_or_dst_synch);
  262. extern void omap_set_dma_color_mode(int lch, enum omap_dma_color_mode mode,
  263. u32 color);
  264. extern void omap_set_dma_write_mode(int lch, enum omap_dma_write_mode mode);
  265. extern void omap_set_dma_channel_mode(int lch, enum omap_dma_channel_mode mode);
  266. extern void omap_set_dma_src_params(int lch, int src_port, int src_amode,
  267. unsigned long src_start,
  268. int src_ei, int src_fi);
  269. extern void omap_set_dma_src_index(int lch, int eidx, int fidx);
  270. extern void omap_set_dma_src_data_pack(int lch, int enable);
  271. extern void omap_set_dma_src_burst_mode(int lch,
  272. enum omap_dma_burst_mode burst_mode);
  273. extern void omap_set_dma_dest_params(int lch, int dest_port, int dest_amode,
  274. unsigned long dest_start,
  275. int dst_ei, int dst_fi);
  276. extern void omap_set_dma_dest_index(int lch, int eidx, int fidx);
  277. extern void omap_set_dma_dest_data_pack(int lch, int enable);
  278. extern void omap_set_dma_dest_burst_mode(int lch,
  279. enum omap_dma_burst_mode burst_mode);
  280. extern void omap_set_dma_params(int lch,
  281. struct omap_dma_channel_params *params);
  282. extern void omap_dma_link_lch(int lch_head, int lch_queue);
  283. extern void omap_dma_unlink_lch(int lch_head, int lch_queue);
  284. extern int omap_set_dma_callback(int lch,
  285. void (*callback)(int lch, u16 ch_status, void *data),
  286. void *data);
  287. extern dma_addr_t omap_get_dma_src_pos(int lch);
  288. extern dma_addr_t omap_get_dma_dst_pos(int lch);
  289. extern void omap_clear_dma(int lch);
  290. extern int omap_get_dma_active_status(int lch);
  291. extern int omap_dma_running(void);
  292. extern void omap_dma_set_global_params(int arb_rate, int max_fifo_depth,
  293. int tparams);
  294. extern int omap_dma_set_prio_lch(int lch, unsigned char read_prio,
  295. unsigned char write_prio);
  296. extern void omap_set_dma_dst_endian_type(int lch, enum end_type etype);
  297. extern void omap_set_dma_src_endian_type(int lch, enum end_type etype);
  298. extern int omap_get_dma_index(int lch, int *ei, int *fi);
  299. void omap_dma_global_context_save(void);
  300. void omap_dma_global_context_restore(void);
  301. extern void omap_dma_disable_irq(int lch);
  302. /* Chaining APIs */
  303. #ifndef CONFIG_ARCH_OMAP1
  304. extern int omap_request_dma_chain(int dev_id, const char *dev_name,
  305. void (*callback) (int lch, u16 ch_status,
  306. void *data),
  307. int *chain_id, int no_of_chans,
  308. int chain_mode,
  309. struct omap_dma_channel_params params);
  310. extern int omap_free_dma_chain(int chain_id);
  311. extern int omap_dma_chain_a_transfer(int chain_id, int src_start,
  312. int dest_start, int elem_count,
  313. int frame_count, void *callbk_data);
  314. extern int omap_start_dma_chain_transfers(int chain_id);
  315. extern int omap_stop_dma_chain_transfers(int chain_id);
  316. extern int omap_get_dma_chain_index(int chain_id, int *ei, int *fi);
  317. extern int omap_get_dma_chain_dst_pos(int chain_id);
  318. extern int omap_get_dma_chain_src_pos(int chain_id);
  319. extern int omap_modify_dma_chain_params(int chain_id,
  320. struct omap_dma_channel_params params);
  321. extern int omap_dma_chain_status(int chain_id);
  322. #endif
  323. #if defined(CONFIG_ARCH_OMAP1) && defined(CONFIG_FB_OMAP)
  324. #include <mach/lcd_dma.h>
  325. #else
  326. static inline int omap_lcd_dma_running(void)
  327. {
  328. return 0;
  329. }
  330. #endif
  331. #endif /* __LINUX_OMAP_DMA_H */