summaryrefslogtreecommitdiffstats
path: root/qemu/roms/u-boot/board/ti/am43xx/board.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/board/ti/am43xx/board.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/board/ti/am43xx/board.h')
-rw-r--r--qemu/roms/u-boot/board/ti/am43xx/board.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/qemu/roms/u-boot/board/ti/am43xx/board.h b/qemu/roms/u-boot/board/ti/am43xx/board.h
deleted file mode 100644
index 091162ee2..000000000
--- a/qemu/roms/u-boot/board/ti/am43xx/board.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * board.h
- *
- * TI AM437x boards information header
- * Derived from AM335x board.
- *
- * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#ifndef _BOARD_H_
-#define _BOARD_H_
-
-#include <asm/arch/omap.h>
-
-static char *const am43xx_board_name = (char *)AM4372_BOARD_NAME_START;
-
-/*
- * TI AM437x EVMs define a system EEPROM that defines certain sub-fields.
- * We use these fields to in turn see what board we are on, and what
- * that might require us to set or not set.
- */
-#define HDR_NO_OF_MAC_ADDR 3
-#define HDR_ETH_ALEN 6
-#define HDR_NAME_LEN 8
-
-#define DEV_ATTR_MAX_OFFSET 5
-#define DEV_ATTR_MIN_OFFSET 0
-
-struct am43xx_board_id {
- unsigned int magic;
- char name[HDR_NAME_LEN];
- char version[4];
- char serial[12];
- char config[32];
- char mac_addr[HDR_NO_OF_MAC_ADDR][HDR_ETH_ALEN];
-};
-
-static inline int board_is_eposevm(void)
-{
- return !strncmp(am43xx_board_name, "AM43EPOS", HDR_NAME_LEN);
-}
-
-static inline int board_is_gpevm(void)
-{
- return !strncmp(am43xx_board_name, "AM43__GP", HDR_NAME_LEN);
-}
-
-void enable_uart0_pin_mux(void);
-void enable_board_pin_mux(void);
-void enable_i2c0_pin_mux(void);
-#endif