summaryrefslogtreecommitdiffstats
path: root/qemu/roms/SLOF/lib/libbases
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/lib/libbases
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/lib/libbases')
-rw-r--r--qemu/roms/SLOF/lib/libbases/Makefile40
-rw-r--r--qemu/roms/SLOF/lib/libbases/libbases.code43
-rw-r--r--qemu/roms/SLOF/lib/libbases/libbases.in17
3 files changed, 0 insertions, 100 deletions
diff --git a/qemu/roms/SLOF/lib/libbases/Makefile b/qemu/roms/SLOF/lib/libbases/Makefile
deleted file mode 100644
index add4ed18c..000000000
--- a/qemu/roms/SLOF/lib/libbases/Makefile
+++ /dev/null
@@ -1,40 +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
-# ****************************************************************************/
-
-TOPCMNDIR ?= ../..
-
-include $(TOPCMNDIR)/make.rules
-
-ASFLAGS = $(FLAG) $(RELEASE) $(CPUARCHDEF) -Wa,-mregnames
-CPPFLAGS = -I../libc/include $(CPUARCHDEF) -I$(INCLBRDDIR) -I. -I../../include
-LDFLAGS = -nostdlib
-
-all:
-
-clean:
- $(RM) $(TARGET) $(OBJS)
-
-distclean: clean
- $(RM) Makefile.dep
-
-
-# Rules for creating the dependency file:
-depend:
- $(RM) Makefile.dep
- $(MAKE) Makefile.dep
-
-Makefile.dep: Makefile
-
-
-# Include dependency file if available:
--include Makefile.dep
-
diff --git a/qemu/roms/SLOF/lib/libbases/libbases.code b/qemu/roms/SLOF/lib/libbases/libbases.code
deleted file mode 100644
index 128b94ab2..000000000
--- a/qemu/roms/SLOF/lib/libbases/libbases.code
+++ /dev/null
@@ -1,43 +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 <southbridge.h>
-#include <nvram.h>
-
-// : get-nvram-base ( -- base )
-PRIM(get_X2d_nvram_X2d_base)
- PUSH;
- TOS.u = SB_NVRAM_adr;
-MIRP
-
-// : get-nvram-size ( -- size )
-PRIM(get_X2d_nvram_X2d_size)
- PUSH;
- TOS.u = get_nvram_size();
-MIRP
-
-// : get-flash-base ( -- base )
-PRIM(get_X2d_flash_X2d_base)
- PUSH;
- TOS.u = SB_FLASH_adr;
-MIRP
-
-// : get-flash-size ( -- size )
-PRIM(get_X2d_flash_X2d_size)
- PUSH;
- TOS.u = FLASH_LENGTH;
-MIRP
-
-// : get-mbx-base ( -- base )
-PRIM(get_X2d_mbx_X2d_base)
- PUSH;
- TOS.u = SB_MAILBOX_adr;
-MIRP
diff --git a/qemu/roms/SLOF/lib/libbases/libbases.in b/qemu/roms/SLOF/lib/libbases/libbases.in
deleted file mode 100644
index 844a55de1..000000000
--- a/qemu/roms/SLOF/lib/libbases/libbases.in
+++ /dev/null
@@ -1,17 +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
- *****************************************************************************/
-
-cod(get-nvram-base)
-cod(get-nvram-size)
-cod(get-flash-base)
-cod(get-flash-size)
-cod(get-mbx-base)