GNU Linux-libre 4.14.266-gnu1
[releases.git] / drivers / staging / fsl-mc / bus / dpbp-cmd.h
1 /*
2  * Copyright 2013-2016 Freescale Semiconductor Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  * * Redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer.
8  * * Redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution.
11  * * Neither the name of the above-listed copyright holders nor the
12  * names of any contributors may be used to endorse or promote products
13  * derived from this software without specific prior written permission.
14  *
15  * ALTERNATIVELY, this software may be distributed under the terms of the
16  * GNU General Public License ("GPL") as published by the Free Software
17  * Foundation, either version 2 of that License or (at your option) any
18  * later version.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 #ifndef _FSL_DPBP_CMD_H
33 #define _FSL_DPBP_CMD_H
34
35 /* DPBP Version */
36 #define DPBP_VER_MAJOR                          3
37 #define DPBP_VER_MINOR                          2
38
39 /* Command versioning */
40 #define DPBP_CMD_BASE_VERSION                   1
41 #define DPBP_CMD_ID_OFFSET                      4
42
43 #define DPBP_CMD(id)    (((id) << DPBP_CMD_ID_OFFSET) | DPBP_CMD_BASE_VERSION)
44
45 /* Command IDs */
46 #define DPBP_CMDID_CLOSE                DPBP_CMD(0x800)
47 #define DPBP_CMDID_OPEN                 DPBP_CMD(0x804)
48 #define DPBP_CMDID_GET_API_VERSION      DPBP_CMD(0xa04)
49
50 #define DPBP_CMDID_ENABLE               DPBP_CMD(0x002)
51 #define DPBP_CMDID_DISABLE              DPBP_CMD(0x003)
52 #define DPBP_CMDID_GET_ATTR             DPBP_CMD(0x004)
53 #define DPBP_CMDID_RESET                DPBP_CMD(0x005)
54 #define DPBP_CMDID_IS_ENABLED           DPBP_CMD(0x006)
55
56 struct dpbp_cmd_open {
57         __le32 dpbp_id;
58 };
59
60 struct dpbp_cmd_destroy {
61         __le32 object_id;
62 };
63
64 #define DPBP_ENABLE                     0x1
65
66 struct dpbp_rsp_is_enabled {
67         u8 enabled;
68 };
69
70 struct dpbp_rsp_get_attributes {
71         /* response word 0 */
72         __le16 pad;
73         __le16 bpid;
74         __le32 id;
75         /* response word 1 */
76         __le16 version_major;
77         __le16 version_minor;
78 };
79
80 #endif /* _FSL_DPBP_CMD_H */