1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) IBM Corporation 2017
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERGCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/device.h>
16 #include <linux/errno.h>
18 #include <linux/fsi.h>
19 #include <linux/fsi-sbefifo.h>
20 #include <linux/kernel.h>
21 #include <linux/cdev.h>
22 #include <linux/module.h>
23 #include <linux/mutex.h>
25 #include <linux/of_device.h>
26 #include <linux/of_platform.h>
27 #include <linux/sched.h>
28 #include <linux/slab.h>
29 #include <linux/uaccess.h>
30 #include <linux/delay.h>
31 #include <linux/uio.h>
32 #include <linux/vmalloc.h>
35 #include <uapi/linux/fsi.h>
38 * The SBEFIFO is a pipe-like FSI device for communicating with
39 * the self boot engine on POWER processors.
42 #define DEVICE_NAME "sbefifo"
43 #define FSI_ENGID_SBE 0x22
50 #define SBEFIFO_UP 0x00 /* FSI -> Host */
51 #define SBEFIFO_DOWN 0x40 /* Host -> FSI */
53 /* Per-bank registers */
54 #define SBEFIFO_FIFO 0x00 /* The FIFO itself */
55 #define SBEFIFO_STS 0x04 /* Status register */
56 #define SBEFIFO_STS_PARITY_ERR 0x20000000
57 #define SBEFIFO_STS_RESET_REQ 0x02000000
58 #define SBEFIFO_STS_GOT_EOT 0x00800000
59 #define SBEFIFO_STS_MAX_XFER_LIMIT 0x00400000
60 #define SBEFIFO_STS_FULL 0x00200000
61 #define SBEFIFO_STS_EMPTY 0x00100000
62 #define SBEFIFO_STS_ECNT_MASK 0x000f0000
63 #define SBEFIFO_STS_ECNT_SHIFT 16
64 #define SBEFIFO_STS_VALID_MASK 0x0000ff00
65 #define SBEFIFO_STS_VALID_SHIFT 8
66 #define SBEFIFO_STS_EOT_MASK 0x000000ff
67 #define SBEFIFO_STS_EOT_SHIFT 0
68 #define SBEFIFO_EOT_RAISE 0x08 /* (Up only) Set End Of Transfer */
69 #define SBEFIFO_REQ_RESET 0x0C /* (Up only) Reset Request */
70 #define SBEFIFO_PERFORM_RESET 0x10 /* (Down only) Perform Reset */
71 #define SBEFIFO_EOT_ACK 0x14 /* (Down only) Acknowledge EOT */
72 #define SBEFIFO_DOWN_MAX 0x18 /* (Down only) Max transfer */
74 /* CFAM GP Mailbox SelfBoot Message register */
75 #define CFAM_GP_MBOX_SBM_ADDR 0x2824 /* Converted 0x2809 */
77 #define CFAM_SBM_SBE_BOOTED 0x80000000
78 #define CFAM_SBM_SBE_ASYNC_FFDC 0x40000000
79 #define CFAM_SBM_SBE_STATE_MASK 0x00f00000
80 #define CFAM_SBM_SBE_STATE_SHIFT 20
84 SBE_STATE_UNKNOWN = 0x0, // Unkown, initial state
85 SBE_STATE_IPLING = 0x1, // IPL'ing - autonomous mode (transient)
86 SBE_STATE_ISTEP = 0x2, // ISTEP - Running IPL by steps (transient)
87 SBE_STATE_MPIPL = 0x3, // MPIPL
88 SBE_STATE_RUNTIME = 0x4, // SBE Runtime
89 SBE_STATE_DMT = 0x5, // Dead Man Timer State (transient)
90 SBE_STATE_DUMP = 0x6, // Dumping
91 SBE_STATE_FAILURE = 0x7, // Internal SBE failure
92 SBE_STATE_QUIESCE = 0x8, // Final state - needs SBE reset to get out
96 #define SBEFIFO_FIFO_DEPTH 8
99 #define sbefifo_empty(sts) ((sts) & SBEFIFO_STS_EMPTY)
100 #define sbefifo_full(sts) ((sts) & SBEFIFO_STS_FULL)
101 #define sbefifo_parity_err(sts) ((sts) & SBEFIFO_STS_PARITY_ERR)
102 #define sbefifo_populated(sts) (((sts) & SBEFIFO_STS_ECNT_MASK) >> SBEFIFO_STS_ECNT_SHIFT)
103 #define sbefifo_vacant(sts) (SBEFIFO_FIFO_DEPTH - sbefifo_populated(sts))
104 #define sbefifo_eot_set(sts) (((sts) & SBEFIFO_STS_EOT_MASK) >> SBEFIFO_STS_EOT_SHIFT)
106 /* Reset request timeout in ms */
107 #define SBEFIFO_RESET_TIMEOUT 10000
109 /* Timeouts for commands in ms */
110 #define SBEFIFO_TIMEOUT_START_CMD 10000
111 #define SBEFIFO_TIMEOUT_IN_CMD 1000
112 #define SBEFIFO_TIMEOUT_START_RSP 10000
113 #define SBEFIFO_TIMEOUT_IN_RSP 1000
115 /* Other constants */
116 #define SBEFIFO_MAX_USER_CMD_LEN (0x100000 + PAGE_SIZE)
117 #define SBEFIFO_RESET_MAGIC 0x52534554 /* "RSET" */
121 #define SBEFIFO_MAGIC 0x53424546 /* "SBEF" */
122 struct fsi_device *fsi_dev;
130 u32 timeout_start_rsp_ms;
133 struct sbefifo_user {
134 struct sbefifo *sbefifo;
135 struct mutex file_lock;
142 static DEFINE_MUTEX(sbefifo_ffdc_mutex);
144 static ssize_t timeout_show(struct device *dev, struct device_attribute *attr,
147 struct sbefifo *sbefifo = container_of(dev, struct sbefifo, dev);
149 return sysfs_emit(buf, "%d\n", sbefifo->timed_out ? 1 : 0);
151 static DEVICE_ATTR_RO(timeout);
153 static void __sbefifo_dump_ffdc(struct device *dev, const __be32 *ffdc,
154 size_t ffdc_sz, bool internal)
157 #define FFDC_LSIZE 60
158 static char ffdc_line[FFDC_LSIZE];
164 dev_err(dev, "SBE invalid FFDC package size %zd\n", ffdc_sz);
167 w0 = be32_to_cpu(*(ffdc++));
168 w1 = be32_to_cpu(*(ffdc++));
169 w2 = be32_to_cpu(*(ffdc++));
171 if ((w0 >> 16) != 0xFFDC) {
172 dev_err(dev, "SBE invalid FFDC package signature %08x %08x %08x\n",
178 dev_err(dev, "SBE FFDC package len %d words but only %zd remaining\n",
184 dev_warn(dev, "+---- SBE FFDC package %d for async err -----+\n",
187 dev_warn(dev, "+---- SBE FFDC package %d for cmd %02x:%02x -----+\n",
188 pack++, (w1 >> 8) & 0xff, w1 & 0xff);
190 dev_warn(dev, "| Response code: %08x |\n", w2);
191 dev_warn(dev, "|-------------------------------------------|\n");
192 for (i = 0; i < w0; i++) {
195 p += sprintf(p, "| %04x:", i << 4);
197 p += sprintf(p, " %08x", be32_to_cpu(*(ffdc++)));
199 if ((i & 3) == 3 || i == (w0 - 1)) {
200 while ((i & 3) < 3) {
201 p += sprintf(p, " ");
204 dev_warn(dev, "%s |\n", ffdc_line);
207 dev_warn(dev, "+-------------------------------------------+\n");
211 static void sbefifo_dump_ffdc(struct device *dev, const __be32 *ffdc,
212 size_t ffdc_sz, bool internal)
214 mutex_lock(&sbefifo_ffdc_mutex);
215 __sbefifo_dump_ffdc(dev, ffdc, ffdc_sz, internal);
216 mutex_unlock(&sbefifo_ffdc_mutex);
219 int sbefifo_parse_status(struct device *dev, u16 cmd, __be32 *response,
220 size_t resp_len, size_t *data_len)
226 pr_debug("sbefifo: cmd %04x, response too small: %zd\n",
230 dh = be32_to_cpu(response[resp_len - 1]);
231 if (dh > resp_len || dh < 3) {
232 dev_err(dev, "SBE cmd %02x:%02x status offset out of range: %d/%zd\n",
233 cmd >> 8, cmd & 0xff, dh, resp_len);
236 s0 = be32_to_cpu(response[resp_len - dh]);
237 s1 = be32_to_cpu(response[resp_len - dh + 1]);
238 if (((s0 >> 16) != 0xC0DE) || ((s0 & 0xffff) != cmd)) {
239 dev_err(dev, "SBE cmd %02x:%02x, status signature invalid: 0x%08x 0x%08x\n",
240 cmd >> 8, cmd & 0xff, s0, s1);
245 dev_warn(dev, "SBE error cmd %02x:%02x status=%04x:%04x\n",
246 cmd >> 8, cmd & 0xff, s1 >> 16, s1 & 0xffff);
248 sbefifo_dump_ffdc(dev, &response[resp_len - dh + 2],
252 *data_len = resp_len - dh;
255 * Primary status don't have the top bit set, so can't be confused with
256 * Linux negative error codes, so return the status word whole.
260 EXPORT_SYMBOL_GPL(sbefifo_parse_status);
262 static int sbefifo_regr(struct sbefifo *sbefifo, int reg, u32 *word)
267 rc = fsi_device_read(sbefifo->fsi_dev, reg, &raw_word,
272 *word = be32_to_cpu(raw_word);
277 static int sbefifo_regw(struct sbefifo *sbefifo, int reg, u32 word)
279 __be32 raw_word = cpu_to_be32(word);
281 return fsi_device_write(sbefifo->fsi_dev, reg, &raw_word,
285 static int sbefifo_check_sbe_state(struct sbefifo *sbefifo)
291 rc = fsi_slave_read(sbefifo->fsi_dev->slave, CFAM_GP_MBOX_SBM_ADDR,
292 &raw_word, sizeof(raw_word));
295 sbm = be32_to_cpu(raw_word);
297 /* SBE booted at all ? */
298 if (!(sbm & CFAM_SBM_SBE_BOOTED))
301 /* Check its state */
302 switch ((sbm & CFAM_SBM_SBE_STATE_MASK) >> CFAM_SBM_SBE_STATE_SHIFT) {
303 case SBE_STATE_UNKNOWN:
307 case SBE_STATE_IPLING:
308 case SBE_STATE_ISTEP:
309 case SBE_STATE_MPIPL:
310 case SBE_STATE_RUNTIME:
311 case SBE_STATE_DUMP: /* Not sure about that one */
313 case SBE_STATE_FAILURE:
314 case SBE_STATE_QUIESCE:
318 /* Is there async FFDC available ? Remember it */
319 if (sbm & CFAM_SBM_SBE_ASYNC_FFDC)
320 sbefifo->async_ffdc = true;
325 /* Don't flip endianness of data to/from FIFO, just pass through. */
326 static int sbefifo_down_read(struct sbefifo *sbefifo, __be32 *word)
328 return fsi_device_read(sbefifo->fsi_dev, SBEFIFO_DOWN, word,
332 static int sbefifo_up_write(struct sbefifo *sbefifo, __be32 word)
334 return fsi_device_write(sbefifo->fsi_dev, SBEFIFO_UP, &word,
338 static int sbefifo_request_reset(struct sbefifo *sbefifo)
340 struct device *dev = &sbefifo->fsi_dev->dev;
341 unsigned long end_time;
345 dev_dbg(dev, "Requesting FIFO reset\n");
347 /* Mark broken first, will be cleared if reset succeeds */
348 sbefifo->broken = true;
350 /* Send reset request */
351 rc = sbefifo_regw(sbefifo, SBEFIFO_UP | SBEFIFO_REQ_RESET, 1);
353 dev_err(dev, "Sending reset request failed, rc=%d\n", rc);
357 /* Wait for it to complete */
358 end_time = jiffies + msecs_to_jiffies(SBEFIFO_RESET_TIMEOUT);
359 while (!time_after(jiffies, end_time)) {
360 rc = sbefifo_regr(sbefifo, SBEFIFO_UP | SBEFIFO_STS, &status);
362 dev_err(dev, "Failed to read UP fifo status during reset"
367 if (!(status & SBEFIFO_STS_RESET_REQ)) {
368 dev_dbg(dev, "FIFO reset done\n");
369 sbefifo->broken = false;
375 dev_err(dev, "FIFO reset timed out\n");
380 static int sbefifo_cleanup_hw(struct sbefifo *sbefifo)
382 struct device *dev = &sbefifo->fsi_dev->dev;
383 u32 up_status, down_status;
384 bool need_reset = false;
387 rc = sbefifo_check_sbe_state(sbefifo);
389 dev_dbg(dev, "SBE state=%d\n", rc);
393 /* If broken, we don't need to look at status, go straight to reset */
397 rc = sbefifo_regr(sbefifo, SBEFIFO_UP | SBEFIFO_STS, &up_status);
399 dev_err(dev, "Cleanup: Reading UP status failed, rc=%d\n", rc);
401 /* Will try reset again on next attempt at using it */
402 sbefifo->broken = true;
406 rc = sbefifo_regr(sbefifo, SBEFIFO_DOWN | SBEFIFO_STS, &down_status);
408 dev_err(dev, "Cleanup: Reading DOWN status failed, rc=%d\n", rc);
410 /* Will try reset again on next attempt at using it */
411 sbefifo->broken = true;
415 /* The FIFO already contains a reset request from the SBE ? */
416 if (down_status & SBEFIFO_STS_RESET_REQ) {
417 dev_info(dev, "Cleanup: FIFO reset request set, resetting\n");
418 rc = sbefifo_regw(sbefifo, SBEFIFO_DOWN, SBEFIFO_PERFORM_RESET);
420 sbefifo->broken = true;
421 dev_err(dev, "Cleanup: Reset reg write failed, rc=%d\n", rc);
424 sbefifo->broken = false;
428 /* Parity error on either FIFO ? */
429 if ((up_status | down_status) & SBEFIFO_STS_PARITY_ERR)
432 /* Either FIFO not empty ? */
433 if (!((up_status & down_status) & SBEFIFO_STS_EMPTY))
439 dev_info(dev, "Cleanup: FIFO not clean (up=0x%08x down=0x%08x)\n",
440 up_status, down_status);
444 /* Mark broken, will be cleared if/when reset succeeds */
445 return sbefifo_request_reset(sbefifo);
448 static int sbefifo_wait(struct sbefifo *sbefifo, bool up,
449 u32 *status, unsigned long timeout)
451 struct device *dev = &sbefifo->fsi_dev->dev;
452 unsigned long end_time;
457 dev_vdbg(dev, "Wait on %s fifo...\n", up ? "up" : "down");
459 addr = (up ? SBEFIFO_UP : SBEFIFO_DOWN) | SBEFIFO_STS;
461 end_time = jiffies + timeout;
462 while (!time_after(jiffies, end_time)) {
464 rc = sbefifo_regr(sbefifo, addr, &sts);
466 dev_err(dev, "FSI error %d reading status register\n", rc);
469 if (!up && sbefifo_parity_err(sts)) {
470 dev_err(dev, "Parity error in DOWN FIFO\n");
473 ready = !(up ? sbefifo_full(sts) : sbefifo_empty(sts));
478 sysfs_notify(&sbefifo->dev.kobj, NULL, dev_attr_timeout.attr.name);
479 sbefifo->timed_out = true;
480 dev_err(dev, "%s FIFO Timeout (%u ms)! status=%08x\n",
481 up ? "UP" : "DOWN", jiffies_to_msecs(timeout), sts);
484 dev_vdbg(dev, "End of wait status: %08x\n", sts);
486 sbefifo->timed_out = false;
492 static int sbefifo_send_command(struct sbefifo *sbefifo,
493 const __be32 *command, size_t cmd_len)
495 struct device *dev = &sbefifo->fsi_dev->dev;
496 size_t len, chunk, vacant = 0, remaining = cmd_len;
497 unsigned long timeout;
501 dev_dbg(dev, "sending command (%zd words, cmd=%04x)\n",
502 cmd_len, be32_to_cpu(command[1]));
504 /* As long as there's something to send */
505 timeout = msecs_to_jiffies(SBEFIFO_TIMEOUT_START_CMD);
507 /* Wait for room in the FIFO */
508 rc = sbefifo_wait(sbefifo, true, &status, timeout);
511 timeout = msecs_to_jiffies(SBEFIFO_TIMEOUT_IN_CMD);
513 vacant = sbefifo_vacant(status);
514 len = chunk = min(vacant, remaining);
516 dev_vdbg(dev, " status=%08x vacant=%zd chunk=%zd\n",
517 status, vacant, chunk);
519 /* Write as much as we can */
521 rc = sbefifo_up_write(sbefifo, *(command++));
523 dev_err(dev, "FSI error %d writing UP FIFO\n", rc);
531 /* If there's no room left, wait for some to write EOT */
533 rc = sbefifo_wait(sbefifo, true, &status, timeout);
539 rc = sbefifo_regw(sbefifo, SBEFIFO_UP | SBEFIFO_EOT_RAISE, 0);
541 dev_err(dev, "FSI error %d writing EOT\n", rc);
545 static int sbefifo_read_response(struct sbefifo *sbefifo, struct iov_iter *response)
547 struct device *dev = &sbefifo->fsi_dev->dev;
549 unsigned long timeout;
550 bool overflow = false;
555 dev_dbg(dev, "reading response, buflen = %zd\n", iov_iter_count(response));
557 timeout = msecs_to_jiffies(sbefifo->timeout_start_rsp_ms);
559 /* Grab FIFO status (this will handle parity errors) */
560 rc = sbefifo_wait(sbefifo, false, &status, timeout);
562 dev_dbg(dev, "timeout waiting (%u ms)\n", jiffies_to_msecs(timeout));
565 timeout = msecs_to_jiffies(SBEFIFO_TIMEOUT_IN_RSP);
568 len = sbefifo_populated(status);
569 eot_set = sbefifo_eot_set(status);
571 dev_dbg(dev, " chunk size %zd eot_set=0x%x\n", len, eot_set);
573 /* Go through the chunk */
576 rc = sbefifo_down_read(sbefifo, &data);
580 /* Was it an EOT ? */
581 if (eot_set & 0x80) {
583 * There should be nothing else in the FIFO,
584 * if there is, mark broken, this will force
585 * a reset on next use, but don't fail the
589 dev_warn(dev, "FIFO read hit"
590 " EOT with still %zd data\n",
592 sbefifo->broken = true;
596 rc = sbefifo_regw(sbefifo,
597 SBEFIFO_DOWN | SBEFIFO_EOT_ACK, 0);
600 * If that write fail, still complete the request but mark
601 * the fifo as broken for subsequent reset (not much else
605 dev_err(dev, "FSI error %d ack'ing EOT\n", rc);
606 sbefifo->broken = true;
609 /* Tell whether we overflowed */
610 return overflow ? -EOVERFLOW : 0;
613 /* Store it if there is room */
614 if (iov_iter_count(response) >= sizeof(__be32)) {
615 if (copy_to_iter(&data, sizeof(__be32), response) < sizeof(__be32))
618 dev_vdbg(dev, "Response overflowed !\n");
627 /* Shouldn't happen */
631 static int sbefifo_do_command(struct sbefifo *sbefifo,
632 const __be32 *command, size_t cmd_len,
633 struct iov_iter *response)
635 /* Try sending the command */
636 int rc = sbefifo_send_command(sbefifo, command, cmd_len);
640 /* Now, get the response */
641 return sbefifo_read_response(sbefifo, response);
644 static void sbefifo_collect_async_ffdc(struct sbefifo *sbefifo)
646 struct device *dev = &sbefifo->fsi_dev->dev;
647 struct iov_iter ffdc_iter;
648 struct kvec ffdc_iov;
654 sbefifo->async_ffdc = false;
655 ffdc = vmalloc(SBEFIFO_MAX_FFDC_SIZE);
657 dev_err(dev, "Failed to allocate SBE FFDC buffer\n");
660 ffdc_iov.iov_base = ffdc;
661 ffdc_iov.iov_len = SBEFIFO_MAX_FFDC_SIZE;
662 iov_iter_kvec(&ffdc_iter, WRITE, &ffdc_iov, 1, SBEFIFO_MAX_FFDC_SIZE);
663 cmd[0] = cpu_to_be32(2);
664 cmd[1] = cpu_to_be32(SBEFIFO_CMD_GET_SBE_FFDC);
665 rc = sbefifo_do_command(sbefifo, cmd, 2, &ffdc_iter);
667 dev_err(dev, "Error %d retrieving SBE FFDC\n", rc);
670 ffdc_sz = SBEFIFO_MAX_FFDC_SIZE - iov_iter_count(&ffdc_iter);
671 ffdc_sz /= sizeof(__be32);
672 rc = sbefifo_parse_status(dev, SBEFIFO_CMD_GET_SBE_FFDC, ffdc,
675 dev_err(dev, "Error %d decoding SBE FFDC\n", rc);
679 sbefifo_dump_ffdc(dev, ffdc, ffdc_sz, true);
685 static int __sbefifo_submit(struct sbefifo *sbefifo,
686 const __be32 *command, size_t cmd_len,
687 struct iov_iter *response)
689 struct device *dev = &sbefifo->fsi_dev->dev;
695 if (cmd_len < 2 || be32_to_cpu(command[0]) != cmd_len) {
696 dev_vdbg(dev, "Invalid command len %zd (header: %d)\n",
697 cmd_len, be32_to_cpu(command[0]));
701 /* First ensure the HW is in a clean state */
702 rc = sbefifo_cleanup_hw(sbefifo);
706 /* Look for async FFDC first if any */
707 if (sbefifo->async_ffdc)
708 sbefifo_collect_async_ffdc(sbefifo);
710 rc = sbefifo_do_command(sbefifo, command, cmd_len, response);
711 if (rc != 0 && rc != -EOVERFLOW)
716 * On failure, attempt a reset. Ignore the result, it will mark
717 * the fifo broken if the reset fails
719 sbefifo_request_reset(sbefifo);
721 /* Return original error */
726 * sbefifo_submit() - Submit and SBE fifo command and receive response
727 * @dev: The sbefifo device
728 * @command: The raw command data
729 * @cmd_len: The command size (in 32-bit words)
730 * @response: The output response buffer
731 * @resp_len: In: Response buffer size, Out: Response size
733 * This will perform the entire operation. If the reponse buffer
734 * overflows, returns -EOVERFLOW
736 int sbefifo_submit(struct device *dev, const __be32 *command, size_t cmd_len,
737 __be32 *response, size_t *resp_len)
739 struct sbefifo *sbefifo;
740 struct iov_iter resp_iter;
741 struct kvec resp_iov;
747 sbefifo = dev_get_drvdata(dev);
750 if (WARN_ON_ONCE(sbefifo->magic != SBEFIFO_MAGIC))
752 if (!resp_len || !command || !response)
755 /* Prepare iov iterator */
756 rbytes = (*resp_len) * sizeof(__be32);
757 resp_iov.iov_base = response;
758 resp_iov.iov_len = rbytes;
759 iov_iter_kvec(&resp_iter, WRITE, &resp_iov, 1, rbytes);
761 /* Perform the command */
762 rc = mutex_lock_interruptible(&sbefifo->lock);
765 rc = __sbefifo_submit(sbefifo, command, cmd_len, &resp_iter);
766 mutex_unlock(&sbefifo->lock);
768 /* Extract the response length */
769 rbytes -= iov_iter_count(&resp_iter);
770 *resp_len = rbytes / sizeof(__be32);
774 EXPORT_SYMBOL_GPL(sbefifo_submit);
777 * Char device interface
780 static void sbefifo_release_command(struct sbefifo_user *user)
782 if (is_vmalloc_addr(user->pending_cmd))
783 vfree(user->pending_cmd);
784 user->pending_cmd = NULL;
785 user->pending_len = 0;
788 static int sbefifo_user_open(struct inode *inode, struct file *file)
790 struct sbefifo *sbefifo = container_of(inode->i_cdev, struct sbefifo, cdev);
791 struct sbefifo_user *user;
793 user = kzalloc(sizeof(struct sbefifo_user), GFP_KERNEL);
797 file->private_data = user;
798 user->sbefifo = sbefifo;
799 user->cmd_page = (void *)__get_free_page(GFP_KERNEL);
800 if (!user->cmd_page) {
804 mutex_init(&user->file_lock);
805 user->read_timeout_ms = SBEFIFO_TIMEOUT_START_RSP;
810 static ssize_t sbefifo_user_read(struct file *file, char __user *buf,
811 size_t len, loff_t *offset)
813 struct sbefifo_user *user = file->private_data;
814 struct sbefifo *sbefifo;
815 struct iov_iter resp_iter;
816 struct iovec resp_iov;
822 sbefifo = user->sbefifo;
826 mutex_lock(&user->file_lock);
828 /* Cronus relies on -EAGAIN after a short read */
829 if (user->pending_len == 0) {
833 if (user->pending_len < 8) {
837 cmd_len = user->pending_len >> 2;
839 /* Prepare iov iterator */
840 resp_iov.iov_base = buf;
841 resp_iov.iov_len = len;
842 iov_iter_init(&resp_iter, WRITE, &resp_iov, 1, len);
844 /* Perform the command */
845 rc = mutex_lock_interruptible(&sbefifo->lock);
848 sbefifo->timeout_start_rsp_ms = user->read_timeout_ms;
849 rc = __sbefifo_submit(sbefifo, user->pending_cmd, cmd_len, &resp_iter);
850 sbefifo->timeout_start_rsp_ms = SBEFIFO_TIMEOUT_START_RSP;
851 mutex_unlock(&sbefifo->lock);
855 /* Extract the response length */
856 rc = len - iov_iter_count(&resp_iter);
858 sbefifo_release_command(user);
859 mutex_unlock(&user->file_lock);
863 static ssize_t sbefifo_user_write(struct file *file, const char __user *buf,
864 size_t len, loff_t *offset)
866 struct sbefifo_user *user = file->private_data;
867 struct sbefifo *sbefifo;
872 sbefifo = user->sbefifo;
873 if (len > SBEFIFO_MAX_USER_CMD_LEN)
878 mutex_lock(&user->file_lock);
880 /* Can we use the pre-allocate buffer ? If not, allocate */
881 if (len <= PAGE_SIZE)
882 user->pending_cmd = user->cmd_page;
884 user->pending_cmd = vmalloc(len);
885 if (!user->pending_cmd) {
890 /* Copy the command into the staging buffer */
891 if (copy_from_user(user->pending_cmd, buf, len)) {
896 /* Check for the magic reset command */
897 if (len == 4 && be32_to_cpu(*(__be32 *)user->pending_cmd) ==
898 SBEFIFO_RESET_MAGIC) {
900 /* Clear out any pending command */
901 user->pending_len = 0;
903 /* Trigger reset request */
904 rc = mutex_lock_interruptible(&sbefifo->lock);
907 rc = sbefifo_request_reset(user->sbefifo);
908 mutex_unlock(&sbefifo->lock);
914 /* Update the staging buffer size */
915 user->pending_len = len;
917 if (!user->pending_len)
918 sbefifo_release_command(user);
920 mutex_unlock(&user->file_lock);
922 /* And that's it, we'll issue the command on a read */
926 static int sbefifo_user_release(struct inode *inode, struct file *file)
928 struct sbefifo_user *user = file->private_data;
933 sbefifo_release_command(user);
934 free_page((unsigned long)user->cmd_page);
940 static int sbefifo_read_timeout(struct sbefifo_user *user, void __user *argp)
942 struct device *dev = &user->sbefifo->dev;
945 if (get_user(timeout, (__u32 __user *)argp))
949 user->read_timeout_ms = SBEFIFO_TIMEOUT_START_RSP;
950 dev_dbg(dev, "Timeout reset to %d\n", user->read_timeout_ms);
954 if (timeout < 10 || timeout > 120)
957 user->read_timeout_ms = timeout * 1000; /* user timeout is in sec */
959 dev_dbg(dev, "Timeout set to %d\n", user->read_timeout_ms);
964 static long sbefifo_user_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
966 struct sbefifo_user *user = file->private_data;
972 mutex_lock(&user->file_lock);
974 case FSI_SBEFIFO_READ_TIMEOUT_SECONDS:
975 rc = sbefifo_read_timeout(user, (void __user *)arg);
978 mutex_unlock(&user->file_lock);
982 static const struct file_operations sbefifo_fops = {
983 .owner = THIS_MODULE,
984 .open = sbefifo_user_open,
985 .read = sbefifo_user_read,
986 .write = sbefifo_user_write,
987 .release = sbefifo_user_release,
988 .unlocked_ioctl = sbefifo_user_ioctl,
991 static void sbefifo_free(struct device *dev)
993 struct sbefifo *sbefifo = container_of(dev, struct sbefifo, dev);
995 put_device(&sbefifo->fsi_dev->dev);
1003 static int sbefifo_probe(struct device *dev)
1005 struct fsi_device *fsi_dev = to_fsi_dev(dev);
1006 struct sbefifo *sbefifo;
1007 struct device_node *np;
1008 struct platform_device *child;
1009 char child_name[32];
1010 int rc, didx, child_idx = 0;
1012 dev_dbg(dev, "Found sbefifo device\n");
1014 sbefifo = kzalloc(sizeof(*sbefifo), GFP_KERNEL);
1018 /* Grab a reference to the device (parent of our cdev), we'll drop it later */
1019 if (!get_device(dev)) {
1024 sbefifo->magic = SBEFIFO_MAGIC;
1025 sbefifo->fsi_dev = fsi_dev;
1026 dev_set_drvdata(dev, sbefifo);
1027 mutex_init(&sbefifo->lock);
1028 sbefifo->timeout_start_rsp_ms = SBEFIFO_TIMEOUT_START_RSP;
1031 * Try cleaning up the FIFO. If this fails, we still register the
1032 * driver and will try cleaning things up again on the next access.
1034 rc = sbefifo_cleanup_hw(sbefifo);
1035 if (rc && rc != -ESHUTDOWN)
1036 dev_err(dev, "Initial HW cleanup failed, will retry later\n");
1038 /* Create chardev for userspace access */
1039 sbefifo->dev.type = &fsi_cdev_type;
1040 sbefifo->dev.parent = dev;
1041 sbefifo->dev.release = sbefifo_free;
1042 device_initialize(&sbefifo->dev);
1044 /* Allocate a minor in the FSI space */
1045 rc = fsi_get_new_minor(fsi_dev, fsi_dev_sbefifo, &sbefifo->dev.devt, &didx);
1049 dev_set_name(&sbefifo->dev, "sbefifo%d", didx);
1050 cdev_init(&sbefifo->cdev, &sbefifo_fops);
1051 rc = cdev_device_add(&sbefifo->cdev, &sbefifo->dev);
1053 dev_err(dev, "Error %d creating char device %s\n",
1054 rc, dev_name(&sbefifo->dev));
1055 goto err_free_minor;
1058 /* Create platform devs for dts child nodes (occ, etc) */
1059 for_each_available_child_of_node(dev->of_node, np) {
1060 snprintf(child_name, sizeof(child_name), "%s-dev%d",
1061 dev_name(&sbefifo->dev), child_idx++);
1062 child = of_platform_device_create(np, child_name, dev);
1064 dev_warn(dev, "failed to create child %s dev\n",
1068 device_create_file(&sbefifo->dev, &dev_attr_timeout);
1072 fsi_free_minor(sbefifo->dev.devt);
1074 put_device(&sbefifo->dev);
1078 static int sbefifo_unregister_child(struct device *dev, void *data)
1080 struct platform_device *child = to_platform_device(dev);
1082 of_device_unregister(child);
1084 of_node_clear_flag(dev->of_node, OF_POPULATED);
1089 static int sbefifo_remove(struct device *dev)
1091 struct sbefifo *sbefifo = dev_get_drvdata(dev);
1093 dev_dbg(dev, "Removing sbefifo device...\n");
1095 device_remove_file(&sbefifo->dev, &dev_attr_timeout);
1097 mutex_lock(&sbefifo->lock);
1098 sbefifo->dead = true;
1099 mutex_unlock(&sbefifo->lock);
1101 cdev_device_del(&sbefifo->cdev, &sbefifo->dev);
1102 fsi_free_minor(sbefifo->dev.devt);
1103 device_for_each_child(dev, NULL, sbefifo_unregister_child);
1104 put_device(&sbefifo->dev);
1109 static const struct fsi_device_id sbefifo_ids[] = {
1111 .engine_type = FSI_ENGID_SBE,
1112 .version = FSI_VERSION_ANY,
1117 static struct fsi_driver sbefifo_drv = {
1118 .id_table = sbefifo_ids,
1120 .name = DEVICE_NAME,
1121 .bus = &fsi_bus_type,
1122 .probe = sbefifo_probe,
1123 .remove = sbefifo_remove,
1127 static int sbefifo_init(void)
1129 return fsi_driver_register(&sbefifo_drv);
1132 static void sbefifo_exit(void)
1134 fsi_driver_unregister(&sbefifo_drv);
1137 module_init(sbefifo_init);
1138 module_exit(sbefifo_exit);
1139 MODULE_LICENSE("GPL");
1140 MODULE_AUTHOR("Brad Bishop <bradleyb@fuzziesquirrel.com>");
1141 MODULE_AUTHOR("Eddie James <eajames@linux.vnet.ibm.com>");
1142 MODULE_AUTHOR("Andrew Jeffery <andrew@aj.id.au>");
1143 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
1144 MODULE_DESCRIPTION("Linux device interface to the POWER Self Boot Engine");