diff mbox series

[v5,19/19] main: Add sbefifo backend

Message ID 20200430023440.225504-20-amitay@ozlabs.org
State Accepted
Headers show
Series Add sbefifo backend | expand

Checks

Context Check Description
snowpatch_ozlabs/apply_patch warning Failed to apply on branch master (6c10b68bf774a9fe21affd5ef0b40084cd49800d)
snowpatch_ozlabs/apply_patch fail Failed to apply to any branch

Commit Message

Amitay Isaacs April 30, 2020, 2:34 a.m. UTC
Signed-off-by: Amitay Isaacs <amitay@ozlabs.org>
Reviewed-by: Alistair Popple <alistair@popple.id.au>
---
 src/main.c | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/src/main.c b/src/main.c
index 785dc26..5a5616d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -149,6 +149,7 @@  static void print_usage(void)
 	printf("\t\tRun command on all possible processors/chips/threads (default)\n");
 	printf("\t-b, --backend=backend\n");
 	printf("\t\tcronus:\tA backend based on cronus server\n");
+	printf("\t\tsbefifo:\tA backend using sbefifo kernel driver\n");
 	printf("\t\tfsi:\tAn experimental backend that uses\n");
 	printf("\t\t\tbit-banging to access the host processor\n");
 	printf("\t\t\tvia the FSI bus.\n");
@@ -392,6 +393,8 @@  static bool parse_options(int argc, char *argv[])
 				backend = PDBG_BACKEND_HOST;
 			} else if (strcmp(optarg, "cronus") == 0) {
 				backend = PDBG_BACKEND_CRONUS;
+			} else if (strcmp(optarg, "sbefifo") == 0) {
+				backend = PDBG_BACKEND_SBEFIFO;
 			} else {
 				fprintf(stderr, "Invalid backend '%s'\n", optarg);
 				opt_error = true;