whcd.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Wireless Host Controller (WHC) private header.
  4. *
  5. * Copyright (C) 2007 Cambridge Silicon Radio Ltd.
  6. */
  7. #ifndef __WHCD_H
  8. #define __WHCD_H
  9. #include <linux/uwb/whci.h>
  10. #include <linux/uwb/umc.h>
  11. #include <linux/workqueue.h>
  12. #include "whci-hc.h"
  13. /* Generic command timeout. */
  14. #define WHC_GENCMD_TIMEOUT_MS 100
  15. struct whc_dbg;
  16. struct whc {
  17. struct wusbhc wusbhc;
  18. struct umc_dev *umc;
  19. resource_size_t base_phys;
  20. void __iomem *base;
  21. int irq;
  22. u8 n_devices;
  23. u8 n_keys;
  24. u8 n_mmc_ies;
  25. u64 *pz_list;
  26. struct dn_buf_entry *dn_buf;
  27. struct di_buf_entry *di_buf;
  28. dma_addr_t pz_list_dma;
  29. dma_addr_t dn_buf_dma;
  30. dma_addr_t di_buf_dma;
  31. spinlock_t lock;
  32. struct mutex mutex;
  33. void * gen_cmd_buf;
  34. dma_addr_t gen_cmd_buf_dma;
  35. wait_queue_head_t cmd_wq;
  36. struct workqueue_struct *workqueue;
  37. struct work_struct dn_work;
  38. struct dma_pool *qset_pool;
  39. struct list_head async_list;
  40. struct list_head async_removed_list;
  41. wait_queue_head_t async_list_wq;
  42. struct work_struct async_work;
  43. struct list_head periodic_list[5];
  44. struct list_head periodic_removed_list;
  45. wait_queue_head_t periodic_list_wq;
  46. struct work_struct periodic_work;
  47. struct whc_dbg *dbg;
  48. };
  49. #define wusbhc_to_whc(w) (container_of((w), struct whc, wusbhc))
  50. /**
  51. * struct whc_std - a software TD.
  52. * @urb: the URB this sTD is for.
  53. * @offset: start of the URB's data for this TD.
  54. * @len: the length of data in the associated TD.
  55. * @ntds_remaining: number of TDs (starting from this one) in this transfer.
  56. *
  57. * @bounce_buf: a bounce buffer if the std was from an urb with a sg
  58. * list that could not be mapped to qTDs directly.
  59. * @bounce_sg: the first scatterlist element bounce_buf is for.
  60. * @bounce_offset: the offset into bounce_sg for the start of bounce_buf.
  61. *
  62. * Queued URBs may require more TDs than are available in a qset so we
  63. * use a list of these "software TDs" (sTDs) to hold per-TD data.
  64. */
  65. struct whc_std {
  66. struct urb *urb;
  67. size_t len;
  68. int ntds_remaining;
  69. struct whc_qtd *qtd;
  70. struct list_head list_node;
  71. int num_pointers;
  72. dma_addr_t dma_addr;
  73. struct whc_page_list_entry *pl_virt;
  74. void *bounce_buf;
  75. struct scatterlist *bounce_sg;
  76. unsigned bounce_offset;
  77. };
  78. /**
  79. * struct whc_urb - per URB host controller structure.
  80. * @urb: the URB this struct is for.
  81. * @qset: the qset associated to the URB.
  82. * @dequeue_work: the work to remove the URB when dequeued.
  83. * @is_async: the URB belongs to async sheduler or not.
  84. * @status: the status to be returned when calling wusbhc_giveback_urb.
  85. */
  86. struct whc_urb {
  87. struct urb *urb;
  88. struct whc_qset *qset;
  89. struct work_struct dequeue_work;
  90. bool is_async;
  91. int status;
  92. };
  93. /**
  94. * whc_std_last - is this sTD the URB's last?
  95. * @std: the sTD to check.
  96. */
  97. static inline bool whc_std_last(struct whc_std *std)
  98. {
  99. return std->ntds_remaining <= 1;
  100. }
  101. enum whc_update {
  102. WHC_UPDATE_ADDED = 0x01,
  103. WHC_UPDATE_REMOVED = 0x02,
  104. WHC_UPDATE_UPDATED = 0x04,
  105. };
  106. /* init.c */
  107. int whc_init(struct whc *whc);
  108. void whc_clean_up(struct whc *whc);
  109. /* hw.c */
  110. void whc_write_wusbcmd(struct whc *whc, u32 mask, u32 val);
  111. int whc_do_gencmd(struct whc *whc, u32 cmd, u32 params, void *addr, size_t len);
  112. void whc_hw_error(struct whc *whc, const char *reason);
  113. /* wusb.c */
  114. int whc_wusbhc_start(struct wusbhc *wusbhc);
  115. void whc_wusbhc_stop(struct wusbhc *wusbhc, int delay);
  116. int whc_mmcie_add(struct wusbhc *wusbhc, u8 interval, u8 repeat_cnt,
  117. u8 handle, struct wuie_hdr *wuie);
  118. int whc_mmcie_rm(struct wusbhc *wusbhc, u8 handle);
  119. int whc_bwa_set(struct wusbhc *wusbhc, s8 stream_index, const struct uwb_mas_bm *mas_bm);
  120. int whc_dev_info_set(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev);
  121. int whc_set_num_dnts(struct wusbhc *wusbhc, u8 interval, u8 slots);
  122. int whc_set_ptk(struct wusbhc *wusbhc, u8 port_idx, u32 tkid,
  123. const void *ptk, size_t key_size);
  124. int whc_set_gtk(struct wusbhc *wusbhc, u32 tkid,
  125. const void *gtk, size_t key_size);
  126. int whc_set_cluster_id(struct whc *whc, u8 bcid);
  127. /* int.c */
  128. irqreturn_t whc_int_handler(struct usb_hcd *hcd);
  129. void whc_dn_work(struct work_struct *work);
  130. /* asl.c */
  131. void asl_start(struct whc *whc);
  132. void asl_stop(struct whc *whc);
  133. int asl_init(struct whc *whc);
  134. void asl_clean_up(struct whc *whc);
  135. int asl_urb_enqueue(struct whc *whc, struct urb *urb, gfp_t mem_flags);
  136. int asl_urb_dequeue(struct whc *whc, struct urb *urb, int status);
  137. void asl_qset_delete(struct whc *whc, struct whc_qset *qset);
  138. void scan_async_work(struct work_struct *work);
  139. /* pzl.c */
  140. int pzl_init(struct whc *whc);
  141. void pzl_clean_up(struct whc *whc);
  142. void pzl_start(struct whc *whc);
  143. void pzl_stop(struct whc *whc);
  144. int pzl_urb_enqueue(struct whc *whc, struct urb *urb, gfp_t mem_flags);
  145. int pzl_urb_dequeue(struct whc *whc, struct urb *urb, int status);
  146. void pzl_qset_delete(struct whc *whc, struct whc_qset *qset);
  147. void scan_periodic_work(struct work_struct *work);
  148. /* qset.c */
  149. struct whc_qset *qset_alloc(struct whc *whc, gfp_t mem_flags);
  150. void qset_free(struct whc *whc, struct whc_qset *qset);
  151. struct whc_qset *get_qset(struct whc *whc, struct urb *urb, gfp_t mem_flags);
  152. void qset_delete(struct whc *whc, struct whc_qset *qset);
  153. void qset_clear(struct whc *whc, struct whc_qset *qset);
  154. void qset_reset(struct whc *whc, struct whc_qset *qset);
  155. int qset_add_urb(struct whc *whc, struct whc_qset *qset, struct urb *urb,
  156. gfp_t mem_flags);
  157. void qset_free_std(struct whc *whc, struct whc_std *std);
  158. void qset_remove_urb(struct whc *whc, struct whc_qset *qset,
  159. struct urb *urb, int status);
  160. void process_halted_qtd(struct whc *whc, struct whc_qset *qset,
  161. struct whc_qtd *qtd);
  162. void process_inactive_qtd(struct whc *whc, struct whc_qset *qset,
  163. struct whc_qtd *qtd);
  164. enum whc_update qset_add_qtds(struct whc *whc, struct whc_qset *qset);
  165. void qset_remove_complete(struct whc *whc, struct whc_qset *qset);
  166. void pzl_update(struct whc *whc, uint32_t wusbcmd);
  167. void asl_update(struct whc *whc, uint32_t wusbcmd);
  168. /* debug.c */
  169. void whc_dbg_init(struct whc *whc);
  170. void whc_dbg_clean_up(struct whc *whc);
  171. #endif /* #ifndef __WHCD_H */