diff options
Diffstat (limited to 'drivers/net/wireless/bcmdhd/include')
61 files changed, 17240 insertions, 0 deletions
diff --git a/drivers/net/wireless/bcmdhd/include/Makefile b/drivers/net/wireless/bcmdhd/include/Makefile new file mode 100644 index 00000000000..c07266fd6fd --- /dev/null +++ b/drivers/net/wireless/bcmdhd/include/Makefile | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | # | ||
| 3 | # This script serves following purpose: | ||
| 4 | # | ||
| 5 | # 1. It generates native version information by querying | ||
| 6 | # automerger maintained database to see where src/include | ||
| 7 | # came from | ||
| 8 | # 2. For select components, as listed in compvers.sh | ||
| 9 | # it generates component version files | ||
| 10 | # | ||
| 11 | # Copyright 2005, Broadcom, Inc. | ||
| 12 | # | ||
| 13 | # $Id: Makefile 241702 2011-02-19 00:41:03Z automrgr $ | ||
| 14 | # | ||
| 15 | |||
| 16 | SRCBASE := .. | ||
| 17 | |||
| 18 | TARGETS := epivers.h | ||
| 19 | |||
| 20 | ifdef VERBOSE | ||
| 21 | export VERBOSE | ||
| 22 | endif | ||
| 23 | |||
| 24 | all release: epivers compvers | ||
| 25 | |||
| 26 | # Generate epivers.h for native branch version | ||
| 27 | epivers: | ||
| 28 | bash epivers.sh | ||
| 29 | |||
| 30 | # Generate epivers.h for native branch version | ||
| 31 | compvers: | ||
| 32 | @if [ -s "compvers.sh" ]; then \ | ||
| 33 | echo "Generating component versions, if any"; \ | ||
| 34 | bash compvers.sh; \ | ||
| 35 | else \ | ||
| 36 | echo "Skipping component version generation"; \ | ||
| 37 | fi | ||
| 38 | |||
| 39 | # Generate epivers.h for native branch version | ||
| 40 | clean_compvers: | ||
| 41 | @if [ -s "compvers.sh" ]; then \ | ||
| 42 | echo "bash compvers.sh clean"; \ | ||
| 43 | bash compvers.sh clean; \ | ||
| 44 | else \ | ||
| 45 | echo "Skipping component version clean"; \ | ||
| 46 | fi | ||
| 47 | |||
| 48 | clean: | ||
| 49 | rm -f $(TARGETS) *.prev | ||
| 50 | |||
| 51 | clean_all: clean clean_compvers | ||
| 52 | |||
| 53 | .PHONY: all release clean epivers compvers clean_compvers | ||
diff --git a/drivers/net/wireless/bcmdhd/include/aidmp.h b/drivers/net/wireless/bcmdhd/include/aidmp.h new file mode 100644 index 00000000000..375df443a29 --- /dev/null +++ b/drivers/net/wireless/bcmdhd/include/aidmp.h | |||
| @@ -0,0 +1,377 @@ | |||
| 1 | /* | ||
| 2 | * Broadcom AMBA Interconnect definitions. | ||
| 3 | * | ||
| 4 | * Copyright (C) 1999-2011, Broadcom Corporation | ||
| 5 | * | ||
| 6 | * Unless you and Broadcom execute a separate written software license | ||
| 7 | * agreement governing use of this software, this software is licensed to you | ||
| 8 | * under the terms of the GNU General Public License version 2 (the "GPL"), | ||
| 9 | * available at http://www.broadcom.com/licenses/GPLv2.php, with the | ||
| 10 | * following added to such license: | ||
| 11 | * | ||
| 12 | * As a special exception, the copyright holders of this software give you | ||
| 13 | * permission to link this software with independent modules, and to copy and | ||
| 14 | * distribute the resulting executable under terms of your choice, provided that | ||
| 15 | * you also meet, for each linked independent module, the terms and conditions of | ||
| 16 | * the license of that module. An independent module is a module which is not | ||
| 17 | * derived from this software. The special exception does not apply to any | ||
| 18 | * modifications of the software. | ||
| 19 | * | ||
| 20 | * Notwithstanding the above, under no circumstances may you combine this | ||
| 21 | * software in any way with any other Broadcom software provided under a license | ||
| 22 | * other than the GPL, without Broadcom's express prior written consent. | ||
| 23 | * | ||
| 24 | * $Id: aidmp.h,v 13.4.14.1 2010-03-09 18:40:06 Exp $ | ||
| 25 | */ | ||
| 26 | |||
| 27 | |||
| 28 | #ifndef _AIDMP_H | ||
| 29 | #define _AIDMP_H | ||
| 30 | |||
| 31 | |||
| 32 | #define MFGID_ARM 0x43b | ||
| 33 | #define MFGID_BRCM 0x4bf | ||
| 34 | #define MFGID_MIPS 0x4a7 | ||
| 35 | |||
| 36 | |||
| 37 | #define CC_SIM 0 | ||
| 38 | #define CC_EROM 1 | ||
| 39 | #define CC_CORESIGHT 9 | ||
| 40 | #define CC_VERIF 0xb | ||
| 41 | #define CC_OPTIMO 0xd | ||
| 42 | #define CC_GEN 0xe | ||
| 43 | #define CC_PRIMECELL 0xf | ||
| 44 | |||
| 45 | |||
| 46 | #define ER_EROMENTRY 0x000 | ||
| 47 | #define ER_REMAPCONTROL 0xe00 | ||
| 48 | #define ER_REMAPSELECT 0xe04 | ||
| 49 | #define ER_MASTERSELECT 0xe10 | ||
| 50 | #define ER_ITCR 0xf00 | ||
| 51 | #define ER_ITIP 0xf04 | ||
| 52 | |||
| 53 | |||
| 54 | #define ER_TAG 0xe | ||
| 55 | #define ER_TAG1 0x6 | ||
| 56 | #define ER_VALID 1 | ||
| 57 | #define ER_CI 0 | ||
| 58 | #define ER_MP 2 | ||
| 59 | #define ER_ADD 4 | ||
| 60 | #define ER_END 0xe | ||
| 61 | #define ER_BAD 0xffffffff | ||
| 62 | |||
