source: rtems-libbsd/linux/drivers/soc/fsl/qbman/qman_priv.h @ cf40770

55-freebsd-126-freebsd-12
Last change on this file since cf40770 was cf40770, checked in by Sebastian Huber <sebastian.huber@…>, on 05/18/17 at 05:27:33

Linux update to 4.12-rc1+

Linux baseline b23afd384801711ab6dbccd259cc14cb09a1dcaf.

  • Property mode set to 100644
File size: 8.7 KB
RevLine 
[cd089b9]1/* Copyright 2008 - 2016 Freescale Semiconductor, Inc.
[28ee86a]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
31#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
33#include "dpaa_sys.h"
34
35#include <soc/fsl/qman.h>
[cf40770]36#include <linux/dma-mapping.h>
[28ee86a]37#include <linux/iommu.h>
[cd089b9]38
39#if defined(CONFIG_FSL_PAMU)
[28ee86a]40#include <asm/fsl_pamu_stash.h>
[cd089b9]41#endif
42
43struct qm_mcr_querywq {
44        u8 verb;
45        u8 result;
46        u16 channel_wq; /* ignores wq (3 lsbits): _res[0-2] */
47        u8 __reserved[28];
48        u32 wq_len[8];
49} __packed;
50
51static inline u16 qm_mcr_querywq_get_chan(const struct qm_mcr_querywq *wq)
52{
53        return wq->channel_wq >> 3;
54}
55
56struct __qm_mcr_querycongestion {
57        u32 state[8];
58};
59
60/* "Query Congestion Group State" */
61struct qm_mcr_querycongestion {
62        u8 verb;
63        u8 result;
64        u8 __reserved[30];
65        /* Access this struct using qman_cgrs_get() */
66        struct __qm_mcr_querycongestion state;
67} __packed;
68
69/* "Query CGR" */
70struct qm_mcr_querycgr {
71        u8 verb;
72        u8 result;
73        u16 __reserved1;
74        struct __qm_mc_cgr cgr; /* CGR fields */
75        u8 __reserved2[6];
76        u8 i_bcnt_hi;   /* high 8-bits of 40-bit "Instant" */
77        __be32 i_bcnt_lo;       /* low 32-bits of 40-bit */
78        u8 __reserved3[3];
79        u8 a_bcnt_hi;   /* high 8-bits of 40-bit "Average" */
80        __be32 a_bcnt_lo;       /* low 32-bits of 40-bit */
81        __be32 cscn_targ_swp[4];
82} __packed;
83
84static inline u64 qm_mcr_querycgr_i_get64(const struct qm_mcr_querycgr *q)
85{
86        return ((u64)q->i_bcnt_hi << 32) | be32_to_cpu(q->i_bcnt_lo);
87}
88static inline u64 qm_mcr_querycgr_a_get64(const struct qm_mcr_querycgr *q)
89{
90        return ((u64)q->a_bcnt_hi << 32) | be32_to_cpu(q->a_bcnt_lo);
91}
92
[28ee86a]93/* Congestion Groups */
94
[cd089b9]95/*
96 * This wrapper represents a bit-array for the state of the 256 QMan congestion
[28ee86a]97 * groups. Is also used as a *mask* for congestion groups, eg. so we ignore
98 * those that don't concern us. We harness the structure and accessor details
99 * already used in the management command to query congestion groups.
100 */
[cd089b9]101#define CGR_BITS_PER_WORD 5
102#define CGR_WORD(x)     ((x) >> CGR_BITS_PER_WORD)
103#define CGR_BIT(x)      (BIT(31) >> ((x) & 0x1f))
104#define CGR_NUM (sizeof(struct __qm_mcr_querycongestion) << 3)
105
[28ee86a]106struct qman_cgrs {
107        struct __qm_mcr_querycongestion q;
108};
[cd089b9]109
[28ee86a]110static inline void qman_cgrs_init(struct qman_cgrs *c)
111{
112        memset(c, 0, sizeof(*c));
113}
[cd089b9]114
[28ee86a]115static inline void qman_cgrs_fill(struct qman_cgrs *c)
116{
117        memset(c, 0xff, sizeof(*c));
118}
[cd089b9]119
120static inline int qman_cgrs_get(struct qman_cgrs *c, u8 cgr)
[28ee86a]121{
[cd089b9]122        return c->q.state[CGR_WORD(cgr)] & CGR_BIT(cgr);
[28ee86a]123}
[cd089b9]124
[28ee86a]125static inline void qman_cgrs_cp(struct qman_cgrs *dest,
126                                const struct qman_cgrs *src)
127{
128        *dest = *src;
129}
[cd089b9]130
[28ee86a]131static inline void qman_cgrs_and(struct qman_cgrs *dest,
132                        const struct qman_cgrs *a, const struct qman_cgrs *b)
133{
134        int ret;
[cd089b9]135        u32 *_d = dest->q.state;
136        const u32 *_a = a->q.state;
137        const u32 *_b = b->q.state;
[28ee86a]138
139        for (ret = 0; ret < 8; ret++)
[cd089b9]140                *_d++ = *_a++ & *_b++;
[28ee86a]141}
[cd089b9]142
[28ee86a]143static inline void qman_cgrs_xor(struct qman_cgrs *dest,
144                        const struct qman_cgrs *a, const struct qman_cgrs *b)
145{
146        int ret;
[cd089b9]147        u32 *_d = dest->q.state;
148        const u32 *_a = a->q.state;
149        const u32 *_b = b->q.state;
[28ee86a]150
151        for (ret = 0; ret < 8; ret++)
[cd089b9]152                *_d++ = *_a++ ^ *_b++;
[28ee86a]153}
154
[cd089b9]155void qman_init_cgr_all(void);
[28ee86a]156
157struct qm_portal_config {
[cd089b9]158        /*
159         * Corenet portal addresses;
160         * [0]==cache-enabled, [1]==cache-inhibited.
161         */
162        void __iomem *addr_virt[2];
[28ee86a]163#ifndef __rtems__
[cd089b9]164        struct device *dev;
[28ee86a]165        struct iommu_domain *iommu_domain;
166        /* Allow these to be joined in lists */
167        struct list_head list;
168#endif /* __rtems__ */
169        /* User-visible portal configuration settings */
[cd089b9]170        /* portal is affined to this cpu */
171        int cpu;
172        /* portal interrupt line */
173        int irq;
174        /*
175         * the portal's dedicated channel id, used initialising
176         * frame queues to target this portal when scheduled
177         */
178        u16 channel;
179        /*
180         * mask of pool channels this portal has dequeue access to
181         * (using QM_SDQCR_CHANNELS_POOL(n) for the bitmask)
182         */
183        u32 pools;
[28ee86a]184};
185
186/* Revision info (for errata and feature handling) */
187#define QMAN_REV11 0x0101
188#define QMAN_REV12 0x0102
189#define QMAN_REV20 0x0200
190#define QMAN_REV30 0x0300
191#define QMAN_REV31 0x0301
192extern u16 qman_ip_rev; /* 0 if uninitialised, otherwise QMAN_REVx */
193
[cd089b9]194#define QM_FQID_RANGE_START 1 /* FQID 0 reserved for internal use */
195extern struct gen_pool *qm_fqalloc; /* FQID allocator */
196extern struct gen_pool *qm_qpalloc; /* pool-channel allocator */
197extern struct gen_pool *qm_cgralloc; /* CGR ID allocator */
198u32 qm_get_pools_sdqcr(void);
[28ee86a]199
[cd089b9]200int qman_wq_alloc(void);
[28ee86a]201void qman_liodn_fixup(u16 channel);
[cd089b9]202void qman_set_sdest(u16 channel, unsigned int cpu_idx);
[28ee86a]203
204struct qman_portal *qman_create_affine_portal(
205                        const struct qm_portal_config *config,
206                        const struct qman_cgrs *cgrs);
207const struct qm_portal_config *qman_destroy_affine_portal(void);
208
[cd089b9]209/*
210 * qman_query_fq - Queries FQD fields (via h/w query command)
211 * @fq: the frame queue object to be queried
212 * @fqd: storage for the queried FQD fields
213 */
214int qman_query_fq(struct qman_fq *fq, struct qm_fqd *fqd);
[28ee86a]215
[cd089b9]216int qman_alloc_fq_table(u32 num_fqids);
217
218/*   QMan s/w corenet portal, low-level i/face   */
[28ee86a]219
[cd089b9]220/*
221 * For qm_dqrr_sdqcr_set(); Choose one SOURCE. Choose one COUNT. Choose one
[28ee86a]222 * dequeue TYPE. Choose TOKEN (8-bit).
223 * If SOURCE == CHANNELS,
224 *   Choose CHANNELS_DEDICATED and/or CHANNELS_POOL(n).
225 *   You can choose DEDICATED_PRECEDENCE if the portal channel should have
226 *   priority.
227 * If SOURCE == SPECIFICWQ,
228 *     Either select the work-queue ID with SPECIFICWQ_WQ(), or select the
229 *     channel (SPECIFICWQ_DEDICATED or SPECIFICWQ_POOL()) and specify the
230 *     work-queue priority (0-7) with SPECIFICWQ_WQ() - either way, you get the
231 *     same value.
232 */
233#define QM_SDQCR_SOURCE_CHANNELS        0x0
234#define QM_SDQCR_SOURCE_SPECIFICWQ      0x40000000
235#define QM_SDQCR_COUNT_EXACT1           0x0
236#define QM_SDQCR_COUNT_UPTO3            0x20000000
237#define QM_SDQCR_DEDICATED_PRECEDENCE   0x10000000
238#define QM_SDQCR_TYPE_MASK              0x03000000
239#define QM_SDQCR_TYPE_NULL              0x0
240#define QM_SDQCR_TYPE_PRIO_QOS          0x01000000
241#define QM_SDQCR_TYPE_ACTIVE_QOS        0x02000000
242#define QM_SDQCR_TYPE_ACTIVE            0x03000000
243#define QM_SDQCR_TOKEN_MASK             0x00ff0000
244#define QM_SDQCR_TOKEN_SET(v)           (((v) & 0xff) << 16)
245#define QM_SDQCR_TOKEN_GET(v)           (((v) >> 16) & 0xff)
246#define QM_SDQCR_CHANNELS_DEDICATED     0x00008000
247#define QM_SDQCR_SPECIFICWQ_MASK        0x000000f7
248#define QM_SDQCR_SPECIFICWQ_DEDICATED   0x00000000
249#define QM_SDQCR_SPECIFICWQ_POOL(n)     ((n) << 4)
250#define QM_SDQCR_SPECIFICWQ_WQ(n)       (n)
251
252/* For qm_dqrr_vdqcr_set(): use FQID(n) to fill in the frame queue ID */
253#define QM_VDQCR_FQID_MASK              0x00ffffff
254#define QM_VDQCR_FQID(n)                ((n) & QM_VDQCR_FQID_MASK)
255
[cd089b9]256/*
257 * Used by all portal interrupt registers except 'inhibit'
[28ee86a]258 * Channels with frame availability
259 */
260#define QM_PIRQ_DQAVAIL 0x0000ffff
261
262/* The DQAVAIL interrupt fields break down into these bits; */
263#define QM_DQAVAIL_PORTAL       0x8000          /* Portal channel */
264#define QM_DQAVAIL_POOL(n)      (0x8000 >> (n)) /* Pool channel, n==[1..15] */
265#define QM_DQAVAIL_MASK         0xffff
266/* This mask contains all the "irqsource" bits visible to API users */
267#define QM_PIRQ_VISIBLE (QM_PIRQ_SLOW | QM_PIRQ_DQRI)
268
[cd089b9]269extern struct qman_portal *affine_portals[NR_CPUS];
270extern struct qman_portal *qman_dma_portal;
[28ee86a]271const struct qm_portal_config *qman_get_qm_portal_config(
272                                                struct qman_portal *portal);
[cd089b9]273#ifdef __rtems__
274void qman_sysinit_portals(void);
275#endif /* __rtems__ */
Note: See TracBrowser for help on using the repository browser.