1 /* SPDX-License-Identifier: (BSD-3-Clause OR GPL-2.0)
3 * Copyright 2013-2016 Freescale Semiconductor Inc.
6 #ifndef _FSL_DPCI_CMD_H
7 #define _FSL_DPCI_CMD_H
10 #define DPCI_VER_MAJOR 3
11 #define DPCI_VER_MINOR 3
13 #define DPCI_CMD_BASE_VERSION 1
14 #define DPCI_CMD_BASE_VERSION_V2 2
15 #define DPCI_CMD_ID_OFFSET 4
17 #define DPCI_CMD_V1(id) ((id << DPCI_CMD_ID_OFFSET) | DPCI_CMD_BASE_VERSION)
18 #define DPCI_CMD_V2(id) ((id << DPCI_CMD_ID_OFFSET) | DPCI_CMD_BASE_VERSION_V2)
21 #define DPCI_CMDID_CLOSE DPCI_CMD_V1(0x800)
22 #define DPCI_CMDID_OPEN DPCI_CMD_V1(0x807)
23 #define DPCI_CMDID_CREATE DPCI_CMD_V2(0x907)
24 #define DPCI_CMDID_DESTROY DPCI_CMD_V1(0x987)
25 #define DPCI_CMDID_GET_API_VERSION DPCI_CMD_V1(0xa07)
27 #define DPCI_CMDID_ENABLE DPCI_CMD_V1(0x002)
28 #define DPCI_CMDID_DISABLE DPCI_CMD_V1(0x003)
29 #define DPCI_CMDID_GET_ATTR DPCI_CMD_V1(0x004)
30 #define DPCI_CMDID_RESET DPCI_CMD_V1(0x005)
31 #define DPCI_CMDID_IS_ENABLED DPCI_CMD_V1(0x006)
33 #define DPCI_CMDID_SET_RX_QUEUE DPCI_CMD_V1(0x0e0)
34 #define DPCI_CMDID_GET_LINK_STATE DPCI_CMD_V1(0x0e1)
35 #define DPCI_CMDID_GET_PEER_ATTR DPCI_CMD_V1(0x0e2)
36 #define DPCI_CMDID_GET_RX_QUEUE DPCI_CMD_V1(0x0e3)
37 #define DPCI_CMDID_GET_TX_QUEUE DPCI_CMD_V1(0x0e4)
39 /* Macros for accessing command fields smaller than 1byte */
40 #define DPCI_MASK(field) \
41 GENMASK(DPCI_##field##_SHIFT + DPCI_##field##_SIZE - 1, \
43 #define dpci_set_field(var, field, val) \
44 ((var) |= (((val) << DPCI_##field##_SHIFT) & DPCI_MASK(field)))
45 #define dpci_get_field(var, field) \
46 (((var) & DPCI_MASK(field)) >> DPCI_##field##_SHIFT)
49 struct dpci_cmd_open {
53 struct dpci_cmd_create {
54 uint8_t num_of_priorities;
59 struct dpci_cmd_destroy {
63 #define DPCI_ENABLE_SHIFT 0
64 #define DPCI_ENABLE_SIZE 1
66 struct dpci_rsp_is_enabled {
67 /* only the LSB bit */
71 struct dpci_rsp_get_attr {
74 uint8_t num_of_priorities;
77 struct dpci_rsp_get_peer_attr {
80 uint8_t num_of_priorities;
83 #define DPCI_UP_SHIFT 0
84 #define DPCI_UP_SIZE 1
86 struct dpci_rsp_get_link_state {
87 /* only the LSB bit */
91 #define DPCI_DEST_TYPE_SHIFT 0
92 #define DPCI_DEST_TYPE_SIZE 4
94 struct dpci_cmd_set_rx_queue {
96 uint8_t dest_priority;
98 /* from LSB: dest_type:4 */
105 struct dpci_cmd_get_queue {
110 struct dpci_rsp_get_rx_queue {
112 uint8_t dest_priority;
114 /* from LSB: dest_type:4 */
121 struct dpci_rsp_get_tx_queue {
126 struct dpci_rsp_get_api_version {
132 #endif /* _FSL_DPCI_CMD_H */