hif_io32.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (c) 2015-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 __HIF_IO32_H__
  27. #define __HIF_IO32_H__
  28. #include <linux/io.h>
  29. #include "hif.h"
  30. #include "hif_main.h"
  31. #define hif_read32_mb(addr) ioread32((void __iomem *)addr)
  32. #define hif_write32_mb(addr, value) \
  33. iowrite32((u32)(value), (void __iomem *)(addr))
  34. #define Q_TARGET_ACCESS_BEGIN(scn) \
  35. hif_target_sleep_state_adjust(scn, false, true)
  36. #define Q_TARGET_ACCESS_END(scn) \
  37. hif_target_sleep_state_adjust(scn, true, false)
  38. /*
  39. * A_TARGET_ACCESS_LIKELY will not wait for the target to wake up before
  40. * continuing execution. Because A_TARGET_ACCESS_LIKELY does not guarantee
  41. * that the target is awake before continuing, Q_TARGET_ACCESS macros must
  42. * protect the actual target access. Since Q_TARGET_ACCESS protect the actual
  43. * target access, A_TARGET_ACCESS_LIKELY hints are optional.
  44. *
  45. * To ignore "LIKELY" hints, set CONFIG_TARGET_ACCESS_LIKELY to 0
  46. * (slightly worse performance, less power)
  47. *
  48. * To use "LIKELY" hints, set CONFIG_TARGET_ACCESS_LIKELY to 1
  49. * (slightly better performance, more power)
  50. *
  51. * note: if a bus doesn't use hif_target_sleep_state_adjust, this will have
  52. * no impact.
  53. */
  54. #define CONFIG_TARGET_ACCESS_LIKELY 0
  55. #if CONFIG_TARGET_ACCESS_LIKELY
  56. #define A_TARGET_ACCESS_LIKELY(scn) \
  57. hif_target_sleep_state_adjust(scn, false, false)
  58. #define A_TARGET_ACCESS_UNLIKELY(scn) \
  59. hif_target_sleep_state_adjust(scn, true, false)
  60. #else /* CONFIG_ATH_PCIE_ACCESS_LIKELY */
  61. #define A_TARGET_ACCESS_LIKELY(scn) \
  62. do { \
  63. unsigned long unused = (unsigned long)(scn); \
  64. unused = unused; \
  65. } while (0)
  66. #define A_TARGET_ACCESS_UNLIKELY(scn) \
  67. do { \
  68. unsigned long unused = (unsigned long)(scn); \
  69. unused = unused; \
  70. } while (0)
  71. #endif /* CONFIG_ATH_PCIE_ACCESS_LIKELY */
  72. #ifdef HIF_PCI
  73. #include "hif_io32_pci.h"
  74. #endif
  75. #ifdef HIF_SNOC
  76. #include "hif_io32_snoc.h"
  77. #endif /* HIF_PCI */
  78. #ifdef CONFIG_IO_MEM_ACCESS_DEBUG
  79. uint32_t hif_target_read_checked(struct hif_softc *scn,
  80. uint32_t offset);
  81. void hif_target_write_checked(struct hif_softc *scn, uint32_t offset,
  82. uint32_t value);
  83. #define A_TARGET_READ(scn, offset) \
  84. hif_target_read_checked(scn, (offset))
  85. #define A_TARGET_WRITE(scn, offset, value) \
  86. hif_target_write_checked(scn, (offset), (value))
  87. #else /* CONFIG_ATH_PCIE_ACCESS_DEBUG */
  88. #define A_TARGET_READ(scn, offset) \
  89. hif_read32_mb(scn->mem + (offset))
  90. #define A_TARGET_WRITE(scn, offset, value) \
  91. hif_write32_mb((scn->mem) + (offset), value)
  92. #endif
  93. void hif_irq_enable(struct hif_softc *scn, int irq_id);
  94. void hif_irq_disable(struct hif_softc *scn, int irq_id);
  95. void hif_grp_irq_enable(struct hif_softc *scn, uint32_t grp_id);
  96. void hif_grp_irq_disable(struct hif_softc *scn, uint32_t grp_id);
  97. #endif /* __HIF_IO32_H__ */