New upstream version 17.08
[deb_dpdk.git] / drivers / bus / fslmc / mc / fsl_dpio_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  * Copyright 2016 NXP.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution.
17  * * Neither the name of the above-listed copyright holders nor the
18  * names of any contributors may be used to endorse or promote products
19  * derived from this software without specific prior written permission.
20  *
21  *   GPL LICENSE SUMMARY
22  *
23  * ALTERNATIVELY, this software may be distributed under the terms of the
24  * GNU General Public License ("GPL") as published by the Free Software
25  * Foundation, either version 2 of that License or (at your option) any
26  * later version.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
29  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
32  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38  * POSSIBILITY OF SUCH DAMAGE.
39  */
40 #ifndef _FSL_DPIO_CMD_H
41 #define _FSL_DPIO_CMD_H
42
43 /* DPIO Version */
44 #define DPIO_VER_MAJOR                          4
45 #define DPIO_VER_MINOR                          2
46
47 /* Command IDs */
48 #define DPIO_CMDID_CLOSE                                0x8001
49 #define DPIO_CMDID_OPEN                                 0x8031
50 #define DPIO_CMDID_CREATE                               0x9031
51 #define DPIO_CMDID_DESTROY                              0x9831
52 #define DPIO_CMDID_GET_API_VERSION                      0xa031
53
54 #define DPIO_CMDID_ENABLE                               0x0021
55 #define DPIO_CMDID_DISABLE                              0x0031
56 #define DPIO_CMDID_GET_ATTR                             0x0041
57 #define DPIO_CMDID_RESET                                0x0051
58 #define DPIO_CMDID_IS_ENABLED                           0x0061
59
60 #define DPIO_CMDID_SET_STASHING_DEST                    0x1201
61 #define DPIO_CMDID_GET_STASHING_DEST                    0x1211
62 #define DPIO_CMDID_ADD_STATIC_DEQUEUE_CHANNEL           0x1221
63 #define DPIO_CMDID_REMOVE_STATIC_DEQUEUE_CHANNEL        0x1231
64
65 /*                cmd, param, offset, width, type, arg_name */
66 #define DPIO_CMD_OPEN(cmd, dpio_id) \
67         MC_CMD_OP(cmd, 0, 0,  32, uint32_t,     dpio_id)
68
69 /*                cmd, param, offset, width, type, arg_name */
70 #define DPIO_CMD_CREATE(cmd, cfg) \
71 do { \
72         MC_CMD_OP(cmd, 0, 16, 2,  enum dpio_channel_mode,       \
73                                            cfg->channel_mode);\
74         MC_CMD_OP(cmd, 0, 32, 8,  uint8_t, cfg->num_priorities);\
75 } while (0)
76
77 /*                cmd, param, offset, width, type, arg_name */
78 #define DPIO_RSP_IS_ENABLED(cmd, en) \
79         MC_RSP_OP(cmd, 0, 0,  1,  int,      en)
80
81 /*                cmd, param, offset, width, type, arg_name */
82 #define DPIO_RSP_GET_ATTRIBUTES(cmd, attr) \
83 do { \
84         MC_RSP_OP(cmd, 0,  0, 32, int,      (attr)->id);\
85         MC_RSP_OP(cmd, 0, 32, 16, uint16_t, (attr)->qbman_portal_id);\
86         MC_RSP_OP(cmd, 0, 48,  8, uint8_t,  (attr)->num_priorities);\
87         MC_RSP_OP(cmd, 0, 56,  4, enum dpio_channel_mode,\
88                         (attr)->channel_mode);\
89         MC_RSP_OP(cmd, 1,  0, 64, uint64_t, (attr)->qbman_portal_ce_offset);\
90         MC_RSP_OP(cmd, 2,  0, 64, uint64_t, (attr)->qbman_portal_ci_offset);\
91         MC_RSP_OP(cmd, 3,  0, 32, uint32_t, (attr)->qbman_version);\
92         MC_RSP_OP(cmd, 4,  0, 32, uint32_t, (attr)->clk);\
93 } while (0)
94
95 /*                cmd, param, offset, width, type, arg_name */
96 #define DPIO_CMD_SET_STASHING_DEST(cmd, sdest) \
97         MC_CMD_OP(cmd, 0, 0,  8,  uint8_t,  sdest)
98
99 /*                cmd, param, offset, width, type, arg_name */
100 #define DPIO_RSP_GET_STASHING_DEST(cmd, sdest) \
101         MC_RSP_OP(cmd, 0, 0,  8,  uint8_t,  sdest)
102
103 /*                cmd, param, offset, width, type, arg_name */
104 #define DPIO_CMD_ADD_STATIC_DEQUEUE_CHANNEL(cmd, dpcon_id) \
105         MC_CMD_OP(cmd, 0, 0,  32, int,      dpcon_id)
106
107 /*                cmd, param, offset, width, type, arg_name */
108 #define DPIO_RSP_ADD_STATIC_DEQUEUE_CHANNEL(cmd, channel_index) \
109         MC_RSP_OP(cmd, 0, 0,  8,  uint8_t,  channel_index)
110
111 /*                cmd, param, offset, width, type, arg_name */
112 #define DPIO_CMD_REMOVE_STATIC_DEQUEUE_CHANNEL(cmd, dpcon_id) \
113         MC_CMD_OP(cmd, 0, 0,  32, int,      dpcon_id)
114
115 /*                cmd, param, offset, width, type,      arg_name */
116 #define DPIO_RSP_GET_API_VERSION(cmd, major, minor) \
117 do { \
118         MC_RSP_OP(cmd, 0, 0,  16, uint16_t, major);\
119         MC_RSP_OP(cmd, 0, 16, 16, uint16_t, minor);\
120 } while (0)
121
122 #endif /* _FSL_DPIO_CMD_H */