sh_dma.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Header for the new SH dmaengine driver
  3. *
  4. * Copyright (C) 2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef SH_DMA_H
  11. #define SH_DMA_H
  12. #include <linux/dmaengine.h>
  13. #include <linux/list.h>
  14. #include <linux/shdma-base.h>
  15. #include <linux/types.h>
  16. struct device;
  17. /* Used by slave DMA clients to request DMA to/from a specific peripheral */
  18. struct sh_dmae_slave {
  19. struct shdma_slave shdma_slave; /* Set by the platform */
  20. };
  21. /*
  22. * Supplied by platforms to specify, how a DMA channel has to be configured for
  23. * a certain peripheral
  24. */
  25. struct sh_dmae_slave_config {
  26. int slave_id;
  27. dma_addr_t addr;
  28. u32 chcr;
  29. char mid_rid;
  30. };
  31. /**
  32. * struct sh_dmae_channel - DMAC channel platform data
  33. * @offset: register offset within the main IOMEM resource
  34. * @dmars: channel DMARS register offset
  35. * @chclr_offset: channel CHCLR register offset
  36. * @dmars_bit: channel DMARS field offset within the register
  37. * @chclr_bit: bit position, to be set to reset the channel
  38. */
  39. struct sh_dmae_channel {
  40. unsigned int offset;
  41. unsigned int dmars;
  42. unsigned int chclr_offset;
  43. unsigned char dmars_bit;
  44. unsigned char chclr_bit;
  45. };
  46. /**
  47. * struct sh_dmae_pdata - DMAC platform data
  48. * @slave: array of slaves
  49. * @slave_num: number of slaves in the above array
  50. * @channel: array of DMA channels
  51. * @channel_num: number of channels in the above array
  52. * @ts_low_shift: shift of the low part of the TS field
  53. * @ts_low_mask: low TS field mask
  54. * @ts_high_shift: additional shift of the high part of the TS field
  55. * @ts_high_mask: high TS field mask
  56. * @ts_shift: array of Transfer Size shifts, indexed by TS value
  57. * @ts_shift_num: number of shifts in the above array
  58. * @dmaor_init: DMAOR initialisation value
  59. * @chcr_offset: CHCR address offset
  60. * @chcr_ie_bit: CHCR Interrupt Enable bit
  61. * @dmaor_is_32bit: DMAOR is a 32-bit register
  62. * @needs_tend_set: the TEND register has to be set
  63. * @no_dmars: DMAC has no DMARS registers
  64. * @chclr_present: DMAC has one or several CHCLR registers
  65. * @chclr_bitwise: channel CHCLR registers are bitwise
  66. * @slave_only: DMAC cannot be used for MEMCPY
  67. */
  68. struct sh_dmae_pdata {
  69. const struct sh_dmae_slave_config *slave;
  70. int slave_num;
  71. const struct sh_dmae_channel *channel;
  72. int channel_num;
  73. unsigned int ts_low_shift;
  74. unsigned int ts_low_mask;
  75. unsigned int ts_high_shift;
  76. unsigned int ts_high_mask;
  77. const unsigned int *ts_shift;
  78. int ts_shift_num;
  79. u16 dmaor_init;
  80. unsigned int chcr_offset;
  81. u32 chcr_ie_bit;
  82. unsigned int dmaor_is_32bit:1;
  83. unsigned int needs_tend_set:1;
  84. unsigned int no_dmars:1;
  85. unsigned int chclr_present:1;
  86. unsigned int chclr_bitwise:1;
  87. unsigned int slave_only:1;
  88. };
  89. /* DMAOR definitions */
  90. #define DMAOR_AE 0x00000004 /* Address Error Flag */
  91. #define DMAOR_NMIF 0x00000002
  92. #define DMAOR_DME 0x00000001 /* DMA Master Enable */
  93. /* Definitions for the SuperH DMAC */
  94. #define DM_INC 0x00004000 /* Destination addresses are incremented */
  95. #define DM_DEC 0x00008000 /* Destination addresses are decremented */
  96. #define DM_FIX 0x0000c000 /* Destination address is fixed */
  97. #define SM_INC 0x00001000 /* Source addresses are incremented */
  98. #define SM_DEC 0x00002000 /* Source addresses are decremented */
  99. #define SM_FIX 0x00003000 /* Source address is fixed */
  100. #define RS_AUTO 0x00000400 /* Auto Request */
  101. #define RS_ERS 0x00000800 /* DMA extended resource selector */
  102. #define CHCR_DE 0x00000001 /* DMA Enable */
  103. #define CHCR_TE 0x00000002 /* Transfer End Flag */
  104. #define CHCR_IE 0x00000004 /* Interrupt Enable */
  105. #endif