summaryrefslogtreecommitdiffstats
path: root/qemu/roms/u-boot/common/cmd_mp.c
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/u-boot/common/cmd_mp.c
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/u-boot/common/cmd_mp.c')
-rw-r--r--qemu/roms/u-boot/common/cmd_mp.c73
1 files changed, 0 insertions, 73 deletions
diff --git a/qemu/roms/u-boot/common/cmd_mp.c b/qemu/roms/u-boot/common/cmd_mp.c
deleted file mode 100644
index 328b33806..000000000
--- a/qemu/roms/u-boot/common/cmd_mp.c
+++ /dev/null
@@ -1,73 +0,0 @@
-/*
- * Copyright 2008-2009 Freescale Semiconductor, Inc.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <command.h>
-
-static int
-cpu_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
-{
- unsigned long cpuid;
-
- if (argc < 3)
- return CMD_RET_USAGE;
-
- cpuid = simple_strtoul(argv[1], NULL, 10);
- if (!is_core_valid(cpuid)) {
- printf ("Core num: %lu is not valid\n", cpuid);
- return 1;
- }
-
-
- if (argc == 3) {
- if (strncmp(argv[2], "reset", 5) == 0)
- cpu_reset(cpuid);
- else if (strncmp(argv[2], "status", 6) == 0)
- cpu_status(cpuid);
- else if (strncmp(argv[2], "disable", 7) == 0)
- return cpu_disable(cpuid);
- else
- return CMD_RET_USAGE;
-
- return 0;
- }
-
- /* 4 or greater, make sure its release */
- if (strncmp(argv[2], "release", 7) != 0)
- return CMD_RET_USAGE;
-
- if (cpu_release(cpuid, argc - 3, argv + 3))
- return CMD_RET_USAGE;
-
- return 0;
-}
-
-#ifdef CONFIG_SYS_LONGHELP
-static char cpu_help_text[] =
- "<num> reset - Reset cpu <num>\n"
- "cpu <num> status - Status of cpu <num>\n"
- "cpu <num> disable - Disable cpu <num>\n"
- "cpu <num> release <addr> [args] - Release cpu <num> at <addr> with [args]"
-#ifdef CONFIG_PPC
- "\n"
- " [args] : <pir> <r3> <r6>\n" \
- " pir - processor id (if writeable)\n" \
- " r3 - value for gpr 3\n" \
- " r6 - value for gpr 6\n" \
- "\n" \
- " Use '-' for any arg if you want the default value.\n" \
- " Default for r3 is <num> and r6 is 0\n" \
- "\n" \
- " When cpu <num> is released r4 and r5 = 0.\n" \
- " r7 will contain the size of the initial mapped area"
-#endif
- "";
-#endif
-
-U_BOOT_CMD(
- cpu, CONFIG_SYS_MAXARGS, 1, cpu_cmd,
- "Multiprocessor CPU boot manipulation and release", cpu_help_text
-);