wifi: updated WiFi driver to AOSP version to support WiFi with EAP authentication on Gingerbread.
Need Gingerbread wpa_supplicant.
This commit is contained in:
parent
2d292eb9bb
commit
765f3a9d95
@ -9,7 +9,7 @@
|
||||
#include <asm/gpio.h>
|
||||
#include <asm/io.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/wifi_tiwlan.h>
|
||||
#include <linux/wlan_plat.h>
|
||||
|
||||
#include "board-htcleo.h"
|
||||
|
||||
@ -87,7 +87,6 @@ static struct wifi_platform_data htcleo_wifi_control = {
|
||||
.set_reset = htcleo_wifi_reset,
|
||||
.set_carddetect = htcleo_wifi_set_carddetect,
|
||||
.mem_prealloc = htcleo_wifi_mem_prealloc,
|
||||
.dot11n_enable = 1,
|
||||
};
|
||||
|
||||
static struct platform_device htcleo_wifi_device = {
|
||||
@ -100,6 +99,36 @@ static struct platform_device htcleo_wifi_device = {
|
||||
},
|
||||
};
|
||||
|
||||
extern unsigned char *get_wifi_nvs_ram(void);
|
||||
extern int wifi_calibration_size_set(void);
|
||||
|
||||
static unsigned htcleo_wifi_update_nvs(char *str, int add_flag)
|
||||
{
|
||||
#define NVS_LEN_OFFSET 0x0C
|
||||
#define NVS_DATA_OFFSET 0x40
|
||||
unsigned char *ptr;
|
||||
unsigned len;
|
||||
|
||||
if (!str)
|
||||
return -EINVAL;
|
||||
ptr = get_wifi_nvs_ram();
|
||||
/* Size in format LE assumed */
|
||||
memcpy(&len, ptr + NVS_LEN_OFFSET, sizeof(len));
|
||||
/* if the last byte in NVRAM is 0, trim it */
|
||||
if (ptr[NVS_DATA_OFFSET + len - 1] == 0)
|
||||
len -= 1;
|
||||
if (add_flag) {
|
||||
strcpy(ptr + NVS_DATA_OFFSET + len, str);
|
||||
len += strlen(str);
|
||||
} else {
|
||||
if (strnstr(ptr + NVS_DATA_OFFSET, str, len))
|
||||
len -= strlen(str);
|
||||
}
|
||||
memcpy(ptr + NVS_LEN_OFFSET, &len, sizeof(len));
|
||||
wifi_calibration_size_set();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int __init htcleo_wifi_init(void)
|
||||
{
|
||||
|
@ -63,4 +63,4 @@ obj-$(CONFIG_WL12XX) += wl12xx/
|
||||
|
||||
obj-$(CONFIG_IWM) += iwmc3200wifi/
|
||||
|
||||
obj-$(CONFIG_BCM4329) += bcm4329_204/
|
||||
obj-$(CONFIG_BCM4329) += bcm4329/
|
||||
|
@ -1,6 +1,8 @@
|
||||
config BCM4329
|
||||
tristate "Broadcom 4329 wireless cards support"
|
||||
depends on WIRELESS_EXT && MMC
|
||||
depends on MMC
|
||||
select WIRELESS_EXT
|
||||
select WEXT_PRIV
|
||||
---help---
|
||||
This module adds support for wireless adapters based on
|
||||
Broadcom 4329 chipset.
|
||||
|
@ -4,8 +4,10 @@ DHDCFLAGS = -DLINUX -DBCMDRIVER -DBCMDONGLEHOST -DDHDTHREAD -DBCMWPA2 \
|
||||
-DDHD_FIRSTREAD=64 -DDHD_GPL -DDHD_SCHED -DBDC -DTOE -DDHD_BCMEVENTS \
|
||||
-DSHOW_EVENTS -DBCMSDIO -DDHD_GPL -DBCMLXSDMMC -DBCMPLATFORM_BUS \
|
||||
-Wall -Wstrict-prototypes -Werror -DOOB_INTR_ONLY -DCUSTOMER_HW2 \
|
||||
-DDHD_USE_STATIC_BUF -DMMC_SDIO_ABORT -DSOFTAP \
|
||||
-DSET_RANDOM_MAC_SOFTAP \
|
||||
-DDHD_USE_STATIC_BUF -DMMC_SDIO_ABORT -DDHD_DEBUG_TRAP -DSOFTAP \
|
||||
-DEMBEDDED_PLATFORM -DARP_OFFLOAD_SUPPORT -DPKT_FILTER_SUPPORT \
|
||||
-DGET_CUSTOM_MAC_ENABLE -DSET_RANDOM_MAC_SOFTAP -DCSCAN -DHW_OOB \
|
||||
-DKEEP_ALIVE \
|
||||
-Idrivers/net/wireless/bcm4329 -Idrivers/net/wireless/bcm4329/include
|
||||
|
||||
DHDOFILES = dhd_linux.o linux_osl.o bcmutils.o dhd_common.o dhd_custom_gpio.o \
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Misc utility routines for accessing chip-specific features
|
||||
* of the SiliconBackplane-based Broadcom chips.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -22,7 +22,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: aiutils.c,v 1.6.4.7.4.5 2009/09/25 00:32:01 Exp $
|
||||
* $Id: aiutils.c,v 1.6.4.7.4.6 2010/04/21 20:43:47 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom SPI over PCI-SPI Host Controller, low-level hardware driver
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmpcispi.c,v 1.22.2.4.4.5 2008/07/09 21:23:30 Exp $
|
||||
* $Id: bcmpcispi.c,v 1.22.2.4.4.5.6.1 2010/08/13 00:26:05 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
@ -606,18 +606,23 @@ spi_spinbits(sdioh_info_t *sd)
|
||||
spin_count = 0;
|
||||
while ((SPIPCI_RREG(sd->osh, ®s->spih_stat) & SPIH_WFEMPTY) == 0) {
|
||||
if (spin_count > SPI_SPIN_BOUND) {
|
||||
ASSERT(FALSE); /* Spin bound exceeded */
|
||||
sd_err(("%s: SPIH_WFEMPTY spin bits out of bound %u times \n",
|
||||
__FUNCTION__, spin_count));
|
||||
ASSERT(FALSE);
|
||||
}
|
||||
spin_count++;
|
||||
}
|
||||
spin_count = 0;
|
||||
|
||||
/* Wait for SPI Transfer state machine to return to IDLE state.
|
||||
* The state bits are only implemented in Rev >= 5 FPGA. These
|
||||
* bits are hardwired to 00 for Rev < 5, so this check doesn't cause
|
||||
* any problems.
|
||||
*/
|
||||
spin_count = 0;
|
||||
while ((SPIPCI_RREG(osh, ®s->spih_stat) & SPIH_STATE_MASK) != 0) {
|
||||
if (spin_count > SPI_SPIN_BOUND) {
|
||||
sd_err(("%s: SPIH_STATE_MASK spin bits out of bound %u times \n",
|
||||
__FUNCTION__, spin_count));
|
||||
ASSERT(FALSE);
|
||||
}
|
||||
spin_count++;
|
||||
|
@ -40,9 +40,7 @@
|
||||
|
||||
#include <sdio.h> /* sdio spec */
|
||||
|
||||
/* Defines number of access retries to configuration registers */
|
||||
#define SDIOH_API_ACCESS_RETRY_LIMIT 2
|
||||
|
||||
const uint bcmsdh_msglevel = BCMSDH_ERROR_VAL;
|
||||
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmsdh_linux.c,v 1.42.10.10.2.12 2010/03/10 03:09:48 Exp $
|
||||
* $Id: bcmsdh_linux.c,v 1.42.10.10.2.14.4.2 2010/09/15 00:30:11 Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -75,7 +75,11 @@ struct bcmsdh_hc {
|
||||
bcmsdh_info_t *sdh; /* SDIO Host Controller handle */
|
||||
void *ch;
|
||||
unsigned int oob_irq;
|
||||
unsigned long oob_flags;
|
||||
unsigned long oob_flags; /* OOB Host specifiction as edge and etc */
|
||||
bool oob_irq_registered;
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
spinlock_t irq_lock;
|
||||
#endif
|
||||
};
|
||||
static bcmsdh_hc_t *sdhcinfo = NULL;
|
||||
|
||||
@ -176,7 +180,7 @@ int bcmsdh_probe(struct device *dev)
|
||||
#endif /* BCMLXSDMMC */
|
||||
int irq = 0;
|
||||
uint32 vendevid;
|
||||
unsigned long irq_flags = IRQF_TRIGGER_FALLING;
|
||||
unsigned long irq_flags = 0;
|
||||
|
||||
#if !defined(BCMLXSDMMC) && defined(BCMPLATFORM_BUS)
|
||||
pdev = to_platform_device(dev);
|
||||
@ -187,6 +191,12 @@ int bcmsdh_probe(struct device *dev)
|
||||
#endif /* BCMLXSDMMC */
|
||||
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
#ifdef HW_OOB
|
||||
irq_flags = \
|
||||
IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL | IORESOURCE_IRQ_SHAREABLE;
|
||||
#else
|
||||
irq_flags = IRQF_TRIGGER_FALLING;
|
||||
#endif /* HW_OOB */
|
||||
irq = dhd_customer_oob_irq_map(&irq_flags);
|
||||
if (irq < 0) {
|
||||
SDLX_MSG(("%s: Host irq is not defined\n", __FUNCTION__));
|
||||
@ -225,6 +235,10 @@ int bcmsdh_probe(struct device *dev)
|
||||
sdhc->sdh = sdh;
|
||||
sdhc->oob_irq = irq;
|
||||
sdhc->oob_flags = irq_flags;
|
||||
sdhc->oob_irq_registered = FALSE; /* to make sure.. */
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
spin_lock_init(&sdhc->irq_lock);
|
||||
#endif
|
||||
|
||||
/* chain SDIO Host Controller info together */
|
||||
sdhc->next = sdhcinfo;
|
||||
@ -338,7 +352,7 @@ extern uint sd_pci_slot; /* Force detection to a particular PCI */
|
||||
/* slot only . Allows for having multiple */
|
||||
/* WL devices at once in a PC */
|
||||
/* Only one instance of dhd will be */
|
||||
/* useable at a time */
|
||||
/* usable at a time */
|
||||
/* Upper word is bus number, */
|
||||
/* lower word is slot number */
|
||||
/* Default value of 0xFFFFffff turns this */
|
||||
@ -365,20 +379,21 @@ bcmsdh_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
if (pdev->bus->number != (sd_pci_slot>>16) ||
|
||||
PCI_SLOT(pdev->devfn) != (sd_pci_slot&0xffff)) {
|
||||
SDLX_MSG(("%s: %s: bus %X, slot %X, vend %X, dev %X\n",
|
||||
__FUNCTION__,
|
||||
bcmsdh_chipmatch(pdev->vendor, pdev->device)
|
||||
? "Found compatible SDIOHC"
|
||||
: "Probing unknown device",
|
||||
pdev->bus->number, PCI_SLOT(pdev->devfn), pdev->vendor,
|
||||
pdev->device));
|
||||
__FUNCTION__,
|
||||
bcmsdh_chipmatch(pdev->vendor, pdev->device) ?
|
||||
"Found compatible SDIOHC" :
|
||||
"Probing unknown device",
|
||||
pdev->bus->number, PCI_SLOT(pdev->devfn),
|
||||
pdev->vendor, pdev->device));
|
||||
return -ENODEV;
|
||||
}
|
||||
SDLX_MSG(("%s: %s: bus %X, slot %X, vendor %X, device %X (good PCI location)\n",
|
||||
__FUNCTION__,
|
||||
bcmsdh_chipmatch(pdev->vendor, pdev->device)
|
||||
? "Using compatible SDIOHC"
|
||||
: "WARNING, forced use of unkown device",
|
||||
pdev->bus->number, PCI_SLOT(pdev->devfn), pdev->vendor, pdev->device));
|
||||
__FUNCTION__,
|
||||
bcmsdh_chipmatch(pdev->vendor, pdev->device) ?
|
||||
"Using compatible SDIOHC" :
|
||||
"WARNING, forced use of unkown device",
|
||||
pdev->bus->number, PCI_SLOT(pdev->devfn),
|
||||
pdev->vendor, pdev->device));
|
||||
}
|
||||
|
||||
if ((pdev->vendor == VENDOR_TI) && ((pdev->device == PCIXX21_FLASHMEDIA_ID) ||
|
||||
@ -439,7 +454,7 @@ bcmsdh_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
pci_set_master(pdev);
|
||||
rc = pci_enable_device(pdev);
|
||||
if (rc) {
|
||||
SDLX_MSG(("%s: Cannot enble PCI device\n", __FUNCTION__));
|
||||
SDLX_MSG(("%s: Cannot enable PCI device\n", __FUNCTION__));
|
||||
goto err;
|
||||
}
|
||||
if (!(sdh = bcmsdh_attach(osh, (void *)(uintptr)pci_resource_start(pdev, 0),
|
||||
@ -567,14 +582,31 @@ bcmsdh_unregister(void)
|
||||
}
|
||||
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
void bcmsdh_oob_intr_set(bool enable)
|
||||
{
|
||||
static bool curstate = 1;
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&sdhcinfo->irq_lock, flags);
|
||||
if (curstate != enable) {
|
||||
if (enable)
|
||||
enable_irq(sdhcinfo->oob_irq);
|
||||
else
|
||||
disable_irq_nosync(sdhcinfo->oob_irq);
|
||||
curstate = enable;
|
||||
}
|
||||
spin_unlock_irqrestore(&sdhcinfo->irq_lock, flags);
|
||||
}
|
||||
|
||||
static irqreturn_t wlan_oob_irq(int irq, void *dev_id)
|
||||
{
|
||||
dhd_pub_t *dhdp;
|
||||
|
||||
dhdp = (dhd_pub_t *)dev_get_drvdata(sdhcinfo->dev);
|
||||
|
||||
bcmsdh_oob_intr_set(0);
|
||||
|
||||
if (dhdp == NULL) {
|
||||
disable_irq(sdhcinfo->oob_irq);
|
||||
SDLX_MSG(("Out of band GPIO interrupt fired way too early\n"));
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
@ -590,16 +622,23 @@ int bcmsdh_register_oob_intr(void * dhdp)
|
||||
|
||||
SDLX_MSG(("%s Enter\n", __FUNCTION__));
|
||||
|
||||
/* Example of HW_OOB for HW2: please refer to your host specifiction */
|
||||
/* sdhcinfo->oob_flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL | IORESOURCE_IRQ_SHAREABLE; */
|
||||
|
||||
dev_set_drvdata(sdhcinfo->dev, dhdp);
|
||||
|
||||
/* Refer to customer Host IRQ docs about proper irqflags definition */
|
||||
error = request_irq(sdhcinfo->oob_irq, wlan_oob_irq, sdhcinfo->oob_flags,
|
||||
"bcmsdh_sdmmc", NULL);
|
||||
if (!sdhcinfo->oob_irq_registered) {
|
||||
SDLX_MSG(("%s IRQ=%d Type=%X \n", __FUNCTION__, \
|
||||
(int)sdhcinfo->oob_irq, (int)sdhcinfo->oob_flags));
|
||||
/* Refer to customer Host IRQ docs about proper irqflags definition */
|
||||
error = request_irq(sdhcinfo->oob_irq, wlan_oob_irq, sdhcinfo->oob_flags,
|
||||
"bcmsdh_sdmmc", NULL);
|
||||
if (error)
|
||||
return -ENODEV;
|
||||
|
||||
if (error)
|
||||
return -ENODEV;
|
||||
|
||||
set_irq_wake(sdhcinfo->oob_irq, 1);
|
||||
set_irq_wake(sdhcinfo->oob_irq, 1);
|
||||
sdhcinfo->oob_irq_registered = TRUE;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -611,14 +650,7 @@ void bcmsdh_unregister_oob_intr(void)
|
||||
set_irq_wake(sdhcinfo->oob_irq, 0);
|
||||
disable_irq(sdhcinfo->oob_irq); /* just in case.. */
|
||||
free_irq(sdhcinfo->oob_irq, NULL);
|
||||
}
|
||||
|
||||
void bcmsdh_oob_intr_set(bool enable)
|
||||
{
|
||||
if (enable)
|
||||
enable_irq(sdhcinfo->oob_irq);
|
||||
else
|
||||
disable_irq(sdhcinfo->oob_irq);
|
||||
sdhcinfo->oob_irq_registered = FALSE;
|
||||
}
|
||||
#endif /* defined(OOB_INTR_ONLY) */
|
||||
/* Module parameters specific to each host-controller driver */
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmsdh_sdmmc.c,v 1.1.2.5.6.29 2010/03/19 17:16:08 Exp $
|
||||
* $Id: bcmsdh_sdmmc.c,v 1.1.2.5.6.30.4.1 2010/09/02 23:12:21 Exp $
|
||||
*/
|
||||
#include <typedefs.h>
|
||||
|
||||
@ -55,7 +55,7 @@ extern void sdio_function_cleanup(void);
|
||||
#if !defined(OOB_INTR_ONLY)
|
||||
static void IRQHandler(struct sdio_func *func);
|
||||
static void IRQHandlerF2(struct sdio_func *func);
|
||||
#endif
|
||||
#endif /* !defined(OOB_INTR_ONLY) */
|
||||
static int sdioh_sdmmc_get_cisaddr(sdioh_info_t *sd, uint32 regaddr);
|
||||
extern int sdio_reset_comm(struct mmc_card *card);
|
||||
|
||||
@ -675,6 +675,7 @@ sdioh_enable_hw_oob_intr(sdioh_info_t *sd, bool enable)
|
||||
data = 3; /* enable hw oob interrupt */
|
||||
else
|
||||
data = 4; /* disable hw oob interrupt */
|
||||
data |= 4; /* Active HIGH */
|
||||
|
||||
status = sdioh_request_byte(sd, SDIOH_WRITE, 0, 0xf2, &data);
|
||||
return status;
|
||||
@ -1064,11 +1065,13 @@ sdioh_request_buffer(sdioh_info_t *sd, uint pio_dma, uint fix_inc, uint write, u
|
||||
return (Status);
|
||||
}
|
||||
|
||||
/* this function performs "abort" for both of host & device */
|
||||
extern int
|
||||
sdioh_abort(sdioh_info_t *sd, uint func)
|
||||
{
|
||||
#if defined(MMC_SDIO_ABORT)
|
||||
char t_func = (char) func;
|
||||
|
||||
#endif /* defined(MMC_SDIO_ABORT) */
|
||||
sd_trace(("%s: Enter\n", __FUNCTION__));
|
||||
|
||||
#if defined(MMC_SDIO_ABORT)
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmsdh_sdmmc_linux.c,v 1.1.2.5.6.15 2010/04/14 21:11:46 Exp $
|
||||
* $Id: bcmsdh_sdmmc_linux.c,v 1.1.2.5.6.17 2010/08/13 00:36:19 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
@ -39,13 +39,22 @@
|
||||
|
||||
#if !defined(SDIO_VENDOR_ID_BROADCOM)
|
||||
#define SDIO_VENDOR_ID_BROADCOM 0x02d0
|
||||
#endif /* !defined(SDIO_DEVICE_ID_BROADCOM_4325) */
|
||||
#endif /* !defined(SDIO_VENDOR_ID_BROADCOM) */
|
||||
|
||||
#define SDIO_DEVICE_ID_BROADCOM_DEFAULT 0x0000
|
||||
|
||||
#if !defined(SDIO_DEVICE_ID_BROADCOM_4325_SDGWB)
|
||||
#define SDIO_DEVICE_ID_BROADCOM_4325_SDGWB 0x0492 /* BCM94325SDGWB */
|
||||
#endif /* !defined(SDIO_DEVICE_ID_BROADCOM_4325_SDGWB) */
|
||||
#if !defined(SDIO_DEVICE_ID_BROADCOM_4325)
|
||||
#define SDIO_DEVICE_ID_BROADCOM_4325 0x0000
|
||||
#define SDIO_DEVICE_ID_BROADCOM_4325 0x0493
|
||||
#endif /* !defined(SDIO_DEVICE_ID_BROADCOM_4325) */
|
||||
#if !defined(SDIO_DEVICE_ID_BROADCOM_4329)
|
||||
#define SDIO_DEVICE_ID_BROADCOM_4329 0x4329
|
||||
#endif /* !defined(SDIO_DEVICE_ID_BROADCOM_4329) */
|
||||
#if !defined(SDIO_DEVICE_ID_BROADCOM_4319)
|
||||
#define SDIO_DEVICE_ID_BROADCOM_4319 0x4319
|
||||
#endif /* !defined(SDIO_DEVICE_ID_BROADCOM_4329) */
|
||||
|
||||
#include <bcmsdh_sdmmc.h>
|
||||
|
||||
@ -116,15 +125,18 @@ static void bcmsdh_sdmmc_remove(struct sdio_func *func)
|
||||
sd_info(("Function#: 0x%04x\n", func->num));
|
||||
|
||||
if (func->num == 2) {
|
||||
sd_trace(("F2 found, calling bcmsdh_probe...\n"));
|
||||
sd_trace(("F2 found, calling bcmsdh_remove...\n"));
|
||||
bcmsdh_remove(&sdmmc_dev);
|
||||
}
|
||||
}
|
||||
|
||||
/* devices we support, null terminated */
|
||||
static const struct sdio_device_id bcmsdh_sdmmc_ids[] = {
|
||||
{ SDIO_DEVICE(SDIO_VENDOR_ID_BROADCOM, SDIO_DEVICE_ID_BROADCOM_DEFAULT) },
|
||||
{ SDIO_DEVICE(SDIO_VENDOR_ID_BROADCOM, SDIO_DEVICE_ID_BROADCOM_4325_SDGWB) },
|
||||
{ SDIO_DEVICE(SDIO_VENDOR_ID_BROADCOM, SDIO_DEVICE_ID_BROADCOM_4325) },
|
||||
{ SDIO_DEVICE(SDIO_VENDOR_ID_BROADCOM, SDIO_DEVICE_ID_BROADCOM_4329) },
|
||||
{ SDIO_DEVICE(SDIO_VENDOR_ID_BROADCOM, SDIO_DEVICE_ID_BROADCOM_4319) },
|
||||
{ /* end: all zeroes */ },
|
||||
};
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom SPI Host Controller Driver - Linux Per-port
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmsdstd.c,v 1.64.4.1.4.4.2.17 2010/03/10 03:09:48 Exp $
|
||||
* $Id: bcmsdstd.c,v 1.64.4.1.4.4.2.18 2010/08/17 17:00:48 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
@ -119,7 +119,7 @@ extern void sdstd_wreg16(sdioh_info_t *sd, uint reg, uint16 data);
|
||||
void
|
||||
sdstd_wreg16(sdioh_info_t *sd, uint reg, uint16 data)
|
||||
{
|
||||
*(volatile uint16 *)(sd->mem_space + reg) = (volatile uint16) data;
|
||||
*(volatile uint16 *)(sd->mem_space + reg) = (uint16)data;
|
||||
sd_ctrl(("16: W Reg 0x%02x, Data 0x%x\n", reg, data));
|
||||
}
|
||||
|
||||
@ -129,7 +129,7 @@ sdstd_or_reg16(sdioh_info_t *sd, uint reg, uint16 val)
|
||||
volatile uint16 data = *(volatile uint16 *)(sd->mem_space + reg);
|
||||
sd_ctrl(("16: OR Reg 0x%02x, Val 0x%x\n", reg, val));
|
||||
data |= val;
|
||||
*(volatile uint16 *)(sd->mem_space + reg) = (volatile uint16)data;
|
||||
*(volatile uint16 *)(sd->mem_space + reg) = (uint16)data;
|
||||
|
||||
}
|
||||
static void
|
||||
@ -140,7 +140,7 @@ sdstd_mod_reg16(sdioh_info_t *sd, uint reg, int16 mask, uint16 val)
|
||||
sd_ctrl(("16: MOD Reg 0x%02x, Mask 0x%x, Val 0x%x\n", reg, mask, val));
|
||||
data &= ~mask;
|
||||
data |= (val & mask);
|
||||
*(volatile uint16 *)(sd->mem_space + reg) = (volatile uint16)data;
|
||||
*(volatile uint16 *)(sd->mem_space + reg) = (uint16)data;
|
||||
}
|
||||
|
||||
|
||||
@ -155,7 +155,7 @@ sdstd_rreg(sdioh_info_t *sd, uint reg)
|
||||
static inline void
|
||||
sdstd_wreg(sdioh_info_t *sd, uint reg, uint32 data)
|
||||
{
|
||||
*(volatile uint32 *)(sd->mem_space + reg) = (volatile uint32)data;
|
||||
*(volatile uint32 *)(sd->mem_space + reg) = (uint32)data;
|
||||
sd_ctrl(("32: W Reg 0x%02x, Data 0x%x\n", reg, data));
|
||||
|
||||
}
|
||||
@ -164,7 +164,7 @@ sdstd_wreg(sdioh_info_t *sd, uint reg, uint32 data)
|
||||
static inline void
|
||||
sdstd_wreg8(sdioh_info_t *sd, uint reg, uint8 data)
|
||||
{
|
||||
*(volatile uint8 *)(sd->mem_space + reg) = (volatile uint8)data;
|
||||
*(volatile uint8 *)(sd->mem_space + reg) = (uint8)data;
|
||||
sd_ctrl(("08: W Reg 0x%02x, Data 0x%x\n", reg, data));
|
||||
}
|
||||
static uint8
|
||||
@ -287,7 +287,7 @@ sdioh_detach(osl_t *osh, sdioh_info_t *sd)
|
||||
return SDIOH_API_RC_SUCCESS;
|
||||
}
|
||||
|
||||
/* Configure callback to client when we recieve client interrupt */
|
||||
/* Configure callback to client when we receive client interrupt */
|
||||
extern SDIOH_API_RC
|
||||
sdioh_interrupt_register(sdioh_info_t *sd, sdioh_cb_fn_t fn, void *argh)
|
||||
{
|
||||
@ -2778,10 +2778,6 @@ sdstd_card_buf(sdioh_info_t *sd, int rw, int func, bool fifo, uint32 addr, int n
|
||||
data++;
|
||||
}
|
||||
|
||||
/* Handle < 4 bytes. wlc_pio.c currently (as of 12/20/05) truncates buflen
|
||||
* to be evenly divisable by 4. However dongle passes arbitrary lengths,
|
||||
* so handle it here
|
||||
*/
|
||||
bytes = blocksize % 4;
|
||||
|
||||
/* If no leftover bytes, go to next block */
|
||||
@ -2898,7 +2894,8 @@ set_client_block_size(sdioh_info_t *sd, int func, int block_size)
|
||||
}
|
||||
|
||||
/* Reset and re-initialize the device */
|
||||
int sdioh_sdio_reset(sdioh_info_t *si)
|
||||
int
|
||||
sdioh_sdio_reset(sdioh_info_t *si)
|
||||
{
|
||||
uint8 hreg;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* 'Standard' SDIO HOST CONTROLLER driver - linux portion
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmsdstd_linux.c,v 1.11.18.2 2008/05/28 18:36:56 Exp $
|
||||
* $Id: bcmsdstd_linux.c,v 1.11.18.2.16.1 2010/08/17 17:03:13 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
@ -186,7 +186,9 @@ sdstd_lock(sdioh_info_t *sd)
|
||||
|
||||
spin_lock_irqsave(&sdos->lock, flags);
|
||||
if (sd->lockcount) {
|
||||
sd_err(("%s: Already locked!\n", __FUNCTION__));
|
||||
sd_err(("%s: Already locked! called from %p\n",
|
||||
__FUNCTION__,
|
||||
__builtin_return_address(0)));
|
||||
ASSERT(sd->lockcount == 0);
|
||||
}
|
||||
sdstd_devintr_off(sd);
|
||||
|
1726
drivers/net/wireless/bcm4329/bcmspibrcm.c
Normal file
1726
drivers/net/wireless/bcm4329/bcmspibrcm.c
Normal file
File diff suppressed because it is too large
Load Diff
@ -20,7 +20,7 @@
|
||||
* Notwithstanding the above, under no circumstances may you combine this
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
* $Id: bcmutils.c,v 1.210.4.5.2.4.6.17 2009/11/17 02:20:12 Exp $
|
||||
* $Id: bcmutils.c,v 1.210.4.5.2.4.6.19 2010/04/26 06:05:25 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
|
@ -3,7 +3,7 @@
|
||||
* Contents are wifi-specific, used by any kernel or app-level
|
||||
* software that might want wifi things as it grows.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -24,7 +24,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhd.h,v 1.32.4.7.2.4.14.29 2010/02/23 06:58:21 Exp $
|
||||
* $Id: dhd.h,v 1.32.4.7.2.4.14.49.4.7 2010/11/12 22:48:36 Exp $
|
||||
*/
|
||||
|
||||
/****************
|
||||
@ -59,6 +59,11 @@
|
||||
|
||||
#include <wlioctl.h>
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
#ifndef DHD_DEBUG_TRAP
|
||||
#define DHD_DEBUG_TRAP
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Forward decls */
|
||||
struct dhd_bus;
|
||||
@ -81,9 +86,11 @@ enum dhd_bus_wake_state {
|
||||
WAKE_LOCK_TMOUT,
|
||||
WAKE_LOCK_WATCHDOG,
|
||||
WAKE_LOCK_LINK_DOWN_TMOUT,
|
||||
WAKE_LOCK_PNO_FIND_TMOUT,
|
||||
WAKE_LOCK_SOFTAP_SET,
|
||||
WAKE_LOCK_SOFTAP_STOP,
|
||||
WAKE_LOCK_SOFTAP_START,
|
||||
WAKE_LOCK_SOFTAP_THREAD,
|
||||
WAKE_LOCK_MAX
|
||||
};
|
||||
enum dhd_prealloc_index {
|
||||
@ -145,33 +152,48 @@ typedef struct dhd_pub {
|
||||
/* Last error from dongle */
|
||||
int dongle_error;
|
||||
|
||||
/* Suspend disable flag and "in suspend" flag */
|
||||
int suspend_disable_flag; /* "1" to disable all extra powersaving during suspend */
|
||||
int in_suspend; /* flag set to 1 when early suspend called */
|
||||
#ifdef PNO_SUPPORT
|
||||
int pno_enable; /* pno status : "1" is pno enable */
|
||||
#endif /* PNO_SUPPORT */
|
||||
int dtim_skip; /* dtim skip , default 0 means wake each dtim */
|
||||
|
||||
/* Pkt filter defination */
|
||||
char * pktfilter[100];
|
||||
int pktfilter_count;
|
||||
|
||||
uint8 country_code[WLC_CNTRY_BUF_SZ];
|
||||
char eventmask[WL_EVENTING_MASK_LEN];
|
||||
|
||||
} dhd_pub_t;
|
||||
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(CONFIG_PM_SLEEP)
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(CONFIG_PM_SLEEP)
|
||||
|
||||
#define DHD_PM_RESUME_WAIT_INIT(a) DECLARE_WAIT_QUEUE_HEAD(a);
|
||||
#define _DHD_PM_RESUME_WAIT(a, b) do {\
|
||||
#define _DHD_PM_RESUME_WAIT(a, b) do { \
|
||||
int retry = 0; \
|
||||
smp_mb(); \
|
||||
while (dhd_mmc_suspend && retry++ != b) { \
|
||||
wait_event_interruptible_timeout(a, FALSE, HZ/100); \
|
||||
} \
|
||||
} while (0)
|
||||
#define DHD_PM_RESUME_WAIT(a) _DHD_PM_RESUME_WAIT(a, 30)
|
||||
#define DHD_PM_RESUME_WAIT(a) _DHD_PM_RESUME_WAIT(a, 30)
|
||||
#define DHD_PM_RESUME_WAIT_FOREVER(a) _DHD_PM_RESUME_WAIT(a, ~0)
|
||||
#define DHD_PM_RESUME_RETURN_ERROR(a) do { if (dhd_mmc_suspend) return a; } while (0)
|
||||
#define DHD_PM_RESUME_RETURN do { if (dhd_mmc_suspend) return; } while (0)
|
||||
|
||||
#define DHD_SPINWAIT_SLEEP_INIT(a) DECLARE_WAIT_QUEUE_HEAD(a);
|
||||
#define SPINWAIT_SLEEP(a, exp, us) do { \
|
||||
uint countdown = (us) + 9; \
|
||||
while ((exp) && (countdown >= 10)) { \
|
||||
uint countdown = (us) + 9999; \
|
||||
while ((exp) && (countdown >= 10000)) { \
|
||||
wait_event_interruptible_timeout(a, FALSE, HZ/100); \
|
||||
countdown -= 10; \
|
||||
countdown -= 10000; \
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#else
|
||||
#else
|
||||
|
||||
#define DHD_PM_RESUME_WAIT_INIT(a)
|
||||
#define DHD_PM_RESUME_WAIT(a)
|
||||
@ -188,7 +210,8 @@ typedef struct dhd_pub {
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(CONFIG_PM_SLEEP) */
|
||||
#endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)) && defined(CONFIG_PM_SLEEP) */
|
||||
|
||||
#define DHD_IF_VIF 0x01 /* Virtual IF (Hidden from user) */
|
||||
|
||||
/* Wakelock Functions */
|
||||
@ -197,6 +220,11 @@ extern int dhd_os_wake_unlock(dhd_pub_t *pub);
|
||||
extern int dhd_os_wake_lock_timeout(dhd_pub_t *pub);
|
||||
extern int dhd_os_wake_lock_timeout_enable(dhd_pub_t *pub);
|
||||
|
||||
extern void dhd_os_start_lock(dhd_pub_t *pub);
|
||||
extern void dhd_os_start_unlock(dhd_pub_t *pub);
|
||||
extern unsigned long dhd_os_spin_lock(dhd_pub_t *pub);
|
||||
extern void dhd_os_spin_unlock(dhd_pub_t *pub, unsigned long flags);
|
||||
|
||||
typedef struct dhd_if_event {
|
||||
uint8 ifidx;
|
||||
uint8 action;
|
||||
@ -262,9 +290,13 @@ extern void dhd_os_sdlock_rxq(dhd_pub_t * pub);
|
||||
extern void dhd_os_sdunlock_rxq(dhd_pub_t * pub);
|
||||
extern void dhd_os_sdlock_sndup_rxq(dhd_pub_t * pub);
|
||||
extern void dhd_customer_gpio_wlan_ctrl(int onoff);
|
||||
extern int dhd_custom_get_mac_address(unsigned char *buf);
|
||||
extern void dhd_os_sdunlock_sndup_rxq(dhd_pub_t * pub);
|
||||
extern void dhd_os_sdlock_eventq(dhd_pub_t * pub);
|
||||
extern void dhd_os_sdunlock_eventq(dhd_pub_t * pub);
|
||||
#ifdef DHD_DEBUG
|
||||
extern int write_to_file(dhd_pub_t *dhd, uint8 *buf, int size);
|
||||
#endif /* DHD_DEBUG */
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
extern int dhd_customer_oob_irq_map(unsigned long *irq_flags_ptr);
|
||||
#endif /* defined(OOB_INTR_ONLY) */
|
||||
@ -311,6 +343,7 @@ extern int dhd_bus_devreset(dhd_pub_t *dhdp, uint8 flag);
|
||||
extern uint dhd_bus_status(dhd_pub_t *dhdp);
|
||||
extern int dhd_bus_start(dhd_pub_t *dhdp);
|
||||
|
||||
extern void print_buf(void *pbuf, int len, int bytes_per_line);
|
||||
|
||||
|
||||
typedef enum cust_gpio_modes {
|
||||
@ -319,7 +352,11 @@ typedef enum cust_gpio_modes {
|
||||
WLAN_POWER_ON,
|
||||
WLAN_POWER_OFF
|
||||
} cust_gpio_modes_t;
|
||||
|
||||
extern int wl_iw_iscan_set_scan_broadcast_prep(struct net_device *dev, uint flag);
|
||||
extern int wl_iw_send_priv_event(struct net_device *dev, char *flag);
|
||||
extern int net_os_send_hang_message(struct net_device *dev);
|
||||
|
||||
/*
|
||||
* Insmod parameters for debug/test
|
||||
*/
|
||||
@ -327,6 +364,10 @@ extern int wl_iw_iscan_set_scan_broadcast_prep(struct net_device *dev, uint flag
|
||||
/* Watchdog timer interval */
|
||||
extern uint dhd_watchdog_ms;
|
||||
|
||||
#if defined(DHD_DEBUG)
|
||||
/* Console output poll interval */
|
||||
extern uint dhd_console_ms;
|
||||
#endif /* defined(DHD_DEBUG) */
|
||||
|
||||
/* Use interrupts */
|
||||
extern uint dhd_intr;
|
||||
@ -334,6 +375,27 @@ extern uint dhd_intr;
|
||||
/* Use polling */
|
||||
extern uint dhd_poll;
|
||||
|
||||
/* ARP offload agent mode */
|
||||
extern uint dhd_arp_mode;
|
||||
|
||||
/* ARP offload enable */
|
||||
extern uint dhd_arp_enable;
|
||||
|
||||
/* Pkt filte enable control */
|
||||
extern uint dhd_pkt_filter_enable;
|
||||
|
||||
/* Pkt filter init setup */
|
||||
extern uint dhd_pkt_filter_init;
|
||||
|
||||
/* Pkt filter mode control */
|
||||
extern uint dhd_master_mode;
|
||||
|
||||
/* Roaming mode control */
|
||||
extern uint dhd_roam;
|
||||
|
||||
/* Roaming mode control */
|
||||
extern uint dhd_radio_up;
|
||||
|
||||
/* Initial idletime ticks (may be -1 for immediate idle, 0 for no idle) */
|
||||
extern int dhd_idletime;
|
||||
#define DHD_IDLETIME_TICKS 1
|
||||
@ -344,6 +406,10 @@ extern uint dhd_sdiod_drive_strength;
|
||||
/* Override to force tx queueing all the time */
|
||||
extern uint dhd_force_tx_queueing;
|
||||
|
||||
/* Default KEEP_ALIVE Period is 55 sec to prevent AP from sending Keep Alive probe frame */
|
||||
#define KEEP_ALIVE_PERIOD 55000
|
||||
#define NULL_PKT_STR "null_pkt"
|
||||
|
||||
#ifdef SDTEST
|
||||
/* Echo packet generator (SDIO), pkts/s */
|
||||
extern uint dhd_pktgen;
|
||||
@ -364,9 +430,6 @@ extern char nv_path[MOD_PARAM_PATHLEN];
|
||||
#define DHD_DEL_IF -0xe
|
||||
#define DHD_BAD_IF -0xf
|
||||
|
||||
#ifdef APSTA_PINGTEST
|
||||
#define MAX_GUEST 8
|
||||
#endif
|
||||
|
||||
extern void dhd_wait_for_event(dhd_pub_t *dhd, bool *lockvar);
|
||||
extern void dhd_wait_event_wakeup(dhd_pub_t*dhd);
|
||||
|
@ -4,7 +4,7 @@
|
||||
* Provides type definitions and function prototypes used to link the
|
||||
* DHD OS, bus, and protocol modules.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -24,7 +24,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhd_bus.h,v 1.4.6.3.2.3.6.5 2009/06/02 21:56:30 Exp $
|
||||
* $Id: dhd_bus.h,v 1.4.6.3.2.3.6.7 2010/08/13 01:35:24 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _dhd_bus_h_
|
||||
@ -60,6 +60,10 @@ extern int dhd_bus_rxctl(struct dhd_bus *bus, uchar *msg, uint msglen);
|
||||
/* Watchdog timer function */
|
||||
extern bool dhd_bus_watchdog(dhd_pub_t *dhd);
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
/* Device console input function */
|
||||
extern int dhd_bus_console_in(dhd_pub_t *dhd, uchar *msg, uint msglen);
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
/* Deferred processing for the bus, return TRUE requests reschedule */
|
||||
extern bool dhd_bus_dpc(struct dhd_bus *bus);
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhd_cdc.c,v 1.22.4.2.4.7.2.34 2010/01/21 22:08:34 Exp $
|
||||
* $Id: dhd_cdc.c,v 1.22.4.2.4.7.2.41 2010/06/23 19:58:18 Exp $
|
||||
*
|
||||
* BDC is like CDC, except it includes a header for data packets to convey
|
||||
* packet priority over the bus, and flags (e.g. to indicate checksum status
|
||||
@ -41,10 +41,7 @@
|
||||
#include <dhd_bus.h>
|
||||
#include <dhd_dbg.h>
|
||||
|
||||
#ifdef SET_RANDOM_MAC_SOFTAP
|
||||
#include <linux/random.h>
|
||||
#include <linux/jiffies.h>
|
||||
#endif
|
||||
extern int dhd_preinit_ioctls(dhd_pub_t *dhd);
|
||||
|
||||
/* Packet alignment for most efficient SDIO (can change based on platform) */
|
||||
#ifndef DHD_SDALIGN
|
||||
@ -197,7 +194,7 @@ done:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int
|
||||
int
|
||||
dhdcdc_set_ioctl(dhd_pub_t *dhd, int ifidx, uint cmd, void *buf, uint len)
|
||||
{
|
||||
dhd_prot_t *prot = dhd->prot;
|
||||
@ -214,7 +211,7 @@ dhdcdc_set_ioctl(dhd_pub_t *dhd, int ifidx, uint cmd, void *buf, uint len)
|
||||
msg->len = htol32(len);
|
||||
msg->flags = (++prot->reqid << CDCF_IOC_ID_SHIFT) | CDCF_IOC_SET;
|
||||
CDC_SET_IF_IDX(msg, ifidx);
|
||||
msg->flags |= htol32(msg->flags);
|
||||
msg->flags = htol32(msg->flags);
|
||||
|
||||
if (buf)
|
||||
memcpy(prot->buf, buf, len);
|
||||
@ -326,23 +323,12 @@ dhd_prot_dump(dhd_pub_t *dhdp, struct bcmstrbuf *strbuf)
|
||||
bcm_bprintf(strbuf, "Protocol CDC: reqid %d\n", dhdp->prot->reqid);
|
||||
}
|
||||
|
||||
#ifdef APSTA_PINGTEST
|
||||
extern struct ether_addr guest_eas[MAX_GUEST];
|
||||
#endif
|
||||
|
||||
void
|
||||
dhd_prot_hdrpush(dhd_pub_t *dhd, int ifidx, void *pktbuf)
|
||||
{
|
||||
#ifdef BDC
|
||||
struct bdc_header *h;
|
||||
#ifdef APSTA_PINGTEST
|
||||
struct ether_header *eh;
|
||||
int i;
|
||||
#ifdef DHD_DEBUG
|
||||
char eabuf1[ETHER_ADDR_STR_LEN];
|
||||
char eabuf2[ETHER_ADDR_STR_LEN];
|
||||
#endif /* DHD_DEBUG */
|
||||
#endif /* APSTA_PINGTEST */
|
||||
#endif /* BDC */
|
||||
|
||||
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
|
||||
@ -350,9 +336,6 @@ dhd_prot_hdrpush(dhd_pub_t *dhd, int ifidx, void *pktbuf)
|
||||
#ifdef BDC
|
||||
/* Push BDC header used to convey priority for buses that don't */
|
||||
|
||||
#ifdef APSTA_PINGTEST
|
||||
eh = (struct ether_header *)PKTDATA(dhd->osh, pktbuf);
|
||||
#endif
|
||||
|
||||
PKTPUSH(dhd->osh, pktbuf, BDC_HEADER_LEN);
|
||||
|
||||
@ -365,19 +348,6 @@ dhd_prot_hdrpush(dhd_pub_t *dhd, int ifidx, void *pktbuf)
|
||||
|
||||
h->priority = (PKTPRIO(pktbuf) & BDC_PRIORITY_MASK);
|
||||
h->flags2 = 0;
|
||||
#ifdef APSTA_PINGTEST
|
||||
for (i = 0; i < MAX_GUEST; ++i) {
|
||||
if (!ETHER_ISNULLADDR(eh->ether_dhost) &&
|
||||
bcmp(eh->ether_dhost, guest_eas[i].octet, ETHER_ADDR_LEN) == 0) {
|
||||
DHD_TRACE(("send on if 1; sa %s, da %s\n",
|
||||
bcm_ether_ntoa((struct ether_addr *)(eh->ether_shost), eabuf1),
|
||||
bcm_ether_ntoa((struct ether_addr *)(eh->ether_dhost), eabuf2)));
|
||||
/* assume all guest STAs are on interface 1 */
|
||||
h->flags2 = 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
#endif /* APSTA_PINGTEST */
|
||||
h->rssi = 0;
|
||||
#endif /* BDC */
|
||||
BDC_SET_IF_IDX(h, ifidx);
|
||||
@ -514,298 +484,30 @@ dhd_prot_dstats(dhd_pub_t *dhd)
|
||||
return;
|
||||
}
|
||||
|
||||
int dhd_set_suspend(int value, dhd_pub_t *dhd)
|
||||
{
|
||||
int power_mode = PM_MAX;
|
||||
wl_pkt_filter_enable_t enable_parm;
|
||||
char iovbuf[32];
|
||||
int bcn_li_dtim = 3;
|
||||
#ifdef CUSTOMER_HW2
|
||||
uint roamvar = 1;
|
||||
#endif /* CUSTOMER_HW2 */
|
||||
|
||||
#define htod32(i) i
|
||||
|
||||
if (dhd && dhd->up) {
|
||||
dhd_os_proto_block(dhd);
|
||||
if (value) {
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_PM,
|
||||
(char *)&power_mode, sizeof(power_mode));
|
||||
/* Enable packet filter, only allow unicast packet to send up */
|
||||
enable_parm.id = htod32(100);
|
||||
enable_parm.enable = htod32(1);
|
||||
bcm_mkiovar("pkt_filter_enable", (char *)&enable_parm,
|
||||
sizeof(wl_pkt_filter_enable_t), iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
/* set bcn_li_dtim */
|
||||
bcm_mkiovar("bcn_li_dtim", (char *)&bcn_li_dtim,
|
||||
4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
#ifdef CUSTOMER_HW2
|
||||
/* Disable build-in roaming to allowed ext supplicant to take of romaing */
|
||||
bcm_mkiovar("roam_off", (char *)&roamvar, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
#endif /* CUSTOMER_HW2 */
|
||||
} else {
|
||||
power_mode = PM_FAST;
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_PM, (char *)&power_mode,
|
||||
sizeof(power_mode));
|
||||
/* disable pkt filter */
|
||||
enable_parm.id = htod32(100);
|
||||
enable_parm.enable = htod32(0);
|
||||
bcm_mkiovar("pkt_filter_enable", (char *)&enable_parm,
|
||||
sizeof(wl_pkt_filter_enable_t), iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
/* set bcn_li_dtim */
|
||||
bcn_li_dtim = 0;
|
||||
bcm_mkiovar("bcn_li_dtim", (char *)&bcn_li_dtim,
|
||||
4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
#ifdef CUSTOMER_HW2
|
||||
roamvar = 0;
|
||||
bcm_mkiovar("roam_off", (char *)&roamvar, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
#endif /* CUSTOMER_HW2 */
|
||||
}
|
||||
dhd_os_proto_unblock(dhd);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define strtoul(nptr, endptr, base) bcm_strtoul((nptr), (endptr), (base))
|
||||
|
||||
/* Convert user's input in hex pattern to byte-size mask */
|
||||
static int
|
||||
wl_pattern_atoh(char *src, char *dst)
|
||||
{
|
||||
int i;
|
||||
if (strncmp(src, "0x", 2) != 0 &&
|
||||
strncmp(src, "0X", 2) != 0) {
|
||||
printf("Mask invalid format. Needs to start with 0x\n");
|
||||
return -1;
|
||||
}
|
||||
src = src + 2; /* Skip past 0x */
|
||||
if (strlen(src) % 2 != 0) {
|
||||
printf("Mask invalid format. Needs to be of even length\n");
|
||||
return -1;
|
||||
}
|
||||
for (i = 0; *src != '\0'; i++) {
|
||||
char num[3];
|
||||
strncpy(num, src, 2);
|
||||
num[2] = '\0';
|
||||
dst[i] = (uint8)strtoul(num, NULL, 16);
|
||||
src += 2;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
int
|
||||
dhd_preinit_ioctls(dhd_pub_t *dhd)
|
||||
{
|
||||
char eventmask[WL_EVENTING_MASK_LEN];
|
||||
char iovbuf[WL_EVENTING_MASK_LEN + 12]; /* Room for "event_msgs" + '\0' + bitvec */
|
||||
int ret;
|
||||
uint up = 0;
|
||||
#ifdef CUSTOMER_HW2
|
||||
uint roamvar = 0;
|
||||
#else
|
||||
uint roamvar = 1;
|
||||
#endif
|
||||
uint power_mode = PM_FAST;
|
||||
uint32 dongle_align = DHD_SDALIGN;
|
||||
uint32 glom = 0;
|
||||
|
||||
uint bcn_timeout = 3;
|
||||
int arpoe = 1;
|
||||
int arp_ol = 0xf;
|
||||
int scan_assoc_time = 40;
|
||||
int scan_unassoc_time = 80;
|
||||
const char *str;
|
||||
wl_pkt_filter_t pkt_filter;
|
||||
wl_pkt_filter_t *pkt_filterp;
|
||||
int buf_len;
|
||||
int str_len;
|
||||
uint32 mask_size;
|
||||
uint32 pattern_size;
|
||||
char buf[256];
|
||||
uint filter_mode = 1;
|
||||
char mac_buf[16];
|
||||
#ifdef SET_RANDOM_MAC_SOFTAP
|
||||
uint rand_mac;
|
||||
#endif
|
||||
dhd_os_proto_block(dhd);
|
||||
/* Get the device MAC address */
|
||||
strcpy(iovbuf, "cur_etheraddr");
|
||||
if ((ret = dhdcdc_query_ioctl(dhd, 0, WLC_GET_VAR, iovbuf, sizeof(iovbuf))) < 0) {
|
||||
DHD_ERROR(("%s: can't get MAC address , error=%d\n", __FUNCTION__, ret));
|
||||
dhd_os_proto_unblock(dhd);
|
||||
return BCME_NOTUP;
|
||||
}
|
||||
|
||||
memcpy(dhd->mac.octet, iovbuf, ETHER_ADDR_LEN);
|
||||
|
||||
#ifdef SET_RANDOM_MAC_SOFTAP
|
||||
if (strstr(fw_path, "apsta") != NULL) {
|
||||
srandom32((uint)jiffies);
|
||||
rand_mac = random32();
|
||||
iovbuf[0] |= 0x02; /* locally administered bit */
|
||||
iovbuf[3] = (unsigned char)rand_mac;
|
||||
iovbuf[4] = (unsigned char)(rand_mac >> 8);
|
||||
iovbuf[5] = (unsigned char)(rand_mac >> 16);
|
||||
|
||||
printk("Broadcom Dongle Host Driver mac=%02x:%02x:%02x:%02x:%02x:%02x\n",
|
||||
iovbuf[0], iovbuf[1], iovbuf[2], iovbuf[3], iovbuf[4], iovbuf[5]);
|
||||
|
||||
bcm_mkiovar("cur_etheraddr", (void *)iovbuf, ETHER_ADDR_LEN, buf, sizeof(buf));
|
||||
ret = dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, buf, sizeof(buf));
|
||||
if (ret < 0) {
|
||||
DHD_ERROR(("%s: can't set MAC address , error=%d\n", __FUNCTION__, ret));
|
||||
}
|
||||
else {
|
||||
memcpy(dhd->mac.octet, iovbuf, ETHER_ADDR_LEN);
|
||||
}
|
||||
}
|
||||
#endif /* SET_RANDOM_MAC_SOFTAP */
|
||||
|
||||
/* Set Country code */
|
||||
if (dhd->country_code[0] != 0) {
|
||||
if (dhdcdc_set_ioctl(dhd, 0, WLC_SET_COUNTRY,
|
||||
dhd->country_code, sizeof(dhd->country_code)) < 0) {
|
||||
DHD_ERROR(("%s: country code setting failed\n", __FUNCTION__));
|
||||
}
|
||||
}
|
||||
|
||||
/* Set PowerSave mode */
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_PM, (char *)&power_mode, sizeof(power_mode));
|
||||
|
||||
/* Match Host and Dongle rx alignment */
|
||||
bcm_mkiovar("bus:txglomalign", (char *)&dongle_align, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
|
||||
/* disable glom option per default */
|
||||
bcm_mkiovar("bus:txglom", (char *)&glom, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
/* Setup timeout if Beacons are lost and roam is off to report link down */
|
||||
if (roamvar) {
|
||||
bcm_mkiovar("bcn_timeout", (char *)&bcn_timeout, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
}
|
||||
|
||||
/* Enable/Disable build-in roaming to allowed ext supplicant to take of romaing */
|
||||
bcm_mkiovar("roam_off", (char *)&roamvar, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
|
||||
/* Force STA UP */
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_UP, (char *)&up, sizeof(up));
|
||||
|
||||
/* Setup event_msgs */
|
||||
bcm_mkiovar("event_msgs", eventmask, WL_EVENTING_MASK_LEN, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_query_ioctl(dhd, 0, WLC_GET_VAR, iovbuf, sizeof(iovbuf));
|
||||
bcopy(iovbuf, eventmask, WL_EVENTING_MASK_LEN);
|
||||
|
||||
setbit(eventmask, WLC_E_SET_SSID);
|
||||
setbit(eventmask, WLC_E_PRUNE);
|
||||
setbit(eventmask, WLC_E_AUTH);
|
||||
setbit(eventmask, WLC_E_REASSOC);
|
||||
setbit(eventmask, WLC_E_REASSOC_IND);
|
||||
setbit(eventmask, WLC_E_DEAUTH_IND);
|
||||
setbit(eventmask, WLC_E_DISASSOC_IND);
|
||||
setbit(eventmask, WLC_E_DISASSOC);
|
||||
setbit(eventmask, WLC_E_JOIN);
|
||||
setbit(eventmask, WLC_E_ASSOC_IND);
|
||||
setbit(eventmask, WLC_E_PSK_SUP);
|
||||
setbit(eventmask, WLC_E_LINK);
|
||||
setbit(eventmask, WLC_E_NDIS_LINK);
|
||||
setbit(eventmask, WLC_E_MIC_ERROR);
|
||||
setbit(eventmask, WLC_E_PMKID_CACHE);
|
||||
setbit(eventmask, WLC_E_TXFAIL);
|
||||
setbit(eventmask, WLC_E_JOIN_START);
|
||||
setbit(eventmask, WLC_E_SCAN_COMPLETE);
|
||||
|
||||
bcm_mkiovar("event_msgs", eventmask, WL_EVENTING_MASK_LEN, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_SCAN_CHANNEL_TIME, (char *)&scan_assoc_time,
|
||||
sizeof(scan_assoc_time));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_SCAN_UNASSOC_TIME, (char *)&scan_unassoc_time,
|
||||
sizeof(scan_unassoc_time));
|
||||
|
||||
/* Set ARP offload */
|
||||
bcm_mkiovar("arpoe", (char *)&arpoe, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
bcm_mkiovar("arp_ol", (char *)&arp_ol, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
|
||||
/* add a default packet filter pattern */
|
||||
str = "pkt_filter_add";
|
||||
str_len = strlen(str);
|
||||
strncpy(buf, str, str_len);
|
||||
buf[ str_len ] = '\0';
|
||||
buf_len = str_len + 1;
|
||||
|
||||
pkt_filterp = (wl_pkt_filter_t *) (buf + str_len + 1);
|
||||
|
||||
/* Parse packet filter id. */
|
||||
pkt_filter.id = htod32(100);
|
||||
|
||||
/* Parse filter polarity. */
|
||||
pkt_filter.negate_match = htod32(0);
|
||||
|
||||
/* Parse filter type. */
|
||||
pkt_filter.type = htod32(0);
|
||||
|
||||
/* Parse pattern filter offset. */
|
||||
pkt_filter.u.pattern.offset = htod32(0);
|
||||
|
||||
/* Parse pattern filter mask. */
|
||||
mask_size = htod32(wl_pattern_atoh("0xffffffffffff",
|
||||
(char *) pkt_filterp->u.pattern.mask_and_pattern));
|
||||
|
||||
/* Parse pattern filter pattern. */
|
||||
sprintf( mac_buf, "0x%02x%02x%02x%02x%02x%02x",
|
||||
dhd->mac.octet[0], dhd->mac.octet[1], dhd->mac.octet[2],
|
||||
dhd->mac.octet[3], dhd->mac.octet[4], dhd->mac.octet[5]
|
||||
);
|
||||
|
||||
pattern_size = htod32(wl_pattern_atoh(mac_buf,
|
||||
(char *) &pkt_filterp->u.pattern.mask_and_pattern[mask_size]));
|
||||
|
||||
if (mask_size != pattern_size) {
|
||||
DHD_ERROR(("Mask and pattern not the same size\n"));
|
||||
dhd_os_proto_unblock(dhd);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
pkt_filter.u.pattern.size_bytes = mask_size;
|
||||
buf_len += WL_PKT_FILTER_FIXED_LEN;
|
||||
buf_len += (WL_PKT_FILTER_PATTERN_FIXED_LEN + 2 * mask_size);
|
||||
|
||||
/* Keep-alive attributes are set in local variable (keep_alive_pkt), and
|
||||
** then memcpy'ed into buffer (keep_alive_pktp) since there is no
|
||||
** guarantee that the buffer is properly aligned.
|
||||
*/
|
||||
memcpy((char *)pkt_filterp, &pkt_filter,
|
||||
WL_PKT_FILTER_FIXED_LEN + WL_PKT_FILTER_PATTERN_FIXED_LEN);
|
||||
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, buf, buf_len);
|
||||
|
||||
/* set mode to allow pattern */
|
||||
bcm_mkiovar("pkt_filter_mode", (char *)&filter_mode, 4, iovbuf, sizeof(iovbuf));
|
||||
dhdcdc_set_ioctl(dhd, 0, WLC_SET_VAR, iovbuf, sizeof(iovbuf));
|
||||
|
||||
dhd_os_proto_unblock(dhd);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
dhd_prot_init(dhd_pub_t *dhd)
|
||||
{
|
||||
int ret = 0;
|
||||
char buf[128];
|
||||
|
||||
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
|
||||
|
||||
dhd_os_proto_block(dhd);
|
||||
|
||||
/* Get the device MAC address */
|
||||
strcpy(buf, "cur_etheraddr");
|
||||
ret = dhdcdc_query_ioctl(dhd, 0, WLC_GET_VAR, buf, sizeof(buf));
|
||||
if (ret < 0) {
|
||||
dhd_os_proto_unblock(dhd);
|
||||
return ret;
|
||||
}
|
||||
memcpy(dhd->mac.octet, buf, ETHER_ADDR_LEN);
|
||||
|
||||
dhd_os_proto_unblock(dhd);
|
||||
|
||||
#ifdef EMBEDDED_PLATFORM
|
||||
ret = dhd_preinit_ioctls(dhd);
|
||||
#endif /* EMBEDDED_PLATFORM */
|
||||
|
||||
/* Always assumes wl for now */
|
||||
dhd->iswl = TRUE;
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -20,7 +20,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhd_custom_gpio.c,v 1.1.4.6 2010/02/19 22:56:49 Exp $
|
||||
* $Id: dhd_custom_gpio.c,v 1.1.4.8.4.1 2010/09/02 23:13:16 Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -42,11 +42,11 @@
|
||||
extern void bcm_wlan_power_off(int);
|
||||
extern void bcm_wlan_power_on(int);
|
||||
#endif /* CUSTOMER_HW */
|
||||
|
||||
#ifdef CUSTOMER_HW2
|
||||
int wifi_set_carddetect(int on);
|
||||
int wifi_set_power(int on, unsigned long msec);
|
||||
int wifi_get_irq_number(unsigned long *irq_flags_ptr);
|
||||
int wifi_get_mac_addr(unsigned char *buf);
|
||||
#endif
|
||||
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
@ -55,6 +55,10 @@ int wifi_get_irq_number(unsigned long *irq_flags_ptr);
|
||||
extern int sdioh_mmc_irq(int irq);
|
||||
#endif /* (BCMLXSDMMC) */
|
||||
|
||||
#ifdef CUSTOMER_HW3
|
||||
#include <mach/gpio.h>
|
||||
#endif
|
||||
|
||||
/* Customer specific Host GPIO defintion */
|
||||
static int dhd_oob_gpio_num = -1; /* GG 19 */
|
||||
|
||||
@ -63,27 +67,36 @@ MODULE_PARM_DESC(dhd_oob_gpio_num, "DHD oob gpio number");
|
||||
|
||||
int dhd_customer_oob_irq_map(unsigned long *irq_flags_ptr)
|
||||
{
|
||||
int host_oob_irq;
|
||||
int host_oob_irq = 0;
|
||||
|
||||
#ifdef CUSTOMER_HW2
|
||||
host_oob_irq = wifi_get_irq_number(irq_flags_ptr);
|
||||
#else
|
||||
|
||||
#else /* for NOT CUSTOMER_HW2 */
|
||||
#if defined(CUSTOM_OOB_GPIO_NUM)
|
||||
if (dhd_oob_gpio_num < 0) {
|
||||
dhd_oob_gpio_num = CUSTOM_OOB_GPIO_NUM;
|
||||
}
|
||||
#endif
|
||||
*irq_flags_ptr = IRQF_TRIGGER_FALLING;
|
||||
|
||||
if (dhd_oob_gpio_num < 0) {
|
||||
WL_ERROR(("%s: ERROR customer specific Host GPIO is NOT defined \n",
|
||||
__FUNCTION__));
|
||||
__FUNCTION__));
|
||||
return (dhd_oob_gpio_num);
|
||||
}
|
||||
|
||||
WL_ERROR(("%s: customer specific Host GPIO number is (%d)\n",
|
||||
__FUNCTION__, dhd_oob_gpio_num));
|
||||
|
||||
host_oob_irq = sdioh_mmc_irq(dhd_oob_gpio_num);
|
||||
#endif
|
||||
#if defined CUSTOMER_HW
|
||||
host_oob_irq = MSM_GPIO_TO_INT(dhd_oob_gpio_num);
|
||||
#elif defined CUSTOMER_HW3
|
||||
gpio_request(dhd_oob_gpio_num, "oob irq");
|
||||
host_oob_irq = gpio_to_irq(dhd_oob_gpio_num);
|
||||
gpio_direction_input(dhd_oob_gpio_num);
|
||||
#endif /* CUSTOMER_HW */
|
||||
#endif /* CUSTOMER_HW2 */
|
||||
|
||||
return (host_oob_irq);
|
||||
}
|
||||
#endif /* defined(OOB_INTR_ONLY) */
|
||||
@ -130,9 +143,37 @@ dhd_customer_gpio_wlan_ctrl(int onoff)
|
||||
__FUNCTION__));
|
||||
#ifdef CUSTOMER_HW
|
||||
bcm_wlan_power_on(1);
|
||||
#endif /* CUSTOMER_HW */
|
||||
/* Lets customer power to get stable */
|
||||
OSL_DELAY(500);
|
||||
OSL_DELAY(50);
|
||||
#endif /* CUSTOMER_HW */
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef GET_CUSTOM_MAC_ENABLE
|
||||
/* Function to get custom MAC address */
|
||||
int
|
||||
dhd_custom_get_mac_address(unsigned char *buf)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
WL_TRACE(("%s Enter\n", __FUNCTION__));
|
||||
if (!buf)
|
||||
return -EINVAL;
|
||||
|
||||
/* Customer access to MAC address stored outside of DHD driver */
|
||||
#ifdef CUSTOMER_HW2
|
||||
ret = wifi_get_mac_addr(buf);
|
||||
#endif
|
||||
|
||||
#ifdef EXAMPLE_GET_MAC
|
||||
/* EXAMPLE code */
|
||||
{
|
||||
struct ether_addr ea_example = {{0x00, 0x11, 0x22, 0x33, 0x44, 0xFF}};
|
||||
bcopy((char *)&ea_example, buf, sizeof(struct ether_addr));
|
||||
}
|
||||
#endif /* EXAMPLE_GET_MAC */
|
||||
|
||||
return ret;
|
||||
}
|
||||
#endif /* GET_CUSTOM_MAC_ENABLE */
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhd_dbg.h,v 1.5.6.2.4.2.14.4 2009/12/11 01:13:49 Exp $
|
||||
* $Id: dhd_dbg.h,v 1.5.6.2.4.2.14.10 2010/05/21 21:49:38 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _dhd_dbg_
|
||||
@ -42,6 +42,7 @@
|
||||
#define DHD_GLOM(args) do {if (dhd_msg_level & DHD_GLOM_VAL) printf args;} while (0)
|
||||
#define DHD_EVENT(args) do {if (dhd_msg_level & DHD_EVENT_VAL) printf args;} while (0)
|
||||
#define DHD_BTA(args) do {if (dhd_msg_level & DHD_BTA_VAL) printf args;} while (0)
|
||||
#define DHD_ISCAN(args) do {if (dhd_msg_level & DHD_ISCAN_VAL) printf args;} while (0)
|
||||
|
||||
#define DHD_ERROR_ON() (dhd_msg_level & DHD_ERROR_VAL)
|
||||
#define DHD_TRACE_ON() (dhd_msg_level & DHD_TRACE_VAL)
|
||||
@ -55,6 +56,7 @@
|
||||
#define DHD_GLOM_ON() (dhd_msg_level & DHD_GLOM_VAL)
|
||||
#define DHD_EVENT_ON() (dhd_msg_level & DHD_EVENT_VAL)
|
||||
#define DHD_BTA_ON() (dhd_msg_level & DHD_BTA_VAL)
|
||||
#define DHD_ISCAN_ON() (dhd_msg_level & DHD_ISCAN_VAL)
|
||||
|
||||
#else /* DHD_DEBUG */
|
||||
|
||||
@ -70,6 +72,7 @@
|
||||
#define DHD_GLOM(args)
|
||||
#define DHD_EVENT(args)
|
||||
#define DHD_BTA(args)
|
||||
#define DHD_ISCAN(args)
|
||||
|
||||
#define DHD_ERROR_ON() 0
|
||||
#define DHD_TRACE_ON() 0
|
||||
@ -83,7 +86,7 @@
|
||||
#define DHD_GLOM_ON() 0
|
||||
#define DHD_EVENT_ON() 0
|
||||
#define DHD_BTA_ON() 0
|
||||
|
||||
#define DHD_ISCAN_ON() 0
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
#define DHD_LOG(args)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Expose some of the kernel scheduler routines
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -4,7 +4,7 @@
|
||||
* Provides type definitions and function prototypes used to link the
|
||||
* DHD OS, bus, and protocol modules.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -24,7 +24,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhd_proto.h,v 1.2.82.1.4.1.16.6 2009/06/17 01:01:55 Exp $
|
||||
* $Id: dhd_proto.h,v 1.2.82.1.4.1.16.7 2010/05/10 12:54:59 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _dhd_proto_h_
|
||||
@ -34,7 +34,11 @@
|
||||
#include <wlioctl.h>
|
||||
|
||||
#ifndef IOCTL_RESP_TIMEOUT
|
||||
#define IOCTL_RESP_TIMEOUT 2000 /* In milli second */
|
||||
#define IOCTL_RESP_TIMEOUT 3000 /* In milli second */
|
||||
#endif
|
||||
|
||||
#ifndef IOCTL_CHIP_ACTIVE_TIMEOUT
|
||||
#define IOCTL_CHIP_ACTIVE_TIMEOUT 10 /* In milli second */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhd_sdio.c,v 1.157.2.27.2.33.2.109 2010/04/22 05:52:46 Exp $
|
||||
* $Id: dhd_sdio.c,v 1.157.2.27.2.33.2.129.4.1 2010/09/02 23:13:16 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
@ -36,14 +36,11 @@
|
||||
#include <bcmutils.h>
|
||||
#include <bcmendian.h>
|
||||
#include <bcmdevs.h>
|
||||
|
||||
#include <siutils.h>
|
||||
#include <hndpmu.h>
|
||||
#include <hndsoc.h>
|
||||
#include <hndrte_armtrap.h>
|
||||
#include <sbchipc.h>
|
||||
#include <sbhnddma.h>
|
||||
|
||||
#include <sdio.h>
|
||||
#include <sbsdio.h>
|
||||
#include <sbsdpcmdev.h>
|
||||
@ -61,6 +58,13 @@
|
||||
#include <dhdioctl.h>
|
||||
#include <sdiovar.h>
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
#include <hndrte_cons.h>
|
||||
#endif /* DHD_DEBUG */
|
||||
#ifdef DHD_DEBUG_TRAP
|
||||
#include <hndrte_armtrap.h>
|
||||
#endif /* DHD_DEBUG_TRAP */
|
||||
|
||||
#define QLEN 256 /* bulk rx and tx queue lengths */
|
||||
#define FCHI (QLEN - 10)
|
||||
#define FCLOW (FCHI / 2)
|
||||
@ -120,11 +124,11 @@
|
||||
/* Bump up limit on waiting for HT to account for first startup;
|
||||
* if the image is doing a CRC calculation before programming the PMU
|
||||
* for HT availability, it could take a couple hundred ms more, so
|
||||
* max out at a half second (500000us).
|
||||
* max out at a 1 second (1000000us).
|
||||
*/
|
||||
#if (PMU_MAX_TRANSITION_DLY <= 500000)
|
||||
#if (PMU_MAX_TRANSITION_DLY < 1000000)
|
||||
#undef PMU_MAX_TRANSITION_DLY
|
||||
#define PMU_MAX_TRANSITION_DLY 500000
|
||||
#define PMU_MAX_TRANSITION_DLY 1000000
|
||||
#endif
|
||||
|
||||
/* Value for ChipClockCSR during initial setup */
|
||||
@ -142,6 +146,17 @@
|
||||
DHD_SPINWAIT_SLEEP_INIT(sdioh_spinwait_sleep);
|
||||
extern int dhdcdc_set_ioctl(dhd_pub_t *dhd, int ifidx, uint cmd, void *buf, uint len);
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
/* Device console log buffer state */
|
||||
typedef struct dhd_console {
|
||||
uint count; /* Poll interval msec counter */
|
||||
uint log_addr; /* Log struct address (fixed) */
|
||||
hndrte_log_t log; /* Log struct (host copy) */
|
||||
uint bufsize; /* Size of log buffer */
|
||||
uint8 *buf; /* Log buffer (host copy) */
|
||||
uint last; /* Last buffer read index */
|
||||
} dhd_console_t;
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
/* Private data for SDIO bus interaction */
|
||||
typedef struct dhd_bus {
|
||||
@ -209,6 +224,10 @@ typedef struct dhd_bus {
|
||||
uint polltick; /* Tick counter */
|
||||
uint pollcnt; /* Count of active polls */
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
dhd_console_t console; /* Console output polling support */
|
||||
uint console_addr; /* Console address from shared struct */
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
uint regfails; /* Count of R_REG/W_REG failures */
|
||||
|
||||
@ -405,7 +424,9 @@ static void dhdsdio_testrcv(dhd_bus_t *bus, void *pkt, uint seq);
|
||||
static void dhdsdio_sdtest_set(dhd_bus_t *bus, bool start);
|
||||
#endif
|
||||
|
||||
#ifdef DHD_DEBUG_TRAP
|
||||
static int dhdsdio_checkdied(dhd_bus_t *bus, uint8 *data, uint size);
|
||||
#endif /* DHD_DEBUG_TRAP */
|
||||
static int dhdsdio_download_state(dhd_bus_t *bus, bool enter);
|
||||
|
||||
static void dhdsdio_release(dhd_bus_t *bus, osl_t *osh);
|
||||
@ -416,7 +437,7 @@ static bool dhdsdio_probe_attach(dhd_bus_t *bus, osl_t *osh, void *sdh,
|
||||
void * regsva, uint16 devid);
|
||||
static bool dhdsdio_probe_malloc(dhd_bus_t *bus, osl_t *osh, void *sdh);
|
||||
static bool dhdsdio_probe_init(dhd_bus_t *bus, osl_t *osh, void *sdh);
|
||||
static void dhdsdio_release_dongle(dhd_bus_t *bus, osl_t *osh);
|
||||
static void dhdsdio_release_dongle(dhd_bus_t *bus, osl_t *osh, int reset_flag);
|
||||
|
||||
static uint process_nvram_vars(char *varbuf, uint len);
|
||||
|
||||
@ -683,6 +704,7 @@ dhdsdio_sdclk(dhd_bus_t *bus, bool on)
|
||||
static int
|
||||
dhdsdio_clkctl(dhd_bus_t *bus, uint target, bool pendok)
|
||||
{
|
||||
int ret = BCME_OK;
|
||||
#ifdef DHD_DEBUG
|
||||
uint oldstate = bus->clkstate;
|
||||
#endif /* DHD_DEBUG */
|
||||
@ -695,7 +717,7 @@ dhdsdio_clkctl(dhd_bus_t *bus, uint target, bool pendok)
|
||||
dhd_os_wd_timer(bus->dhd, dhd_watchdog_ms);
|
||||
bus->activity = TRUE;
|
||||
}
|
||||
return BCME_OK;
|
||||
return ret;
|
||||
}
|
||||
|
||||
switch (target) {
|
||||
@ -704,29 +726,32 @@ dhdsdio_clkctl(dhd_bus_t *bus, uint target, bool pendok)
|
||||
if (bus->clkstate == CLK_NONE)
|
||||
dhdsdio_sdclk(bus, TRUE);
|
||||
/* Now request HT Avail on the backplane */
|
||||
dhdsdio_htclk(bus, TRUE, pendok);
|
||||
dhd_os_wd_timer(bus->dhd, dhd_watchdog_ms);
|
||||
bus->activity = TRUE;
|
||||
ret = dhdsdio_htclk(bus, TRUE, pendok);
|
||||
if (ret == BCME_OK) {
|
||||
dhd_os_wd_timer(bus->dhd, dhd_watchdog_ms);
|
||||
bus->activity = TRUE;
|
||||
}
|
||||
break;
|
||||
|
||||
case CLK_SDONLY:
|
||||
/* Remove HT request, or bring up SD clock */
|
||||
if (bus->clkstate == CLK_NONE)
|
||||
dhdsdio_sdclk(bus, TRUE);
|
||||
ret = dhdsdio_sdclk(bus, TRUE);
|
||||
else if (bus->clkstate == CLK_AVAIL)
|
||||
dhdsdio_htclk(bus, FALSE, FALSE);
|
||||
ret = dhdsdio_htclk(bus, FALSE, FALSE);
|
||||
else
|
||||
DHD_ERROR(("dhdsdio_clkctl: request for %d -> %d\n",
|
||||
bus->clkstate, target));
|
||||
dhd_os_wd_timer(bus->dhd, dhd_watchdog_ms);
|
||||
if (ret == BCME_OK)
|
||||
dhd_os_wd_timer(bus->dhd, dhd_watchdog_ms);
|
||||
break;
|
||||
|
||||
case CLK_NONE:
|
||||
/* Make sure to remove HT request */
|
||||
if (bus->clkstate == CLK_AVAIL)
|
||||
dhdsdio_htclk(bus, FALSE, FALSE);
|
||||
ret = dhdsdio_htclk(bus, FALSE, FALSE);
|
||||
/* Now remove the SD clock */
|
||||
dhdsdio_sdclk(bus, FALSE);
|
||||
ret = dhdsdio_sdclk(bus, FALSE);
|
||||
dhd_os_wd_timer(bus->dhd, 0);
|
||||
break;
|
||||
}
|
||||
@ -734,7 +759,7 @@ dhdsdio_clkctl(dhd_bus_t *bus, uint target, bool pendok)
|
||||
DHD_INFO(("dhdsdio_clkctl: %d -> %d\n", oldstate, bus->clkstate));
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
return BCME_OK;
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
@ -931,7 +956,6 @@ dhdsdio_txpkt(dhd_bus_t *bus, void *pkt, uint chan, bool free_pkt)
|
||||
(((pad + SDPCM_HDRLEN) << SDPCM_DOFFSET_SHIFT) & SDPCM_DOFFSET_MASK);
|
||||
htol32_ua_store(swheader, frame + SDPCM_FRAMETAG_LEN);
|
||||
htol32_ua_store(0, frame + SDPCM_FRAMETAG_LEN + sizeof(swheader));
|
||||
bus->tx_seq = (bus->tx_seq + 1) % SDPCM_SEQUENCE_WRAP;
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
tx_packets[PKTPRIO(pkt)]++;
|
||||
@ -997,6 +1021,9 @@ dhdsdio_txpkt(dhd_bus_t *bus, void *pkt, uint chan, bool free_pkt)
|
||||
}
|
||||
|
||||
}
|
||||
if (ret == 0) {
|
||||
bus->tx_seq = (bus->tx_seq + 1) % SDPCM_SEQUENCE_WRAP;
|
||||
}
|
||||
} while ((ret < 0) && retrydata && retries++ < TXRETRIES);
|
||||
|
||||
done:
|
||||
@ -1048,7 +1075,7 @@ dhd_bus_txdata(struct dhd_bus *bus, void *pkt)
|
||||
/* Check for existing queue, current flow-control, pending event, or pending clock */
|
||||
if (dhd_deferred_tx || bus->fcstate || pktq_len(&bus->txq) || bus->dpc_sched ||
|
||||
(!DATAOK(bus)) || (bus->flowcontrol & NBITVAL(prec)) ||
|
||||
(bus->clkstate == CLK_PENDING)) {
|
||||
(bus->clkstate != CLK_AVAIL)) {
|
||||
DHD_TRACE(("%s: deferring pktq len %d\n", __FUNCTION__,
|
||||
pktq_len(&bus->txq)));
|
||||
bus->fcqueued++;
|
||||
@ -1084,6 +1111,7 @@ dhd_bus_txdata(struct dhd_bus *bus, void *pkt)
|
||||
|
||||
/* Otherwise, send it now */
|
||||
BUS_WAKE(bus);
|
||||
/* Make sure back plane ht clk is on, no pending allowed */
|
||||
dhdsdio_clkctl(bus, CLK_AVAIL, TRUE);
|
||||
|
||||
#ifndef SDTEST
|
||||
@ -1238,6 +1266,8 @@ dhd_bus_txctl(struct dhd_bus *bus, uchar *msg, uint msglen)
|
||||
htol32_ua_store(0, frame + SDPCM_FRAMETAG_LEN + sizeof(swheader));
|
||||
|
||||
if (!DATAOK(bus)) {
|
||||
DHD_INFO(("%s: No bus credit bus->tx_max %d, bus->tx_seq %d\n",
|
||||
__FUNCTION__, bus->tx_max, bus->tx_seq));
|
||||
bus->ctrl_frame_stat = TRUE;
|
||||
/* Send from dpc */
|
||||
bus->ctrl_frame_buf = frame;
|
||||
@ -1245,15 +1275,16 @@ dhd_bus_txctl(struct dhd_bus *bus, uchar *msg, uint msglen)
|
||||
|
||||
dhd_wait_for_event(bus->dhd, &bus->ctrl_frame_stat);
|
||||
|
||||
if (bus->ctrl_frame_stat == FALSE)
|
||||
if (bus->ctrl_frame_stat == FALSE) {
|
||||
DHD_INFO(("%s: ctrl_frame_stat == FALSE\n", __FUNCTION__));
|
||||
ret = 0;
|
||||
else
|
||||
} else {
|
||||
DHD_INFO(("%s: ctrl_frame_stat == TRUE\n", __FUNCTION__));
|
||||
ret = -1;
|
||||
}
|
||||
}
|
||||
|
||||
if (ret == -1) {
|
||||
bus->tx_seq = (bus->tx_seq + 1) % SDPCM_SEQUENCE_WRAP;
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
if (DHD_BYTES_ON() && DHD_CTL_ON()) {
|
||||
prhex("Tx Frame", frame, len);
|
||||
@ -1263,6 +1294,7 @@ dhd_bus_txctl(struct dhd_bus *bus, uchar *msg, uint msglen)
|
||||
#endif
|
||||
|
||||
do {
|
||||
bus->ctrl_frame_stat = FALSE;
|
||||
ret = dhd_bcmsdh_send_buf(bus, bcmsdh_cur_sbwad(sdh), SDIO_FUNC_2, F2SYNC,
|
||||
frame, len, NULL, NULL, NULL);
|
||||
ASSERT(ret != BCME_PENDING);
|
||||
@ -1291,6 +1323,9 @@ dhd_bus_txctl(struct dhd_bus *bus, uchar *msg, uint msglen)
|
||||
}
|
||||
|
||||
}
|
||||
if (ret == 0) {
|
||||
bus->tx_seq = (bus->tx_seq + 1) % SDPCM_SEQUENCE_WRAP;
|
||||
}
|
||||
} while ((ret < 0) && retries++ < TXRETRIES);
|
||||
}
|
||||
|
||||
@ -1335,17 +1370,21 @@ dhd_bus_rxctl(struct dhd_bus *bus, uchar *msg, uint msglen)
|
||||
__FUNCTION__, rxlen, msglen));
|
||||
} else if (timeleft == 0) {
|
||||
DHD_ERROR(("%s: resumed on timeout\n", __FUNCTION__));
|
||||
#ifdef DHD_DEBUG_TRAP
|
||||
dhd_os_sdlock(bus->dhd);
|
||||
dhdsdio_checkdied(bus, NULL, 0);
|
||||
dhd_os_sdunlock(bus->dhd);
|
||||
#endif /* DHD_DEBUG_TRAP */
|
||||
} else if (pending == TRUE) {
|
||||
DHD_CTL(("%s: cancelled\n", __FUNCTION__));
|
||||
return -ERESTARTSYS;
|
||||
} else {
|
||||
DHD_CTL(("%s: resumed for unknown reason?\n", __FUNCTION__));
|
||||
#ifdef DHD_DEBUG_TRAP
|
||||
dhd_os_sdlock(bus->dhd);
|
||||
dhdsdio_checkdied(bus, NULL, 0);
|
||||
dhd_os_sdunlock(bus->dhd);
|
||||
#endif /* DHD_DEBUG_TRAP */
|
||||
}
|
||||
|
||||
if (rxlen)
|
||||
@ -1365,7 +1404,9 @@ enum {
|
||||
IOV_SDCIS,
|
||||
IOV_MEMBYTES,
|
||||
IOV_MEMSIZE,
|
||||
#ifdef DHD_DEBUG_TRAP
|
||||
IOV_CHECKDIED,
|
||||
#endif
|
||||
IOV_DOWNLOAD,
|
||||
IOV_FORCEEVEN,
|
||||
IOV_SDIOD_DRIVE,
|
||||
@ -1416,8 +1457,10 @@ const bcm_iovar_t dhdsdio_iovars[] = {
|
||||
{"rxbound", IOV_RXBOUND, 0, IOVT_UINT32, 0 },
|
||||
{"txminmax", IOV_TXMINMAX, 0, IOVT_UINT32, 0 },
|
||||
{"cpu", IOV_CPU, 0, IOVT_BOOL, 0 },
|
||||
{"checkdied", IOV_CHECKDIED, 0, IOVT_BUFFER, 0 },
|
||||
#endif /* DHD_DEBUG */
|
||||
#ifdef DHD_DEBUG_TRAP
|
||||
{"checkdied", IOV_CHECKDIED, 0, IOVT_BUFFER, 0 },
|
||||
#endif /* DHD_DEBUG_TRAP */
|
||||
#ifdef SDTEST
|
||||
{"extloop", IOV_EXTLOOP, 0, IOVT_BOOL, 0 },
|
||||
{"pktgen", IOV_PKTGEN, 0, IOVT_BUFFER, sizeof(dhd_pktgen_t) },
|
||||
@ -1646,6 +1689,7 @@ xfer_done:
|
||||
return bcmerror;
|
||||
}
|
||||
|
||||
#ifdef DHD_DEBUG_TRAP
|
||||
static int
|
||||
dhdsdio_readshared(dhd_bus_t *bus, sdpcm_shared_t *sh)
|
||||
{
|
||||
@ -1806,6 +1850,81 @@ done:
|
||||
|
||||
return bcmerror;
|
||||
}
|
||||
#endif /* DHD_DEBUG_TRAP */
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
#define CONSOLE_LINE_MAX 192
|
||||
|
||||
static int
|
||||
dhdsdio_readconsole(dhd_bus_t *bus)
|
||||
{
|
||||
dhd_console_t *c = &bus->console;
|
||||
uint8 line[CONSOLE_LINE_MAX], ch;
|
||||
uint32 n, idx, addr;
|
||||
int rv;
|
||||
|
||||
/* Don't do anything until FWREADY updates console address */
|
||||
if (bus->console_addr == 0)
|
||||
return 0;
|
||||
|
||||
/* Read console log struct */
|
||||
addr = bus->console_addr + OFFSETOF(hndrte_cons_t, log);
|
||||
if ((rv = dhdsdio_membytes(bus, FALSE, addr, (uint8 *)&c->log, sizeof(c->log))) < 0)
|
||||
return rv;
|
||||
|
||||
/* Allocate console buffer (one time only) */
|
||||
if (c->buf == NULL) {
|
||||
c->bufsize = ltoh32(c->log.buf_size);
|
||||
if ((c->buf = MALLOC(bus->dhd->osh, c->bufsize)) == NULL)
|
||||
return BCME_NOMEM;
|
||||
}
|
||||
|
||||
idx = ltoh32(c->log.idx);
|
||||
|
||||
/* Protect against corrupt value */
|
||||
if (idx > c->bufsize)
|
||||
return BCME_ERROR;
|
||||
|
||||
/* Skip reading the console buffer if the index pointer has not moved */
|
||||
if (idx == c->last)
|
||||
return BCME_OK;
|
||||
|
||||
/* Read the console buffer */
|
||||
addr = ltoh32(c->log.buf);
|
||||
if ((rv = dhdsdio_membytes(bus, FALSE, addr, c->buf, c->bufsize)) < 0)
|
||||
return rv;
|
||||
|
||||
while (c->last != idx) {
|
||||
for (n = 0; n < CONSOLE_LINE_MAX - 2; n++) {
|
||||
if (c->last == idx) {
|
||||
/* This would output a partial line. Instead, back up
|
||||
* the buffer pointer and output this line next time around.
|
||||
*/
|
||||
if (c->last >= n)
|
||||
c->last -= n;
|
||||
else
|
||||
c->last = c->bufsize - n;
|
||||
goto break2;
|
||||
}
|
||||
ch = c->buf[c->last];
|
||||
c->last = (c->last + 1) % c->bufsize;
|
||||
if (ch == '\n')
|
||||
break;
|
||||
line[n] = ch;
|
||||
}
|
||||
|
||||
if (n > 0) {
|
||||
if (line[n - 1] == '\r')
|
||||
n--;
|
||||
line[n] = 0;
|
||||
printf("CONSOLE: %s\n", line);
|
||||
}
|
||||
}
|
||||
break2:
|
||||
|
||||
return BCME_OK;
|
||||
}
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
int
|
||||
dhdsdio_downloadvars(dhd_bus_t *bus, void *arg, int len)
|
||||
@ -2544,6 +2663,9 @@ dhd_bus_stop(struct dhd_bus *bus, bool enforce_mutex)
|
||||
|
||||
BUS_WAKE(bus);
|
||||
|
||||
/* Change our idea of bus state */
|
||||
bus->dhd->busstate = DHD_BUS_DOWN;
|
||||
|
||||
/* Enable clock for device interrupts */
|
||||
dhdsdio_clkctl(bus, CLK_AVAIL, FALSE);
|
||||
|
||||
@ -2552,9 +2674,6 @@ dhd_bus_stop(struct dhd_bus *bus, bool enforce_mutex)
|
||||
local_hostintmask = bus->hostintmask;
|
||||
bus->hostintmask = 0;
|
||||
|
||||
/* Change our idea of bus state */
|
||||
bus->dhd->busstate = DHD_BUS_DOWN;
|
||||
|
||||
/* Force clocks on backplane to be sure F2 interrupt propagates */
|
||||
saveclk = bcmsdh_cfg_read(bus->sdh, SDIO_FUNC_1, SBSDIO_FUNC1_CHIPCLKCSR, &err);
|
||||
if (!err) {
|
||||
@ -2607,23 +2726,24 @@ dhd_bus_init(dhd_pub_t *dhdp, bool enforce_mutex)
|
||||
dhd_timeout_t tmo;
|
||||
uint retries = 0;
|
||||
uint8 ready, enable;
|
||||
int err, ret = 0;
|
||||
int err, ret = BCME_ERROR;
|
||||
uint8 saveclk;
|
||||
|
||||
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
|
||||
|
||||
ASSERT(bus->dhd);
|
||||
if (!bus->dhd)
|
||||
return 0;
|
||||
return BCME_OK;
|
||||
|
||||
if (enforce_mutex)
|
||||
dhd_os_sdlock(bus->dhd);
|
||||
|
||||
/* Make sure backplane clock is on, needed to generate F2 interrupt */
|
||||
dhdsdio_clkctl(bus, CLK_AVAIL, FALSE);
|
||||
if (bus->clkstate != CLK_AVAIL)
|
||||
err = dhdsdio_clkctl(bus, CLK_AVAIL, FALSE);
|
||||
if ((err != BCME_OK) || (bus->clkstate != CLK_AVAIL)) {
|
||||
DHD_ERROR(("%s: Failed to set backplane clock: err %d\n", __FUNCTION__, err));
|
||||
goto exit;
|
||||
|
||||
}
|
||||
|
||||
/* Force clocks on backplane to be sure F2 interrupt propagates */
|
||||
saveclk = bcmsdh_cfg_read(bus->sdh, SDIO_FUNC_1, SBSDIO_FUNC1_CHIPCLKCSR, &err);
|
||||
@ -2698,6 +2818,7 @@ dhd_bus_init(dhd_pub_t *dhdp, bool enforce_mutex)
|
||||
if (dhdp->busstate != DHD_BUS_DATA)
|
||||
dhdsdio_clkctl(bus, CLK_NONE, FALSE);
|
||||
|
||||
ret = BCME_OK;
|
||||
exit:
|
||||
if (enforce_mutex)
|
||||
dhd_os_sdunlock(bus->dhd);
|
||||
@ -4051,10 +4172,13 @@ clkwait:
|
||||
DHD_INTR(("%s: enable SDIO interrupts, rxdone %d framecnt %d\n",
|
||||
__FUNCTION__, rxdone, framecnt));
|
||||
bus->intdis = FALSE;
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
bcmsdh_oob_intr_set(1);
|
||||
#endif /* (OOB_INTR_ONLY) */
|
||||
bcmsdh_intr_enable(sdh);
|
||||
}
|
||||
|
||||
if (DATAOK(bus) && bus->ctrl_frame_stat) {
|
||||
if (DATAOK(bus) && bus->ctrl_frame_stat && (bus->clkstate == CLK_AVAIL)) {
|
||||
int ret, i;
|
||||
|
||||
ret = dhd_bcmsdh_send_buf(bus, bcmsdh_cur_sbwad(sdh), SDIO_FUNC_2, F2SYNC,
|
||||
@ -4086,13 +4210,16 @@ clkwait:
|
||||
}
|
||||
|
||||
}
|
||||
if (ret == 0) {
|
||||
bus->tx_seq = (bus->tx_seq + 1) % SDPCM_SEQUENCE_WRAP;
|
||||
}
|
||||
|
||||
printf("Return_dpc value is : %d\n", ret);
|
||||
bus->tx_seq = (bus->tx_seq + 1) % SDPCM_SEQUENCE_WRAP;
|
||||
bus->ctrl_frame_stat = FALSE;
|
||||
dhd_wait_event_wakeup(bus->dhd);
|
||||
}
|
||||
/* Send queued frames (limit 1 if rx may still be pending) */
|
||||
else if ((bus->clkstate != CLK_PENDING) && !bus->fcstate &&
|
||||
else if ((bus->clkstate == CLK_AVAIL) && !bus->fcstate &&
|
||||
pktq_mlen(&bus->txq, ~bus->flowcontrol) && txlimit && DATAOK(bus)) {
|
||||
framecnt = rxdone ? txlimit : MIN(txlimit, dhd_txminmax);
|
||||
framecnt = dhdsdio_sendfromq(bus, framecnt);
|
||||
@ -4107,7 +4234,9 @@ clkwait:
|
||||
bus->dhd->busstate = DHD_BUS_DOWN;
|
||||
bus->intstatus = 0;
|
||||
} else if (bus->clkstate == CLK_PENDING) {
|
||||
/* Awaiting I_CHIPACTIVE; don't resched */
|
||||
DHD_INFO(("%s: rescheduled due to CLK_PENDING awaiting \
|
||||
I_CHIPACTIVE interrupt", __FUNCTION__));
|
||||
resched = TRUE;
|
||||
} else if (bus->intstatus || bus->ipend ||
|
||||
(!bus->fcstate && pktq_mlen(&bus->txq, ~bus->flowcontrol) && DATAOK(bus)) ||
|
||||
PKT_AVAILABLE()) { /* Read multiple frames */
|
||||
@ -4131,7 +4260,6 @@ clkwait:
|
||||
bool
|
||||
dhd_bus_dpc(struct dhd_bus *bus)
|
||||
{
|
||||
#ifdef SDIO_ISR_THREAD
|
||||
bool resched;
|
||||
|
||||
/* Call the DPC directly. */
|
||||
@ -4139,9 +4267,6 @@ dhd_bus_dpc(struct dhd_bus *bus)
|
||||
resched = dhdsdio_dpc(bus);
|
||||
|
||||
return resched;
|
||||
#else
|
||||
return dhdsdio_dpc(bus);
|
||||
#endif /* SDIO_ISR_THREAD */
|
||||
}
|
||||
|
||||
void
|
||||
@ -4150,6 +4275,8 @@ dhdsdio_isr(void *arg)
|
||||
dhd_bus_t *bus = (dhd_bus_t*)arg;
|
||||
bcmsdh_info_t *sdh;
|
||||
|
||||
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
|
||||
|
||||
if (!bus) {
|
||||
DHD_ERROR(("%s : bus is null pointer , exit \n", __FUNCTION__));
|
||||
return;
|
||||
@ -4160,9 +4287,6 @@ dhdsdio_isr(void *arg)
|
||||
DHD_ERROR(("%s : bus is down. we have nothing to do\n", __FUNCTION__));
|
||||
return;
|
||||
}
|
||||
|
||||
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
|
||||
|
||||
/* Count the interrupt call */
|
||||
bus->intrcount++;
|
||||
bus->ipend = TRUE;
|
||||
@ -4453,8 +4577,6 @@ dhd_bus_watchdog(dhd_pub_t *dhdp)
|
||||
if (bus->sleeping)
|
||||
return FALSE;
|
||||
|
||||
dhd_os_sdlock(bus->dhd);
|
||||
|
||||
/* Poll period: check device if appropriate. */
|
||||
if (bus->poll && (++bus->polltick >= bus->pollrate)) {
|
||||
uint32 intstatus = 0;
|
||||
@ -4489,6 +4611,19 @@ dhd_bus_watchdog(dhd_pub_t *dhdp)
|
||||
bus->lastintrs = bus->intrcount;
|
||||
}
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
/* Poll for console output periodically */
|
||||
if (dhdp->busstate == DHD_BUS_DATA && dhd_console_ms != 0) {
|
||||
bus->console.count += dhd_watchdog_ms;
|
||||
if (bus->console.count >= dhd_console_ms) {
|
||||
bus->console.count -= dhd_console_ms;
|
||||
/* Make sure backplane clock is on */
|
||||
dhdsdio_clkctl(bus, CLK_AVAIL, FALSE);
|
||||
if (dhdsdio_readconsole(bus) < 0)
|
||||
dhd_console_ms = 0; /* On error, stop trying */
|
||||
}
|
||||
}
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
#ifdef SDTEST
|
||||
/* Generate packets if configured */
|
||||
@ -4506,17 +4641,76 @@ dhd_bus_watchdog(dhd_pub_t *dhdp)
|
||||
bus->idlecount = 0;
|
||||
if (bus->activity) {
|
||||
bus->activity = FALSE;
|
||||
} else {
|
||||
dhdsdio_clkctl(bus, CLK_NONE, FALSE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dhd_os_sdunlock(bus->dhd);
|
||||
|
||||
return bus->ipend;
|
||||
}
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
extern int
|
||||
dhd_bus_console_in(dhd_pub_t *dhdp, uchar *msg, uint msglen)
|
||||
{
|
||||
dhd_bus_t *bus = dhdp->bus;
|
||||
uint32 addr, val;
|
||||
int rv;
|
||||
void *pkt;
|
||||
|
||||
/* Address could be zero if CONSOLE := 0 in dongle Makefile */
|
||||
if (bus->console_addr == 0)
|
||||
return BCME_UNSUPPORTED;
|
||||
|
||||
/* Exclusive bus access */
|
||||
dhd_os_sdlock(bus->dhd);
|
||||
|
||||
/* Don't allow input if dongle is in reset */
|
||||
if (bus->dhd->dongle_reset) {
|
||||
dhd_os_sdunlock(bus->dhd);
|
||||
return BCME_NOTREADY;
|
||||
}
|
||||
|
||||
/* Request clock to allow SDIO accesses */
|
||||
BUS_WAKE(bus);
|
||||
/* No pend allowed since txpkt is called later, ht clk has to be on */
|
||||
dhdsdio_clkctl(bus, CLK_AVAIL, FALSE);
|
||||
|
||||
/* Zero cbuf_index */
|
||||
addr = bus->console_addr + OFFSETOF(hndrte_cons_t, cbuf_idx);
|
||||
val = htol32(0);
|
||||
if ((rv = dhdsdio_membytes(bus, TRUE, addr, (uint8 *)&val, sizeof(val))) < 0)
|
||||
goto done;
|
||||
|
||||
/* Write message into cbuf */
|
||||
addr = bus->console_addr + OFFSETOF(hndrte_cons_t, cbuf);
|
||||
if ((rv = dhdsdio_membytes(bus, TRUE, addr, (uint8 *)msg, msglen)) < 0)
|
||||
goto done;
|
||||
|
||||
/* Write length into vcons_in */
|
||||
addr = bus->console_addr + OFFSETOF(hndrte_cons_t, vcons_in);
|
||||
val = htol32(msglen);
|
||||
if ((rv = dhdsdio_membytes(bus, TRUE, addr, (uint8 *)&val, sizeof(val))) < 0)
|
||||
goto done;
|
||||
|
||||
/* Bump dongle by sending an empty event pkt.
|
||||
* sdpcm_sendup (RX) checks for virtual console input.
|
||||
*/
|
||||
if (((pkt = PKTGET(bus->dhd->osh, 4 + SDPCM_RESERVE, TRUE)) != NULL) &&
|
||||
bus->clkstate == CLK_AVAIL)
|
||||
dhdsdio_txpkt(bus, pkt, SDPCM_EVENT_CHANNEL, TRUE);
|
||||
|
||||
done:
|
||||
if ((bus->idletime == DHD_IDLE_IMMEDIATE) && !bus->dpc_sched) {
|
||||
bus->activity = FALSE;
|
||||
dhdsdio_clkctl(bus, CLK_NONE, TRUE);
|
||||
}
|
||||
|
||||
dhd_os_sdunlock(bus->dhd);
|
||||
|
||||
return rv;
|
||||
}
|
||||
#endif /* DHD_DEBUG */
|
||||
|
||||
#ifdef DHD_DEBUG
|
||||
static void
|
||||
@ -5047,7 +5241,7 @@ dhdsdio_release(dhd_bus_t *bus, osl_t *osh)
|
||||
|
||||
if (bus->dhd) {
|
||||
|
||||
dhdsdio_release_dongle(bus, osh);
|
||||
dhdsdio_release_dongle(bus, osh, TRUE);
|
||||
|
||||
dhd_detach(bus->dhd);
|
||||
bus->dhd = NULL;
|
||||
@ -5091,11 +5285,11 @@ dhdsdio_release_malloc(dhd_bus_t *bus, osl_t *osh)
|
||||
|
||||
|
||||
static void
|
||||
dhdsdio_release_dongle(dhd_bus_t *bus, osl_t *osh)
|
||||
dhdsdio_release_dongle(dhd_bus_t *bus, osl_t *osh, int reset_flag)
|
||||
{
|
||||
DHD_TRACE(("%s: Enter\n", __FUNCTION__));
|
||||
|
||||
if (bus->dhd && bus->dhd->dongle_reset)
|
||||
if ((bus->dhd && bus->dhd->dongle_reset) && reset_flag)
|
||||
return;
|
||||
|
||||
if (bus->sih) {
|
||||
@ -5545,24 +5739,23 @@ dhd_bus_devreset(dhd_pub_t *dhdp, uint8 flag)
|
||||
|
||||
if (flag == TRUE) {
|
||||
if (!bus->dhd->dongle_reset) {
|
||||
dhd_os_sdlock(dhdp);
|
||||
/* Turning off watchdog */
|
||||
dhd_os_wd_timer(dhdp, 0);
|
||||
#if !defined(IGNORE_ETH0_DOWN)
|
||||
/* Force flow control as protection when stop come before ifconfig_down */
|
||||
dhd_txflowcontrol(bus->dhd, 0, ON);
|
||||
#endif /* !defined(IGNORE_ETH0_DOWN) */
|
||||
/* save country settinng if was pre-setup with priv ioctl */
|
||||
dhd_os_proto_block(dhdp);
|
||||
dhdcdc_query_ioctl(bus->dhd, 0, WLC_GET_COUNTRY,
|
||||
bus->dhd->country_code, sizeof(bus->dhd->country_code));
|
||||
dhd_os_proto_unblock(dhdp);
|
||||
/* Expect app to have torn down any connection before calling */
|
||||
/* Stop the bus, disable F2 */
|
||||
dhd_bus_stop(bus, FALSE);
|
||||
|
||||
/* Clean tx/rx buffer pointers, detach from the dongle */
|
||||
dhdsdio_release_dongle(bus, bus->dhd->osh);
|
||||
dhdsdio_release_dongle(bus, bus->dhd->osh, TRUE);
|
||||
|
||||
bus->dhd->dongle_reset = TRUE;
|
||||
bus->dhd->up = FALSE;
|
||||
dhd_os_sdunlock(dhdp);
|
||||
|
||||
DHD_TRACE(("%s: WLAN OFF DONE\n", __FUNCTION__));
|
||||
/* App can now remove power from device */
|
||||
@ -5575,6 +5768,8 @@ dhd_bus_devreset(dhd_pub_t *dhdp, uint8 flag)
|
||||
|
||||
if (bus->dhd->dongle_reset) {
|
||||
/* Turn on WLAN */
|
||||
dhd_os_sdlock(dhdp);
|
||||
|
||||
/* Reset SD client */
|
||||
bcmsdh_reset(bus->sdh);
|
||||
|
||||
@ -5587,25 +5782,31 @@ dhd_bus_devreset(dhd_pub_t *dhdp, uint8 flag)
|
||||
dhdsdio_download_firmware(bus, bus->dhd->osh, bus->sdh)) {
|
||||
|
||||
/* Re-init bus, enable F2 transfer */
|
||||
dhd_bus_init((dhd_pub_t *) bus->dhd, FALSE);
|
||||
|
||||
bcmerror = dhd_bus_init((dhd_pub_t *) bus->dhd, FALSE);
|
||||
if (bcmerror == BCME_OK) {
|
||||
#if defined(OOB_INTR_ONLY)
|
||||
dhd_enable_oob_intr(bus, TRUE);
|
||||
dhd_enable_oob_intr(bus, TRUE);
|
||||
#endif /* defined(OOB_INTR_ONLY) */
|
||||
|
||||
bus->dhd->dongle_reset = FALSE;
|
||||
bus->dhd->up = TRUE;
|
||||
|
||||
bus->dhd->dongle_reset = FALSE;
|
||||
bus->dhd->up = TRUE;
|
||||
#if !defined(IGNORE_ETH0_DOWN)
|
||||
/* Restore flow control */
|
||||
dhd_txflowcontrol(bus->dhd, 0, OFF);
|
||||
#endif
|
||||
/* Restore flow control */
|
||||
dhd_txflowcontrol(bus->dhd, 0, OFF);
|
||||
#endif
|
||||
/* Turning on watchdog back */
|
||||
dhd_os_wd_timer(dhdp, dhd_watchdog_ms);
|
||||
|
||||
DHD_TRACE(("%s: WLAN ON DONE\n", __FUNCTION__));
|
||||
DHD_TRACE(("%s: WLAN ON DONE\n", __FUNCTION__));
|
||||
} else {
|
||||
dhd_bus_stop(bus, FALSE);
|
||||
dhdsdio_release_dongle(bus, bus->dhd->osh, FALSE);
|
||||
}
|
||||
} else
|
||||
bcmerror = BCME_SDIO_ERROR;
|
||||
} else
|
||||
bcmerror = BCME_SDIO_ERROR;
|
||||
|
||||
dhd_os_sdunlock(dhdp);
|
||||
} else {
|
||||
bcmerror = BCME_NOTDOWN;
|
||||
DHD_ERROR(("%s: Set DEVRESET=FALSE invoked when device is on\n",
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Common stats definitions for clients of dongle
|
||||
* ports
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Misc utility routines for accessing PMU corerev specific features
|
||||
* of the SiliconBackplane-based Broadcom chips.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -22,7 +22,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: hndpmu.c,v 1.95.2.17.4.11.2.50 2009/10/26 14:45:51 Exp $
|
||||
* $Id: hndpmu.c,v 1.95.2.17.4.11.2.63 2010/07/21 13:55:09 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom AMBA Interconnect definitions.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* Definitions subject to change without notice.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmdevs.h,v 13.172.4.5.4.10.2.28 2010/01/28 06:57:23 Exp $
|
||||
* $Id: bcmdevs.h,v 13.172.4.5.4.10.2.36 2010/05/25 08:33:44 Exp $
|
||||
*/
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Byte order utilities
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom PCI-SPI Host Controller Register Definitions
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Performance counters software interface.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Definitions for API from sdio common code (bcmsdh) to individual
|
||||
* host controller drivers.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -3,7 +3,7 @@
|
||||
* export functions to client drivers
|
||||
* abstract OS and BUS specific details of SDIO
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* BCMSDH Function Driver for the native SDIO/MMC driver in the Linux Kernel
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Broadcom SDIO/PCMCIA
|
||||
* Software-specific definitions shared between device and host side
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -22,7 +22,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: bcmsdpcm.h,v 1.1.2.3 2009/04/09 18:52:06 Exp $
|
||||
* $Id: bcmsdpcm.h,v 1.1.2.4 2010/07/02 01:15:46 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _bcmsdpcm_h_
|
||||
@ -241,7 +241,7 @@ typedef volatile struct {
|
||||
* Shared structure between dongle and the host
|
||||
* The structure contains pointers to trap or assert information shared with the host
|
||||
*/
|
||||
#define SDPCM_SHARED_VERSION 0x0001
|
||||
#define SDPCM_SHARED_VERSION 0x0002
|
||||
#define SDPCM_SHARED_VERSION_MASK 0x00FF
|
||||
#define SDPCM_SHARED_ASSERT_BUILT 0x0100
|
||||
#define SDPCM_SHARED_ASSERT 0x0200
|
||||
@ -255,6 +255,7 @@ typedef struct {
|
||||
uint32 assert_line;
|
||||
uint32 console_addr; /* Address of hndrte_cons_t */
|
||||
uint32 msgtrace_addr;
|
||||
uint8 tag[32];
|
||||
} sdpcm_shared_t;
|
||||
|
||||
extern sdpcm_shared_t sdpcm_shared;
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* SD-SPI Protocol Conversion - BCMSDH->SPI Translation Layer
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom SPI Low-Level Hardware Driver API
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
134
drivers/net/wireless/bcm4329/include/bcmspibrcm.h
Normal file
134
drivers/net/wireless/bcm4329/include/bcmspibrcm.h
Normal file
@ -0,0 +1,134 @@
|
||||
/*
|
||||
* SD-SPI Protocol Conversion - BCMSDH->gSPI Translation Layer
|
||||
*
|
||||
* Copyright (C) 2010, Broadcom Corporation
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
|
||||
* the contents of this file may not be disclosed to third parties, copied
|
||||
* or duplicated in any form, in whole or in part, without the prior
|
||||
* written permission of Broadcom Corporation.
|
||||
*
|
||||
* $Id: bcmspibrcm.h,v 1.4.4.1.4.3.6.1 2008/09/27 17:03:25 Exp $
|
||||
*/
|
||||
|
||||
/* global msglevel for debug messages - bitvals come from sdiovar.h */
|
||||
|
||||
#define sd_err(x)
|
||||
#define sd_trace(x)
|
||||
#define sd_info(x)
|
||||
#define sd_debug(x)
|
||||
#define sd_data(x)
|
||||
#define sd_ctrl(x)
|
||||
|
||||
#define sd_log(x)
|
||||
|
||||
#define SDIOH_ASSERT(exp) \
|
||||
do { if (!(exp)) \
|
||||
printf("!!!ASSERT fail: file %s lines %d", __FILE__, __LINE__); \
|
||||
} while (0)
|
||||
|
||||
#define BLOCK_SIZE_F1 64
|
||||
#define BLOCK_SIZE_F2 2048
|
||||
#define BLOCK_SIZE_F3 2048
|
||||
|
||||
/* internal return code */
|
||||
#define SUCCESS 0
|
||||
#undef ERROR
|
||||
#define ERROR 1
|
||||
#define ERROR_UF 2
|
||||
#define ERROR_OF 3
|
||||
|
||||
/* private bus modes */
|
||||
#define SDIOH_MODE_SPI 0
|
||||
|
||||
#define USE_BLOCKMODE 0x2 /* Block mode can be single block or multi */
|
||||
#define USE_MULTIBLOCK 0x4
|
||||
|
||||
struct sdioh_info {
|
||||
uint cfg_bar; /* pci cfg address for bar */
|
||||
uint32 caps; /* cached value of capabilities reg */
|
||||
void *bar0; /* BAR0 for PCI Device */
|
||||
osl_t *osh; /* osh handler */
|
||||
void *controller; /* Pointer to SPI Controller's private data struct */
|
||||
|
||||
uint lockcount; /* nest count of spi_lock() calls */
|
||||
bool client_intr_enabled; /* interrupt connnected flag */
|
||||
bool intr_handler_valid; /* client driver interrupt handler valid */
|
||||
sdioh_cb_fn_t intr_handler; /* registered interrupt handler */
|
||||
void *intr_handler_arg; /* argument to call interrupt handler */
|
||||
bool initialized; /* card initialized */
|
||||
uint32 target_dev; /* Target device ID */
|
||||
uint32 intmask; /* Current active interrupts */
|
||||
void *sdos_info; /* Pointer to per-OS private data */
|
||||
|
||||
uint32 controller_type; /* Host controller type */
|
||||
uint8 version; /* Host Controller Spec Compliance Version */
|
||||
uint irq; /* Client irq */
|
||||
uint32 intrcount; /* Client interrupts */
|
||||
uint32 local_intrcount; /* Controller interrupts */
|
||||
bool host_init_done; /* Controller initted */
|
||||
bool card_init_done; /* Client SDIO interface initted */
|
||||
bool polled_mode; /* polling for command completion */
|
||||
|
||||
bool sd_use_dma; /* DMA on CMD53 */
|
||||
bool sd_blockmode; /* sd_blockmode == FALSE => 64 Byte Cmd 53s. */
|
||||
/* Must be on for sd_multiblock to be effective */
|
||||
bool use_client_ints; /* If this is false, make sure to restore */
|
||||
/* polling hack in wl_linux.c:wl_timer() */
|
||||
int adapter_slot; /* Maybe dealing with multiple slots/controllers */
|
||||
int sd_mode; /* SD1/SD4/SPI */
|
||||
int client_block_size[SPI_MAX_IOFUNCS]; /* Blocksize */
|
||||
uint32 data_xfer_count; /* Current transfer */
|
||||
uint16 card_rca; /* Current Address */
|
||||
uint8 num_funcs; /* Supported funcs on client */
|
||||
uint32 card_dstatus; /* 32bit device status */
|
||||
uint32 com_cis_ptr;
|
||||
uint32 func_cis_ptr[SPI_MAX_IOFUNCS];
|
||||
void *dma_buf;
|
||||
ulong dma_phys;
|
||||
int r_cnt; /* rx count */
|
||||
int t_cnt; /* tx_count */
|
||||
uint32 wordlen; /* host processor 16/32bits */
|
||||
uint32 prev_fun;
|
||||
uint32 chip;
|
||||
uint32 chiprev;
|
||||
bool resp_delay_all;
|
||||
bool dwordmode;
|
||||
|
||||
struct spierrstats_t spierrstats;
|
||||
};
|
||||
|
||||
/************************************************************
|
||||
* Internal interfaces: per-port references into bcmspibrcm.c
|
||||
*/
|
||||
|
||||
/* Global message bits */
|
||||
extern uint sd_msglevel;
|
||||
|
||||
/**************************************************************
|
||||
* Internal interfaces: bcmspibrcm.c references to per-port code
|
||||
*/
|
||||
|
||||
/* Interrupt (de)registration routines */
|
||||
extern int spi_register_irq(sdioh_info_t *sd, uint irq);
|
||||
extern void spi_free_irq(uint irq, sdioh_info_t *sd);
|
||||
|
||||
/* OS-specific interrupt wrappers (atomic interrupt enable/disable) */
|
||||
extern void spi_lock(sdioh_info_t *sd);
|
||||
extern void spi_unlock(sdioh_info_t *sd);
|
||||
|
||||
/* Allocate/init/free per-OS private data */
|
||||
extern int spi_osinit(sdioh_info_t *sd);
|
||||
extern void spi_osfree(sdioh_info_t *sd);
|
||||
|
||||
#define SPI_RW_FLAG_M BITFIELD_MASK(1) /* Bit [31] - R/W Command Bit */
|
||||
#define SPI_RW_FLAG_S 31
|
||||
#define SPI_ACCESS_M BITFIELD_MASK(1) /* Bit [30] - Fixed/Incr Access */
|
||||
#define SPI_ACCESS_S 30
|
||||
#define SPI_FUNCTION_M BITFIELD_MASK(2) /* Bit [29:28] - Function Number */
|
||||
#define SPI_FUNCTION_S 28
|
||||
#define SPI_REG_ADDR_M BITFIELD_MASK(17) /* Bit [27:11] - Address */
|
||||
#define SPI_REG_ADDR_S 11
|
||||
#define SPI_LEN_M BITFIELD_MASK(11) /* Bit [10:0] - Packet length */
|
||||
#define SPI_LEN_S 0
|
@ -20,7 +20,7 @@
|
||||
* Notwithstanding the above, under no circumstances may you combine this
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
* $Id: bcmutils.h,v 13.184.4.6.2.1.18.24 2009/12/10 20:19:19 Exp $
|
||||
* $Id: bcmutils.h,v 13.184.4.6.2.1.18.25 2010/04/26 06:05:24 Exp $
|
||||
*/
|
||||
|
||||
|
||||
|
@ -42,7 +42,7 @@ typedef uint16 chanspec_t;
|
||||
#define CH_5MHZ_APART 1
|
||||
#define CH_MAX_2G_CHANNEL 14
|
||||
#define WLC_MAX_2G_CHANNEL CH_MAX_2G_CHANNEL
|
||||
#define MAXCHANNEL 224
|
||||
#define MAXCHANNEL 224
|
||||
|
||||
#define WL_CHANSPEC_CHAN_MASK 0x00ff
|
||||
#define WL_CHANSPEC_CHAN_SHIFT 0
|
||||
@ -118,7 +118,7 @@ typedef uint16 chanspec_t;
|
||||
(LOWER_20_SB(((chspec) & WL_CHANSPEC_CHAN_MASK))) : \
|
||||
(UPPER_20_SB(((chspec) & WL_CHANSPEC_CHAN_MASK))))
|
||||
|
||||
#define CHSPEC2WLC_BAND(chspec) (CHSPEC_IS5G((chspec)) ? WLC_BAND_5G : WLC_BAND_2G)
|
||||
#define CHSPEC2WLC_BAND(chspec) (CHSPEC_IS5G((chspec))? WLC_BAND_5G: WLC_BAND_2G)
|
||||
|
||||
#define CHANSPEC_STR_LEN 8
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
*
|
||||
* Definitions subject to change without notice.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -25,7 +25,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: dhdioctl.h,v 13.7.8.1.4.1.16.4 2009/09/05 16:50:35 Exp $
|
||||
* $Id: dhdioctl.h,v 13.7.8.1.4.1.16.5 2010/05/21 21:49:38 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _dhdioctl_h_
|
||||
@ -79,6 +79,7 @@ typedef struct dhd_ioctl {
|
||||
#define DHD_GLOM_VAL 0x0400
|
||||
#define DHD_EVENT_VAL 0x0800
|
||||
#define DHD_BTA_VAL 0x1000
|
||||
#define DHD_ISCAN_VAL 0x2000
|
||||
|
||||
#ifdef SDTEST
|
||||
/* For pktgen iovar */
|
||||
|
@ -31,18 +31,18 @@
|
||||
|
||||
#define EPI_MINOR_VERSION 218
|
||||
|
||||
#define EPI_RC_NUMBER 223
|
||||
#define EPI_RC_NUMBER 248
|
||||
|
||||
#define EPI_INCREMENTAL_NUMBER 0
|
||||
#define EPI_INCREMENTAL_NUMBER 20
|
||||
|
||||
#define EPI_BUILD_NUMBER 0
|
||||
|
||||
#define EPI_VERSION 4, 218, 223, 0
|
||||
#define EPI_VERSION 4, 218, 248, 20
|
||||
|
||||
#define EPI_VERSION_NUM 0x04dadf00
|
||||
#define EPI_VERSION_NUM 0x04daf814
|
||||
|
||||
|
||||
#define EPI_VERSION_STR "4.218.223.0"
|
||||
#define EPI_ROUTER_VERSION_STR "4.219.223.0"
|
||||
#define EPI_VERSION_STR "4.218.248.20"
|
||||
#define EPI_ROUTER_VERSION_STR "4.219.248.20"
|
||||
|
||||
#endif
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* HND SiliconBackplane PMU support.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: hndpmu.h,v 13.14.4.3.4.3.8.6 2009/09/14 09:21:45 Exp $
|
||||
* $Id: hndpmu.h,v 13.14.4.3.4.3.8.7 2010/04/09 13:20:51 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _hndpmu_h_
|
||||
|
@ -2,13 +2,13 @@
|
||||
* HNDRTE arm trap handling.
|
||||
*
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
* under the terms of the GNU General Public License version 2 (the "GPL"),
|
||||
* available at http://www.broadcom.com/licenses/GPLv2.php, with the
|
||||
* following added to such license:
|
||||
*
|
||||
*
|
||||
* As a special exception, the copyright holders of this software give you
|
||||
* permission to link this software with independent modules, and to copy and
|
||||
* distribute the resulting executable under terms of your choice, provided that
|
||||
@ -16,12 +16,12 @@
|
||||
* the license of that module. An independent module is a module which is not
|
||||
* derived from this software. The special exception does not apply to any
|
||||
* modifications of the software.
|
||||
*
|
||||
*
|
||||
* Notwithstanding the above, under no circumstances may you combine this
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: hndrte_armtrap.h,v 13.3.196.1 2009/07/13 23:35:44 Exp $
|
||||
* $Id: hndrte_armtrap.h,v 13.3.196.2 2010/07/15 19:06:11 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _hndrte_armtrap_h
|
||||
|
63
drivers/net/wireless/bcm4329/include/hndrte_cons.h
Normal file
63
drivers/net/wireless/bcm4329/include/hndrte_cons.h
Normal file
@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Console support for hndrte.
|
||||
*
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
* under the terms of the GNU General Public License version 2 (the "GPL"),
|
||||
* available at http://www.broadcom.com/licenses/GPLv2.php, with the
|
||||
* following added to such license:
|
||||
*
|
||||
* As a special exception, the copyright holders of this software give you
|
||||
* permission to link this software with independent modules, and to copy and
|
||||
* distribute the resulting executable under terms of your choice, provided that
|
||||
* you also meet, for each linked independent module, the terms and conditions of
|
||||
* the license of that module. An independent module is a module which is not
|
||||
* derived from this software. The special exception does not apply to any
|
||||
* modifications of the software.
|
||||
*
|
||||
* Notwithstanding the above, under no circumstances may you combine this
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: hndrte_cons.h,v 13.1.2.4 2010/07/15 19:06:11 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
|
||||
#define CBUF_LEN (128)
|
||||
|
||||
#define LOG_BUF_LEN 1024
|
||||
|
||||
typedef struct {
|
||||
uint32 buf; /* Can't be pointer on (64-bit) hosts */
|
||||
uint buf_size;
|
||||
uint idx;
|
||||
char *_buf_compat; /* Redundant pointer for backward compat. */
|
||||
} hndrte_log_t;
|
||||
|
||||
typedef struct {
|
||||
/* Virtual UART
|
||||
* When there is no UART (e.g. Quickturn), the host should write a complete
|
||||
* input line directly into cbuf and then write the length into vcons_in.
|
||||
* This may also be used when there is a real UART (at risk of conflicting with
|
||||
* the real UART). vcons_out is currently unused.
|
||||
*/
|
||||
volatile uint vcons_in;
|
||||
volatile uint vcons_out;
|
||||
|
||||
/* Output (logging) buffer
|
||||
* Console output is written to a ring buffer log_buf at index log_idx.
|
||||
* The host may read the output when it sees log_idx advance.
|
||||
* Output will be lost if the output wraps around faster than the host polls.
|
||||
*/
|
||||
hndrte_log_t log;
|
||||
|
||||
/* Console input line buffer
|
||||
* Characters are read one at a time into cbuf until <CR> is received, then
|
||||
* the buffer is processed as a command line. Also used for virtual UART.
|
||||
*/
|
||||
uint cbuf_idx;
|
||||
char cbuf[CBUF_LEN];
|
||||
} hndrte_cons_t;
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom HND chip & on-chip-interconnect-related definitions.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Linux OS Independent Layer
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: linux_osl.h,v 13.131.30.5 2009/10/27 04:42:45 Exp $
|
||||
* $Id: linux_osl.h,v 13.131.30.8 2010/04/26 05:42:18 Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -319,5 +319,4 @@ extern int osl_error(int bcmerror);
|
||||
|
||||
|
||||
#define OSL_SYSUPTIME() ((uint32)jiffies * (1000 / HZ))
|
||||
|
||||
#endif
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Linux-specific abstractions to gain some independence from linux kernel versions.
|
||||
* Pave over some 2.2 versus 2.4 versus 2.6 kernel differences.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -22,7 +22,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: linuxver.h,v 13.38.8.1.8.3 2009/06/19 04:42:45 Exp $
|
||||
* $Id: linuxver.h,v 13.38.8.1.8.6 2010/04/29 05:00:46 Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
#include <linux/version.h>
|
||||
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0))
|
||||
#include <linux/config.h>
|
||||
#else
|
||||
#elif (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 33))
|
||||
#include <linux/autoconf.h>
|
||||
#endif
|
||||
#include <linux/module.h>
|
||||
@ -66,6 +66,7 @@
|
||||
#include <linux/pci.h>
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/semaphore.h>
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28))
|
||||
#undef IP_TOS
|
||||
#endif
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Command line options parser.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Trace messages sent over HBUS
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* OS Abstraction Layer
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -15,7 +15,7 @@
|
||||
* #include <packed_section_end.h>
|
||||
*
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -15,7 +15,7 @@
|
||||
* #include <packed_section_end.h>
|
||||
*
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* pcicfg.h: PCI configuration constants and structures.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -976,6 +976,7 @@ BWL_PRE_PACKED_STRUCT struct dot11_management_notification {
|
||||
#define DOT11_MNG_EXT_CSA_ID 60
|
||||
#define DOT11_MNG_HT_ADD 61
|
||||
#define DOT11_MNG_EXT_CHANNEL_OFFSET 62
|
||||
#define DOT11_MNG_WAPI_ID 68
|
||||
#define DOT11_MNG_HT_BSS_COEXINFO_ID 72
|
||||
#define DOT11_MNG_HT_BSS_CHANNEL_REPORT_ID 73
|
||||
#define DOT11_MNG_HT_OBSS_ID 74
|
||||
@ -1422,6 +1423,8 @@ typedef struct vndr_ie vndr_ie_t;
|
||||
#define AES_KEY_SIZE 16
|
||||
#define AES_MIC_SIZE 8
|
||||
|
||||
#define SMS4_KEY_LEN 16
|
||||
#define SMS4_WPI_CBC_MAC_LEN 16
|
||||
|
||||
|
||||
#include <packed_section_end.h>
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* 802.11e protocol header file
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom Ethernettype protocol definitions
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom Event protocol definitions
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -24,7 +24,7 @@
|
||||
*
|
||||
* Dependencies: proto/bcmeth.h
|
||||
*
|
||||
* $Id: bcmevent.h,v 9.34.4.1.20.16 2009/09/25 23:52:38 Exp $
|
||||
* $Id: bcmevent.h,v 9.34.4.1.20.16.64.1 2010/11/08 21:57:03 Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
@ -131,10 +131,10 @@ typedef BWL_PRE_PACKED_STRUCT struct bcm_event {
|
||||
#define WLC_E_ACTION_FRAME 58
|
||||
#define WLC_E_ACTION_FRAME_COMPLETE 59
|
||||
|
||||
#define WLC_E_ESCAN_RESULT 69
|
||||
#define WLC_E_WAKE_EVENT 70
|
||||
#define WLC_E_LAST 71
|
||||
|
||||
#define WLC_E_ESCAN_RESULT 69
|
||||
#define WLC_E_WAKE_EVENT 70
|
||||
#define WLC_E_RELOAD 71
|
||||
#define WLC_E_LAST 72
|
||||
|
||||
|
||||
|
||||
@ -205,6 +205,7 @@ typedef BWL_PRE_PACKED_STRUCT struct bcm_event {
|
||||
#define WLC_E_IF_ADD 1
|
||||
#define WLC_E_IF_DEL 2
|
||||
|
||||
#define WLC_E_RELOAD_STATUS1 1
|
||||
|
||||
#include <packed_section_end.h>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* From FreeBSD 2.2.7: Fundamental constants relating to ethernet.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: ethernet.h,v 9.45.56.3 2009/08/15 00:51:27 Exp $
|
||||
* $Id: ethernet.h,v 9.45.56.5 2010/02/22 22:04:36 Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -67,6 +67,7 @@
|
||||
#define ETHER_TYPE_8021Q 0x8100
|
||||
#define ETHER_TYPE_BRCM 0x886c
|
||||
#define ETHER_TYPE_802_1X 0x888e
|
||||
#define ETHER_TYPE_WAI 0x88b4
|
||||
#ifdef BCMWPA2
|
||||
#define ETHER_TYPE_802_1X_PREAUTH 0x88c7
|
||||
#endif
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* SD-SPI Protocol Standard
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* 802.1Q VLAN protocol definitions
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Fundamental types and constants relating to WPA
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom SiliconBackplane hardware register definitions.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Generic Broadcom Home Networking Division (HND) DMA engine HW interface
|
||||
* This supports the following chips: BCM42xx, 44xx, 47xx .
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* BCM43XX Sonics SiliconBackplane PCMCIA core hardware definitions.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* SDIO core support 1bit, 4 bit SDIO mode as well as SPI mode.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Broadcom SiliconBackplane SDIO/PCMCIA hardware-specific device core support
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* BCM47XX Sonics SiliconBackplane embedded ram core
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -2,7 +2,7 @@
|
||||
* SDIO spec header file
|
||||
* Protocol and standard (common) device definitions
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -22,7 +22,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: siutils.h,v 13.197.4.2.4.3.8.14 2010/03/19 18:31:43 Exp $
|
||||
* $Id: siutils.h,v 13.197.4.2.4.3.8.16 2010/06/23 21:36:05 Exp $
|
||||
*/
|
||||
|
||||
|
||||
|
153
drivers/net/wireless/bcm4329/include/spid.h
Normal file
153
drivers/net/wireless/bcm4329/include/spid.h
Normal file
@ -0,0 +1,153 @@
|
||||
/*
|
||||
* SPI device spec header file
|
||||
*
|
||||
* Copyright (C) 2010, Broadcom Corporation
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
|
||||
* the contents of this file may not be disclosed to third parties, copied
|
||||
* or duplicated in any form, in whole or in part, without the prior
|
||||
* written permission of Broadcom Corporation.
|
||||
*
|
||||
* $Id: spid.h,v 1.7.10.1.16.3 2009/04/09 19:23:14 Exp $
|
||||
*/
|
||||
|
||||
#ifndef _SPI_H
|
||||
#define _SPI_H
|
||||
|
||||
/*
|
||||
* Brcm SPI Device Register Map.
|
||||
*
|
||||
*/
|
||||
|
||||
typedef volatile struct {
|
||||
uint8 config; /* 0x00, len, endian, clock, speed, polarity, wakeup */
|
||||
uint8 response_delay; /* 0x01, read response delay in bytes (corerev < 3) */
|
||||
uint8 status_enable; /* 0x02, status-enable, intr with status, response_delay
|
||||
* function selection, command/data error check
|
||||
*/
|
||||
uint8 reset_bp; /* 0x03, reset on wlan/bt backplane reset (corerev >= 1) */
|
||||
uint16 intr_reg; /* 0x04, Intr status register */
|
||||
uint16 intr_en_reg; /* 0x06, Intr mask register */
|
||||
uint32 status_reg; /* 0x08, RO, Status bits of last spi transfer */
|
||||
uint16 f1_info_reg; /* 0x0c, RO, enabled, ready for data transfer, blocksize */
|
||||
uint16 f2_info_reg; /* 0x0e, RO, enabled, ready for data transfer, blocksize */
|
||||
uint16 f3_info_reg; /* 0x10, RO, enabled, ready for data transfer, blocksize */
|
||||
uint32 test_read; /* 0x14, RO 0xfeedbead signature */
|
||||
uint32 test_rw; /* 0x18, RW */
|
||||
uint8 resp_delay_f0; /* 0x1c, read resp delay bytes for F0 (corerev >= 3) */
|
||||
uint8 resp_delay_f1; /* 0x1d, read resp delay bytes for F1 (corerev >= 3) */
|
||||
uint8 resp_delay_f2; /* 0x1e, read resp delay bytes for F2 (corerev >= 3) */
|
||||
uint8 resp_delay_f3; /* 0x1f, read resp delay bytes for F3 (corerev >= 3) */
|
||||
} spi_regs_t;
|
||||
|
||||
/* SPI device register offsets */
|
||||
#define SPID_CONFIG 0x00
|
||||
#define SPID_RESPONSE_DELAY 0x01
|
||||
#define SPID_STATUS_ENABLE 0x02
|
||||
#define SPID_RESET_BP 0x03 /* (corerev >= 1) */
|
||||
#define SPID_INTR_REG 0x04 /* 16 bits - Interrupt status */
|
||||
#define SPID_INTR_EN_REG 0x06 /* 16 bits - Interrupt mask */
|
||||
#define SPID_STATUS_REG 0x08 /* 32 bits */
|
||||
#define SPID_F1_INFO_REG 0x0C /* 16 bits */
|
||||
#define SPID_F2_INFO_REG 0x0E /* 16 bits */
|
||||
#define SPID_F3_INFO_REG 0x10 /* 16 bits */
|
||||
#define SPID_TEST_READ 0x14 /* 32 bits */
|
||||
#define SPID_TEST_RW 0x18 /* 32 bits */
|
||||
#define SPID_RESP_DELAY_F0 0x1c /* 8 bits (corerev >= 3) */
|
||||
#define SPID_RESP_DELAY_F1 0x1d /* 8 bits (corerev >= 3) */
|
||||
#define SPID_RESP_DELAY_F2 0x1e /* 8 bits (corerev >= 3) */
|
||||
#define SPID_RESP_DELAY_F3 0x1f /* 8 bits (corerev >= 3) */
|
||||
|
||||
/* Bit masks for SPID_CONFIG device register */
|
||||
#define WORD_LENGTH_32 0x1 /* 0/1 16/32 bit word length */
|
||||
#define ENDIAN_BIG 0x2 /* 0/1 Little/Big Endian */
|
||||
#define CLOCK_PHASE 0x4 /* 0/1 clock phase delay */
|
||||
#define CLOCK_POLARITY 0x8 /* 0/1 Idle state clock polarity is low/high */
|
||||
#define HIGH_SPEED_MODE 0x10 /* 1/0 High Speed mode / Normal mode */
|
||||
#define INTR_POLARITY 0x20 /* 1/0 Interrupt active polarity is high/low */
|
||||
#define WAKE_UP 0x80 /* 0/1 Wake-up command from Host to WLAN */
|
||||
|
||||
/* Bit mask for SPID_RESPONSE_DELAY device register */
|
||||
#define RESPONSE_DELAY_MASK 0xFF /* Configurable rd response delay in multiples of 8 bits */
|
||||
|
||||
/* Bit mask for SPID_STATUS_ENABLE device register */
|
||||
#define STATUS_ENABLE 0x1 /* 1/0 Status sent/not sent to host after read/write */
|
||||
#define INTR_WITH_STATUS 0x2 /* 0/1 Do-not / do-interrupt if status is sent */
|
||||
#define RESP_DELAY_ALL 0x4 /* Applicability of resp delay to F1 or all func's read */
|
||||
#define DWORD_PKT_LEN_EN 0x8 /* Packet len denoted in dwords instead of bytes */
|
||||
#define CMD_ERR_CHK_EN 0x20 /* Command error check enable */
|
||||
#define DATA_ERR_CHK_EN 0x40 /* Data error check enable */
|
||||
|
||||
/* Bit mask for SPID_RESET_BP device register */
|
||||
#define RESET_ON_WLAN_BP_RESET 0x4 /* enable reset for WLAN backplane */
|
||||
#define RESET_ON_BT_BP_RESET 0x8 /* enable reset for BT backplane */
|
||||
#define RESET_SPI 0x80 /* reset the above enabled logic */
|
||||
|
||||
/* Bit mask for SPID_INTR_REG device register */
|
||||
#define DATA_UNAVAILABLE 0x0001 /* Requested data not available; Clear by writing a "1" */
|
||||
#define F2_F3_FIFO_RD_UNDERFLOW 0x0002
|
||||
#define F2_F3_FIFO_WR_OVERFLOW 0x0004
|
||||
#define COMMAND_ERROR 0x0008 /* Cleared by writing 1 */
|
||||
#define DATA_ERROR 0x0010 /* Cleared by writing 1 */
|
||||
#define F2_PACKET_AVAILABLE 0x0020
|
||||
#define F3_PACKET_AVAILABLE 0x0040
|
||||
#define F1_OVERFLOW 0x0080 /* Due to last write. Bkplane has pending write requests */
|
||||
#define MISC_INTR0 0x0100
|
||||
#define MISC_INTR1 0x0200
|
||||
#define MISC_INTR2 0x0400
|
||||
#define MISC_INTR3 0x0800
|
||||
#define MISC_INTR4 0x1000
|
||||
#define F1_INTR 0x2000
|
||||
#define F2_INTR 0x4000
|
||||
#define F3_INTR 0x8000
|
||||
|
||||
/* Bit mask for 32bit SPID_STATUS_REG device register */
|
||||
#define STATUS_DATA_NOT_AVAILABLE 0x00000001
|
||||
#define STATUS_UNDERFLOW 0x00000002
|
||||
#define STATUS_OVERFLOW 0x00000004
|
||||
#define STATUS_F2_INTR 0x00000008
|
||||
#define STATUS_F3_INTR 0x00000010
|
||||
#define STATUS_F2_RX_READY 0x00000020
|
||||
#define STATUS_F3_RX_READY 0x00000040
|
||||
#define STATUS_HOST_CMD_DATA_ERR 0x00000080
|
||||
#define STATUS_F2_PKT_AVAILABLE 0x00000100
|
||||
#define STATUS_F2_PKT_LEN_MASK 0x000FFE00
|
||||
#define STATUS_F2_PKT_LEN_SHIFT 9
|
||||
#define STATUS_F3_PKT_AVAILABLE 0x00100000
|
||||
#define STATUS_F3_PKT_LEN_MASK 0xFFE00000
|
||||
#define STATUS_F3_PKT_LEN_SHIFT 21
|
||||
|
||||
/* Bit mask for 16 bits SPID_F1_INFO_REG device register */
|
||||
#define F1_ENABLED 0x0001
|
||||
#define F1_RDY_FOR_DATA_TRANSFER 0x0002
|
||||
#define F1_MAX_PKT_SIZE 0x01FC
|
||||
|
||||
/* Bit mask for 16 bits SPID_F2_INFO_REG device register */
|
||||
#define F2_ENABLED 0x0001
|
||||
#define F2_RDY_FOR_DATA_TRANSFER 0x0002
|
||||
#define F2_MAX_PKT_SIZE 0x3FFC
|
||||
|
||||
/* Bit mask for 16 bits SPID_F3_INFO_REG device register */
|
||||
#define F3_ENABLED 0x0001
|
||||
#define F3_RDY_FOR_DATA_TRANSFER 0x0002
|
||||
#define F3_MAX_PKT_SIZE 0x3FFC
|
||||
|
||||
/* Bit mask for 32 bits SPID_TEST_READ device register read in 16bit LE mode */
|
||||
#define TEST_RO_DATA_32BIT_LE 0xFEEDBEAD
|
||||
|
||||
/* Maximum number of I/O funcs */
|
||||
#define SPI_MAX_IOFUNCS 4
|
||||
|
||||
#define SPI_MAX_PKT_LEN (2048*4)
|
||||
|
||||
/* Misc defines */
|
||||
#define SPI_FUNC_0 0
|
||||
#define SPI_FUNC_1 1
|
||||
#define SPI_FUNC_2 2
|
||||
#define SPI_FUNC_3 3
|
||||
|
||||
#define WAIT_F2RXFIFORDY 100
|
||||
#define WAIT_F2RXFIFORDY_DELAY 20
|
||||
|
||||
#endif /* _SPI_H */
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* TRX image file header format.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -24,7 +24,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: wlioctl.h,v 1.601.4.15.2.14.2.60 2010/04/12 05:33:02 Exp $
|
||||
* $Id: wlioctl.h,v 1.601.4.15.2.14.2.62.4.1 2010/11/17 03:09:28 Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -288,6 +288,7 @@ typedef enum sup_auth_status {
|
||||
#define CRYPTO_ALGO_AES_OCB_MSDU 5
|
||||
#define CRYPTO_ALGO_AES_OCB_MPDU 6
|
||||
#define CRYPTO_ALGO_NALG 7
|
||||
#define CRYPTO_ALGO_SMS4 11
|
||||
|
||||
#define WSEC_GEN_MIC_ERROR 0x0001
|
||||
#define WSEC_GEN_REPLAY 0x0002
|
||||
@ -338,6 +339,7 @@ typedef struct {
|
||||
#define AES_ENABLED 0x0004
|
||||
#define WSEC_SWFLAG 0x0008
|
||||
#define SES_OW_ENABLED 0x0040
|
||||
#define SMS4_ENABLED 0x0100
|
||||
|
||||
|
||||
#define WPA_AUTH_DISABLED 0x0000
|
||||
@ -349,6 +351,7 @@ typedef struct {
|
||||
#define WPA2_AUTH_PSK 0x0080
|
||||
#define BRCM_AUTH_PSK 0x0100
|
||||
#define BRCM_AUTH_DPT 0x0200
|
||||
#define WPA_AUTH_WAPI 0x0400
|
||||
|
||||
#define WPA_AUTH_PFN_ANY 0xffffffff
|
||||
|
||||
@ -854,6 +857,7 @@ typedef struct wl_ioctl {
|
||||
#define PM_MAX 1
|
||||
#define PM_FAST 2
|
||||
|
||||
#define LISTEN_INTERVAL 20
|
||||
|
||||
#define INTERFERE_NONE 0
|
||||
#define NON_WLAN 1
|
||||
@ -1314,6 +1318,8 @@ enum {
|
||||
|
||||
#define PFN_VERSION 1
|
||||
|
||||
#define MAX_PFN_LIST_COUNT 16
|
||||
|
||||
|
||||
typedef struct wl_pfn_param {
|
||||
int32 version;
|
||||
@ -1324,12 +1330,12 @@ typedef struct wl_pfn_param {
|
||||
} wl_pfn_param_t;
|
||||
|
||||
typedef struct wl_pfn {
|
||||
wlc_ssid_t ssid;
|
||||
int32 bss_type;
|
||||
int32 infra;
|
||||
int32 auth;
|
||||
uint32 wpa_auth;
|
||||
int32 wsec;
|
||||
wlc_ssid_t ssid;
|
||||
int32 bss_type;
|
||||
int32 infra;
|
||||
int32 auth;
|
||||
uint32 wpa_auth;
|
||||
int32 wsec;
|
||||
#ifdef WLPFN_AUTO_CONNECT
|
||||
union {
|
||||
wl_wsec_key_t sec_key;
|
||||
|
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: linux_osl.c,v 1.125.12.3.8.6 2009/12/09 01:29:03 Exp $
|
||||
* $Id: linux_osl.c,v 1.125.12.3.8.7 2010/05/04 21:10:04 Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -35,6 +35,7 @@
|
||||
#include <bcmutils.h>
|
||||
#include <linux/delay.h>
|
||||
#include <pcicfg.h>
|
||||
#include <linux/mutex.h>
|
||||
|
||||
#define PCI_CFG_RETRY 10
|
||||
|
||||
@ -46,7 +47,7 @@
|
||||
#define STATIC_BUF_SIZE (PAGE_SIZE*2)
|
||||
#define STATIC_BUF_TOTAL_LEN (MAX_STATIC_BUF_NUM*STATIC_BUF_SIZE)
|
||||
typedef struct bcm_static_buf {
|
||||
struct semaphore static_sem;
|
||||
struct mutex static_sem;
|
||||
unsigned char *buf_ptr;
|
||||
unsigned char buf_use[MAX_STATIC_BUF_NUM];
|
||||
} bcm_static_buf_t;
|
||||
@ -57,7 +58,7 @@ static bcm_static_buf_t *bcm_static_buf = 0;
|
||||
typedef struct bcm_static_pkt {
|
||||
struct sk_buff *skb_4k[MAX_STATIC_PKT_NUM];
|
||||
struct sk_buff *skb_8k[MAX_STATIC_PKT_NUM];
|
||||
struct semaphore osl_pkt_sem;
|
||||
struct mutex osl_pkt_sem;
|
||||
unsigned char pkt_use[MAX_STATIC_PKT_NUM*2];
|
||||
} bcm_static_pkt_t;
|
||||
static bcm_static_pkt_t *bcm_static_skb = 0;
|
||||
@ -199,7 +200,7 @@ osl_attach(void *pdev, uint bustype, bool pkttag)
|
||||
/* printk("alloc static buf at %x!\n", (unsigned int)bcm_static_buf); */
|
||||
}
|
||||
|
||||
init_MUTEX(&bcm_static_buf->static_sem);
|
||||
mutex_init(&bcm_static_buf->static_sem);
|
||||
|
||||
|
||||
bcm_static_buf->buf_ptr = (unsigned char *)bcm_static_buf + STATIC_BUF_SIZE;
|
||||
@ -217,7 +218,7 @@ osl_attach(void *pdev, uint bustype, bool pkttag)
|
||||
for (i = 0; i < MAX_STATIC_PKT_NUM*2; i++)
|
||||
bcm_static_skb->pkt_use[i] = 0;
|
||||
|
||||
init_MUTEX(&bcm_static_skb->osl_pkt_sem);
|
||||
mutex_init(&bcm_static_skb->osl_pkt_sem);
|
||||
}
|
||||
#endif
|
||||
return osh;
|
||||
@ -304,7 +305,7 @@ osl_pktget_static(osl_t *osh, uint len)
|
||||
}
|
||||
|
||||
|
||||
down(&bcm_static_skb->osl_pkt_sem);
|
||||
mutex_lock(&bcm_static_skb->osl_pkt_sem);
|
||||
if (len <= PAGE_SIZE)
|
||||
{
|
||||
|
||||
@ -317,7 +318,7 @@ osl_pktget_static(osl_t *osh, uint len)
|
||||
if (i != MAX_STATIC_PKT_NUM)
|
||||
{
|
||||
bcm_static_skb->pkt_use[i] = 1;
|
||||
up(&bcm_static_skb->osl_pkt_sem);
|
||||
mutex_unlock(&bcm_static_skb->osl_pkt_sem);
|
||||
|
||||
skb = bcm_static_skb->skb_4k[i];
|
||||
skb->tail = skb->data + len;
|
||||
@ -337,7 +338,7 @@ osl_pktget_static(osl_t *osh, uint len)
|
||||
if (i != MAX_STATIC_PKT_NUM)
|
||||
{
|
||||
bcm_static_skb->pkt_use[i+MAX_STATIC_PKT_NUM] = 1;
|
||||
up(&bcm_static_skb->osl_pkt_sem);
|
||||
mutex_unlock(&bcm_static_skb->osl_pkt_sem);
|
||||
skb = bcm_static_skb->skb_8k[i];
|
||||
skb->tail = skb->data + len;
|
||||
skb->len = len;
|
||||
@ -347,7 +348,7 @@ osl_pktget_static(osl_t *osh, uint len)
|
||||
|
||||
|
||||
|
||||
up(&bcm_static_skb->osl_pkt_sem);
|
||||
mutex_unlock(&bcm_static_skb->osl_pkt_sem);
|
||||
printk("all static pkt in use!\n");
|
||||
return osl_pktget(osh, len);
|
||||
}
|
||||
@ -360,12 +361,11 @@ osl_pktfree_static(osl_t *osh, void *p, bool send)
|
||||
|
||||
for (i = 0; i < MAX_STATIC_PKT_NUM*2; i++)
|
||||
{
|
||||
if ( (i < MAX_STATIC_PKT_NUM && p == bcm_static_skb->skb_4k[i]) ||
|
||||
(i >= MAX_STATIC_PKT_NUM && p == bcm_static_skb->skb_8k[i-MAX_STATIC_PKT_NUM]) )
|
||||
if (p == bcm_static_skb->skb_4k[i])
|
||||
{
|
||||
down(&bcm_static_skb->osl_pkt_sem);
|
||||
mutex_lock(&bcm_static_skb->osl_pkt_sem);
|
||||
bcm_static_skb->pkt_use[i] = 0;
|
||||
up(&bcm_static_skb->osl_pkt_sem);
|
||||
mutex_unlock(&bcm_static_skb->osl_pkt_sem);
|
||||
|
||||
|
||||
return;
|
||||
@ -467,7 +467,7 @@ osl_malloc(osl_t *osh, uint size)
|
||||
int i = 0;
|
||||
if ((size >= PAGE_SIZE)&&(size <= STATIC_BUF_SIZE))
|
||||
{
|
||||
down(&bcm_static_buf->static_sem);
|
||||
mutex_lock(&bcm_static_buf->static_sem);
|
||||
|
||||
for (i = 0; i < MAX_STATIC_BUF_NUM; i++)
|
||||
{
|
||||
@ -477,13 +477,13 @@ osl_malloc(osl_t *osh, uint size)
|
||||
|
||||
if (i == MAX_STATIC_BUF_NUM)
|
||||
{
|
||||
up(&bcm_static_buf->static_sem);
|
||||
mutex_unlock(&bcm_static_buf->static_sem);
|
||||
printk("all static buff in use!\n");
|
||||
goto original;
|
||||
}
|
||||
|
||||
bcm_static_buf->buf_use[i] = 1;
|
||||
up(&bcm_static_buf->static_sem);
|
||||
mutex_unlock(&bcm_static_buf->static_sem);
|
||||
|
||||
bzero(bcm_static_buf->buf_ptr+STATIC_BUF_SIZE*i, size);
|
||||
if (osh)
|
||||
@ -512,16 +512,16 @@ osl_mfree(osl_t *osh, void *addr, uint size)
|
||||
#ifdef DHD_USE_STATIC_BUF
|
||||
if (bcm_static_buf)
|
||||
{
|
||||
if ((addr > (void *)bcm_static_buf) && ((unsigned char *)addr \
|
||||
if ((addr > (void *)bcm_static_buf) && ((unsigned char *)addr
|
||||
<= ((unsigned char *)bcm_static_buf + STATIC_BUF_TOTAL_LEN)))
|
||||
{
|
||||
int buf_idx = 0;
|
||||
|
||||
buf_idx = ((unsigned char *)addr - bcm_static_buf->buf_ptr)/STATIC_BUF_SIZE;
|
||||
|
||||
down(&bcm_static_buf->static_sem);
|
||||
mutex_lock(&bcm_static_buf->static_sem);
|
||||
bcm_static_buf->buf_use[buf_idx] = 0;
|
||||
up(&bcm_static_buf->static_sem);
|
||||
mutex_unlock(&bcm_static_buf->static_sem);
|
||||
|
||||
if (osh) {
|
||||
ASSERT(osh->magic == OS_HANDLE_MAGIC);
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Description.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
@ -2,7 +2,7 @@
|
||||
* Misc utility routines for accessing chip-specific features
|
||||
* of the SiliconBackplane-based Broadcom chips.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
@ -22,7 +22,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: sbutils.c,v 1.662.4.10.2.7.4.1 2009/09/25 00:32:01 Exp $
|
||||
* $Id: sbutils.c,v 1.662.4.10.2.7.4.2 2010/04/19 05:48:48 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
|
@ -22,7 +22,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: siutils.c,v 1.662.4.4.4.16.4.26 2010/02/01 05:51:56 Exp $
|
||||
* $Id: siutils.c,v 1.662.4.4.4.16.4.28 2010/06/23 21:37:54 Exp $
|
||||
*/
|
||||
|
||||
#include <typedefs.h>
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* Include file private to the SOC Interconnect support files.
|
||||
*
|
||||
* Copyright (C) 1999-2009, Broadcom Corporation
|
||||
* Copyright (C) 1999-2010, Broadcom Corporation
|
||||
*
|
||||
* Unless you and Broadcom execute a separate written software license
|
||||
* agreement governing use of this software, this software is licensed to you
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -21,7 +21,7 @@
|
||||
* software in any way with any other Broadcom software provided under a license
|
||||
* other than the GPL, without Broadcom's express prior written consent.
|
||||
*
|
||||
* $Id: wl_iw.h,v 1.5.34.1.6.16 2010/04/19 21:32:10 Exp $
|
||||
* $Id: wl_iw.h,v 1.5.34.1.6.36.4.15 2010/11/17 03:13:51 Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -34,6 +34,33 @@
|
||||
#include <proto/ethernet.h>
|
||||
#include <wlioctl.h>
|
||||
|
||||
#define WL_SCAN_PARAMS_SSID_MAX 10
|
||||
#define GET_SSID "SSID="
|
||||
#define GET_CHANNEL "CH="
|
||||
#define GET_NPROBE "NPROBE="
|
||||
#define GET_ACTIVE_ASSOC_DWELL "ACTIVE="
|
||||
#define GET_PASSIVE_ASSOC_DWELL "PASSIVE="
|
||||
#define GET_HOME_DWELL "HOME="
|
||||
#define GET_SCAN_TYPE "TYPE="
|
||||
|
||||
#define BAND_GET_CMD "GETBAND"
|
||||
#define BAND_SET_CMD "SETBAND"
|
||||
#define DTIM_SKIP_GET_CMD "DTIMSKIPGET"
|
||||
#define DTIM_SKIP_SET_CMD "DTIMSKIPSET"
|
||||
#define SETSUSPEND_CMD "SETSUSPENDOPT"
|
||||
#define PNOSSIDCLR_SET_CMD "PNOSSIDCLR"
|
||||
#define PNOSETUP_SET_CMD "PNOSETUP "
|
||||
#define PNOENABLE_SET_CMD "PNOFORCE"
|
||||
#define PNODEBUG_SET_CMD "PNODEBUG"
|
||||
#define SETDFSCHANNELS_CMD "SETDFSCHANNELS"
|
||||
|
||||
#define MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5]
|
||||
#define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x"
|
||||
|
||||
|
||||
typedef struct wl_iw_extra_params {
|
||||
int target_channel;
|
||||
} wl_iw_extra_params_t;
|
||||
|
||||
#define WL_IW_RSSI_MINVAL -200
|
||||
#define WL_IW_RSSI_NO_SIGNAL -91
|
||||
@ -61,8 +88,9 @@
|
||||
#define AP_LPB_CMD (SIOCIWFIRSTPRIV+23)
|
||||
#define WL_AP_STOP (SIOCIWFIRSTPRIV+25)
|
||||
#define WL_FW_RELOAD (SIOCIWFIRSTPRIV+27)
|
||||
#define WL_AP_SPARE2 (SIOCIWFIRSTPRIV+29)
|
||||
#define WL_AP_SPARE3 (SIOCIWFIRSTPRIV+31)
|
||||
#define WL_AP_STA_DISASSOC (SIOCIWFIRSTPRIV+29)
|
||||
#define WL_COMBO_SCAN (SIOCIWFIRSTPRIV+31)
|
||||
|
||||
#define G_SCAN_RESULTS (8*1024)
|
||||
#define WE_ADD_EVENT_FIX 0x80
|
||||
#define G_WLAN_SET_ON 0
|
||||
@ -90,19 +118,18 @@ typedef struct wl_iw {
|
||||
dhd_pub_t * pub;
|
||||
} wl_iw_t;
|
||||
|
||||
#define WLC_IW_SS_CACHE_MAXLEN 512
|
||||
#define WLC_IW_SS_CACHE_MAXLEN 2048
|
||||
#define WLC_IW_SS_CACHE_CTRL_FIELD_MAXLEN 32
|
||||
#define WLC_IW_BSS_INFO_MAXLEN \
|
||||
(WLC_IW_SS_CACHE_MAXLEN - WLC_IW_SS_CACHE_CTRL_FIELD_MAXLEN)
|
||||
|
||||
typedef struct wl_iw_ss_cache{
|
||||
typedef struct wl_iw_ss_cache {
|
||||
struct wl_iw_ss_cache *next;
|
||||
int dirty;
|
||||
uint32 buflen;
|
||||
uint32 version;
|
||||
uint32 count;
|
||||
wl_bss_info_t bss_info[1];
|
||||
char dummy[WLC_IW_BSS_INFO_MAXLEN - sizeof(wl_bss_info_t)];
|
||||
int dirty;
|
||||
struct wl_iw_ss_cache *next;
|
||||
} wl_iw_ss_cache_t;
|
||||
|
||||
typedef struct wl_iw_ss_cache_ctrl {
|
||||
@ -114,6 +141,7 @@ typedef struct wl_iw_ss_cache_ctrl {
|
||||
uint m_cons_br_scan_cnt;
|
||||
struct timer_list *m_timer;
|
||||
} wl_iw_ss_cache_ctrl_t;
|
||||
|
||||
typedef enum broadcast_first_scan {
|
||||
BROADCAST_SCAN_FIRST_IDLE = 0,
|
||||
BROADCAST_SCAN_FIRST_STARTED,
|
||||
@ -132,12 +160,14 @@ struct ap_profile {
|
||||
uint32 channel;
|
||||
uint32 preamble;
|
||||
uint32 max_scb;
|
||||
uint32 closednet;
|
||||
char country_code[WLC_CNTRY_BUF_SZ];
|
||||
};
|
||||
|
||||
|
||||
#define MACLIST_MODE_DISABLED 0
|
||||
#define MACLIST_MODE_ENABLED 1
|
||||
#define MACLIST_MODE_ALLOW 2
|
||||
#define MACLIST_MODE_DENY 1
|
||||
#define MACLIST_MODE_ALLOW 2
|
||||
struct mflist {
|
||||
uint count;
|
||||
struct ether_addr ea[16];
|
||||
@ -145,8 +175,7 @@ struct mflist {
|
||||
|
||||
struct mac_list_set {
|
||||
uint32 mode;
|
||||
struct mflist white_list;
|
||||
struct mflist black_list;
|
||||
struct mflist mac_list;
|
||||
};
|
||||
#endif
|
||||
|
||||
@ -166,6 +195,13 @@ extern int net_os_wake_lock(struct net_device *dev);
|
||||
extern int net_os_wake_unlock(struct net_device *dev);
|
||||
extern int net_os_wake_lock_timeout(struct net_device *dev);
|
||||
extern int net_os_wake_lock_timeout_enable(struct net_device *dev);
|
||||
extern int net_os_set_suspend_disable(struct net_device *dev, int val);
|
||||
extern int net_os_set_suspend(struct net_device *dev, int val);
|
||||
extern int net_os_set_dtim_skip(struct net_device *dev, int val);
|
||||
extern int net_os_set_packet_filter(struct net_device *dev, int val);
|
||||
extern void dhd_bus_country_set(struct net_device *dev, char *country_code);
|
||||
extern char *dhd_bus_country_get(struct net_device *dev);
|
||||
extern int dhd_get_dtim_skip(dhd_pub_t *dhd);
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
|
||||
#define IWE_STREAM_ADD_EVENT(info, stream, ends, iwe, extra) \
|
||||
@ -183,4 +219,66 @@ extern int net_os_wake_lock_timeout_enable(struct net_device *dev);
|
||||
iwe_stream_add_point(stream, ends, iwe, extra)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
extern int dhd_pno_enable(dhd_pub_t *dhd, int pfn_enabled);
|
||||
extern int dhd_pno_clean(dhd_pub_t *dhd);
|
||||
extern int dhd_pno_set(dhd_pub_t *dhd, wlc_ssid_t* ssids_local, int nssid, ushort scan_fr);
|
||||
extern int dhd_pno_get_status(dhd_pub_t *dhd);
|
||||
extern int dhd_dev_pno_reset(struct net_device *dev);
|
||||
extern int dhd_dev_pno_set(struct net_device *dev, wlc_ssid_t* ssids_local, \
|
||||
int nssid, ushort scan_fr);
|
||||
extern int dhd_dev_pno_enable(struct net_device *dev, int pfn_enabled);
|
||||
extern int dhd_dev_get_pno_status(struct net_device *dev);
|
||||
|
||||
#define PNO_TLV_PREFIX 'S'
|
||||
#define PNO_TLV_VERSION '1'
|
||||
#define PNO_TLV_SUBVERSION '2'
|
||||
#define PNO_TLV_RESERVED '0'
|
||||
#define PNO_TLV_TYPE_SSID_IE 'S'
|
||||
#define PNO_TLV_TYPE_TIME 'T'
|
||||
#define PNO_EVENT_UP "PNO_EVENT"
|
||||
#define PNO_SCAN_MAX_FW 508
|
||||
|
||||
typedef struct cmd_tlv {
|
||||
char prefix;
|
||||
char version;
|
||||
char subver;
|
||||
char reserved;
|
||||
} cmd_tlv_t;
|
||||
|
||||
#if defined(CSCAN)
|
||||
|
||||
typedef struct cscan_tlv {
|
||||
char prefix;
|
||||
char version;
|
||||
char subver;
|
||||
char reserved;
|
||||
} cscan_tlv_t;
|
||||
|
||||
#define CSCAN_COMMAND "CSCAN "
|
||||
#define CSCAN_TLV_PREFIX 'S'
|
||||
#define CSCAN_TLV_VERSION 1
|
||||
#define CSCAN_TLV_SUBVERSION 0
|
||||
#define CSCAN_TLV_TYPE_SSID_IE 'S'
|
||||
#define CSCAN_TLV_TYPE_CHANNEL_IE 'C'
|
||||
#define CSCAN_TLV_TYPE_NPROBE_IE 'N'
|
||||
#define CSCAN_TLV_TYPE_ACTIVE_IE 'A'
|
||||
#define CSCAN_TLV_TYPE_PASSIVE_IE 'P'
|
||||
#define CSCAN_TLV_TYPE_HOME_IE 'H'
|
||||
#define CSCAN_TLV_TYPE_STYPE_IE 'T'
|
||||
|
||||
extern int wl_iw_parse_channel_list_tlv(char** list_str, uint16* channel_list, \
|
||||
int channel_num, int *bytes_left);
|
||||
|
||||
extern int wl_iw_parse_data_tlv(char** list_str, void *dst, int dst_size, \
|
||||
const char token, int input_size, int *bytes_left);
|
||||
|
||||
extern int wl_iw_parse_ssid_list_tlv(char** list_str, wlc_ssid_t* ssid, \
|
||||
int max, int *bytes_left);
|
||||
|
||||
extern int wl_iw_parse_ssid_list(char** list_str, wlc_ssid_t* ssid, int idx, int max);
|
||||
|
||||
extern int wl_iw_parse_channel_list(char** list_str, uint16* channel_list, int channel_num);
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _XT_CONNMARK_H
|
||||
#define _XT_CONNMARK_H
|
||||
#ifndef _XT_CONNMARK_H_target
|
||||
#define _XT_CONNMARK_H_target
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
@ -12,20 +12,15 @@
|
||||
* (at your option) any later version.
|
||||
*/
|
||||
|
||||
enum {
|
||||
XT_CONNMARK_SET = 0,
|
||||
XT_CONNMARK_SAVE,
|
||||
XT_CONNMARK_RESTORE
|
||||
};
|
||||
|
||||
struct xt_connmark_tginfo1 {
|
||||
__u32 ctmark, ctmask, nfmask;
|
||||
__u8 mode;
|
||||
};
|
||||
|
||||
struct xt_connmark_mtinfo1 {
|
||||
__u32 mark, mask;
|
||||
__u8 invert;
|
||||
enum {
|
||||
XT_CONNMARK_SET = 0,
|
||||
XT_CONNMARK_SAVE,
|
||||
XT_CONNMARK_RESTORE
|
||||
};
|
||||
|
||||
#endif /*_XT_CONNMARK_H*/
|
||||
struct xt_connmark_tginfo1 {
|
||||
__u32 ctmark, ctmask, nfmask;
|
||||
__u8 mode;
|
||||
};
|
||||
|
||||
#endif /*_XT_CONNMARK_H_target*/
|
||||
|
26
include/linux/netfilter/xt_DSCP.h
Normal file
26
include/linux/netfilter/xt_DSCP.h
Normal file
@ -0,0 +1,26 @@
|
||||
/* x_tables module for setting the IPv4/IPv6 DSCP field
|
||||
*
|
||||
* (C) 2002 Harald Welte <laforge@gnumonks.org>
|
||||
* based on ipt_FTOS.c (C) 2000 by Matthew G. Marsh <mgm@paktronix.com>
|
||||
* This software is distributed under GNU GPL v2, 1991
|
||||
*
|
||||
* See RFC2474 for a description of the DSCP field within the IP Header.
|
||||
*
|
||||
* xt_DSCP.h,v 1.7 2002/03/14 12:03:13 laforge Exp
|
||||
*/
|
||||
#ifndef _XT_DSCP_TARGET_H
|
||||
#define _XT_DSCP_TARGET_H
|
||||
#include <linux/netfilter/xt_dscp.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
/* target info */
|
||||
struct xt_DSCP_info {
|
||||
__u8 dscp;
|
||||
};
|
||||
|
||||
struct xt_tos_target_info {
|
||||
__u8 tos_value;
|
||||
__u8 tos_mask;
|
||||
};
|
||||
|
||||
#endif /* _XT_DSCP_TARGET_H */
|
10
include/linux/netfilter/xt_MARK.h
Normal file
10
include/linux/netfilter/xt_MARK.h
Normal file
@ -0,0 +1,10 @@
|
||||
#ifndef _XT_MARK_H_target
|
||||
#define _XT_MARK_H_target
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
struct xt_mark_tginfo2 {
|
||||
__u32 mark, mask;
|
||||
};
|
||||
|
||||
#endif /*_XT_MARK_H_target */
|
@ -1,37 +1,15 @@
|
||||
#ifndef _XT_RATEEST_MATCH_H
|
||||
#define _XT_RATEEST_MATCH_H
|
||||
#ifndef _XT_RATEEST_TARGET_H
|
||||
#define _XT_RATEEST_TARGET_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
enum xt_rateest_match_flags {
|
||||
XT_RATEEST_MATCH_INVERT = 1<<0,
|
||||
XT_RATEEST_MATCH_ABS = 1<<1,
|
||||
XT_RATEEST_MATCH_REL = 1<<2,
|
||||
XT_RATEEST_MATCH_DELTA = 1<<3,
|
||||
XT_RATEEST_MATCH_BPS = 1<<4,
|
||||
XT_RATEEST_MATCH_PPS = 1<<5,
|
||||
};
|
||||
|
||||
enum xt_rateest_match_mode {
|
||||
XT_RATEEST_MATCH_NONE,
|
||||
XT_RATEEST_MATCH_EQ,
|
||||
XT_RATEEST_MATCH_LT,
|
||||
XT_RATEEST_MATCH_GT,
|
||||
};
|
||||
|
||||
struct xt_rateest_match_info {
|
||||
char name1[IFNAMSIZ];
|
||||
char name2[IFNAMSIZ];
|
||||
__u16 flags;
|
||||
__u16 mode;
|
||||
__u32 bps1;
|
||||
__u32 pps1;
|
||||
__u32 bps2;
|
||||
__u32 pps2;
|
||||
struct xt_rateest_target_info {
|
||||
char name[IFNAMSIZ];
|
||||
__s8 interval;
|
||||
__u8 ewma_log;
|
||||
|
||||
/* Used internally by the kernel */
|
||||
struct xt_rateest *est1 __attribute__((aligned(8)));
|
||||
struct xt_rateest *est2 __attribute__((aligned(8)));
|
||||
struct xt_rateest *est __attribute__((aligned(8)));
|
||||
};
|
||||
|
||||
#endif /* _XT_RATEEST_MATCH_H */
|
||||
#endif /* _XT_RATEEST_TARGET_H */
|
||||
|
@ -1,11 +1,12 @@
|
||||
#ifndef _XT_TCPMSS_MATCH_H
|
||||
#define _XT_TCPMSS_MATCH_H
|
||||
#ifndef _XT_TCPMSS_H
|
||||
#define _XT_TCPMSS_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
struct xt_tcpmss_match_info {
|
||||
__u16 mss_min, mss_max;
|
||||
__u8 invert;
|
||||
struct xt_tcpmss_info {
|
||||
__u16 mss;
|
||||
};
|
||||
|
||||
#endif /*_XT_TCPMSS_MATCH_H*/
|
||||
#define XT_TCPMSS_CLAMP_PMTU 0xffff
|
||||
|
||||
#endif /* _XT_TCPMSS_H */
|
||||
|
20
include/linux/netfilter/xt_connmark.h
Normal file
20
include/linux/netfilter/xt_connmark.h
Normal file
@ -0,0 +1,20 @@
|
||||
#ifndef _XT_CONNMARK_H
|
||||
#define _XT_CONNMARK_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
/* Copyright (C) 2002,2004 MARA Systems AB <http://www.marasystems.com>
|
||||
* by Henrik Nordstrom <hno@marasystems.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*/
|
||||
|
||||
struct xt_connmark_mtinfo1 {
|
||||
__u32 mark, mask;
|
||||
__u8 invert;
|
||||
};
|
||||
|
||||
#endif /*_XT_CONNMARK_H*/
|
@ -1,30 +1,31 @@
|
||||
/* x_tables module for setting the IPv4/IPv6 DSCP field
|
||||
/* x_tables module for matching the IPv4/IPv6 DSCP field
|
||||
*
|
||||
* (C) 2002 Harald Welte <laforge@gnumonks.org>
|
||||
* based on ipt_FTOS.c (C) 2000 by Matthew G. Marsh <mgm@paktronix.com>
|
||||
* This software is distributed under GNU GPL v2, 1991
|
||||
*
|
||||
* See RFC2474 for a description of the DSCP field within the IP Header.
|
||||
*
|
||||
* xt_DSCP.h,v 1.7 2002/03/14 12:03:13 laforge Exp
|
||||
* xt_dscp.h,v 1.3 2002/08/05 19:00:21 laforge Exp
|
||||
*/
|
||||
#ifndef _XT_DSCP_TARGET_H
|
||||
#define _XT_DSCP_TARGET_H
|
||||
#include <linux/netfilter/xt_dscp.h>
|
||||
#ifndef _XT_DSCP_H
|
||||
#define _XT_DSCP_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
#define XT_DSCP_MASK 0xfc /* 11111100 */
|
||||
#define XT_DSCP_SHIFT 2
|
||||
#define XT_DSCP_MAX 0x3f /* 00111111 */
|
||||
#define XT_DSCP_MASK 0xfc /* 11111100 */
|
||||
#define XT_DSCP_SHIFT 2
|
||||
#define XT_DSCP_MAX 0x3f /* 00111111 */
|
||||
|
||||
/* target info */
|
||||
struct xt_DSCP_info {
|
||||
/* match info */
|
||||
struct xt_dscp_info {
|
||||
__u8 dscp;
|
||||
__u8 invert;
|
||||
};
|
||||
|
||||
struct xt_tos_target_info {
|
||||
__u8 tos_value;
|
||||
struct xt_tos_match_info {
|
||||
__u8 tos_mask;
|
||||
__u8 tos_value;
|
||||
__u8 invert;
|
||||
};
|
||||
|
||||
#endif /* _XT_DSCP_TARGET_H */
|
||||
#endif /* _XT_DSCP_H */
|
||||
|
@ -1,10 +1,11 @@
|
||||
#ifndef _XT_MARK_H_target
|
||||
#define _XT_MARK_H_target
|
||||
#ifndef _XT_MARK_H
|
||||
#define _XT_MARK_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
struct xt_mark_tginfo2 {
|
||||
struct xt_mark_mtinfo1 {
|
||||
__u32 mark, mask;
|
||||
__u8 invert;
|
||||
};
|
||||
|
||||
#endif /*_XT_MARK_H_target */
|
||||
#endif /*_XT_MARK_H*/
|
||||
|
37
include/linux/netfilter/xt_rateest.h
Normal file
37
include/linux/netfilter/xt_rateest.h
Normal file
@ -0,0 +1,37 @@
|
||||
#ifndef _XT_RATEEST_MATCH_H
|
||||
#define _XT_RATEEST_MATCH_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
enum xt_rateest_match_flags {
|
||||
XT_RATEEST_MATCH_INVERT = 1<<0,
|
||||
XT_RATEEST_MATCH_ABS = 1<<1,
|
||||
XT_RATEEST_MATCH_REL = 1<<2,
|
||||
XT_RATEEST_MATCH_DELTA = 1<<3,
|
||||
XT_RATEEST_MATCH_BPS = 1<<4,
|
||||
XT_RATEEST_MATCH_PPS = 1<<5,
|
||||
};
|
||||
|
||||
enum xt_rateest_match_mode {
|
||||
XT_RATEEST_MATCH_NONE,
|
||||
XT_RATEEST_MATCH_EQ,
|
||||
XT_RATEEST_MATCH_LT,
|
||||
XT_RATEEST_MATCH_GT,
|
||||
};
|
||||
|
||||
struct xt_rateest_match_info {
|
||||
char name1[IFNAMSIZ];
|
||||
char name2[IFNAMSIZ];
|
||||
__u16 flags;
|
||||
__u16 mode;
|
||||
__u32 bps1;
|
||||
__u32 pps1;
|
||||
__u32 bps2;
|
||||
__u32 pps2;
|
||||
|
||||
/* Used internally by the kernel */
|
||||
struct xt_rateest *est1 __attribute__((aligned(8)));
|
||||
struct xt_rateest *est2 __attribute__((aligned(8)));
|
||||
};
|
||||
|
||||
#endif /* _XT_RATEEST_MATCH_H */
|
11
include/linux/netfilter/xt_tcpmss.h
Normal file
11
include/linux/netfilter/xt_tcpmss.h
Normal file
@ -0,0 +1,11 @@
|
||||
#ifndef _XT_TCPMSS_MATCH_H
|
||||
#define _XT_TCPMSS_MATCH_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
struct xt_tcpmss_match_info {
|
||||
__u16 mss_min, mss_max;
|
||||
__u8 invert;
|
||||
};
|
||||
|
||||
#endif /*_XT_TCPMSS_MATCH_H*/
|
@ -1,33 +1,31 @@
|
||||
/* iptables module for matching the ECN header in IPv4 and TCP header
|
||||
/* Header file for iptables ipt_ECN target
|
||||
*
|
||||
* (C) 2002 Harald Welte <laforge@gnumonks.org>
|
||||
* (C) 2002 by Harald Welte <laforge@gnumonks.org>
|
||||
*
|
||||
* This software is distributed under GNU GPL v2, 1991
|
||||
*
|
||||
* ipt_ecn.h,v 1.4 2002/08/05 19:39:00 laforge Exp
|
||||
* ipt_ECN.h,v 1.3 2002/05/29 12:17:40 laforge Exp
|
||||
*/
|
||||
#ifndef _IPT_ECN_H
|
||||
#define _IPT_ECN_H
|
||||
#include <linux/netfilter/xt_dscp.h>
|
||||
#ifndef _IPT_ECN_TARGET_H
|
||||
#define _IPT_ECN_TARGET_H
|
||||
#include <linux/netfilter/xt_DSCP.h>
|
||||
|
||||
#define IPT_ECN_IP_MASK (~XT_DSCP_MASK)
|
||||
|
||||
#define IPT_ECN_OP_MATCH_IP 0x01
|
||||
#define IPT_ECN_OP_MATCH_ECE 0x10
|
||||
#define IPT_ECN_OP_MATCH_CWR 0x20
|
||||
#define IPT_ECN_OP_SET_IP 0x01 /* set ECN bits of IPv4 header */
|
||||
#define IPT_ECN_OP_SET_ECE 0x10 /* set ECE bit of TCP header */
|
||||
#define IPT_ECN_OP_SET_CWR 0x20 /* set CWR bit of TCP header */
|
||||
|
||||
#define IPT_ECN_OP_MATCH_MASK 0xce
|
||||
#define IPT_ECN_OP_MASK 0xce
|
||||
|
||||
/* match info */
|
||||
struct ipt_ecn_info {
|
||||
u_int8_t operation;
|
||||
u_int8_t invert;
|
||||
u_int8_t ip_ect;
|
||||
struct ipt_ECN_info {
|
||||
u_int8_t operation; /* bitset of operations */
|
||||
u_int8_t ip_ect; /* ECT codepoint of IPv4 header, pre-shifted */
|
||||
union {
|
||||
struct {
|
||||
u_int8_t ect;
|
||||
u_int8_t ece:1, cwr:1; /* TCP ECT bits */
|
||||
} tcp;
|
||||
} proto;
|
||||
};
|
||||
|
||||
#endif /* _IPT_ECN_H */
|
||||
#endif /* _IPT_ECN_TARGET_H */
|
||||
|
@ -1,18 +1,18 @@
|
||||
/* IP tables module for matching the value of the TTL
|
||||
* (C) 2000 by Harald Welte <laforge@gnumonks.org> */
|
||||
/* TTL modification module for IP tables
|
||||
* (C) 2000 by Harald Welte <laforge@netfilter.org> */
|
||||
|
||||
#ifndef _IPT_TTL_H
|
||||
#define _IPT_TTL_H
|
||||
|
||||
enum {
|
||||
IPT_TTL_EQ = 0, /* equals */
|
||||
IPT_TTL_NE, /* not equals */
|
||||
IPT_TTL_LT, /* less than */
|
||||
IPT_TTL_GT, /* greater than */
|
||||
IPT_TTL_SET = 0,
|
||||
IPT_TTL_INC,
|
||||
IPT_TTL_DEC
|
||||
};
|
||||
|
||||
#define IPT_TTL_MAXMODE IPT_TTL_DEC
|
||||
|
||||
struct ipt_ttl_info {
|
||||
struct ipt_TTL_info {
|
||||
u_int8_t mode;
|
||||
u_int8_t ttl;
|
||||
};
|
||||
|
33
include/linux/netfilter_ipv4/ipt_ecn.h
Normal file
33
include/linux/netfilter_ipv4/ipt_ecn.h
Normal file
@ -0,0 +1,33 @@
|
||||
/* iptables module for matching the ECN header in IPv4 and TCP header
|
||||
*
|
||||
* (C) 2002 Harald Welte <laforge@gnumonks.org>
|
||||
*
|
||||
* This software is distributed under GNU GPL v2, 1991
|
||||
*
|
||||
* ipt_ecn.h,v 1.4 2002/08/05 19:39:00 laforge Exp
|
||||
*/
|
||||
#ifndef _IPT_ECN_H
|
||||
#define _IPT_ECN_H
|
||||
#include <linux/netfilter/xt_dscp.h>
|
||||
|
||||
#define IPT_ECN_IP_MASK (~XT_DSCP_MASK)
|
||||
|
||||
#define IPT_ECN_OP_MATCH_IP 0x01
|
||||
#define IPT_ECN_OP_MATCH_ECE 0x10
|
||||
#define IPT_ECN_OP_MATCH_CWR 0x20
|
||||
|
||||
#define IPT_ECN_OP_MATCH_MASK 0xce
|
||||
|
||||
/* match info */
|
||||
struct ipt_ecn_info {
|
||||
u_int8_t operation;
|
||||
u_int8_t invert;
|
||||
u_int8_t ip_ect;
|
||||
union {
|
||||
struct {
|
||||
u_int8_t ect;
|
||||
} tcp;
|
||||
} proto;
|
||||
};
|
||||
|
||||
#endif /* _IPT_ECN_H */
|
21
include/linux/netfilter_ipv4/ipt_ttl.h
Normal file
21
include/linux/netfilter_ipv4/ipt_ttl.h
Normal file
@ -0,0 +1,21 @@
|
||||
/* IP tables module for matching the value of the TTL
|
||||
* (C) 2000 by Harald Welte <laforge@gnumonks.org> */
|
||||
|
||||
#ifndef _IPT_TTL_H
|
||||
#define _IPT_TTL_H
|
||||
|
||||
enum {
|
||||
IPT_TTL_EQ = 0, /* equals */
|
||||
IPT_TTL_NE, /* not equals */
|
||||
IPT_TTL_LT, /* less than */
|
||||
IPT_TTL_GT, /* greater than */
|
||||
};
|
||||
|
||||
|
||||
struct ipt_ttl_info {
|
||||
u_int8_t mode;
|
||||
u_int8_t ttl;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user