multibus_pci.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include "hif.h"
  19. #include "hif_main.h"
  20. #include "multibus.h"
  21. #include "pci_api.h"
  22. #include "hif_io32.h"
  23. #include "dummy.h"
  24. #include "ce_api.h"
  25. /**
  26. * hif_initialize_pci_ops() - initialize the pci ops
  27. * @bus_ops: hif_bus_ops table pointer to initialize
  28. *
  29. * Return: QDF_STATUS_SUCCESS
  30. */
  31. QDF_STATUS hif_initialize_pci_ops(struct hif_softc *hif_sc)
  32. {
  33. struct hif_bus_ops *bus_ops = &hif_sc->bus_ops;
  34. bus_ops->hif_bus_open = &hif_pci_open;
  35. bus_ops->hif_bus_close = &hif_pci_close;
  36. bus_ops->hif_bus_prevent_linkdown = &hif_pci_prevent_linkdown;
  37. bus_ops->hif_reset_soc = &hif_pci_reset_soc;
  38. bus_ops->hif_bus_suspend = &hif_pci_bus_suspend;
  39. bus_ops->hif_bus_resume = &hif_pci_bus_resume;
  40. bus_ops->hif_bus_suspend_noirq = &hif_pci_bus_suspend_noirq;
  41. bus_ops->hif_bus_resume_noirq = &hif_pci_bus_resume_noirq;
  42. /* do not put the target to sleep for epping or maxperf mode */
  43. if (CONFIG_ATH_PCIE_MAX_PERF == 0 &&
  44. !QDF_IS_EPPING_ENABLED(hif_get_conparam(hif_sc)))
  45. bus_ops->hif_target_sleep_state_adjust =
  46. &hif_pci_target_sleep_state_adjust;
  47. else
  48. bus_ops->hif_target_sleep_state_adjust =
  49. &hif_dummy_target_sleep_state_adjust;
  50. bus_ops->hif_disable_isr = &hif_pci_disable_isr;
  51. bus_ops->hif_nointrs = &hif_pci_nointrs;
  52. bus_ops->hif_enable_bus = &hif_pci_enable_bus;
  53. bus_ops->hif_disable_bus = &hif_pci_disable_bus;
  54. #ifdef FEATURE_RUNTIME_PM
  55. bus_ops->hif_bus_get_rpm_ctx = &hif_pci_get_rpm_ctx;
  56. bus_ops->hif_bus_get_dev = &hif_pci_get_dev;
  57. #endif
  58. bus_ops->hif_bus_configure = &hif_pci_bus_configure;
  59. bus_ops->hif_get_config_item = &hif_dummy_get_config_item;
  60. bus_ops->hif_set_mailbox_swap = &hif_dummy_set_mailbox_swap;
  61. bus_ops->hif_claim_device = &hif_dummy_claim_device;
  62. bus_ops->hif_shutdown_device = &hif_ce_stop;
  63. bus_ops->hif_stop = &hif_ce_stop;
  64. bus_ops->hif_cancel_deferred_target_sleep =
  65. &hif_pci_cancel_deferred_target_sleep;
  66. bus_ops->hif_irq_disable = &hif_pci_irq_disable;
  67. bus_ops->hif_irq_enable = &hif_pci_irq_enable;
  68. bus_ops->hif_dump_registers = &hif_pci_dump_registers;
  69. bus_ops->hif_dump_target_memory = &hif_ce_dump_target_memory;
  70. bus_ops->hif_reg_read32 = &hif_pci_reg_read32;
  71. bus_ops->hif_reg_write32 = &hif_pci_reg_write32;
  72. bus_ops->hif_ipa_get_ce_resource = &hif_ce_ipa_get_ce_resource;
  73. bus_ops->hif_mask_interrupt_call = &hif_dummy_mask_interrupt_call;
  74. bus_ops->hif_enable_power_management =
  75. &hif_pci_enable_power_management;
  76. bus_ops->hif_disable_power_management =
  77. &hif_pci_disable_power_management;
  78. bus_ops->hif_grp_irq_configure = &hif_pci_configure_grp_irq;
  79. bus_ops->hif_grp_irq_deconfigure = &hif_pci_deconfigure_grp_irq;
  80. bus_ops->hif_display_stats =
  81. &hif_pci_display_stats;
  82. bus_ops->hif_clear_stats =
  83. &hif_pci_clear_stats;
  84. bus_ops->hif_addr_in_boundary = &hif_pci_addr_in_boundary;
  85. /* default to legacy mapping handler; override as needed */
  86. bus_ops->hif_map_ce_to_irq = &hif_pci_legacy_map_ce_to_irq;
  87. bus_ops->hif_needs_bmi = &hif_pci_needs_bmi;
  88. bus_ops->hif_config_irq_affinity =
  89. &hif_pci_config_irq_affinity;
  90. bus_ops->hif_config_irq_by_ceid = &hif_ce_msi_configure_irq_by_ceid;
  91. bus_ops->hif_config_irq_clear_cpu_affinity =
  92. &hif_pci_config_irq_clear_cpu_affinity;
  93. bus_ops->hif_log_bus_info = &hif_log_pcie_info;
  94. return QDF_STATUS_SUCCESS;
  95. }
  96. /**
  97. * hif_update_irq_ops_with_pci() - reinitialize the pci ops
  98. * for hybrid bus type device qcn6122 ie.connected to pci slot
  99. * but act as ahb bus device from host perspective
  100. *
  101. * @hif_sc: hif_softc to get bus ops
  102. *
  103. * Return: QDF_STATUS_SUCCESS
  104. */
  105. QDF_STATUS hif_update_irq_ops_with_pci(struct hif_softc *hif_sc)
  106. {
  107. struct hif_bus_ops *bus_ops = &hif_sc->bus_ops;
  108. bus_ops->hif_grp_irq_configure = &hif_pci_configure_grp_irq;
  109. bus_ops->hif_grp_irq_deconfigure = &hif_pci_deconfigure_grp_irq;
  110. bus_ops->hif_nointrs = &hif_pci_nointrs;
  111. bus_ops->hif_irq_disable = &hif_pci_irq_disable;
  112. bus_ops->hif_irq_enable = &hif_pci_irq_enable;
  113. bus_ops->hif_disable_isr = &hif_pci_disable_isr;
  114. return QDF_STATUS_SUCCESS;
  115. }
  116. /**
  117. * hif_pci_get_context_size() - return the size of the pci context
  118. *
  119. * Return the size of the context. (0 for invalid bus)
  120. */
  121. int hif_pci_get_context_size(void)
  122. {
  123. return sizeof(struct hif_pci_softc);
  124. }