4d0522c220182c238e384f87c7d3328d8877eb4d
[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  * Copyright 2016-2017 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_DPCON_CMD_H
41 #define _FSL_DPCON_CMD_H
42
43 /* DPCON Version */
44 #define DPCON_VER_MAJOR                 3
45 #define DPCON_VER_MINOR                 3
46
47
48 /* Command versioning */
49 #define DPCON_CMD_BASE_VERSION          1
50 #define DPCON_CMD_ID_OFFSET             4
51
52 #define DPCON_CMD(id)   ((id << DPCON_CMD_ID_OFFSET) | DPCON_CMD_BASE_VERSION)
53
54 /* Command IDs */
55 #define DPCON_CMDID_CLOSE               DPCON_CMD(0x800)
56 #define DPCON_CMDID_OPEN                DPCON_CMD(0x808)
57 #define DPCON_CMDID_CREATE              DPCON_CMD(0x908)
58 #define DPCON_CMDID_DESTROY             DPCON_CMD(0x988)
59 #define DPCON_CMDID_GET_API_VERSION     DPCON_CMD(0xa08)
60
61 #define DPCON_CMDID_ENABLE              DPCON_CMD(0x002)
62 #define DPCON_CMDID_DISABLE             DPCON_CMD(0x003)
63 #define DPCON_CMDID_GET_ATTR            DPCON_CMD(0x004)
64 #define DPCON_CMDID_RESET               DPCON_CMD(0x005)
65 #define DPCON_CMDID_IS_ENABLED          DPCON_CMD(0x006)
66
67 #define DPCON_CMDID_SET_NOTIFICATION    DPCON_CMD(0x100)
68
69 #pragma pack(push, 1)
70 struct dpcon_cmd_open {
71         uint32_t dpcon_id;
72 };
73
74 struct dpcon_cmd_create {
75         uint8_t num_priorities;
76 };
77
78 struct dpcon_cmd_destroy {
79         uint32_t object_id;
80 };
81
82 #define DPCON_ENABLE                    1
83
84 struct dpcon_rsp_is_enabled {
85         uint8_t enabled;
86 };
87
88 struct dpcon_rsp_get_attr {
89         uint32_t id;
90         uint16_t qbman_ch_id;
91         uint8_t num_priorities;
92         uint8_t pad;
93 };
94
95 struct dpcon_cmd_set_notification {
96         uint32_t dpio_id;
97         uint8_t priority;
98         uint8_t pad[3];
99         uint64_t user_ctx;
100 };
101
102 struct dpcon_rsp_get_api_version {
103         uint16_t major;
104         uint16_t minor;
105 };
106
107 #pragma pack(pop)
108 #endif /* _FSL_DPCON_CMD_H */