f7f76902fefb244dc87d60644187bf47d289d249
[deb_dpdk.git] / drivers / bus / fslmc / mc / fsl_dpcon_cmd.h
1 /*-
2  * This file is provided under a dual BSD/GPLv2 license. When using or
3  * redistributing this file, you may do so under either license.
4  *
5  *   BSD LICENSE
6  *
7  * Copyright 2013-2016 Freescale Semiconductor Inc.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions are met:
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in the
15  * documentation and/or other materials provided with the distribution.
16  * * Neither the name of the above-listed copyright holders nor the
17  * names of any contributors may be used to endorse or promote products
18  * derived from this software without specific prior written permission.
19  *
20  *   GPL LICENSE SUMMARY
21  *
22  * ALTERNATIVELY, this software may be distributed under the terms of the
23  * GNU General Public License ("GPL") as published by the Free Software
24  * Foundation, either version 2 of that License or (at your option) any
25  * later version.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
31  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37  * POSSIBILITY OF SUCH DAMAGE.
38  */
39 #ifndef _FSL_DPCON_CMD_H
40 #define _FSL_DPCON_CMD_H
41
42 /* DPCON Version */
43 #define DPCON_VER_MAJOR                         3
44 #define DPCON_VER_MINOR                         2
45
46 /* Command IDs */
47 #define DPCON_CMDID_CLOSE                            ((0x800 << 4) | (0x1))
48 #define DPCON_CMDID_OPEN                             ((0x808 << 4) | (0x1))
49 #define DPCON_CMDID_CREATE                           ((0x908 << 4) | (0x1))
50 #define DPCON_CMDID_DESTROY                          ((0x988 << 4) | (0x1))
51 #define DPCON_CMDID_GET_API_VERSION                  ((0xa08 << 4) | (0x1))
52
53 #define DPCON_CMDID_ENABLE                           ((0x002 << 4) | (0x1))
54 #define DPCON_CMDID_DISABLE                          ((0x003 << 4) | (0x1))
55 #define DPCON_CMDID_GET_ATTR                         ((0x004 << 4) | (0x1))
56 #define DPCON_CMDID_RESET                            ((0x005 << 4) | (0x1))
57 #define DPCON_CMDID_IS_ENABLED                       ((0x006 << 4) | (0x1))
58
59 #define DPCON_CMDID_SET_IRQ                          ((0x010 << 4) | (0x1))
60 #define DPCON_CMDID_GET_IRQ                          ((0x011 << 4) | (0x1))
61 #define DPCON_CMDID_SET_IRQ_ENABLE                   ((0x012 << 4) | (0x1))
62 #define DPCON_CMDID_GET_IRQ_ENABLE                   ((0x013 << 4) | (0x1))
63 #define DPCON_CMDID_SET_IRQ_MASK                     ((0x014 << 4) | (0x1))
64 #define DPCON_CMDID_GET_IRQ_MASK                     ((0x015 << 4) | (0x1))
65 #define DPCON_CMDID_GET_IRQ_STATUS                   ((0x016 << 4) | (0x1))
66 #define DPCON_CMDID_CLEAR_IRQ_STATUS                 ((0x017 << 4) | (0x1))
67
68 #define DPCON_CMDID_SET_NOTIFICATION                 ((0x100 << 4) | (0x1))
69
70 /*                cmd, param, offset, width, type, arg_name */
71 #define DPCON_CMD_OPEN(cmd, dpcon_id) \
72         MC_CMD_OP(cmd, 0, 0,  32, int,      dpcon_id)
73
74 /*                cmd, param, offset, width, type, arg_name */
75 #define DPCON_CMD_CREATE(cmd, cfg) \
76         MC_CMD_OP(cmd, 0, 0,  8,  uint8_t,  cfg->num_priorities)
77
78 /*                cmd, param, offset, width, type, arg_name */
79 #define DPCON_RSP_IS_ENABLED(cmd, en) \
80         MC_RSP_OP(cmd, 0, 0,  1,  int,      en)
81
82 /*                cmd, param, offset, width, type, arg_name */
83 #define DPCON_CMD_SET_IRQ(cmd, irq_index, irq_cfg) \
84 do { \
85         MC_CMD_OP(cmd, 0, 0,  8,  uint8_t,  irq_index);\
86         MC_CMD_OP(cmd, 0, 32, 32, uint32_t, irq_cfg->val);\
87         MC_CMD_OP(cmd, 1, 0,  64, uint64_t, irq_cfg->addr);\
88         MC_CMD_OP(cmd, 2, 0,  32, int,      irq_cfg->irq_num); \
89 } while (0)
90
91 /*                cmd, param, offset, width, type, arg_name */
92 #define DPCON_CMD_GET_IRQ(cmd, irq_index) \
93         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  irq_index)
94
95 /*                cmd, param, offset, width, type, arg_name */
96 #define DPCON_RSP_GET_IRQ(cmd, type, irq_cfg) \
97 do { \
98         MC_RSP_OP(cmd, 0, 0,  32, uint32_t, irq_cfg->val);\
99         MC_RSP_OP(cmd, 1, 0,  64, uint64_t, irq_cfg->addr);\
100         MC_RSP_OP(cmd, 2, 0,  32, int,      irq_cfg->irq_num); \
101         MC_RSP_OP(cmd, 2, 32, 32, int,      type);\
102 } while (0)
103
104 /*                cmd, param, offset, width, type, arg_name */
105 #define DPCON_CMD_SET_IRQ_ENABLE(cmd, irq_index, en) \
106 do { \
107         MC_CMD_OP(cmd, 0, 0,  8,  uint8_t,  en); \
108         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  irq_index);\
109 } while (0)
110
111 /*                cmd, param, offset, width, type, arg_name */
112 #define DPCON_CMD_GET_IRQ_ENABLE(cmd, irq_index) \
113         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  irq_index)
114
115 /*                cmd, param, offset, width, type, arg_name */
116 #define DPCON_RSP_GET_IRQ_ENABLE(cmd, en) \
117         MC_RSP_OP(cmd, 0, 0,  8,  uint8_t,  en)
118
119 /*                cmd, param, offset, width, type, arg_name */
120 #define DPCON_CMD_SET_IRQ_MASK(cmd, irq_index, mask) \
121 do { \
122         MC_CMD_OP(cmd, 0, 0,  32, uint32_t, mask); \
123         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  irq_index);\
124 } while (0)
125
126 /*                cmd, param, offset, width, type, arg_name */
127 #define DPCON_CMD_GET_IRQ_MASK(cmd, irq_index) \
128         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  irq_index)
129
130 /*                cmd, param, offset, width, type, arg_name */
131 #define DPCON_RSP_GET_IRQ_MASK(cmd, mask) \
132         MC_RSP_OP(cmd, 0, 0,  32, uint32_t, mask)
133
134 /*                cmd, param, offset, width, type, arg_name */
135 #define DPCON_CMD_GET_IRQ_STATUS(cmd, irq_index, status) \
136 do { \
137         MC_CMD_OP(cmd, 0, 0,  32, uint32_t, status);\
138         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  irq_index);\
139 } while (0)
140
141 /*                cmd, param, offset, width, type, arg_name */
142 #define DPCON_RSP_GET_IRQ_STATUS(cmd, status) \
143         MC_RSP_OP(cmd, 0, 0,  32, uint32_t, status)
144
145 /*                cmd, param, offset, width, type, arg_name */
146 #define DPCON_CMD_CLEAR_IRQ_STATUS(cmd, irq_index, status) \
147 do { \
148         MC_CMD_OP(cmd, 0, 0,  32, uint32_t, status); \
149         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  irq_index);\
150 } while (0)
151
152 /*                cmd, param, offset, width, type, arg_name */
153 #define DPCON_RSP_GET_ATTR(cmd, attr) \
154 do { \
155         MC_RSP_OP(cmd, 0, 0,  32, int,      attr->id);\
156         MC_RSP_OP(cmd, 0, 32, 16, uint16_t, attr->qbman_ch_id);\
157         MC_RSP_OP(cmd, 0, 48, 8,  uint8_t,  attr->num_priorities);\
158 } while (0)
159
160 /*                cmd, param, offset, width, type, arg_name */
161 #define DPCON_CMD_SET_NOTIFICATION(cmd, cfg) \
162 do { \
163         MC_CMD_OP(cmd, 0, 0,  32, int,      cfg->dpio_id);\
164         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t,  cfg->priority);\
165         MC_CMD_OP(cmd, 1, 0,  64, uint64_t, cfg->user_ctx);\
166 } while (0)
167
168 /*                cmd, param, offset, width, type,      arg_name */
169 #define DPCON_RSP_GET_API_VERSION(cmd, major, minor) \
170 do { \
171         MC_RSP_OP(cmd, 0, 0,  16, uint16_t, major);\
172         MC_RSP_OP(cmd, 0, 16, 16, uint16_t, minor);\
173 } while (0)
174
175 #endif /* _FSL_DPCON_CMD_H */