isp1760-hcd.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. #ifndef _ISP1760_HCD_H_
  2. #define _ISP1760_HCD_H_
  3. /* exports for if */
  4. struct usb_hcd *isp1760_register(phys_addr_t res_start, resource_size_t res_len,
  5. int irq, unsigned long irqflags,
  6. struct device *dev, const char *busname,
  7. unsigned int devflags);
  8. int init_kmem_once(void);
  9. void deinit_kmem_cache(void);
  10. /* EHCI capability registers */
  11. #define HC_CAPLENGTH 0x00
  12. #define HC_HCSPARAMS 0x04
  13. #define HC_HCCPARAMS 0x08
  14. /* EHCI operational registers */
  15. #define HC_USBCMD 0x20
  16. #define HC_USBSTS 0x24
  17. #define HC_FRINDEX 0x2c
  18. #define HC_CONFIGFLAG 0x60
  19. #define HC_PORTSC1 0x64
  20. #define HC_ISO_PTD_DONEMAP_REG 0x130
  21. #define HC_ISO_PTD_SKIPMAP_REG 0x134
  22. #define HC_ISO_PTD_LASTPTD_REG 0x138
  23. #define HC_INT_PTD_DONEMAP_REG 0x140
  24. #define HC_INT_PTD_SKIPMAP_REG 0x144
  25. #define HC_INT_PTD_LASTPTD_REG 0x148
  26. #define HC_ATL_PTD_DONEMAP_REG 0x150
  27. #define HC_ATL_PTD_SKIPMAP_REG 0x154
  28. #define HC_ATL_PTD_LASTPTD_REG 0x158
  29. /* Configuration Register */
  30. #define HC_HW_MODE_CTRL 0x300
  31. #define ALL_ATX_RESET (1 << 31)
  32. #define HW_ANA_DIGI_OC (1 << 15)
  33. #define HW_DATA_BUS_32BIT (1 << 8)
  34. #define HW_DACK_POL_HIGH (1 << 6)
  35. #define HW_DREQ_POL_HIGH (1 << 5)
  36. #define HW_INTR_HIGH_ACT (1 << 2)
  37. #define HW_INTR_EDGE_TRIG (1 << 1)
  38. #define HW_GLOBAL_INTR_EN (1 << 0)
  39. #define HC_CHIP_ID_REG 0x304
  40. #define HC_SCRATCH_REG 0x308
  41. #define HC_RESET_REG 0x30c
  42. #define SW_RESET_RESET_HC (1 << 1)
  43. #define SW_RESET_RESET_ALL (1 << 0)
  44. #define HC_BUFFER_STATUS_REG 0x334
  45. #define ATL_BUFFER 0x1
  46. #define INT_BUFFER 0x2
  47. #define ISO_BUFFER 0x4
  48. #define BUFFER_MAP 0x7
  49. #define HC_MEMORY_REG 0x33c
  50. #define ISP_BANK(x) ((x) << 16)
  51. #define HC_PORT1_CTRL 0x374
  52. #define PORT1_POWER (3 << 3)
  53. #define PORT1_INIT1 (1 << 7)
  54. #define PORT1_INIT2 (1 << 23)
  55. #define HW_OTG_CTRL_SET 0x374
  56. #define HW_OTG_CTRL_CLR 0x376
  57. /* Interrupt Register */
  58. #define HC_INTERRUPT_REG 0x310
  59. #define HC_INTERRUPT_ENABLE 0x314
  60. #define INTERRUPT_ENABLE_MASK (HC_INTL_INT | HC_ATL_INT | HC_EOT_INT)
  61. #define HC_ISO_INT (1 << 9)
  62. #define HC_ATL_INT (1 << 8)
  63. #define HC_INTL_INT (1 << 7)
  64. #define HC_EOT_INT (1 << 3)
  65. #define HC_SOT_INT (1 << 1)
  66. #define HC_ISO_IRQ_MASK_OR_REG 0x318
  67. #define HC_INT_IRQ_MASK_OR_REG 0x31C
  68. #define HC_ATL_IRQ_MASK_OR_REG 0x320
  69. #define HC_ISO_IRQ_MASK_AND_REG 0x324
  70. #define HC_INT_IRQ_MASK_AND_REG 0x328
  71. #define HC_ATL_IRQ_MASK_AND_REG 0x32C
  72. /* Register sets */
  73. #define HC_BEGIN_OF_ATL 0x0c00
  74. #define HC_BEGIN_OF_INT 0x0800
  75. #define HC_BEGIN_OF_ISO 0x0400
  76. #define HC_BEGIN_OF_PAYLOAD 0x1000
  77. /* urb state*/
  78. #define DELETE_URB (0x0008)
  79. #define NO_TRANSFER_ACTIVE (0xffffffff)
  80. #define ATL_REGS_OFFSET (0xc00)
  81. #define INT_REGS_OFFSET (0x800)
  82. /* Philips Transfer Descriptor (PTD) */
  83. struct ptd {
  84. __le32 dw0;
  85. __le32 dw1;
  86. __le32 dw2;
  87. __le32 dw3;
  88. __le32 dw4;
  89. __le32 dw5;
  90. __le32 dw6;
  91. __le32 dw7;
  92. };
  93. struct inter_packet_info {
  94. void *data_buffer;
  95. u32 payload;
  96. #define PTD_FIRE_NEXT (1 << 0)
  97. #define PTD_URB_FINISHED (1 << 1)
  98. struct urb *urb;
  99. struct isp1760_qh *qh;
  100. struct isp1760_qtd *qtd;
  101. };
  102. typedef void (packet_enqueue)(struct usb_hcd *hcd, struct isp1760_qh *qh,
  103. struct isp1760_qtd *qtd);
  104. #define isp1760_dbg(priv, fmt, args...) \
  105. dev_dbg(priv_to_hcd(priv)->self.controller, fmt, ##args)
  106. #define isp1760_info(priv, fmt, args...) \
  107. dev_info(priv_to_hcd(priv)->self.controller, fmt, ##args)
  108. #define isp1760_err(priv, fmt, args...) \
  109. dev_err(priv_to_hcd(priv)->self.controller, fmt, ##args)
  110. /*
  111. * Device flags that can vary from board to board. All of these
  112. * indicate the most "atypical" case, so that a devflags of 0 is
  113. * a sane default configuration.
  114. */
  115. #define ISP1760_FLAG_BUS_WIDTH_16 0x00000002 /* 16-bit data bus width */
  116. #define ISP1760_FLAG_OTG_EN 0x00000004 /* Port 1 supports OTG */
  117. #define ISP1760_FLAG_ANALOG_OC 0x00000008 /* Analog overcurrent */
  118. #define ISP1760_FLAG_DACK_POL_HIGH 0x00000010 /* DACK active high */
  119. #define ISP1760_FLAG_DREQ_POL_HIGH 0x00000020 /* DREQ active high */
  120. #define ISP1760_FLAG_ISP1761 0x00000040 /* Chip is ISP1761 */
  121. /* chip memory management */
  122. struct memory_chunk {
  123. unsigned int start;
  124. unsigned int size;
  125. unsigned int free;
  126. };
  127. /*
  128. * 60kb divided in:
  129. * - 32 blocks @ 256 bytes
  130. * - 20 blocks @ 1024 bytes
  131. * - 4 blocks @ 8192 bytes
  132. */
  133. #define BLOCK_1_NUM 32
  134. #define BLOCK_2_NUM 20
  135. #define BLOCK_3_NUM 4
  136. #define BLOCK_1_SIZE 256
  137. #define BLOCK_2_SIZE 1024
  138. #define BLOCK_3_SIZE 8192
  139. #define BLOCKS (BLOCK_1_NUM + BLOCK_2_NUM + BLOCK_3_NUM)
  140. #define PAYLOAD_SIZE 0xf000
  141. /* I saw if some reloads if the pointer was negative */
  142. #define ISP1760_NULL_POINTER (0x400)
  143. /* ATL */
  144. /* DW0 */
  145. #define PTD_VALID 1
  146. #define PTD_LENGTH(x) (((u32) x) << 3)
  147. #define PTD_MAXPACKET(x) (((u32) x) << 18)
  148. #define PTD_MULTI(x) (((u32) x) << 29)
  149. #define PTD_ENDPOINT(x) (((u32) x) << 31)
  150. /* DW1 */
  151. #define PTD_DEVICE_ADDR(x) (((u32) x) << 3)
  152. #define PTD_PID_TOKEN(x) (((u32) x) << 10)
  153. #define PTD_TRANS_BULK ((u32) 2 << 12)
  154. #define PTD_TRANS_INT ((u32) 3 << 12)
  155. #define PTD_TRANS_SPLIT ((u32) 1 << 14)
  156. #define PTD_SE_USB_LOSPEED ((u32) 2 << 16)
  157. #define PTD_PORT_NUM(x) (((u32) x) << 18)
  158. #define PTD_HUB_NUM(x) (((u32) x) << 25)
  159. #define PTD_PING(x) (((u32) x) << 26)
  160. /* DW2 */
  161. #define PTD_RL_CNT(x) (((u32) x) << 25)
  162. #define PTD_DATA_START_ADDR(x) (((u32) x) << 8)
  163. #define BASE_ADDR 0x1000
  164. /* DW3 */
  165. #define PTD_CERR(x) (((u32) x) << 23)
  166. #define PTD_NAC_CNT(x) (((u32) x) << 19)
  167. #define PTD_ACTIVE ((u32) 1 << 31)
  168. #define PTD_DATA_TOGGLE(x) (((u32) x) << 25)
  169. #define DW3_HALT_BIT (1 << 30)
  170. #define DW3_ERROR_BIT (1 << 28)
  171. #define DW3_QTD_ACTIVE (1 << 31)
  172. #define INT_UNDERRUN (1 << 2)
  173. #define INT_BABBLE (1 << 1)
  174. #define INT_EXACT (1 << 0)
  175. #define DW1_GET_PID(x) (((x) >> 10) & 0x3)
  176. #define PTD_XFERRED_LENGTH(x) ((x) & 0x7fff)
  177. #define PTD_XFERRED_LENGTH_LO(x) ((x) & 0x7ff)
  178. #define SETUP_PID (2)
  179. #define IN_PID (1)
  180. #define OUT_PID (0)
  181. #define GET_QTD_TOKEN_TYPE(x) ((x) & 0x3)
  182. #define DATA_TOGGLE (1 << 31)
  183. #define GET_DATA_TOGGLE(x) ((x) >> 31)
  184. /* Errata 1 */
  185. #define RL_COUNTER (0)
  186. #define NAK_COUNTER (0)
  187. #define ERR_COUNTER (2)
  188. #define HC_ATL_PL_SIZE (8192)
  189. #endif