summaryrefslogtreecommitdiffstats
path: root/qemu/roms/SLOF/tools
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/SLOF/tools
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/SLOF/tools')
-rw-r--r--qemu/roms/SLOF/tools/.gitignore1
-rw-r--r--qemu/roms/SLOF/tools/Makefile33
-rwxr-xr-xqemu/roms/SLOF/tools/create_reloc_table.sh60
-rw-r--r--qemu/roms/SLOF/tools/gen_reloc_table.c95
4 files changed, 0 insertions, 189 deletions
diff --git a/qemu/roms/SLOF/tools/.gitignore b/qemu/roms/SLOF/tools/.gitignore
deleted file mode 100644
index e45841399..000000000
--- a/qemu/roms/SLOF/tools/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-gen_reloc_table
diff --git a/qemu/roms/SLOF/tools/Makefile b/qemu/roms/SLOF/tools/Makefile
deleted file mode 100644
index 6de8fe645..000000000
--- a/qemu/roms/SLOF/tools/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# *****************************************************************************
-# * Copyright (c) 2004, 2008 IBM Corporation
-# * All rights reserved.
-# * This program and the accompanying materials
-# * are made available under the terms of the BSD License
-# * which accompanies this distribution, and is available at
-# * http://www.opensource.org/licenses/bsd-license.php
-# *
-# * Contributors:
-# * IBM Corporation - initial implementation
-# ****************************************************************************/
-
-include ../make.rules
-
-all: gen_reloc_table
-
-%.o: %.c
- $(HOSTCC) -W $(HOSTCFLAGS) -c $^
-
-elf2tst: elf2tst.o
- $(HOSTCC) $(HOSTCFLAGS) -o $@ $^
-
-gen_reloc_table: gen_reloc_table.o
- $(HOSTCC) $(HOSTCFLAGS) -o $@ $^
-
-clean_here:
- rm -f elf2tst *.o gen_reloc_table
-
-clean: clean_here
-
-
-distclean: clean_here
-
diff --git a/qemu/roms/SLOF/tools/create_reloc_table.sh b/qemu/roms/SLOF/tools/create_reloc_table.sh
deleted file mode 100755
index 8cacb742a..000000000
--- a/qemu/roms/SLOF/tools/create_reloc_table.sh
+++ /dev/null
@@ -1,60 +0,0 @@
-# *****************************************************************************
-# * Copyright (c) 2004, 2008 IBM Corporation
-# * All rights reserved.
-# * This program and the accompanying materials
-# * are made available under the terms of the BSD License
-# * which accompanies this distribution, and is available at
-# * http://www.opensource.org/licenses/bsd-license.php
-# *
-# * Contributors:
-# * IBM Corporation - initial implementation
-# ****************************************************************************/
-#!/bin/sh
-
-
-CROSSTMP=`grep ^CROSS $(dirname $0)/../make.rules | cut -d\ -f2`
-
-CROSS=${CROSS-$CROSSTMP}
-
-# Set defaults:
-LD="${CROSS}ld"
-LDFLAGS="-nostdlib"
-LDSFILE=""
-OBJCOPY="${CROSS}objcopy"
-
-DIRNAME=`dirname $0`
-
-# Parse parameters:
-while [ $# -gt 0 ] ; do
- case "$1" in
- --ld) LD=$2 ; shift 2 ;;
- --ldflags) LDFLAGS=$2 ; shift 2 ;;
- --lds) LDSFILE=$2 ; shift 2 ;;
- --objcopy) OBJCOPY=$2 ; shift 2 ;;
- *.o|*.a|-l*|-L*) OBJFILES="$OBJFILES $1" ; shift ;;
- *) echo "$0:" ; echo " Unsupported argument: $1"; exit -1 ;;
- esac
-done
-
-if [ -z $LDSFILE ]; then
- echo "Please specifiy an lds file with the --lds option"
- exit 42
-fi
-
-TMP1=`mktemp`
-TMP2=`mktemp`
-
-# Now create the two object files:
-$LD $LDFLAGS -T $LDSFILE -o $TMP1.o $OBJFILES || exit -1
-$LD $LDFLAGS -T $LDSFILE -o $TMP2.o $OBJFILES --section-start .text=0x4000000000000000 || exit -1
-
-$OBJCOPY -O binary $TMP1.o $TMP1.bin || exit -1
-$OBJCOPY -O binary $TMP2.o $TMP2.bin || exit -1
-
-# Create the relocation table with gen_reloc_table:
-$DIRNAME/gen_reloc_table $TMP1.bin $TMP2.bin reloc_table.bin
-
-$LD -o reloc_table.o -bbinary reloc_table.bin -e0 || exit -1
-$OBJCOPY --rename-section .data=.reloc reloc_table.o reloc_table.o || exit -1
-
-rm -f $TMP1.o $TMP2.o $TMP1.bin $TMP2.bin reloc_table.bin
diff --git a/qemu/roms/SLOF/tools/gen_reloc_table.c b/qemu/roms/SLOF/tools/gen_reloc_table.c
deleted file mode 100644
index b15ce9d00..000000000
--- a/qemu/roms/SLOF/tools/gen_reloc_table.c
+++ /dev/null
@@ -1,95 +0,0 @@
-/******************************************************************************
- * Copyright (c) 2004, 2008 IBM Corporation
- * All rights reserved.
- * This program and the accompanying materials
- * are made available under the terms of the BSD License
- * which accompanies this distribution, and is available at
- * http://www.opensource.org/licenses/bsd-license.php
- *
- * Contributors:
- * IBM Corporation - initial implementation
- *****************************************************************************/
-
-#include <stdio.h>
-#include <stdlib.h>
-
-static int reloc_64_cnt;
-
-static int reloc_64[4096];
-
-static void
-output_int(FILE *output_file, int i)
-{
- fputc((i>>24) & 0xff, output_file);
- fputc((i>>16) & 0xff, output_file);
- fputc((i>>8) & 0xff, output_file);
- fputc(i & 0xff, output_file);
-}
-
-static void
-output_reloc_table(FILE * output_file, int reloc_cnt, int reloc[])
-{
- int i;
- for (i=0; i < reloc_cnt; i++)
- {
-#ifdef DEBUG
- printf ("reloc %x\n", reloc[i]);
-#endif
- output_int (output_file, reloc[i]);
- }
- if ((reloc_cnt & 1) == 0)
- output_int (output_file, 0);
-}
-
-int
-main(int argc, char *argv[])
-{
- int cnt_a, cnt_b, offset = -1;
- unsigned char a, b;
- FILE *orig, *other, *output_file;
-
- if (argc != 4)
- {
- fprintf (stderr, "reloc_diff orig_file other_file output_file\n");
- exit(-1);
- }
-
- orig = fopen(argv[1], "rb");
- other = fopen(argv[2], "rb");
- output_file = fopen(argv[3], "wb");
- if(orig == NULL || other == NULL || output_file == NULL) {
- printf("Could not open file.\n");
- return -1;
- }
-
- while (1)
- {
- cnt_a = fread(&a, 1, 1, orig);
- cnt_b = fread(&b, 1, 1, other);
- offset ++;
- if (cnt_a != cnt_b)
- {
- fprintf (stderr, "Files >%s< and >%s< have not the same length\n",argv[1],argv[2]);
- exit(-1);
- }
-
- if (cnt_a == 0)
- break;
-
- if (a == b) continue;
-
- if (a + 0x40 == b)
- {
- reloc_64[reloc_64_cnt++] = offset;
- }
- else
- {
- fprintf(stderr, "Unknown relocation");
- fprintf(stderr, "Offset %x: %02x %02x\n", offset, a, b);
- break;
- }
- }
-
- output_reloc_table(output_file, reloc_64_cnt, reloc_64);
- return 0;
-}