blob: 0c185abe665e5f4bf0e0280229dd21bb812c919e [file] [log] [blame]
J. German Rivera31c88962015-03-05 19:29:09 -06001/* Copyright 2013-2014 Freescale Semiconductor Inc.
2 *
3 * I/O services to send MC commands to the MC hardware
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the above-listed copyright holders nor the
13 * names of any contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 *
17 * ALTERNATIVELY, this software may be distributed under the terms of the
18 * GNU General Public License ("GPL") as published by the Free Software
19 * Foundation, either version 2 of that License or (at your option) any
20 * later version.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 */
34
35#include "../include/mc-sys.h"
36#include "../include/mc-cmd.h"
J. German Riveraffcd52e2015-10-17 11:18:14 -050037#include "../include/mc.h"
J. German Rivera31c88962015-03-05 19:29:09 -060038#include <linux/delay.h>
39#include <linux/slab.h>
40#include <linux/ioport.h>
41#include <linux/device.h>
J. German Riveraffcd52e2015-10-17 11:18:14 -050042#include "dpmcp.h"
J. German Rivera31c88962015-03-05 19:29:09 -060043
44/**
J. German Riverac6a33632015-10-17 15:33:12 -050045 * Timeout in milliseconds to wait for the completion of an MC command
J. German Rivera31c88962015-03-05 19:29:09 -060046 */
J. German Riverac6a33632015-10-17 15:33:12 -050047#define MC_CMD_COMPLETION_TIMEOUT_MS 500
J. German Rivera31c88962015-03-05 19:29:09 -060048
49/*
50 * usleep_range() min and max values used to throttle down polling
51 * iterations while waiting for MC command completion
52 */
53#define MC_CMD_COMPLETION_POLLING_MIN_SLEEP_USECS 10
54#define MC_CMD_COMPLETION_POLLING_MAX_SLEEP_USECS 500
55
Ioana Radulescu9989b592016-06-22 16:40:52 -050056static enum mc_cmd_status mc_cmd_hdr_read_status(struct mc_command *cmd)
57{
58 struct mc_cmd_header *hdr = (struct mc_cmd_header *)&cmd->header;
59
60 return (enum mc_cmd_status)hdr->status;
61}
62
63static u16 mc_cmd_hdr_read_cmdid(struct mc_command *cmd)
64{
65 struct mc_cmd_header *hdr = (struct mc_cmd_header *)&cmd->header;
66 u16 cmd_id = le16_to_cpu(hdr->cmd_id);
67
68 return (cmd_id & MC_CMD_HDR_CMDID_MASK) >> MC_CMD_HDR_CMDID_SHIFT;
69}
J. German Rivera31c88962015-03-05 19:29:09 -060070
71/**
72 * Creates an MC I/O object
73 *
74 * @dev: device to be associated with the MC I/O object
75 * @mc_portal_phys_addr: physical address of the MC portal to use
76 * @mc_portal_size: size in bytes of the MC portal
J. German Riveraffcd52e2015-10-17 11:18:14 -050077 * @dpmcp-dev: Pointer to the DPMCP object associated with this MC I/O
78 * object or NULL if none.
J. German Rivera31c88962015-03-05 19:29:09 -060079 * @flags: flags for the new MC I/O object
80 * @new_mc_io: Area to return pointer to newly created MC I/O object
81 *
82 * Returns '0' on Success; Error code otherwise.
83 */
84int __must_check fsl_create_mc_io(struct device *dev,
85 phys_addr_t mc_portal_phys_addr,
J. German Riveraba72f252015-09-25 11:21:01 -050086 u32 mc_portal_size,
J. German Riveraffcd52e2015-10-17 11:18:14 -050087 struct fsl_mc_device *dpmcp_dev,
J. German Riveraba72f252015-09-25 11:21:01 -050088 u32 flags, struct fsl_mc_io **new_mc_io)
J. German Rivera31c88962015-03-05 19:29:09 -060089{
J. German Riverad2f84992015-10-17 11:18:15 -050090 int error;
J. German Rivera31c88962015-03-05 19:29:09 -060091 struct fsl_mc_io *mc_io;
92 void __iomem *mc_portal_virt_addr;
93 struct resource *res;
94
95 mc_io = devm_kzalloc(dev, sizeof(*mc_io), GFP_KERNEL);
96 if (!mc_io)
97 return -ENOMEM;
98
99 mc_io->dev = dev;
100 mc_io->flags = flags;
101 mc_io->portal_phys_addr = mc_portal_phys_addr;
102 mc_io->portal_size = mc_portal_size;
J. German Rivera63f2be52015-10-17 15:33:15 -0500103 if (flags & FSL_MC_IO_ATOMIC_CONTEXT_PORTAL)
104 spin_lock_init(&mc_io->spinlock);
105 else
106 mutex_init(&mc_io->mutex);
107
J. German Rivera31c88962015-03-05 19:29:09 -0600108 res = devm_request_mem_region(dev,
109 mc_portal_phys_addr,
110 mc_portal_size,
111 "mc_portal");
112 if (!res) {
113 dev_err(dev,
114 "devm_request_mem_region failed for MC portal %#llx\n",
115 mc_portal_phys_addr);
116 return -EBUSY;
117 }
118
119 mc_portal_virt_addr = devm_ioremap_nocache(dev,
120 mc_portal_phys_addr,
121 mc_portal_size);
122 if (!mc_portal_virt_addr) {
123 dev_err(dev,
124 "devm_ioremap_nocache failed for MC portal %#llx\n",
125 mc_portal_phys_addr);
126 return -ENXIO;
127 }
128
129 mc_io->portal_virt_addr = mc_portal_virt_addr;
J. German Riverad2f84992015-10-17 11:18:15 -0500130 if (dpmcp_dev) {
131 error = fsl_mc_io_set_dpmcp(mc_io, dpmcp_dev);
132 if (error < 0)
133 goto error_destroy_mc_io;
134 }
135
J. German Rivera31c88962015-03-05 19:29:09 -0600136 *new_mc_io = mc_io;
137 return 0;
J. German Riverad2f84992015-10-17 11:18:15 -0500138
139error_destroy_mc_io:
140 fsl_destroy_mc_io(mc_io);
141 return error;
J. German Rivera31c88962015-03-05 19:29:09 -0600142}
143EXPORT_SYMBOL_GPL(fsl_create_mc_io);
144
145/**
146 * Destroys an MC I/O object
147 *
148 * @mc_io: MC I/O object to destroy
149 */
150void fsl_destroy_mc_io(struct fsl_mc_io *mc_io)
151{
J. German Riverad2f84992015-10-17 11:18:15 -0500152 struct fsl_mc_device *dpmcp_dev = mc_io->dpmcp_dev;
153
154 if (dpmcp_dev)
155 fsl_mc_io_unset_dpmcp(mc_io);
156
J. German Rivera31c88962015-03-05 19:29:09 -0600157 devm_iounmap(mc_io->dev, mc_io->portal_virt_addr);
158 devm_release_mem_region(mc_io->dev,
159 mc_io->portal_phys_addr,
160 mc_io->portal_size);
161
162 mc_io->portal_virt_addr = NULL;
J. German Rivera31c88962015-03-05 19:29:09 -0600163 devm_kfree(mc_io->dev, mc_io);
164}
165EXPORT_SYMBOL_GPL(fsl_destroy_mc_io);
166
J. German Riverad2f84992015-10-17 11:18:15 -0500167int fsl_mc_io_set_dpmcp(struct fsl_mc_io *mc_io,
168 struct fsl_mc_device *dpmcp_dev)
169{
170 int error;
171
172 if (WARN_ON(!dpmcp_dev))
173 return -EINVAL;
174
175 if (WARN_ON(mc_io->dpmcp_dev))
176 return -EINVAL;
177
178 if (WARN_ON(dpmcp_dev->mc_io))
179 return -EINVAL;
180
181 error = dpmcp_open(mc_io,
182 0,
183 dpmcp_dev->obj_desc.id,
184 &dpmcp_dev->mc_handle);
185 if (error < 0)
186 return error;
187
188 mc_io->dpmcp_dev = dpmcp_dev;
189 dpmcp_dev->mc_io = mc_io;
190 return 0;
191}
192EXPORT_SYMBOL_GPL(fsl_mc_io_set_dpmcp);
193
194void fsl_mc_io_unset_dpmcp(struct fsl_mc_io *mc_io)
195{
196 int error;
197 struct fsl_mc_device *dpmcp_dev = mc_io->dpmcp_dev;
198
199 if (WARN_ON(!dpmcp_dev))
200 return;
201
202 if (WARN_ON(dpmcp_dev->mc_io != mc_io))
203 return;
204
205 error = dpmcp_close(mc_io,
206 0,
207 dpmcp_dev->mc_handle);
208 if (error < 0) {
209 dev_err(&dpmcp_dev->dev, "dpmcp_close() failed: %d\n",
210 error);
211 }
212
213 mc_io->dpmcp_dev = NULL;
214 dpmcp_dev->mc_io = NULL;
215}
216EXPORT_SYMBOL_GPL(fsl_mc_io_unset_dpmcp);
217
J. German Rivera31c88962015-03-05 19:29:09 -0600218static int mc_status_to_error(enum mc_cmd_status status)
219{
220 static const int mc_status_to_error_map[] = {
221 [MC_CMD_STATUS_OK] = 0,
222 [MC_CMD_STATUS_AUTH_ERR] = -EACCES,
223 [MC_CMD_STATUS_NO_PRIVILEGE] = -EPERM,
224 [MC_CMD_STATUS_DMA_ERR] = -EIO,
225 [MC_CMD_STATUS_CONFIG_ERR] = -ENXIO,
226 [MC_CMD_STATUS_TIMEOUT] = -ETIMEDOUT,
227 [MC_CMD_STATUS_NO_RESOURCE] = -ENAVAIL,
228 [MC_CMD_STATUS_NO_MEMORY] = -ENOMEM,
229 [MC_CMD_STATUS_BUSY] = -EBUSY,
230 [MC_CMD_STATUS_UNSUPPORTED_OP] = -ENOTSUPP,
231 [MC_CMD_STATUS_INVALID_STATE] = -ENODEV,
232 };
233
234 if (WARN_ON((u32)status >= ARRAY_SIZE(mc_status_to_error_map)))
235 return -EINVAL;
236
237 return mc_status_to_error_map[status];
238}
239
240static const char *mc_status_to_string(enum mc_cmd_status status)
241{
242 static const char *const status_strings[] = {
243 [MC_CMD_STATUS_OK] = "Command completed successfully",
244 [MC_CMD_STATUS_READY] = "Command ready to be processed",
245 [MC_CMD_STATUS_AUTH_ERR] = "Authentication error",
246 [MC_CMD_STATUS_NO_PRIVILEGE] = "No privilege",
247 [MC_CMD_STATUS_DMA_ERR] = "DMA or I/O error",
248 [MC_CMD_STATUS_CONFIG_ERR] = "Configuration error",
249 [MC_CMD_STATUS_TIMEOUT] = "Operation timed out",
250 [MC_CMD_STATUS_NO_RESOURCE] = "No resources",
251 [MC_CMD_STATUS_NO_MEMORY] = "No memory available",
252 [MC_CMD_STATUS_BUSY] = "Device is busy",
253 [MC_CMD_STATUS_UNSUPPORTED_OP] = "Unsupported operation",
254 [MC_CMD_STATUS_INVALID_STATE] = "Invalid state"
255 };
256
257 if ((unsigned int)status >= ARRAY_SIZE(status_strings))
258 return "Unknown MC error";
259
260 return status_strings[status];
261}
262
263/**
264 * mc_write_command - writes a command to a Management Complex (MC) portal
265 *
266 * @portal: pointer to an MC portal
267 * @cmd: pointer to a filled command
268 */
269static inline void mc_write_command(struct mc_command __iomem *portal,
270 struct mc_command *cmd)
271{
272 int i;
273
274 /* copy command parameters into the portal */
275 for (i = 0; i < MC_CMD_NUM_OF_PARAMS; i++)
Ioana Radulescu9989b592016-06-22 16:40:52 -0500276 __raw_writeq(cmd->params[i], &portal->params[i]);
277 __iowmb();
J. German Rivera31c88962015-03-05 19:29:09 -0600278
279 /* submit the command by writing the header */
Ioana Radulescu9989b592016-06-22 16:40:52 -0500280 __raw_writeq(cmd->header, &portal->header);
J. German Rivera31c88962015-03-05 19:29:09 -0600281}
282
283/**
284 * mc_read_response - reads the response for the last MC command from a
285 * Management Complex (MC) portal
286 *
287 * @portal: pointer to an MC portal
288 * @resp: pointer to command response buffer
289 *
290 * Returns MC_CMD_STATUS_OK on Success; Error code otherwise.
291 */
292static inline enum mc_cmd_status mc_read_response(struct mc_command __iomem *
293 portal,
294 struct mc_command *resp)
295{
296 int i;
297 enum mc_cmd_status status;
298
299 /* Copy command response header from MC portal: */
Ioana Radulescu9989b592016-06-22 16:40:52 -0500300 __iormb();
301 resp->header = __raw_readq(&portal->header);
302 __iormb();
303 status = mc_cmd_hdr_read_status(resp);
J. German Rivera31c88962015-03-05 19:29:09 -0600304 if (status != MC_CMD_STATUS_OK)
305 return status;
306
307 /* Copy command response data from MC portal: */
308 for (i = 0; i < MC_CMD_NUM_OF_PARAMS; i++)
Ioana Radulescu9989b592016-06-22 16:40:52 -0500309 resp->params[i] = __raw_readq(&portal->params[i]);
310 __iormb();
J. German Rivera31c88962015-03-05 19:29:09 -0600311
312 return status;
313}
314
315/**
J. German Rivera140305e2015-10-17 15:33:13 -0500316 * Waits for the completion of an MC command doing preemptible polling.
317 * uslepp_range() is called between polling iterations.
J. German Rivera31c88962015-03-05 19:29:09 -0600318 *
319 * @mc_io: MC I/O object to be used
J. German Rivera140305e2015-10-17 15:33:13 -0500320 * @cmd: command buffer to receive MC response
321 * @mc_status: MC command completion status
J. German Rivera31c88962015-03-05 19:29:09 -0600322 */
J. German Rivera140305e2015-10-17 15:33:13 -0500323static int mc_polling_wait_preemptible(struct fsl_mc_io *mc_io,
324 struct mc_command *cmd,
325 enum mc_cmd_status *mc_status)
J. German Rivera31c88962015-03-05 19:29:09 -0600326{
327 enum mc_cmd_status status;
328 unsigned long jiffies_until_timeout =
J. German Riverac6a33632015-10-17 15:33:12 -0500329 jiffies + msecs_to_jiffies(MC_CMD_COMPLETION_TIMEOUT_MS);
J. German Rivera31c88962015-03-05 19:29:09 -0600330
331 /*
J. German Rivera31c88962015-03-05 19:29:09 -0600332 * Wait for response from the MC hardware:
333 */
334 for (;;) {
335 status = mc_read_response(mc_io->portal_virt_addr, cmd);
336 if (status != MC_CMD_STATUS_READY)
337 break;
338
339 /*
340 * TODO: When MC command completion interrupts are supported
341 * call wait function here instead of usleep_range()
342 */
343 usleep_range(MC_CMD_COMPLETION_POLLING_MIN_SLEEP_USECS,
344 MC_CMD_COMPLETION_POLLING_MAX_SLEEP_USECS);
345
346 if (time_after_eq(jiffies, jiffies_until_timeout)) {
Cihangir Akturke79e3442016-03-14 18:14:06 +0200347 dev_dbg(mc_io->dev,
Bhumika Goyalde71daf2016-03-04 19:14:52 +0530348 "MC command timed out (portal: %#llx, obj handle: %#x, command: %#x)\n",
J. German Rivera31c88962015-03-05 19:29:09 -0600349 mc_io->portal_phys_addr,
Ioana Radulescu9989b592016-06-22 16:40:52 -0500350 (unsigned int)mc_cmd_hdr_read_token(cmd),
351 (unsigned int)mc_cmd_hdr_read_cmdid(cmd));
J. German Rivera31c88962015-03-05 19:29:09 -0600352
353 return -ETIMEDOUT;
354 }
355 }
356
J. German Rivera140305e2015-10-17 15:33:13 -0500357 *mc_status = status;
358 return 0;
359}
360
361/**
J. German Rivera3f95ad22015-10-17 15:33:14 -0500362 * Waits for the completion of an MC command doing atomic polling.
363 * udelay() is called between polling iterations.
364 *
365 * @mc_io: MC I/O object to be used
366 * @cmd: command buffer to receive MC response
367 * @mc_status: MC command completion status
368 */
369static int mc_polling_wait_atomic(struct fsl_mc_io *mc_io,
370 struct mc_command *cmd,
371 enum mc_cmd_status *mc_status)
372{
373 enum mc_cmd_status status;
374 unsigned long timeout_usecs = MC_CMD_COMPLETION_TIMEOUT_MS * 1000;
375
376 BUILD_BUG_ON((MC_CMD_COMPLETION_TIMEOUT_MS * 1000) %
377 MC_CMD_COMPLETION_POLLING_MAX_SLEEP_USECS != 0);
378
379 for (;;) {
380 status = mc_read_response(mc_io->portal_virt_addr, cmd);
381 if (status != MC_CMD_STATUS_READY)
382 break;
383
384 udelay(MC_CMD_COMPLETION_POLLING_MAX_SLEEP_USECS);
385 timeout_usecs -= MC_CMD_COMPLETION_POLLING_MAX_SLEEP_USECS;
386 if (timeout_usecs == 0) {
Cihangir Akturke79e3442016-03-14 18:14:06 +0200387 dev_dbg(mc_io->dev,
Bhumika Goyalde71daf2016-03-04 19:14:52 +0530388 "MC command timed out (portal: %#llx, obj handle: %#x, command: %#x)\n",
J. German Rivera3f95ad22015-10-17 15:33:14 -0500389 mc_io->portal_phys_addr,
Ioana Radulescu9989b592016-06-22 16:40:52 -0500390 (unsigned int)mc_cmd_hdr_read_token(cmd),
391 (unsigned int)mc_cmd_hdr_read_cmdid(cmd));
J. German Rivera3f95ad22015-10-17 15:33:14 -0500392
393 return -ETIMEDOUT;
394 }
395 }
396
397 *mc_status = status;
398 return 0;
399}
400
401/**
J. German Rivera140305e2015-10-17 15:33:13 -0500402 * Sends a command to the MC device using the given MC I/O object
403 *
404 * @mc_io: MC I/O object to be used
405 * @cmd: command to be sent
406 *
407 * Returns '0' on Success; Error code otherwise.
J. German Rivera140305e2015-10-17 15:33:13 -0500408 */
409int mc_send_command(struct fsl_mc_io *mc_io, struct mc_command *cmd)
410{
411 int error;
412 enum mc_cmd_status status;
J. German Rivera63f2be52015-10-17 15:33:15 -0500413 unsigned long irq_flags = 0;
J. German Rivera140305e2015-10-17 15:33:13 -0500414
J. German Rivera3f95ad22015-10-17 15:33:14 -0500415 if (WARN_ON(in_irq() &&
416 !(mc_io->flags & FSL_MC_IO_ATOMIC_CONTEXT_PORTAL)))
417 return -EINVAL;
418
J. German Rivera63f2be52015-10-17 15:33:15 -0500419 if (mc_io->flags & FSL_MC_IO_ATOMIC_CONTEXT_PORTAL)
420 spin_lock_irqsave(&mc_io->spinlock, irq_flags);
421 else
422 mutex_lock(&mc_io->mutex);
423
J. German Rivera140305e2015-10-17 15:33:13 -0500424 /*
425 * Send command to the MC hardware:
426 */
427 mc_write_command(mc_io->portal_virt_addr, cmd);
428
429 /*
430 * Wait for response from the MC hardware:
431 */
J. German Rivera3f95ad22015-10-17 15:33:14 -0500432 if (!(mc_io->flags & FSL_MC_IO_ATOMIC_CONTEXT_PORTAL))
433 error = mc_polling_wait_preemptible(mc_io, cmd, &status);
434 else
435 error = mc_polling_wait_atomic(mc_io, cmd, &status);
436
J. German Rivera140305e2015-10-17 15:33:13 -0500437 if (error < 0)
J. German Rivera63f2be52015-10-17 15:33:15 -0500438 goto common_exit;
J. German Rivera140305e2015-10-17 15:33:13 -0500439
J. German Rivera31c88962015-03-05 19:29:09 -0600440 if (status != MC_CMD_STATUS_OK) {
Cihangir Akturke79e3442016-03-14 18:14:06 +0200441 dev_dbg(mc_io->dev,
Bhumika Goyalde71daf2016-03-04 19:14:52 +0530442 "MC command failed: portal: %#llx, obj handle: %#x, command: %#x, status: %s (%#x)\n",
J. German Rivera31c88962015-03-05 19:29:09 -0600443 mc_io->portal_phys_addr,
Ioana Radulescu9989b592016-06-22 16:40:52 -0500444 (unsigned int)mc_cmd_hdr_read_token(cmd),
445 (unsigned int)mc_cmd_hdr_read_cmdid(cmd),
J. German Rivera31c88962015-03-05 19:29:09 -0600446 mc_status_to_string(status),
447 (unsigned int)status);
448
J. German Rivera63f2be52015-10-17 15:33:15 -0500449 error = mc_status_to_error(status);
450 goto common_exit;
J. German Rivera31c88962015-03-05 19:29:09 -0600451 }
452
J. German Rivera63f2be52015-10-17 15:33:15 -0500453 error = 0;
454common_exit:
455 if (mc_io->flags & FSL_MC_IO_ATOMIC_CONTEXT_PORTAL)
456 spin_unlock_irqrestore(&mc_io->spinlock, irq_flags);
457 else
458 mutex_unlock(&mc_io->mutex);
459
460 return error;
J. German Rivera31c88962015-03-05 19:29:09 -0600461}
462EXPORT_SYMBOL(mc_send_command);