qman_priv.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. /* Copyright 2008 - 2016 Freescale Semiconductor, Inc.
  2. *
  3. * Redistribution and use in source and binary forms, with or without
  4. * modification, are permitted provided that the following conditions are met:
  5. * * Redistributions of source code must retain the above copyright
  6. * notice, this list of conditions and the following disclaimer.
  7. * * Redistributions in binary form must reproduce the above copyright
  8. * notice, this list of conditions and the following disclaimer in the
  9. * documentation and/or other materials provided with the distribution.
  10. * * Neither the name of Freescale Semiconductor nor the
  11. * names of its contributors may be used to endorse or promote products
  12. * derived from this software without specific prior written permission.
  13. *
  14. * ALTERNATIVELY, this software may be distributed under the terms of the
  15. * GNU General Public License ("GPL") as published by the Free Software
  16. * Foundation, either version 2 of that License or (at your option) any
  17. * later version.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
  20. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  21. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
  23. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  24. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  25. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  26. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. #include "dpaa_sys.h"
  31. #include <soc/fsl/qman.h>
  32. #include <linux/dma-mapping.h>
  33. #include <linux/iommu.h>
  34. #if defined(CONFIG_FSL_PAMU)
  35. #include <asm/fsl_pamu_stash.h>
  36. #endif
  37. struct qm_mcr_querywq {
  38. u8 verb;
  39. u8 result;
  40. u16 channel_wq; /* ignores wq (3 lsbits): _res[0-2] */
  41. u8 __reserved[28];
  42. u32 wq_len[8];
  43. } __packed;
  44. static inline u16 qm_mcr_querywq_get_chan(const struct qm_mcr_querywq *wq)
  45. {
  46. return wq->channel_wq >> 3;
  47. }
  48. struct __qm_mcr_querycongestion {
  49. u32 state[8];
  50. };
  51. /* "Query Congestion Group State" */
  52. struct qm_mcr_querycongestion {
  53. u8 verb;
  54. u8 result;
  55. u8 __reserved[30];
  56. /* Access this struct using qman_cgrs_get() */
  57. struct __qm_mcr_querycongestion state;
  58. } __packed;
  59. /* "Query CGR" */
  60. struct qm_mcr_querycgr {
  61. u8 verb;
  62. u8 result;
  63. u16 __reserved1;
  64. struct __qm_mc_cgr cgr; /* CGR fields */
  65. u8 __reserved2[6];
  66. u8 i_bcnt_hi; /* high 8-bits of 40-bit "Instant" */
  67. __be32 i_bcnt_lo; /* low 32-bits of 40-bit */
  68. u8 __reserved3[3];
  69. u8 a_bcnt_hi; /* high 8-bits of 40-bit "Average" */
  70. __be32 a_bcnt_lo; /* low 32-bits of 40-bit */
  71. __be32 cscn_targ_swp[4];
  72. } __packed;
  73. static inline u64 qm_mcr_querycgr_i_get64(const struct qm_mcr_querycgr *q)
  74. {
  75. return ((u64)q->i_bcnt_hi << 32) | be32_to_cpu(q->i_bcnt_lo);
  76. }
  77. static inline u64 qm_mcr_querycgr_a_get64(const struct qm_mcr_querycgr *q)
  78. {
  79. return ((u64)q->a_bcnt_hi << 32) | be32_to_cpu(q->a_bcnt_lo);
  80. }
  81. /* Congestion Groups */
  82. /*
  83. * This wrapper represents a bit-array for the state of the 256 QMan congestion
  84. * groups. Is also used as a *mask* for congestion groups, eg. so we ignore
  85. * those that don't concern us. We harness the structure and accessor details
  86. * already used in the management command to query congestion groups.
  87. */
  88. #define CGR_BITS_PER_WORD 5
  89. #define CGR_WORD(x) ((x) >> CGR_BITS_PER_WORD)
  90. #define CGR_BIT(x) (BIT(31) >> ((x) & 0x1f))
  91. #define CGR_NUM (sizeof(struct __qm_mcr_querycongestion) << 3)
  92. struct qman_cgrs {
  93. struct __qm_mcr_querycongestion q;
  94. };
  95. static inline void qman_cgrs_init(struct qman_cgrs *c)
  96. {
  97. memset(c, 0, sizeof(*c));
  98. }
  99. static inline void qman_cgrs_fill(struct qman_cgrs *c)
  100. {
  101. memset(c, 0xff, sizeof(*c));
  102. }
  103. static inline int qman_cgrs_get(struct qman_cgrs *c, u8 cgr)
  104. {
  105. return c->q.state[CGR_WORD(cgr)] & CGR_BIT(cgr);
  106. }
  107. static inline void qman_cgrs_cp(struct qman_cgrs *dest,
  108. const struct qman_cgrs *src)
  109. {
  110. *dest = *src;
  111. }
  112. static inline void qman_cgrs_and(struct qman_cgrs *dest,
  113. const struct qman_cgrs *a, const struct qman_cgrs *b)
  114. {
  115. int ret;
  116. u32 *_d = dest->q.state;
  117. const u32 *_a = a->q.state;
  118. const u32 *_b = b->q.state;
  119. for (ret = 0; ret < 8; ret++)
  120. *_d++ = *_a++ & *_b++;
  121. }
  122. static inline void qman_cgrs_xor(struct qman_cgrs *dest,
  123. const struct qman_cgrs *a, const struct qman_cgrs *b)
  124. {
  125. int ret;
  126. u32 *_d = dest->q.state;
  127. const u32 *_a = a->q.state;
  128. const u32 *_b = b->q.state;
  129. for (ret = 0; ret < 8; ret++)
  130. *_d++ = *_a++ ^ *_b++;
  131. }
  132. void qman_init_cgr_all(void);
  133. struct qm_portal_config {
  134. /* Portal addresses */
  135. void *addr_virt_ce;
  136. void __iomem *addr_virt_ci;
  137. struct device *dev;
  138. struct iommu_domain *iommu_domain;
  139. /* Allow these to be joined in lists */
  140. struct list_head list;
  141. /* User-visible portal configuration settings */
  142. /* portal is affined to this cpu */
  143. int cpu;
  144. /* portal interrupt line */
  145. int irq;
  146. /*
  147. * the portal's dedicated channel id, used initialising
  148. * frame queues to target this portal when scheduled
  149. */
  150. u16 channel;
  151. /*
  152. * mask of pool channels this portal has dequeue access to
  153. * (using QM_SDQCR_CHANNELS_POOL(n) for the bitmask)
  154. */
  155. u32 pools;
  156. };
  157. /* Revision info (for errata and feature handling) */
  158. #define QMAN_REV11 0x0101
  159. #define QMAN_REV12 0x0102
  160. #define QMAN_REV20 0x0200
  161. #define QMAN_REV30 0x0300
  162. #define QMAN_REV31 0x0301
  163. #define QMAN_REV32 0x0302
  164. extern u16 qman_ip_rev; /* 0 if uninitialised, otherwise QMAN_REVx */
  165. #define QM_FQID_RANGE_START 1 /* FQID 0 reserved for internal use */
  166. extern struct gen_pool *qm_fqalloc; /* FQID allocator */
  167. extern struct gen_pool *qm_qpalloc; /* pool-channel allocator */
  168. extern struct gen_pool *qm_cgralloc; /* CGR ID allocator */
  169. u32 qm_get_pools_sdqcr(void);
  170. int qman_wq_alloc(void);
  171. #ifdef CONFIG_FSL_PAMU
  172. #define qman_liodn_fixup __qman_liodn_fixup
  173. #else
  174. static inline void qman_liodn_fixup(u16 channel)
  175. {
  176. }
  177. #endif
  178. void __qman_liodn_fixup(u16 channel);
  179. void qman_set_sdest(u16 channel, unsigned int cpu_idx);
  180. struct qman_portal *qman_create_affine_portal(
  181. const struct qm_portal_config *config,
  182. const struct qman_cgrs *cgrs);
  183. const struct qm_portal_config *qman_destroy_affine_portal(void);
  184. /*
  185. * qman_query_fq - Queries FQD fields (via h/w query command)
  186. * @fq: the frame queue object to be queried
  187. * @fqd: storage for the queried FQD fields
  188. */
  189. int qman_query_fq(struct qman_fq *fq, struct qm_fqd *fqd);
  190. int qman_alloc_fq_table(u32 num_fqids);
  191. /* QMan s/w corenet portal, low-level i/face */
  192. /*
  193. * For qm_dqrr_sdqcr_set(); Choose one SOURCE. Choose one COUNT. Choose one
  194. * dequeue TYPE. Choose TOKEN (8-bit).
  195. * If SOURCE == CHANNELS,
  196. * Choose CHANNELS_DEDICATED and/or CHANNELS_POOL(n).
  197. * You can choose DEDICATED_PRECEDENCE if the portal channel should have
  198. * priority.
  199. * If SOURCE == SPECIFICWQ,
  200. * Either select the work-queue ID with SPECIFICWQ_WQ(), or select the
  201. * channel (SPECIFICWQ_DEDICATED or SPECIFICWQ_POOL()) and specify the
  202. * work-queue priority (0-7) with SPECIFICWQ_WQ() - either way, you get the
  203. * same value.
  204. */
  205. #define QM_SDQCR_SOURCE_CHANNELS 0x0
  206. #define QM_SDQCR_SOURCE_SPECIFICWQ 0x40000000
  207. #define QM_SDQCR_COUNT_EXACT1 0x0
  208. #define QM_SDQCR_COUNT_UPTO3 0x20000000
  209. #define QM_SDQCR_DEDICATED_PRECEDENCE 0x10000000
  210. #define QM_SDQCR_TYPE_MASK 0x03000000
  211. #define QM_SDQCR_TYPE_NULL 0x0
  212. #define QM_SDQCR_TYPE_PRIO_QOS 0x01000000
  213. #define QM_SDQCR_TYPE_ACTIVE_QOS 0x02000000
  214. #define QM_SDQCR_TYPE_ACTIVE 0x03000000
  215. #define QM_SDQCR_TOKEN_MASK 0x00ff0000
  216. #define QM_SDQCR_TOKEN_SET(v) (((v) & 0xff) << 16)
  217. #define QM_SDQCR_TOKEN_GET(v) (((v) >> 16) & 0xff)
  218. #define QM_SDQCR_CHANNELS_DEDICATED 0x00008000
  219. #define QM_SDQCR_SPECIFICWQ_MASK 0x000000f7
  220. #define QM_SDQCR_SPECIFICWQ_DEDICATED 0x00000000
  221. #define QM_SDQCR_SPECIFICWQ_POOL(n) ((n) << 4)
  222. #define QM_SDQCR_SPECIFICWQ_WQ(n) (n)
  223. /* For qm_dqrr_vdqcr_set(): use FQID(n) to fill in the frame queue ID */
  224. #define QM_VDQCR_FQID_MASK 0x00ffffff
  225. #define QM_VDQCR_FQID(n) ((n) & QM_VDQCR_FQID_MASK)
  226. /*
  227. * Used by all portal interrupt registers except 'inhibit'
  228. * Channels with frame availability
  229. */
  230. #define QM_PIRQ_DQAVAIL 0x0000ffff
  231. /* The DQAVAIL interrupt fields break down into these bits; */
  232. #define QM_DQAVAIL_PORTAL 0x8000 /* Portal channel */
  233. #define QM_DQAVAIL_POOL(n) (0x8000 >> (n)) /* Pool channel, n==[1..15] */
  234. #define QM_DQAVAIL_MASK 0xffff
  235. /* This mask contains all the "irqsource" bits visible to API users */
  236. #define QM_PIRQ_VISIBLE (QM_PIRQ_SLOW | QM_PIRQ_DQRI)
  237. extern struct qman_portal *affine_portals[NR_CPUS];
  238. extern struct qman_portal *qman_dma_portal;
  239. const struct qm_portal_config *qman_get_qm_portal_config(
  240. struct qman_portal *portal);
  241. unsigned int qm_get_fqid_maxcnt(void);
  242. int qman_shutdown_fq(u32 fqid);
  243. int qman_requires_cleanup(void);
  244. void qman_done_cleanup(void);
  245. void qman_enable_irqs(void);