if_pci.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. /*
  2. * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #ifndef __ATH_PCI_H__
  27. #define __ATH_PCI_H__
  28. #include <linux/version.h>
  29. #include <linux/semaphore.h>
  30. #include <linux/interrupt.h>
  31. #define ATH_DBG_DEFAULT 0
  32. #include "hif.h"
  33. #include "cepci.h"
  34. #include "ce_main.h"
  35. /* An address (e.g. of a buffer) in Copy Engine space. */
  36. #define HIF_MAX_TASKLET_NUM 11
  37. struct hif_tasklet_entry {
  38. uint8_t id; /* 0 - 9: maps to CE, 10: fw */
  39. void *hif_handler; /* struct hif_pci_softc */
  40. };
  41. /**
  42. * enum hif_pm_runtime_state - Driver States for Runtime Power Management
  43. * HIF_PM_RUNTIME_STATE_NONE: runtime pm is off
  44. * HIF_PM_RUNTIME_STATE_ON: runtime pm is active and link is active
  45. * HIF_PM_RUNTIME_STATE_INPROGRESS: a runtime suspend or resume is in progress
  46. * HIF_PM_RUNTIME_STATE_SUSPENDED: the driver is runtime suspended
  47. */
  48. enum hif_pm_runtime_state {
  49. HIF_PM_RUNTIME_STATE_NONE,
  50. HIF_PM_RUNTIME_STATE_ON,
  51. HIF_PM_RUNTIME_STATE_INPROGRESS,
  52. HIF_PM_RUNTIME_STATE_SUSPENDED,
  53. };
  54. #ifdef FEATURE_RUNTIME_PM
  55. /**
  56. * struct hif_pm_runtime_lock - data structure for preventing runtime suspend
  57. * @list - global list of runtime locks
  58. * @active - true if this lock is preventing suspend
  59. * @name - character string for tracking this lock
  60. */
  61. struct hif_pm_runtime_lock {
  62. struct list_head list;
  63. bool active;
  64. uint32_t timeout;
  65. const char *name;
  66. };
  67. /* Debugging stats for Runtime PM */
  68. struct hif_pci_pm_stats {
  69. u32 suspended;
  70. u32 suspend_err;
  71. u32 resumed;
  72. u32 runtime_get;
  73. u32 runtime_put;
  74. u32 request_resume;
  75. u32 allow_suspend;
  76. u32 prevent_suspend;
  77. u32 prevent_suspend_timeout;
  78. u32 allow_suspend_timeout;
  79. u32 runtime_get_err;
  80. void *last_resume_caller;
  81. unsigned long suspend_jiffies;
  82. };
  83. #endif
  84. /**
  85. * struct hif_msi_info - Structure to hold msi info
  86. * @magic: cookie
  87. * @magic_da: dma address
  88. * @dmaContext: dma address
  89. *
  90. * Structure to hold MSI information for PCIe interrupts
  91. */
  92. struct hif_msi_info {
  93. void *magic;
  94. dma_addr_t magic_da;
  95. OS_DMA_MEM_CONTEXT(dmacontext)
  96. };
  97. struct hif_pci_softc {
  98. struct HIF_CE_state ce_sc;
  99. void __iomem *mem; /* PCI address. */
  100. /* For efficiency, should be first in struct */
  101. struct device *dev;
  102. struct pci_dev *pdev;
  103. int num_msi_intrs; /* number of MSI interrupts granted */
  104. /* 0 --> using legacy PCI line interrupts */
  105. struct tasklet_struct intr_tq; /* tasklet */
  106. struct hif_msi_info msi_info;
  107. int ce_msi_irq_num[CE_COUNT_MAX];
  108. int irq;
  109. int irq_event;
  110. int cacheline_sz;
  111. u16 devid;
  112. struct hif_tasklet_entry tasklet_entries[HIF_MAX_TASKLET_NUM];
  113. bool pci_enabled;
  114. qdf_spinlock_t irq_lock;
  115. qdf_work_t reschedule_tasklet_work;
  116. uint32_t lcr_val;
  117. #ifdef FEATURE_RUNTIME_PM
  118. atomic_t pm_state;
  119. uint32_t prevent_suspend_cnt;
  120. struct hif_pci_pm_stats pm_stats;
  121. struct work_struct pm_work;
  122. spinlock_t runtime_lock;
  123. struct timer_list runtime_timer;
  124. struct list_head prevent_suspend_list;
  125. unsigned long runtime_timer_expires;
  126. struct hif_pm_runtime_lock *prevent_linkdown_lock;
  127. #ifdef WLAN_OPEN_SOURCE
  128. struct dentry *pm_dentry;
  129. #endif
  130. #endif
  131. };
  132. bool hif_pci_targ_is_present(struct hif_softc *scn, void *__iomem *mem);
  133. int hif_configure_irq(struct hif_softc *sc);
  134. void hif_pci_cancel_deferred_target_sleep(struct hif_softc *scn);
  135. void wlan_tasklet(unsigned long data);
  136. irqreturn_t hif_pci_interrupt_handler(int irq, void *arg);
  137. /*
  138. * A firmware interrupt to the Host is indicated by the
  139. * low bit of SCRATCH_3_ADDRESS being set.
  140. */
  141. #define FW_EVENT_PENDING_REG_ADDRESS SCRATCH_3_ADDRESS
  142. /*
  143. * Typically, MSI Interrupts are used with PCIe. To force use of legacy
  144. * "ABCD" PCI line interrupts rather than MSI, define
  145. * FORCE_LEGACY_PCI_INTERRUPTS.
  146. * Even when NOT forced, the driver may attempt to use legacy PCI interrupts
  147. * MSI allocation fails
  148. */
  149. #define LEGACY_INTERRUPTS(sc) ((sc)->num_msi_intrs == 0)
  150. /*
  151. * There may be some pending tx frames during platform suspend.
  152. * Suspend operation should be delayed until those tx frames are
  153. * transfered from the host to target. This macro specifies how
  154. * long suspend thread has to sleep before checking pending tx
  155. * frame count.
  156. */
  157. #define OL_ATH_TX_DRAIN_WAIT_DELAY 50 /* ms */
  158. #define HIF_CE_DRAIN_WAIT_DELAY 10 /* ms */
  159. /*
  160. * Wait time (in unit of OL_ATH_TX_DRAIN_WAIT_DELAY) for pending
  161. * tx frame completion before suspend. Refer: hif_pci_suspend()
  162. */
  163. #ifndef QCA_WIFI_3_0_EMU
  164. #define OL_ATH_TX_DRAIN_WAIT_CNT 10
  165. #else
  166. #define OL_ATH_TX_DRAIN_WAIT_CNT 60
  167. #endif
  168. #ifdef FEATURE_RUNTIME_PM
  169. #include <linux/pm_runtime.h>
  170. static inline int hif_pm_request_resume(struct device *dev)
  171. {
  172. return pm_request_resume(dev);
  173. }
  174. static inline int __hif_pm_runtime_get(struct device *dev)
  175. {
  176. return pm_runtime_get(dev);
  177. }
  178. static inline int hif_pm_runtime_put_auto(struct device *dev)
  179. {
  180. return pm_runtime_put_autosuspend(dev);
  181. }
  182. static inline void hif_pm_runtime_mark_last_busy(struct device *dev)
  183. {
  184. pm_runtime_mark_last_busy(dev);
  185. }
  186. static inline int hif_pm_runtime_resume(struct device *dev)
  187. {
  188. return pm_runtime_resume(dev);
  189. }
  190. #else
  191. static inline void hif_pm_runtime_mark_last_busy(struct device *dev) { }
  192. #endif /* FEATURE_RUNTIME_PM */
  193. #endif /* __ATH_PCI_H__ */