pcic.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* SPDX-License-Identifier: BSD-3-Clause-Clear */
  2. /*
  3. * Copyright (c) 2019-2021 The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2021-2022, Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef _ATH11K_PCI_CMN_H
  7. #define _ATH11K_PCI_CMN_H
  8. #include "core.h"
  9. #define ATH11K_PCI_IRQ_CE0_OFFSET 3
  10. #define ATH11K_PCI_IRQ_DP_OFFSET 14
  11. #define ATH11K_PCI_CE_WAKE_IRQ 2
  12. #define ATH11K_PCI_WINDOW_ENABLE_BIT 0x40000000
  13. #define ATH11K_PCI_WINDOW_REG_ADDRESS 0x310c
  14. #define ATH11K_PCI_WINDOW_VALUE_MASK GENMASK(24, 19)
  15. #define ATH11K_PCI_WINDOW_START 0x80000
  16. #define ATH11K_PCI_WINDOW_RANGE_MASK GENMASK(18, 0)
  17. /* BAR0 + 4k is always accessible, and no
  18. * need to force wakeup.
  19. * 4K - 32 = 0xFE0
  20. */
  21. #define ATH11K_PCI_ACCESS_ALWAYS_OFF 0xFE0
  22. int ath11k_pcic_get_user_msi_assignment(struct ath11k_base *ab, char *user_name,
  23. int *num_vectors, u32 *user_base_data,
  24. u32 *base_vector);
  25. void ath11k_pcic_write32(struct ath11k_base *ab, u32 offset, u32 value);
  26. u32 ath11k_pcic_read32(struct ath11k_base *ab, u32 offset);
  27. void ath11k_pcic_get_msi_address(struct ath11k_base *ab, u32 *msi_addr_lo,
  28. u32 *msi_addr_hi);
  29. void ath11k_pcic_get_ce_msi_idx(struct ath11k_base *ab, u32 ce_id, u32 *msi_idx);
  30. void ath11k_pcic_free_irq(struct ath11k_base *ab);
  31. int ath11k_pcic_config_irq(struct ath11k_base *ab);
  32. void ath11k_pcic_ext_irq_enable(struct ath11k_base *ab);
  33. void ath11k_pcic_ext_irq_disable(struct ath11k_base *ab);
  34. void ath11k_pcic_stop(struct ath11k_base *ab);
  35. int ath11k_pcic_start(struct ath11k_base *ab);
  36. int ath11k_pcic_map_service_to_pipe(struct ath11k_base *ab, u16 service_id,
  37. u8 *ul_pipe, u8 *dl_pipe);
  38. void ath11k_pcic_ce_irqs_enable(struct ath11k_base *ab);
  39. void ath11k_pcic_ce_irq_disable_sync(struct ath11k_base *ab);
  40. int ath11k_pcic_init_msi_config(struct ath11k_base *ab);
  41. int ath11k_pcic_register_pci_ops(struct ath11k_base *ab,
  42. const struct ath11k_pci_ops *pci_ops);
  43. int ath11k_pcic_read(struct ath11k_base *ab, void *buf, u32 start, u32 end);
  44. void ath11k_pci_enable_ce_irqs_except_wake_irq(struct ath11k_base *ab);
  45. void ath11k_pci_disable_ce_irqs_except_wake_irq(struct ath11k_base *ab);
  46. #endif