aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/adm8668/files/arch/mips/include/asm/mach-adm8668/bsp_sup.h
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2011-01-27 21:49:56 +0000
committerFlorian Fainelli <florian@openwrt.org>2011-01-27 21:49:56 +0000
commit2e7adc9de9e1743416eb51e4770aab3692080cc4 (patch)
treef1d9a4d85a20913a4bddd2dfcbb2e820233c28d7 /target/linux/adm8668/files/arch/mips/include/asm/mach-adm8668/bsp_sup.h
parentcfbe1a66e071c78df1185c8187e53f6cba5182d9 (diff)
downloadmaster-187ad058-2e7adc9de9e1743416eb51e4770aab3692080cc4.tar.gz
master-187ad058-2e7adc9de9e1743416eb51e4770aab3692080cc4.tar.bz2
master-187ad058-2e7adc9de9e1743416eb51e4770aab3692080cc4.zip
[adm8668] clean up mach-adm8668 includes
This patch cleans up the include directory, as they were from vendors 2.4 GPL source. Now only what's used is there. Signed-off-by: Scott Nicholas <scott.nicholas@scottn.us> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25175 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/adm8668/files/arch/mips/include/asm/mach-adm8668/bsp_sup.h')
-rw-r--r--target/linux/adm8668/files/arch/mips/include/asm/mach-adm8668/bsp_sup.h84
1 files changed, 0 insertions, 84 deletions
diff --git a/target/linux/adm8668/files/arch/mips/include/asm/mach-adm8668/bsp_sup.h b/target/linux/adm8668/files/arch/mips/include/asm/mach-adm8668/bsp_sup.h
deleted file mode 100644
index 23fdab97c2..0000000000
--- a/target/linux/adm8668/files/arch/mips/include/asm/mach-adm8668/bsp_sup.h
+++ /dev/null
@@ -1,84 +0,0 @@
-/************************************************************************
- *
- * Copyright (c) 2005
- * Infineon Technologies AG
- * St. Martin Strasse 53; 81669 Muenchen; Germany
- *
- ************************************************************************/
-#ifndef _BSP_SUP_H_
-#define _BSP_SUP_H_
-
-#define ADD_WAN_MAC
-#define CONFIG_IFX_GAN
-#define UBOOT_CFG_ENV_SIZE (0x400-4)
-#define ADM8668_BL_MAGIC 0x6c62676d
-#define ADM8668_MAC_MAGIC 0x69666164
-#define ADM8668_VER_MAGIC 0x7276676d
-#define ADM8668_ID_MAGIC 0x6469676d
-#define ADM8668_IF_MAGIC 0x6669676d
-#define ADM8668_WANMAC_MAGIC 0x69666164
-#define ADM8668_IMEI_MAGIC 0x6669676e
-
-#define BSP_IFNAME_MAX_LEN 15
-#define BOOT_LINE_SIZE 255
-#define BSP_STR_LEN 79
-
-
-/*
- * Boot mode configuration
- */
-typedef struct BTMODE_CFG_S
-{
- unsigned long btmode;
- unsigned long dlmethod;
-} BTMODE_CFG_T;
-
-
-/*
- * Interface configuration
- */
-typedef struct IF_CFG_S
-{
- char ifname[BSP_IFNAME_MAX_LEN+1];
- unsigned long ip;
- unsigned long mask;
- unsigned long gateway;
-} IF_CFG_T;
-
-
-/*
- * Board configuration
- */
-typedef struct BOARD_CFG_S
-{
- unsigned long blmagic;
- unsigned char blreserved[UBOOT_CFG_ENV_SIZE];
-
- unsigned long macmagic;
- unsigned char mac[8];
- unsigned long macnum;
-
- unsigned long idmagic;
- unsigned char serial[BSP_STR_LEN+1];
-
- unsigned long vermagic;
- unsigned char ver[BSP_STR_LEN+1];
-
- unsigned long ifmagic;
- IF_CFG_T ifcfg[8];
-
- unsigned long btmagic;
- BTMODE_CFG_T bootmode;
-
- unsigned long wanmagic;
- unsigned char wanmac[8];
-
- unsigned long imeimagic;
- unsigned char imei0[16];
- unsigned char imei1[16];
-} BOARD_CFG_T, *PBOARD_CFG_T;
-
-#define ADM8668_BOARD_CFG_ADDR (ADM8668_SMEM0_BASE + CONFIG_ADM8668_BSP_OFFSET*1024)
-#define ADM8668_BOARD_CFG_SIZE (CONFIG_ADM8668_BSP_SIZE*1024)
-
-#endif /* _BSP_SUP_H_ */