wireless-drivers-next patches for v5.15
First set of patches for v5.15. This got delayed as I have been mostly offline for the last few weeks. The biggest change is removal of prism54 driver, otherwise just smaller changes. Major changes: ath5k, ath9k, ath10k, ath11k: * switch from 'pci_' to 'dma_' API brcmfmac * allow per-board firmware binaries * add support 43752 SDIO device prism54 * remove the obsoleted driver, everyone should be using p54 driver instead -----BEGIN PGP SIGNATURE----- iQFJBAABCgAzFiEEiBjanGPFTz4PRfLobhckVSbrbZsFAmEiEGcVHGt2YWxvQGNv ZGVhdXJvcmEub3JnAAoJEG4XJFUm622b0UoH+wT2LyZ92PZUxL5FwUl1kFIRKefw 8H5urbnlioiqFjKU9YAwD3bvGTrIPMGjOkR50JxPNxxKzcx5CgHz6GQmIe16aSs2 FEMV//G5dcGe7HS94kdOiBhm6EqLrr+hrqWRop+uEnu9DuQNxnS/5ZpxU6zNSK7z S2u2m/zpcaE6/F+Po1jlGyPRzUbTR8xV/3a7LKUgbZslbrGKayn+3aQwFXZ4D8YX OhGrsL5nbFjKP0Ys7X/QS9s31IuzMBO5IUVMyJzcY7p6pPPFspxiGaT+HqUixZ9G eb0hStxXANDAQbhBgz2KpIGH8J/0g8WdUwUj4SuiHOrhPSga6HZ06MhJ5xk= =djwO -----END PGP SIGNATURE----- Merge tag 'wireless-drivers-next-2021-08-22' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next Kalle Valo says: ==================== wireless-drivers-next patches for v5.15 First set of patches for v5.15. This got delayed as I have been mostly offline for the last few weeks. The biggest change is removal of prism54 driver, otherwise just smaller changes. Major changes: ath5k, ath9k, ath10k, ath11k: * switch from 'pci_' to 'dma_' API brcmfmac * allow per-board firmware binaries * add support 43752 SDIO device prism54 * remove the obsoleted driver, everyone should be using p54 driver instead ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
commit
e6a70a02de
|
@ -14953,13 +14953,6 @@ S: Maintained
|
|||
F: include/linux/printk.h
|
||||
F: kernel/printk/
|
||||
|
||||
PRISM54 WIRELESS DRIVER
|
||||
M: Luis Chamberlain <mcgrof@kernel.org>
|
||||
L: linux-wireless@vger.kernel.org
|
||||
S: Obsolete
|
||||
W: https://wireless.wiki.kernel.org/en/users/Drivers/p54
|
||||
F: drivers/net/wireless/intersil/prism54/
|
||||
|
||||
PROC FILESYSTEM
|
||||
L: linux-kernel@vger.kernel.org
|
||||
L: linux-fsdevel@vger.kernel.org
|
||||
|
|
|
@ -3393,19 +3393,12 @@ static int ath10k_pci_claim(struct ath10k *ar)
|
|||
}
|
||||
|
||||
/* Target expects 32 bit DMA. Enforce it. */
|
||||
ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
|
||||
ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
|
||||
if (ret) {
|
||||
ath10k_err(ar, "failed to set dma mask to 32-bit: %d\n", ret);
|
||||
goto err_region;
|
||||
}
|
||||
|
||||
ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
|
||||
if (ret) {
|
||||
ath10k_err(ar, "failed to set consistent dma mask to 32-bit: %d\n",
|
||||
ret);
|
||||
goto err_region;
|
||||
}
|
||||
|
||||
pci_set_master(pdev);
|
||||
|
||||
/* Arrange for access to Target SoC registers. */
|
||||
|
|
|
@ -1406,11 +1406,6 @@ ath11k_update_per_peer_tx_stats(struct ath11k *ar,
|
|||
* Firmware rate's control to be skipped for this?
|
||||
*/
|
||||
|
||||
if (flags == WMI_RATE_PREAMBLE_HE && mcs > 11) {
|
||||
ath11k_warn(ab, "Invalid HE mcs %d peer stats", mcs);
|
||||
return;
|
||||
}
|
||||
|
||||
if (flags == WMI_RATE_PREAMBLE_HE && mcs > ATH11K_HE_MCS_MAX) {
|
||||
ath11k_warn(ab, "Invalid HE mcs %d peer stats", mcs);
|
||||
return;
|
||||
|
|
|
@ -933,20 +933,14 @@ static int ath11k_pci_claim(struct ath11k_pci *ab_pci, struct pci_dev *pdev)
|
|||
goto disable_device;
|
||||
}
|
||||
|
||||
ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(ATH11K_PCI_DMA_MASK));
|
||||
ret = dma_set_mask_and_coherent(&pdev->dev,
|
||||
DMA_BIT_MASK(ATH11K_PCI_DMA_MASK));
|
||||
if (ret) {
|
||||
ath11k_err(ab, "failed to set pci dma mask to %d: %d\n",
|
||||
ATH11K_PCI_DMA_MASK, ret);
|
||||
goto release_region;
|
||||
}
|
||||
|
||||
ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(ATH11K_PCI_DMA_MASK));
|
||||
if (ret) {
|
||||
ath11k_err(ab, "failed to set pci consistent dma mask to %d: %d\n",
|
||||
ATH11K_PCI_DMA_MASK, ret);
|
||||
goto release_region;
|
||||
}
|
||||
|
||||
pci_set_master(pdev);
|
||||
|
||||
ab->mem_len = pci_resource_len(pdev, ATH11K_PCI_BAR_NUM);
|
||||
|
|
|
@ -191,7 +191,7 @@ ath5k_pci_probe(struct pci_dev *pdev,
|
|||
}
|
||||
|
||||
/* XXX 32-bit addressing only */
|
||||
ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
|
||||
ret = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "32-bit DMA not available\n");
|
||||
goto err_dis;
|
||||
|
|
|
@ -896,18 +896,12 @@ static int ath_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|||
if (pcim_enable_device(pdev))
|
||||
return -EIO;
|
||||
|
||||
ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
|
||||
ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
|
||||
if (ret) {
|
||||
pr_err("32-bit DMA not available\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
|
||||
if (ret) {
|
||||
pr_err("32-bit DMA consistent DMA enable failed\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
/*
|
||||
* Cache line size is used to size and align various
|
||||
* structures used to communicate with the hardware.
|
||||
|
|
|
@ -23,7 +23,8 @@ brcmfmac-objs += \
|
|||
feature.o \
|
||||
btcoex.o \
|
||||
vendor.o \
|
||||
pno.o
|
||||
pno.o \
|
||||
xtlv.o
|
||||
brcmfmac-$(CONFIG_BRCMFMAC_PROTO_BCDC) += \
|
||||
bcdc.o \
|
||||
fwsignal.o
|
||||
|
|
|
@ -128,7 +128,8 @@ int brcmf_sdiod_intr_register(struct brcmf_sdio_dev *sdiodev)
|
|||
|
||||
if (sdiodev->bus_if->chip == BRCM_CC_43362_CHIP_ID) {
|
||||
/* assign GPIO to SDIO core */
|
||||
addr = CORE_CC_REG(SI_ENUM_BASE, gpiocontrol);
|
||||
addr = brcmf_chip_enum_base(sdiodev->func1->device);
|
||||
addr = CORE_CC_REG(addr, gpiocontrol);
|
||||
gpiocontrol = brcmf_sdiod_readl(sdiodev, addr, &ret);
|
||||
gpiocontrol |= 0x2;
|
||||
brcmf_sdiod_writel(sdiodev, addr, gpiocontrol, &ret);
|
||||
|
@ -990,6 +991,7 @@ static const struct sdio_device_id brcmf_sdmmc_ids[] = {
|
|||
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_4359),
|
||||
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_CYPRESS_4373),
|
||||
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_CYPRESS_43012),
|
||||
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_CYPRESS_43752),
|
||||
BRCMF_SDIO_DEVICE(SDIO_DEVICE_ID_BROADCOM_CYPRESS_89359),
|
||||
{ /* end: all zeroes */ }
|
||||
};
|
||||
|
|
|
@ -139,6 +139,8 @@ struct sbconfig {
|
|||
u32 sbidhigh; /* identification */
|
||||
};
|
||||
|
||||
#define INVALID_RAMBASE ((u32)(~0))
|
||||
|
||||
/* bankidx and bankinfo reg defines corerev >= 8 */
|
||||
#define SOCRAM_BANKINFO_RETNTRAM_MASK 0x00010000
|
||||
#define SOCRAM_BANKINFO_SZMASK 0x0000007f
|
||||
|
@ -527,7 +529,7 @@ static int brcmf_chip_cores_check(struct brcmf_chip_priv *ci)
|
|||
int idx = 1;
|
||||
|
||||
list_for_each_entry(core, &ci->cores, list) {
|
||||
brcmf_dbg(INFO, " [%-2d] core 0x%x:%-2d base 0x%08x wrap 0x%08x\n",
|
||||
brcmf_dbg(INFO, " [%-2d] core 0x%x:%-3d base 0x%08x wrap 0x%08x\n",
|
||||
idx++, core->pub.id, core->pub.rev, core->pub.base,
|
||||
core->wrapbase);
|
||||
|
||||
|
@ -727,11 +729,13 @@ static u32 brcmf_chip_tcm_rambase(struct brcmf_chip_priv *ci)
|
|||
case BRCM_CC_4364_CHIP_ID:
|
||||
case CY_CC_4373_CHIP_ID:
|
||||
return 0x160000;
|
||||
case CY_CC_43752_CHIP_ID:
|
||||
return 0x170000;
|
||||
default:
|
||||
brcmf_err("unknown chip: %s\n", ci->pub.name);
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
return INVALID_RAMBASE;
|
||||
}
|
||||
|
||||
int brcmf_chip_get_raminfo(struct brcmf_chip *pub)
|
||||
|
@ -746,7 +750,7 @@ int brcmf_chip_get_raminfo(struct brcmf_chip *pub)
|
|||
mem_core = container_of(mem, struct brcmf_core_priv, pub);
|
||||
ci->pub.ramsize = brcmf_chip_tcm_ramsize(mem_core);
|
||||
ci->pub.rambase = brcmf_chip_tcm_rambase(ci);
|
||||
if (!ci->pub.rambase) {
|
||||
if (ci->pub.rambase == INVALID_RAMBASE) {
|
||||
brcmf_err("RAM base not provided with ARM CR4 core\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
@ -757,7 +761,7 @@ int brcmf_chip_get_raminfo(struct brcmf_chip *pub)
|
|||
pub);
|
||||
ci->pub.ramsize = brcmf_chip_sysmem_ramsize(mem_core);
|
||||
ci->pub.rambase = brcmf_chip_tcm_rambase(ci);
|
||||
if (!ci->pub.rambase) {
|
||||
if (ci->pub.rambase == INVALID_RAMBASE) {
|
||||
brcmf_err("RAM base not provided with ARM CA7 core\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
@ -894,7 +898,8 @@ int brcmf_chip_dmp_erom_scan(struct brcmf_chip_priv *ci)
|
|||
u32 base, wrap;
|
||||
int err;
|
||||
|
||||
eromaddr = ci->ops->read32(ci->ctx, CORE_CC_REG(SI_ENUM_BASE, eromptr));
|
||||
eromaddr = ci->ops->read32(ci->ctx,
|
||||
CORE_CC_REG(ci->pub.enum_base, eromptr));
|
||||
|
||||
while (desc_type != DMP_DESC_EOT) {
|
||||
val = brcmf_chip_dmp_get_desc(ci, &eromaddr, &desc_type);
|
||||
|
@ -942,6 +947,11 @@ int brcmf_chip_dmp_erom_scan(struct brcmf_chip_priv *ci)
|
|||
return 0;
|
||||
}
|
||||
|
||||
u32 brcmf_chip_enum_base(u16 devid)
|
||||
{
|
||||
return SI_ENUM_BASE_DEFAULT;
|
||||
}
|
||||
|
||||
static int brcmf_chip_recognition(struct brcmf_chip_priv *ci)
|
||||
{
|
||||
struct brcmf_core *core;
|
||||
|
@ -954,7 +964,8 @@ static int brcmf_chip_recognition(struct brcmf_chip_priv *ci)
|
|||
* For different chiptypes or old sdio hosts w/o chipcommon,
|
||||
* other ways of recognition should be added here.
|
||||
*/
|
||||
regdata = ci->ops->read32(ci->ctx, CORE_CC_REG(SI_ENUM_BASE, chipid));
|
||||
regdata = ci->ops->read32(ci->ctx,
|
||||
CORE_CC_REG(ci->pub.enum_base, chipid));
|
||||
ci->pub.chip = regdata & CID_ID_MASK;
|
||||
ci->pub.chiprev = (regdata & CID_REV_MASK) >> CID_REV_SHIFT;
|
||||
socitype = (regdata & CID_TYPE_MASK) >> CID_TYPE_SHIFT;
|
||||
|
@ -974,7 +985,7 @@ static int brcmf_chip_recognition(struct brcmf_chip_priv *ci)
|
|||
ci->resetcore = brcmf_chip_sb_resetcore;
|
||||
|
||||
core = brcmf_chip_add_core(ci, BCMA_CORE_CHIPCOMMON,
|
||||
SI_ENUM_BASE, 0);
|
||||
SI_ENUM_BASE_DEFAULT, 0);
|
||||
brcmf_chip_sb_corerev(ci, core);
|
||||
core = brcmf_chip_add_core(ci, BCMA_CORE_SDIO_DEV,
|
||||
BCM4329_CORE_BUS_BASE, 0);
|
||||
|
@ -1088,7 +1099,7 @@ static int brcmf_chip_setup(struct brcmf_chip_priv *chip)
|
|||
return ret;
|
||||
}
|
||||
|
||||
struct brcmf_chip *brcmf_chip_attach(void *ctx,
|
||||
struct brcmf_chip *brcmf_chip_attach(void *ctx, u16 devid,
|
||||
const struct brcmf_buscore_ops *ops)
|
||||
{
|
||||
struct brcmf_chip_priv *chip;
|
||||
|
@ -1113,6 +1124,7 @@ struct brcmf_chip *brcmf_chip_attach(void *ctx,
|
|||
chip->num_cores = 0;
|
||||
chip->ops = ops;
|
||||
chip->ctx = ctx;
|
||||
chip->pub.enum_base = brcmf_chip_enum_base(devid);
|
||||
|
||||
err = ops->prepare(ctx);
|
||||
if (err < 0)
|
||||
|
@ -1411,6 +1423,7 @@ bool brcmf_chip_sr_capable(struct brcmf_chip *pub)
|
|||
reg = chip->ops->read32(chip->ctx, addr);
|
||||
return (reg & CC_SR_CTL0_ENABLE_MASK) != 0;
|
||||
case BRCM_CC_4359_CHIP_ID:
|
||||
case CY_CC_43752_CHIP_ID:
|
||||
case CY_CC_43012_CHIP_ID:
|
||||
addr = CORE_CC_REG(pmu->base, retention_ctl);
|
||||
reg = chip->ops->read32(chip->ctx, addr);
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
*
|
||||
* @chip: chip identifier.
|
||||
* @chiprev: chip revision.
|
||||
* @enum_base: base address of core enumeration space.
|
||||
* @cc_caps: chipcommon core capabilities.
|
||||
* @cc_caps_ext: chipcommon core extended capabilities.
|
||||
* @pmucaps: PMU capabilities.
|
||||
|
@ -27,6 +28,7 @@
|
|||
struct brcmf_chip {
|
||||
u32 chip;
|
||||
u32 chiprev;
|
||||
u32 enum_base;
|
||||
u32 cc_caps;
|
||||
u32 cc_caps_ext;
|
||||
u32 pmucaps;
|
||||
|
@ -70,7 +72,7 @@ struct brcmf_buscore_ops {
|
|||
};
|
||||
|
||||
int brcmf_chip_get_raminfo(struct brcmf_chip *pub);
|
||||
struct brcmf_chip *brcmf_chip_attach(void *ctx,
|
||||
struct brcmf_chip *brcmf_chip_attach(void *ctx, u16 devid,
|
||||
const struct brcmf_buscore_ops *ops);
|
||||
void brcmf_chip_detach(struct brcmf_chip *chip);
|
||||
struct brcmf_core *brcmf_chip_get_core(struct brcmf_chip *chip, u16 coreid);
|
||||
|
@ -85,5 +87,6 @@ void brcmf_chip_set_passive(struct brcmf_chip *ci);
|
|||
bool brcmf_chip_set_active(struct brcmf_chip *ci, u32 rstvec);
|
||||
bool brcmf_chip_sr_capable(struct brcmf_chip *pub);
|
||||
char *brcmf_chip_name(u32 chipid, u32 chiprev, char *buf, uint len);
|
||||
u32 brcmf_chip_enum_base(u16 devid);
|
||||
|
||||
#endif /* BRCMF_AXIDMP_H */
|
||||
|
|
|
@ -431,8 +431,6 @@ struct brcmf_fw {
|
|||
void (*done)(struct device *dev, int err, struct brcmf_fw_request *req);
|
||||
};
|
||||
|
||||
static void brcmf_fw_request_done(const struct firmware *fw, void *ctx);
|
||||
|
||||
#ifdef CONFIG_EFI
|
||||
/* In some cases the EFI-var stored nvram contains "ccode=ALL" or "ccode=XV"
|
||||
* to specify "worldwide" compatible settings, but these 2 ccode-s do not work
|
||||
|
@ -594,28 +592,47 @@ static int brcmf_fw_complete_request(const struct firmware *fw,
|
|||
return (cur->flags & BRCMF_FW_REQF_OPTIONAL) ? 0 : ret;
|
||||
}
|
||||
|
||||
static char *brcm_alt_fw_path(const char *path, const char *board_type)
|
||||
{
|
||||
char alt_path[BRCMF_FW_NAME_LEN];
|
||||
char suffix[5];
|
||||
|
||||
strscpy(alt_path, path, BRCMF_FW_NAME_LEN);
|
||||
/* At least one character + suffix */
|
||||
if (strlen(alt_path) < 5)
|
||||
return NULL;
|
||||
|
||||
/* strip .txt or .bin at the end */
|
||||
strscpy(suffix, alt_path + strlen(alt_path) - 4, 5);
|
||||
alt_path[strlen(alt_path) - 4] = 0;
|
||||
strlcat(alt_path, ".", BRCMF_FW_NAME_LEN);
|
||||
strlcat(alt_path, board_type, BRCMF_FW_NAME_LEN);
|
||||
strlcat(alt_path, suffix, BRCMF_FW_NAME_LEN);
|
||||
|
||||
return kstrdup(alt_path, GFP_KERNEL);
|
||||
}
|
||||
|
||||
static int brcmf_fw_request_firmware(const struct firmware **fw,
|
||||
struct brcmf_fw *fwctx)
|
||||
{
|
||||
struct brcmf_fw_item *cur = &fwctx->req->items[fwctx->curpos];
|
||||
int ret;
|
||||
|
||||
/* nvram files are board-specific, first try a board-specific path */
|
||||
/* Files can be board-specific, first try a board-specific path */
|
||||
if (cur->type == BRCMF_FW_TYPE_NVRAM && fwctx->req->board_type) {
|
||||
char alt_path[BRCMF_FW_NAME_LEN];
|
||||
char *alt_path;
|
||||
|
||||
strlcpy(alt_path, cur->path, BRCMF_FW_NAME_LEN);
|
||||
/* strip .txt at the end */
|
||||
alt_path[strlen(alt_path) - 4] = 0;
|
||||
strlcat(alt_path, ".", BRCMF_FW_NAME_LEN);
|
||||
strlcat(alt_path, fwctx->req->board_type, BRCMF_FW_NAME_LEN);
|
||||
strlcat(alt_path, ".txt", BRCMF_FW_NAME_LEN);
|
||||
alt_path = brcm_alt_fw_path(cur->path, fwctx->req->board_type);
|
||||
if (!alt_path)
|
||||
goto fallback;
|
||||
|
||||
ret = request_firmware(fw, alt_path, fwctx->dev);
|
||||
kfree(alt_path);
|
||||
if (ret == 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
fallback:
|
||||
return request_firmware(fw, cur->path, fwctx->dev);
|
||||
}
|
||||
|
||||
|
@ -639,6 +656,22 @@ static void brcmf_fw_request_done(const struct firmware *fw, void *ctx)
|
|||
kfree(fwctx);
|
||||
}
|
||||
|
||||
static void brcmf_fw_request_done_alt_path(const struct firmware *fw, void *ctx)
|
||||
{
|
||||
struct brcmf_fw *fwctx = ctx;
|
||||
struct brcmf_fw_item *first = &fwctx->req->items[0];
|
||||
int ret = 0;
|
||||
|
||||
/* Fall back to canonical path if board firmware not found */
|
||||
if (!fw)
|
||||
ret = request_firmware_nowait(THIS_MODULE, true, first->path,
|
||||
fwctx->dev, GFP_KERNEL, fwctx,
|
||||
brcmf_fw_request_done);
|
||||
|
||||
if (fw || ret < 0)
|
||||
brcmf_fw_request_done(fw, ctx);
|
||||
}
|
||||
|
||||
static bool brcmf_fw_request_is_valid(struct brcmf_fw_request *req)
|
||||
{
|
||||
struct brcmf_fw_item *item;
|
||||
|
@ -660,6 +693,7 @@ int brcmf_fw_get_firmwares(struct device *dev, struct brcmf_fw_request *req,
|
|||
{
|
||||
struct brcmf_fw_item *first = &req->items[0];
|
||||
struct brcmf_fw *fwctx;
|
||||
char *alt_path;
|
||||
int ret;
|
||||
|
||||
brcmf_dbg(TRACE, "enter: dev=%s\n", dev_name(dev));
|
||||
|
@ -677,9 +711,18 @@ int brcmf_fw_get_firmwares(struct device *dev, struct brcmf_fw_request *req,
|
|||
fwctx->req = req;
|
||||
fwctx->done = fw_cb;
|
||||
|
||||
ret = request_firmware_nowait(THIS_MODULE, true, first->path,
|
||||
fwctx->dev, GFP_KERNEL, fwctx,
|
||||
brcmf_fw_request_done);
|
||||
/* First try alternative board-specific path if any */
|
||||
alt_path = brcm_alt_fw_path(first->path, fwctx->req->board_type);
|
||||
if (alt_path) {
|
||||
ret = request_firmware_nowait(THIS_MODULE, true, alt_path,
|
||||
fwctx->dev, GFP_KERNEL, fwctx,
|
||||
brcmf_fw_request_done_alt_path);
|
||||
kfree(alt_path);
|
||||
} else {
|
||||
ret = request_firmware_nowait(THIS_MODULE, true, first->path,
|
||||
fwctx->dev, GFP_KERNEL, fwctx,
|
||||
brcmf_fw_request_done);
|
||||
}
|
||||
if (ret < 0)
|
||||
brcmf_fw_request_done(NULL, fwctx);
|
||||
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
#include "bus.h"
|
||||
#include "debug.h"
|
||||
#include "tracepoint.h"
|
||||
#include "xtlv.h"
|
||||
#include "fwil.h"
|
||||
#include "proto.h"
|
||||
|
||||
|
@ -150,7 +151,8 @@ brcmf_fil_cmd_data_get(struct brcmf_if *ifp, u32 cmd, void *data, u32 len)
|
|||
mutex_lock(&ifp->drvr->proto_block);
|
||||
err = brcmf_fil_cmd_data(ifp, cmd, data, len, false);
|
||||
|
||||
brcmf_dbg(FIL, "ifidx=%d, cmd=%d, len=%d\n", ifp->ifidx, cmd, len);
|
||||
brcmf_dbg(FIL, "ifidx=%d, cmd=%d, len=%d, err=%d\n", ifp->ifidx, cmd,
|
||||
len, err);
|
||||
brcmf_dbg_hex_dump(BRCMF_FIL_ON(), data,
|
||||
min_t(uint, len, MAX_HEX_DUMP_LEN), "data\n");
|
||||
|
||||
|
@ -260,7 +262,8 @@ brcmf_fil_iovar_data_get(struct brcmf_if *ifp, char *name, void *data,
|
|||
bphy_err(drvr, "Creating iovar failed\n");
|
||||
}
|
||||
|
||||
brcmf_dbg(FIL, "ifidx=%d, name=%s, len=%d\n", ifp->ifidx, name, len);
|
||||
brcmf_dbg(FIL, "ifidx=%d, name=%s, len=%d, err=%d\n", ifp->ifidx, name,
|
||||
len, err);
|
||||
brcmf_dbg_hex_dump(BRCMF_FIL_ON(), data,
|
||||
min_t(uint, len, MAX_HEX_DUMP_LEN), "data\n");
|
||||
|
||||
|
@ -383,14 +386,13 @@ brcmf_fil_bsscfg_data_get(struct brcmf_if *ifp, char *name,
|
|||
err = -EPERM;
|
||||
bphy_err(drvr, "Creating bsscfg failed\n");
|
||||
}
|
||||
brcmf_dbg(FIL, "ifidx=%d, bsscfgidx=%d, name=%s, len=%d\n", ifp->ifidx,
|
||||
ifp->bsscfgidx, name, len);
|
||||
brcmf_dbg(FIL, "ifidx=%d, bsscfgidx=%d, name=%s, len=%d, err=%d\n",
|
||||
ifp->ifidx, ifp->bsscfgidx, name, len, err);
|
||||
brcmf_dbg_hex_dump(BRCMF_FIL_ON(), data,
|
||||
min_t(uint, len, MAX_HEX_DUMP_LEN), "data\n");
|
||||
|
||||
mutex_unlock(&drvr->proto_block);
|
||||
return err;
|
||||
|
||||
}
|
||||
|
||||
s32
|
||||
|
@ -414,3 +416,117 @@ brcmf_fil_bsscfg_int_get(struct brcmf_if *ifp, char *name, u32 *data)
|
|||
*data = le32_to_cpu(data_le);
|
||||
return err;
|
||||
}
|
||||
|
||||
static u32 brcmf_create_xtlv(char *name, u16 id, char *data, u32 len,
|
||||
char *buf, u32 buflen)
|
||||
{
|
||||
u32 iolen;
|
||||
u32 nmlen;
|
||||
|
||||
nmlen = strlen(name) + 1;
|
||||
iolen = nmlen + brcmf_xtlv_data_size(len, BRCMF_XTLV_OPTION_ALIGN32);
|
||||
|
||||
if (iolen > buflen) {
|
||||
brcmf_err("buffer is too short\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
memcpy(buf, name, nmlen);
|
||||
brcmf_xtlv_pack_header((void *)(buf + nmlen), id, len, data,
|
||||
BRCMF_XTLV_OPTION_ALIGN32);
|
||||
|
||||
return iolen;
|
||||
}
|
||||
|
||||
s32 brcmf_fil_xtlv_data_set(struct brcmf_if *ifp, char *name, u16 id,
|
||||
void *data, u32 len)
|
||||
{
|
||||
struct brcmf_pub *drvr = ifp->drvr;
|
||||
s32 err;
|
||||
u32 buflen;
|
||||
|
||||
mutex_lock(&drvr->proto_block);
|
||||
|
||||
brcmf_dbg(FIL, "ifidx=%d, name=%s, id=%u, len=%u\n", ifp->ifidx, name,
|
||||
id, len);
|
||||
brcmf_dbg_hex_dump(BRCMF_FIL_ON(), data,
|
||||
min_t(uint, len, MAX_HEX_DUMP_LEN), "data\n");
|
||||
|
||||
buflen = brcmf_create_xtlv(name, id, data, len,
|
||||
drvr->proto_buf, sizeof(drvr->proto_buf));
|
||||
if (buflen) {
|
||||
err = brcmf_fil_cmd_data(ifp, BRCMF_C_SET_VAR, drvr->proto_buf,
|
||||
buflen, true);
|
||||
} else {
|
||||
err = -EPERM;
|
||||
bphy_err(drvr, "Creating xtlv failed\n");
|
||||
}
|
||||
|
||||
mutex_unlock(&drvr->proto_block);
|
||||
return err;
|
||||
}
|
||||
|
||||
s32 brcmf_fil_xtlv_data_get(struct brcmf_if *ifp, char *name, u16 id,
|
||||
void *data, u32 len)
|
||||
{
|
||||
struct brcmf_pub *drvr = ifp->drvr;
|
||||
s32 err;
|
||||
u32 buflen;
|
||||
|
||||
mutex_lock(&drvr->proto_block);
|
||||
|
||||
buflen = brcmf_create_xtlv(name, id, data, len,
|
||||
drvr->proto_buf, sizeof(drvr->proto_buf));
|
||||
if (buflen) {
|
||||
err = brcmf_fil_cmd_data(ifp, BRCMF_C_GET_VAR, drvr->proto_buf,
|
||||
buflen, false);
|
||||
if (err == 0)
|
||||
memcpy(data, drvr->proto_buf, len);
|
||||
} else {
|
||||
err = -EPERM;
|
||||
bphy_err(drvr, "Creating bsscfg failed\n");
|
||||
}
|
||||
brcmf_dbg(FIL, "ifidx=%d, name=%s, id=%u, len=%u, err=%d\n",
|
||||
ifp->ifidx, name, id, len, err);
|
||||
brcmf_dbg_hex_dump(BRCMF_FIL_ON(), data,
|
||||
min_t(uint, len, MAX_HEX_DUMP_LEN), "data\n");
|
||||
|
||||
mutex_unlock(&drvr->proto_block);
|
||||
return err;
|
||||
}
|
||||
|
||||
s32 brcmf_fil_xtlv_int_set(struct brcmf_if *ifp, char *name, u16 id, u32 data)
|
||||
{
|
||||
__le32 data_le = cpu_to_le32(data);
|
||||
|
||||
return brcmf_fil_xtlv_data_set(ifp, name, id, &data_le,
|
||||
sizeof(data_le));
|
||||
}
|
||||
|
||||
s32 brcmf_fil_xtlv_int_get(struct brcmf_if *ifp, char *name, u16 id, u32 *data)
|
||||
{
|
||||
__le32 data_le = cpu_to_le32(*data);
|
||||
s32 err;
|
||||
|
||||
err = brcmf_fil_xtlv_data_get(ifp, name, id, &data_le, sizeof(data_le));
|
||||
if (err == 0)
|
||||
*data = le32_to_cpu(data_le);
|
||||
return err;
|
||||
}
|
||||
|
||||
s32 brcmf_fil_xtlv_int8_get(struct brcmf_if *ifp, char *name, u16 id, u8 *data)
|
||||
{
|
||||
return brcmf_fil_xtlv_data_get(ifp, name, id, data, sizeof(*data));
|
||||
}
|
||||
|
||||
s32 brcmf_fil_xtlv_int16_get(struct brcmf_if *ifp, char *name, u16 id, u16 *data)
|
||||
{
|
||||
__le16 data_le = cpu_to_le16(*data);
|
||||
s32 err;
|
||||
|
||||
err = brcmf_fil_xtlv_data_get(ifp, name, id, &data_le, sizeof(data_le));
|
||||
if (err == 0)
|
||||
*data = le16_to_cpu(data_le);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
|
|
@ -97,5 +97,13 @@ s32 brcmf_fil_bsscfg_data_get(struct brcmf_if *ifp, char *name, void *data,
|
|||
u32 len);
|
||||
s32 brcmf_fil_bsscfg_int_set(struct brcmf_if *ifp, char *name, u32 data);
|
||||
s32 brcmf_fil_bsscfg_int_get(struct brcmf_if *ifp, char *name, u32 *data);
|
||||
s32 brcmf_fil_xtlv_data_set(struct brcmf_if *ifp, char *name, u16 id,
|
||||
void *data, u32 len);
|
||||
s32 brcmf_fil_xtlv_data_get(struct brcmf_if *ifp, char *name, u16 id,
|
||||
void *data, u32 len);
|
||||
s32 brcmf_fil_xtlv_int_set(struct brcmf_if *ifp, char *name, u16 id, u32 data);
|
||||
s32 brcmf_fil_xtlv_int_get(struct brcmf_if *ifp, char *name, u16 id, u32 *data);
|
||||
s32 brcmf_fil_xtlv_int8_get(struct brcmf_if *ifp, char *name, u16 id, u8 *data);
|
||||
s32 brcmf_fil_xtlv_int16_get(struct brcmf_if *ifp, char *name, u16 id, u16 *data);
|
||||
|
||||
#endif /* _fwil_h_ */
|
||||
|
|
|
@ -1886,7 +1886,8 @@ brcmf_pcie_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|||
|
||||
devinfo->pdev = pdev;
|
||||
pcie_bus_dev = NULL;
|
||||
devinfo->ci = brcmf_chip_attach(devinfo, &brcmf_pcie_buscore_ops);
|
||||
devinfo->ci = brcmf_chip_attach(devinfo, pdev->device,
|
||||
&brcmf_pcie_buscore_ops);
|
||||
if (IS_ERR(devinfo->ci)) {
|
||||
ret = PTR_ERR(devinfo->ci);
|
||||
devinfo->ci = NULL;
|
||||
|
|
|
@ -617,6 +617,7 @@ BRCMF_FW_DEF(4339, "brcmfmac4339-sdio");
|
|||
BRCMF_FW_DEF(43430A0, "brcmfmac43430a0-sdio");
|
||||
/* Note the names are not postfixed with a1 for backward compatibility */
|
||||
BRCMF_FW_CLM_DEF(43430A1, "brcmfmac43430-sdio");
|
||||
BRCMF_FW_DEF(43430B0, "brcmfmac43430b0-sdio");
|
||||
BRCMF_FW_CLM_DEF(43455, "brcmfmac43455-sdio");
|
||||
BRCMF_FW_DEF(43456, "brcmfmac43456-sdio");
|
||||
BRCMF_FW_CLM_DEF(4354, "brcmfmac4354-sdio");
|
||||
|
@ -624,11 +625,15 @@ BRCMF_FW_CLM_DEF(4356, "brcmfmac4356-sdio");
|
|||
BRCMF_FW_DEF(4359, "brcmfmac4359-sdio");
|
||||
BRCMF_FW_CLM_DEF(4373, "brcmfmac4373-sdio");
|
||||
BRCMF_FW_CLM_DEF(43012, "brcmfmac43012-sdio");
|
||||
BRCMF_FW_CLM_DEF(43752, "brcmfmac43752-sdio");
|
||||
|
||||
/* firmware config files */
|
||||
MODULE_FIRMWARE(BRCMF_FW_DEFAULT_PATH "brcmfmac*-sdio.*.txt");
|
||||
MODULE_FIRMWARE(BRCMF_FW_DEFAULT_PATH "brcmfmac*-pcie.*.txt");
|
||||
|
||||
/* per-board firmware binaries */
|
||||
MODULE_FIRMWARE(BRCMF_FW_DEFAULT_PATH "brcmfmac*-sdio.*.bin");
|
||||
|
||||
static const struct brcmf_firmware_mapping brcmf_sdio_fwnames[] = {
|
||||
BRCMF_FW_ENTRY(BRCM_CC_43143_CHIP_ID, 0xFFFFFFFF, 43143),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_43241_CHIP_ID, 0x0000001F, 43241B0),
|
||||
|
@ -643,14 +648,16 @@ static const struct brcmf_firmware_mapping brcmf_sdio_fwnames[] = {
|
|||
BRCMF_FW_ENTRY(BRCM_CC_43362_CHIP_ID, 0xFFFFFFFE, 43362),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_4339_CHIP_ID, 0xFFFFFFFF, 4339),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_43430_CHIP_ID, 0x00000001, 43430A0),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_43430_CHIP_ID, 0xFFFFFFFE, 43430A1),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_43430_CHIP_ID, 0x00000002, 43430A1),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_43430_CHIP_ID, 0xFFFFFFFC, 43430B0),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_4345_CHIP_ID, 0x00000200, 43456),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_4345_CHIP_ID, 0xFFFFFDC0, 43455),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_4354_CHIP_ID, 0xFFFFFFFF, 4354),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_4356_CHIP_ID, 0xFFFFFFFF, 4356),
|
||||
BRCMF_FW_ENTRY(BRCM_CC_4359_CHIP_ID, 0xFFFFFFFF, 4359),
|
||||
BRCMF_FW_ENTRY(CY_CC_4373_CHIP_ID, 0xFFFFFFFF, 4373),
|
||||
BRCMF_FW_ENTRY(CY_CC_43012_CHIP_ID, 0xFFFFFFFF, 43012)
|
||||
BRCMF_FW_ENTRY(CY_CC_43012_CHIP_ID, 0xFFFFFFFF, 43012),
|
||||
BRCMF_FW_ENTRY(CY_CC_43752_CHIP_ID, 0xFFFFFFFF, 43752)
|
||||
};
|
||||
|
||||
#define TXCTL_CREDITS 2
|
||||
|
@ -3416,7 +3423,8 @@ err:
|
|||
|
||||
static bool brcmf_sdio_aos_no_decode(struct brcmf_sdio *bus)
|
||||
{
|
||||
if (bus->ci->chip == CY_CC_43012_CHIP_ID)
|
||||
if (bus->ci->chip == CY_CC_43012_CHIP_ID ||
|
||||
bus->ci->chip == CY_CC_43752_CHIP_ID)
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
|
@ -3907,7 +3915,7 @@ static u32 brcmf_sdio_buscore_read32(void *ctx, u32 addr)
|
|||
* It can be identified as 4339 by looking at the chip revision. It
|
||||
* is corrected here so the chip.c module has the right info.
|
||||
*/
|
||||
if (addr == CORE_CC_REG(SI_ENUM_BASE, chipid) &&
|
||||
if (addr == CORE_CC_REG(SI_ENUM_BASE_DEFAULT, chipid) &&
|
||||
(sdiodev->func1->device == SDIO_DEVICE_ID_BROADCOM_4339 ||
|
||||
sdiodev->func1->device == SDIO_DEVICE_ID_BROADCOM_4335_4339)) {
|
||||
rev = (val & CID_REV_MASK) >> CID_REV_SHIFT;
|
||||
|
@ -3943,12 +3951,15 @@ brcmf_sdio_probe_attach(struct brcmf_sdio *bus)
|
|||
int reg_addr;
|
||||
u32 reg_val;
|
||||
u32 drivestrength;
|
||||
u32 enum_base;
|
||||
|
||||
sdiodev = bus->sdiodev;
|
||||
sdio_claim_host(sdiodev->func1);
|
||||
|
||||
pr_debug("F1 signature read @0x18000000=0x%4x\n",
|
||||
brcmf_sdiod_readl(sdiodev, SI_ENUM_BASE, NULL));
|
||||
enum_base = brcmf_chip_enum_base(sdiodev->func1->device);
|
||||
|
||||
pr_debug("F1 signature read @0x%08x=0x%4x\n", enum_base,
|
||||
brcmf_sdiod_readl(sdiodev, enum_base, NULL));
|
||||
|
||||
/*
|
||||
* Force PLL off until brcmf_chip_attach()
|
||||
|
@ -3967,7 +3978,8 @@ brcmf_sdio_probe_attach(struct brcmf_sdio *bus)
|
|||
goto fail;
|
||||
}
|
||||
|
||||
bus->ci = brcmf_chip_attach(sdiodev, &brcmf_sdio_buscore_ops);
|
||||
bus->ci = brcmf_chip_attach(sdiodev, sdiodev->func1->device,
|
||||
&brcmf_sdio_buscore_ops);
|
||||
if (IS_ERR(bus->ci)) {
|
||||
brcmf_err("brcmf_chip_attach failed!\n");
|
||||
bus->ci = NULL;
|
||||
|
@ -4257,6 +4269,7 @@ static void brcmf_sdio_firmware_callback(struct device *dev, int err,
|
|||
|
||||
switch (sdiod->func1->device) {
|
||||
case SDIO_DEVICE_ID_BROADCOM_CYPRESS_4373:
|
||||
case SDIO_DEVICE_ID_BROADCOM_CYPRESS_43752:
|
||||
brcmf_dbg(INFO, "set F2 watermark to 0x%x*4 bytes\n",
|
||||
CY_4373_F2_WATERMARK);
|
||||
brcmf_sdiod_writeb(sdiod, SBSDIO_WATERMARK,
|
||||
|
@ -4442,7 +4455,7 @@ struct brcmf_sdio *brcmf_sdio_probe(struct brcmf_sdio_dev *sdiodev)
|
|||
bus->tx_seq = SDPCM_SEQ_WRAP - 1;
|
||||
|
||||
/* single-threaded workqueue */
|
||||
wq = alloc_ordered_workqueue("brcmf_wq/%s", WQ_MEM_RECLAIM,
|
||||
wq = alloc_ordered_workqueue("brcmf_wq/%s", WQ_MEM_RECLAIM | WQ_HIGHPRI,
|
||||
dev_name(&sdiodev->func1->dev));
|
||||
if (!wq) {
|
||||
brcmf_err("insufficient memory to create txworkqueue\n");
|
||||
|
@ -4616,4 +4629,3 @@ int brcmf_sdio_sleep(struct brcmf_sdio *bus, bool sleep)
|
|||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,82 @@
|
|||
// SPDX-License-Identifier: ISC
|
||||
/*
|
||||
* Copyright (c) 2019 Broadcom
|
||||
*/
|
||||
|
||||
#include <asm/unaligned.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/bug.h>
|
||||
|
||||
#include "xtlv.h"
|
||||
|
||||
static int brcmf_xtlv_header_size(u16 opts)
|
||||
{
|
||||
int len = (int)offsetof(struct brcmf_xtlv, data);
|
||||
|
||||
if (opts & BRCMF_XTLV_OPTION_IDU8)
|
||||
--len;
|
||||
if (opts & BRCMF_XTLV_OPTION_LENU8)
|
||||
--len;
|
||||
|
||||
return len;
|
||||
}
|
||||
|
||||
int brcmf_xtlv_data_size(int dlen, u16 opts)
|
||||
{
|
||||
int hsz;
|
||||
|
||||
hsz = brcmf_xtlv_header_size(opts);
|
||||
if (opts & BRCMF_XTLV_OPTION_ALIGN32)
|
||||
return roundup(dlen + hsz, 4);
|
||||
|
||||
return dlen + hsz;
|
||||
}
|
||||
|
||||
void brcmf_xtlv_pack_header(struct brcmf_xtlv *xtlv, u16 id, u16 len,
|
||||
const u8 *data, u16 opts)
|
||||
{
|
||||
u8 *data_buf;
|
||||
u16 mask = BRCMF_XTLV_OPTION_IDU8 | BRCMF_XTLV_OPTION_LENU8;
|
||||
|
||||
if (!(opts & mask)) {
|
||||
u8 *idp = (u8 *)xtlv;
|
||||
u8 *lenp = idp + sizeof(xtlv->id);
|
||||
|
||||
put_unaligned_le16(id, idp);
|
||||
put_unaligned_le16(len, lenp);
|
||||
data_buf = lenp + sizeof(u16);
|
||||
} else if ((opts & mask) == mask) { /* u8 id and u8 len */
|
||||
u8 *idp = (u8 *)xtlv;
|
||||
u8 *lenp = idp + 1;
|
||||
|
||||
*idp = (u8)id;
|
||||
*lenp = (u8)len;
|
||||
data_buf = lenp + sizeof(u8);
|
||||
} else if (opts & BRCMF_XTLV_OPTION_IDU8) { /* u8 id, u16 len */
|
||||
u8 *idp = (u8 *)xtlv;
|
||||
u8 *lenp = idp + 1;
|
||||
|
||||
*idp = (u8)id;
|
||||
put_unaligned_le16(len, lenp);
|
||||
data_buf = lenp + sizeof(u16);
|
||||
} else if (opts & BRCMF_XTLV_OPTION_LENU8) { /* u16 id, u8 len */
|
||||
u8 *idp = (u8 *)xtlv;
|
||||
u8 *lenp = idp + sizeof(u16);
|
||||
|
||||
put_unaligned_le16(id, idp);
|
||||
*lenp = (u8)len;
|
||||
data_buf = lenp + sizeof(u8);
|
||||
} else {
|
||||
WARN(true, "Unexpected xtlv option");
|
||||
return;
|
||||
}
|
||||
|
||||
if (opts & BRCMF_XTLV_OPTION_LENU8) {
|
||||
WARN_ON(len > 0x00ff);
|
||||
len &= 0xff;
|
||||
}
|
||||
|
||||
if (data)
|
||||
memcpy(data_buf, data, len);
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
// SPDX-License-Identifier: ISC
|
||||
/*
|
||||
* Copyright (c) 2019 Broadcom
|
||||
*/
|
||||
#ifndef __BRCMF_XTLV_H
|
||||
#define __BRCMF_XTLV_H
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <linux/bits.h>
|
||||
|
||||
/* bcm type(id), length, value with w/16 bit id/len. The structure below
|
||||
* is nominal, and is used to support variable length id and type. See
|
||||
* xtlv options below.
|
||||
*/
|
||||
struct brcmf_xtlv {
|
||||
u16 id;
|
||||
u16 len;
|
||||
u8 data[0];
|
||||
};
|
||||
|
||||
enum brcmf_xtlv_option {
|
||||
BRCMF_XTLV_OPTION_ALIGN32 = BIT(0),
|
||||
BRCMF_XTLV_OPTION_IDU8 = BIT(1),
|
||||
BRCMF_XTLV_OPTION_LENU8 = BIT(2),
|
||||
};
|
||||
|
||||
int brcmf_xtlv_data_size(int dlen, u16 opts);
|
||||
void brcmf_xtlv_pack_header(struct brcmf_xtlv *xtlv, u16 id, u16 len,
|
||||
const u8 *data, u16 opts);
|
||||
|
||||
#endif /* __BRCMF_XTLV_H */
|
|
@ -704,7 +704,7 @@ static void brcms_c_write_inits(struct brcms_hardware *wlc_hw,
|
|||
static void brcms_c_write_mhf(struct brcms_hardware *wlc_hw, u16 *mhfs)
|
||||
{
|
||||
u8 idx;
|
||||
u16 addr[] = {
|
||||
static const u16 addr[] = {
|
||||
M_HOST_FLAGS1, M_HOST_FLAGS2, M_HOST_FLAGS3, M_HOST_FLAGS4,
|
||||
M_HOST_FLAGS5
|
||||
};
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
#define BRCM_CC_4371_CHIP_ID 0x4371
|
||||
#define CY_CC_4373_CHIP_ID 0x4373
|
||||
#define CY_CC_43012_CHIP_ID 43012
|
||||
#define CY_CC_43752_CHIP_ID 43752
|
||||
|
||||
/* USB Device IDs */
|
||||
#define BRCM_USB_43143_DEVICE_ID 0xbd1e
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#ifndef _BRCM_SOC_H
|
||||
#define _BRCM_SOC_H
|
||||
|
||||
#define SI_ENUM_BASE 0x18000000 /* Enumeration space base */
|
||||
#define SI_ENUM_BASE_DEFAULT 0x18000000
|
||||
|
||||
/* Common core control flags */
|
||||
#define SICF_BIST_EN 0x8000
|
||||
|
|
|
@ -927,7 +927,8 @@ static u8 qos_oui[QOS_OUI_LEN] = { 0x00, 0x50, 0xF2 };
|
|||
static int libipw_verify_qos_info(struct libipw_qos_information_element
|
||||
*info_element, int sub_type)
|
||||
{
|
||||
|
||||
if (info_element->elementID != QOS_ELEMENT_ID)
|
||||
return -1;
|
||||
if (info_element->qui_subtype != sub_type)
|
||||
return -1;
|
||||
if (memcmp(info_element->qui, qos_oui, QOS_OUI_LEN))
|
||||
|
@ -943,57 +944,34 @@ static int libipw_verify_qos_info(struct libipw_qos_information_element
|
|||
/*
|
||||
* Parse a QoS parameter element
|
||||
*/
|
||||
static int libipw_read_qos_param_element(struct libipw_qos_parameter_info
|
||||
*element_param, struct libipw_info_element
|
||||
*info_element)
|
||||
static int libipw_read_qos_param_element(
|
||||
struct libipw_qos_parameter_info *element_param,
|
||||
struct libipw_info_element *info_element)
|
||||
{
|
||||
int ret = 0;
|
||||
u16 size = sizeof(struct libipw_qos_parameter_info) - 2;
|
||||
size_t size = sizeof(*element_param);
|
||||
|
||||
if ((info_element == NULL) || (element_param == NULL))
|
||||
if (!element_param || !info_element || info_element->len != size - 2)
|
||||
return -1;
|
||||
|
||||
if (info_element->id == QOS_ELEMENT_ID && info_element->len == size) {
|
||||
memcpy(element_param->info_element.qui, info_element->data,
|
||||
info_element->len);
|
||||
element_param->info_element.elementID = info_element->id;
|
||||
element_param->info_element.length = info_element->len;
|
||||
} else
|
||||
ret = -1;
|
||||
if (ret == 0)
|
||||
ret = libipw_verify_qos_info(&element_param->info_element,
|
||||
QOS_OUI_PARAM_SUB_TYPE);
|
||||
return ret;
|
||||
memcpy(element_param, info_element, size);
|
||||
return libipw_verify_qos_info(&element_param->info_element,
|
||||
QOS_OUI_PARAM_SUB_TYPE);
|
||||
}
|
||||
|
||||
/*
|
||||
* Parse a QoS information element
|
||||
*/
|
||||
static int libipw_read_qos_info_element(struct
|
||||
libipw_qos_information_element
|
||||
*element_info, struct libipw_info_element
|
||||
*info_element)
|
||||
static int libipw_read_qos_info_element(
|
||||
struct libipw_qos_information_element *element_info,
|
||||
struct libipw_info_element *info_element)
|
||||
{
|
||||
int ret = 0;
|
||||
u16 size = sizeof(struct libipw_qos_information_element) - 2;
|
||||
size_t size = sizeof(struct libipw_qos_information_element) - 2;
|
||||
|
||||
if (element_info == NULL)
|
||||
return -1;
|
||||
if (info_element == NULL)
|
||||
if (!element_info || !info_element || info_element->len != size - 2)
|
||||
return -1;
|
||||
|
||||
if ((info_element->id == QOS_ELEMENT_ID) && (info_element->len == size)) {
|
||||
memcpy(element_info->qui, info_element->data,
|
||||
info_element->len);
|
||||
element_info->elementID = info_element->id;
|
||||
element_info->length = info_element->len;
|
||||
} else
|
||||
ret = -1;
|
||||
|
||||
if (ret == 0)
|
||||
ret = libipw_verify_qos_info(element_info,
|
||||
QOS_OUI_INFO_SUB_TYPE);
|
||||
return ret;
|
||||
memcpy(element_info, info_element, size);
|
||||
return libipw_verify_qos_info(element_info, QOS_OUI_INFO_SUB_TYPE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -179,8 +179,8 @@ static struct libipw_txb *libipw_alloc_txb(int nr_frags, int txb_size,
|
|||
{
|
||||
struct libipw_txb *txb;
|
||||
int i;
|
||||
txb = kmalloc(sizeof(struct libipw_txb) + (sizeof(u8 *) * nr_frags),
|
||||
gfp_mask);
|
||||
|
||||
txb = kmalloc(struct_size(txb, fragments, nr_frags), gfp_mask);
|
||||
if (!txb)
|
||||
return NULL;
|
||||
|
||||
|
|
|
@ -16,24 +16,4 @@ source "drivers/net/wireless/intersil/hostap/Kconfig"
|
|||
source "drivers/net/wireless/intersil/orinoco/Kconfig"
|
||||
source "drivers/net/wireless/intersil/p54/Kconfig"
|
||||
|
||||
config PRISM54
|
||||
tristate 'Intersil Prism GT/Duette/Indigo PCI/Cardbus (DEPRECATED)'
|
||||
depends on PCI
|
||||
select WIRELESS_EXT
|
||||
select WEXT_SPY
|
||||
select WEXT_PRIV
|
||||
select FW_LOADER
|
||||
help
|
||||
This enables support for FullMAC PCI/Cardbus prism54 devices. This
|
||||
driver is now deprecated in favor for the SoftMAC driver, p54pci.
|
||||
p54pci supports FullMAC PCI/Cardbus devices as well.
|
||||
|
||||
For more information refer to the p54 wiki:
|
||||
|
||||
http://wireless.wiki.kernel.org/en/users/Drivers/p54
|
||||
|
||||
Note: You need a motherboard with DMA support to use any of these cards
|
||||
|
||||
When built as module you get the module prism54
|
||||
|
||||
endif # WLAN_VENDOR_INTERSIL
|
||||
|
|
|
@ -2,4 +2,3 @@
|
|||
obj-$(CONFIG_HOSTAP) += hostap/
|
||||
obj-$(CONFIG_HERMES) += orinoco/
|
||||
obj-$(CONFIG_P54_COMMON) += p54/
|
||||
obj-$(CONFIG_PRISM54) += prism54/
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
# $Id: Makefile.k26,v 1.7 2004/01/30 16:24:00 ajfa Exp $
|
||||
|
||||
prism54-objs := islpci_eth.o islpci_mgt.o \
|
||||
isl_38xx.o isl_ioctl.o islpci_dev.o \
|
||||
islpci_hotplug.o oid_mgt.o
|
||||
|
||||
obj-$(CONFIG_PRISM54) += prism54.o
|
||||
|
|
@ -1,245 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* Copyright (C) 2003-2004 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>_
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/ktime.h>
|
||||
|
||||
#include <linux/uaccess.h>
|
||||
#include <asm/io.h>
|
||||
|
||||
#include "prismcompat.h"
|
||||
#include "isl_38xx.h"
|
||||
#include "islpci_dev.h"
|
||||
#include "islpci_mgt.h"
|
||||
|
||||
/******************************************************************************
|
||||
Device Interface & Control functions
|
||||
******************************************************************************/
|
||||
|
||||
/**
|
||||
* isl38xx_disable_interrupts - disable all interrupts
|
||||
* @device: pci memory base address
|
||||
*
|
||||
* Instructs the device to disable all interrupt reporting by asserting
|
||||
* the IRQ line. New events may still show up in the interrupt identification
|
||||
* register located at offset %ISL38XX_INT_IDENT_REG.
|
||||
*/
|
||||
void
|
||||
isl38xx_disable_interrupts(void __iomem *device)
|
||||
{
|
||||
isl38xx_w32_flush(device, 0x00000000, ISL38XX_INT_EN_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
}
|
||||
|
||||
void
|
||||
isl38xx_handle_sleep_request(isl38xx_control_block *control_block,
|
||||
int *powerstate, void __iomem *device_base)
|
||||
{
|
||||
/* device requests to go into sleep mode
|
||||
* check whether the transmit queues for data and management are empty */
|
||||
if (isl38xx_in_queue(control_block, ISL38XX_CB_TX_DATA_LQ))
|
||||
/* data tx queue not empty */
|
||||
return;
|
||||
|
||||
if (isl38xx_in_queue(control_block, ISL38XX_CB_TX_MGMTQ))
|
||||
/* management tx queue not empty */
|
||||
return;
|
||||
|
||||
/* check also whether received frames are pending */
|
||||
if (isl38xx_in_queue(control_block, ISL38XX_CB_RX_DATA_LQ))
|
||||
/* data rx queue not empty */
|
||||
return;
|
||||
|
||||
if (isl38xx_in_queue(control_block, ISL38XX_CB_RX_MGMTQ))
|
||||
/* management rx queue not empty */
|
||||
return;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "Device going to sleep mode\n");
|
||||
#endif
|
||||
|
||||
/* all queues are empty, allow the device to go into sleep mode */
|
||||
*powerstate = ISL38XX_PSM_POWERSAVE_STATE;
|
||||
|
||||
/* assert the Sleep interrupt in the Device Interrupt Register */
|
||||
isl38xx_w32_flush(device_base, ISL38XX_DEV_INT_SLEEP,
|
||||
ISL38XX_DEV_INT_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
}
|
||||
|
||||
void
|
||||
isl38xx_handle_wakeup(isl38xx_control_block *control_block,
|
||||
int *powerstate, void __iomem *device_base)
|
||||
{
|
||||
/* device is in active state, update the powerstate flag */
|
||||
*powerstate = ISL38XX_PSM_ACTIVE_STATE;
|
||||
|
||||
/* now check whether there are frames pending for the card */
|
||||
if (!isl38xx_in_queue(control_block, ISL38XX_CB_TX_DATA_LQ)
|
||||
&& !isl38xx_in_queue(control_block, ISL38XX_CB_TX_MGMTQ))
|
||||
return;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_ANYTHING, "Wake up handler trigger the device\n");
|
||||
#endif
|
||||
|
||||
/* either data or management transmit queue has a frame pending
|
||||
* trigger the device by setting the Update bit in the Device Int reg */
|
||||
isl38xx_w32_flush(device_base, ISL38XX_DEV_INT_UPDATE,
|
||||
ISL38XX_DEV_INT_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
}
|
||||
|
||||
void
|
||||
isl38xx_trigger_device(int asleep, void __iomem *device_base)
|
||||
{
|
||||
u32 reg;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
u32 counter = 0;
|
||||
struct timespec64 current_ts64;
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "isl38xx trigger device\n");
|
||||
#endif
|
||||
|
||||
/* check whether the device is in power save mode */
|
||||
if (asleep) {
|
||||
/* device is in powersave, trigger the device for wakeup */
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
ktime_get_real_ts64(¤t_ts64);
|
||||
DEBUG(SHOW_TRACING, "%lld.%09ld Device wakeup triggered\n",
|
||||
(s64)current_ts64.tv_sec, current_ts64.tv_nsec);
|
||||
|
||||
DEBUG(SHOW_TRACING, "%lld.%09ld Device register read %08x\n",
|
||||
(s64)current_ts64.tv_sec, current_ts64.tv_nsec,
|
||||
readl(device_base + ISL38XX_CTRL_STAT_REG));
|
||||
#endif
|
||||
|
||||
reg = readl(device_base + ISL38XX_INT_IDENT_REG);
|
||||
if (reg == 0xabadface) {
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
ktime_get_real_ts64(¤t_ts64);
|
||||
DEBUG(SHOW_TRACING,
|
||||
"%lld.%09ld Device register abadface\n",
|
||||
(s64)current_ts64.tv_sec, current_ts64.tv_nsec);
|
||||
#endif
|
||||
/* read the Device Status Register until Sleepmode bit is set */
|
||||
while (reg = readl(device_base + ISL38XX_CTRL_STAT_REG),
|
||||
(reg & ISL38XX_CTRL_STAT_SLEEPMODE) == 0) {
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
counter++;
|
||||
#endif
|
||||
}
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING,
|
||||
"%lld.%09ld Device register read %08x\n",
|
||||
(s64)current_ts64.tv_sec, current_ts64.tv_nsec,
|
||||
readl(device_base + ISL38XX_CTRL_STAT_REG));
|
||||
ktime_get_real_ts64(¤t_ts64);
|
||||
DEBUG(SHOW_TRACING,
|
||||
"%lld.%09ld Device asleep counter %i\n",
|
||||
(s64)current_ts64.tv_sec, current_ts64.tv_nsec,
|
||||
counter);
|
||||
#endif
|
||||
}
|
||||
/* assert the Wakeup interrupt in the Device Interrupt Register */
|
||||
isl38xx_w32_flush(device_base, ISL38XX_DEV_INT_WAKEUP,
|
||||
ISL38XX_DEV_INT_REG);
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* perform another read on the Device Status Register */
|
||||
reg = readl(device_base + ISL38XX_CTRL_STAT_REG);
|
||||
ktime_get_real_ts64(¤t_ts64);
|
||||
DEBUG(SHOW_TRACING, "%lld.%00ld Device register read %08x\n",
|
||||
(s64)current_ts64.tv_sec, current_ts64.tv_nsec, reg);
|
||||
#endif
|
||||
} else {
|
||||
/* device is (still) awake */
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "Device is in active state\n");
|
||||
#endif
|
||||
/* trigger the device by setting the Update bit in the Device Int reg */
|
||||
|
||||
isl38xx_w32_flush(device_base, ISL38XX_DEV_INT_UPDATE,
|
||||
ISL38XX_DEV_INT_REG);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
isl38xx_interface_reset(void __iomem *device_base, dma_addr_t host_address)
|
||||
{
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "isl38xx_interface_reset\n");
|
||||
#endif
|
||||
|
||||
/* load the address of the control block in the device */
|
||||
isl38xx_w32_flush(device_base, host_address, ISL38XX_CTRL_BLK_BASE_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* set the reset bit in the Device Interrupt Register */
|
||||
isl38xx_w32_flush(device_base, ISL38XX_DEV_INT_RESET, ISL38XX_DEV_INT_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* enable the interrupt for detecting initialization */
|
||||
|
||||
/* Note: Do not enable other interrupts here. We want the
|
||||
* device to have come up first 100% before allowing any other
|
||||
* interrupts. */
|
||||
isl38xx_w32_flush(device_base, ISL38XX_INT_IDENT_INIT, ISL38XX_INT_EN_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY); /* allow complete full reset */
|
||||
}
|
||||
|
||||
void
|
||||
isl38xx_enable_common_interrupts(void __iomem *device_base)
|
||||
{
|
||||
u32 reg;
|
||||
|
||||
reg = ISL38XX_INT_IDENT_UPDATE | ISL38XX_INT_IDENT_SLEEP |
|
||||
ISL38XX_INT_IDENT_WAKEUP;
|
||||
isl38xx_w32_flush(device_base, reg, ISL38XX_INT_EN_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
}
|
||||
|
||||
int
|
||||
isl38xx_in_queue(isl38xx_control_block *cb, int queue)
|
||||
{
|
||||
const s32 delta = (le32_to_cpu(cb->driver_curr_frag[queue]) -
|
||||
le32_to_cpu(cb->device_curr_frag[queue]));
|
||||
|
||||
/* determine the amount of fragments in the queue depending on the type
|
||||
* of the queue, either transmit or receive */
|
||||
|
||||
BUG_ON(delta < 0); /* driver ptr must be ahead of device ptr */
|
||||
|
||||
switch (queue) {
|
||||
/* send queues */
|
||||
case ISL38XX_CB_TX_MGMTQ:
|
||||
BUG_ON(delta > ISL38XX_CB_MGMT_QSIZE);
|
||||
fallthrough;
|
||||
|
||||
case ISL38XX_CB_TX_DATA_LQ:
|
||||
case ISL38XX_CB_TX_DATA_HQ:
|
||||
BUG_ON(delta > ISL38XX_CB_TX_QSIZE);
|
||||
return delta;
|
||||
|
||||
/* receive queues */
|
||||
case ISL38XX_CB_RX_MGMTQ:
|
||||
BUG_ON(delta > ISL38XX_CB_MGMT_QSIZE);
|
||||
return ISL38XX_CB_MGMT_QSIZE - delta;
|
||||
|
||||
case ISL38XX_CB_RX_DATA_LQ:
|
||||
case ISL38XX_CB_RX_DATA_HQ:
|
||||
BUG_ON(delta > ISL38XX_CB_RX_QSIZE);
|
||||
return ISL38XX_CB_RX_QSIZE - delta;
|
||||
}
|
||||
BUG();
|
||||
return 0;
|
||||
}
|
|
@ -1,158 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
*/
|
||||
|
||||
#ifndef _ISL_38XX_H
|
||||
#define _ISL_38XX_H
|
||||
|
||||
#include <asm/io.h>
|
||||
#include <asm/byteorder.h>
|
||||
|
||||
#define ISL38XX_CB_RX_QSIZE 8
|
||||
#define ISL38XX_CB_TX_QSIZE 32
|
||||
|
||||
/* ISL38XX Access Point Specific definitions */
|
||||
#define ISL38XX_MAX_WDS_LINKS 8
|
||||
|
||||
/* ISL38xx Client Specific definitions */
|
||||
#define ISL38XX_PSM_ACTIVE_STATE 0
|
||||
#define ISL38XX_PSM_POWERSAVE_STATE 1
|
||||
|
||||
/* ISL38XX Host Interface Definitions */
|
||||
#define ISL38XX_PCI_MEM_SIZE 0x02000
|
||||
#define ISL38XX_MEMORY_WINDOW_SIZE 0x01000
|
||||
#define ISL38XX_DEV_FIRMWARE_ADDRES 0x20000
|
||||
#define ISL38XX_WRITEIO_DELAY 10 /* in us */
|
||||
#define ISL38XX_RESET_DELAY 50 /* in ms */
|
||||
#define ISL38XX_WAIT_CYCLE 10 /* in 10ms */
|
||||
#define ISL38XX_MAX_WAIT_CYCLES 10
|
||||
|
||||
/* PCI Memory Area */
|
||||
#define ISL38XX_HARDWARE_REG 0x0000
|
||||
#define ISL38XX_CARDBUS_CIS 0x0800
|
||||
#define ISL38XX_DIRECT_MEM_WIN 0x1000
|
||||
|
||||
/* Hardware registers */
|
||||
#define ISL38XX_DEV_INT_REG 0x0000
|
||||
#define ISL38XX_INT_IDENT_REG 0x0010
|
||||
#define ISL38XX_INT_ACK_REG 0x0014
|
||||
#define ISL38XX_INT_EN_REG 0x0018
|
||||
#define ISL38XX_GEN_PURP_COM_REG_1 0x0020
|
||||
#define ISL38XX_GEN_PURP_COM_REG_2 0x0024
|
||||
#define ISL38XX_CTRL_BLK_BASE_REG ISL38XX_GEN_PURP_COM_REG_1
|
||||
#define ISL38XX_DIR_MEM_BASE_REG 0x0030
|
||||
#define ISL38XX_CTRL_STAT_REG 0x0078
|
||||
|
||||
/* High end mobos queue up pci writes, the following
|
||||
* is used to "read" from after a write to force flush */
|
||||
#define ISL38XX_PCI_POSTING_FLUSH ISL38XX_INT_EN_REG
|
||||
|
||||
/**
|
||||
* isl38xx_w32_flush - PCI iomem write helper
|
||||
* @base: (host) memory base address of the device
|
||||
* @val: 32bit value (host order) to write
|
||||
* @offset: byte offset into @base to write value to
|
||||
*
|
||||
* This helper takes care of writing a 32bit datum to the
|
||||
* specified offset into the device's pci memory space, and making sure
|
||||
* the pci memory buffers get flushed by performing one harmless read
|
||||
* from the %ISL38XX_PCI_POSTING_FLUSH offset.
|
||||
*/
|
||||
static inline void
|
||||
isl38xx_w32_flush(void __iomem *base, u32 val, unsigned long offset)
|
||||
{
|
||||
writel(val, base + offset);
|
||||
(void) readl(base + ISL38XX_PCI_POSTING_FLUSH);
|
||||
}
|
||||
|
||||
/* Device Interrupt register bits */
|
||||
#define ISL38XX_DEV_INT_RESET 0x0001
|
||||
#define ISL38XX_DEV_INT_UPDATE 0x0002
|
||||
#define ISL38XX_DEV_INT_WAKEUP 0x0008
|
||||
#define ISL38XX_DEV_INT_SLEEP 0x0010
|
||||
|
||||
/* Interrupt Identification/Acknowledge/Enable register bits */
|
||||
#define ISL38XX_INT_IDENT_UPDATE 0x0002
|
||||
#define ISL38XX_INT_IDENT_INIT 0x0004
|
||||
#define ISL38XX_INT_IDENT_WAKEUP 0x0008
|
||||
#define ISL38XX_INT_IDENT_SLEEP 0x0010
|
||||
#define ISL38XX_INT_SOURCES 0x001E
|
||||
|
||||
/* Control/Status register bits */
|
||||
/* Looks like there are other meaningful bits
|
||||
0x20004400 seen in normal operation,
|
||||
0x200044db at 'timeout waiting for mgmt response'
|
||||
*/
|
||||
#define ISL38XX_CTRL_STAT_SLEEPMODE 0x00000200
|
||||
#define ISL38XX_CTRL_STAT_CLKRUN 0x00800000
|
||||
#define ISL38XX_CTRL_STAT_RESET 0x10000000
|
||||
#define ISL38XX_CTRL_STAT_RAMBOOT 0x20000000
|
||||
#define ISL38XX_CTRL_STAT_STARTHALTED 0x40000000
|
||||
#define ISL38XX_CTRL_STAT_HOST_OVERRIDE 0x80000000
|
||||
|
||||
/* Control Block definitions */
|
||||
#define ISL38XX_CB_RX_DATA_LQ 0
|
||||
#define ISL38XX_CB_TX_DATA_LQ 1
|
||||
#define ISL38XX_CB_RX_DATA_HQ 2
|
||||
#define ISL38XX_CB_TX_DATA_HQ 3
|
||||
#define ISL38XX_CB_RX_MGMTQ 4
|
||||
#define ISL38XX_CB_TX_MGMTQ 5
|
||||
#define ISL38XX_CB_QCOUNT 6
|
||||
#define ISL38XX_CB_MGMT_QSIZE 4
|
||||
#define ISL38XX_MIN_QTHRESHOLD 4 /* fragments */
|
||||
|
||||
/* Memory Manager definitions */
|
||||
#define MGMT_FRAME_SIZE 1500 /* >= size struct obj_bsslist */
|
||||
#define MGMT_TX_FRAME_COUNT 24 /* max 4 + spare 4 + 8 init */
|
||||
#define MGMT_RX_FRAME_COUNT 24 /* 4*4 + spare 8 */
|
||||
#define MGMT_FRAME_COUNT (MGMT_TX_FRAME_COUNT + MGMT_RX_FRAME_COUNT)
|
||||
#define CONTROL_BLOCK_SIZE 1024 /* should be enough */
|
||||
#define PSM_FRAME_SIZE 1536
|
||||
#define PSM_MINIMAL_STATION_COUNT 64
|
||||
#define PSM_FRAME_COUNT PSM_MINIMAL_STATION_COUNT
|
||||
#define PSM_BUFFER_SIZE PSM_FRAME_SIZE * PSM_FRAME_COUNT
|
||||
#define MAX_TRAP_RX_QUEUE 4
|
||||
#define HOST_MEM_BLOCK CONTROL_BLOCK_SIZE + PSM_BUFFER_SIZE
|
||||
|
||||
/* Fragment package definitions */
|
||||
#define FRAGMENT_FLAG_MF 0x0001
|
||||
#define MAX_FRAGMENT_SIZE 1536
|
||||
|
||||
/* In monitor mode frames have a header. I don't know exactly how big those
|
||||
* frame can be but I've never seen any frame bigger than 1584... :
|
||||
*/
|
||||
#define MAX_FRAGMENT_SIZE_RX 1600
|
||||
|
||||
typedef struct {
|
||||
__le32 address; /* physical address on host */
|
||||
__le16 size; /* packet size */
|
||||
__le16 flags; /* set of bit-wise flags */
|
||||
} isl38xx_fragment;
|
||||
|
||||
struct isl38xx_cb {
|
||||
__le32 driver_curr_frag[ISL38XX_CB_QCOUNT];
|
||||
__le32 device_curr_frag[ISL38XX_CB_QCOUNT];
|
||||
isl38xx_fragment rx_data_low[ISL38XX_CB_RX_QSIZE];
|
||||
isl38xx_fragment tx_data_low[ISL38XX_CB_TX_QSIZE];
|
||||
isl38xx_fragment rx_data_high[ISL38XX_CB_RX_QSIZE];
|
||||
isl38xx_fragment tx_data_high[ISL38XX_CB_TX_QSIZE];
|
||||
isl38xx_fragment rx_data_mgmt[ISL38XX_CB_MGMT_QSIZE];
|
||||
isl38xx_fragment tx_data_mgmt[ISL38XX_CB_MGMT_QSIZE];
|
||||
};
|
||||
|
||||
typedef struct isl38xx_cb isl38xx_control_block;
|
||||
|
||||
/* determine number of entries currently in queue */
|
||||
int isl38xx_in_queue(isl38xx_control_block *cb, int queue);
|
||||
|
||||
void isl38xx_disable_interrupts(void __iomem *);
|
||||
void isl38xx_enable_common_interrupts(void __iomem *);
|
||||
|
||||
void isl38xx_handle_sleep_request(isl38xx_control_block *, int *,
|
||||
void __iomem *);
|
||||
void isl38xx_handle_wakeup(isl38xx_control_block *, int *, void __iomem *);
|
||||
void isl38xx_trigger_device(int, void __iomem *);
|
||||
void isl38xx_interface_reset(void __iomem *, dma_addr_t);
|
||||
|
||||
#endif /* _ISL_38XX_H */
|
File diff suppressed because it is too large
Load Diff
|
@ -1,35 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* (C) 2003 Aurelien Alleaume <slts@free.fr>
|
||||
* (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
|
||||
*/
|
||||
|
||||
#ifndef _ISL_IOCTL_H
|
||||
#define _ISL_IOCTL_H
|
||||
|
||||
#include "islpci_mgt.h"
|
||||
#include "islpci_dev.h"
|
||||
|
||||
#include <net/iw_handler.h> /* New driver API */
|
||||
|
||||
#define SUPPORTED_WIRELESS_EXT 19
|
||||
|
||||
void prism54_mib_init(islpci_private *);
|
||||
|
||||
struct iw_statistics *prism54_get_wireless_stats(struct net_device *);
|
||||
void prism54_update_stats(struct work_struct *);
|
||||
|
||||
void prism54_acl_init(struct islpci_acl *);
|
||||
void prism54_acl_clean(struct islpci_acl *);
|
||||
|
||||
void prism54_process_trap(struct work_struct *);
|
||||
|
||||
void prism54_wpa_bss_ie_init(islpci_private *priv);
|
||||
void prism54_wpa_bss_ie_clean(islpci_private *priv);
|
||||
|
||||
int prism54_set_mac_address(struct net_device *, void *);
|
||||
|
||||
extern const struct iw_handler_def prism54_handler_def;
|
||||
|
||||
#endif /* _ISL_IOCTL_H */
|
|
@ -1,492 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2003 Herbert Valerio Riedel <hvr@gnu.org>
|
||||
* Copyright (C) 2004 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
|
||||
* Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
|
||||
*/
|
||||
|
||||
#if !defined(_ISL_OID_H)
|
||||
#define _ISL_OID_H
|
||||
|
||||
/*
|
||||
* MIB related constant and structure definitions for communicating
|
||||
* with the device firmware
|
||||
*/
|
||||
|
||||
struct obj_ssid {
|
||||
u8 length;
|
||||
char octets[33];
|
||||
} __packed;
|
||||
|
||||
struct obj_key {
|
||||
u8 type; /* dot11_priv_t */
|
||||
u8 length;
|
||||
char key[32];
|
||||
} __packed;
|
||||
|
||||
struct obj_mlme {
|
||||
u8 address[6];
|
||||
u16 id;
|
||||
u16 state;
|
||||
u16 code;
|
||||
} __packed;
|
||||
|
||||
struct obj_mlmeex {
|
||||
u8 address[6];
|
||||
u16 id;
|
||||
u16 state;
|
||||
u16 code;
|
||||
u16 size;
|
||||
u8 data[];
|
||||
} __packed;
|
||||
|
||||
struct obj_buffer {
|
||||
u32 size;
|
||||
u32 addr; /* 32bit bus address */
|
||||
} __packed;
|
||||
|
||||
struct obj_bss {
|
||||
u8 address[6];
|
||||
int:16; /* padding */
|
||||
|
||||
char state;
|
||||
char reserved;
|
||||
short age;
|
||||
|
||||
char quality;
|
||||
char rssi;
|
||||
|
||||
struct obj_ssid ssid;
|
||||
short channel;
|
||||
char beacon_period;
|
||||
char dtim_period;
|
||||
short capinfo;
|
||||
short rates;
|
||||
short basic_rates;
|
||||
int:16; /* padding */
|
||||
} __packed;
|
||||
|
||||
struct obj_bsslist {
|
||||
u32 nr;
|
||||
struct obj_bss bsslist[];
|
||||
} __packed;
|
||||
|
||||
struct obj_frequencies {
|
||||
u16 nr;
|
||||
u16 mhz[];
|
||||
} __packed;
|
||||
|
||||
struct obj_attachment {
|
||||
char type;
|
||||
char reserved;
|
||||
short id;
|
||||
short size;
|
||||
char data[];
|
||||
} __packed;
|
||||
|
||||
/*
|
||||
* in case everything's ok, the inlined function below will be
|
||||
* optimized away by the compiler...
|
||||
*/
|
||||
static inline void
|
||||
__bug_on_wrong_struct_sizes(void)
|
||||
{
|
||||
BUILD_BUG_ON(sizeof (struct obj_ssid) != 34);
|
||||
BUILD_BUG_ON(sizeof (struct obj_key) != 34);
|
||||
BUILD_BUG_ON(sizeof (struct obj_mlme) != 12);
|
||||
BUILD_BUG_ON(sizeof (struct obj_mlmeex) != 14);
|
||||
BUILD_BUG_ON(sizeof (struct obj_buffer) != 8);
|
||||
BUILD_BUG_ON(sizeof (struct obj_bss) != 60);
|
||||
BUILD_BUG_ON(sizeof (struct obj_bsslist) != 4);
|
||||
BUILD_BUG_ON(sizeof (struct obj_frequencies) != 2);
|
||||
}
|
||||
|
||||
enum dot11_state_t {
|
||||
DOT11_STATE_NONE = 0,
|
||||
DOT11_STATE_AUTHING = 1,
|
||||
DOT11_STATE_AUTH = 2,
|
||||
DOT11_STATE_ASSOCING = 3,
|
||||
|
||||
DOT11_STATE_ASSOC = 5,
|
||||
DOT11_STATE_IBSS = 6,
|
||||
DOT11_STATE_WDS = 7
|
||||
};
|
||||
|
||||
enum dot11_bsstype_t {
|
||||
DOT11_BSSTYPE_NONE = 0,
|
||||
DOT11_BSSTYPE_INFRA = 1,
|
||||
DOT11_BSSTYPE_IBSS = 2,
|
||||
DOT11_BSSTYPE_ANY = 3
|
||||
};
|
||||
|
||||
enum dot11_auth_t {
|
||||
DOT11_AUTH_NONE = 0,
|
||||
DOT11_AUTH_OS = 1,
|
||||
DOT11_AUTH_SK = 2,
|
||||
DOT11_AUTH_BOTH = 3
|
||||
};
|
||||
|
||||
enum dot11_mlme_t {
|
||||
DOT11_MLME_AUTO = 0,
|
||||
DOT11_MLME_INTERMEDIATE = 1,
|
||||
DOT11_MLME_EXTENDED = 2
|
||||
};
|
||||
|
||||
enum dot11_priv_t {
|
||||
DOT11_PRIV_WEP = 0,
|
||||
DOT11_PRIV_TKIP = 1
|
||||
};
|
||||
|
||||
/* Prism "Nitro" / Frameburst / "Packet Frame Grouping"
|
||||
* Value is in microseconds. Represents the # microseconds
|
||||
* the firmware will take to group frames before sending out then out
|
||||
* together with a CSMA contention. Without this all frames are
|
||||
* sent with a CSMA contention.
|
||||
* Bibliography:
|
||||
* https://www.hpl.hp.com/personal/Jean_Tourrilhes/Papers/Packet.Frame.Grouping.html
|
||||
*/
|
||||
enum dot11_maxframeburst_t {
|
||||
/* Values for DOT11_OID_MAXFRAMEBURST */
|
||||
DOT11_MAXFRAMEBURST_OFF = 0, /* Card firmware default */
|
||||
DOT11_MAXFRAMEBURST_MIXED_SAFE = 650, /* 802.11 a,b,g safe */
|
||||
DOT11_MAXFRAMEBURST_IDEAL = 1300, /* Theoretical ideal level */
|
||||
DOT11_MAXFRAMEBURST_MAX = 5000, /* Use this as max,
|
||||
* Note: firmware allows for greater values. This is a
|
||||
* recommended max. I'll update this as I find
|
||||
* out what the real MAX is. Also note that you don't necessarily
|
||||
* get better results with a greater value here.
|
||||
*/
|
||||
};
|
||||
|
||||
/* Support for 802.11 long and short frame preambles.
|
||||
* Long preamble uses 128-bit sync field, 8-bit CRC
|
||||
* Short preamble uses 56-bit sync field, 16-bit CRC
|
||||
*
|
||||
* 802.11a -- not sure, both optionally ?
|
||||
* 802.11b supports long and optionally short
|
||||
* 802.11g supports both */
|
||||
enum dot11_preamblesettings_t {
|
||||
DOT11_PREAMBLESETTING_LONG = 0,
|
||||
/* Allows *only* long 802.11 preambles */
|
||||
DOT11_PREAMBLESETTING_SHORT = 1,
|
||||
/* Allows *only* short 802.11 preambles */
|
||||
DOT11_PREAMBLESETTING_DYNAMIC = 2
|
||||
/* AutomatiGically set */
|
||||
};
|
||||
|
||||
/* Support for 802.11 slot timing (time between packets).
|
||||
*
|
||||
* Long uses 802.11a slot timing (9 usec ?)
|
||||
* Short uses 802.11b slot timing (20 use ?) */
|
||||
enum dot11_slotsettings_t {
|
||||
DOT11_SLOTSETTINGS_LONG = 0,
|
||||
/* Allows *only* long 802.11b slot timing */
|
||||
DOT11_SLOTSETTINGS_SHORT = 1,
|
||||
/* Allows *only* long 802.11a slot timing */
|
||||
DOT11_SLOTSETTINGS_DYNAMIC = 2
|
||||
/* AutomatiGically set */
|
||||
};
|
||||
|
||||
/* All you need to know, ERP is "Extended Rate PHY".
|
||||
* An Extended Rate PHY (ERP) STA or AP shall support three different
|
||||
* preamble and header formats:
|
||||
* Long preamble (refer to above)
|
||||
* Short preamble (refer to above)
|
||||
* OFDM preamble ( ? )
|
||||
*
|
||||
* I'm assuming here Protection tells the AP
|
||||
* to be careful, a STA which cannot handle the long pre-amble
|
||||
* has joined.
|
||||
*/
|
||||
enum do11_nonerpstatus_t {
|
||||
DOT11_ERPSTAT_NONEPRESENT = 0,
|
||||
DOT11_ERPSTAT_USEPROTECTION = 1
|
||||
};
|
||||
|
||||
/* (ERP is "Extended Rate PHY") Way to read NONERP is NON-ERP-*
|
||||
* The key here is DOT11 NON ERP NEVER protects against
|
||||
* NON ERP STA's. You *don't* want this unless
|
||||
* you know what you are doing. It means you will only
|
||||
* get Extended Rate capabilities */
|
||||
enum dot11_nonerpprotection_t {
|
||||
DOT11_NONERP_NEVER = 0,
|
||||
DOT11_NONERP_ALWAYS = 1,
|
||||
DOT11_NONERP_DYNAMIC = 2
|
||||
};
|
||||
|
||||
/* Preset OID configuration for 802.11 modes
|
||||
* Note: DOT11_OID_CW[MIN|MAX] hold the values of the
|
||||
* DCS MIN|MAX backoff used */
|
||||
enum dot11_profile_t { /* And set/allowed values */
|
||||
/* Allowed values for DOT11_OID_PROFILES */
|
||||
DOT11_PROFILE_B_ONLY = 0,
|
||||
/* DOT11_OID_RATES: 1, 2, 5.5, 11Mbps
|
||||
* DOT11_OID_PREAMBLESETTINGS: DOT11_PREAMBLESETTING_DYNAMIC
|
||||
* DOT11_OID_CWMIN: 31
|
||||
* DOT11_OID_NONEPROTECTION: DOT11_NOERP_DYNAMIC
|
||||
* DOT11_OID_SLOTSETTINGS: DOT11_SLOTSETTINGS_LONG
|
||||
*/
|
||||
DOT11_PROFILE_MIXED_G_WIFI = 1,
|
||||
/* DOT11_OID_RATES: 1, 2, 5.5, 11, 6, 9, 12, 18, 24, 36, 48, 54Mbs
|
||||
* DOT11_OID_PREAMBLESETTINGS: DOT11_PREAMBLESETTING_DYNAMIC
|
||||
* DOT11_OID_CWMIN: 15
|
||||
* DOT11_OID_NONEPROTECTION: DOT11_NOERP_DYNAMIC
|
||||
* DOT11_OID_SLOTSETTINGS: DOT11_SLOTSETTINGS_DYNAMIC
|
||||
*/
|
||||
DOT11_PROFILE_MIXED_LONG = 2, /* "Long range" */
|
||||
/* Same as Profile MIXED_G_WIFI */
|
||||
DOT11_PROFILE_G_ONLY = 3,
|
||||
/* Same as Profile MIXED_G_WIFI */
|
||||
DOT11_PROFILE_TEST = 4,
|
||||
/* Same as Profile MIXED_G_WIFI except:
|
||||
* DOT11_OID_PREAMBLESETTINGS: DOT11_PREAMBLESETTING_SHORT
|
||||
* DOT11_OID_NONEPROTECTION: DOT11_NOERP_NEVER
|
||||
* DOT11_OID_SLOTSETTINGS: DOT11_SLOTSETTINGS_SHORT
|
||||
*/
|
||||
DOT11_PROFILE_B_WIFI = 5,
|
||||
/* Same as Profile B_ONLY */
|
||||
DOT11_PROFILE_A_ONLY = 6,
|
||||
/* Same as Profile MIXED_G_WIFI except:
|
||||
* DOT11_OID_RATES: 6, 9, 12, 18, 24, 36, 48, 54Mbs
|
||||
*/
|
||||
DOT11_PROFILE_MIXED_SHORT = 7
|
||||
/* Same as MIXED_G_WIFI */
|
||||
};
|
||||
|
||||
|
||||
/* The dot11d conformance level configures the 802.11d conformance levels.
|
||||
* The following conformance levels exist:*/
|
||||
enum oid_inl_conformance_t {
|
||||
OID_INL_CONFORMANCE_NONE = 0, /* Perform active scanning */
|
||||
OID_INL_CONFORMANCE_STRICT = 1, /* Strictly adhere to 802.11d */
|
||||
OID_INL_CONFORMANCE_FLEXIBLE = 2, /* Use passed 802.11d info to
|
||||
* determine channel AND/OR just make assumption that active
|
||||
* channels are valid channels */
|
||||
};
|
||||
|
||||
enum oid_inl_mode_t {
|
||||
INL_MODE_NONE = -1,
|
||||
INL_MODE_PROMISCUOUS = 0,
|
||||
INL_MODE_CLIENT = 1,
|
||||
INL_MODE_AP = 2,
|
||||
INL_MODE_SNIFFER = 3
|
||||
};
|
||||
|
||||
enum oid_inl_config_t {
|
||||
INL_CONFIG_NOTHING = 0x00,
|
||||
INL_CONFIG_MANUALRUN = 0x01,
|
||||
INL_CONFIG_FRAMETRAP = 0x02,
|
||||
INL_CONFIG_RXANNEX = 0x04,
|
||||
INL_CONFIG_TXANNEX = 0x08,
|
||||
INL_CONFIG_WDS = 0x10
|
||||
};
|
||||
|
||||
enum oid_inl_phycap_t {
|
||||
INL_PHYCAP_2400MHZ = 1,
|
||||
INL_PHYCAP_5000MHZ = 2,
|
||||
INL_PHYCAP_FAA = 0x80000000, /* Means card supports the FAA switch */
|
||||
};
|
||||
|
||||
|
||||
enum oid_num_t {
|
||||
GEN_OID_MACADDRESS = 0,
|
||||
GEN_OID_LINKSTATE,
|
||||
GEN_OID_WATCHDOG,
|
||||
GEN_OID_MIBOP,
|
||||
GEN_OID_OPTIONS,
|
||||
GEN_OID_LEDCONFIG,
|
||||
|
||||
/* 802.11 */
|
||||
DOT11_OID_BSSTYPE,
|
||||
DOT11_OID_BSSID,
|
||||
DOT11_OID_SSID,
|
||||
DOT11_OID_STATE,
|
||||
DOT11_OID_AID,
|
||||
DOT11_OID_COUNTRYSTRING,
|
||||
DOT11_OID_SSIDOVERRIDE,
|
||||
|
||||
DOT11_OID_MEDIUMLIMIT,
|
||||
DOT11_OID_BEACONPERIOD,
|
||||
DOT11_OID_DTIMPERIOD,
|
||||
DOT11_OID_ATIMWINDOW,
|
||||
DOT11_OID_LISTENINTERVAL,
|
||||
DOT11_OID_CFPPERIOD,
|
||||
DOT11_OID_CFPDURATION,
|
||||
|
||||
DOT11_OID_AUTHENABLE,
|
||||
DOT11_OID_PRIVACYINVOKED,
|
||||
DOT11_OID_EXUNENCRYPTED,
|
||||
DOT11_OID_DEFKEYID,
|
||||
DOT11_OID_DEFKEYX, /* DOT11_OID_DEFKEY1,...DOT11_OID_DEFKEY4 */
|
||||
DOT11_OID_STAKEY,
|
||||
DOT11_OID_REKEYTHRESHOLD,
|
||||
DOT11_OID_STASC,
|
||||
|
||||
DOT11_OID_PRIVTXREJECTED,
|
||||
DOT11_OID_PRIVRXPLAIN,
|
||||
DOT11_OID_PRIVRXFAILED,
|
||||
DOT11_OID_PRIVRXNOKEY,
|
||||
|
||||
DOT11_OID_RTSTHRESH,
|
||||
DOT11_OID_FRAGTHRESH,
|
||||
DOT11_OID_SHORTRETRIES,
|
||||
DOT11_OID_LONGRETRIES,
|
||||
DOT11_OID_MAXTXLIFETIME,
|
||||
DOT11_OID_MAXRXLIFETIME,
|
||||
DOT11_OID_AUTHRESPTIMEOUT,
|
||||
DOT11_OID_ASSOCRESPTIMEOUT,
|
||||
|
||||
DOT11_OID_ALOFT_TABLE,
|
||||
DOT11_OID_ALOFT_CTRL_TABLE,
|
||||
DOT11_OID_ALOFT_RETREAT,
|
||||
DOT11_OID_ALOFT_PROGRESS,
|
||||
DOT11_OID_ALOFT_FIXEDRATE,
|
||||
DOT11_OID_ALOFT_RSSIGRAPH,
|
||||
DOT11_OID_ALOFT_CONFIG,
|
||||
|
||||
DOT11_OID_VDCFX,
|
||||
DOT11_OID_MAXFRAMEBURST,
|
||||
|
||||
DOT11_OID_PSM,
|
||||
DOT11_OID_CAMTIMEOUT,
|
||||
DOT11_OID_RECEIVEDTIMS,
|
||||
DOT11_OID_ROAMPREFERENCE,
|
||||
|
||||
DOT11_OID_BRIDGELOCAL,
|
||||
DOT11_OID_CLIENTS,
|
||||
DOT11_OID_CLIENTSASSOCIATED,
|
||||
DOT11_OID_CLIENTX, /* DOT11_OID_CLIENTX,...DOT11_OID_CLIENT2007 */
|
||||
|
||||
DOT11_OID_CLIENTFIND,
|
||||
DOT11_OID_WDSLINKADD,
|
||||
DOT11_OID_WDSLINKREMOVE,
|
||||
DOT11_OID_EAPAUTHSTA,
|
||||
DOT11_OID_EAPUNAUTHSTA,
|
||||
DOT11_OID_DOT1XENABLE,
|
||||
DOT11_OID_MICFAILURE,
|
||||
DOT11_OID_REKEYINDICATE,
|
||||
|
||||
DOT11_OID_MPDUTXSUCCESSFUL,
|
||||
DOT11_OID_MPDUTXONERETRY,
|
||||
DOT11_OID_MPDUTXMULTIPLERETRIES,
|
||||
DOT11_OID_MPDUTXFAILED,
|
||||
DOT11_OID_MPDURXSUCCESSFUL,
|
||||
DOT11_OID_MPDURXDUPS,
|
||||
DOT11_OID_RTSSUCCESSFUL,
|
||||
DOT11_OID_RTSFAILED,
|
||||
DOT11_OID_ACKFAILED,
|
||||
DOT11_OID_FRAMERECEIVES,
|
||||
DOT11_OID_FRAMEERRORS,
|
||||
DOT11_OID_FRAMEABORTS,
|
||||
DOT11_OID_FRAMEABORTSPHY,
|
||||
|
||||
DOT11_OID_SLOTTIME,
|
||||
DOT11_OID_CWMIN, /* MIN DCS backoff */
|
||||
DOT11_OID_CWMAX, /* MAX DCS backoff */
|
||||
DOT11_OID_ACKWINDOW,
|
||||
DOT11_OID_ANTENNARX,
|
||||
DOT11_OID_ANTENNATX,
|
||||
DOT11_OID_ANTENNADIVERSITY,
|
||||
DOT11_OID_CHANNEL,
|
||||
DOT11_OID_EDTHRESHOLD,
|
||||
DOT11_OID_PREAMBLESETTINGS,
|
||||
DOT11_OID_RATES,
|
||||
DOT11_OID_CCAMODESUPPORTED,
|
||||
DOT11_OID_CCAMODE,
|
||||
DOT11_OID_RSSIVECTOR,
|
||||
DOT11_OID_OUTPUTPOWERTABLE,
|
||||
DOT11_OID_OUTPUTPOWER,
|
||||
DOT11_OID_SUPPORTEDRATES,
|
||||
DOT11_OID_FREQUENCY,
|
||||
DOT11_OID_SUPPORTEDFREQUENCIES,
|
||||
DOT11_OID_NOISEFLOOR,
|
||||
DOT11_OID_FREQUENCYACTIVITY,
|
||||
DOT11_OID_IQCALIBRATIONTABLE,
|
||||
DOT11_OID_NONERPPROTECTION,
|
||||
DOT11_OID_SLOTSETTINGS,
|
||||
DOT11_OID_NONERPTIMEOUT,
|
||||
DOT11_OID_PROFILES,
|
||||
DOT11_OID_EXTENDEDRATES,
|
||||
|
||||
DOT11_OID_DEAUTHENTICATE,
|
||||
DOT11_OID_AUTHENTICATE,
|
||||
DOT11_OID_DISASSOCIATE,
|
||||
DOT11_OID_ASSOCIATE,
|
||||
DOT11_OID_SCAN,
|
||||
DOT11_OID_BEACON,
|
||||
DOT11_OID_PROBE,
|
||||
DOT11_OID_DEAUTHENTICATEEX,
|
||||
DOT11_OID_AUTHENTICATEEX,
|
||||
DOT11_OID_DISASSOCIATEEX,
|
||||
DOT11_OID_ASSOCIATEEX,
|
||||
DOT11_OID_REASSOCIATE,
|
||||
DOT11_OID_REASSOCIATEEX,
|
||||
|
||||
DOT11_OID_NONERPSTATUS,
|
||||
|
||||
DOT11_OID_STATIMEOUT,
|
||||
DOT11_OID_MLMEAUTOLEVEL,
|
||||
DOT11_OID_BSSTIMEOUT,
|
||||
DOT11_OID_ATTACHMENT,
|
||||
DOT11_OID_PSMBUFFER,
|
||||
|
||||
DOT11_OID_BSSS,
|
||||
DOT11_OID_BSSX, /*DOT11_OID_BSS1,...,DOT11_OID_BSS64 */
|
||||
DOT11_OID_BSSFIND,
|
||||
DOT11_OID_BSSLIST,
|
||||
|
||||
OID_INL_TUNNEL,
|
||||
OID_INL_MEMADDR,
|
||||
OID_INL_MEMORY,
|
||||
OID_INL_MODE,
|
||||
OID_INL_COMPONENT_NR,
|
||||
OID_INL_VERSION,
|
||||
OID_INL_INTERFACE_ID,
|
||||
OID_INL_COMPONENT_ID,
|
||||
OID_INL_CONFIG,
|
||||
OID_INL_DOT11D_CONFORMANCE,
|
||||
OID_INL_PHYCAPABILITIES,
|
||||
OID_INL_OUTPUTPOWER,
|
||||
|
||||
OID_NUM_LAST
|
||||
};
|
||||
|
||||
#define OID_FLAG_CACHED 0x80
|
||||
#define OID_FLAG_TYPE 0x7f
|
||||
|
||||
#define OID_TYPE_U32 0x01
|
||||
#define OID_TYPE_SSID 0x02
|
||||
#define OID_TYPE_KEY 0x03
|
||||
#define OID_TYPE_BUFFER 0x04
|
||||
#define OID_TYPE_BSS 0x05
|
||||
#define OID_TYPE_BSSLIST 0x06
|
||||
#define OID_TYPE_FREQUENCIES 0x07
|
||||
#define OID_TYPE_MLME 0x08
|
||||
#define OID_TYPE_MLMEEX 0x09
|
||||
#define OID_TYPE_ADDR 0x0A
|
||||
#define OID_TYPE_RAW 0x0B
|
||||
#define OID_TYPE_ATTACH 0x0C
|
||||
|
||||
/* OID_TYPE_MLMEEX is special because of a variable size field when sending.
|
||||
* Not yet implemented (not used in driver anyway).
|
||||
*/
|
||||
|
||||
struct oid_t {
|
||||
enum oid_num_t oid;
|
||||
short range; /* to define a range of oid */
|
||||
short size; /* max size of the associated data */
|
||||
char flags;
|
||||
};
|
||||
|
||||
union oid_res_t {
|
||||
void *ptr;
|
||||
u32 u;
|
||||
};
|
||||
|
||||
#define IWMAX_BITRATES 20
|
||||
#define IWMAX_BSS 24
|
||||
#define IWMAX_FREQ 30
|
||||
#define PRIV_STR_SIZE 1024
|
||||
|
||||
#endif /* !defined(_ISL_OID_H) */
|
||||
/* EOF */
|
|
@ -1,951 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* Copyright (C) 2003 Herbert Valerio Riedel <hvr@gnu.org>
|
||||
* Copyright (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
|
||||
*/
|
||||
|
||||
#include <linux/hardirq.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/ethtool.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/etherdevice.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/if_arp.h>
|
||||
|
||||
#include <asm/io.h>
|
||||
|
||||
#include "prismcompat.h"
|
||||
#include "isl_38xx.h"
|
||||
#include "isl_ioctl.h"
|
||||
#include "islpci_dev.h"
|
||||
#include "islpci_mgt.h"
|
||||
#include "islpci_eth.h"
|
||||
#include "oid_mgt.h"
|
||||
|
||||
#define ISL3877_IMAGE_FILE "isl3877"
|
||||
#define ISL3886_IMAGE_FILE "isl3886"
|
||||
#define ISL3890_IMAGE_FILE "isl3890"
|
||||
MODULE_FIRMWARE(ISL3877_IMAGE_FILE);
|
||||
MODULE_FIRMWARE(ISL3886_IMAGE_FILE);
|
||||
MODULE_FIRMWARE(ISL3890_IMAGE_FILE);
|
||||
|
||||
static int prism54_bring_down(islpci_private *);
|
||||
static int islpci_alloc_memory(islpci_private *);
|
||||
|
||||
/* Temporary dummy MAC address to use until firmware is loaded.
|
||||
* The idea there is that some tools (such as nameif) may query
|
||||
* the MAC address before the netdev is 'open'. By using a valid
|
||||
* OUI prefix, they can process the netdev properly.
|
||||
* Of course, this is not the final/real MAC address. It doesn't
|
||||
* matter, as you are suppose to be able to change it anytime via
|
||||
* ndev->set_mac_address. Jean II */
|
||||
static const unsigned char dummy_mac[6] = { 0x00, 0x30, 0xB4, 0x00, 0x00, 0x00 };
|
||||
|
||||
static int
|
||||
isl_upload_firmware(islpci_private *priv)
|
||||
{
|
||||
u32 reg, rc;
|
||||
void __iomem *device_base = priv->device_base;
|
||||
|
||||
/* clear the RAMBoot and the Reset bit */
|
||||
reg = readl(device_base + ISL38XX_CTRL_STAT_REG);
|
||||
reg &= ~ISL38XX_CTRL_STAT_RESET;
|
||||
reg &= ~ISL38XX_CTRL_STAT_RAMBOOT;
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
wmb();
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* set the Reset bit without reading the register ! */
|
||||
reg |= ISL38XX_CTRL_STAT_RESET;
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
wmb();
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* clear the Reset bit */
|
||||
reg &= ~ISL38XX_CTRL_STAT_RESET;
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
wmb();
|
||||
|
||||
/* wait a while for the device to reboot */
|
||||
mdelay(50);
|
||||
|
||||
{
|
||||
const struct firmware *fw_entry = NULL;
|
||||
long fw_len;
|
||||
const u32 *fw_ptr;
|
||||
|
||||
rc = request_firmware(&fw_entry, priv->firmware, PRISM_FW_PDEV);
|
||||
if (rc) {
|
||||
printk(KERN_ERR
|
||||
"%s: request_firmware() failed for '%s'\n",
|
||||
"prism54", priv->firmware);
|
||||
return rc;
|
||||
}
|
||||
/* prepare the Direct Memory Base register */
|
||||
reg = ISL38XX_DEV_FIRMWARE_ADDRES;
|
||||
|
||||
fw_ptr = (u32 *) fw_entry->data;
|
||||
fw_len = fw_entry->size;
|
||||
|
||||
if (fw_len % 4) {
|
||||
printk(KERN_ERR
|
||||
"%s: firmware '%s' size is not multiple of 32bit, aborting!\n",
|
||||
"prism54", priv->firmware);
|
||||
release_firmware(fw_entry);
|
||||
return -EILSEQ; /* Illegal byte sequence */;
|
||||
}
|
||||
|
||||
while (fw_len > 0) {
|
||||
long _fw_len =
|
||||
(fw_len >
|
||||
ISL38XX_MEMORY_WINDOW_SIZE) ?
|
||||
ISL38XX_MEMORY_WINDOW_SIZE : fw_len;
|
||||
u32 __iomem *dev_fw_ptr = device_base + ISL38XX_DIRECT_MEM_WIN;
|
||||
|
||||
/* set the card's base address for writing the data */
|
||||
isl38xx_w32_flush(device_base, reg,
|
||||
ISL38XX_DIR_MEM_BASE_REG);
|
||||
wmb(); /* be paranoid */
|
||||
|
||||
/* increment the write address for next iteration */
|
||||
reg += _fw_len;
|
||||
fw_len -= _fw_len;
|
||||
|
||||
/* write the data to the Direct Memory Window 32bit-wise */
|
||||
/* memcpy_toio() doesn't guarantee 32bit writes :-| */
|
||||
while (_fw_len > 0) {
|
||||
/* use non-swapping writel() */
|
||||
__raw_writel(*fw_ptr, dev_fw_ptr);
|
||||
fw_ptr++, dev_fw_ptr++;
|
||||
_fw_len -= 4;
|
||||
}
|
||||
|
||||
/* flush PCI posting */
|
||||
(void) readl(device_base + ISL38XX_PCI_POSTING_FLUSH);
|
||||
wmb(); /* be paranoid again */
|
||||
|
||||
BUG_ON(_fw_len != 0);
|
||||
}
|
||||
|
||||
BUG_ON(fw_len != 0);
|
||||
|
||||
/* Firmware version is at offset 40 (also for "newmac") */
|
||||
printk(KERN_DEBUG "%s: firmware version: %.8s\n",
|
||||
priv->ndev->name, fw_entry->data + 40);
|
||||
|
||||
release_firmware(fw_entry);
|
||||
}
|
||||
|
||||
/* now reset the device
|
||||
* clear the Reset & ClkRun bit, set the RAMBoot bit */
|
||||
reg = readl(device_base + ISL38XX_CTRL_STAT_REG);
|
||||
reg &= ~ISL38XX_CTRL_STAT_CLKRUN;
|
||||
reg &= ~ISL38XX_CTRL_STAT_RESET;
|
||||
reg |= ISL38XX_CTRL_STAT_RAMBOOT;
|
||||
isl38xx_w32_flush(device_base, reg, ISL38XX_CTRL_STAT_REG);
|
||||
wmb();
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* set the reset bit latches the host override and RAMBoot bits
|
||||
* into the device for operation when the reset bit is reset */
|
||||
reg |= ISL38XX_CTRL_STAT_RESET;
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
/* don't do flush PCI posting here! */
|
||||
wmb();
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* clear the reset bit should start the whole circus */
|
||||
reg &= ~ISL38XX_CTRL_STAT_RESET;
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
/* don't do flush PCI posting here! */
|
||||
wmb();
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
Device Interrupt Handler
|
||||
******************************************************************************/
|
||||
|
||||
irqreturn_t
|
||||
islpci_interrupt(int irq, void *config)
|
||||
{
|
||||
u32 reg;
|
||||
islpci_private *priv = config;
|
||||
struct net_device *ndev = priv->ndev;
|
||||
void __iomem *device = priv->device_base;
|
||||
int powerstate = ISL38XX_PSM_POWERSAVE_STATE;
|
||||
|
||||
/* lock the interrupt handler */
|
||||
spin_lock(&priv->slock);
|
||||
|
||||
/* received an interrupt request on a shared IRQ line
|
||||
* first check whether the device is in sleep mode */
|
||||
reg = readl(device + ISL38XX_CTRL_STAT_REG);
|
||||
if (reg & ISL38XX_CTRL_STAT_SLEEPMODE)
|
||||
/* device is in sleep mode, IRQ was generated by someone else */
|
||||
{
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "Assuming someone else called the IRQ\n");
|
||||
#endif
|
||||
spin_unlock(&priv->slock);
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
|
||||
/* check whether there is any source of interrupt on the device */
|
||||
reg = readl(device + ISL38XX_INT_IDENT_REG);
|
||||
|
||||
/* also check the contents of the Interrupt Enable Register, because this
|
||||
* will filter out interrupt sources from other devices on the same irq ! */
|
||||
reg &= readl(device + ISL38XX_INT_EN_REG);
|
||||
reg &= ISL38XX_INT_SOURCES;
|
||||
|
||||
if (reg != 0) {
|
||||
if (islpci_get_state(priv) != PRV_STATE_SLEEP)
|
||||
powerstate = ISL38XX_PSM_ACTIVE_STATE;
|
||||
|
||||
/* reset the request bits in the Identification register */
|
||||
isl38xx_w32_flush(device, reg, ISL38XX_INT_ACK_REG);
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS,
|
||||
"IRQ: Identification register 0x%p 0x%x\n", device, reg);
|
||||
#endif
|
||||
|
||||
/* check for each bit in the register separately */
|
||||
if (reg & ISL38XX_INT_IDENT_UPDATE) {
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
/* Queue has been updated */
|
||||
DEBUG(SHOW_TRACING, "IRQ: Update flag\n");
|
||||
|
||||
DEBUG(SHOW_QUEUE_INDEXES,
|
||||
"CB drv Qs: [%i][%i][%i][%i][%i][%i]\n",
|
||||
le32_to_cpu(priv->control_block->
|
||||
driver_curr_frag[0]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
driver_curr_frag[1]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
driver_curr_frag[2]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
driver_curr_frag[3]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
driver_curr_frag[4]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
driver_curr_frag[5])
|
||||
);
|
||||
|
||||
DEBUG(SHOW_QUEUE_INDEXES,
|
||||
"CB dev Qs: [%i][%i][%i][%i][%i][%i]\n",
|
||||
le32_to_cpu(priv->control_block->
|
||||
device_curr_frag[0]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
device_curr_frag[1]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
device_curr_frag[2]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
device_curr_frag[3]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
device_curr_frag[4]),
|
||||
le32_to_cpu(priv->control_block->
|
||||
device_curr_frag[5])
|
||||
);
|
||||
#endif
|
||||
|
||||
/* cleanup the data low transmit queue */
|
||||
islpci_eth_cleanup_transmit(priv, priv->control_block);
|
||||
|
||||
/* device is in active state, update the
|
||||
* powerstate flag if necessary */
|
||||
powerstate = ISL38XX_PSM_ACTIVE_STATE;
|
||||
|
||||
/* check all three queues in priority order
|
||||
* call the PIMFOR receive function until the
|
||||
* queue is empty */
|
||||
if (isl38xx_in_queue(priv->control_block,
|
||||
ISL38XX_CB_RX_MGMTQ) != 0) {
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING,
|
||||
"Received frame in Management Queue\n");
|
||||
#endif
|
||||
islpci_mgt_receive(ndev);
|
||||
|
||||
islpci_mgt_cleanup_transmit(ndev);
|
||||
|
||||
/* Refill slots in receive queue */
|
||||
islpci_mgmt_rx_fill(ndev);
|
||||
|
||||
/* no need to trigger the device, next
|
||||
islpci_mgt_transaction does it */
|
||||
}
|
||||
|
||||
while (isl38xx_in_queue(priv->control_block,
|
||||
ISL38XX_CB_RX_DATA_LQ) != 0) {
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING,
|
||||
"Received frame in Data Low Queue\n");
|
||||
#endif
|
||||
islpci_eth_receive(priv);
|
||||
}
|
||||
|
||||
/* check whether the data transmit queues were full */
|
||||
if (priv->data_low_tx_full) {
|
||||
/* check whether the transmit is not full anymore */
|
||||
if (ISL38XX_CB_TX_QSIZE -
|
||||
isl38xx_in_queue(priv->control_block,
|
||||
ISL38XX_CB_TX_DATA_LQ) >=
|
||||
ISL38XX_MIN_QTHRESHOLD) {
|
||||
/* nope, the driver is ready for more network frames */
|
||||
netif_wake_queue(priv->ndev);
|
||||
|
||||
/* reset the full flag */
|
||||
priv->data_low_tx_full = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (reg & ISL38XX_INT_IDENT_INIT) {
|
||||
/* Device has been initialized */
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING,
|
||||
"IRQ: Init flag, device initialized\n");
|
||||
#endif
|
||||
wake_up(&priv->reset_done);
|
||||
}
|
||||
|
||||
if (reg & ISL38XX_INT_IDENT_SLEEP) {
|
||||
/* Device intends to move to powersave state */
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "IRQ: Sleep flag\n");
|
||||
#endif
|
||||
isl38xx_handle_sleep_request(priv->control_block,
|
||||
&powerstate,
|
||||
priv->device_base);
|
||||
}
|
||||
|
||||
if (reg & ISL38XX_INT_IDENT_WAKEUP) {
|
||||
/* Device has been woken up to active state */
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "IRQ: Wakeup flag\n");
|
||||
#endif
|
||||
|
||||
isl38xx_handle_wakeup(priv->control_block,
|
||||
&powerstate, priv->device_base);
|
||||
}
|
||||
} else {
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "Assuming someone else called the IRQ\n");
|
||||
#endif
|
||||
spin_unlock(&priv->slock);
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
/* sleep -> ready */
|
||||
if (islpci_get_state(priv) == PRV_STATE_SLEEP
|
||||
&& powerstate == ISL38XX_PSM_ACTIVE_STATE)
|
||||
islpci_set_state(priv, PRV_STATE_READY);
|
||||
|
||||
/* !sleep -> sleep */
|
||||
if (islpci_get_state(priv) != PRV_STATE_SLEEP
|
||||
&& powerstate == ISL38XX_PSM_POWERSAVE_STATE)
|
||||
islpci_set_state(priv, PRV_STATE_SLEEP);
|
||||
|
||||
/* unlock the interrupt handler */
|
||||
spin_unlock(&priv->slock);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
Network Interface Control & Statistical functions
|
||||
******************************************************************************/
|
||||
static int
|
||||
islpci_open(struct net_device *ndev)
|
||||
{
|
||||
u32 rc;
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
|
||||
/* reset data structures, upload firmware and reset device */
|
||||
rc = islpci_reset(priv,1);
|
||||
if (rc) {
|
||||
prism54_bring_down(priv);
|
||||
return rc; /* Returns informative message */
|
||||
}
|
||||
|
||||
netif_start_queue(ndev);
|
||||
|
||||
/* Turn off carrier if in STA or Ad-hoc mode. It will be turned on
|
||||
* once the firmware receives a trap of being associated
|
||||
* (GEN_OID_LINKSTATE). In other modes (AP or WDS or monitor) we
|
||||
* should just leave the carrier on as its expected the firmware
|
||||
* won't send us a trigger. */
|
||||
if (priv->iw_mode == IW_MODE_INFRA || priv->iw_mode == IW_MODE_ADHOC)
|
||||
netif_carrier_off(ndev);
|
||||
else
|
||||
netif_carrier_on(ndev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
islpci_close(struct net_device *ndev)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
|
||||
printk(KERN_DEBUG "%s: islpci_close ()\n", ndev->name);
|
||||
|
||||
netif_stop_queue(ndev);
|
||||
|
||||
return prism54_bring_down(priv);
|
||||
}
|
||||
|
||||
static int
|
||||
prism54_bring_down(islpci_private *priv)
|
||||
{
|
||||
void __iomem *device_base = priv->device_base;
|
||||
u32 reg;
|
||||
/* we are going to shutdown the device */
|
||||
islpci_set_state(priv, PRV_STATE_PREBOOT);
|
||||
|
||||
/* disable all device interrupts in case they weren't */
|
||||
isl38xx_disable_interrupts(priv->device_base);
|
||||
|
||||
/* For safety reasons, we may want to ensure that no DMA transfer is
|
||||
* currently in progress by emptying the TX and RX queues. */
|
||||
|
||||
/* wait until interrupts have finished executing on other CPUs */
|
||||
synchronize_irq(priv->pdev->irq);
|
||||
|
||||
reg = readl(device_base + ISL38XX_CTRL_STAT_REG);
|
||||
reg &= ~(ISL38XX_CTRL_STAT_RESET | ISL38XX_CTRL_STAT_RAMBOOT);
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
wmb();
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
reg |= ISL38XX_CTRL_STAT_RESET;
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
wmb();
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
|
||||
/* clear the Reset bit */
|
||||
reg &= ~ISL38XX_CTRL_STAT_RESET;
|
||||
writel(reg, device_base + ISL38XX_CTRL_STAT_REG);
|
||||
wmb();
|
||||
|
||||
/* wait a while for the device to reset */
|
||||
schedule_timeout_uninterruptible(msecs_to_jiffies(50));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
islpci_upload_fw(islpci_private *priv)
|
||||
{
|
||||
islpci_state_t old_state;
|
||||
u32 rc;
|
||||
|
||||
old_state = islpci_set_state(priv, PRV_STATE_BOOT);
|
||||
|
||||
printk(KERN_DEBUG "%s: uploading firmware...\n", priv->ndev->name);
|
||||
|
||||
rc = isl_upload_firmware(priv);
|
||||
if (rc) {
|
||||
/* error uploading the firmware */
|
||||
printk(KERN_ERR "%s: could not upload firmware ('%s')\n",
|
||||
priv->ndev->name, priv->firmware);
|
||||
|
||||
islpci_set_state(priv, old_state);
|
||||
return rc;
|
||||
}
|
||||
|
||||
printk(KERN_DEBUG "%s: firmware upload complete\n",
|
||||
priv->ndev->name);
|
||||
|
||||
islpci_set_state(priv, PRV_STATE_POSTBOOT);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
islpci_reset_if(islpci_private *priv)
|
||||
{
|
||||
long remaining;
|
||||
int result = -ETIME;
|
||||
int count;
|
||||
|
||||
DEFINE_WAIT(wait);
|
||||
prepare_to_wait(&priv->reset_done, &wait, TASK_UNINTERRUPTIBLE);
|
||||
|
||||
/* now the last step is to reset the interface */
|
||||
isl38xx_interface_reset(priv->device_base, priv->device_host_address);
|
||||
islpci_set_state(priv, PRV_STATE_PREINIT);
|
||||
|
||||
for(count = 0; count < 2 && result; count++) {
|
||||
/* The software reset acknowledge needs about 220 msec here.
|
||||
* Be conservative and wait for up to one second. */
|
||||
|
||||
remaining = schedule_timeout_uninterruptible(HZ);
|
||||
|
||||
if(remaining > 0) {
|
||||
result = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
/* If we're here it's because our IRQ hasn't yet gone through.
|
||||
* Retry a bit more...
|
||||
*/
|
||||
printk(KERN_ERR "%s: no 'reset complete' IRQ seen - retrying\n",
|
||||
priv->ndev->name);
|
||||
}
|
||||
|
||||
finish_wait(&priv->reset_done, &wait);
|
||||
|
||||
if (result) {
|
||||
printk(KERN_ERR "%s: interface reset failure\n", priv->ndev->name);
|
||||
return result;
|
||||
}
|
||||
|
||||
islpci_set_state(priv, PRV_STATE_INIT);
|
||||
|
||||
/* Now that the device is 100% up, let's allow
|
||||
* for the other interrupts --
|
||||
* NOTE: this is not *yet* true since we've only allowed the
|
||||
* INIT interrupt on the IRQ line. We can perhaps poll
|
||||
* the IRQ line until we know for sure the reset went through */
|
||||
isl38xx_enable_common_interrupts(priv->device_base);
|
||||
|
||||
down_write(&priv->mib_sem);
|
||||
result = mgt_commit(priv);
|
||||
if (result) {
|
||||
printk(KERN_ERR "%s: interface reset failure\n", priv->ndev->name);
|
||||
up_write(&priv->mib_sem);
|
||||
return result;
|
||||
}
|
||||
up_write(&priv->mib_sem);
|
||||
|
||||
islpci_set_state(priv, PRV_STATE_READY);
|
||||
|
||||
printk(KERN_DEBUG "%s: interface reset complete\n", priv->ndev->name);
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
islpci_reset(islpci_private *priv, int reload_firmware)
|
||||
{
|
||||
isl38xx_control_block *cb = /* volatile not needed */
|
||||
(isl38xx_control_block *) priv->control_block;
|
||||
unsigned counter;
|
||||
int rc;
|
||||
|
||||
if (reload_firmware)
|
||||
islpci_set_state(priv, PRV_STATE_PREBOOT);
|
||||
else
|
||||
islpci_set_state(priv, PRV_STATE_POSTBOOT);
|
||||
|
||||
printk(KERN_DEBUG "%s: resetting device...\n", priv->ndev->name);
|
||||
|
||||
/* disable all device interrupts in case they weren't */
|
||||
isl38xx_disable_interrupts(priv->device_base);
|
||||
|
||||
/* flush all management queues */
|
||||
priv->index_mgmt_tx = 0;
|
||||
priv->index_mgmt_rx = 0;
|
||||
|
||||
/* clear the indexes in the frame pointer */
|
||||
for (counter = 0; counter < ISL38XX_CB_QCOUNT; counter++) {
|
||||
cb->driver_curr_frag[counter] = cpu_to_le32(0);
|
||||
cb->device_curr_frag[counter] = cpu_to_le32(0);
|
||||
}
|
||||
|
||||
/* reset the mgmt receive queue */
|
||||
for (counter = 0; counter < ISL38XX_CB_MGMT_QSIZE; counter++) {
|
||||
isl38xx_fragment *frag = &cb->rx_data_mgmt[counter];
|
||||
frag->size = cpu_to_le16(MGMT_FRAME_SIZE);
|
||||
frag->flags = 0;
|
||||
frag->address = cpu_to_le32(priv->mgmt_rx[counter].pci_addr);
|
||||
}
|
||||
|
||||
for (counter = 0; counter < ISL38XX_CB_RX_QSIZE; counter++) {
|
||||
cb->rx_data_low[counter].address =
|
||||
cpu_to_le32((u32) priv->pci_map_rx_address[counter]);
|
||||
}
|
||||
|
||||
/* since the receive queues are filled with empty fragments, now we can
|
||||
* set the corresponding indexes in the Control Block */
|
||||
priv->control_block->driver_curr_frag[ISL38XX_CB_RX_DATA_LQ] =
|
||||
cpu_to_le32(ISL38XX_CB_RX_QSIZE);
|
||||
priv->control_block->driver_curr_frag[ISL38XX_CB_RX_MGMTQ] =
|
||||
cpu_to_le32(ISL38XX_CB_MGMT_QSIZE);
|
||||
|
||||
/* reset the remaining real index registers and full flags */
|
||||
priv->free_data_rx = 0;
|
||||
priv->free_data_tx = 0;
|
||||
priv->data_low_tx_full = 0;
|
||||
|
||||
if (reload_firmware) { /* Should we load the firmware ? */
|
||||
/* now that the data structures are cleaned up, upload
|
||||
* firmware and reset interface */
|
||||
rc = islpci_upload_fw(priv);
|
||||
if (rc) {
|
||||
printk(KERN_ERR "%s: islpci_reset: failure\n",
|
||||
priv->ndev->name);
|
||||
return rc;
|
||||
}
|
||||
}
|
||||
|
||||
/* finally reset interface */
|
||||
rc = islpci_reset_if(priv);
|
||||
if (rc)
|
||||
printk(KERN_ERR "prism54: Your card/socket may be faulty, or IRQ line too busy :(\n");
|
||||
return rc;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
Network device configuration functions
|
||||
******************************************************************************/
|
||||
static int
|
||||
islpci_alloc_memory(islpci_private *priv)
|
||||
{
|
||||
int counter;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
printk(KERN_DEBUG "islpci_alloc_memory\n");
|
||||
#endif
|
||||
|
||||
/* remap the PCI device base address to accessible */
|
||||
if (!(priv->device_base =
|
||||
ioremap(pci_resource_start(priv->pdev, 0),
|
||||
ISL38XX_PCI_MEM_SIZE))) {
|
||||
/* error in remapping the PCI device memory address range */
|
||||
printk(KERN_ERR "PCI memory remapping failed\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* memory layout for consistent DMA region:
|
||||
*
|
||||
* Area 1: Control Block for the device interface
|
||||
* Area 2: Power Save Mode Buffer for temporary frame storage. Be aware that
|
||||
* the number of supported stations in the AP determines the minimal
|
||||
* size of the buffer !
|
||||
*/
|
||||
|
||||
/* perform the allocation */
|
||||
priv->driver_mem_address = dma_alloc_coherent(&priv->pdev->dev,
|
||||
HOST_MEM_BLOCK,
|
||||
&priv->device_host_address,
|
||||
GFP_KERNEL);
|
||||
|
||||
if (!priv->driver_mem_address) {
|
||||
/* error allocating the block of PCI memory */
|
||||
printk(KERN_ERR "%s: could not allocate DMA memory, aborting!",
|
||||
"prism54");
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* assign the Control Block to the first address of the allocated area */
|
||||
priv->control_block =
|
||||
(isl38xx_control_block *) priv->driver_mem_address;
|
||||
|
||||
/* set the Power Save Buffer pointer directly behind the CB */
|
||||
priv->device_psm_buffer =
|
||||
priv->device_host_address + CONTROL_BLOCK_SIZE;
|
||||
|
||||
/* make sure all buffer pointers are initialized */
|
||||
for (counter = 0; counter < ISL38XX_CB_QCOUNT; counter++) {
|
||||
priv->control_block->driver_curr_frag[counter] = cpu_to_le32(0);
|
||||
priv->control_block->device_curr_frag[counter] = cpu_to_le32(0);
|
||||
}
|
||||
|
||||
priv->index_mgmt_rx = 0;
|
||||
memset(priv->mgmt_rx, 0, sizeof(priv->mgmt_rx));
|
||||
memset(priv->mgmt_tx, 0, sizeof(priv->mgmt_tx));
|
||||
|
||||
/* allocate rx queue for management frames */
|
||||
if (islpci_mgmt_rx_fill(priv->ndev) < 0)
|
||||
goto out_free;
|
||||
|
||||
/* now get the data rx skb's */
|
||||
memset(priv->data_low_rx, 0, sizeof (priv->data_low_rx));
|
||||
memset(priv->pci_map_rx_address, 0, sizeof (priv->pci_map_rx_address));
|
||||
|
||||
for (counter = 0; counter < ISL38XX_CB_RX_QSIZE; counter++) {
|
||||
struct sk_buff *skb;
|
||||
|
||||
/* allocate an sk_buff for received data frames storage
|
||||
* each frame on receive size consists of 1 fragment
|
||||
* include any required allignment operations */
|
||||
if (!(skb = dev_alloc_skb(MAX_FRAGMENT_SIZE_RX + 2))) {
|
||||
/* error allocating an sk_buff structure elements */
|
||||
printk(KERN_ERR "Error allocating skb.\n");
|
||||
skb = NULL;
|
||||
goto out_free;
|
||||
}
|
||||
skb_reserve(skb, (4 - (long) skb->data) & 0x03);
|
||||
/* add the new allocated sk_buff to the buffer array */
|
||||
priv->data_low_rx[counter] = skb;
|
||||
|
||||
/* map the allocated skb data area to pci */
|
||||
priv->pci_map_rx_address[counter] =
|
||||
dma_map_single(&priv->pdev->dev, (void *)skb->data,
|
||||
MAX_FRAGMENT_SIZE_RX + 2, DMA_FROM_DEVICE);
|
||||
if (dma_mapping_error(&priv->pdev->dev, priv->pci_map_rx_address[counter])) {
|
||||
priv->pci_map_rx_address[counter] = 0;
|
||||
/* error mapping the buffer to device
|
||||
accessible memory address */
|
||||
printk(KERN_ERR "failed to map skb DMA'able\n");
|
||||
goto out_free;
|
||||
}
|
||||
}
|
||||
|
||||
prism54_acl_init(&priv->acl);
|
||||
prism54_wpa_bss_ie_init(priv);
|
||||
if (mgt_init(priv))
|
||||
goto out_free;
|
||||
|
||||
return 0;
|
||||
out_free:
|
||||
islpci_free_memory(priv);
|
||||
return -1;
|
||||
}
|
||||
|
||||
int
|
||||
islpci_free_memory(islpci_private *priv)
|
||||
{
|
||||
int counter;
|
||||
|
||||
if (priv->device_base)
|
||||
iounmap(priv->device_base);
|
||||
priv->device_base = NULL;
|
||||
|
||||
/* free consistent DMA area... */
|
||||
if (priv->driver_mem_address)
|
||||
dma_free_coherent(&priv->pdev->dev, HOST_MEM_BLOCK,
|
||||
priv->driver_mem_address,
|
||||
priv->device_host_address);
|
||||
|
||||
/* clear some dangling pointers */
|
||||
priv->driver_mem_address = NULL;
|
||||
priv->device_host_address = 0;
|
||||
priv->device_psm_buffer = 0;
|
||||
priv->control_block = NULL;
|
||||
|
||||
/* clean up mgmt rx buffers */
|
||||
for (counter = 0; counter < ISL38XX_CB_MGMT_QSIZE; counter++) {
|
||||
struct islpci_membuf *buf = &priv->mgmt_rx[counter];
|
||||
if (buf->pci_addr)
|
||||
dma_unmap_single(&priv->pdev->dev, buf->pci_addr,
|
||||
buf->size, DMA_FROM_DEVICE);
|
||||
buf->pci_addr = 0;
|
||||
kfree(buf->mem);
|
||||
buf->size = 0;
|
||||
buf->mem = NULL;
|
||||
}
|
||||
|
||||
/* clean up data rx buffers */
|
||||
for (counter = 0; counter < ISL38XX_CB_RX_QSIZE; counter++) {
|
||||
if (priv->pci_map_rx_address[counter])
|
||||
dma_unmap_single(&priv->pdev->dev,
|
||||
priv->pci_map_rx_address[counter],
|
||||
MAX_FRAGMENT_SIZE_RX + 2,
|
||||
DMA_FROM_DEVICE);
|
||||
priv->pci_map_rx_address[counter] = 0;
|
||||
|
||||
if (priv->data_low_rx[counter])
|
||||
dev_kfree_skb(priv->data_low_rx[counter]);
|
||||
priv->data_low_rx[counter] = NULL;
|
||||
}
|
||||
|
||||
/* Free the access control list and the WPA list */
|
||||
prism54_acl_clean(&priv->acl);
|
||||
prism54_wpa_bss_ie_clean(priv);
|
||||
mgt_clean(priv);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
islpci_set_multicast_list(struct net_device *dev)
|
||||
{
|
||||
/* put device into promisc mode and let network layer handle it */
|
||||
}
|
||||
#endif
|
||||
|
||||
static void islpci_ethtool_get_drvinfo(struct net_device *dev,
|
||||
struct ethtool_drvinfo *info)
|
||||
{
|
||||
strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
|
||||
strlcpy(info->version, DRV_VERSION, sizeof(info->version));
|
||||
}
|
||||
|
||||
static const struct ethtool_ops islpci_ethtool_ops = {
|
||||
.get_drvinfo = islpci_ethtool_get_drvinfo,
|
||||
};
|
||||
|
||||
static const struct net_device_ops islpci_netdev_ops = {
|
||||
.ndo_open = islpci_open,
|
||||
.ndo_stop = islpci_close,
|
||||
.ndo_start_xmit = islpci_eth_transmit,
|
||||
.ndo_tx_timeout = islpci_eth_tx_timeout,
|
||||
.ndo_set_mac_address = prism54_set_mac_address,
|
||||
.ndo_validate_addr = eth_validate_addr,
|
||||
};
|
||||
|
||||
static struct device_type wlan_type = {
|
||||
.name = "wlan",
|
||||
};
|
||||
|
||||
struct net_device *
|
||||
islpci_setup(struct pci_dev *pdev)
|
||||
{
|
||||
islpci_private *priv;
|
||||
struct net_device *ndev = alloc_etherdev(sizeof (islpci_private));
|
||||
|
||||
if (!ndev)
|
||||
return ndev;
|
||||
|
||||
pci_set_drvdata(pdev, ndev);
|
||||
SET_NETDEV_DEV(ndev, &pdev->dev);
|
||||
SET_NETDEV_DEVTYPE(ndev, &wlan_type);
|
||||
|
||||
/* setup the structure members */
|
||||
ndev->base_addr = pci_resource_start(pdev, 0);
|
||||
ndev->irq = pdev->irq;
|
||||
|
||||
/* initialize the function pointers */
|
||||
ndev->netdev_ops = &islpci_netdev_ops;
|
||||
ndev->wireless_handlers = &prism54_handler_def;
|
||||
ndev->ethtool_ops = &islpci_ethtool_ops;
|
||||
|
||||
/* ndev->set_multicast_list = &islpci_set_multicast_list; */
|
||||
ndev->addr_len = ETH_ALEN;
|
||||
/* Get a non-zero dummy MAC address for nameif. Jean II */
|
||||
memcpy(ndev->dev_addr, dummy_mac, ETH_ALEN);
|
||||
|
||||
ndev->watchdog_timeo = ISLPCI_TX_TIMEOUT;
|
||||
|
||||
/* allocate a private device structure to the network device */
|
||||
priv = netdev_priv(ndev);
|
||||
priv->ndev = ndev;
|
||||
priv->pdev = pdev;
|
||||
priv->monitor_type = ARPHRD_IEEE80211;
|
||||
priv->ndev->type = (priv->iw_mode == IW_MODE_MONITOR) ?
|
||||
priv->monitor_type : ARPHRD_ETHER;
|
||||
|
||||
/* Add pointers to enable iwspy support. */
|
||||
priv->wireless_data.spy_data = &priv->spy_data;
|
||||
ndev->wireless_data = &priv->wireless_data;
|
||||
|
||||
/* save the start and end address of the PCI memory area */
|
||||
ndev->mem_start = (unsigned long) priv->device_base;
|
||||
ndev->mem_end = ndev->mem_start + ISL38XX_PCI_MEM_SIZE;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "PCI Memory remapped to 0x%p\n", priv->device_base);
|
||||
#endif
|
||||
|
||||
init_waitqueue_head(&priv->reset_done);
|
||||
|
||||
/* init the queue read locks, process wait counter */
|
||||
mutex_init(&priv->mgmt_lock);
|
||||
priv->mgmt_received = NULL;
|
||||
init_waitqueue_head(&priv->mgmt_wqueue);
|
||||
mutex_init(&priv->stats_lock);
|
||||
spin_lock_init(&priv->slock);
|
||||
|
||||
/* init state machine with off#1 state */
|
||||
priv->state = PRV_STATE_OFF;
|
||||
priv->state_off = 1;
|
||||
|
||||
/* initialize workqueue's */
|
||||
INIT_WORK(&priv->stats_work, prism54_update_stats);
|
||||
priv->stats_timestamp = 0;
|
||||
|
||||
INIT_WORK(&priv->reset_task, islpci_do_reset_and_wake);
|
||||
priv->reset_task_pending = 0;
|
||||
|
||||
/* allocate various memory areas */
|
||||
if (islpci_alloc_memory(priv))
|
||||
goto do_free_netdev;
|
||||
|
||||
/* select the firmware file depending on the device id */
|
||||
switch (pdev->device) {
|
||||
case 0x3877:
|
||||
strcpy(priv->firmware, ISL3877_IMAGE_FILE);
|
||||
break;
|
||||
|
||||
case 0x3886:
|
||||
strcpy(priv->firmware, ISL3886_IMAGE_FILE);
|
||||
break;
|
||||
|
||||
default:
|
||||
strcpy(priv->firmware, ISL3890_IMAGE_FILE);
|
||||
break;
|
||||
}
|
||||
|
||||
if (register_netdev(ndev)) {
|
||||
DEBUG(SHOW_ERROR_MESSAGES,
|
||||
"ERROR: register_netdev() failed\n");
|
||||
goto do_islpci_free_memory;
|
||||
}
|
||||
|
||||
return ndev;
|
||||
|
||||
do_islpci_free_memory:
|
||||
islpci_free_memory(priv);
|
||||
do_free_netdev:
|
||||
free_netdev(ndev);
|
||||
priv = NULL;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
islpci_state_t
|
||||
islpci_set_state(islpci_private *priv, islpci_state_t new_state)
|
||||
{
|
||||
islpci_state_t old_state;
|
||||
|
||||
/* lock */
|
||||
old_state = priv->state;
|
||||
|
||||
/* this means either a race condition or some serious error in
|
||||
* the driver code */
|
||||
switch (new_state) {
|
||||
case PRV_STATE_OFF:
|
||||
priv->state_off++;
|
||||
fallthrough;
|
||||
default:
|
||||
priv->state = new_state;
|
||||
break;
|
||||
|
||||
case PRV_STATE_PREBOOT:
|
||||
/* there are actually many off-states, enumerated by
|
||||
* state_off */
|
||||
if (old_state == PRV_STATE_OFF)
|
||||
priv->state_off--;
|
||||
|
||||
/* only if hw_unavailable is zero now it means we either
|
||||
* were in off#1 state, or came here from
|
||||
* somewhere else */
|
||||
if (!priv->state_off)
|
||||
priv->state = new_state;
|
||||
break;
|
||||
}
|
||||
#if 0
|
||||
printk(KERN_DEBUG "%s: state transition %d -> %d (off#%d)\n",
|
||||
priv->ndev->name, old_state, new_state, priv->state_off);
|
||||
#endif
|
||||
|
||||
/* invariants */
|
||||
BUG_ON(priv->state_off < 0);
|
||||
BUG_ON(priv->state_off && (priv->state != PRV_STATE_OFF));
|
||||
BUG_ON(!priv->state_off && (priv->state == PRV_STATE_OFF));
|
||||
|
||||
/* unlock */
|
||||
return old_state;
|
||||
}
|
|
@ -1,204 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* Copyright (C) 2003 Herbert Valerio Riedel <hvr@gnu.org>
|
||||
* Copyright (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
|
||||
* Copyright (C) 2003 Aurelien Alleaume <slts@free.fr>
|
||||
*/
|
||||
|
||||
#ifndef _ISLPCI_DEV_H
|
||||
#define _ISLPCI_DEV_H
|
||||
|
||||
#include <linux/irqreturn.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/wireless.h>
|
||||
#include <net/iw_handler.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/mutex.h>
|
||||
|
||||
#include "isl_38xx.h"
|
||||
#include "isl_oid.h"
|
||||
#include "islpci_mgt.h"
|
||||
|
||||
/* some states might not be superflous and may be removed when
|
||||
design is finalized (hvr) */
|
||||
typedef enum {
|
||||
PRV_STATE_OFF = 0, /* this means hw_unavailable is != 0 */
|
||||
PRV_STATE_PREBOOT, /* we are in a pre-boot state (empty RAM) */
|
||||
PRV_STATE_BOOT, /* boot state (fw upload, run fw) */
|
||||
PRV_STATE_POSTBOOT, /* after boot state, need reset now */
|
||||
PRV_STATE_PREINIT, /* pre-init state */
|
||||
PRV_STATE_INIT, /* init state (restore MIB backup to device) */
|
||||
PRV_STATE_READY, /* driver&device are in operational state */
|
||||
PRV_STATE_SLEEP /* device in sleep mode */
|
||||
} islpci_state_t;
|
||||
|
||||
/* ACL using MAC address */
|
||||
struct mac_entry {
|
||||
struct list_head _list;
|
||||
char addr[ETH_ALEN];
|
||||
};
|
||||
|
||||
struct islpci_acl {
|
||||
enum { MAC_POLICY_OPEN=0, MAC_POLICY_ACCEPT=1, MAC_POLICY_REJECT=2 } policy;
|
||||
struct list_head mac_list; /* a list of mac_entry */
|
||||
int size; /* size of queue */
|
||||
struct mutex lock; /* accessed in ioctls and trap_work */
|
||||
};
|
||||
|
||||
struct islpci_membuf {
|
||||
int size; /* size of memory */
|
||||
void *mem; /* address of memory as seen by CPU */
|
||||
dma_addr_t pci_addr; /* address of memory as seen by device */
|
||||
};
|
||||
|
||||
#define MAX_BSS_WPA_IE_COUNT 64
|
||||
#define MAX_WPA_IE_LEN 64
|
||||
struct islpci_bss_wpa_ie {
|
||||
struct list_head list;
|
||||
unsigned long last_update;
|
||||
u8 bssid[ETH_ALEN];
|
||||
u8 wpa_ie[MAX_WPA_IE_LEN];
|
||||
size_t wpa_ie_len;
|
||||
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
spinlock_t slock; /* generic spinlock; */
|
||||
|
||||
u32 priv_oid;
|
||||
|
||||
/* our mib cache */
|
||||
u32 iw_mode;
|
||||
struct rw_semaphore mib_sem;
|
||||
void **mib;
|
||||
char nickname[IW_ESSID_MAX_SIZE+1];
|
||||
|
||||
/* Take care of the wireless stats */
|
||||
struct work_struct stats_work;
|
||||
struct mutex stats_lock;
|
||||
/* remember when we last updated the stats */
|
||||
unsigned long stats_timestamp;
|
||||
/* The first is accessed under semaphore locking.
|
||||
* The second is the clean one we return to iwconfig.
|
||||
*/
|
||||
struct iw_statistics local_iwstatistics;
|
||||
struct iw_statistics iwstatistics;
|
||||
|
||||
struct iw_spy_data spy_data; /* iwspy support */
|
||||
|
||||
struct iw_public_data wireless_data;
|
||||
|
||||
int monitor_type; /* ARPHRD_IEEE80211 or ARPHRD_IEEE80211_PRISM */
|
||||
|
||||
struct islpci_acl acl;
|
||||
|
||||
/* PCI bus allocation & configuration members */
|
||||
struct pci_dev *pdev; /* PCI structure information */
|
||||
char firmware[33];
|
||||
|
||||
void __iomem *device_base; /* ioremapped device base address */
|
||||
|
||||
/* consistent DMA region */
|
||||
void *driver_mem_address; /* base DMA address */
|
||||
dma_addr_t device_host_address; /* base DMA address (bus address) */
|
||||
dma_addr_t device_psm_buffer; /* host memory for PSM buffering (bus address) */
|
||||
|
||||
/* our network_device structure */
|
||||
struct net_device *ndev;
|
||||
|
||||
/* device queue interface members */
|
||||
struct isl38xx_cb *control_block; /* device control block
|
||||
(== driver_mem_address!) */
|
||||
|
||||
/* Each queue has three indexes:
|
||||
* free/index_mgmt/data_rx/tx (called index, see below),
|
||||
* driver_curr_frag, and device_curr_frag (in the control block)
|
||||
* All indexes are ever-increasing, but interpreted modulo the
|
||||
* device queue size when used.
|
||||
* index <= device_curr_frag <= driver_curr_frag at all times
|
||||
* For rx queues, [index, device_curr_frag) contains fragments
|
||||
* that the interrupt processing needs to handle (owned by driver).
|
||||
* [device_curr_frag, driver_curr_frag) is the free space in the
|
||||
* rx queue, waiting for data (owned by device). The driver
|
||||
* increments driver_curr_frag to indicate to the device that more
|
||||
* buffers are available.
|
||||
* If device_curr_frag == driver_curr_frag, no more rx buffers are
|
||||
* available, and the rx DMA engine of the device is halted.
|
||||
* For tx queues, [index, device_curr_frag) contains fragments
|
||||
* where tx is done; they need to be freed (owned by driver).
|
||||
* [device_curr_frag, driver_curr_frag) contains the frames
|
||||
* that are being transferred (owned by device). The driver
|
||||
* increments driver_curr_frag to indicate that more tx work
|
||||
* needs to be done.
|
||||
*/
|
||||
u32 index_mgmt_rx; /* real index mgmt rx queue */
|
||||
u32 index_mgmt_tx; /* read index mgmt tx queue */
|
||||
u32 free_data_rx; /* free pointer data rx queue */
|
||||
u32 free_data_tx; /* free pointer data tx queue */
|
||||
u32 data_low_tx_full; /* full detected flag */
|
||||
|
||||
/* frame memory buffers for the device queues */
|
||||
struct islpci_membuf mgmt_tx[ISL38XX_CB_MGMT_QSIZE];
|
||||
struct islpci_membuf mgmt_rx[ISL38XX_CB_MGMT_QSIZE];
|
||||
struct sk_buff *data_low_tx[ISL38XX_CB_TX_QSIZE];
|
||||
struct sk_buff *data_low_rx[ISL38XX_CB_RX_QSIZE];
|
||||
dma_addr_t pci_map_tx_address[ISL38XX_CB_TX_QSIZE];
|
||||
dma_addr_t pci_map_rx_address[ISL38XX_CB_RX_QSIZE];
|
||||
|
||||
/* wait for a reset interrupt */
|
||||
wait_queue_head_t reset_done;
|
||||
|
||||
/* used by islpci_mgt_transaction */
|
||||
struct mutex mgmt_lock; /* serialize access to mailbox and wqueue */
|
||||
struct islpci_mgmtframe *mgmt_received; /* mbox for incoming frame */
|
||||
wait_queue_head_t mgmt_wqueue; /* waitqueue for mbox */
|
||||
|
||||
/* state machine */
|
||||
islpci_state_t state;
|
||||
int state_off; /* enumeration of off-state, if 0 then
|
||||
* we're not in any off-state */
|
||||
|
||||
/* WPA stuff */
|
||||
int wpa; /* WPA mode enabled */
|
||||
struct list_head bss_wpa_list;
|
||||
int num_bss_wpa;
|
||||
struct mutex wpa_lock;
|
||||
u8 wpa_ie[MAX_WPA_IE_LEN];
|
||||
size_t wpa_ie_len;
|
||||
|
||||
struct work_struct reset_task;
|
||||
int reset_task_pending;
|
||||
} islpci_private;
|
||||
|
||||
static inline islpci_state_t
|
||||
islpci_get_state(islpci_private *priv)
|
||||
{
|
||||
/* lock */
|
||||
return priv->state;
|
||||
/* unlock */
|
||||
}
|
||||
|
||||
islpci_state_t islpci_set_state(islpci_private *priv, islpci_state_t new_state);
|
||||
|
||||
#define ISLPCI_TX_TIMEOUT (2*HZ)
|
||||
|
||||
irqreturn_t islpci_interrupt(int, void *);
|
||||
|
||||
int prism54_post_setup(islpci_private *, int);
|
||||
int islpci_reset(islpci_private *, int);
|
||||
|
||||
static inline void
|
||||
islpci_trigger(islpci_private *priv)
|
||||
{
|
||||
isl38xx_trigger_device(islpci_get_state(priv) == PRV_STATE_SLEEP,
|
||||
priv->device_base);
|
||||
}
|
||||
|
||||
int islpci_free_memory(islpci_private *);
|
||||
struct net_device *islpci_setup(struct pci_dev *);
|
||||
|
||||
#define DRV_NAME "prism54"
|
||||
#define DRV_VERSION "1.2"
|
||||
|
||||
#endif /* _ISLPCI_DEV_H */
|
|
@ -1,489 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
#include <linux/gfp.h>
|
||||
|
||||
#include <linux/pci.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/etherdevice.h>
|
||||
#include <linux/if_arp.h>
|
||||
#include <asm/byteorder.h>
|
||||
|
||||
#include "prismcompat.h"
|
||||
#include "isl_38xx.h"
|
||||
#include "islpci_eth.h"
|
||||
#include "islpci_mgt.h"
|
||||
#include "oid_mgt.h"
|
||||
|
||||
/******************************************************************************
|
||||
Network Interface functions
|
||||
******************************************************************************/
|
||||
void
|
||||
islpci_eth_cleanup_transmit(islpci_private *priv,
|
||||
isl38xx_control_block *control_block)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
u32 index;
|
||||
|
||||
/* compare the control block read pointer with the free pointer */
|
||||
while (priv->free_data_tx !=
|
||||
le32_to_cpu(control_block->
|
||||
device_curr_frag[ISL38XX_CB_TX_DATA_LQ])) {
|
||||
/* read the index of the first fragment to be freed */
|
||||
index = priv->free_data_tx % ISL38XX_CB_TX_QSIZE;
|
||||
|
||||
/* check for holes in the arrays caused by multi fragment frames
|
||||
* searching for the last fragment of a frame */
|
||||
if (priv->pci_map_tx_address[index]) {
|
||||
/* entry is the last fragment of a frame
|
||||
* free the skb structure and unmap pci memory */
|
||||
skb = priv->data_low_tx[index];
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING,
|
||||
"cleanup skb %p skb->data %p skb->len %u truesize %u\n",
|
||||
skb, skb->data, skb->len, skb->truesize);
|
||||
#endif
|
||||
|
||||
dma_unmap_single(&priv->pdev->dev,
|
||||
priv->pci_map_tx_address[index],
|
||||
skb->len, DMA_TO_DEVICE);
|
||||
dev_kfree_skb_irq(skb);
|
||||
skb = NULL;
|
||||
}
|
||||
/* increment the free data low queue pointer */
|
||||
priv->free_data_tx++;
|
||||
}
|
||||
}
|
||||
|
||||
netdev_tx_t
|
||||
islpci_eth_transmit(struct sk_buff *skb, struct net_device *ndev)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
isl38xx_control_block *cb = priv->control_block;
|
||||
u32 index;
|
||||
dma_addr_t pci_map_address;
|
||||
int frame_size;
|
||||
isl38xx_fragment *fragment;
|
||||
int offset;
|
||||
struct sk_buff *newskb;
|
||||
int newskb_offset;
|
||||
unsigned long flags;
|
||||
unsigned char wds_mac[6];
|
||||
u32 curr_frag;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "islpci_eth_transmit\n");
|
||||
#endif
|
||||
|
||||
/* lock the driver code */
|
||||
spin_lock_irqsave(&priv->slock, flags);
|
||||
|
||||
/* check whether the destination queue has enough fragments for the frame */
|
||||
curr_frag = le32_to_cpu(cb->driver_curr_frag[ISL38XX_CB_TX_DATA_LQ]);
|
||||
if (unlikely(curr_frag - priv->free_data_tx >= ISL38XX_CB_TX_QSIZE)) {
|
||||
printk(KERN_ERR "%s: transmit device queue full when awake\n",
|
||||
ndev->name);
|
||||
netif_stop_queue(ndev);
|
||||
|
||||
/* trigger the device */
|
||||
isl38xx_w32_flush(priv->device_base, ISL38XX_DEV_INT_UPDATE,
|
||||
ISL38XX_DEV_INT_REG);
|
||||
udelay(ISL38XX_WRITEIO_DELAY);
|
||||
goto drop_free;
|
||||
}
|
||||
/* Check alignment and WDS frame formatting. The start of the packet should
|
||||
* be aligned on a 4-byte boundary. If WDS is enabled add another 6 bytes
|
||||
* and add WDS address information */
|
||||
if (likely(((long) skb->data & 0x03) | init_wds)) {
|
||||
/* get the number of bytes to add and re-align */
|
||||
offset = (4 - (long) skb->data) & 0x03;
|
||||
offset += init_wds ? 6 : 0;
|
||||
|
||||
/* check whether the current skb can be used */
|
||||
if (!skb_cloned(skb) && (skb_tailroom(skb) >= offset)) {
|
||||
unsigned char *src = skb->data;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "skb offset %i wds %i\n", offset,
|
||||
init_wds);
|
||||
#endif
|
||||
|
||||
/* align the buffer on 4-byte boundary */
|
||||
skb_reserve(skb, (4 - (long) skb->data) & 0x03);
|
||||
if (init_wds) {
|
||||
/* wds requires an additional address field of 6 bytes */
|
||||
skb_put(skb, 6);
|
||||
#ifdef ISLPCI_ETH_DEBUG
|
||||
printk("islpci_eth_transmit:wds_mac\n");
|
||||
#endif
|
||||
memmove(skb->data + 6, src, skb->len);
|
||||
skb_copy_to_linear_data(skb, wds_mac, 6);
|
||||
} else {
|
||||
memmove(skb->data, src, skb->len);
|
||||
}
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "memmove %p %p %i\n", skb->data,
|
||||
src, skb->len);
|
||||
#endif
|
||||
} else {
|
||||
newskb =
|
||||
dev_alloc_skb(init_wds ? skb->len + 6 : skb->len);
|
||||
if (unlikely(newskb == NULL)) {
|
||||
printk(KERN_ERR "%s: Cannot allocate skb\n",
|
||||
ndev->name);
|
||||
goto drop_free;
|
||||
}
|
||||
newskb_offset = (4 - (long) newskb->data) & 0x03;
|
||||
|
||||
/* Check if newskb->data is aligned */
|
||||
if (newskb_offset)
|
||||
skb_reserve(newskb, newskb_offset);
|
||||
|
||||
skb_put(newskb, init_wds ? skb->len + 6 : skb->len);
|
||||
if (init_wds) {
|
||||
skb_copy_from_linear_data(skb,
|
||||
newskb->data + 6,
|
||||
skb->len);
|
||||
skb_copy_to_linear_data(newskb, wds_mac, 6);
|
||||
#ifdef ISLPCI_ETH_DEBUG
|
||||
printk("islpci_eth_transmit:wds_mac\n");
|
||||
#endif
|
||||
} else
|
||||
skb_copy_from_linear_data(skb, newskb->data,
|
||||
skb->len);
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "memcpy %p %p %i wds %i\n",
|
||||
newskb->data, skb->data, skb->len, init_wds);
|
||||
#endif
|
||||
|
||||
newskb->dev = skb->dev;
|
||||
dev_kfree_skb_irq(skb);
|
||||
skb = newskb;
|
||||
}
|
||||
}
|
||||
/* display the buffer contents for debugging */
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_BUFFER_CONTENTS, "\ntx %p ", skb->data);
|
||||
display_buffer((char *) skb->data, skb->len);
|
||||
#endif
|
||||
|
||||
/* map the skb buffer to pci memory for DMA operation */
|
||||
pci_map_address = dma_map_single(&priv->pdev->dev, (void *)skb->data,
|
||||
skb->len, DMA_TO_DEVICE);
|
||||
if (dma_mapping_error(&priv->pdev->dev, pci_map_address)) {
|
||||
printk(KERN_WARNING "%s: cannot map buffer to PCI\n",
|
||||
ndev->name);
|
||||
goto drop_free;
|
||||
}
|
||||
/* Place the fragment in the control block structure. */
|
||||
index = curr_frag % ISL38XX_CB_TX_QSIZE;
|
||||
fragment = &cb->tx_data_low[index];
|
||||
|
||||
priv->pci_map_tx_address[index] = pci_map_address;
|
||||
/* store the skb address for future freeing */
|
||||
priv->data_low_tx[index] = skb;
|
||||
/* set the proper fragment start address and size information */
|
||||
frame_size = skb->len;
|
||||
fragment->size = cpu_to_le16(frame_size);
|
||||
fragment->flags = cpu_to_le16(0); /* set to 1 if more fragments */
|
||||
fragment->address = cpu_to_le32(pci_map_address);
|
||||
curr_frag++;
|
||||
|
||||
/* The fragment address in the control block must have been
|
||||
* written before announcing the frame buffer to device. */
|
||||
wmb();
|
||||
cb->driver_curr_frag[ISL38XX_CB_TX_DATA_LQ] = cpu_to_le32(curr_frag);
|
||||
|
||||
if (curr_frag - priv->free_data_tx + ISL38XX_MIN_QTHRESHOLD
|
||||
> ISL38XX_CB_TX_QSIZE) {
|
||||
/* stop sends from upper layers */
|
||||
netif_stop_queue(ndev);
|
||||
|
||||
/* set the full flag for the transmission queue */
|
||||
priv->data_low_tx_full = 1;
|
||||
}
|
||||
|
||||
ndev->stats.tx_packets++;
|
||||
ndev->stats.tx_bytes += skb->len;
|
||||
|
||||
/* trigger the device */
|
||||
islpci_trigger(priv);
|
||||
|
||||
/* unlock the driver code */
|
||||
spin_unlock_irqrestore(&priv->slock, flags);
|
||||
|
||||
return NETDEV_TX_OK;
|
||||
|
||||
drop_free:
|
||||
ndev->stats.tx_dropped++;
|
||||
spin_unlock_irqrestore(&priv->slock, flags);
|
||||
dev_kfree_skb(skb);
|
||||
return NETDEV_TX_OK;
|
||||
}
|
||||
|
||||
static inline int
|
||||
islpci_monitor_rx(islpci_private *priv, struct sk_buff **skb)
|
||||
{
|
||||
/* The card reports full 802.11 packets but with a 20 bytes
|
||||
* header and without the FCS. But there a is a bit that
|
||||
* indicates if the packet is corrupted :-) */
|
||||
struct rfmon_header *hdr = (struct rfmon_header *) (*skb)->data;
|
||||
|
||||
if (hdr->flags & 0x01)
|
||||
/* This one is bad. Drop it ! */
|
||||
return -1;
|
||||
if (priv->ndev->type == ARPHRD_IEEE80211_PRISM) {
|
||||
struct avs_80211_1_header *avs;
|
||||
/* extract the relevant data from the header */
|
||||
u32 clock = le32_to_cpu(hdr->clock);
|
||||
u8 rate = hdr->rate;
|
||||
u16 freq = le16_to_cpu(hdr->freq);
|
||||
u8 rssi = hdr->rssi;
|
||||
|
||||
skb_pull(*skb, sizeof (struct rfmon_header));
|
||||
|
||||
if (skb_headroom(*skb) < sizeof (struct avs_80211_1_header)) {
|
||||
struct sk_buff *newskb = skb_copy_expand(*skb,
|
||||
sizeof (struct
|
||||
avs_80211_1_header),
|
||||
0, GFP_ATOMIC);
|
||||
if (newskb) {
|
||||
dev_kfree_skb_irq(*skb);
|
||||
*skb = newskb;
|
||||
} else
|
||||
return -1;
|
||||
/* This behavior is not very subtile... */
|
||||
}
|
||||
|
||||
/* make room for the new header and fill it. */
|
||||
avs = skb_push(*skb, sizeof(struct avs_80211_1_header));
|
||||
|
||||
avs->version = cpu_to_be32(P80211CAPTURE_VERSION);
|
||||
avs->length = cpu_to_be32(sizeof (struct avs_80211_1_header));
|
||||
avs->mactime = cpu_to_be64(clock);
|
||||
avs->hosttime = cpu_to_be64(jiffies);
|
||||
avs->phytype = cpu_to_be32(6); /*OFDM: 6 for (g), 8 for (a) */
|
||||
avs->channel = cpu_to_be32(channel_of_freq(freq));
|
||||
avs->datarate = cpu_to_be32(rate * 5);
|
||||
avs->antenna = cpu_to_be32(0); /*unknown */
|
||||
avs->priority = cpu_to_be32(0); /*unknown */
|
||||
avs->ssi_type = cpu_to_be32(3); /*2: dBm, 3: raw RSSI */
|
||||
avs->ssi_signal = cpu_to_be32(rssi & 0x7f);
|
||||
avs->ssi_noise = cpu_to_be32(priv->local_iwstatistics.qual.noise); /*better than 'undefined', I assume */
|
||||
avs->preamble = cpu_to_be32(0); /*unknown */
|
||||
avs->encoding = cpu_to_be32(0); /*unknown */
|
||||
} else
|
||||
skb_pull(*skb, sizeof (struct rfmon_header));
|
||||
|
||||
(*skb)->protocol = htons(ETH_P_802_2);
|
||||
skb_reset_mac_header(*skb);
|
||||
(*skb)->pkt_type = PACKET_OTHERHOST;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
islpci_eth_receive(islpci_private *priv)
|
||||
{
|
||||
struct net_device *ndev = priv->ndev;
|
||||
isl38xx_control_block *control_block = priv->control_block;
|
||||
struct sk_buff *skb;
|
||||
u16 size;
|
||||
u32 index, offset;
|
||||
unsigned char *src;
|
||||
int discard = 0;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "islpci_eth_receive\n");
|
||||
#endif
|
||||
|
||||
/* the device has written an Ethernet frame in the data area
|
||||
* of the sk_buff without updating the structure, do it now */
|
||||
index = priv->free_data_rx % ISL38XX_CB_RX_QSIZE;
|
||||
size = le16_to_cpu(control_block->rx_data_low[index].size);
|
||||
skb = priv->data_low_rx[index];
|
||||
offset = ((unsigned long)
|
||||
le32_to_cpu(control_block->rx_data_low[index].address) -
|
||||
(unsigned long) skb->data) & 3;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING,
|
||||
"frq->addr %x skb->data %p skb->len %u offset %u truesize %u\n",
|
||||
control_block->rx_data_low[priv->free_data_rx].address, skb->data,
|
||||
skb->len, offset, skb->truesize);
|
||||
#endif
|
||||
|
||||
/* delete the streaming DMA mapping before processing the skb */
|
||||
dma_unmap_single(&priv->pdev->dev, priv->pci_map_rx_address[index],
|
||||
MAX_FRAGMENT_SIZE_RX + 2, DMA_FROM_DEVICE);
|
||||
|
||||
/* update the skb structure and align the buffer */
|
||||
skb_put(skb, size);
|
||||
if (offset) {
|
||||
/* shift the buffer allocation offset bytes to get the right frame */
|
||||
skb_pull(skb, 2);
|
||||
skb_put(skb, 2);
|
||||
}
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
/* display the buffer contents for debugging */
|
||||
DEBUG(SHOW_BUFFER_CONTENTS, "\nrx %p ", skb->data);
|
||||
display_buffer((char *) skb->data, skb->len);
|
||||
#endif
|
||||
|
||||
/* check whether WDS is enabled and whether the data frame is a WDS frame */
|
||||
|
||||
if (init_wds) {
|
||||
/* WDS enabled, check for the wds address on the first 6 bytes of the buffer */
|
||||
src = skb->data + 6;
|
||||
memmove(skb->data, src, skb->len - 6);
|
||||
skb_trim(skb, skb->len - 6);
|
||||
}
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "Fragment size %i in skb at %p\n", size, skb);
|
||||
DEBUG(SHOW_TRACING, "Skb data at %p, length %i\n", skb->data, skb->len);
|
||||
|
||||
/* display the buffer contents for debugging */
|
||||
DEBUG(SHOW_BUFFER_CONTENTS, "\nrx %p ", skb->data);
|
||||
display_buffer((char *) skb->data, skb->len);
|
||||
#endif
|
||||
/* take care of monitor mode and spy monitoring. */
|
||||
if (unlikely(priv->iw_mode == IW_MODE_MONITOR)) {
|
||||
skb->dev = ndev;
|
||||
discard = islpci_monitor_rx(priv, &skb);
|
||||
} else {
|
||||
if (unlikely(skb->data[2 * ETH_ALEN] == 0)) {
|
||||
/* The packet has a rx_annex. Read it for spy monitoring, Then
|
||||
* remove it, while keeping the 2 leading MAC addr.
|
||||
*/
|
||||
struct iw_quality wstats;
|
||||
struct rx_annex_header *annex =
|
||||
(struct rx_annex_header *) skb->data;
|
||||
wstats.level = annex->rfmon.rssi;
|
||||
/* The noise value can be a bit outdated if nobody's
|
||||
* reading wireless stats... */
|
||||
wstats.noise = priv->local_iwstatistics.qual.noise;
|
||||
wstats.qual = wstats.level - wstats.noise;
|
||||
wstats.updated = 0x07;
|
||||
/* Update spy records */
|
||||
wireless_spy_update(ndev, annex->addr2, &wstats);
|
||||
|
||||
skb_copy_from_linear_data(skb,
|
||||
(skb->data +
|
||||
sizeof(struct rfmon_header)),
|
||||
2 * ETH_ALEN);
|
||||
skb_pull(skb, sizeof (struct rfmon_header));
|
||||
}
|
||||
skb->protocol = eth_type_trans(skb, ndev);
|
||||
}
|
||||
skb->ip_summed = CHECKSUM_NONE;
|
||||
ndev->stats.rx_packets++;
|
||||
ndev->stats.rx_bytes += size;
|
||||
|
||||
/* deliver the skb to the network layer */
|
||||
#ifdef ISLPCI_ETH_DEBUG
|
||||
printk
|
||||
("islpci_eth_receive:netif_rx %2.2X %2.2X %2.2X %2.2X %2.2X %2.2X\n",
|
||||
skb->data[0], skb->data[1], skb->data[2], skb->data[3],
|
||||
skb->data[4], skb->data[5]);
|
||||
#endif
|
||||
if (unlikely(discard)) {
|
||||
dev_kfree_skb_irq(skb);
|
||||
skb = NULL;
|
||||
} else
|
||||
netif_rx(skb);
|
||||
|
||||
/* increment the read index for the rx data low queue */
|
||||
priv->free_data_rx++;
|
||||
|
||||
/* add one or more sk_buff structures */
|
||||
while (index =
|
||||
le32_to_cpu(control_block->
|
||||
driver_curr_frag[ISL38XX_CB_RX_DATA_LQ]),
|
||||
index - priv->free_data_rx < ISL38XX_CB_RX_QSIZE) {
|
||||
/* allocate an sk_buff for received data frames storage
|
||||
* include any required allignment operations */
|
||||
skb = dev_alloc_skb(MAX_FRAGMENT_SIZE_RX + 2);
|
||||
if (unlikely(skb == NULL)) {
|
||||
/* error allocating an sk_buff structure elements */
|
||||
DEBUG(SHOW_ERROR_MESSAGES, "Error allocating skb\n");
|
||||
break;
|
||||
}
|
||||
skb_reserve(skb, (4 - (long) skb->data) & 0x03);
|
||||
/* store the new skb structure pointer */
|
||||
index = index % ISL38XX_CB_RX_QSIZE;
|
||||
priv->data_low_rx[index] = skb;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING,
|
||||
"new alloc skb %p skb->data %p skb->len %u index %u truesize %u\n",
|
||||
skb, skb->data, skb->len, index, skb->truesize);
|
||||
#endif
|
||||
|
||||
/* set the streaming DMA mapping for proper PCI bus operation */
|
||||
priv->pci_map_rx_address[index] =
|
||||
dma_map_single(&priv->pdev->dev, (void *)skb->data,
|
||||
MAX_FRAGMENT_SIZE_RX + 2, DMA_FROM_DEVICE);
|
||||
if (dma_mapping_error(&priv->pdev->dev, priv->pci_map_rx_address[index])) {
|
||||
/* error mapping the buffer to device accessible memory address */
|
||||
DEBUG(SHOW_ERROR_MESSAGES,
|
||||
"Error mapping DMA address\n");
|
||||
|
||||
/* free the skbuf structure before aborting */
|
||||
dev_kfree_skb_irq(skb);
|
||||
skb = NULL;
|
||||
break;
|
||||
}
|
||||
/* update the fragment address */
|
||||
control_block->rx_data_low[index].address =
|
||||
cpu_to_le32((u32)priv->pci_map_rx_address[index]);
|
||||
wmb();
|
||||
|
||||
/* increment the driver read pointer */
|
||||
le32_add_cpu(&control_block->
|
||||
driver_curr_frag[ISL38XX_CB_RX_DATA_LQ], 1);
|
||||
}
|
||||
|
||||
/* trigger the device */
|
||||
islpci_trigger(priv);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
islpci_do_reset_and_wake(struct work_struct *work)
|
||||
{
|
||||
islpci_private *priv = container_of(work, islpci_private, reset_task);
|
||||
|
||||
islpci_reset(priv, 1);
|
||||
priv->reset_task_pending = 0;
|
||||
smp_wmb();
|
||||
netif_wake_queue(priv->ndev);
|
||||
}
|
||||
|
||||
void
|
||||
islpci_eth_tx_timeout(struct net_device *ndev, unsigned int txqueue)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
|
||||
/* increment the transmit error counter */
|
||||
ndev->stats.tx_errors++;
|
||||
|
||||
if (!priv->reset_task_pending) {
|
||||
printk(KERN_WARNING
|
||||
"%s: tx_timeout, scheduling reset", ndev->name);
|
||||
netif_stop_queue(ndev);
|
||||
priv->reset_task_pending = 1;
|
||||
schedule_work(&priv->reset_task);
|
||||
} else {
|
||||
printk(KERN_WARNING
|
||||
"%s: tx_timeout, waiting for reset", ndev->name);
|
||||
}
|
||||
}
|
|
@ -1,59 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
*/
|
||||
|
||||
#ifndef _ISLPCI_ETH_H
|
||||
#define _ISLPCI_ETH_H
|
||||
|
||||
#include "isl_38xx.h"
|
||||
#include "islpci_dev.h"
|
||||
|
||||
struct rfmon_header {
|
||||
__le16 unk0; /* = 0x0000 */
|
||||
__le16 length; /* = 0x1400 */
|
||||
__le32 clock; /* 1MHz clock */
|
||||
u8 flags;
|
||||
u8 unk1;
|
||||
u8 rate;
|
||||
u8 unk2;
|
||||
__le16 freq;
|
||||
__le16 unk3;
|
||||
u8 rssi;
|
||||
u8 padding[3];
|
||||
} __packed;
|
||||
|
||||
struct rx_annex_header {
|
||||
u8 addr1[ETH_ALEN];
|
||||
u8 addr2[ETH_ALEN];
|
||||
struct rfmon_header rfmon;
|
||||
} __packed;
|
||||
|
||||
/* wlan-ng (and hopefully others) AVS header, version one. Fields in
|
||||
* network byte order. */
|
||||
#define P80211CAPTURE_VERSION 0x80211001
|
||||
|
||||
struct avs_80211_1_header {
|
||||
__be32 version;
|
||||
__be32 length;
|
||||
__be64 mactime;
|
||||
__be64 hosttime;
|
||||
__be32 phytype;
|
||||
__be32 channel;
|
||||
__be32 datarate;
|
||||
__be32 antenna;
|
||||
__be32 priority;
|
||||
__be32 ssi_type;
|
||||
__be32 ssi_signal;
|
||||
__be32 ssi_noise;
|
||||
__be32 preamble;
|
||||
__be32 encoding;
|
||||
};
|
||||
|
||||
void islpci_eth_cleanup_transmit(islpci_private *, isl38xx_control_block *);
|
||||
netdev_tx_t islpci_eth_transmit(struct sk_buff *, struct net_device *);
|
||||
int islpci_eth_receive(islpci_private *);
|
||||
void islpci_eth_tx_timeout(struct net_device *, unsigned int txqueue);
|
||||
void islpci_do_reset_and_wake(struct work_struct *);
|
||||
|
||||
#endif /* _ISL_GEN_H */
|
|
@ -1,316 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* Copyright (C) 2003 Herbert Valerio Riedel <hvr@gnu.org>
|
||||
*/
|
||||
|
||||
#include <linux/interrupt.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/init.h> /* For __init, __exit */
|
||||
#include <linux/dma-mapping.h>
|
||||
|
||||
#include "prismcompat.h"
|
||||
#include "islpci_dev.h"
|
||||
#include "islpci_mgt.h" /* for pc_debug */
|
||||
#include "isl_oid.h"
|
||||
|
||||
MODULE_AUTHOR("[Intersil] R.Bastings and W.Termorshuizen, The prism54.org Development Team <prism54-devel@prism54.org>");
|
||||
MODULE_DESCRIPTION("The Prism54 802.11 Wireless LAN adapter");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
static int init_pcitm = 0;
|
||||
module_param(init_pcitm, int, 0);
|
||||
|
||||
/* In this order: vendor, device, subvendor, subdevice, class, class_mask,
|
||||
* driver_data
|
||||
* If you have an update for this please contact prism54-devel@prism54.org
|
||||
* The latest list can be found at http://wireless.wiki.kernel.org/en/users/Drivers/p54
|
||||
*/
|
||||
static const struct pci_device_id prism54_id_tbl[] = {
|
||||
/* Intersil PRISM Duette/Prism GT Wireless LAN adapter */
|
||||
{
|
||||
0x1260, 0x3890,
|
||||
PCI_ANY_ID, PCI_ANY_ID,
|
||||
0, 0, 0
|
||||
},
|
||||
|
||||
/* 3COM 3CRWE154G72 Wireless LAN adapter */
|
||||
{
|
||||
PCI_VDEVICE(3COM, 0x6001), 0
|
||||
},
|
||||
|
||||
/* Intersil PRISM Indigo Wireless LAN adapter */
|
||||
{
|
||||
0x1260, 0x3877,
|
||||
PCI_ANY_ID, PCI_ANY_ID,
|
||||
0, 0, 0
|
||||
},
|
||||
|
||||
/* Intersil PRISM Javelin/Xbow Wireless LAN adapter */
|
||||
{
|
||||
0x1260, 0x3886,
|
||||
PCI_ANY_ID, PCI_ANY_ID,
|
||||
0, 0, 0
|
||||
},
|
||||
|
||||
/* End of list */
|
||||
{0,0,0,0,0,0,0}
|
||||
};
|
||||
|
||||
/* register the device with the Hotplug facilities of the kernel */
|
||||
MODULE_DEVICE_TABLE(pci, prism54_id_tbl);
|
||||
|
||||
static int prism54_probe(struct pci_dev *, const struct pci_device_id *);
|
||||
static void prism54_remove(struct pci_dev *);
|
||||
static int __maybe_unused prism54_suspend(struct device *);
|
||||
static int __maybe_unused prism54_resume(struct device *);
|
||||
|
||||
static SIMPLE_DEV_PM_OPS(prism54_pm_ops, prism54_suspend, prism54_resume);
|
||||
|
||||
static struct pci_driver prism54_driver = {
|
||||
.name = DRV_NAME,
|
||||
.id_table = prism54_id_tbl,
|
||||
.probe = prism54_probe,
|
||||
.remove = prism54_remove,
|
||||
.driver.pm = &prism54_pm_ops,
|
||||
};
|
||||
|
||||
/******************************************************************************
|
||||
Module initialization functions
|
||||
******************************************************************************/
|
||||
|
||||
static int
|
||||
prism54_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
{
|
||||
struct net_device *ndev;
|
||||
u8 latency_tmr;
|
||||
u32 mem_addr;
|
||||
islpci_private *priv;
|
||||
int rvalue;
|
||||
|
||||
/* Enable the pci device */
|
||||
if (pci_enable_device(pdev)) {
|
||||
printk(KERN_ERR "%s: pci_enable_device() failed.\n", DRV_NAME);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
/* check whether the latency timer is set correctly */
|
||||
pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency_tmr);
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "latency timer: %x\n", latency_tmr);
|
||||
#endif
|
||||
if (latency_tmr < PCIDEVICE_LATENCY_TIMER_MIN) {
|
||||
/* set the latency timer */
|
||||
pci_write_config_byte(pdev, PCI_LATENCY_TIMER,
|
||||
PCIDEVICE_LATENCY_TIMER_VAL);
|
||||
}
|
||||
|
||||
/* enable PCI DMA */
|
||||
if (dma_set_mask(&pdev->dev, DMA_BIT_MASK(32))) {
|
||||
printk(KERN_ERR "%s: 32-bit PCI DMA not supported", DRV_NAME);
|
||||
goto do_pci_disable_device;
|
||||
}
|
||||
|
||||
/* 0x40 is the programmable timer to configure the response timeout (TRDY_TIMEOUT)
|
||||
* 0x41 is the programmable timer to configure the retry timeout (RETRY_TIMEOUT)
|
||||
* The RETRY_TIMEOUT is used to set the number of retries that the core, as a
|
||||
* Master, will perform before abandoning a cycle. The default value for
|
||||
* RETRY_TIMEOUT is 0x80, which far exceeds the PCI 2.1 requirement for new
|
||||
* devices. A write of zero to the RETRY_TIMEOUT register disables this
|
||||
* function to allow use with any non-compliant legacy devices that may
|
||||
* execute more retries.
|
||||
*
|
||||
* Writing zero to both these two registers will disable both timeouts and
|
||||
* *can* solve problems caused by devices that are slow to respond.
|
||||
* Make this configurable - MSW
|
||||
*/
|
||||
if ( init_pcitm >= 0 ) {
|
||||
pci_write_config_byte(pdev, 0x40, (u8)init_pcitm);
|
||||
pci_write_config_byte(pdev, 0x41, (u8)init_pcitm);
|
||||
} else {
|
||||
printk(KERN_INFO "PCI TRDY/RETRY unchanged\n");
|
||||
}
|
||||
|
||||
/* request the pci device I/O regions */
|
||||
rvalue = pci_request_regions(pdev, DRV_NAME);
|
||||
if (rvalue) {
|
||||
printk(KERN_ERR "%s: pci_request_regions failure (rc=%d)\n",
|
||||
DRV_NAME, rvalue);
|
||||
goto do_pci_disable_device;
|
||||
}
|
||||
|
||||
/* check if the memory window is indeed set */
|
||||
rvalue = pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &mem_addr);
|
||||
if (rvalue || !mem_addr) {
|
||||
printk(KERN_ERR "%s: PCI device memory region not configured; fix your BIOS or CardBus bridge/drivers\n",
|
||||
DRV_NAME);
|
||||
goto do_pci_release_regions;
|
||||
}
|
||||
|
||||
/* enable PCI bus-mastering */
|
||||
DEBUG(SHOW_TRACING, "%s: pci_set_master(pdev)\n", DRV_NAME);
|
||||
pci_set_master(pdev);
|
||||
|
||||
/* enable MWI */
|
||||
pci_try_set_mwi(pdev);
|
||||
|
||||
/* setup the network device interface and its structure */
|
||||
if (!(ndev = islpci_setup(pdev))) {
|
||||
/* error configuring the driver as a network device */
|
||||
printk(KERN_ERR "%s: could not configure network device\n",
|
||||
DRV_NAME);
|
||||
goto do_pci_clear_mwi;
|
||||
}
|
||||
|
||||
priv = netdev_priv(ndev);
|
||||
islpci_set_state(priv, PRV_STATE_PREBOOT); /* we are attempting to boot */
|
||||
|
||||
/* card is in unknown state yet, might have some interrupts pending */
|
||||
isl38xx_disable_interrupts(priv->device_base);
|
||||
|
||||
/* request for the interrupt before uploading the firmware */
|
||||
rvalue = request_irq(pdev->irq, islpci_interrupt,
|
||||
IRQF_SHARED, ndev->name, priv);
|
||||
|
||||
if (rvalue) {
|
||||
/* error, could not hook the handler to the irq */
|
||||
printk(KERN_ERR "%s: could not install IRQ handler\n",
|
||||
ndev->name);
|
||||
goto do_unregister_netdev;
|
||||
}
|
||||
|
||||
/* firmware upload is triggered in islpci_open */
|
||||
|
||||
return 0;
|
||||
|
||||
do_unregister_netdev:
|
||||
unregister_netdev(ndev);
|
||||
islpci_free_memory(priv);
|
||||
free_netdev(ndev);
|
||||
priv = NULL;
|
||||
do_pci_clear_mwi:
|
||||
pci_clear_mwi(pdev);
|
||||
do_pci_release_regions:
|
||||
pci_release_regions(pdev);
|
||||
do_pci_disable_device:
|
||||
pci_disable_device(pdev);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
/* set by cleanup_module */
|
||||
static volatile int __in_cleanup_module = 0;
|
||||
|
||||
/* this one removes one(!!) instance only */
|
||||
static void
|
||||
prism54_remove(struct pci_dev *pdev)
|
||||
{
|
||||
struct net_device *ndev = pci_get_drvdata(pdev);
|
||||
islpci_private *priv = ndev ? netdev_priv(ndev) : NULL;
|
||||
BUG_ON(!priv);
|
||||
|
||||
if (!__in_cleanup_module) {
|
||||
printk(KERN_DEBUG "%s: hot unplug detected\n", ndev->name);
|
||||
islpci_set_state(priv, PRV_STATE_OFF);
|
||||
}
|
||||
|
||||
printk(KERN_DEBUG "%s: removing device\n", ndev->name);
|
||||
|
||||
unregister_netdev(ndev);
|
||||
|
||||
/* free the interrupt request */
|
||||
|
||||
if (islpci_get_state(priv) != PRV_STATE_OFF) {
|
||||
isl38xx_disable_interrupts(priv->device_base);
|
||||
islpci_set_state(priv, PRV_STATE_OFF);
|
||||
/* This bellow causes a lockup at rmmod time. It might be
|
||||
* because some interrupts still linger after rmmod time,
|
||||
* see bug #17 */
|
||||
/* pci_set_power_state(pdev, 3);*/ /* try to power-off */
|
||||
}
|
||||
|
||||
free_irq(pdev->irq, priv);
|
||||
|
||||
/* free the PCI memory and unmap the remapped page */
|
||||
islpci_free_memory(priv);
|
||||
|
||||
free_netdev(ndev);
|
||||
priv = NULL;
|
||||
|
||||
pci_clear_mwi(pdev);
|
||||
|
||||
pci_release_regions(pdev);
|
||||
|
||||
pci_disable_device(pdev);
|
||||
}
|
||||
|
||||
static int __maybe_unused
|
||||
prism54_suspend(struct device *dev)
|
||||
{
|
||||
struct net_device *ndev = dev_get_drvdata(dev);
|
||||
islpci_private *priv = ndev ? netdev_priv(ndev) : NULL;
|
||||
BUG_ON(!priv);
|
||||
|
||||
/* tell the device not to trigger interrupts for now... */
|
||||
isl38xx_disable_interrupts(priv->device_base);
|
||||
|
||||
/* from now on assume the hardware was already powered down
|
||||
and don't touch it anymore */
|
||||
islpci_set_state(priv, PRV_STATE_OFF);
|
||||
|
||||
netif_stop_queue(ndev);
|
||||
netif_device_detach(ndev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused
|
||||
prism54_resume(struct device *dev)
|
||||
{
|
||||
struct net_device *ndev = dev_get_drvdata(dev);
|
||||
islpci_private *priv = ndev ? netdev_priv(ndev) : NULL;
|
||||
|
||||
BUG_ON(!priv);
|
||||
|
||||
printk(KERN_NOTICE "%s: got resume request\n", ndev->name);
|
||||
|
||||
/* alright let's go into the PREBOOT state */
|
||||
islpci_reset(priv, 1);
|
||||
|
||||
netif_device_attach(ndev);
|
||||
netif_start_queue(ndev);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __init
|
||||
prism54_module_init(void)
|
||||
{
|
||||
printk(KERN_INFO "Loaded %s driver, version %s\n",
|
||||
DRV_NAME, DRV_VERSION);
|
||||
|
||||
__bug_on_wrong_struct_sizes ();
|
||||
|
||||
return pci_register_driver(&prism54_driver);
|
||||
}
|
||||
|
||||
/* by the time prism54_module_exit() terminates, as a postcondition
|
||||
* all instances will have been destroyed by calls to
|
||||
* prism54_remove() */
|
||||
static void __exit
|
||||
prism54_module_exit(void)
|
||||
{
|
||||
__in_cleanup_module = 1;
|
||||
|
||||
pci_unregister_driver(&prism54_driver);
|
||||
|
||||
printk(KERN_INFO "Unloaded %s driver\n", DRV_NAME);
|
||||
|
||||
__in_cleanup_module = 0;
|
||||
}
|
||||
|
||||
/* register entry points */
|
||||
module_init(prism54_module_init);
|
||||
module_exit(prism54_module_exit);
|
||||
/* EOF */
|
|
@ -1,491 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* Copyright 2004 Jens Maurer <Jens.Maurer@gmx.net>
|
||||
*/
|
||||
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#include <asm/io.h>
|
||||
#include <linux/if_arp.h>
|
||||
|
||||
#include "prismcompat.h"
|
||||
#include "isl_38xx.h"
|
||||
#include "islpci_mgt.h"
|
||||
#include "isl_oid.h" /* additional types and defs for isl38xx fw */
|
||||
#include "isl_ioctl.h"
|
||||
|
||||
#include <net/iw_handler.h>
|
||||
|
||||
/******************************************************************************
|
||||
Global variable definition section
|
||||
******************************************************************************/
|
||||
int pc_debug = VERBOSE;
|
||||
module_param(pc_debug, int, 0);
|
||||
|
||||
/******************************************************************************
|
||||
Driver general functions
|
||||
******************************************************************************/
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
void
|
||||
display_buffer(char *buffer, int length)
|
||||
{
|
||||
if ((pc_debug & SHOW_BUFFER_CONTENTS) == 0)
|
||||
return;
|
||||
|
||||
while (length > 0) {
|
||||
printk("[%02x]", *buffer & 255);
|
||||
length--;
|
||||
buffer++;
|
||||
}
|
||||
|
||||
printk("\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
/*****************************************************************************
|
||||
Queue handling for management frames
|
||||
******************************************************************************/
|
||||
|
||||
/*
|
||||
* Helper function to create a PIMFOR management frame header.
|
||||
*/
|
||||
static void
|
||||
pimfor_encode_header(int operation, u32 oid, u32 length, pimfor_header_t *h)
|
||||
{
|
||||
h->version = PIMFOR_VERSION;
|
||||
h->operation = operation;
|
||||
h->device_id = PIMFOR_DEV_ID_MHLI_MIB;
|
||||
h->flags = 0;
|
||||
h->oid = cpu_to_be32(oid);
|
||||
h->length = cpu_to_be32(length);
|
||||
}
|
||||
|
||||
/*
|
||||
* Helper function to analyze a PIMFOR management frame header.
|
||||
*/
|
||||
static pimfor_header_t *
|
||||
pimfor_decode_header(void *data, int len)
|
||||
{
|
||||
pimfor_header_t *h = data;
|
||||
|
||||
while ((void *) h < data + len) {
|
||||
if (h->flags & PIMFOR_FLAG_LITTLE_ENDIAN) {
|
||||
le32_to_cpus(&h->oid);
|
||||
le32_to_cpus(&h->length);
|
||||
} else {
|
||||
be32_to_cpus(&h->oid);
|
||||
be32_to_cpus(&h->length);
|
||||
}
|
||||
if (h->oid != OID_INL_TUNNEL)
|
||||
return h;
|
||||
h++;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Fill the receive queue for management frames with fresh buffers.
|
||||
*/
|
||||
int
|
||||
islpci_mgmt_rx_fill(struct net_device *ndev)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
isl38xx_control_block *cb = /* volatile not needed */
|
||||
(isl38xx_control_block *) priv->control_block;
|
||||
u32 curr = le32_to_cpu(cb->driver_curr_frag[ISL38XX_CB_RX_MGMTQ]);
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "islpci_mgmt_rx_fill\n");
|
||||
#endif
|
||||
|
||||
while (curr - priv->index_mgmt_rx < ISL38XX_CB_MGMT_QSIZE) {
|
||||
u32 index = curr % ISL38XX_CB_MGMT_QSIZE;
|
||||
struct islpci_membuf *buf = &priv->mgmt_rx[index];
|
||||
isl38xx_fragment *frag = &cb->rx_data_mgmt[index];
|
||||
|
||||
if (buf->mem == NULL) {
|
||||
buf->mem = kmalloc(MGMT_FRAME_SIZE, GFP_ATOMIC);
|
||||
if (!buf->mem)
|
||||
return -ENOMEM;
|
||||
buf->size = MGMT_FRAME_SIZE;
|
||||
}
|
||||
if (buf->pci_addr == 0) {
|
||||
buf->pci_addr = dma_map_single(&priv->pdev->dev,
|
||||
buf->mem,
|
||||
MGMT_FRAME_SIZE,
|
||||
DMA_FROM_DEVICE);
|
||||
if (dma_mapping_error(&priv->pdev->dev, buf->pci_addr)) {
|
||||
printk(KERN_WARNING
|
||||
"Failed to make memory DMA'able.\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
}
|
||||
|
||||
/* be safe: always reset control block information */
|
||||
frag->size = cpu_to_le16(MGMT_FRAME_SIZE);
|
||||
frag->flags = 0;
|
||||
frag->address = cpu_to_le32(buf->pci_addr);
|
||||
curr++;
|
||||
|
||||
/* The fragment address in the control block must have
|
||||
* been written before announcing the frame buffer to
|
||||
* device */
|
||||
wmb();
|
||||
cb->driver_curr_frag[ISL38XX_CB_RX_MGMTQ] = cpu_to_le32(curr);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Create and transmit a management frame using "operation" and "oid",
|
||||
* with arguments data/length.
|
||||
* We either return an error and free the frame, or we return 0 and
|
||||
* islpci_mgt_cleanup_transmit() frees the frame in the tx-done
|
||||
* interrupt.
|
||||
*/
|
||||
static int
|
||||
islpci_mgt_transmit(struct net_device *ndev, int operation, unsigned long oid,
|
||||
void *data, int length)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
isl38xx_control_block *cb =
|
||||
(isl38xx_control_block *) priv->control_block;
|
||||
void *p;
|
||||
int err = -EINVAL;
|
||||
unsigned long flags;
|
||||
isl38xx_fragment *frag;
|
||||
struct islpci_membuf buf;
|
||||
u32 curr_frag;
|
||||
int index;
|
||||
int frag_len = length + PIMFOR_HEADER_SIZE;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "islpci_mgt_transmit\n");
|
||||
#endif
|
||||
|
||||
if (frag_len > MGMT_FRAME_SIZE) {
|
||||
printk(KERN_DEBUG "%s: mgmt frame too large %d\n",
|
||||
ndev->name, frag_len);
|
||||
goto error;
|
||||
}
|
||||
|
||||
err = -ENOMEM;
|
||||
p = buf.mem = kmalloc(frag_len, GFP_KERNEL);
|
||||
if (!buf.mem)
|
||||
goto error;
|
||||
|
||||
buf.size = frag_len;
|
||||
|
||||
/* create the header directly in the fragment data area */
|
||||
pimfor_encode_header(operation, oid, length, (pimfor_header_t *) p);
|
||||
p += PIMFOR_HEADER_SIZE;
|
||||
|
||||
if (data)
|
||||
memcpy(p, data, length);
|
||||
else
|
||||
memset(p, 0, length);
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
{
|
||||
pimfor_header_t *h = buf.mem;
|
||||
DEBUG(SHOW_PIMFOR_FRAMES,
|
||||
"PIMFOR: op %i, oid 0x%08lx, device %i, flags 0x%x length 0x%x\n",
|
||||
h->operation, oid, h->device_id, h->flags, length);
|
||||
|
||||
/* display the buffer contents for debugging */
|
||||
display_buffer((char *) h, sizeof (pimfor_header_t));
|
||||
display_buffer(p, length);
|
||||
}
|
||||
#endif
|
||||
|
||||
err = -ENOMEM;
|
||||
buf.pci_addr = dma_map_single(&priv->pdev->dev, buf.mem, frag_len,
|
||||
DMA_TO_DEVICE);
|
||||
if (dma_mapping_error(&priv->pdev->dev, buf.pci_addr)) {
|
||||
printk(KERN_WARNING "%s: cannot map PCI memory for mgmt\n",
|
||||
ndev->name);
|
||||
goto error_free;
|
||||
}
|
||||
|
||||
/* Protect the control block modifications against interrupts. */
|
||||
spin_lock_irqsave(&priv->slock, flags);
|
||||
curr_frag = le32_to_cpu(cb->driver_curr_frag[ISL38XX_CB_TX_MGMTQ]);
|
||||
if (curr_frag - priv->index_mgmt_tx >= ISL38XX_CB_MGMT_QSIZE) {
|
||||
printk(KERN_WARNING "%s: mgmt tx queue is still full\n",
|
||||
ndev->name);
|
||||
goto error_unlock;
|
||||
}
|
||||
|
||||
/* commit the frame to the tx device queue */
|
||||
index = curr_frag % ISL38XX_CB_MGMT_QSIZE;
|
||||
priv->mgmt_tx[index] = buf;
|
||||
frag = &cb->tx_data_mgmt[index];
|
||||
frag->size = cpu_to_le16(frag_len);
|
||||
frag->flags = 0; /* for any other than the last fragment, set to 1 */
|
||||
frag->address = cpu_to_le32(buf.pci_addr);
|
||||
|
||||
/* The fragment address in the control block must have
|
||||
* been written before announcing the frame buffer to
|
||||
* device */
|
||||
wmb();
|
||||
cb->driver_curr_frag[ISL38XX_CB_TX_MGMTQ] = cpu_to_le32(curr_frag + 1);
|
||||
spin_unlock_irqrestore(&priv->slock, flags);
|
||||
|
||||
/* trigger the device */
|
||||
islpci_trigger(priv);
|
||||
return 0;
|
||||
|
||||
error_unlock:
|
||||
spin_unlock_irqrestore(&priv->slock, flags);
|
||||
error_free:
|
||||
kfree(buf.mem);
|
||||
error:
|
||||
return err;
|
||||
}
|
||||
|
||||
/*
|
||||
* Receive a management frame from the device.
|
||||
* This can be an arbitrary number of traps, and at most one response
|
||||
* frame for a previous request sent via islpci_mgt_transmit().
|
||||
*/
|
||||
int
|
||||
islpci_mgt_receive(struct net_device *ndev)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
isl38xx_control_block *cb =
|
||||
(isl38xx_control_block *) priv->control_block;
|
||||
u32 curr_frag;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "islpci_mgt_receive\n");
|
||||
#endif
|
||||
|
||||
/* Only once per interrupt, determine fragment range to
|
||||
* process. This avoids an endless loop (i.e. lockup) if
|
||||
* frames come in faster than we can process them. */
|
||||
curr_frag = le32_to_cpu(cb->device_curr_frag[ISL38XX_CB_RX_MGMTQ]);
|
||||
barrier();
|
||||
|
||||
for (; priv->index_mgmt_rx < curr_frag; priv->index_mgmt_rx++) {
|
||||
pimfor_header_t *header;
|
||||
u32 index = priv->index_mgmt_rx % ISL38XX_CB_MGMT_QSIZE;
|
||||
struct islpci_membuf *buf = &priv->mgmt_rx[index];
|
||||
u16 frag_len;
|
||||
int size;
|
||||
struct islpci_mgmtframe *frame;
|
||||
|
||||
/* I have no idea (and no documentation) if flags != 0
|
||||
* is possible. Drop the frame, reuse the buffer. */
|
||||
if (le16_to_cpu(cb->rx_data_mgmt[index].flags) != 0) {
|
||||
printk(KERN_WARNING "%s: unknown flags 0x%04x\n",
|
||||
ndev->name,
|
||||
le16_to_cpu(cb->rx_data_mgmt[index].flags));
|
||||
continue;
|
||||
}
|
||||
|
||||
/* The device only returns the size of the header(s) here. */
|
||||
frag_len = le16_to_cpu(cb->rx_data_mgmt[index].size);
|
||||
|
||||
/*
|
||||
* We appear to have no way to tell the device the
|
||||
* size of a receive buffer. Thus, if this check
|
||||
* triggers, we likely have kernel heap corruption. */
|
||||
if (frag_len > MGMT_FRAME_SIZE) {
|
||||
printk(KERN_WARNING
|
||||
"%s: Bogus packet size of %d (%#x).\n",
|
||||
ndev->name, frag_len, frag_len);
|
||||
frag_len = MGMT_FRAME_SIZE;
|
||||
}
|
||||
|
||||
/* Ensure the results of device DMA are visible to the CPU. */
|
||||
dma_sync_single_for_cpu(&priv->pdev->dev, buf->pci_addr,
|
||||
buf->size, DMA_FROM_DEVICE);
|
||||
|
||||
/* Perform endianess conversion for PIMFOR header in-place. */
|
||||
header = pimfor_decode_header(buf->mem, frag_len);
|
||||
if (!header) {
|
||||
printk(KERN_WARNING "%s: no PIMFOR header found\n",
|
||||
ndev->name);
|
||||
continue;
|
||||
}
|
||||
|
||||
/* The device ID from the PIMFOR packet received from
|
||||
* the MVC is always 0. We forward a sensible device_id.
|
||||
* Not that anyone upstream would care... */
|
||||
header->device_id = priv->ndev->ifindex;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_PIMFOR_FRAMES,
|
||||
"PIMFOR: op %i, oid 0x%08x, device %i, flags 0x%x length 0x%x\n",
|
||||
header->operation, header->oid, header->device_id,
|
||||
header->flags, header->length);
|
||||
|
||||
/* display the buffer contents for debugging */
|
||||
display_buffer((char *) header, PIMFOR_HEADER_SIZE);
|
||||
display_buffer((char *) header + PIMFOR_HEADER_SIZE,
|
||||
header->length);
|
||||
#endif
|
||||
|
||||
/* nobody sends these */
|
||||
if (header->flags & PIMFOR_FLAG_APPLIC_ORIGIN) {
|
||||
printk(KERN_DEBUG
|
||||
"%s: errant PIMFOR application frame\n",
|
||||
ndev->name);
|
||||
continue;
|
||||
}
|
||||
|
||||
/* Determine frame size, skipping OID_INL_TUNNEL headers. */
|
||||
size = PIMFOR_HEADER_SIZE + header->length;
|
||||
frame = kmalloc(sizeof(struct islpci_mgmtframe) + size,
|
||||
GFP_ATOMIC);
|
||||
if (!frame)
|
||||
continue;
|
||||
|
||||
frame->ndev = ndev;
|
||||
memcpy(&frame->buf, header, size);
|
||||
frame->header = (pimfor_header_t *) frame->buf;
|
||||
frame->data = frame->buf + PIMFOR_HEADER_SIZE;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_PIMFOR_FRAMES,
|
||||
"frame: header: %p, data: %p, size: %d\n",
|
||||
frame->header, frame->data, size);
|
||||
#endif
|
||||
|
||||
if (header->operation == PIMFOR_OP_TRAP) {
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
printk(KERN_DEBUG
|
||||
"TRAP: oid 0x%x, device %i, flags 0x%x length %i\n",
|
||||
header->oid, header->device_id, header->flags,
|
||||
header->length);
|
||||
#endif
|
||||
|
||||
/* Create work to handle trap out of interrupt
|
||||
* context. */
|
||||
INIT_WORK(&frame->ws, prism54_process_trap);
|
||||
schedule_work(&frame->ws);
|
||||
|
||||
} else {
|
||||
/* Signal the one waiting process that a response
|
||||
* has been received. */
|
||||
if ((frame = xchg(&priv->mgmt_received, frame)) != NULL) {
|
||||
printk(KERN_WARNING
|
||||
"%s: mgmt response not collected\n",
|
||||
ndev->name);
|
||||
kfree(frame);
|
||||
}
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_TRACING, "Wake up Mgmt Queue\n");
|
||||
#endif
|
||||
wake_up(&priv->mgmt_wqueue);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Cleanup the transmit queue by freeing all frames handled by the device.
|
||||
*/
|
||||
void
|
||||
islpci_mgt_cleanup_transmit(struct net_device *ndev)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
isl38xx_control_block *cb = /* volatile not needed */
|
||||
(isl38xx_control_block *) priv->control_block;
|
||||
u32 curr_frag;
|
||||
|
||||
#if VERBOSE > SHOW_ERROR_MESSAGES
|
||||
DEBUG(SHOW_FUNCTION_CALLS, "islpci_mgt_cleanup_transmit\n");
|
||||
#endif
|
||||
|
||||
/* Only once per cleanup, determine fragment range to
|
||||
* process. This avoids an endless loop (i.e. lockup) if
|
||||
* the device became confused, incrementing device_curr_frag
|
||||
* rapidly. */
|
||||
curr_frag = le32_to_cpu(cb->device_curr_frag[ISL38XX_CB_TX_MGMTQ]);
|
||||
barrier();
|
||||
|
||||
for (; priv->index_mgmt_tx < curr_frag; priv->index_mgmt_tx++) {
|
||||
int index = priv->index_mgmt_tx % ISL38XX_CB_MGMT_QSIZE;
|
||||
struct islpci_membuf *buf = &priv->mgmt_tx[index];
|
||||
dma_unmap_single(&priv->pdev->dev, buf->pci_addr, buf->size,
|
||||
DMA_TO_DEVICE);
|
||||
buf->pci_addr = 0;
|
||||
kfree(buf->mem);
|
||||
buf->mem = NULL;
|
||||
buf->size = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Perform one request-response transaction to the device.
|
||||
*/
|
||||
int
|
||||
islpci_mgt_transaction(struct net_device *ndev,
|
||||
int operation, unsigned long oid,
|
||||
void *senddata, int sendlen,
|
||||
struct islpci_mgmtframe **recvframe)
|
||||
{
|
||||
islpci_private *priv = netdev_priv(ndev);
|
||||
const long wait_cycle_jiffies = msecs_to_jiffies(ISL38XX_WAIT_CYCLE * 10);
|
||||
long timeout_left = ISL38XX_MAX_WAIT_CYCLES * wait_cycle_jiffies;
|
||||
int err;
|
||||
DEFINE_WAIT(wait);
|
||||
|
||||
*recvframe = NULL;
|
||||
|
||||
if (mutex_lock_interruptible(&priv->mgmt_lock))
|
||||
return -ERESTARTSYS;
|
||||
|
||||
prepare_to_wait(&priv->mgmt_wqueue, &wait, TASK_UNINTERRUPTIBLE);
|
||||
err = islpci_mgt_transmit(ndev, operation, oid, senddata, sendlen);
|
||||
if (err)
|
||||
goto out;
|
||||
|
||||
err = -ETIMEDOUT;
|
||||
while (timeout_left > 0) {
|
||||
int timeleft;
|
||||
struct islpci_mgmtframe *frame;
|
||||
|
||||
timeleft = schedule_timeout_uninterruptible(wait_cycle_jiffies);
|
||||
frame = xchg(&priv->mgmt_received, NULL);
|
||||
if (frame) {
|
||||
if (frame->header->oid == oid) {
|
||||
*recvframe = frame;
|
||||
err = 0;
|
||||
goto out;
|
||||
} else {
|
||||
printk(KERN_DEBUG
|
||||
"%s: expecting oid 0x%x, received 0x%x.\n",
|
||||
ndev->name, (unsigned int) oid,
|
||||
frame->header->oid);
|
||||
kfree(frame);
|
||||
frame = NULL;
|
||||
}
|
||||
}
|
||||
if (timeleft == 0) {
|
||||
printk(KERN_DEBUG
|
||||
"%s: timeout waiting for mgmt response %lu, "
|
||||
"triggering device\n",
|
||||
ndev->name, timeout_left);
|
||||
islpci_trigger(priv);
|
||||
}
|
||||
timeout_left += timeleft - wait_cycle_jiffies;
|
||||
}
|
||||
printk(KERN_WARNING "%s: timeout waiting for mgmt response\n",
|
||||
ndev->name);
|
||||
|
||||
/* TODO: we should reset the device here */
|
||||
out:
|
||||
finish_wait(&priv->mgmt_wqueue, &wait);
|
||||
mutex_unlock(&priv->mgmt_lock);
|
||||
return err;
|
||||
}
|
||||
|
|
@ -1,126 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2002 Intersil Americas Inc.
|
||||
* Copyright (C) 2003 Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
|
||||
*/
|
||||
|
||||
#ifndef _ISLPCI_MGT_H
|
||||
#define _ISLPCI_MGT_H
|
||||
|
||||
#include <linux/wireless.h>
|
||||
#include <linux/skbuff.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
/*
|
||||
* Function definitions
|
||||
*/
|
||||
|
||||
#define K_DEBUG(f, m, args...) do { if(f & m) printk(KERN_DEBUG args); } while(0)
|
||||
#define DEBUG(f, args...) K_DEBUG(f, pc_debug, args)
|
||||
|
||||
extern int pc_debug;
|
||||
#define init_wds 0 /* help compiler optimize away dead code */
|
||||
|
||||
|
||||
/* General driver definitions */
|
||||
#define PCIDEVICE_LATENCY_TIMER_MIN 0x40
|
||||
#define PCIDEVICE_LATENCY_TIMER_VAL 0x50
|
||||
|
||||
/* Debugging verbose definitions */
|
||||
#define SHOW_NOTHING 0x00 /* overrules everything */
|
||||
#define SHOW_ANYTHING 0xFF
|
||||
#define SHOW_ERROR_MESSAGES 0x01
|
||||
#define SHOW_TRAPS 0x02
|
||||
#define SHOW_FUNCTION_CALLS 0x04
|
||||
#define SHOW_TRACING 0x08
|
||||
#define SHOW_QUEUE_INDEXES 0x10
|
||||
#define SHOW_PIMFOR_FRAMES 0x20
|
||||
#define SHOW_BUFFER_CONTENTS 0x40
|
||||
#define VERBOSE 0x01
|
||||
|
||||
/* Default card definitions */
|
||||
#define CARD_DEFAULT_CHANNEL 6
|
||||
#define CARD_DEFAULT_MODE INL_MODE_CLIENT
|
||||
#define CARD_DEFAULT_IW_MODE IW_MODE_INFRA
|
||||
#define CARD_DEFAULT_BSSTYPE DOT11_BSSTYPE_INFRA
|
||||
#define CARD_DEFAULT_CLIENT_SSID ""
|
||||
#define CARD_DEFAULT_AP_SSID "default"
|
||||
#define CARD_DEFAULT_KEY1 "default_key_1"
|
||||
#define CARD_DEFAULT_KEY2 "default_key_2"
|
||||
#define CARD_DEFAULT_KEY3 "default_key_3"
|
||||
#define CARD_DEFAULT_KEY4 "default_key_4"
|
||||
#define CARD_DEFAULT_WEP 0
|
||||
#define CARD_DEFAULT_FILTER 0
|
||||
#define CARD_DEFAULT_WDS 0
|
||||
#define CARD_DEFAULT_AUTHEN DOT11_AUTH_OS
|
||||
#define CARD_DEFAULT_DOT1X 0
|
||||
#define CARD_DEFAULT_MLME_MODE DOT11_MLME_AUTO
|
||||
#define CARD_DEFAULT_CONFORMANCE OID_INL_CONFORMANCE_NONE
|
||||
#define CARD_DEFAULT_PROFILE DOT11_PROFILE_MIXED_G_WIFI
|
||||
#define CARD_DEFAULT_MAXFRAMEBURST DOT11_MAXFRAMEBURST_MIXED_SAFE
|
||||
|
||||
/* PIMFOR package definitions */
|
||||
#define PIMFOR_ETHERTYPE 0x8828
|
||||
#define PIMFOR_HEADER_SIZE 12
|
||||
#define PIMFOR_VERSION 1
|
||||
#define PIMFOR_OP_GET 0
|
||||
#define PIMFOR_OP_SET 1
|
||||
#define PIMFOR_OP_RESPONSE 2
|
||||
#define PIMFOR_OP_ERROR 3
|
||||
#define PIMFOR_OP_TRAP 4
|
||||
#define PIMFOR_OP_RESERVED 5 /* till 255 */
|
||||
#define PIMFOR_DEV_ID_MHLI_MIB 0
|
||||
#define PIMFOR_FLAG_APPLIC_ORIGIN 0x01
|
||||
#define PIMFOR_FLAG_LITTLE_ENDIAN 0x02
|
||||
|
||||
void display_buffer(char *, int);
|
||||
|
||||
/*
|
||||
* Type definition section
|
||||
*
|
||||
* the structure defines only the header allowing copyless
|
||||
* frame handling
|
||||
*/
|
||||
typedef struct {
|
||||
u8 version;
|
||||
u8 operation;
|
||||
u32 oid;
|
||||
u8 device_id;
|
||||
u8 flags;
|
||||
u32 length;
|
||||
} __packed
|
||||
pimfor_header_t;
|
||||
|
||||
/* A received and interrupt-processed management frame, either for
|
||||
* schedule_work(prism54_process_trap) or for priv->mgmt_received,
|
||||
* processed by islpci_mgt_transaction(). */
|
||||
struct islpci_mgmtframe {
|
||||
struct net_device *ndev; /* pointer to network device */
|
||||
pimfor_header_t *header; /* payload header, points into buf */
|
||||
void *data; /* payload ex header, points into buf */
|
||||
struct work_struct ws; /* argument for schedule_work() */
|
||||
char buf[]; /* fragment buffer */
|
||||
};
|
||||
|
||||
int
|
||||
islpci_mgt_receive(struct net_device *ndev);
|
||||
|
||||
int
|
||||
islpci_mgmt_rx_fill(struct net_device *ndev);
|
||||
|
||||
void
|
||||
islpci_mgt_cleanup_transmit(struct net_device *ndev);
|
||||
|
||||
int
|
||||
islpci_mgt_transaction(struct net_device *ndev,
|
||||
int operation, unsigned long oid,
|
||||
void *senddata, int sendlen,
|
||||
struct islpci_mgmtframe **recvframe);
|
||||
|
||||
static inline void
|
||||
islpci_mgt_release(struct islpci_mgmtframe *frame)
|
||||
{
|
||||
kfree(frame);
|
||||
}
|
||||
|
||||
#endif /* _ISLPCI_MGT_H */
|
|
@ -1,889 +0,0 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (C) 2003,2004 Aurelien Alleaume <slts@free.fr>
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/slab.h>
|
||||
|
||||
#include "prismcompat.h"
|
||||
#include "islpci_dev.h"
|
||||
#include "islpci_mgt.h"
|
||||
#include "isl_oid.h"
|
||||
#include "oid_mgt.h"
|
||||
#include "isl_ioctl.h"
|
||||
|
||||
/* to convert between channel and freq */
|
||||
static const int frequency_list_bg[] = { 2412, 2417, 2422, 2427, 2432,
|
||||
2437, 2442, 2447, 2452, 2457, 2462, 2467, 2472, 2484
|
||||
};
|
||||
|
||||
int
|
||||
channel_of_freq(int f)
|
||||
{
|
||||
int c = 0;
|
||||
|
||||
if ((f >= 2412) && (f <= 2484)) {
|
||||
while ((c < 14) && (f != frequency_list_bg[c]))
|
||||
c++;
|
||||
return (c >= 14) ? 0 : ++c;
|
||||
} else if ((f >= (int) 5000) && (f <= (int) 6000)) {
|
||||
return ( (f - 5000) / 5 );
|
||||
} else
|
||||
return 0;
|
||||
}
|
||||
|
||||
#define OID_STRUCT(name,oid,s,t) [name] = {oid, 0, sizeof(s), t}
|
||||
#define OID_STRUCT_C(name,oid,s,t) OID_STRUCT(name,oid,s,t | OID_FLAG_CACHED)
|
||||
#define OID_U32(name,oid) OID_STRUCT(name,oid,u32,OID_TYPE_U32)
|
||||
#define OID_U32_C(name,oid) OID_STRUCT_C(name,oid,u32,OID_TYPE_U32)
|
||||
#define OID_STRUCT_MLME(name,oid) OID_STRUCT(name,oid,struct obj_mlme,OID_TYPE_MLME)
|
||||
#define OID_STRUCT_MLMEEX(name,oid) OID_STRUCT(name,oid,struct obj_mlmeex,OID_TYPE_MLMEEX)
|
||||
|
||||
#define OID_UNKNOWN(name,oid) OID_STRUCT(name,oid,0,0)
|
||||
|
||||
struct oid_t isl_oid[] = {
|
||||
OID_STRUCT(GEN_OID_MACADDRESS, 0x00000000, u8[6], OID_TYPE_ADDR),
|
||||
OID_U32(GEN_OID_LINKSTATE, 0x00000001),
|
||||
OID_UNKNOWN(GEN_OID_WATCHDOG, 0x00000002),
|
||||
OID_UNKNOWN(GEN_OID_MIBOP, 0x00000003),
|
||||
OID_UNKNOWN(GEN_OID_OPTIONS, 0x00000004),
|
||||
OID_UNKNOWN(GEN_OID_LEDCONFIG, 0x00000005),
|
||||
|
||||
/* 802.11 */
|
||||
OID_U32_C(DOT11_OID_BSSTYPE, 0x10000000),
|
||||
OID_STRUCT_C(DOT11_OID_BSSID, 0x10000001, u8[6], OID_TYPE_RAW),
|
||||
OID_STRUCT_C(DOT11_OID_SSID, 0x10000002, struct obj_ssid,
|
||||
OID_TYPE_SSID),
|
||||
OID_U32(DOT11_OID_STATE, 0x10000003),
|
||||
OID_U32(DOT11_OID_AID, 0x10000004),
|
||||
OID_STRUCT(DOT11_OID_COUNTRYSTRING, 0x10000005, u8[4], OID_TYPE_RAW),
|
||||
OID_STRUCT_C(DOT11_OID_SSIDOVERRIDE, 0x10000006, struct obj_ssid,
|
||||
OID_TYPE_SSID),
|
||||
|
||||
OID_U32(DOT11_OID_MEDIUMLIMIT, 0x11000000),
|
||||
OID_U32_C(DOT11_OID_BEACONPERIOD, 0x11000001),
|
||||
OID_U32(DOT11_OID_DTIMPERIOD, 0x11000002),
|
||||
OID_U32(DOT11_OID_ATIMWINDOW, 0x11000003),
|
||||
OID_U32(DOT11_OID_LISTENINTERVAL, 0x11000004),
|
||||
OID_U32(DOT11_OID_CFPPERIOD, 0x11000005),
|
||||
OID_U32(DOT11_OID_CFPDURATION, 0x11000006),
|
||||
|
||||
OID_U32_C(DOT11_OID_AUTHENABLE, 0x12000000),
|
||||
OID_U32_C(DOT11_OID_PRIVACYINVOKED, 0x12000001),
|
||||
OID_U32_C(DOT11_OID_EXUNENCRYPTED, 0x12000002),
|
||||
OID_U32_C(DOT11_OID_DEFKEYID, 0x12000003),
|
||||
[DOT11_OID_DEFKEYX] = {0x12000004, 3, sizeof (struct obj_key),
|
||||
OID_FLAG_CACHED | OID_TYPE_KEY}, /* DOT11_OID_DEFKEY1,...DOT11_OID_DEFKEY4 */
|
||||
OID_UNKNOWN(DOT11_OID_STAKEY, 0x12000008),
|
||||
OID_U32(DOT11_OID_REKEYTHRESHOLD, 0x12000009),
|
||||
OID_UNKNOWN(DOT11_OID_STASC, 0x1200000a),
|
||||
|
||||
OID_U32(DOT11_OID_PRIVTXREJECTED, 0x1a000000),
|
||||
OID_U32(DOT11_OID_PRIVRXPLAIN, 0x1a000001),
|
||||
OID_U32(DOT11_OID_PRIVRXFAILED, 0x1a000002),
|
||||
OID_U32(DOT11_OID_PRIVRXNOKEY, 0x1a000003),
|
||||
|
||||
OID_U32_C(DOT11_OID_RTSTHRESH, 0x13000000),
|
||||
OID_U32_C(DOT11_OID_FRAGTHRESH, 0x13000001),
|
||||
OID_U32_C(DOT11_OID_SHORTRETRIES, 0x13000002),
|
||||
OID_U32_C(DOT11_OID_LONGRETRIES, 0x13000003),
|
||||
OID_U32_C(DOT11_OID_MAXTXLIFETIME, 0x13000004),
|
||||
OID_U32(DOT11_OID_MAXRXLIFETIME, 0x13000005),
|
||||
OID_U32(DOT11_OID_AUTHRESPTIMEOUT, 0x13000006),
|
||||
OID_U32(DOT11_OID_ASSOCRESPTIMEOUT, 0x13000007),
|
||||
|
||||
OID_UNKNOWN(DOT11_OID_ALOFT_TABLE, 0x1d000000),
|
||||
OID_UNKNOWN(DOT11_OID_ALOFT_CTRL_TABLE, 0x1d000001),
|
||||
OID_UNKNOWN(DOT11_OID_ALOFT_RETREAT, 0x1d000002),
|
||||
OID_UNKNOWN(DOT11_OID_ALOFT_PROGRESS, 0x1d000003),
|
||||
OID_U32(DOT11_OID_ALOFT_FIXEDRATE, 0x1d000004),
|
||||
OID_UNKNOWN(DOT11_OID_ALOFT_RSSIGRAPH, 0x1d000005),
|
||||
OID_UNKNOWN(DOT11_OID_ALOFT_CONFIG, 0x1d000006),
|
||||
|
||||
[DOT11_OID_VDCFX] = {0x1b000000, 7, 0, 0},
|
||||
OID_U32(DOT11_OID_MAXFRAMEBURST, 0x1b000008),
|
||||
|
||||
OID_U32(DOT11_OID_PSM, 0x14000000),
|
||||
OID_U32(DOT11_OID_CAMTIMEOUT, 0x14000001),
|
||||
OID_U32(DOT11_OID_RECEIVEDTIMS, 0x14000002),
|
||||
OID_U32(DOT11_OID_ROAMPREFERENCE, 0x14000003),
|
||||
|
||||
OID_U32(DOT11_OID_BRIDGELOCAL, 0x15000000),
|
||||
OID_U32(DOT11_OID_CLIENTS, 0x15000001),
|
||||
OID_U32(DOT11_OID_CLIENTSASSOCIATED, 0x15000002),
|
||||
[DOT11_OID_CLIENTX] = {0x15000003, 2006, 0, 0}, /* DOT11_OID_CLIENTX,...DOT11_OID_CLIENT2007 */
|
||||
|
||||
OID_STRUCT(DOT11_OID_CLIENTFIND, 0x150007DB, u8[6], OID_TYPE_ADDR),
|
||||
OID_STRUCT(DOT11_OID_WDSLINKADD, 0x150007DC, u8[6], OID_TYPE_ADDR),
|
||||
OID_STRUCT(DOT11_OID_WDSLINKREMOVE, 0x150007DD, u8[6], OID_TYPE_ADDR),
|
||||
OID_STRUCT(DOT11_OID_EAPAUTHSTA, 0x150007DE, u8[6], OID_TYPE_ADDR),
|
||||
OID_STRUCT(DOT11_OID_EAPUNAUTHSTA, 0x150007DF, u8[6], OID_TYPE_ADDR),
|
||||
OID_U32_C(DOT11_OID_DOT1XENABLE, 0x150007E0),
|
||||
OID_UNKNOWN(DOT11_OID_MICFAILURE, 0x150007E1),
|
||||
OID_UNKNOWN(DOT11_OID_REKEYINDICATE, 0x150007E2),
|
||||
|
||||
OID_U32(DOT11_OID_MPDUTXSUCCESSFUL, 0x16000000),
|
||||
OID_U32(DOT11_OID_MPDUTXONERETRY, 0x16000001),
|
||||
OID_U32(DOT11_OID_MPDUTXMULTIPLERETRIES, 0x16000002),
|
||||
OID_U32(DOT11_OID_MPDUTXFAILED, 0x16000003),
|
||||
OID_U32(DOT11_OID_MPDURXSUCCESSFUL, 0x16000004),
|
||||
OID_U32(DOT11_OID_MPDURXDUPS, 0x16000005),
|
||||
OID_U32(DOT11_OID_RTSSUCCESSFUL, 0x16000006),
|
||||
OID_U32(DOT11_OID_RTSFAILED, 0x16000007),
|
||||
OID_U32(DOT11_OID_ACKFAILED, 0x16000008),
|
||||
OID_U32(DOT11_OID_FRAMERECEIVES, 0x16000009),
|
||||
OID_U32(DOT11_OID_FRAMEERRORS, 0x1600000A),
|
||||
OID_U32(DOT11_OID_FRAMEABORTS, 0x1600000B),
|
||||
OID_U32(DOT11_OID_FRAMEABORTSPHY, 0x1600000C),
|
||||
|
||||
OID_U32(DOT11_OID_SLOTTIME, 0x17000000),
|
||||
OID_U32(DOT11_OID_CWMIN, 0x17000001),
|
||||
OID_U32(DOT11_OID_CWMAX, 0x17000002),
|
||||
OID_U32(DOT11_OID_ACKWINDOW, 0x17000003),
|
||||
OID_U32(DOT11_OID_ANTENNARX, 0x17000004),
|
||||
OID_U32(DOT11_OID_ANTENNATX, 0x17000005),
|
||||
OID_U32(DOT11_OID_ANTENNADIVERSITY, 0x17000006),
|
||||
OID_U32_C(DOT11_OID_CHANNEL, 0x17000007),
|
||||
OID_U32_C(DOT11_OID_EDTHRESHOLD, 0x17000008),
|
||||
OID_U32(DOT11_OID_PREAMBLESETTINGS, 0x17000009),
|
||||
OID_STRUCT(DOT11_OID_RATES, 0x1700000A, u8[IWMAX_BITRATES + 1],
|
||||
OID_TYPE_RAW),
|
||||
OID_U32(DOT11_OID_CCAMODESUPPORTED, 0x1700000B),
|
||||
OID_U32(DOT11_OID_CCAMODE, 0x1700000C),
|
||||
OID_UNKNOWN(DOT11_OID_RSSIVECTOR, 0x1700000D),
|
||||
OID_UNKNOWN(DOT11_OID_OUTPUTPOWERTABLE, 0x1700000E),
|
||||
OID_U32(DOT11_OID_OUTPUTPOWER, 0x1700000F),
|
||||
OID_STRUCT(DOT11_OID_SUPPORTEDRATES, 0x17000010,
|
||||
u8[IWMAX_BITRATES + 1], OID_TYPE_RAW),
|
||||
OID_U32_C(DOT11_OID_FREQUENCY, 0x17000011),
|
||||
[DOT11_OID_SUPPORTEDFREQUENCIES] =
|
||||
{0x17000012, 0, sizeof (struct obj_frequencies)
|
||||
+ sizeof (u16) * IWMAX_FREQ, OID_TYPE_FREQUENCIES},
|
||||
|
||||
OID_U32(DOT11_OID_NOISEFLOOR, 0x17000013),
|
||||
OID_STRUCT(DOT11_OID_FREQUENCYACTIVITY, 0x17000014, u8[IWMAX_FREQ + 1],
|
||||
OID_TYPE_RAW),
|
||||
OID_UNKNOWN(DOT11_OID_IQCALIBRATIONTABLE, 0x17000015),
|
||||
OID_U32(DOT11_OID_NONERPPROTECTION, 0x17000016),
|
||||
OID_U32(DOT11_OID_SLOTSETTINGS, 0x17000017),
|
||||
OID_U32(DOT11_OID_NONERPTIMEOUT, 0x17000018),
|
||||
OID_U32(DOT11_OID_PROFILES, 0x17000019),
|
||||
OID_STRUCT(DOT11_OID_EXTENDEDRATES, 0x17000020,
|
||||
u8[IWMAX_BITRATES + 1], OID_TYPE_RAW),
|
||||
|
||||
OID_STRUCT_MLME(DOT11_OID_DEAUTHENTICATE, 0x18000000),
|
||||
OID_STRUCT_MLME(DOT11_OID_AUTHENTICATE, 0x18000001),
|
||||
OID_STRUCT_MLME(DOT11_OID_DISASSOCIATE, 0x18000002),
|
||||
OID_STRUCT_MLME(DOT11_OID_ASSOCIATE, 0x18000003),
|
||||
OID_UNKNOWN(DOT11_OID_SCAN, 0x18000004),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_BEACON, 0x18000005),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_PROBE, 0x18000006),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_DEAUTHENTICATEEX, 0x18000007),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_AUTHENTICATEEX, 0x18000008),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_DISASSOCIATEEX, 0x18000009),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_ASSOCIATEEX, 0x1800000A),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_REASSOCIATE, 0x1800000B),
|
||||
OID_STRUCT_MLMEEX(DOT11_OID_REASSOCIATEEX, 0x1800000C),
|
||||
|
||||
OID_U32(DOT11_OID_NONERPSTATUS, 0x1E000000),
|
||||
|
||||
OID_U32(DOT11_OID_STATIMEOUT, 0x19000000),
|
||||
OID_U32_C(DOT11_OID_MLMEAUTOLEVEL, 0x19000001),
|
||||
OID_U32(DOT11_OID_BSSTIMEOUT, 0x19000002),
|
||||
[DOT11_OID_ATTACHMENT] = {0x19000003, 0,
|
||||
sizeof(struct obj_attachment), OID_TYPE_ATTACH},
|
||||
OID_STRUCT_C(DOT11_OID_PSMBUFFER, 0x19000004, struct obj_buffer,
|
||||
OID_TYPE_BUFFER),
|
||||
|
||||
OID_U32(DOT11_OID_BSSS, 0x1C000000),
|
||||
[DOT11_OID_BSSX] = {0x1C000001, 63, sizeof (struct obj_bss),
|
||||
OID_TYPE_BSS}, /*DOT11_OID_BSS1,...,DOT11_OID_BSS64 */
|
||||
OID_STRUCT(DOT11_OID_BSSFIND, 0x1C000042, struct obj_bss, OID_TYPE_BSS),
|
||||
[DOT11_OID_BSSLIST] = {0x1C000043, 0, sizeof (struct
|
||||
obj_bsslist) +
|
||||
sizeof (struct obj_bss[IWMAX_BSS]),
|
||||
OID_TYPE_BSSLIST},
|
||||
|
||||
OID_UNKNOWN(OID_INL_TUNNEL, 0xFF020000),
|
||||
OID_UNKNOWN(OID_INL_MEMADDR, 0xFF020001),
|
||||
OID_UNKNOWN(OID_INL_MEMORY, 0xFF020002),
|
||||
OID_U32_C(OID_INL_MODE, 0xFF020003),
|
||||
OID_UNKNOWN(OID_INL_COMPONENT_NR, 0xFF020004),
|
||||
OID_STRUCT(OID_INL_VERSION, 0xFF020005, u8[8], OID_TYPE_RAW),
|
||||
OID_UNKNOWN(OID_INL_INTERFACE_ID, 0xFF020006),
|
||||
OID_UNKNOWN(OID_INL_COMPONENT_ID, 0xFF020007),
|
||||
OID_U32_C(OID_INL_CONFIG, 0xFF020008),
|
||||
OID_U32_C(OID_INL_DOT11D_CONFORMANCE, 0xFF02000C),
|
||||
OID_U32(OID_INL_PHYCAPABILITIES, 0xFF02000D),
|
||||
OID_U32_C(OID_INL_OUTPUTPOWER, 0xFF02000F),
|
||||
|
||||
};
|
||||
|
||||
int
|
||||
mgt_init(islpci_private *priv)
|
||||
{
|
||||
int i;
|
||||
|
||||
priv->mib = kcalloc(OID_NUM_LAST, sizeof (void *), GFP_KERNEL);
|
||||
if (!priv->mib)
|
||||
return -ENOMEM;
|
||||
|
||||
/* Alloc the cache */
|
||||
for (i = 0; i < OID_NUM_LAST; i++) {
|
||||
if (isl_oid[i].flags & OID_FLAG_CACHED) {
|
||||
priv->mib[i] = kcalloc(isl_oid[i].size,
|
||||
(isl_oid[i].range + 1),
|
||||
GFP_KERNEL);
|
||||
if (!priv->mib[i])
|
||||
return -ENOMEM;
|
||||
} else
|
||||
priv->mib[i] = NULL;
|
||||
}
|
||||
|
||||
init_rwsem(&priv->mib_sem);
|
||||
prism54_mib_init(priv);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
mgt_clean(islpci_private *priv)
|
||||
{
|
||||
int i;
|
||||
|
||||
if (!priv->mib)
|
||||
return;
|
||||
for (i = 0; i < OID_NUM_LAST; i++) {
|
||||
kfree(priv->mib[i]);
|
||||
priv->mib[i] = NULL;
|
||||
}
|
||||
kfree(priv->mib);
|
||||
priv->mib = NULL;
|
||||
}
|
||||
|
||||
void
|
||||
mgt_le_to_cpu(int type, void *data)
|
||||
{
|
||||
switch (type) {
|
||||
case OID_TYPE_U32:
|
||||
*(u32 *) data = le32_to_cpu(*(u32 *) data);
|
||||
break;
|
||||
case OID_TYPE_BUFFER:{
|
||||
struct obj_buffer *buff = data;
|
||||
buff->size = le32_to_cpu(buff->size);
|
||||
buff->addr = le32_to_cpu(buff->addr);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_BSS:{
|
||||
struct obj_bss *bss = data;
|
||||
bss->age = le16_to_cpu(bss->age);
|
||||
bss->channel = le16_to_cpu(bss->channel);
|
||||
bss->capinfo = le16_to_cpu(bss->capinfo);
|
||||
bss->rates = le16_to_cpu(bss->rates);
|
||||
bss->basic_rates = le16_to_cpu(bss->basic_rates);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_BSSLIST:{
|
||||
struct obj_bsslist *list = data;
|
||||
int i;
|
||||
list->nr = le32_to_cpu(list->nr);
|
||||
for (i = 0; i < list->nr; i++)
|
||||
mgt_le_to_cpu(OID_TYPE_BSS, &list->bsslist[i]);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_FREQUENCIES:{
|
||||
struct obj_frequencies *freq = data;
|
||||
int i;
|
||||
freq->nr = le16_to_cpu(freq->nr);
|
||||
for (i = 0; i < freq->nr; i++)
|
||||
freq->mhz[i] = le16_to_cpu(freq->mhz[i]);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_MLME:{
|
||||
struct obj_mlme *mlme = data;
|
||||
mlme->id = le16_to_cpu(mlme->id);
|
||||
mlme->state = le16_to_cpu(mlme->state);
|
||||
mlme->code = le16_to_cpu(mlme->code);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_MLMEEX:{
|
||||
struct obj_mlmeex *mlme = data;
|
||||
mlme->id = le16_to_cpu(mlme->id);
|
||||
mlme->state = le16_to_cpu(mlme->state);
|
||||
mlme->code = le16_to_cpu(mlme->code);
|
||||
mlme->size = le16_to_cpu(mlme->size);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_ATTACH:{
|
||||
struct obj_attachment *attach = data;
|
||||
attach->id = le16_to_cpu(attach->id);
|
||||
attach->size = le16_to_cpu(attach->size);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_SSID:
|
||||
case OID_TYPE_KEY:
|
||||
case OID_TYPE_ADDR:
|
||||
case OID_TYPE_RAW:
|
||||
break;
|
||||
default:
|
||||
BUG();
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
mgt_cpu_to_le(int type, void *data)
|
||||
{
|
||||
switch (type) {
|
||||
case OID_TYPE_U32:
|
||||
*(u32 *) data = cpu_to_le32(*(u32 *) data);
|
||||
break;
|
||||
case OID_TYPE_BUFFER:{
|
||||
struct obj_buffer *buff = data;
|
||||
buff->size = cpu_to_le32(buff->size);
|
||||
buff->addr = cpu_to_le32(buff->addr);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_BSS:{
|
||||
struct obj_bss *bss = data;
|
||||
bss->age = cpu_to_le16(bss->age);
|
||||
bss->channel = cpu_to_le16(bss->channel);
|
||||
bss->capinfo = cpu_to_le16(bss->capinfo);
|
||||
bss->rates = cpu_to_le16(bss->rates);
|
||||
bss->basic_rates = cpu_to_le16(bss->basic_rates);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_BSSLIST:{
|
||||
struct obj_bsslist *list = data;
|
||||
int i;
|
||||
list->nr = cpu_to_le32(list->nr);
|
||||
for (i = 0; i < list->nr; i++)
|
||||
mgt_cpu_to_le(OID_TYPE_BSS, &list->bsslist[i]);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_FREQUENCIES:{
|
||||
struct obj_frequencies *freq = data;
|
||||
int i;
|
||||
freq->nr = cpu_to_le16(freq->nr);
|
||||
for (i = 0; i < freq->nr; i++)
|
||||
freq->mhz[i] = cpu_to_le16(freq->mhz[i]);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_MLME:{
|
||||
struct obj_mlme *mlme = data;
|
||||
mlme->id = cpu_to_le16(mlme->id);
|
||||
mlme->state = cpu_to_le16(mlme->state);
|
||||
mlme->code = cpu_to_le16(mlme->code);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_MLMEEX:{
|
||||
struct obj_mlmeex *mlme = data;
|
||||
mlme->id = cpu_to_le16(mlme->id);
|
||||
mlme->state = cpu_to_le16(mlme->state);
|
||||
mlme->code = cpu_to_le16(mlme->code);
|
||||
mlme->size = cpu_to_le16(mlme->size);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_ATTACH:{
|
||||
struct obj_attachment *attach = data;
|
||||
attach->id = cpu_to_le16(attach->id);
|
||||
attach->size = cpu_to_le16(attach->size);
|
||||
break;
|
||||
}
|
||||
case OID_TYPE_SSID:
|
||||
case OID_TYPE_KEY:
|
||||
case OID_TYPE_ADDR:
|
||||
case OID_TYPE_RAW:
|
||||
break;
|
||||
default:
|
||||
BUG();
|
||||
}
|
||||
}
|
||||
|
||||
/* Note : data is modified during this function */
|
||||
|
||||
int
|
||||
mgt_set_request(islpci_private *priv, enum oid_num_t n, int extra, void *data)
|
||||
{
|
||||
int ret = 0;
|
||||
struct islpci_mgmtframe *response = NULL;
|
||||
int response_op = PIMFOR_OP_ERROR;
|
||||
int dlen;
|
||||
void *cache, *_data = data;
|
||||
u32 oid;
|
||||
|
||||
BUG_ON(n >= OID_NUM_LAST);
|
||||
BUG_ON(extra > isl_oid[n].range);
|
||||
|
||||
if (!priv->mib)
|
||||
/* memory has been freed */
|
||||
return -1;
|
||||
|
||||
dlen = isl_oid[n].size;
|
||||
cache = priv->mib[n];
|
||||
cache += (cache ? extra * dlen : 0);
|
||||
oid = isl_oid[n].oid + extra;
|
||||
|
||||
if (_data == NULL)
|
||||
/* we are requested to re-set a cached value */
|
||||
_data = cache;
|
||||
else
|
||||
mgt_cpu_to_le(isl_oid[n].flags & OID_FLAG_TYPE, _data);
|
||||
/* If we are going to write to the cache, we don't want anyone to read
|
||||
* it -> acquire write lock.
|
||||
* Else we could acquire a read lock to be sure we don't bother the
|
||||
* commit process (which takes a write lock). But I'm not sure if it's
|
||||
* needed.
|
||||
*/
|
||||
if (cache)
|
||||
down_write(&priv->mib_sem);
|
||||
|
||||
if (islpci_get_state(priv) >= PRV_STATE_READY) {
|
||||
ret = islpci_mgt_transaction(priv->ndev, PIMFOR_OP_SET, oid,
|
||||
_data, dlen, &response);
|
||||
if (!ret) {
|
||||
response_op = response->header->operation;
|
||||
islpci_mgt_release(response);
|
||||
}
|
||||
if (ret || response_op == PIMFOR_OP_ERROR)
|
||||
ret = -EIO;
|
||||
} else if (!cache)
|
||||
ret = -EIO;
|
||||
|
||||
if (cache) {
|
||||
if (!ret && data)
|
||||
memcpy(cache, _data, dlen);
|
||||
up_write(&priv->mib_sem);
|
||||
}
|
||||
|
||||
/* re-set given data to what it was */
|
||||
if (data)
|
||||
mgt_le_to_cpu(isl_oid[n].flags & OID_FLAG_TYPE, data);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* None of these are cached */
|
||||
int
|
||||
mgt_set_varlen(islpci_private *priv, enum oid_num_t n, void *data, int extra_len)
|
||||
{
|
||||
int ret = 0;
|
||||
struct islpci_mgmtframe *response;
|
||||
int response_op = PIMFOR_OP_ERROR;
|
||||
int dlen;
|
||||
u32 oid;
|
||||
|
||||
BUG_ON(n >= OID_NUM_LAST);
|
||||
|
||||
dlen = isl_oid[n].size;
|
||||
oid = isl_oid[n].oid;
|
||||
|
||||
mgt_cpu_to_le(isl_oid[n].flags & OID_FLAG_TYPE, data);
|
||||
|
||||
if (islpci_get_state(priv) >= PRV_STATE_READY) {
|
||||
ret = islpci_mgt_transaction(priv->ndev, PIMFOR_OP_SET, oid,
|
||||
data, dlen + extra_len, &response);
|
||||
if (!ret) {
|
||||
response_op = response->header->operation;
|
||||
islpci_mgt_release(response);
|
||||
}
|
||||
if (ret || response_op == PIMFOR_OP_ERROR)
|
||||
ret = -EIO;
|
||||
} else
|
||||
ret = -EIO;
|
||||
|
||||
/* re-set given data to what it was */
|
||||
if (data)
|
||||
mgt_le_to_cpu(isl_oid[n].flags & OID_FLAG_TYPE, data);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
mgt_get_request(islpci_private *priv, enum oid_num_t n, int extra, void *data,
|
||||
union oid_res_t *res)
|
||||
{
|
||||
|
||||
int ret = -EIO;
|
||||
int reslen = 0;
|
||||
struct islpci_mgmtframe *response = NULL;
|
||||
|
||||
int dlen;
|
||||
void *cache, *_res = NULL;
|
||||
u32 oid;
|
||||
|
||||
BUG_ON(n >= OID_NUM_LAST);
|
||||
BUG_ON(extra > isl_oid[n].range);
|
||||
|
||||
res->ptr = NULL;
|
||||
|
||||
if (!priv->mib)
|
||||
/* memory has been freed */
|
||||
return -1;
|
||||
|
||||
dlen = isl_oid[n].size;
|
||||
cache = priv->mib[n];
|
||||
cache += cache ? extra * dlen : 0;
|
||||
oid = isl_oid[n].oid + extra;
|
||||
reslen = dlen;
|
||||
|
||||
if (cache)
|
||||
down_read(&priv->mib_sem);
|
||||
|
||||
if (islpci_get_state(priv) >= PRV_STATE_READY) {
|
||||
ret = islpci_mgt_transaction(priv->ndev, PIMFOR_OP_GET,
|
||||
oid, data, dlen, &response);
|
||||
if (ret || !response ||
|
||||
response->header->operation == PIMFOR_OP_ERROR) {
|
||||
if (response)
|
||||
islpci_mgt_release(response);
|
||||
ret = -EIO;
|
||||
}
|
||||
if (!ret) {
|
||||
_res = response->data;
|
||||
reslen = response->header->length;
|
||||
}
|
||||
} else if (cache) {
|
||||
_res = cache;
|
||||
ret = 0;
|
||||
}
|
||||
if ((isl_oid[n].flags & OID_FLAG_TYPE) == OID_TYPE_U32)
|
||||
res->u = ret ? 0 : le32_to_cpu(*(u32 *) _res);
|
||||
else {
|
||||
res->ptr = kmalloc(reslen, GFP_KERNEL);
|
||||
BUG_ON(res->ptr == NULL);
|
||||
if (ret)
|
||||
memset(res->ptr, 0, reslen);
|
||||
else {
|
||||
memcpy(res->ptr, _res, reslen);
|
||||
mgt_le_to_cpu(isl_oid[n].flags & OID_FLAG_TYPE,
|
||||
res->ptr);
|
||||
}
|
||||
}
|
||||
if (cache)
|
||||
up_read(&priv->mib_sem);
|
||||
|
||||
if (response && !ret)
|
||||
islpci_mgt_release(response);
|
||||
|
||||
if (reslen > isl_oid[n].size)
|
||||
printk(KERN_DEBUG
|
||||
"mgt_get_request(0x%x): received data length was bigger "
|
||||
"than expected (%d > %d). Memory is probably corrupted...",
|
||||
oid, reslen, isl_oid[n].size);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* lock outside */
|
||||
int
|
||||
mgt_commit_list(islpci_private *priv, enum oid_num_t *l, int n)
|
||||
{
|
||||
int i, ret = 0;
|
||||
struct islpci_mgmtframe *response;
|
||||
|
||||
for (i = 0; i < n; i++) {
|
||||
struct oid_t *t = &(isl_oid[l[i]]);
|
||||
void *data = priv->mib[l[i]];
|
||||
int j = 0;
|
||||
u32 oid = t->oid;
|
||||
BUG_ON(data == NULL);
|
||||
while (j <= t->range) {
|
||||
int r = islpci_mgt_transaction(priv->ndev, PIMFOR_OP_SET,
|
||||
oid, data, t->size,
|
||||
&response);
|
||||
if (response) {
|
||||
r |= (response->header->operation == PIMFOR_OP_ERROR);
|
||||
islpci_mgt_release(response);
|
||||
}
|
||||
if (r)
|
||||
printk(KERN_ERR "%s: mgt_commit_list: failure. "
|
||||
"oid=%08x err=%d\n",
|
||||
priv->ndev->name, oid, r);
|
||||
ret |= r;
|
||||
j++;
|
||||
oid++;
|
||||
data += t->size;
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Lock outside */
|
||||
|
||||
void
|
||||
mgt_set(islpci_private *priv, enum oid_num_t n, void *data)
|
||||
{
|
||||
BUG_ON(n >= OID_NUM_LAST);
|
||||
BUG_ON(priv->mib[n] == NULL);
|
||||
|
||||
memcpy(priv->mib[n], data, isl_oid[n].size);
|
||||
mgt_cpu_to_le(isl_oid[n].flags & OID_FLAG_TYPE, priv->mib[n]);
|
||||
}
|
||||
|
||||
void
|
||||
mgt_get(islpci_private *priv, enum oid_num_t n, void *res)
|
||||
{
|
||||
BUG_ON(n >= OID_NUM_LAST);
|
||||
BUG_ON(priv->mib[n] == NULL);
|
||||
BUG_ON(res == NULL);
|
||||
|
||||
memcpy(res, priv->mib[n], isl_oid[n].size);
|
||||
mgt_le_to_cpu(isl_oid[n].flags & OID_FLAG_TYPE, res);
|
||||
}
|
||||
|
||||
/* Commits the cache. Lock outside. */
|
||||
|
||||
static enum oid_num_t commit_part1[] = {
|
||||
OID_INL_CONFIG,
|
||||
OID_INL_MODE,
|
||||
DOT11_OID_BSSTYPE,
|
||||
DOT11_OID_CHANNEL,
|
||||
DOT11_OID_MLMEAUTOLEVEL
|
||||
};
|
||||
|
||||
static enum oid_num_t commit_part2[] = {
|
||||
DOT11_OID_SSID,
|
||||
DOT11_OID_PSMBUFFER,
|
||||
DOT11_OID_AUTHENABLE,
|
||||
DOT11_OID_PRIVACYINVOKED,
|
||||
DOT11_OID_EXUNENCRYPTED,
|
||||
DOT11_OID_DEFKEYX, /* MULTIPLE */
|
||||
DOT11_OID_DEFKEYID,
|
||||
DOT11_OID_DOT1XENABLE,
|
||||
OID_INL_DOT11D_CONFORMANCE,
|
||||
/* Do not initialize this - fw < 1.0.4.3 rejects it
|
||||
OID_INL_OUTPUTPOWER,
|
||||
*/
|
||||
};
|
||||
|
||||
/* update the MAC addr. */
|
||||
static int
|
||||
mgt_update_addr(islpci_private *priv)
|
||||
{
|
||||
struct islpci_mgmtframe *res;
|
||||
int ret;
|
||||
|
||||
ret = islpci_mgt_transaction(priv->ndev, PIMFOR_OP_GET,
|
||||
isl_oid[GEN_OID_MACADDRESS].oid, NULL,
|
||||
isl_oid[GEN_OID_MACADDRESS].size, &res);
|
||||
|
||||
if ((ret == 0) && res && (res->header->operation != PIMFOR_OP_ERROR))
|
||||
memcpy(priv->ndev->dev_addr, res->data, ETH_ALEN);
|
||||
else
|
||||
ret = -EIO;
|
||||
if (res)
|
||||
islpci_mgt_release(res);
|
||||
|
||||
if (ret)
|
||||
printk(KERN_ERR "%s: mgt_update_addr: failure\n", priv->ndev->name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
mgt_commit(islpci_private *priv)
|
||||
{
|
||||
int rvalue;
|
||||
enum oid_num_t u;
|
||||
|
||||
if (islpci_get_state(priv) < PRV_STATE_INIT)
|
||||
return 0;
|
||||
|
||||
rvalue = mgt_commit_list(priv, commit_part1, ARRAY_SIZE(commit_part1));
|
||||
|
||||
if (priv->iw_mode != IW_MODE_MONITOR)
|
||||
rvalue |= mgt_commit_list(priv, commit_part2, ARRAY_SIZE(commit_part2));
|
||||
|
||||
u = OID_INL_MODE;
|
||||
rvalue |= mgt_commit_list(priv, &u, 1);
|
||||
rvalue |= mgt_update_addr(priv);
|
||||
|
||||
if (rvalue) {
|
||||
/* some request have failed. The device might be in an
|
||||
incoherent state. We should reset it ! */
|
||||
printk(KERN_DEBUG "%s: mgt_commit: failure\n", priv->ndev->name);
|
||||
}
|
||||
return rvalue;
|
||||
}
|
||||
|
||||
/* The following OIDs need to be "unlatched":
|
||||
*
|
||||
* MEDIUMLIMIT,BEACONPERIOD,DTIMPERIOD,ATIMWINDOW,LISTENINTERVAL
|
||||
* FREQUENCY,EXTENDEDRATES.
|
||||
*
|
||||
* The way to do this is to set ESSID. Note though that they may get
|
||||
* unlatch before though by setting another OID. */
|
||||
#if 0
|
||||
void
|
||||
mgt_unlatch_all(islpci_private *priv)
|
||||
{
|
||||
u32 u;
|
||||
int rvalue = 0;
|
||||
|
||||
if (islpci_get_state(priv) < PRV_STATE_INIT)
|
||||
return;
|
||||
|
||||
u = DOT11_OID_SSID;
|
||||
rvalue = mgt_commit_list(priv, &u, 1);
|
||||
/* Necessary if in MANUAL RUN mode? */
|
||||
#if 0
|
||||
u = OID_INL_MODE;
|
||||
rvalue |= mgt_commit_list(priv, &u, 1);
|
||||
|
||||
u = DOT11_OID_MLMEAUTOLEVEL;
|
||||
rvalue |= mgt_commit_list(priv, &u, 1);
|
||||
|
||||
u = OID_INL_MODE;
|
||||
rvalue |= mgt_commit_list(priv, &u, 1);
|
||||
#endif
|
||||
|
||||
if (rvalue)
|
||||
printk(KERN_DEBUG "%s: Unlatching OIDs failed\n", priv->ndev->name);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* This will tell you if you are allowed to answer a mlme(ex) request .*/
|
||||
|
||||
int
|
||||
mgt_mlme_answer(islpci_private *priv)
|
||||
{
|
||||
u32 mlmeautolevel;
|
||||
/* Acquire a read lock because if we are in a mode change, it's
|
||||
* possible to answer true, while the card is leaving master to managed
|
||||
* mode. Answering to a mlme in this situation could hang the card.
|
||||
*/
|
||||
down_read(&priv->mib_sem);
|
||||
mlmeautolevel =
|
||||
le32_to_cpu(*(u32 *) priv->mib[DOT11_OID_MLMEAUTOLEVEL]);
|
||||
up_read(&priv->mib_sem);
|
||||
|
||||
return ((priv->iw_mode == IW_MODE_MASTER) &&
|
||||
(mlmeautolevel >= DOT11_MLME_INTERMEDIATE));
|
||||
}
|
||||
|
||||
enum oid_num_t
|
||||
mgt_oidtonum(u32 oid)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < OID_NUM_LAST; i++)
|
||||
if (isl_oid[i].oid == oid)
|
||||
return i;
|
||||
|
||||
printk(KERN_DEBUG "looking for an unknown oid 0x%x", oid);
|
||||
|
||||
return OID_NUM_LAST;
|
||||
}
|
||||
|
||||
int
|
||||
mgt_response_to_str(enum oid_num_t n, union oid_res_t *r, char *str)
|
||||
{
|
||||
switch (isl_oid[n].flags & OID_FLAG_TYPE) {
|
||||
case OID_TYPE_U32:
|
||||
return scnprintf(str, PRIV_STR_SIZE, "%u\n", r->u);
|
||||
case OID_TYPE_BUFFER:{
|
||||
struct obj_buffer *buff = r->ptr;
|
||||
return scnprintf(str, PRIV_STR_SIZE,
|
||||
"size=%u\naddr=0x%X\n", buff->size,
|
||||
buff->addr);
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_BSS:{
|
||||
struct obj_bss *bss = r->ptr;
|
||||
return scnprintf(str, PRIV_STR_SIZE,
|
||||
"age=%u\nchannel=%u\n"
|
||||
"capinfo=0x%X\nrates=0x%X\n"
|
||||
"basic_rates=0x%X\n", bss->age,
|
||||
bss->channel, bss->capinfo,
|
||||
bss->rates, bss->basic_rates);
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_BSSLIST:{
|
||||
struct obj_bsslist *list = r->ptr;
|
||||
int i, k;
|
||||
k = scnprintf(str, PRIV_STR_SIZE, "nr=%u\n", list->nr);
|
||||
for (i = 0; i < list->nr; i++)
|
||||
k += scnprintf(str + k, PRIV_STR_SIZE - k,
|
||||
"bss[%u] :\nage=%u\nchannel=%u\n"
|
||||
"capinfo=0x%X\nrates=0x%X\n"
|
||||
"basic_rates=0x%X\n",
|
||||
i, list->bsslist[i].age,
|
||||
list->bsslist[i].channel,
|
||||
list->bsslist[i].capinfo,
|
||||
list->bsslist[i].rates,
|
||||
list->bsslist[i].basic_rates);
|
||||
return k;
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_FREQUENCIES:{
|
||||
struct obj_frequencies *freq = r->ptr;
|
||||
int i, t;
|
||||
printk("nr : %u\n", freq->nr);
|
||||
t = scnprintf(str, PRIV_STR_SIZE, "nr=%u\n", freq->nr);
|
||||
for (i = 0; i < freq->nr; i++)
|
||||
t += scnprintf(str + t, PRIV_STR_SIZE - t,
|
||||
"mhz[%u]=%u\n", i, freq->mhz[i]);
|
||||
return t;
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_MLME:{
|
||||
struct obj_mlme *mlme = r->ptr;
|
||||
return scnprintf(str, PRIV_STR_SIZE,
|
||||
"id=0x%X\nstate=0x%X\ncode=0x%X\n",
|
||||
mlme->id, mlme->state, mlme->code);
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_MLMEEX:{
|
||||
struct obj_mlmeex *mlme = r->ptr;
|
||||
return scnprintf(str, PRIV_STR_SIZE,
|
||||
"id=0x%X\nstate=0x%X\n"
|
||||
"code=0x%X\nsize=0x%X\n", mlme->id,
|
||||
mlme->state, mlme->code, mlme->size);
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_ATTACH:{
|
||||
struct obj_attachment *attach = r->ptr;
|
||||
return scnprintf(str, PRIV_STR_SIZE,
|
||||
"id=%d\nsize=%d\n",
|
||||
attach->id,
|
||||
attach->size);
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_SSID:{
|
||||
struct obj_ssid *ssid = r->ptr;
|
||||
return scnprintf(str, PRIV_STR_SIZE,
|
||||
"length=%u\noctets=%.*s\n",
|
||||
ssid->length, ssid->length,
|
||||
ssid->octets);
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_KEY:{
|
||||
struct obj_key *key = r->ptr;
|
||||
int t, i;
|
||||
t = scnprintf(str, PRIV_STR_SIZE,
|
||||
"type=0x%X\nlength=0x%X\nkey=0x",
|
||||
key->type, key->length);
|
||||
for (i = 0; i < key->length; i++)
|
||||
t += scnprintf(str + t, PRIV_STR_SIZE - t,
|
||||
"%02X:", key->key[i]);
|
||||
t += scnprintf(str + t, PRIV_STR_SIZE - t, "\n");
|
||||
return t;
|
||||
}
|
||||
break;
|
||||
case OID_TYPE_RAW:
|
||||
case OID_TYPE_ADDR:{
|
||||
unsigned char *buff = r->ptr;
|
||||
int t, i;
|
||||
t = scnprintf(str, PRIV_STR_SIZE, "hex data=");
|
||||
for (i = 0; i < isl_oid[n].size; i++)
|
||||
t += scnprintf(str + t, PRIV_STR_SIZE - t,
|
||||
"%02X:", buff[i]);
|
||||
t += scnprintf(str + t, PRIV_STR_SIZE - t, "\n");
|
||||
return t;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
BUG();
|
||||
}
|
||||
return 0;
|
||||
}
|
|
@ -1,46 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (C) 2003 Aurelien Alleaume <slts@free.fr>
|
||||
*/
|
||||
|
||||
#if !defined(_OID_MGT_H)
|
||||
#define _OID_MGT_H
|
||||
|
||||
#include "isl_oid.h"
|
||||
#include "islpci_dev.h"
|
||||
|
||||
extern struct oid_t isl_oid[];
|
||||
|
||||
int mgt_init(islpci_private *);
|
||||
|
||||
void mgt_clean(islpci_private *);
|
||||
|
||||
/* I don't know where to put these 2 */
|
||||
extern const int frequency_list_a[];
|
||||
int channel_of_freq(int);
|
||||
|
||||
void mgt_le_to_cpu(int, void *);
|
||||
|
||||
int mgt_set_request(islpci_private *, enum oid_num_t, int, void *);
|
||||
int mgt_set_varlen(islpci_private *, enum oid_num_t, void *, int);
|
||||
|
||||
|
||||
int mgt_get_request(islpci_private *, enum oid_num_t, int, void *,
|
||||
union oid_res_t *);
|
||||
|
||||
int mgt_commit_list(islpci_private *, enum oid_num_t *, int);
|
||||
|
||||
void mgt_set(islpci_private *, enum oid_num_t, void *);
|
||||
|
||||
void mgt_get(islpci_private *, enum oid_num_t, void *);
|
||||
|
||||
int mgt_commit(islpci_private *);
|
||||
|
||||
int mgt_mlme_answer(islpci_private *);
|
||||
|
||||
enum oid_num_t mgt_oidtonum(u32 oid);
|
||||
|
||||
int mgt_response_to_str(enum oid_num_t, union oid_res_t *, char *);
|
||||
|
||||
#endif /* !defined(_OID_MGT_H) */
|
||||
/* EOF */
|
|
@ -1,30 +0,0 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* (C) 2004 Margit Schubert-While <margitsw@t-online.de>
|
||||
*/
|
||||
|
||||
/*
|
||||
* Compatibility header file to aid support of different kernel versions
|
||||
*/
|
||||
|
||||
#ifdef PRISM54_COMPAT24
|
||||
#include "prismcompat24.h"
|
||||
#else /* PRISM54_COMPAT24 */
|
||||
|
||||
#ifndef _PRISM_COMPAT_H
|
||||
#define _PRISM_COMPAT_H
|
||||
|
||||
#include <linux/device.h>
|
||||
#include <linux/firmware.h>
|
||||
#include <linux/moduleparam.h>
|
||||
#include <linux/workqueue.h>
|
||||
#include <linux/compiler.h>
|
||||
|
||||
#ifndef __iomem
|
||||
#define __iomem
|
||||
#endif
|
||||
|
||||
#define PRISM_FW_PDEV &priv->pdev->dev
|
||||
|
||||
#endif /* _PRISM_COMPAT_H */
|
||||
#endif /* PRISM54_COMPAT24 */
|
|
@ -43,10 +43,8 @@ static int lbs_ethtool_get_eeprom(struct net_device *dev,
|
|||
int ret;
|
||||
|
||||
if (eeprom->offset + eeprom->len > LBS_EEPROM_LEN ||
|
||||
eeprom->len > LBS_EEPROM_READ_LEN) {
|
||||
ret = -EINVAL;
|
||||
goto out;
|
||||
}
|
||||
eeprom->len > LBS_EEPROM_READ_LEN)
|
||||
return -EINVAL;
|
||||
|
||||
cmd.hdr.size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) -
|
||||
LBS_EEPROM_READ_LEN + eeprom->len);
|
||||
|
@ -57,8 +55,7 @@ static int lbs_ethtool_get_eeprom(struct net_device *dev,
|
|||
if (!ret)
|
||||
memcpy(bytes, cmd.value, eeprom->len);
|
||||
|
||||
out:
|
||||
return ret;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void lbs_ethtool_get_wol(struct net_device *dev,
|
||||
|
|
|
@ -187,7 +187,7 @@ static int mwifiex_dnld_cmd_to_fw(struct mwifiex_private *priv,
|
|||
host_cmd = (struct host_cmd_ds_command *) (cmd_node->cmd_skb->data);
|
||||
|
||||
/* Sanity test */
|
||||
if (host_cmd == NULL || host_cmd->size == 0) {
|
||||
if (host_cmd->size == 0) {
|
||||
mwifiex_dbg(adapter, ERROR,
|
||||
"DNLD_CMD: host_cmd is null\t"
|
||||
"or cmd size is 0, not sending\n");
|
||||
|
|
|
@ -1325,8 +1325,8 @@ mwifiex_set_gen_ie_helper(struct mwifiex_private *priv, u8 *ie_data_ptr,
|
|||
u16 ie_len)
|
||||
{
|
||||
struct ieee_types_vendor_header *pvendor_ie;
|
||||
const u8 wpa_oui[] = { 0x00, 0x50, 0xf2, 0x01 };
|
||||
const u8 wps_oui[] = { 0x00, 0x50, 0xf2, 0x04 };
|
||||
static const u8 wpa_oui[] = { 0x00, 0x50, 0xf2, 0x01 };
|
||||
static const u8 wps_oui[] = { 0x00, 0x50, 0xf2, 0x04 };
|
||||
u16 unparsed_len = ie_len, cur_ie_len;
|
||||
|
||||
/* If the passed length is zero, reset the buffer */
|
||||
|
|
|
@ -134,7 +134,7 @@ struct fw_sync_header {
|
|||
struct fw_data {
|
||||
struct fw_header fw_hdr;
|
||||
__le32 seq_num;
|
||||
u8 data[1];
|
||||
u8 data[];
|
||||
} __packed;
|
||||
|
||||
#endif /*_MWIFIEX_USB_H */
|
||||
|
|
|
@ -129,10 +129,8 @@ static int wilc_sdio_probe(struct sdio_func *func,
|
|||
|
||||
ret = wilc_cfg80211_init(&wilc, &func->dev, WILC_HIF_SDIO,
|
||||
&wilc_hif_sdio);
|
||||
if (ret) {
|
||||
kfree(sdio_priv);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
goto free;
|
||||
|
||||
if (IS_ENABLED(CONFIG_WILC1000_HW_OOB_INTR)) {
|
||||
struct device_node *np = func->card->dev.of_node;
|
||||
|
@ -148,24 +146,29 @@ static int wilc_sdio_probe(struct sdio_func *func,
|
|||
wilc->bus_data = sdio_priv;
|
||||
wilc->dev = &func->dev;
|
||||
|
||||
wilc->rtc_clk = devm_clk_get(&func->card->dev, "rtc");
|
||||
if (PTR_ERR_OR_ZERO(wilc->rtc_clk) == -EPROBE_DEFER) {
|
||||
kfree(sdio_priv);
|
||||
return -EPROBE_DEFER;
|
||||
} else if (!IS_ERR(wilc->rtc_clk))
|
||||
clk_prepare_enable(wilc->rtc_clk);
|
||||
wilc->rtc_clk = devm_clk_get_optional(&func->card->dev, "rtc");
|
||||
if (IS_ERR(wilc->rtc_clk)) {
|
||||
ret = PTR_ERR(wilc->rtc_clk);
|
||||
goto dispose_irq;
|
||||
}
|
||||
clk_prepare_enable(wilc->rtc_clk);
|
||||
|
||||
dev_info(&func->dev, "Driver Initializing success\n");
|
||||
return 0;
|
||||
|
||||
dispose_irq:
|
||||
irq_dispose_mapping(wilc->dev_irq_num);
|
||||
wilc_netdev_cleanup(wilc);
|
||||
free:
|
||||
kfree(sdio_priv);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void wilc_sdio_remove(struct sdio_func *func)
|
||||
{
|
||||
struct wilc *wilc = sdio_get_drvdata(func);
|
||||
|
||||
if (!IS_ERR(wilc->rtc_clk))
|
||||
clk_disable_unprepare(wilc->rtc_clk);
|
||||
|
||||
clk_disable_unprepare(wilc->rtc_clk);
|
||||
wilc_netdev_cleanup(wilc);
|
||||
}
|
||||
|
||||
|
|
|
@ -154,34 +154,37 @@ static int wilc_bus_probe(struct spi_device *spi)
|
|||
return -ENOMEM;
|
||||
|
||||
ret = wilc_cfg80211_init(&wilc, &spi->dev, WILC_HIF_SPI, &wilc_hif_spi);
|
||||
if (ret) {
|
||||
kfree(spi_priv);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
goto free;
|
||||
|
||||
spi_set_drvdata(spi, wilc);
|
||||
wilc->dev = &spi->dev;
|
||||
wilc->bus_data = spi_priv;
|
||||
wilc->dev_irq_num = spi->irq;
|
||||
|
||||
wilc->rtc_clk = devm_clk_get(&spi->dev, "rtc");
|
||||
if (PTR_ERR_OR_ZERO(wilc->rtc_clk) == -EPROBE_DEFER) {
|
||||
kfree(spi_priv);
|
||||
return -EPROBE_DEFER;
|
||||
} else if (!IS_ERR(wilc->rtc_clk))
|
||||
clk_prepare_enable(wilc->rtc_clk);
|
||||
wilc->rtc_clk = devm_clk_get_optional(&spi->dev, "rtc");
|
||||
if (IS_ERR(wilc->rtc_clk)) {
|
||||
ret = PTR_ERR(wilc->rtc_clk);
|
||||
goto netdev_cleanup;
|
||||
}
|
||||
clk_prepare_enable(wilc->rtc_clk);
|
||||
|
||||
return 0;
|
||||
|
||||
netdev_cleanup:
|
||||
wilc_netdev_cleanup(wilc);
|
||||
free:
|
||||
kfree(spi_priv);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int wilc_bus_remove(struct spi_device *spi)
|
||||
{
|
||||
struct wilc *wilc = spi_get_drvdata(spi);
|
||||
|
||||
if (!IS_ERR(wilc->rtc_clk))
|
||||
clk_disable_unprepare(wilc->rtc_clk);
|
||||
|
||||
clk_disable_unprepare(wilc->rtc_clk);
|
||||
wilc_netdev_cleanup(wilc);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -1127,27 +1127,22 @@ int wilc_wlan_start(struct wilc *wilc)
|
|||
}
|
||||
acquire_bus(wilc, WILC_BUS_ACQUIRE_ONLY);
|
||||
ret = wilc->hif_func->hif_write_reg(wilc, WILC_VMM_CORE_CFG, reg);
|
||||
if (ret) {
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ONLY);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
goto release;
|
||||
|
||||
reg = 0;
|
||||
if (wilc->io_type == WILC_HIF_SDIO && wilc->dev_irq_num)
|
||||
reg |= WILC_HAVE_SDIO_IRQ_GPIO;
|
||||
|
||||
ret = wilc->hif_func->hif_write_reg(wilc, WILC_GP_REG_1, reg);
|
||||
if (ret) {
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ONLY);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
goto release;
|
||||
|
||||
wilc->hif_func->hif_sync_ext(wilc, NUM_INT_EXT);
|
||||
|
||||
ret = wilc->hif_func->hif_read_reg(wilc, WILC_CHIPID, &chipid);
|
||||
if (ret) {
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ONLY);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
goto release;
|
||||
|
||||
wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, ®);
|
||||
if ((reg & BIT(10)) == BIT(10)) {
|
||||
|
@ -1159,8 +1154,9 @@ int wilc_wlan_start(struct wilc *wilc)
|
|||
reg |= BIT(10);
|
||||
ret = wilc->hif_func->hif_write_reg(wilc, WILC_GLB_RESET_0, reg);
|
||||
wilc->hif_func->hif_read_reg(wilc, WILC_GLB_RESET_0, ®);
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ONLY);
|
||||
|
||||
release:
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ONLY);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -1174,36 +1170,34 @@ int wilc_wlan_stop(struct wilc *wilc, struct wilc_vif *vif)
|
|||
ret = wilc->hif_func->hif_read_reg(wilc, WILC_GP_REG_0, ®);
|
||||
if (ret) {
|
||||
netdev_err(vif->ndev, "Error while reading reg\n");
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ALLOW_SLEEP);
|
||||
return ret;
|
||||
goto release;
|
||||
}
|
||||
|
||||
ret = wilc->hif_func->hif_write_reg(wilc, WILC_GP_REG_0,
|
||||
(reg | WILC_ABORT_REQ_BIT));
|
||||
if (ret) {
|
||||
netdev_err(vif->ndev, "Error while writing reg\n");
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ALLOW_SLEEP);
|
||||
return ret;
|
||||
goto release;
|
||||
}
|
||||
|
||||
ret = wilc->hif_func->hif_read_reg(wilc, WILC_FW_HOST_COMM, ®);
|
||||
if (ret) {
|
||||
netdev_err(vif->ndev, "Error while reading reg\n");
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ALLOW_SLEEP);
|
||||
return ret;
|
||||
goto release;
|
||||
}
|
||||
reg = BIT(0);
|
||||
|
||||
ret = wilc->hif_func->hif_write_reg(wilc, WILC_FW_HOST_COMM, reg);
|
||||
if (ret) {
|
||||
netdev_err(vif->ndev, "Error while writing reg\n");
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ALLOW_SLEEP);
|
||||
return ret;
|
||||
goto release;
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
release:
|
||||
release_bus(wilc, WILC_BUS_RELEASE_ALLOW_SLEEP);
|
||||
|
||||
return 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
void wilc_wlan_cleanup(struct net_device *dev)
|
||||
|
|
|
@ -982,7 +982,9 @@ AP to AP 1 1 dest AP src AP dest source
|
|||
if (local->net_type == ADHOC) {
|
||||
writeb(0, &ptx->mac.frame_ctl_2);
|
||||
memcpy_toio(ptx->mac.addr_1, ((struct ethhdr *)data)->h_dest,
|
||||
2 * ADDRLEN);
|
||||
ADDRLEN);
|
||||
memcpy_toio(ptx->mac.addr_2, ((struct ethhdr *)data)->h_source,
|
||||
ADDRLEN);
|
||||
memcpy_toio(ptx->mac.addr_3, local->bss_id, ADDRLEN);
|
||||
} else { /* infrastructure */
|
||||
|
||||
|
@ -2424,9 +2426,7 @@ static void rx_authenticate(ray_dev_t *local, struct rcs __iomem *prcs,
|
|||
copy_from_rx_buff(local, buff, pkt_addr, rx_len & 0xff);
|
||||
/* if we are trying to get authenticated */
|
||||
if (local->sparm.b4.a_network_type == ADHOC) {
|
||||
pr_debug("ray_cs rx_auth var= %02x %02x %02x %02x %02x %02x\n",
|
||||
msg->var[0], msg->var[1], msg->var[2], msg->var[3],
|
||||
msg->var[4], msg->var[5]);
|
||||
pr_debug("ray_cs rx_auth var= %6ph\n", msg->var);
|
||||
if (msg->var[2] == 1) {
|
||||
pr_debug("ray_cs Sending authentication response.\n");
|
||||
if (!build_auth_frame
|
||||
|
|
|
@ -1378,6 +1378,8 @@ struct rtl8xxxu_priv {
|
|||
u8 no_pape:1;
|
||||
u8 int_buf[USB_INTR_CONTENT_LENGTH];
|
||||
u8 rssi_level;
|
||||
DECLARE_BITMAP(tx_aggr_started, IEEE80211_NUM_TIDS);
|
||||
DECLARE_BITMAP(tid_tx_operational, IEEE80211_NUM_TIDS);
|
||||
/*
|
||||
* Only one virtual interface permitted because only STA mode
|
||||
* is supported and no iface_combinations are provided.
|
||||
|
|
|
@ -1670,7 +1670,7 @@ static int rtl8xxxu_identify_chip(struct rtl8xxxu_priv *priv)
|
|||
priv->rf_paths = 2;
|
||||
priv->rx_paths = 2;
|
||||
priv->tx_paths = 2;
|
||||
priv->usb_interrupts = 1;
|
||||
priv->usb_interrupts = 0;
|
||||
priv->rtl_chip = RTL8192C;
|
||||
}
|
||||
priv->has_wifi = 1;
|
||||
|
@ -1680,7 +1680,7 @@ static int rtl8xxxu_identify_chip(struct rtl8xxxu_priv *priv)
|
|||
priv->rx_paths = 1;
|
||||
priv->tx_paths = 1;
|
||||
priv->rtl_chip = RTL8188C;
|
||||
priv->usb_interrupts = 1;
|
||||
priv->usb_interrupts = 0;
|
||||
priv->has_wifi = 1;
|
||||
}
|
||||
|
||||
|
@ -4805,6 +4805,8 @@ rtl8xxxu_fill_txdesc_v1(struct ieee80211_hw *hw, struct ieee80211_hdr *hdr,
|
|||
struct ieee80211_rate *tx_rate = ieee80211_get_tx_rate(hw, tx_info);
|
||||
struct rtl8xxxu_priv *priv = hw->priv;
|
||||
struct device *dev = &priv->udev->dev;
|
||||
u8 *qc = ieee80211_get_qos_ctl(hdr);
|
||||
u8 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
|
||||
u32 rate;
|
||||
u16 rate_flags = tx_info->control.rates[0].flags;
|
||||
u16 seq_number;
|
||||
|
@ -4828,7 +4830,7 @@ rtl8xxxu_fill_txdesc_v1(struct ieee80211_hw *hw, struct ieee80211_hdr *hdr,
|
|||
|
||||
tx_desc->txdw3 = cpu_to_le32((u32)seq_number << TXDESC32_SEQ_SHIFT);
|
||||
|
||||
if (ampdu_enable)
|
||||
if (ampdu_enable && test_bit(tid, priv->tid_tx_operational))
|
||||
tx_desc->txdw1 |= cpu_to_le32(TXDESC32_AGG_ENABLE);
|
||||
else
|
||||
tx_desc->txdw1 |= cpu_to_le32(TXDESC32_AGG_BREAK);
|
||||
|
@ -4876,6 +4878,8 @@ rtl8xxxu_fill_txdesc_v2(struct ieee80211_hw *hw, struct ieee80211_hdr *hdr,
|
|||
struct rtl8xxxu_priv *priv = hw->priv;
|
||||
struct device *dev = &priv->udev->dev;
|
||||
struct rtl8xxxu_txdesc40 *tx_desc40;
|
||||
u8 *qc = ieee80211_get_qos_ctl(hdr);
|
||||
u8 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
|
||||
u32 rate;
|
||||
u16 rate_flags = tx_info->control.rates[0].flags;
|
||||
u16 seq_number;
|
||||
|
@ -4902,7 +4906,7 @@ rtl8xxxu_fill_txdesc_v2(struct ieee80211_hw *hw, struct ieee80211_hdr *hdr,
|
|||
|
||||
tx_desc40->txdw9 = cpu_to_le32((u32)seq_number << TXDESC40_SEQ_SHIFT);
|
||||
|
||||
if (ampdu_enable)
|
||||
if (ampdu_enable && test_bit(tid, priv->tid_tx_operational))
|
||||
tx_desc40->txdw2 |= cpu_to_le32(TXDESC40_AGG_ENABLE);
|
||||
else
|
||||
tx_desc40->txdw2 |= cpu_to_le32(TXDESC40_AGG_BREAK);
|
||||
|
@ -5015,12 +5019,19 @@ static void rtl8xxxu_tx(struct ieee80211_hw *hw,
|
|||
if (ieee80211_is_data_qos(hdr->frame_control) && sta) {
|
||||
if (sta->ht_cap.ht_supported) {
|
||||
u32 ampdu, val32;
|
||||
u8 *qc = ieee80211_get_qos_ctl(hdr);
|
||||
u8 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK;
|
||||
|
||||
ampdu = (u32)sta->ht_cap.ampdu_density;
|
||||
val32 = ampdu << TXDESC_AMPDU_DENSITY_SHIFT;
|
||||
tx_desc->txdw2 |= cpu_to_le32(val32);
|
||||
|
||||
ampdu_enable = true;
|
||||
|
||||
if (!test_bit(tid, priv->tx_aggr_started) &&
|
||||
!(skb->protocol == cpu_to_be16(ETH_P_PAE)))
|
||||
if (!ieee80211_start_tx_ba_session(sta, tid, 0))
|
||||
set_bit(tid, priv->tx_aggr_started);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6096,6 +6107,7 @@ rtl8xxxu_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
|||
struct device *dev = &priv->udev->dev;
|
||||
u8 ampdu_factor, ampdu_density;
|
||||
struct ieee80211_sta *sta = params->sta;
|
||||
u16 tid = params->tid;
|
||||
enum ieee80211_ampdu_mlme_action action = params->action;
|
||||
|
||||
switch (action) {
|
||||
|
@ -6108,17 +6120,20 @@ rtl8xxxu_ampdu_action(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
|
|||
dev_dbg(dev,
|
||||
"Changed HT: ampdu_factor %02x, ampdu_density %02x\n",
|
||||
ampdu_factor, ampdu_density);
|
||||
break;
|
||||
return IEEE80211_AMPDU_TX_START_IMMEDIATE;
|
||||
case IEEE80211_AMPDU_TX_STOP_CONT:
|
||||
case IEEE80211_AMPDU_TX_STOP_FLUSH:
|
||||
dev_dbg(dev, "%s: IEEE80211_AMPDU_TX_STOP_FLUSH\n", __func__);
|
||||
rtl8xxxu_set_ampdu_factor(priv, 0);
|
||||
rtl8xxxu_set_ampdu_min_space(priv, 0);
|
||||
break;
|
||||
case IEEE80211_AMPDU_TX_STOP_FLUSH_CONT:
|
||||
dev_dbg(dev, "%s: IEEE80211_AMPDU_TX_STOP_FLUSH_CONT\n",
|
||||
__func__);
|
||||
dev_dbg(dev, "%s: IEEE80211_AMPDU_TX_STOP\n", __func__);
|
||||
rtl8xxxu_set_ampdu_factor(priv, 0);
|
||||
rtl8xxxu_set_ampdu_min_space(priv, 0);
|
||||
clear_bit(tid, priv->tx_aggr_started);
|
||||
clear_bit(tid, priv->tid_tx_operational);
|
||||
ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid);
|
||||
break;
|
||||
case IEEE80211_AMPDU_TX_OPERATIONAL:
|
||||
dev_dbg(dev, "%s: IEEE80211_AMPDU_TX_OPERATIONAL\n", __func__);
|
||||
set_bit(tid, priv->tid_tx_operational);
|
||||
break;
|
||||
case IEEE80211_AMPDU_RX_START:
|
||||
dev_dbg(dev, "%s: IEEE80211_AMPDU_RX_START\n", __func__);
|
||||
|
|
|
@ -160,6 +160,15 @@ static u32 targetchnl_2g[TARGET_CHNL_NUM_2G] = {
|
|||
25711, 25658, 25606, 25554, 25502, 25451, 25328
|
||||
};
|
||||
|
||||
static const u8 channel_all[59] = {
|
||||
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
||||
36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58,
|
||||
60, 62, 64, 100, 102, 104, 106, 108, 110, 112,
|
||||
114, 116, 118, 120, 122, 124, 126, 128, 130,
|
||||
132, 134, 136, 138, 140, 149, 151, 153, 155,
|
||||
157, 159, 161, 163, 165
|
||||
};
|
||||
|
||||
static u32 _rtl92d_phy_calculate_bit_shift(u32 bitmask)
|
||||
{
|
||||
u32 i = ffs(bitmask);
|
||||
|
@ -681,7 +690,7 @@ static bool _rtl92d_phy_bb_config(struct ieee80211_hw *hw)
|
|||
struct rtl_priv *rtlpriv = rtl_priv(hw);
|
||||
struct rtl_phy *rtlphy = &(rtlpriv->phy);
|
||||
struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
|
||||
bool rtstatus = true;
|
||||
bool rtstatus;
|
||||
|
||||
rtl_dbg(rtlpriv, COMP_INIT, DBG_TRACE, "==>\n");
|
||||
rtstatus = _rtl92d_phy_config_bb_with_headerfile(hw,
|
||||
|
@ -887,7 +896,7 @@ static void _rtl92d_ccxpower_index_check(struct ieee80211_hw *hw,
|
|||
|
||||
static u8 _rtl92c_phy_get_rightchnlplace(u8 chnl)
|
||||
{
|
||||
u8 place = chnl;
|
||||
u8 place;
|
||||
|
||||
if (chnl > 14) {
|
||||
for (place = 14; place < sizeof(channel5g); place++) {
|
||||
|
@ -1354,14 +1363,6 @@ static void _rtl92d_phy_switch_rf_setting(struct ieee80211_hw *hw, u8 channel)
|
|||
|
||||
u8 rtl92d_get_rightchnlplace_for_iqk(u8 chnl)
|
||||
{
|
||||
u8 channel_all[59] = {
|
||||
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
||||
36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58,
|
||||
60, 62, 64, 100, 102, 104, 106, 108, 110, 112,
|
||||
114, 116, 118, 120, 122, 124, 126, 128, 130,
|
||||
132, 134, 136, 138, 140, 149, 151, 153, 155,
|
||||
157, 159, 161, 163, 165
|
||||
};
|
||||
u8 place = chnl;
|
||||
|
||||
if (chnl > 14) {
|
||||
|
@ -3220,37 +3221,28 @@ void rtl92d_phy_config_macphymode_info(struct ieee80211_hw *hw)
|
|||
u8 rtl92d_get_chnlgroup_fromarray(u8 chnl)
|
||||
{
|
||||
u8 group;
|
||||
u8 channel_info[59] = {
|
||||
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
|
||||
36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56,
|
||||
58, 60, 62, 64, 100, 102, 104, 106, 108,
|
||||
110, 112, 114, 116, 118, 120, 122, 124,
|
||||
126, 128, 130, 132, 134, 136, 138, 140,
|
||||
149, 151, 153, 155, 157, 159, 161, 163,
|
||||
165
|
||||
};
|
||||
|
||||
if (channel_info[chnl] <= 3)
|
||||
if (channel_all[chnl] <= 3)
|
||||
group = 0;
|
||||
else if (channel_info[chnl] <= 9)
|
||||
else if (channel_all[chnl] <= 9)
|
||||
group = 1;
|
||||
else if (channel_info[chnl] <= 14)
|
||||
else if (channel_all[chnl] <= 14)
|
||||
group = 2;
|
||||
else if (channel_info[chnl] <= 44)
|
||||
else if (channel_all[chnl] <= 44)
|
||||
group = 3;
|
||||
else if (channel_info[chnl] <= 54)
|
||||
else if (channel_all[chnl] <= 54)
|
||||
group = 4;
|
||||
else if (channel_info[chnl] <= 64)
|
||||
else if (channel_all[chnl] <= 64)
|
||||
group = 5;
|
||||
else if (channel_info[chnl] <= 112)
|
||||
else if (channel_all[chnl] <= 112)
|
||||
group = 6;
|
||||
else if (channel_info[chnl] <= 126)
|
||||
else if (channel_all[chnl] <= 126)
|
||||
group = 7;
|
||||
else if (channel_info[chnl] <= 140)
|
||||
else if (channel_all[chnl] <= 140)
|
||||
group = 8;
|
||||
else if (channel_info[chnl] <= 153)
|
||||
else if (channel_all[chnl] <= 153)
|
||||
group = 9;
|
||||
else if (channel_info[chnl] <= 159)
|
||||
else if (channel_all[chnl] <= 159)
|
||||
group = 10;
|
||||
else
|
||||
group = 11;
|
||||
|
|
|
@ -15,9 +15,9 @@ rtw88_core-y += main.o \
|
|||
ps.o \
|
||||
sec.o \
|
||||
bf.o \
|
||||
wow.o \
|
||||
regd.o
|
||||
|
||||
rtw88_core-$(CONFIG_PM) += wow.o
|
||||
|
||||
obj-$(CONFIG_RTW88_8822B) += rtw88_8822b.o
|
||||
rtw88_8822b-objs := rtw8822b.o rtw8822b_table.o
|
||||
|
|
|
@ -819,7 +819,7 @@ static u16 rtw_get_rsvd_page_probe_req_size(struct rtw_dev *rtwdev,
|
|||
continue;
|
||||
if ((!ssid && !rsvd_pkt->ssid) ||
|
||||
rtw_ssid_equal(rsvd_pkt->ssid, ssid))
|
||||
size = rsvd_pkt->skb->len;
|
||||
size = rsvd_pkt->probe_req_size;
|
||||
}
|
||||
|
||||
return size;
|
||||
|
@ -1047,6 +1047,8 @@ static struct sk_buff *rtw_get_rsvd_page_skb(struct ieee80211_hw *hw,
|
|||
ssid->ssid_len, 0);
|
||||
else
|
||||
skb_new = ieee80211_probereq_get(hw, vif->addr, NULL, 0, 0);
|
||||
if (skb_new)
|
||||
rsvd_pkt->probe_req_size = (u16)skb_new->len;
|
||||
break;
|
||||
case RSVD_NLO_INFO:
|
||||
skb_new = rtw_nlo_info_get(hw);
|
||||
|
@ -1643,6 +1645,7 @@ int rtw_fw_dump_fifo(struct rtw_dev *rtwdev, u8 fifo_sel, u32 addr, u32 size,
|
|||
static void __rtw_fw_update_pkt(struct rtw_dev *rtwdev, u8 pkt_id, u16 size,
|
||||
u8 location)
|
||||
{
|
||||
struct rtw_chip_info *chip = rtwdev->chip;
|
||||
u8 h2c_pkt[H2C_PKT_SIZE] = {0};
|
||||
u16 total_size = H2C_PKT_HDR_SIZE + H2C_PKT_UPDATE_PKT_LEN;
|
||||
|
||||
|
@ -1653,6 +1656,7 @@ static void __rtw_fw_update_pkt(struct rtw_dev *rtwdev, u8 pkt_id, u16 size,
|
|||
UPDATE_PKT_SET_LOCATION(h2c_pkt, location);
|
||||
|
||||
/* include txdesc size */
|
||||
size += chip->tx_pkt_desc_sz;
|
||||
UPDATE_PKT_SET_SIZE(h2c_pkt, size);
|
||||
|
||||
rtw_fw_send_h2c_packet(rtwdev, h2c_pkt);
|
||||
|
@ -1662,7 +1666,7 @@ void rtw_fw_update_pkt_probe_req(struct rtw_dev *rtwdev,
|
|||
struct cfg80211_ssid *ssid)
|
||||
{
|
||||
u8 loc;
|
||||
u32 size;
|
||||
u16 size;
|
||||
|
||||
loc = rtw_get_rsvd_page_probe_req_location(rtwdev, ssid);
|
||||
if (!loc) {
|
||||
|
|
|
@ -99,7 +99,7 @@ enum rtw_beacon_filter_offload_mode {
|
|||
BCN_FILTER_OFFLOAD_MODE_2,
|
||||
BCN_FILTER_OFFLOAD_MODE_3,
|
||||
|
||||
BCN_FILTER_OFFLOAD_MODE_DEFAULT = BCN_FILTER_OFFLOAD_MODE_1,
|
||||
BCN_FILTER_OFFLOAD_MODE_DEFAULT = BCN_FILTER_OFFLOAD_MODE_0,
|
||||
};
|
||||
|
||||
struct rtw_coex_info_req {
|
||||
|
@ -147,6 +147,7 @@ struct rtw_rsvd_page {
|
|||
u8 page;
|
||||
bool add_txdesc;
|
||||
struct cfg80211_ssid *ssid;
|
||||
u16 probe_req_size;
|
||||
};
|
||||
|
||||
enum rtw_keep_alive_pkt_type {
|
||||
|
|
|
@ -1338,6 +1338,8 @@ static void rtw_init_ht_cap(struct rtw_dev *rtwdev,
|
|||
|
||||
if (rtw_chip_has_rx_ldpc(rtwdev))
|
||||
ht_cap->cap |= IEEE80211_HT_CAP_LDPC_CODING;
|
||||
if (rtw_chip_has_tx_stbc(rtwdev))
|
||||
ht_cap->cap |= IEEE80211_HT_CAP_TX_STBC;
|
||||
|
||||
if (efuse->hw_cap.bw & BIT(RTW_CHANNEL_WIDTH_40))
|
||||
ht_cap->cap |= IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
|
||||
|
|
|
@ -1146,6 +1146,7 @@ struct rtw_chip_info {
|
|||
u8 txgi_factor;
|
||||
bool is_pwr_by_rate_dec;
|
||||
bool rx_ldpc;
|
||||
bool tx_stbc;
|
||||
u8 max_power_index;
|
||||
|
||||
u16 fw_fifo_addr[RTW_FW_FIFO_MAX];
|
||||
|
@ -1959,6 +1960,11 @@ static inline bool rtw_chip_has_rx_ldpc(struct rtw_dev *rtwdev)
|
|||
return rtwdev->chip->rx_ldpc;
|
||||
}
|
||||
|
||||
static inline bool rtw_chip_has_tx_stbc(struct rtw_dev *rtwdev)
|
||||
{
|
||||
return rtwdev->chip->tx_stbc;
|
||||
}
|
||||
|
||||
static inline void rtw_release_macid(struct rtw_dev *rtwdev, u8 mac_id)
|
||||
{
|
||||
clear_bit(mac_id, rtwdev->mac_id_map);
|
||||
|
|
|
@ -268,11 +268,6 @@ static int rtw_pci_init_rx_ring(struct rtw_dev *rtwdev,
|
|||
int i, allocated;
|
||||
int ret = 0;
|
||||
|
||||
if (len > TRX_BD_IDX_MASK) {
|
||||
rtw_err(rtwdev, "len %d exceeds maximum RX entries\n", len);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
head = dma_alloc_coherent(&pdev->dev, ring_sz, &dma, GFP_KERNEL);
|
||||
if (!head) {
|
||||
rtw_err(rtwdev, "failed to allocate rx ring\n");
|
||||
|
@ -1359,6 +1354,25 @@ static void rtw_pci_clkreq_set(struct rtw_dev *rtwdev, bool enable)
|
|||
rtw_dbi_write8(rtwdev, RTK_PCIE_LINK_CFG, value);
|
||||
}
|
||||
|
||||
static void rtw_pci_clkreq_pad_low(struct rtw_dev *rtwdev, bool enable)
|
||||
{
|
||||
u8 value;
|
||||
int ret;
|
||||
|
||||
ret = rtw_dbi_read8(rtwdev, RTK_PCIE_LINK_CFG, &value);
|
||||
if (ret) {
|
||||
rtw_err(rtwdev, "failed to read CLKREQ_L1, ret=%d", ret);
|
||||
return;
|
||||
}
|
||||
|
||||
if (enable)
|
||||
value &= ~BIT_CLKREQ_N_PAD;
|
||||
else
|
||||
value |= BIT_CLKREQ_N_PAD;
|
||||
|
||||
rtw_dbi_write8(rtwdev, RTK_PCIE_LINK_CFG, value);
|
||||
}
|
||||
|
||||
static void rtw_pci_aspm_set(struct rtw_dev *rtwdev, bool enable)
|
||||
{
|
||||
u8 value;
|
||||
|
@ -1500,11 +1514,25 @@ static void rtw_pci_phy_cfg(struct rtw_dev *rtwdev)
|
|||
|
||||
static int __maybe_unused rtw_pci_suspend(struct device *dev)
|
||||
{
|
||||
struct ieee80211_hw *hw = dev_get_drvdata(dev);
|
||||
struct rtw_dev *rtwdev = hw->priv;
|
||||
struct rtw_chip_info *chip = rtwdev->chip;
|
||||
struct rtw_efuse *efuse = &rtwdev->efuse;
|
||||
|
||||
if (chip->id == RTW_CHIP_TYPE_8822C && efuse->rfe_option == 6)
|
||||
rtw_pci_clkreq_pad_low(rtwdev, true);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int __maybe_unused rtw_pci_resume(struct device *dev)
|
||||
{
|
||||
struct ieee80211_hw *hw = dev_get_drvdata(dev);
|
||||
struct rtw_dev *rtwdev = hw->priv;
|
||||
struct rtw_chip_info *chip = rtwdev->chip;
|
||||
struct rtw_efuse *efuse = &rtwdev->efuse;
|
||||
|
||||
if (chip->id == RTW_CHIP_TYPE_8822C && efuse->rfe_option == 6)
|
||||
rtw_pci_clkreq_pad_low(rtwdev, false);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
#define RTK_PCIE_LINK_CFG 0x0719
|
||||
#define BIT_CLKREQ_SW_EN BIT(4)
|
||||
#define BIT_L1_SW_EN BIT(3)
|
||||
#define BIT_CLKREQ_N_PAD BIT(0)
|
||||
#define RTK_PCIE_CLKDLY_CTRL 0x0725
|
||||
|
||||
#define BIT_PCI_BCNQ_FLAG BIT(4)
|
||||
|
|
|
@ -5288,6 +5288,7 @@ struct rtw_chip_info rtw8822c_hw_spec = {
|
|||
.bfer_su_max_num = 2,
|
||||
.bfer_mu_max_num = 1,
|
||||
.rx_ldpc = true,
|
||||
.tx_stbc = true,
|
||||
|
||||
#ifdef CONFIG_PM
|
||||
.wow_fw_name = "rtw88/rtw8822c_wow_fw.bin",
|
||||
|
|
|
@ -162,7 +162,7 @@ void rtw_tx_report_purge_timer(struct timer_list *t)
|
|||
if (skb_queue_len(&tx_report->queue) == 0)
|
||||
return;
|
||||
|
||||
rtw_dbg(rtwdev, RTW_DBG_TX, "purge skb(s) not reported by firmware\n");
|
||||
rtw_warn(rtwdev, "failed to get tx report from firmware\n");
|
||||
|
||||
spin_lock_irqsave(&tx_report->q_lock, flags);
|
||||
skb_queue_purge(&tx_report->queue);
|
||||
|
|
|
@ -12,26 +12,54 @@
|
|||
|
||||
static void rtw_wow_show_wakeup_reason(struct rtw_dev *rtwdev)
|
||||
{
|
||||
struct cfg80211_wowlan_nd_info nd_info;
|
||||
struct cfg80211_wowlan_wakeup wakeup = {
|
||||
.pattern_idx = -1,
|
||||
};
|
||||
u8 reason;
|
||||
|
||||
reason = rtw_read8(rtwdev, REG_WOWLAN_WAKE_REASON);
|
||||
|
||||
if (reason == RTW_WOW_RSN_RX_DEAUTH)
|
||||
switch (reason) {
|
||||
case RTW_WOW_RSN_RX_DEAUTH:
|
||||
wakeup.disconnect = true;
|
||||
rtw_dbg(rtwdev, RTW_DBG_WOW, "WOW: Rx deauth\n");
|
||||
else if (reason == RTW_WOW_RSN_DISCONNECT)
|
||||
break;
|
||||
case RTW_WOW_RSN_DISCONNECT:
|
||||
wakeup.disconnect = true;
|
||||
rtw_dbg(rtwdev, RTW_DBG_WOW, "WOW: AP is off\n");
|
||||
else if (reason == RTW_WOW_RSN_RX_MAGIC_PKT)
|
||||
break;
|
||||
case RTW_WOW_RSN_RX_MAGIC_PKT:
|
||||
wakeup.magic_pkt = true;
|
||||
rtw_dbg(rtwdev, RTW_DBG_WOW, "WOW: Rx magic packet\n");
|
||||
else if (reason == RTW_WOW_RSN_RX_GTK_REKEY)
|
||||
break;
|
||||
case RTW_WOW_RSN_RX_GTK_REKEY:
|
||||
wakeup.gtk_rekey_failure = true;
|
||||
rtw_dbg(rtwdev, RTW_DBG_WOW, "WOW: Rx gtk rekey\n");
|
||||
else if (reason == RTW_WOW_RSN_RX_PTK_REKEY)
|
||||
rtw_dbg(rtwdev, RTW_DBG_WOW, "WOW: Rx ptk rekey\n");
|
||||
else if (reason == RTW_WOW_RSN_RX_PATTERN_MATCH)
|
||||
break;
|
||||
case RTW_WOW_RSN_RX_PATTERN_MATCH:
|
||||
/* Current firmware and driver don't report pattern index
|
||||
* Use pattern_idx to 0 defaultly.
|
||||
*/
|
||||
wakeup.pattern_idx = 0;
|
||||
rtw_dbg(rtwdev, RTW_DBG_WOW, "WOW: Rx pattern match packet\n");
|
||||
else if (reason == RTW_WOW_RSN_RX_NLO)
|
||||
break;
|
||||
case RTW_WOW_RSN_RX_NLO:
|
||||
/* Current firmware and driver don't report ssid index.
|
||||
* Use 0 for n_matches based on its comment.
|
||||
*/
|
||||
nd_info.n_matches = 0;
|
||||
wakeup.net_detect = &nd_info;
|
||||
rtw_dbg(rtwdev, RTW_DBG_WOW, "Rx NLO\n");
|
||||
else
|
||||
break;
|
||||
default:
|
||||
rtw_warn(rtwdev, "Unknown wakeup reason %x\n", reason);
|
||||
ieee80211_report_wowlan_wakeup(rtwdev->wow.wow_vif, NULL,
|
||||
GFP_KERNEL);
|
||||
return;
|
||||
}
|
||||
ieee80211_report_wowlan_wakeup(rtwdev->wow.wow_vif, &wakeup,
|
||||
GFP_KERNEL);
|
||||
}
|
||||
|
||||
static void rtw_wow_pattern_write_cam(struct rtw_dev *rtwdev, u8 addr,
|
||||
|
@ -283,15 +311,26 @@ static void rtw_wow_rx_dma_start(struct rtw_dev *rtwdev)
|
|||
|
||||
static int rtw_wow_check_fw_status(struct rtw_dev *rtwdev, bool wow_enable)
|
||||
{
|
||||
/* wait 100ms for wow firmware to finish work */
|
||||
msleep(100);
|
||||
int ret;
|
||||
u8 check;
|
||||
u32 check_dis;
|
||||
|
||||
if (wow_enable) {
|
||||
if (rtw_read8(rtwdev, REG_WOWLAN_WAKE_REASON))
|
||||
ret = read_poll_timeout(rtw_read8, check, !check, 1000,
|
||||
100000, true, rtwdev,
|
||||
REG_WOWLAN_WAKE_REASON);
|
||||
if (ret)
|
||||
goto wow_fail;
|
||||
} else {
|
||||
if (rtw_read32_mask(rtwdev, REG_FE1IMR, BIT_FS_RXDONE) ||
|
||||
rtw_read32_mask(rtwdev, REG_RXPKT_NUM, BIT_RW_RELEASE))
|
||||
ret = read_poll_timeout(rtw_read32_mask, check_dis,
|
||||
!check_dis, 1000, 100000, true, rtwdev,
|
||||
REG_FE1IMR, BIT_FS_RXDONE);
|
||||
if (ret)
|
||||
goto wow_fail;
|
||||
ret = read_poll_timeout(rtw_read32_mask, check_dis,
|
||||
!check_dis, 1000, 100000, false, rtwdev,
|
||||
REG_RXPKT_NUM, BIT_RW_RELEASE);
|
||||
if (ret)
|
||||
goto wow_fail;
|
||||
}
|
||||
|
||||
|
@ -432,37 +471,31 @@ static void rtw_wow_fw_media_status(struct rtw_dev *rtwdev, bool connect)
|
|||
rtw_iterate_stas_atomic(rtwdev, rtw_wow_fw_media_status_iter, &data);
|
||||
}
|
||||
|
||||
static void rtw_wow_config_pno_rsvd_page(struct rtw_dev *rtwdev,
|
||||
struct rtw_vif *rtwvif)
|
||||
{
|
||||
rtw_add_rsvd_page_pno(rtwdev, rtwvif);
|
||||
}
|
||||
|
||||
static void rtw_wow_config_linked_rsvd_page(struct rtw_dev *rtwdev,
|
||||
struct rtw_vif *rtwvif)
|
||||
{
|
||||
rtw_add_rsvd_page_sta(rtwdev, rtwvif);
|
||||
}
|
||||
|
||||
static void rtw_wow_config_rsvd_page(struct rtw_dev *rtwdev,
|
||||
struct rtw_vif *rtwvif)
|
||||
{
|
||||
rtw_remove_rsvd_page(rtwdev, rtwvif);
|
||||
|
||||
if (rtw_wow_mgd_linked(rtwdev)) {
|
||||
rtw_wow_config_linked_rsvd_page(rtwdev, rtwvif);
|
||||
} else if (test_bit(RTW_FLAG_WOWLAN, rtwdev->flags) &&
|
||||
rtw_wow_no_link(rtwdev)) {
|
||||
rtw_wow_config_pno_rsvd_page(rtwdev, rtwvif);
|
||||
}
|
||||
}
|
||||
|
||||
static int rtw_wow_dl_fw_rsvd_page(struct rtw_dev *rtwdev)
|
||||
static int rtw_wow_config_wow_fw_rsvd_page(struct rtw_dev *rtwdev)
|
||||
{
|
||||
struct ieee80211_vif *wow_vif = rtwdev->wow.wow_vif;
|
||||
struct rtw_vif *rtwvif = (struct rtw_vif *)wow_vif->drv_priv;
|
||||
|
||||
rtw_wow_config_rsvd_page(rtwdev, rtwvif);
|
||||
rtw_remove_rsvd_page(rtwdev, rtwvif);
|
||||
|
||||
if (rtw_wow_no_link(rtwdev))
|
||||
rtw_add_rsvd_page_pno(rtwdev, rtwvif);
|
||||
else
|
||||
rtw_add_rsvd_page_sta(rtwdev, rtwvif);
|
||||
|
||||
return rtw_fw_download_rsvd_page(rtwdev);
|
||||
}
|
||||
|
||||
static int rtw_wow_config_normal_fw_rsvd_page(struct rtw_dev *rtwdev)
|
||||
{
|
||||
struct ieee80211_vif *wow_vif = rtwdev->wow.wow_vif;
|
||||
struct rtw_vif *rtwvif = (struct rtw_vif *)wow_vif->drv_priv;
|
||||
|
||||
rtw_remove_rsvd_page(rtwdev, rtwvif);
|
||||
rtw_add_rsvd_page_sta(rtwdev, rtwvif);
|
||||
|
||||
if (rtw_wow_no_link(rtwdev))
|
||||
return 0;
|
||||
|
||||
return rtw_fw_download_rsvd_page(rtwdev);
|
||||
}
|
||||
|
@ -660,7 +693,7 @@ static int rtw_wow_enable(struct rtw_dev *rtwdev)
|
|||
|
||||
set_bit(RTW_FLAG_WOWLAN, rtwdev->flags);
|
||||
|
||||
ret = rtw_wow_dl_fw_rsvd_page(rtwdev);
|
||||
ret = rtw_wow_config_wow_fw_rsvd_page(rtwdev);
|
||||
if (ret) {
|
||||
rtw_err(rtwdev, "failed to download wowlan rsvd page\n");
|
||||
goto error;
|
||||
|
@ -733,7 +766,7 @@ static int rtw_wow_disable(struct rtw_dev *rtwdev)
|
|||
goto out;
|
||||
}
|
||||
|
||||
ret = rtw_wow_dl_fw_rsvd_page(rtwdev);
|
||||
ret = rtw_wow_config_normal_fw_rsvd_page(rtwdev);
|
||||
if (ret)
|
||||
rtw_err(rtwdev, "failed to download normal rsvd page\n");
|
||||
|
||||
|
|
|
@ -1038,8 +1038,10 @@ static int rsi_load_9116_firmware(struct rsi_hw *adapter)
|
|||
}
|
||||
|
||||
ta_firmware = kmemdup(fw_entry->data, fw_entry->size, GFP_KERNEL);
|
||||
if (!ta_firmware)
|
||||
if (!ta_firmware) {
|
||||
status = -ENOMEM;
|
||||
goto fail_release_fw;
|
||||
}
|
||||
fw_p = ta_firmware;
|
||||
instructions_sz = fw_entry->size;
|
||||
rsi_dbg(INFO_ZONE, "FW Length = %d bytes\n", instructions_sz);
|
||||
|
|
|
@ -816,6 +816,7 @@ static int rsi_probe(struct usb_interface *pfunction,
|
|||
} else {
|
||||
rsi_dbg(ERR_ZONE, "%s: Unsupported RSI device id 0x%x\n",
|
||||
__func__, id->idProduct);
|
||||
status = -ENODEV;
|
||||
goto err1;
|
||||
}
|
||||
|
||||
|
|
|
@ -75,6 +75,7 @@
|
|||
#define SDIO_DEVICE_ID_BROADCOM_43364 0xa9a4
|
||||
#define SDIO_DEVICE_ID_BROADCOM_43430 0xa9a6
|
||||
#define SDIO_DEVICE_ID_BROADCOM_43455 0xa9bf
|
||||
#define SDIO_DEVICE_ID_BROADCOM_CYPRESS_43752 0xaae8
|
||||
|
||||
#define SDIO_VENDOR_ID_MARVELL 0x02df
|
||||
#define SDIO_DEVICE_ID_MARVELL_LIBERTAS 0x9103
|
||||
|
|
Loading…
Reference in New Issue