altera_sgdmahw.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /* Altera TSE SGDMA and MSGDMA Linux driver
  2. * Copyright (C) 2014 Altera Corporation. All rights reserved
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along with
  14. * this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef __ALTERA_SGDMAHW_H__
  17. #define __ALTERA_SGDMAHW_H__
  18. /* SGDMA descriptor structure */
  19. struct sgdma_descrip {
  20. u32 raddr; /* address of data to be read */
  21. u32 pad1;
  22. u32 waddr;
  23. u32 pad2;
  24. u32 next;
  25. u32 pad3;
  26. u16 bytes;
  27. u8 rburst;
  28. u8 wburst;
  29. u16 bytes_xferred; /* 16 bits, bytes xferred */
  30. /* bit 0: error
  31. * bit 1: length error
  32. * bit 2: crc error
  33. * bit 3: truncated error
  34. * bit 4: phy error
  35. * bit 5: collision error
  36. * bit 6: reserved
  37. * bit 7: status eop for recv case
  38. */
  39. u8 status;
  40. /* bit 0: eop
  41. * bit 1: read_fixed
  42. * bit 2: write fixed
  43. * bits 3,4,5,6: Channel (always 0)
  44. * bit 7: hardware owned
  45. */
  46. u8 control;
  47. } __packed;
  48. #define SGDMA_DESC_LEN sizeof(struct sgdma_descrip)
  49. #define SGDMA_STATUS_ERR BIT(0)
  50. #define SGDMA_STATUS_LENGTH_ERR BIT(1)
  51. #define SGDMA_STATUS_CRC_ERR BIT(2)
  52. #define SGDMA_STATUS_TRUNC_ERR BIT(3)
  53. #define SGDMA_STATUS_PHY_ERR BIT(4)
  54. #define SGDMA_STATUS_COLL_ERR BIT(5)
  55. #define SGDMA_STATUS_EOP BIT(7)
  56. #define SGDMA_CONTROL_EOP BIT(0)
  57. #define SGDMA_CONTROL_RD_FIXED BIT(1)
  58. #define SGDMA_CONTROL_WR_FIXED BIT(2)
  59. /* Channel is always 0, so just zero initialize it */
  60. #define SGDMA_CONTROL_HW_OWNED BIT(7)
  61. /* SGDMA register space */
  62. struct sgdma_csr {
  63. /* bit 0: error
  64. * bit 1: eop
  65. * bit 2: descriptor completed
  66. * bit 3: chain completed
  67. * bit 4: busy
  68. * remainder reserved
  69. */
  70. u32 status;
  71. u32 pad1[3];
  72. /* bit 0: interrupt on error
  73. * bit 1: interrupt on eop
  74. * bit 2: interrupt after every descriptor
  75. * bit 3: interrupt after last descrip in a chain
  76. * bit 4: global interrupt enable
  77. * bit 5: starts descriptor processing
  78. * bit 6: stop core on dma error
  79. * bit 7: interrupt on max descriptors
  80. * bits 8-15: max descriptors to generate interrupt
  81. * bit 16: Software reset
  82. * bit 17: clears owned by hardware if 0, does not clear otherwise
  83. * bit 18: enables descriptor polling mode
  84. * bit 19-26: clocks before polling again
  85. * bit 27-30: reserved
  86. * bit 31: clear interrupt
  87. */
  88. u32 control;
  89. u32 pad2[3];
  90. u32 next_descrip;
  91. u32 pad3[3];
  92. };
  93. #define sgdma_csroffs(a) (offsetof(struct sgdma_csr, a))
  94. #define sgdma_descroffs(a) (offsetof(struct sgdma_descrip, a))
  95. #define SGDMA_STSREG_ERR BIT(0) /* Error */
  96. #define SGDMA_STSREG_EOP BIT(1) /* EOP */
  97. #define SGDMA_STSREG_DESCRIP BIT(2) /* Descriptor completed */
  98. #define SGDMA_STSREG_CHAIN BIT(3) /* Chain completed */
  99. #define SGDMA_STSREG_BUSY BIT(4) /* Controller busy */
  100. #define SGDMA_CTRLREG_IOE BIT(0) /* Interrupt on error */
  101. #define SGDMA_CTRLREG_IOEOP BIT(1) /* Interrupt on EOP */
  102. #define SGDMA_CTRLREG_IDESCRIP BIT(2) /* Interrupt after every descriptor */
  103. #define SGDMA_CTRLREG_ILASTD BIT(3) /* Interrupt after last descriptor */
  104. #define SGDMA_CTRLREG_INTEN BIT(4) /* Global Interrupt enable */
  105. #define SGDMA_CTRLREG_START BIT(5) /* starts descriptor processing */
  106. #define SGDMA_CTRLREG_STOPERR BIT(6) /* stop on dma error */
  107. #define SGDMA_CTRLREG_INTMAX BIT(7) /* Interrupt on max descriptors */
  108. #define SGDMA_CTRLREG_RESET BIT(16)/* Software reset */
  109. #define SGDMA_CTRLREG_COBHW BIT(17)/* Clears owned by hardware */
  110. #define SGDMA_CTRLREG_POLL BIT(18)/* enables descriptor polling mode */
  111. #define SGDMA_CTRLREG_CLRINT BIT(31)/* Clears interrupt */
  112. #endif /* __ALTERA_SGDMAHW_H__ */