blob: c239595ed57763e0fd74d08bcad8d55c54864eda [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Yogesh Gaura6f2a6e2018-05-09 10:52:17 +05302/* Copyright 2013-2016 Freescale Semiconductor, Inc.
Yogesh Gaur2557c5a2017-11-15 11:59:31 +05303 * Copyright 2017 NXP
J. German Rivera7b3bd9a2015-01-06 13:19:02 -08004 */
5#ifndef __FSL_MC_CMD_H
6#define __FSL_MC_CMD_H
7
8#define MC_CMD_NUM_OF_PARAMS 7
9
10#define MAKE_UMASK64(_width) \
11 ((uint64_t)((_width) < 64 ? ((uint64_t)1 << (_width)) - 1 : -1))
12
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +053013static inline uint64_t mc_enc(int lsoffset, int width, uint64_t val)
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080014{
15 return (uint64_t)(((uint64_t)val & MAKE_UMASK64(width)) << lsoffset);
16}
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +053017static inline uint64_t mc_dec(uint64_t val, int lsoffset, int width)
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080018{
19 return (uint64_t)((val >> lsoffset) & MAKE_UMASK64(width));
20}
21
Ioana Ciornei694dc0d2023-05-31 19:04:30 +030022struct mc_cmd_header {
23 u8 src_id;
24 u8 flags_hw;
25 u8 status;
26 u8 flags_sw;
27 __le16 token;
28 __le16 cmd_id;
29};
30
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080031struct mc_command {
32 uint64_t header;
33 uint64_t params[MC_CMD_NUM_OF_PARAMS];
34};
35
Yogesh Gaur2557c5a2017-11-15 11:59:31 +053036struct mc_rsp_create {
37 __le32 object_id;
38};
39
40struct mc_rsp_api_ver {
41 __le16 major_ver;
42 __le16 minor_ver;
43};
44
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080045enum mc_cmd_status {
46 MC_CMD_STATUS_OK = 0x0, /*!< Completed successfully */
47 MC_CMD_STATUS_READY = 0x1, /*!< Ready to be processed */
48 MC_CMD_STATUS_AUTH_ERR = 0x3, /*!< Authentication error */
49 MC_CMD_STATUS_NO_PRIVILEGE = 0x4, /*!< No privilege */
50 MC_CMD_STATUS_DMA_ERR = 0x5, /*!< DMA or I/O error */
51 MC_CMD_STATUS_CONFIG_ERR = 0x6, /*!< Configuration error */
52 MC_CMD_STATUS_TIMEOUT = 0x7, /*!< Operation timed out */
53 MC_CMD_STATUS_NO_RESOURCE = 0x8, /*!< No resources */
54 MC_CMD_STATUS_NO_MEMORY = 0x9, /*!< No memory available */
55 MC_CMD_STATUS_BUSY = 0xA, /*!< Device is busy */
56 MC_CMD_STATUS_UNSUPPORTED_OP = 0xB, /*!< Unsupported operation */
57 MC_CMD_STATUS_INVALID_STATE = 0xC /*!< Invalid state */
58};
59
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +053060/*
61 * MC command flags
62 */
63
64/* High priority flag */
65#define MC_CMD_FLAG_PRI 0x00008000
66/* No flags */
67#define MC_CMD_NO_FLAGS 0x00000000
68/* Command completion flag */
69#define MC_CMD_FLAG_INTR_DIS 0x01000000
70
71
Yogesh Gaur2557c5a2017-11-15 11:59:31 +053072#define MC_CMD_HDR_CMDID_O 48 /* Command ID field offset */
73#define MC_CMD_HDR_CMDID_S 16 /* Command ID field size */
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080074#define MC_CMD_HDR_STATUS_O 16 /* Status field offset */
Yogesh Gaur2557c5a2017-11-15 11:59:31 +053075#define MC_CMD_HDR_TOKEN_O 32 /* Token field offset */
76#define MC_CMD_HDR_TOKEN_S 16 /* Token field size */
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080077#define MC_CMD_HDR_STATUS_S 8 /* Status field size*/
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +053078#define MC_CMD_HDR_FLAGS_O 0 /* Flags field offset */
79#define MC_CMD_HDR_FLAGS_S 32 /* Flags field size*/
Yogesh Gaur2557c5a2017-11-15 11:59:31 +053080#define MC_CMD_HDR_FLAGS_MASK 0x0000FFFF /* Command flags mask */
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080081
82#define MC_CMD_HDR_READ_STATUS(_hdr) \
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +053083 ((enum mc_cmd_status)mc_dec((_hdr), \
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080084 MC_CMD_HDR_STATUS_O, MC_CMD_HDR_STATUS_S))
85
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080086static inline uint64_t mc_encode_cmd_header(uint16_t cmd_id,
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +053087 uint32_t cmd_flags,
Prabhakar Kushwahaa2a55e52015-03-19 09:20:45 -070088 uint16_t token)
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080089{
Yogesh Gaur2557c5a2017-11-15 11:59:31 +053090 uint64_t hdr = 0;
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080091
Prabhakar Kushwaha87457d12015-07-07 15:40:06 +053092 hdr = mc_enc(MC_CMD_HDR_CMDID_O, MC_CMD_HDR_CMDID_S, cmd_id);
93 hdr |= mc_enc(MC_CMD_HDR_FLAGS_O, MC_CMD_HDR_FLAGS_S,
94 (cmd_flags & MC_CMD_HDR_FLAGS_MASK));
95 hdr |= mc_enc(MC_CMD_HDR_TOKEN_O, MC_CMD_HDR_TOKEN_S, token);
96 hdr |= mc_enc(MC_CMD_HDR_STATUS_O, MC_CMD_HDR_STATUS_S,
J. German Rivera7b3bd9a2015-01-06 13:19:02 -080097 MC_CMD_STATUS_READY);
98
99 return hdr;
100}
101
102/**
103 * mc_write_command - writes a command to a Management Complex (MC) portal
104 *
105 * @portal: pointer to an MC portal
106 * @cmd: pointer to a filled command
107 */
108static inline void mc_write_command(struct mc_command __iomem *portal,
109 struct mc_command *cmd)
110{
111 int i;
112
113 /* copy command parameters into the portal */
114 for (i = 0; i < MC_CMD_NUM_OF_PARAMS; i++)
115 writeq(cmd->params[i], &portal->params[i]);
116
117 /* submit the command by writing the header */
118 writeq(cmd->header, &portal->header);
119}
120
121/**
122 * mc_read_response - reads the response for the last MC command from a
123 * Management Complex (MC) portal
124 *
125 * @portal: pointer to an MC portal
126 * @resp: pointer to command response buffer
127 *
128 * Returns MC_CMD_STATUS_OK on Success; Error code otherwise.
129 */
130static inline enum mc_cmd_status mc_read_response(
131 struct mc_command __iomem *portal,
132 struct mc_command *resp)
133{
134 int i;
135 enum mc_cmd_status status;
136
137 /* Copy command response header from MC portal: */
138 resp->header = readq(&portal->header);
139 status = MC_CMD_HDR_READ_STATUS(resp->header);
140 if (status != MC_CMD_STATUS_OK)
141 return status;
142
143 /* Copy command response data from MC portal: */
144 for (i = 0; i < MC_CMD_NUM_OF_PARAMS; i++)
145 resp->params[i] = readq(&portal->params[i]);
146
147 return status;
148}
149
Yogesh Gaur2557c5a2017-11-15 11:59:31 +0530150/**
151 * mc_read_version - read version of the given cmd
152 *
153 * @cmd: pointer to a filled command
154 * @major_version: major version value for the given cmd
155 * @minor_version: minor version value for the given cmd
156 */
157static inline void mc_cmd_read_api_version(struct mc_command *cmd,
158 u16 *major_ver,
159 u16 *minor_ver)
160{
161 struct mc_rsp_api_ver *rsp_params;
162
163 rsp_params = (struct mc_rsp_api_ver *)cmd->params;
164 *major_ver = le16_to_cpu(rsp_params->major_ver);
165 *minor_ver = le16_to_cpu(rsp_params->minor_ver);
166}
167
Ioana Ciornei694dc0d2023-05-31 19:04:30 +0300168static inline uint16_t mc_cmd_hdr_read_token(struct mc_command *cmd)
169{
170 struct mc_cmd_header *hdr = (struct mc_cmd_header *)&cmd->header;
171 u16 token = le16_to_cpu(hdr->token);
172
173 return token;
174}
175
176static inline uint32_t mc_cmd_read_object_id(struct mc_command *cmd)
177{
178 struct mc_rsp_create *rsp_params;
179
180 rsp_params = (struct mc_rsp_create *)cmd->params;
181 return le32_to_cpu(rsp_params->object_id);
182}
J. German Rivera7b3bd9a2015-01-06 13:19:02 -0800183#endif /* __FSL_MC_CMD_H */