cpm.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. #ifndef __CPM_H
  2. #define __CPM_H
  3. #include <linux/compiler.h>
  4. #include <linux/types.h>
  5. #include <linux/errno.h>
  6. #include <linux/of.h>
  7. /*
  8. * USB Controller pram common to QE and CPM.
  9. */
  10. struct usb_ctlr {
  11. u8 usb_usmod;
  12. u8 usb_usadr;
  13. u8 usb_uscom;
  14. u8 res1[1];
  15. __be16 usb_usep[4];
  16. u8 res2[4];
  17. __be16 usb_usber;
  18. u8 res3[2];
  19. __be16 usb_usbmr;
  20. u8 res4[1];
  21. u8 usb_usbs;
  22. /* Fields down below are QE-only */
  23. __be16 usb_ussft;
  24. u8 res5[2];
  25. __be16 usb_usfrn;
  26. u8 res6[0x22];
  27. } __attribute__ ((packed));
  28. /*
  29. * Function code bits, usually generic to devices.
  30. */
  31. #ifdef CONFIG_CPM1
  32. #define CPMFCR_GBL ((u_char)0x00) /* Flag doesn't exist in CPM1 */
  33. #define CPMFCR_TC2 ((u_char)0x00) /* Flag doesn't exist in CPM1 */
  34. #define CPMFCR_DTB ((u_char)0x00) /* Flag doesn't exist in CPM1 */
  35. #define CPMFCR_BDB ((u_char)0x00) /* Flag doesn't exist in CPM1 */
  36. #else
  37. #define CPMFCR_GBL ((u_char)0x20) /* Set memory snooping */
  38. #define CPMFCR_TC2 ((u_char)0x04) /* Transfer code 2 value */
  39. #define CPMFCR_DTB ((u_char)0x02) /* Use local bus for data when set */
  40. #define CPMFCR_BDB ((u_char)0x01) /* Use local bus for BD when set */
  41. #endif
  42. #define CPMFCR_EB ((u_char)0x10) /* Set big endian byte order */
  43. /* Opcodes common to CPM1 and CPM2
  44. */
  45. #define CPM_CR_INIT_TRX ((ushort)0x0000)
  46. #define CPM_CR_INIT_RX ((ushort)0x0001)
  47. #define CPM_CR_INIT_TX ((ushort)0x0002)
  48. #define CPM_CR_HUNT_MODE ((ushort)0x0003)
  49. #define CPM_CR_STOP_TX ((ushort)0x0004)
  50. #define CPM_CR_GRA_STOP_TX ((ushort)0x0005)
  51. #define CPM_CR_RESTART_TX ((ushort)0x0006)
  52. #define CPM_CR_CLOSE_RX_BD ((ushort)0x0007)
  53. #define CPM_CR_SET_GADDR ((ushort)0x0008)
  54. #define CPM_CR_SET_TIMER ((ushort)0x0008)
  55. #define CPM_CR_STOP_IDMA ((ushort)0x000b)
  56. /* Buffer descriptors used by many of the CPM protocols. */
  57. typedef struct cpm_buf_desc {
  58. ushort cbd_sc; /* Status and Control */
  59. ushort cbd_datlen; /* Data length in buffer */
  60. uint cbd_bufaddr; /* Buffer address in host memory */
  61. } cbd_t;
  62. /* Buffer descriptor control/status used by serial
  63. */
  64. #define BD_SC_EMPTY (0x8000) /* Receive is empty */
  65. #define BD_SC_READY (0x8000) /* Transmit is ready */
  66. #define BD_SC_WRAP (0x2000) /* Last buffer descriptor */
  67. #define BD_SC_INTRPT (0x1000) /* Interrupt on change */
  68. #define BD_SC_LAST (0x0800) /* Last buffer in frame */
  69. #define BD_SC_TC (0x0400) /* Transmit CRC */
  70. #define BD_SC_CM (0x0200) /* Continous mode */
  71. #define BD_SC_ID (0x0100) /* Rec'd too many idles */
  72. #define BD_SC_P (0x0100) /* xmt preamble */
  73. #define BD_SC_BR (0x0020) /* Break received */
  74. #define BD_SC_FR (0x0010) /* Framing error */
  75. #define BD_SC_PR (0x0008) /* Parity error */
  76. #define BD_SC_NAK (0x0004) /* NAK - did not respond */
  77. #define BD_SC_OV (0x0002) /* Overrun */
  78. #define BD_SC_UN (0x0002) /* Underrun */
  79. #define BD_SC_CD (0x0001) /* */
  80. #define BD_SC_CL (0x0001) /* Collision */
  81. /* Buffer descriptor control/status used by Ethernet receive.
  82. * Common to SCC and FCC.
  83. */
  84. #define BD_ENET_RX_EMPTY (0x8000)
  85. #define BD_ENET_RX_WRAP (0x2000)
  86. #define BD_ENET_RX_INTR (0x1000)
  87. #define BD_ENET_RX_LAST (0x0800)
  88. #define BD_ENET_RX_FIRST (0x0400)
  89. #define BD_ENET_RX_MISS (0x0100)
  90. #define BD_ENET_RX_BC (0x0080) /* FCC Only */
  91. #define BD_ENET_RX_MC (0x0040) /* FCC Only */
  92. #define BD_ENET_RX_LG (0x0020)
  93. #define BD_ENET_RX_NO (0x0010)
  94. #define BD_ENET_RX_SH (0x0008)
  95. #define BD_ENET_RX_CR (0x0004)
  96. #define BD_ENET_RX_OV (0x0002)
  97. #define BD_ENET_RX_CL (0x0001)
  98. #define BD_ENET_RX_STATS (0x01ff) /* All status bits */
  99. /* Buffer descriptor control/status used by Ethernet transmit.
  100. * Common to SCC and FCC.
  101. */
  102. #define BD_ENET_TX_READY (0x8000)
  103. #define BD_ENET_TX_PAD (0x4000)
  104. #define BD_ENET_TX_WRAP (0x2000)
  105. #define BD_ENET_TX_INTR (0x1000)
  106. #define BD_ENET_TX_LAST (0x0800)
  107. #define BD_ENET_TX_TC (0x0400)
  108. #define BD_ENET_TX_DEF (0x0200)
  109. #define BD_ENET_TX_HB (0x0100)
  110. #define BD_ENET_TX_LC (0x0080)
  111. #define BD_ENET_TX_RL (0x0040)
  112. #define BD_ENET_TX_RCMASK (0x003c)
  113. #define BD_ENET_TX_UN (0x0002)
  114. #define BD_ENET_TX_CSL (0x0001)
  115. #define BD_ENET_TX_STATS (0x03ff) /* All status bits */
  116. /* Buffer descriptor control/status used by Transparent mode SCC.
  117. */
  118. #define BD_SCC_TX_LAST (0x0800)
  119. /* Buffer descriptor control/status used by I2C.
  120. */
  121. #define BD_I2C_START (0x0400)
  122. int cpm_muram_init(void);
  123. #if defined(CONFIG_CPM) || defined(CONFIG_QUICC_ENGINE)
  124. unsigned long cpm_muram_alloc(unsigned long size, unsigned long align);
  125. int cpm_muram_free(unsigned long offset);
  126. unsigned long cpm_muram_alloc_fixed(unsigned long offset, unsigned long size);
  127. void __iomem *cpm_muram_addr(unsigned long offset);
  128. unsigned long cpm_muram_offset(void __iomem *addr);
  129. dma_addr_t cpm_muram_dma(void __iomem *addr);
  130. #else
  131. static inline unsigned long cpm_muram_alloc(unsigned long size,
  132. unsigned long align)
  133. {
  134. return -ENOSYS;
  135. }
  136. static inline int cpm_muram_free(unsigned long offset)
  137. {
  138. return -ENOSYS;
  139. }
  140. static inline unsigned long cpm_muram_alloc_fixed(unsigned long offset,
  141. unsigned long size)
  142. {
  143. return -ENOSYS;
  144. }
  145. static inline void __iomem *cpm_muram_addr(unsigned long offset)
  146. {
  147. return NULL;
  148. }
  149. static inline unsigned long cpm_muram_offset(void __iomem *addr)
  150. {
  151. return -ENOSYS;
  152. }
  153. static inline dma_addr_t cpm_muram_dma(void __iomem *addr)
  154. {
  155. return 0;
  156. }
  157. #endif /* defined(CONFIG_CPM) || defined(CONFIG_QUICC_ENGINE) */
  158. #ifdef CONFIG_CPM
  159. int cpm_command(u32 command, u8 opcode);
  160. #else
  161. static inline int cpm_command(u32 command, u8 opcode)
  162. {
  163. return -ENOSYS;
  164. }
  165. #endif /* CONFIG_CPM */
  166. int cpm2_gpiochip_add32(struct device_node *np);
  167. #endif