summaryrefslogtreecommitdiffstats
path: root/qemu/roms/u-boot/include/virtex2.h
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/include/virtex2.h
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/include/virtex2.h')
-rw-r--r--qemu/roms/u-boot/include/virtex2.h96
1 files changed, 0 insertions, 96 deletions
diff --git a/qemu/roms/u-boot/include/virtex2.h b/qemu/roms/u-boot/include/virtex2.h
deleted file mode 100644
index 7b7825f51..000000000
--- a/qemu/roms/u-boot/include/virtex2.h
+++ /dev/null
@@ -1,96 +0,0 @@
-/*
- * (C) Copyright 2002
- * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
- * Keith Outwater, keith_outwater@mvis.com
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#ifndef _VIRTEX2_H_
-#define _VIRTEX2_H_
-
-#include <xilinx.h>
-
-extern struct xilinx_fpga_op virtex2_op;
-
-/*
- * Slave SelectMap Implementation function table.
- */
-typedef struct {
- xilinx_pre_fn pre;
- xilinx_pgm_fn pgm;
- xilinx_init_fn init;
- xilinx_err_fn err;
- xilinx_done_fn done;
- xilinx_clk_fn clk;
- xilinx_cs_fn cs;
- xilinx_wr_fn wr;
- xilinx_rdata_fn rdata;
- xilinx_wdata_fn wdata;
- xilinx_busy_fn busy;
- xilinx_abort_fn abort;
- xilinx_post_fn post;
-} xilinx_virtex2_slave_selectmap_fns;
-
-/* Slave Serial Implementation function table */
-typedef struct {
- xilinx_pgm_fn pgm;
- xilinx_clk_fn clk;
- xilinx_rdata_fn rdata;
- xilinx_wdata_fn wdata;
-} xilinx_virtex2_slave_serial_fns;
-
-/* Device Image Sizes (in bytes)
- *********************************************************************/
-#define XILINX_XC2V40_SIZE (338208 / 8)
-#define XILINX_XC2V80_SIZE (597408 / 8)
-#define XILINX_XC2V250_SIZE (1591584 / 8)
-#define XILINX_XC2V500_SIZE (2557857 / 8)
-#define XILINX_XC2V1000_SIZE (3749408 / 8)
-#define XILINX_XC2V1500_SIZE (5166240 / 8)
-#define XILINX_XC2V2000_SIZE (6808352 / 8)
-#define XILINX_XC2V3000_SIZE (9589408 / 8)
-#define XILINX_XC2V4000_SIZE (14220192 / 8)
-#define XILINX_XC2V6000_SIZE (19752096 / 8)
-#define XILINX_XC2V8000_SIZE (26185120 / 8)
-#define XILINX_XC2V10000_SIZE (33519264 / 8)
-
-/* Descriptor Macros
- *********************************************************************/
-#define XILINX_XC2V40_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V40_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V80_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V80_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V250_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V250_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V500_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V500_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V1000_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V1000_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V1500_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V1500_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V2000_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V2000_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V3000_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V3000_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V4000_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V4000_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V6000_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V6000_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V8000_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V8000_SIZE, fn_table, cookie, &virtex2_op }
-
-#define XILINX_XC2V10000_DESC(iface, fn_table, cookie) \
-{ xilinx_virtex2, iface, XILINX_XC2V10000_SIZE, fn_table, cookie, &virtex2_op }
-
-#endif /* _VIRTEX2_H_ */