bwn(4): migrate bwn(4) to the native bhnd(9) interface, and drop siba_bwn.
- Remove the shim interface that allowed bwn(4) to use either siba_bwn or bhnd(4), replacing all siba_bwn calls with their bhnd(4) bus equivalents. - Drop the legay, now-unused siba_bwn bus driver. - Clean up bhnd(4) board flag defines referenced by bwn(4). Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D13518
This commit is contained in:
parent
6145bc74c1
commit
601b99882d
@ -24,26 +24,29 @@
|
||||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd June 11, 2015
|
||||
.Dd December 16, 2017
|
||||
.Dt BWN 4
|
||||
.Os
|
||||
.Sh NAME
|
||||
.Nm bwn
|
||||
.Nd Broadcom BCM43xx IEEE 802.11b/g wireless network driver
|
||||
.Nd Broadcom BCM43xx SoftMAC IEEE 802.11 wireless network driver
|
||||
.Sh SYNOPSIS
|
||||
To compile this driver into the kernel,
|
||||
place the following lines in your
|
||||
kernel configuration file:
|
||||
To compile this driver into the kernel, add the following lines to the kernel
|
||||
configuration file:
|
||||
.Bd -ragged -offset indent
|
||||
.Cd "device siba_bwn"
|
||||
.Cd "device bwn"
|
||||
.Cd "device bhnd"
|
||||
.Cd "device bhndb"
|
||||
.Cd "device bhndb_pci"
|
||||
.Cd "device bcma"
|
||||
.Cd "device siba"
|
||||
.Cd "device gpio"
|
||||
.Cd "device wlan"
|
||||
.Cd "device wlan_amrr"
|
||||
.Cd "device firmware"
|
||||
.Ed
|
||||
.Pp
|
||||
Alternatively, to load the driver as a
|
||||
module at boot time, place the following line in
|
||||
To load the driver as a module at boot, add the following lines to
|
||||
.Xr loader.conf 5 :
|
||||
.Bd -literal -offset indent
|
||||
if_bwn_load="YES"
|
||||
@ -122,9 +125,6 @@ Tunables can be set at the
|
||||
prompt before booting the kernel or stored in
|
||||
.Xr loader.conf 5 .
|
||||
.Bl -tag -width indent
|
||||
.It Va hw.bwn.msi_disable
|
||||
This tunable disables MSI support on the hardware.
|
||||
The default value is 0.
|
||||
.It Va hw.bwn.usedma
|
||||
This tunable enables DMA operations on the hardware.
|
||||
If the value is 0, PIO mode would be used.
|
||||
@ -132,10 +132,14 @@ The default value is 1.
|
||||
.El
|
||||
.Sh SEE ALSO
|
||||
.Xr arp 4 ,
|
||||
.Xr bcma 4 ,
|
||||
.Xr bhnd 4 ,
|
||||
.Xr bhndb 4 ,
|
||||
.Xr bwi 4 ,
|
||||
.Xr cardbus 4 ,
|
||||
.Xr intro 4 ,
|
||||
.Xr pci 4 ,
|
||||
.Xr siba 4 ,
|
||||
.Xr wlan 4 ,
|
||||
.Xr wlan_amrr 4 ,
|
||||
.Xr ifconfig 8 ,
|
||||
@ -145,12 +149,20 @@ The
|
||||
.Nm
|
||||
driver first appeared in
|
||||
.Fx 8.1 .
|
||||
The driver was updated to support the common Broadcom
|
||||
.Xr bhnd 4
|
||||
bus interface in
|
||||
.Fx 12.0 .
|
||||
.Sh AUTHORS
|
||||
.An -nosplit
|
||||
The
|
||||
.Nm
|
||||
driver was written by
|
||||
.An Weongyo Jeong Aq Mt weongyo@FreeBSD.org .
|
||||
Support for
|
||||
.Xr bhnd 4
|
||||
was added by
|
||||
.An Landon Fuller Aq Mt landonf@FreeBSD.org .
|
||||
.\".Sh BUGS
|
||||
.\"Some card based on the BCM4306 and BCM4309 chips do not work properly
|
||||
.\"on channel 1, 2 and 3.
|
||||
|
@ -1250,9 +1250,9 @@ dev/bhnd/bhndb/bhndb.c optional bhndb bhnd
|
||||
dev/bhnd/bhndb/bhndb_bus_if.m optional bhndb bhnd
|
||||
dev/bhnd/bhndb/bhndb_hwdata.c optional bhndb bhnd
|
||||
dev/bhnd/bhndb/bhndb_if.m optional bhndb bhnd
|
||||
dev/bhnd/bhndb/bhndb_pci.c optional bhndb bhnd pci
|
||||
dev/bhnd/bhndb/bhndb_pci_hwdata.c optional bhndb bhnd pci
|
||||
dev/bhnd/bhndb/bhndb_pci_sprom.c optional bhndb bhnd pci
|
||||
dev/bhnd/bhndb/bhndb_pci.c optional bhndb_pci bhndb bhnd pci
|
||||
dev/bhnd/bhndb/bhndb_pci_hwdata.c optional bhndb_pci bhndb bhnd pci
|
||||
dev/bhnd/bhndb/bhndb_pci_sprom.c optional bhndb_pci bhndb bhnd pci
|
||||
dev/bhnd/bhndb/bhndb_subr.c optional bhndb bhnd
|
||||
dev/bhnd/bcma/bcma.c optional bcma bhnd
|
||||
dev/bhnd/bcma/bcma_bhndb.c optional bcma bhnd bhndb
|
||||
@ -1327,19 +1327,16 @@ dev/bwi/bwirf.c optional bwi
|
||||
dev/bwi/if_bwi.c optional bwi
|
||||
dev/bwi/if_bwi_pci.c optional bwi pci
|
||||
# XXX Work around clang warnings, until maintainer approves fix.
|
||||
dev/bwn/if_bwn.c optional bwn siba_bwn \
|
||||
dev/bwn/if_bwn.c optional bwn bhnd \
|
||||
compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}"
|
||||
dev/bwn/if_bwn_bhnd.c optional bwn bhnd
|
||||
dev/bwn/if_bwn_pci.c optional bwn pci bhnd bhndb
|
||||
dev/bwn/if_bwn_phy_common.c optional bwn siba_bwn
|
||||
dev/bwn/if_bwn_phy_g.c optional bwn siba_bwn \
|
||||
dev/bwn/if_bwn_pci.c optional bwn pci bhnd bhndb bhndb_pci
|
||||
dev/bwn/if_bwn_phy_common.c optional bwn bhnd
|
||||
dev/bwn/if_bwn_phy_g.c optional bwn bhnd \
|
||||
compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED} ${NO_WCONSTANT_CONVERSION}"
|
||||
dev/bwn/if_bwn_phy_lp.c optional bwn siba_bwn \
|
||||
dev/bwn/if_bwn_phy_lp.c optional bwn bhnd \
|
||||
compile-with "${NORMAL_C} ${NO_WSOMETIMES_UNINITIALIZED}"
|
||||
dev/bwn/if_bwn_phy_n.c optional bwn siba_bwn
|
||||
dev/bwn/if_bwn_siba.c optional bwn siba_bwn
|
||||
dev/bwn/if_bwn_siba_compat.c optional bwn bhnd !bwn_use_siba
|
||||
dev/bwn/if_bwn_util.c optional bwn siba_bwn
|
||||
dev/bwn/if_bwn_phy_n.c optional bwn bhnd
|
||||
dev/bwn/if_bwn_util.c optional bwn bhnd
|
||||
dev/cardbus/cardbus.c optional cardbus
|
||||
dev/cardbus/cardbus_cis.c optional cardbus
|
||||
dev/cardbus/cardbus_device.c optional cardbus
|
||||
@ -3020,8 +3017,6 @@ dev/sdhci/sdhci_acpi.c optional sdhci acpi
|
||||
dev/sdhci/sdhci_pci.c optional sdhci pci
|
||||
dev/sf/if_sf.c optional sf pci
|
||||
dev/sge/if_sge.c optional sge pci
|
||||
dev/siba/siba_bwn.c optional siba_bwn pci
|
||||
dev/siba/siba_core.c optional siba_bwn pci
|
||||
dev/siis/siis.c optional siis pci
|
||||
dev/sis/if_sis.c optional sis pci
|
||||
dev/sk/if_sk.c optional sk pci
|
||||
|
@ -69,6 +69,7 @@
|
||||
|
||||
|
||||
/* PCI vendor IDs */
|
||||
#define PCI_VENDOR_ASUSTEK 0x1043
|
||||
#define PCI_VENDOR_EPIGRAM 0xfeda
|
||||
#define PCI_VENDOR_BROADCOM 0x14e4
|
||||
#define PCI_VENDOR_3COM 0x10b7
|
||||
@ -78,6 +79,8 @@
|
||||
#define PCI_VENDOR_DELL 0x1028
|
||||
#define PCI_VENDOR_HP 0x103c
|
||||
#define PCI_VENDOR_HP_COMPAQ 0x0e11
|
||||
#define PCI_VENDOR_LINKSYS 0x1737
|
||||
#define PCI_VENDOR_MOTOROLA 0x1057
|
||||
#define PCI_VENDOR_APPLE 0x106b
|
||||
#define PCI_VENDOR_SI_IMAGE 0x1095 /* Silicon Image, used by Arasan SDIO Host */
|
||||
#define PCI_VENDOR_BUFFALO 0x1154 /* Buffalo vendor id */
|
||||
@ -581,10 +584,10 @@
|
||||
#define BHND_BFL_LNLDO2_2P5 0x04000000 /* Select 2.5V as LNLDO2 output voltage */
|
||||
#define BHND_BFL_FASTPWR 0x08000000
|
||||
#define BHND_BFL_UCPWRCTL_MININDX 0x08000000 /* Enforce min power index to avoid FEM damage */
|
||||
#define BHND_BFL_EXTLNA_5GHz 0x10000000 /* Board has an external LNA in 5GHz band */
|
||||
#define BHND_BFL_TRSW_1by2 0x20000000 /* Board has 2 TRSW's in 1by2 designs */
|
||||
#define BHND_BFL_EXTLNA_5GHZ 0x10000000 /* Board has an external LNA in 5GHz band */
|
||||
#define BHND_BFL_TRSW_1BY2 0x20000000 /* Board has 2 TRSW's in 1by2 designs */
|
||||
#define BHND_BFL_GAINBOOSTA01 0x20000000 /* 5g Gainboost for core0 and core1 */
|
||||
#define BHND_BFL_LO_TRSW_R_5GHz 0x40000000 /* In 5G do not throw TRSW to T for clipLO gain */
|
||||
#define BHND_BFL_LO_TRSW_R_5GHZ 0x40000000 /* In 5G do not throw TRSW to T for clipLO gain */
|
||||
#define BHND_BFL_ELNA_GAINDEF 0x80000000 /* Backoff InitGain based on elna_2g/5g field
|
||||
* when this flag is set
|
||||
*/
|
||||
@ -644,7 +647,7 @@
|
||||
#define BHND_BFL_SROM11_BTCOEX 0x00000001 /* Board supports BTCOEX */
|
||||
#define BHND_BFL_SROM11_WLAN_BT_SH_XTL 0x00000002 /* bluetooth and wlan share same crystal */
|
||||
#define BHND_BFL_SROM11_EXTLNA 0x00001000 /* Board has an external LNA in 2.4GHz band */
|
||||
#define BHND_BFL_SROM11_EXTLNA_5GHz 0x10000000 /* Board has an external LNA in 5GHz band */
|
||||
#define BHND_BFL_SROM11_EXTLNA_5GHZ 0x10000000 /* Board has an external LNA in 5GHz band */
|
||||
#define BHND_BFL_SROM11_GAINBOOSTA01 0x20000000 /* 5g Gainboost for core0 and core1 */
|
||||
#define BHND_BFL2_SROM11_APLL_WAR 0x00000002 /* Flag to implement alternative A-band PLL settings */
|
||||
#define BHND_BFL2_SROM11_ANAPACTRL_2G 0x00100000 /* 2G ext PAs are ctrl-ed by analog PA ctrl lines */
|
||||
|
1257
sys/dev/bwn/if_bwn.c
1257
sys/dev/bwn/if_bwn.c
File diff suppressed because it is too large
Load Diff
@ -1,110 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2016 Landon Fuller <landonf@FreeBSD.org>
|
||||
* Copyright (c) 2017 The FreeBSD Foundation
|
||||
* All rights reserved.
|
||||
*
|
||||
* Portions of this software were developed by Landon Fuller
|
||||
* under sponsorship from the FreeBSD Foundation.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include "opt_bwn.h"
|
||||
#include "opt_wlan.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/module.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/sockio.h>
|
||||
|
||||
#include <machine/bus.h>
|
||||
#include <sys/rman.h>
|
||||
#include <machine/resource.h>
|
||||
|
||||
#include <net/ethernet.h>
|
||||
#include <net/if.h>
|
||||
#include <net/if_var.h>
|
||||
#include <net/if_arp.h>
|
||||
#include <net/if_dl.h>
|
||||
#include <net/if_llc.h>
|
||||
#include <net/if_media.h>
|
||||
#include <net/if_types.h>
|
||||
|
||||
#include <net80211/ieee80211_var.h>
|
||||
#include <net80211/ieee80211_radiotap.h>
|
||||
#include <net80211/ieee80211_regdomain.h>
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
#include <dev/bhnd/bhnd_ids.h>
|
||||
|
||||
#include "if_bwnvar.h"
|
||||
|
||||
/* Supported device identifiers */
|
||||
#define BWN_DEV(_hwrev) {{ \
|
||||
BHND_MATCH_CORE(BHND_MFGID_BCM, BHND_COREID_D11), \
|
||||
BHND_MATCH_CORE_REV(_hwrev), \
|
||||
}}
|
||||
|
||||
static const struct bhnd_device bwn_devices[] = {
|
||||
BWN_DEV(HWREV_RANGE(5, 16)),
|
||||
BWN_DEV(HWREV_EQ(23)),
|
||||
|
||||
BHND_DEVICE_END
|
||||
};
|
||||
|
||||
static int
|
||||
bwn_bhnd_probe(device_t dev)
|
||||
{
|
||||
const struct bhnd_device *id;
|
||||
|
||||
id = bhnd_device_lookup(dev, bwn_devices, sizeof(bwn_devices[0]));
|
||||
if (id == NULL)
|
||||
return (ENXIO);
|
||||
|
||||
bhnd_set_default_core_desc(dev);
|
||||
return (BUS_PROBE_DEFAULT);
|
||||
}
|
||||
|
||||
static device_method_t bwn_bhnd_methods[] = {
|
||||
/* Device interface */
|
||||
DEVMETHOD(device_probe, bwn_bhnd_probe),
|
||||
|
||||
DEVMETHOD_END
|
||||
};
|
||||
|
||||
static devclass_t bwn_devclass;
|
||||
|
||||
DEFINE_CLASS_1(bwn, bwn_bhnd_driver, bwn_bhnd_methods, sizeof(struct bwn_softc),
|
||||
bwn_driver);
|
||||
|
||||
DRIVER_MODULE(bwn_bhnd, bhnd, bwn_bhnd_driver, bwn_devclass, 0, 0);
|
||||
MODULE_DEPEND(bwn_bhnd, bhnd, 1, 1, 1);
|
||||
MODULE_VERSION(bwn_bhnd, 1);
|
@ -1,71 +0,0 @@
|
||||
/*-
|
||||
* Copyright (c) 2016 Adrian Chadd <adrian@FreeBSD.org>.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer,
|
||||
* without modification.
|
||||
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
||||
* similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
|
||||
* redistribution must be conditioned upon including a substantially
|
||||
* similar Disclaimer requirement for further binary redistribution.
|
||||
*
|
||||
* NO WARRANTY
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
||||
* THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
||||
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||
* THE POSSIBILITY OF SUCH DAMAGES.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
#ifndef __IF_BWN_CHIPID_H__
|
||||
#define __IF_BWN_CHIPID_H__
|
||||
|
||||
/*
|
||||
* BCMA chip identifiers.
|
||||
*/
|
||||
#define BCMA_CHIP_ID_BCM4313 0x4313
|
||||
#define BCMA_CHIP_ID_BCM43142 43142
|
||||
#define BCMA_CHIP_ID_BCM43131 43131
|
||||
#define BCMA_CHIP_ID_BCM43217 43217
|
||||
#define BCMA_CHIP_ID_BCM43222 43222
|
||||
#define BCMA_CHIP_ID_BCM43224 43224
|
||||
#define BCMA_PKG_ID_BCM43224_FAB_CSM 0x8
|
||||
#define BCMA_PKG_ID_BCM43224_FAB_SMIC 0xa
|
||||
#define BCMA_CHIP_ID_BCM43225 43225
|
||||
#define BCMA_CHIP_ID_BCM43227 43227
|
||||
#define BCMA_CHIP_ID_BCM43228 43228
|
||||
#define BCMA_CHIP_ID_BCM43421 43421
|
||||
#define BCMA_CHIP_ID_BCM43428 43428
|
||||
#define BCMA_CHIP_ID_BCM43431 43431
|
||||
#define BCMA_CHIP_ID_BCM43460 43460
|
||||
#define BCMA_CHIP_ID_BCM4331 0x4331
|
||||
#define BCMA_CHIP_ID_BCM6362 0x6362
|
||||
#define BCMA_CHIP_ID_BCM4360 0x4360
|
||||
#define BCMA_CHIP_ID_BCM4352 0x4352
|
||||
#define BCMA_CHIP_ID_BCM4706 0x5300
|
||||
#define BCMA_CHIP_ID_BCM4716 0x4716
|
||||
#define BCMA_CHIP_ID_BCM47162 47162
|
||||
#define BCMA_CHIP_ID_BCM4748 0x4748
|
||||
#define BCMA_CHIP_ID_BCM4749 0x4749
|
||||
#define BCMA_CHIP_ID_BCM5356 0x5356
|
||||
#define BCMA_CHIP_ID_BCM5357 0x5357
|
||||
#define BCMA_CHIP_ID_BCM53572 53572
|
||||
#define BCMA_CHIP_ID_BCM4707 53010
|
||||
#define BCMA_CHIP_ID_BCM47094 53030
|
||||
#define BCMA_CHIP_ID_BCM53018 53018
|
||||
|
||||
#define BCMA_BOARD_TYPE_BCM943224M93 0x008B
|
||||
#define BCMA_BOARD_TYPE_BCM943224M93A 0x0090
|
||||
|
||||
#endif /* __IF_BWN_CHIPID_H__ */
|
@ -40,6 +40,8 @@
|
||||
|
||||
struct bwn_mac;
|
||||
|
||||
extern int bwn_gpio_control(struct bwn_mac *, uint32_t);
|
||||
|
||||
extern uint64_t bwn_hf_read(struct bwn_mac *);
|
||||
extern void bwn_hf_write(struct bwn_mac *, uint64_t);
|
||||
|
||||
@ -59,8 +61,7 @@ extern uint32_t bwn_shm_read_4(struct bwn_mac *, uint16_t, uint16_t);
|
||||
extern void bwn_shm_write_4(struct bwn_mac *, uint16_t, uint16_t,
|
||||
uint32_t);
|
||||
|
||||
/* This is only for SIBA core */
|
||||
extern void bwn_reset_core(struct bwn_mac *, int g_mode);
|
||||
extern int bwn_reset_core(struct bwn_mac *, int g_mode);
|
||||
|
||||
extern void bwn_psctl(struct bwn_mac *, uint32_t);
|
||||
|
||||
|
@ -54,10 +54,6 @@ __FBSDID("$FreeBSD$");
|
||||
static int attach_untested = 0;
|
||||
TUNABLE_INT("hw.bwn_pci.attach_untested", &attach_untested);
|
||||
|
||||
/* If non-zero, probe at a higher priority than the stable if_bwn driver. */
|
||||
static int prefer_new_driver = 1;
|
||||
TUNABLE_INT("hw.bwn_pci.preferred", &prefer_new_driver);
|
||||
|
||||
/* SIBA Devices */
|
||||
static const struct bwn_pci_device siba_devices[] = {
|
||||
BWN_BCM_DEV(BCM4306_D11A, "BCM4306 802.11a",
|
||||
@ -169,15 +165,7 @@ bwn_pci_probe(device_t dev)
|
||||
return (ENXIO);
|
||||
|
||||
device_set_desc(dev, ident->desc);
|
||||
|
||||
/* Until this driver is complete, require explicit opt-in before
|
||||
* superceding if_bwn/siba_bwn. */
|
||||
if (prefer_new_driver)
|
||||
return (BUS_PROBE_DEFAULT+1);
|
||||
else
|
||||
return (BUS_PROBE_LOW_PRIORITY);
|
||||
|
||||
// return (BUS_PROBE_DEFAULT);
|
||||
return (BUS_PROBE_DEFAULT);
|
||||
}
|
||||
|
||||
static int
|
||||
@ -309,6 +297,7 @@ DRIVER_MODULE_ORDERED(bwn_pci, pci, bwn_pci_driver, bwn_pci_devclass, NULL,
|
||||
NULL, SI_ORDER_ANY);
|
||||
DRIVER_MODULE(bhndb, bwn_pci, bhndb_pci_driver, bhndb_devclass, NULL, NULL);
|
||||
|
||||
MODULE_DEPEND(bwn_pci, bwn, 1, 1, 1);
|
||||
MODULE_DEPEND(bwn_pci, bhnd, 1, 1, 1);
|
||||
MODULE_DEPEND(bwn_pci, bhndb, 1, 1, 1);
|
||||
MODULE_DEPEND(bwn_pci, bhndb_pci, 1, 1, 1);
|
||||
|
@ -73,65 +73,72 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bwn/if_bwn_siba.h>
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
#include <dev/bhnd/bhnd_ids.h>
|
||||
|
||||
#include <dev/bhnd/cores/chipc/chipc.h>
|
||||
#include <dev/bhnd/cores/pmu/bhnd_pmu.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
|
||||
#include <dev/bwn/if_bwn_chipid.h>
|
||||
#include <dev/bwn/if_bwn_debug.h>
|
||||
#include <dev/bwn/if_bwn_misc.h>
|
||||
#include <dev/bwn/if_bwn_phy_common.h>
|
||||
|
||||
void
|
||||
bwn_mac_switch_freq(struct bwn_mac *mac, int spurmode)
|
||||
bwn_mac_switch_freq(struct bwn_mac *mac, bhnd_pmu_spuravoid spurmode)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint16_t chip_id = siba_get_chipid(sc->sc_dev);
|
||||
uint16_t chip_id = sc->sc_cid.chip_id;
|
||||
|
||||
if (chip_id == BCMA_CHIP_ID_BCM4331) {
|
||||
if (chip_id == BHND_CHIPID_BCM4331) {
|
||||
switch (spurmode) {
|
||||
case 2: /* 168 Mhz: 2^26/168 = 0x61862 */
|
||||
case BHND_PMU_SPURAVOID_M2: /* 168 Mhz: 2^26/168 = 0x61862 */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0x1862);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0x6);
|
||||
break;
|
||||
case 1: /* 164 Mhz: 2^26/164 = 0x63e70 */
|
||||
case BHND_PMU_SPURAVOID_M1: /* 164 Mhz: 2^26/164 = 0x63e70 */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0x3e70);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0x6);
|
||||
break;
|
||||
default: /* 160 Mhz: 2^26/160 = 0x66666 */
|
||||
case BHND_PMU_SPURAVOID_NONE: /* 160 Mhz: 2^26/160 = 0x66666 */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0x6666);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0x6);
|
||||
break;
|
||||
}
|
||||
} else if (chip_id == BCMA_CHIP_ID_BCM43131 ||
|
||||
chip_id == BCMA_CHIP_ID_BCM43217 ||
|
||||
chip_id == BCMA_CHIP_ID_BCM43222 ||
|
||||
chip_id == BCMA_CHIP_ID_BCM43224 ||
|
||||
chip_id == BCMA_CHIP_ID_BCM43225 ||
|
||||
chip_id == BCMA_CHIP_ID_BCM43227 ||
|
||||
chip_id == BCMA_CHIP_ID_BCM43228) {
|
||||
} else if (chip_id == BHND_CHIPID_BCM43131 ||
|
||||
chip_id == BHND_CHIPID_BCM43217 ||
|
||||
chip_id == BHND_CHIPID_BCM43222 ||
|
||||
chip_id == BHND_CHIPID_BCM43224 ||
|
||||
chip_id == BHND_CHIPID_BCM43225 ||
|
||||
chip_id == BHND_CHIPID_BCM43227 ||
|
||||
chip_id == BHND_CHIPID_BCM43228) {
|
||||
switch (spurmode) {
|
||||
case 2: /* 126 Mhz */
|
||||
case BHND_PMU_SPURAVOID_M2: /* 126 Mhz */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0x2082);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0x8);
|
||||
break;
|
||||
case 1: /* 123 Mhz */
|
||||
case BHND_PMU_SPURAVOID_M1: /* 123 Mhz */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0x5341);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0x8);
|
||||
break;
|
||||
default: /* 120 Mhz */
|
||||
case BHND_PMU_SPURAVOID_NONE: /* 120 Mhz */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0x8889);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0x8);
|
||||
break;
|
||||
}
|
||||
} else if (mac->mac_phy.type == BWN_PHYTYPE_LCN) {
|
||||
switch (spurmode) {
|
||||
case 1: /* 82 Mhz */
|
||||
case BHND_PMU_SPURAVOID_M2:
|
||||
device_printf(sc->sc_dev, "invalid spuravoid mode: "
|
||||
"%d\n", spurmode);
|
||||
break;
|
||||
case BHND_PMU_SPURAVOID_M1: /* 82 Mhz */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0x7CE0);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0xC);
|
||||
break;
|
||||
default: /* 80 Mhz */
|
||||
case BHND_PMU_SPURAVOID_NONE: /* 80 Mhz */
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_LOW, 0xCCCD);
|
||||
BWN_WRITE_2(mac, BWN_TSF_CLK_FRAC_HIGH, 0xC);
|
||||
break;
|
||||
@ -140,20 +147,30 @@ bwn_mac_switch_freq(struct bwn_mac *mac, int spurmode)
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/BmacPhyClkFgc */
|
||||
void
|
||||
int
|
||||
bwn_phy_force_clock(struct bwn_mac *mac, int force)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint32_t tmp;
|
||||
struct bwn_softc *sc;
|
||||
uint32_t val, mask;
|
||||
int error;
|
||||
|
||||
sc = mac->mac_sc;
|
||||
|
||||
/* XXX Only for N, HT and AC PHYs */
|
||||
mask = BHND_IOCTL_CLK_FORCE;
|
||||
if (force) {
|
||||
val = BHND_IOCTL_CLK_FORCE;
|
||||
} else {
|
||||
val = 0;
|
||||
}
|
||||
|
||||
tmp = siba_read_4(sc->sc_dev, SIBA_TGSLOW);
|
||||
if (force)
|
||||
tmp |= SIBA_TGSLOW_FGC;
|
||||
else
|
||||
tmp &= ~SIBA_TGSLOW_FGC;
|
||||
siba_write_4(sc->sc_dev, SIBA_TGSLOW, tmp);
|
||||
if ((error = bhnd_write_ioctl(sc->sc_dev, val, mask))) {
|
||||
device_printf(sc->sc_dev, "failed to set CLK_FORCE ioctl flag: "
|
||||
"%d\n", error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
int
|
||||
@ -172,28 +189,49 @@ bwn_radio_wait_value(struct bwn_mac *mac, uint16_t offset, uint16_t mask,
|
||||
return (0);
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
bwn_mac_phy_clock_set(struct bwn_mac *mac, int enabled)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint32_t val;
|
||||
struct bwn_softc *sc;
|
||||
uint32_t val, mask;
|
||||
int error;
|
||||
|
||||
val = siba_read_4(sc->sc_dev, SIBA_TGSLOW);
|
||||
if (enabled)
|
||||
val |= BWN_TGSLOW_MACPHYCLKEN;
|
||||
else
|
||||
val &= ~BWN_TGSLOW_MACPHYCLKEN;
|
||||
siba_write_4(sc->sc_dev, SIBA_TGSLOW, val);
|
||||
sc = mac->mac_sc;
|
||||
|
||||
mask = BWN_IOCTL_MACPHYCLKEN;
|
||||
if (enabled) {
|
||||
val = BWN_IOCTL_MACPHYCLKEN;
|
||||
} else {
|
||||
val = 0;
|
||||
}
|
||||
|
||||
if ((error = bhnd_write_ioctl(sc->sc_dev, val, mask))) {
|
||||
device_printf(sc->sc_dev, "failed to set MACPHYCLKEN ioctl "
|
||||
"flag: %d\n", error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/BmacCorePllReset */
|
||||
void
|
||||
int
|
||||
bwn_wireless_core_phy_pll_reset(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_softc *sc;
|
||||
uint32_t pll_flag;
|
||||
|
||||
siba_cc_write32(sc->sc_dev, SIBA_CC_CHIPCTL_ADDR, 0);
|
||||
siba_cc_mask32(sc->sc_dev, SIBA_CC_CHIPCTL_DATA, ~0x4);
|
||||
siba_cc_set32(sc->sc_dev, SIBA_CC_CHIPCTL_DATA, 0x4);
|
||||
siba_cc_mask32(sc->sc_dev, SIBA_CC_CHIPCTL_DATA, ~0x4);
|
||||
sc = mac->mac_sc;
|
||||
|
||||
if (sc->sc_pmu == NULL) {
|
||||
device_printf(sc->sc_dev, "PMU device not found\n");
|
||||
return (ENXIO);
|
||||
}
|
||||
|
||||
pll_flag = 0x4;
|
||||
bhnd_pmu_write_chipctrl(sc->sc_pmu, 0x0, 0x0, pll_flag);
|
||||
bhnd_pmu_write_chipctrl(sc->sc_pmu, 0x0, pll_flag, pll_flag);
|
||||
bhnd_pmu_write_chipctrl(sc->sc_pmu, 0x0, 0x0, pll_flag);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
@ -31,11 +31,12 @@
|
||||
#ifndef __PHY_COMMON_H__
|
||||
#define __PHY_COMMON_H__
|
||||
|
||||
extern void bwn_mac_switch_freq(struct bwn_mac *mac, int spurmode);
|
||||
extern void bwn_phy_force_clock(struct bwn_mac *mac, int force);
|
||||
extern void bwn_mac_switch_freq(struct bwn_mac *mac,
|
||||
bhnd_pmu_spuravoid spurmode);
|
||||
extern int bwn_phy_force_clock(struct bwn_mac *mac, int force);
|
||||
extern int bwn_radio_wait_value(struct bwn_mac *mac, uint16_t offset,
|
||||
uint16_t mask, uint16_t value, int delay, int timeout);
|
||||
extern void bwn_mac_phy_clock_set(struct bwn_mac *mac, int enabled);
|
||||
extern void bwn_wireless_core_phy_pll_reset(struct bwn_mac *mac);
|
||||
extern int bwn_mac_phy_clock_set(struct bwn_mac *mac, int enabled);
|
||||
extern int bwn_wireless_core_phy_pll_reset(struct bwn_mac *mac);
|
||||
|
||||
#endif /* __PHY_COMMON_H__ */
|
||||
|
@ -72,8 +72,6 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bwn/if_bwn_siba.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
|
||||
@ -81,6 +79,8 @@ __FBSDID("$FreeBSD$");
|
||||
#include <dev/bwn/if_bwn_misc.h>
|
||||
#include <dev/bwn/if_bwn_phy_g.h>
|
||||
|
||||
#include "bhnd_nvram_map.h"
|
||||
|
||||
static void bwn_phy_g_init_sub(struct bwn_mac *);
|
||||
static uint8_t bwn_has_hwpctl(struct bwn_mac *);
|
||||
static void bwn_phy_init_b5(struct bwn_mac *);
|
||||
@ -157,14 +157,27 @@ bwn_phy_g_attach(struct bwn_mac *mac)
|
||||
int16_t pab0, pab1, pab2;
|
||||
static int8_t bwn_phy_g_tssi2dbm_table[] = BWN_PHY_G_TSSI2DBM_TABLE;
|
||||
int8_t bg;
|
||||
int error;
|
||||
|
||||
bg = (int8_t)siba_sprom_get_tssi_bg(sc->sc_dev);
|
||||
pab0 = (int16_t)siba_sprom_get_pa0b0(sc->sc_dev);
|
||||
pab1 = (int16_t)siba_sprom_get_pa0b1(sc->sc_dev);
|
||||
pab2 = (int16_t)siba_sprom_get_pa0b2(sc->sc_dev);
|
||||
/* Fetch SPROM configuration */
|
||||
#define BWN_PHY_G_READVAR(_dev, _type, _name, _result) \
|
||||
do { \
|
||||
error = bhnd_nvram_getvar_ ##_type((_dev), (_name), (_result)); \
|
||||
if (error) { \
|
||||
device_printf((_dev), "NVRAM variable %s unreadable: " \
|
||||
"%d\n", (_name), error); \
|
||||
return (error); \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
if ((siba_get_chipid(sc->sc_dev) == 0x4301) && (phy->rf_ver != 0x2050))
|
||||
device_printf(sc->sc_dev, "not supported anymore\n");
|
||||
BWN_PHY_G_READVAR(sc->sc_dev, int8, BHND_NVAR_PA0ITSSIT, &bg);
|
||||
BWN_PHY_G_READVAR(sc->sc_dev, int16, BHND_NVAR_PA0B0, &pab0);
|
||||
BWN_PHY_G_READVAR(sc->sc_dev, int16, BHND_NVAR_PA0B1, &pab1);
|
||||
BWN_PHY_G_READVAR(sc->sc_dev, int16, BHND_NVAR_PA0B2, &pab2);
|
||||
BWN_PHY_G_READVAR(sc->sc_dev, int16, BHND_NVAR_PA0MAXPWR,
|
||||
&pg->pg_pa0maxpwr);
|
||||
|
||||
#undef BWN_PHY_G_READVAR
|
||||
|
||||
pg->pg_flags = 0;
|
||||
if (pab0 == 0 || pab1 == 0 || pab2 == 0 || pab0 == -1 || pab1 == -1 ||
|
||||
@ -289,12 +302,12 @@ bwn_phy_g_prepare_hw(struct bwn_mac *mac)
|
||||
/* prepare Radio Attenuation */
|
||||
pg->pg_rfatt.padmix = 0;
|
||||
|
||||
if (siba_get_pci_subvendor(sc->sc_dev) == SIBA_BOARDVENDOR_BCM &&
|
||||
siba_get_pci_subdevice(sc->sc_dev) == SIBA_BOARD_BCM4309G) {
|
||||
if (siba_get_pci_revid(sc->sc_dev) < 0x43) {
|
||||
if (sc->sc_board_info.board_vendor == PCI_VENDOR_BROADCOM &&
|
||||
sc->sc_board_info.board_type == BHND_BOARD_BCM94309G) {
|
||||
if (sc->sc_board_info.board_rev < 0x43) {
|
||||
pg->pg_rfatt.att = 2;
|
||||
goto done;
|
||||
} else if (siba_get_pci_revid(sc->sc_dev) < 0x51) {
|
||||
} else if (sc->sc_board_info.board_rev < 0x51) {
|
||||
pg->pg_rfatt.att = 3;
|
||||
goto done;
|
||||
}
|
||||
@ -313,25 +326,25 @@ bwn_phy_g_prepare_hw(struct bwn_mac *mac)
|
||||
goto done;
|
||||
case 1:
|
||||
if (phy->type == BWN_PHYTYPE_G) {
|
||||
if (siba_get_pci_subvendor(sc->sc_dev) ==
|
||||
SIBA_BOARDVENDOR_BCM &&
|
||||
siba_get_pci_subdevice(sc->sc_dev) ==
|
||||
SIBA_BOARD_BCM4309G &&
|
||||
siba_get_pci_revid(sc->sc_dev) >= 30)
|
||||
if (sc->sc_board_info.board_vendor ==
|
||||
PCI_VENDOR_BROADCOM &&
|
||||
sc->sc_board_info.board_type ==
|
||||
BHND_BOARD_BCM94309G &&
|
||||
sc->sc_board_info.board_rev >= 30)
|
||||
pg->pg_rfatt.att = 3;
|
||||
else if (siba_get_pci_subvendor(sc->sc_dev) ==
|
||||
SIBA_BOARDVENDOR_BCM &&
|
||||
siba_get_pci_subdevice(sc->sc_dev) ==
|
||||
SIBA_BOARD_BU4306)
|
||||
else if (sc->sc_board_info.board_vendor ==
|
||||
PCI_VENDOR_BROADCOM &&
|
||||
sc->sc_board_info.board_type ==
|
||||
BHND_BOARD_BU4306)
|
||||
pg->pg_rfatt.att = 3;
|
||||
else
|
||||
pg->pg_rfatt.att = 1;
|
||||
} else {
|
||||
if (siba_get_pci_subvendor(sc->sc_dev) ==
|
||||
SIBA_BOARDVENDOR_BCM &&
|
||||
siba_get_pci_subdevice(sc->sc_dev) ==
|
||||
SIBA_BOARD_BCM4309G &&
|
||||
siba_get_pci_revid(sc->sc_dev) >= 30)
|
||||
if (sc->sc_board_info.board_vendor ==
|
||||
PCI_VENDOR_BROADCOM &&
|
||||
sc->sc_board_info.board_type ==
|
||||
BHND_BOARD_BCM94309G &&
|
||||
sc->sc_board_info.board_rev >= 30)
|
||||
pg->pg_rfatt.att = 7;
|
||||
else
|
||||
pg->pg_rfatt.att = 6;
|
||||
@ -339,18 +352,19 @@ bwn_phy_g_prepare_hw(struct bwn_mac *mac)
|
||||
goto done;
|
||||
case 2:
|
||||
if (phy->type == BWN_PHYTYPE_G) {
|
||||
if (siba_get_pci_subvendor(sc->sc_dev) ==
|
||||
SIBA_BOARDVENDOR_BCM &&
|
||||
siba_get_pci_subdevice(sc->sc_dev) ==
|
||||
SIBA_BOARD_BCM4309G &&
|
||||
siba_get_pci_revid(sc->sc_dev) >= 30)
|
||||
if (sc->sc_board_info.board_vendor ==
|
||||
PCI_VENDOR_BROADCOM &&
|
||||
sc->sc_board_info.board_type ==
|
||||
BHND_BOARD_BCM94309G &&
|
||||
sc->sc_board_info.board_rev >= 30)
|
||||
pg->pg_rfatt.att = 3;
|
||||
else if (siba_get_pci_subvendor(sc->sc_dev) ==
|
||||
SIBA_BOARDVENDOR_BCM &&
|
||||
siba_get_pci_subdevice(sc->sc_dev) ==
|
||||
SIBA_BOARD_BU4306)
|
||||
else if (sc->sc_board_info.board_vendor ==
|
||||
PCI_VENDOR_BROADCOM &&
|
||||
sc->sc_board_info.board_type ==
|
||||
BHND_BOARD_BU4306)
|
||||
pg->pg_rfatt.att = 5;
|
||||
else if (siba_get_chipid(sc->sc_dev) == 0x4320)
|
||||
else if (sc->sc_cid.chip_id ==
|
||||
BHND_CHIPID_BCM4320)
|
||||
pg->pg_rfatt.att = 4;
|
||||
else
|
||||
pg->pg_rfatt.att = 3;
|
||||
@ -656,13 +670,13 @@ bwn_phy_g_recalc_txpwr(struct bwn_mac *mac, int ignore_tssi)
|
||||
pg->pg_avgtssi = tssi;
|
||||
KASSERT(tssi < BWN_TSSI_MAX, ("%s:%d: fail", __func__, __LINE__));
|
||||
|
||||
max = siba_sprom_get_maxpwr_bg(sc->sc_dev);
|
||||
if (siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_PACTRL)
|
||||
max = pg->pg_pa0maxpwr;
|
||||
if (sc->sc_board_info.board_flags & BHND_BFL_PACTRL)
|
||||
max -= 3;
|
||||
if (max >= 120) {
|
||||
device_printf(sc->sc_dev, "invalid max TX-power value\n");
|
||||
max = 80;
|
||||
siba_sprom_set_maxpwr_bg(sc->sc_dev, max);
|
||||
pg->pg_pa0maxpwr = max;
|
||||
}
|
||||
|
||||
power = MIN(MAX((phy->txpower < 0) ? 0 : (phy->txpower << 2), 0), max) -
|
||||
@ -706,8 +720,8 @@ bwn_phy_g_set_txpwr(struct bwn_mac *mac)
|
||||
txctl = BWN_TXCTL_PA2DB | BWN_TXCTL_TXMIX;
|
||||
rfatt += 2;
|
||||
bbatt += 2;
|
||||
} else if (siba_sprom_get_bf_lo(sc->sc_dev) &
|
||||
BWN_BFL_PACTRL) {
|
||||
} else if (sc->sc_board_info.board_flags &
|
||||
BHND_BFL_PACTRL) {
|
||||
bbatt += 4 * (rfatt - 2);
|
||||
rfatt = 2;
|
||||
}
|
||||
@ -805,7 +819,7 @@ bwn_phy_g_task_60s(struct bwn_mac *mac)
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint8_t old = phy->chan;
|
||||
|
||||
if (!(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_RSSI))
|
||||
if (!(sc->sc_board_info.board_flags & BHND_BFL_ADCDIV))
|
||||
return;
|
||||
|
||||
bwn_mac_suspend(mac);
|
||||
@ -892,7 +906,7 @@ bwn_phy_g_init_sub(struct bwn_mac *mac)
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_CCK(0x36), 0x0fff,
|
||||
(pg->pg_loctl.tx_bias << 12));
|
||||
}
|
||||
if (siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_PACTRL)
|
||||
if (sc->sc_board_info.board_flags & BHND_BFL_PACTRL)
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_CCK(0x2e), 0x8075);
|
||||
else
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_CCK(0x2e), 0x807f);
|
||||
@ -905,7 +919,7 @@ bwn_phy_g_init_sub(struct bwn_mac *mac)
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_LO_MASK, 0x8078);
|
||||
}
|
||||
|
||||
if (!(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_RSSI)) {
|
||||
if (!(sc->sc_board_info.board_flags & BHND_BFL_ADCDIV)) {
|
||||
for (i = 0; i < 64; i++) {
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_NRSSI_CTRL, i);
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_NRSSI_DATA,
|
||||
@ -924,8 +938,8 @@ bwn_phy_g_init_sub(struct bwn_mac *mac)
|
||||
if (phy->rf_rev == 8)
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_EXTG(0x05), 0x3230);
|
||||
bwn_phy_hwpctl_init(mac);
|
||||
if ((siba_get_chipid(sc->sc_dev) == 0x4306
|
||||
&& siba_get_chippkg(sc->sc_dev) == 2) || 0) {
|
||||
if ((sc->sc_cid.chip_id == BHND_CHIPID_BCM4306
|
||||
&& sc->sc_cid.chip_pkg == 2) || 0) {
|
||||
BWN_PHY_MASK(mac, BWN_PHY_CRS0, 0xbfff);
|
||||
BWN_PHY_MASK(mac, BWN_PHY_OFDM(0xc3), 0x7fff);
|
||||
}
|
||||
@ -942,8 +956,8 @@ bwn_phy_init_b5(struct bwn_mac *mac)
|
||||
|
||||
if (phy->analog == 1)
|
||||
BWN_RF_SET(mac, 0x007a, 0x0050);
|
||||
if ((siba_get_pci_subvendor(sc->sc_dev) != SIBA_BOARDVENDOR_BCM) &&
|
||||
(siba_get_pci_subdevice(sc->sc_dev) != SIBA_BOARD_BU4306)) {
|
||||
if ((sc->sc_board_info.board_vendor != PCI_VENDOR_BROADCOM) &&
|
||||
(sc->sc_board_info.board_type != BHND_BOARD_BU4306)) {
|
||||
value = 0x2120;
|
||||
for (offset = 0x00a8; offset < 0x00c7; offset++) {
|
||||
BWN_PHY_WRITE(mac, offset, value);
|
||||
@ -1111,7 +1125,7 @@ bwn_loopback_calcgain(struct bwn_mac *mac)
|
||||
BWN_PHY_SET(mac, BWN_PHY_RFOVER, 0x0100);
|
||||
BWN_PHY_MASK(mac, BWN_PHY_RFOVERVAL, 0xcfff);
|
||||
|
||||
if (siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_EXTLNA) {
|
||||
if (sc->sc_board_info.board_flags & BHND_BFL_EXTLNA) {
|
||||
if (phy->rev >= 7) {
|
||||
BWN_PHY_SET(mac, BWN_PHY_RFOVER, 0x0800);
|
||||
BWN_PHY_SET(mac, BWN_PHY_RFOVERVAL, 0x8000);
|
||||
@ -1441,7 +1455,7 @@ bwn_phy_init_b6(struct bwn_mac *mac)
|
||||
BWN_RF_WRITE(mac, 0x5a, 0x88);
|
||||
BWN_RF_WRITE(mac, 0x5b, 0x6b);
|
||||
BWN_RF_WRITE(mac, 0x5c, 0x0f);
|
||||
if (siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_ALTIQ) {
|
||||
if (sc->sc_board_info.board_flags & BHND_BFL_ALTIQ) {
|
||||
BWN_RF_WRITE(mac, 0x5d, 0xfa);
|
||||
BWN_RF_WRITE(mac, 0x5e, 0xd8);
|
||||
} else {
|
||||
@ -1539,7 +1553,7 @@ bwn_phy_init_a(struct bwn_mac *mac)
|
||||
bwn_wa_init(mac);
|
||||
|
||||
if (phy->type == BWN_PHYTYPE_G &&
|
||||
(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_PACTRL))
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_PACTRL))
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_OFDM(0x6e), 0xe000, 0x3cf);
|
||||
}
|
||||
|
||||
@ -1809,9 +1823,9 @@ bwn_wa_init(struct bwn_mac *mac)
|
||||
KASSERT(0 == 1, ("%s:%d: fail", __func__, __LINE__));
|
||||
}
|
||||
|
||||
if (siba_get_pci_subvendor(sc->sc_dev) != SIBA_BOARDVENDOR_BCM ||
|
||||
siba_get_pci_subdevice(sc->sc_dev) != SIBA_BOARD_BU4306 ||
|
||||
siba_get_pci_revid(sc->sc_dev) != 0x17) {
|
||||
if (sc->sc_board_info.board_vendor != PCI_VENDOR_BROADCOM ||
|
||||
sc->sc_board_info.board_type != BHND_BOARD_BU4306 ||
|
||||
sc->sc_board_info.board_rev != 0x17) {
|
||||
if (phy->rev < 2) {
|
||||
bwn_ofdmtab_write_2(mac, BWN_OFDMTAB_GAINX_R1, 1,
|
||||
0x0002);
|
||||
@ -1820,8 +1834,8 @@ bwn_wa_init(struct bwn_mac *mac)
|
||||
} else {
|
||||
bwn_ofdmtab_write_2(mac, BWN_OFDMTAB_GAINX, 1, 0x0002);
|
||||
bwn_ofdmtab_write_2(mac, BWN_OFDMTAB_GAINX, 2, 0x0001);
|
||||
if ((siba_sprom_get_bf_lo(sc->sc_dev) &
|
||||
BWN_BFL_EXTLNA) &&
|
||||
if ((sc->sc_board_info.board_flags &
|
||||
BHND_BFL_EXTLNA) &&
|
||||
(phy->rev >= 7)) {
|
||||
BWN_PHY_MASK(mac, BWN_PHY_EXTG(0x11), 0xf7ff);
|
||||
bwn_ofdmtab_write_2(mac, BWN_OFDMTAB_GAINX,
|
||||
@ -1839,7 +1853,7 @@ bwn_wa_init(struct bwn_mac *mac)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_FEM) {
|
||||
if (sc->sc_board_info.board_flags & BHND_BFL_FEM) {
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_GTABCTL, 0x3120);
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_GTABDATA, 0xc480);
|
||||
}
|
||||
@ -1927,7 +1941,7 @@ bwn_lo_calcfeed(struct bwn_mac *mac,
|
||||
trsw_rx &= (BWN_PHY_RFOVERVAL_TRSWRX | BWN_PHY_RFOVERVAL_BW);
|
||||
|
||||
rfover = BWN_PHY_RFOVERVAL_UNK | pga | lna | trsw_rx;
|
||||
if ((siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_EXTLNA) &&
|
||||
if ((sc->sc_board_info.board_flags & BHND_BFL_EXTLNA) &&
|
||||
phy->rev > 6)
|
||||
rfover |= BWN_PHY_RFOVERVAL_EXTLNA;
|
||||
|
||||
@ -2216,8 +2230,8 @@ bwn_lo_save(struct bwn_mac *mac, struct bwn_lo_g_value *sav)
|
||||
BWN_PHY_MASK(mac, BWN_PHY_ANALOGOVERVAL, 0xfffc);
|
||||
if (phy->type == BWN_PHYTYPE_G) {
|
||||
if ((phy->rev >= 7) &&
|
||||
(siba_sprom_get_bf_lo(sc->sc_dev) &
|
||||
BWN_BFL_EXTLNA)) {
|
||||
(sc->sc_board_info.board_flags &
|
||||
BHND_BFL_EXTLNA)) {
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_RFOVER, 0x933);
|
||||
} else {
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_RFOVER, 0x133);
|
||||
@ -2675,7 +2689,7 @@ bwn_nrssi_threshold(struct bwn_mac *mac)
|
||||
|
||||
KASSERT(phy->type == BWN_PHYTYPE_G, ("%s: fail", __func__));
|
||||
|
||||
if (phy->gmode && (siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_RSSI)) {
|
||||
if (phy->gmode && (sc->sc_board_info.board_flags & BHND_BFL_ADCDIV)) {
|
||||
if (!pg->pg_aci_wlan_automatic && pg->pg_aci_enable) {
|
||||
a = 0x13;
|
||||
b = 0x12;
|
||||
@ -3118,8 +3132,8 @@ bwn_phy_hwpctl_init(struct bwn_mac *mac)
|
||||
KASSERT(phy->type == BWN_PHYTYPE_G,
|
||||
("%s:%d: fail", __func__, __LINE__));
|
||||
|
||||
if ((siba_get_pci_subvendor(sc->sc_dev) == SIBA_BOARDVENDOR_BCM) &&
|
||||
(siba_get_pci_subdevice(sc->sc_dev) == SIBA_BOARD_BU4306))
|
||||
if ((sc->sc_board_info.board_vendor == PCI_VENDOR_BROADCOM) &&
|
||||
(sc->sc_board_info.board_type == BHND_BOARD_BU4306))
|
||||
return;
|
||||
|
||||
BWN_PHY_WRITE(mac, 0x0028, 0x8018);
|
||||
@ -3256,7 +3270,8 @@ bwn_hwpctl_init_gphy(struct bwn_mac *mac)
|
||||
static void
|
||||
bwn_phy_g_switch_chan(struct bwn_mac *mac, int channel, uint8_t spu)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
int error;
|
||||
|
||||
if (spu != 0)
|
||||
bwn_spu_workaround(mac, channel);
|
||||
@ -3264,7 +3279,17 @@ bwn_phy_g_switch_chan(struct bwn_mac *mac, int channel, uint8_t spu)
|
||||
BWN_WRITE_2(mac, BWN_CHANNEL, bwn_phy_g_chan2freq(channel));
|
||||
|
||||
if (channel == 14) {
|
||||
if (siba_sprom_get_ccode(sc->sc_dev) == SIBA_CCODE_JAPAN)
|
||||
uint8_t cc;
|
||||
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, BHND_NVAR_CC, &cc);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "error reading country code "
|
||||
"from NVRAM, assuming channel 14 unavailable: %d\n",
|
||||
error);
|
||||
cc = BWN_SPROM1_CC_WORLDWIDE;
|
||||
}
|
||||
|
||||
if (cc == BWN_SPROM1_CC_JP)
|
||||
bwn_hf_write(mac,
|
||||
bwn_hf_read(mac) & ~BWN_HF_JAPAN_CHAN14_OFF);
|
||||
else
|
||||
@ -3381,7 +3406,7 @@ bwn_rf_2050_rfoverval(struct bwn_mac *mac, uint16_t reg, uint32_t lpd)
|
||||
}
|
||||
|
||||
if ((phy->rev < 7) ||
|
||||
!(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_EXTLNA)) {
|
||||
!(sc->sc_board_info.board_flags & BHND_BFL_EXTLNA)) {
|
||||
if (reg == BWN_PHY_RFOVER) {
|
||||
return (0x1b3);
|
||||
} else if (reg == BWN_PHY_RFOVERVAL) {
|
||||
@ -3425,7 +3450,7 @@ bwn_rf_2050_rfoverval(struct bwn_mac *mac, uint16_t reg, uint32_t lpd)
|
||||
}
|
||||
|
||||
if ((phy->rev < 7) ||
|
||||
!(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_EXTLNA)) {
|
||||
!(sc->sc_board_info.board_flags & BHND_BFL_EXTLNA)) {
|
||||
if (reg == BWN_PHY_RFOVER) {
|
||||
return (0x1b3);
|
||||
} else if (reg == BWN_PHY_RFOVERVAL) {
|
||||
@ -3562,8 +3587,8 @@ bwn_phy_lock(struct bwn_mac *mac)
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct ieee80211com *ic = &sc->sc_ic;
|
||||
|
||||
KASSERT(siba_get_revid(sc->sc_dev) >= 3,
|
||||
("%s: unsupported rev %d", __func__, siba_get_revid(sc->sc_dev)));
|
||||
KASSERT(bhnd_get_hwrev(sc->sc_dev) >= 3,
|
||||
("%s: unsupported rev %d", __func__, bhnd_get_hwrev(sc->sc_dev)));
|
||||
|
||||
if (ic->ic_opmode != IEEE80211_M_HOSTAP)
|
||||
bwn_psctl(mac, BWN_PS_AWAKE);
|
||||
@ -3575,8 +3600,8 @@ bwn_phy_unlock(struct bwn_mac *mac)
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct ieee80211com *ic = &sc->sc_ic;
|
||||
|
||||
KASSERT(siba_get_revid(sc->sc_dev) >= 3,
|
||||
("%s: unsupported rev %d", __func__, siba_get_revid(sc->sc_dev)));
|
||||
KASSERT(bhnd_get_hwrev(sc->sc_dev) >= 3,
|
||||
("%s: unsupported rev %d", __func__, bhnd_get_hwrev(sc->sc_dev)));
|
||||
|
||||
if (ic->ic_opmode != IEEE80211_M_HOSTAP)
|
||||
bwn_psctl(mac, 0);
|
||||
|
@ -72,7 +72,10 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bwn/if_bwn_siba.h>
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
#include <dev/bhnd/bhnd_ids.h>
|
||||
|
||||
#include <dev/bhnd/cores/pmu/bhnd_pmu.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
@ -83,7 +86,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <dev/bwn/if_bwn_phy_common.h>
|
||||
#include <dev/bwn/if_bwn_phy_lp.h>
|
||||
|
||||
static void bwn_phy_lp_readsprom(struct bwn_mac *);
|
||||
#include "bhnd_nvram_map.h"
|
||||
|
||||
static int bwn_phy_lp_readsprom(struct bwn_mac *);
|
||||
static void bwn_phy_lp_bbinit(struct bwn_mac *);
|
||||
static void bwn_phy_lp_txpctl_init(struct bwn_mac *);
|
||||
static void bwn_phy_lp_calib(struct bwn_mac *);
|
||||
@ -99,10 +104,10 @@ static void bwn_phy_lp_digflt_restore(struct bwn_mac *);
|
||||
static void bwn_phy_lp_tblinit(struct bwn_mac *);
|
||||
static void bwn_phy_lp_bbinit_r2(struct bwn_mac *);
|
||||
static void bwn_phy_lp_bbinit_r01(struct bwn_mac *);
|
||||
static void bwn_phy_lp_b2062_init(struct bwn_mac *);
|
||||
static void bwn_phy_lp_b2063_init(struct bwn_mac *);
|
||||
static void bwn_phy_lp_rxcal_r2(struct bwn_mac *);
|
||||
static void bwn_phy_lp_rccal_r12(struct bwn_mac *);
|
||||
static int bwn_phy_lp_b2062_init(struct bwn_mac *);
|
||||
static int bwn_phy_lp_b2063_init(struct bwn_mac *);
|
||||
static int bwn_phy_lp_rxcal_r2(struct bwn_mac *);
|
||||
static int bwn_phy_lp_rccal_r12(struct bwn_mac *);
|
||||
static void bwn_phy_lp_set_rccap(struct bwn_mac *);
|
||||
static uint32_t bwn_phy_lp_roundup(uint32_t, uint32_t, uint8_t);
|
||||
static void bwn_phy_lp_b2062_reset_pllbias(struct bwn_mac *);
|
||||
@ -409,7 +414,16 @@ bwn_phy_lp_init(struct bwn_mac *mac)
|
||||
int i, error;
|
||||
uint16_t tmp;
|
||||
|
||||
bwn_phy_lp_readsprom(mac); /* XXX bad place */
|
||||
/* All LP-PHY devices have a PMU */
|
||||
if (sc->sc_pmu == NULL) {
|
||||
device_printf(sc->sc_dev, "no PMU; cannot configure PAREF "
|
||||
"LDO\n");
|
||||
return (ENXIO);
|
||||
}
|
||||
|
||||
if ((error = bwn_phy_lp_readsprom(mac)))
|
||||
return (error);
|
||||
|
||||
bwn_phy_lp_bbinit(mac);
|
||||
|
||||
/* initialize RF */
|
||||
@ -418,10 +432,12 @@ bwn_phy_lp_init(struct bwn_mac *mac)
|
||||
BWN_PHY_MASK(mac, BWN_PHY_4WIRECTL, 0xfffd);
|
||||
DELAY(1);
|
||||
|
||||
if (mac->mac_phy.rf_ver == 0x2062)
|
||||
bwn_phy_lp_b2062_init(mac);
|
||||
else {
|
||||
bwn_phy_lp_b2063_init(mac);
|
||||
if (mac->mac_phy.rf_ver == 0x2062) {
|
||||
if ((error = bwn_phy_lp_b2062_init(mac)))
|
||||
return (error);
|
||||
} else {
|
||||
if ((error = bwn_phy_lp_b2063_init(mac)))
|
||||
return (error);
|
||||
|
||||
/* synchronize stx table. */
|
||||
for (i = 0; i < N(tables); i++) {
|
||||
@ -439,11 +455,14 @@ bwn_phy_lp_init(struct bwn_mac *mac)
|
||||
}
|
||||
|
||||
/* calibrate RC */
|
||||
if (mac->mac_phy.rev >= 2)
|
||||
bwn_phy_lp_rxcal_r2(mac);
|
||||
else if (!plp->plp_rccap) {
|
||||
if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan))
|
||||
bwn_phy_lp_rccal_r12(mac);
|
||||
if (mac->mac_phy.rev >= 2) {
|
||||
if ((error = bwn_phy_lp_rxcal_r2(mac)))
|
||||
return (error);
|
||||
} else if (!plp->plp_rccap) {
|
||||
if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan)) {
|
||||
if ((error = bwn_phy_lp_rccal_r12(mac)))
|
||||
return (error);
|
||||
}
|
||||
} else
|
||||
bwn_phy_lp_set_rccap(mac);
|
||||
|
||||
@ -586,31 +605,62 @@ bwn_phy_lp_task_60s(struct bwn_mac *mac)
|
||||
bwn_phy_lp_calib(mac);
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
bwn_phy_lp_readsprom(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_phy_lp *plp = &mac->mac_phy.phy_lp;
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct ieee80211com *ic = &sc->sc_ic;
|
||||
|
||||
#define BWN_PHY_LP_READVAR(_dev, _type, _name, _result) \
|
||||
do { \
|
||||
int error; \
|
||||
\
|
||||
error = bhnd_nvram_getvar_ ##_type((_dev), (_name), (_result)); \
|
||||
if (error) { \
|
||||
device_printf((_dev), "NVRAM variable %s unreadable: " \
|
||||
"%d\n", (_name), error); \
|
||||
return (error); \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan)) {
|
||||
plp->plp_txisoband_m = siba_sprom_get_tri2g(sc->sc_dev);
|
||||
plp->plp_bxarch = siba_sprom_get_bxa2g(sc->sc_dev);
|
||||
plp->plp_rxpwroffset = siba_sprom_get_rxpo2g(sc->sc_dev);
|
||||
plp->plp_rssivf = siba_sprom_get_rssismf2g(sc->sc_dev);
|
||||
plp->plp_rssivc = siba_sprom_get_rssismc2g(sc->sc_dev);
|
||||
plp->plp_rssigs = siba_sprom_get_rssisav2g(sc->sc_dev);
|
||||
return;
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_TRI2G,
|
||||
&plp->plp_txisoband_m);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_BXA2G,
|
||||
&plp->plp_bxarch);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, int8, BHND_NVAR_RXPO2G,
|
||||
&plp->plp_rxpwroffset);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_RSSISMF2G,
|
||||
&plp->plp_rssivf);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_RSSISMC2G,
|
||||
&plp->plp_rssivc);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_RSSISAV2G,
|
||||
&plp->plp_rssigs);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
plp->plp_txisoband_l = siba_sprom_get_tri5gl(sc->sc_dev);
|
||||
plp->plp_txisoband_m = siba_sprom_get_tri5g(sc->sc_dev);
|
||||
plp->plp_txisoband_h = siba_sprom_get_tri5gh(sc->sc_dev);
|
||||
plp->plp_bxarch = siba_sprom_get_bxa5g(sc->sc_dev);
|
||||
plp->plp_rxpwroffset = siba_sprom_get_rxpo5g(sc->sc_dev);
|
||||
plp->plp_rssivf = siba_sprom_get_rssismf5g(sc->sc_dev);
|
||||
plp->plp_rssivc = siba_sprom_get_rssismc5g(sc->sc_dev);
|
||||
plp->plp_rssigs = siba_sprom_get_rssisav5g(sc->sc_dev);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_TRI5GL,
|
||||
&plp->plp_txisoband_l);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_TRI5G,
|
||||
&plp->plp_txisoband_m);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_TRI5GH,
|
||||
&plp->plp_txisoband_h);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_BXA5G,
|
||||
&plp->plp_bxarch);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, int8, BHND_NVAR_RXPO5G,
|
||||
&plp->plp_rxpwroffset);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_RSSISMF5G,
|
||||
&plp->plp_rssivf);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_RSSISMC5G,
|
||||
&plp->plp_rssivc);
|
||||
BWN_PHY_LP_READVAR(sc->sc_dev, uint8, BHND_NVAR_RSSISAV5G,
|
||||
&plp->plp_rssigs);
|
||||
|
||||
#undef BWN_PHY_LP_READVAR
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -686,7 +736,7 @@ bwn_phy_lp_calib(struct bwn_mac *mac)
|
||||
bwn_phy_lp_digflt_restore(mac);
|
||||
|
||||
/* do RX IQ Calculation; assumes that noise is true. */
|
||||
if (siba_get_chipid(sc->sc_dev) == 0x5354) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM5354) {
|
||||
for (i = 0; i < N(bwn_rxcompco_5354); i++) {
|
||||
if (bwn_rxcompco_5354[i].rc_chan == plp->plp_chan)
|
||||
rc = &bwn_rxcompco_5354[i];
|
||||
@ -766,10 +816,11 @@ bwn_phy_lp_b2063_switch_channel(struct bwn_mac *mac, uint8_t chan)
|
||||
{
|
||||
static const struct bwn_b206x_chan *bc = NULL;
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint32_t count, freqref, freqvco, freqxtal, val[3], timeout, timeoutref,
|
||||
uint32_t count, freqref, freqvco, val[3], timeout, timeoutref,
|
||||
tmp[6];
|
||||
uint16_t old, scale, tmp16;
|
||||
int i, div;
|
||||
u_int freqxtal;
|
||||
int error, i, div;
|
||||
|
||||
for (i = 0; i < N(bwn_b2063_chantable); i++) {
|
||||
if (bwn_b2063_chantable[i].bc_chan == chan) {
|
||||
@ -780,6 +831,13 @@ bwn_phy_lp_b2063_switch_channel(struct bwn_mac *mac, uint8_t chan)
|
||||
if (bc == NULL)
|
||||
return (EINVAL);
|
||||
|
||||
error = bhnd_get_clock_freq(sc->sc_dev, BHND_CLOCK_ALP, &freqxtal);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "failed to fetch clock frequency: %d",
|
||||
error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
BWN_RF_WRITE(mac, BWN_B2063_LOGEN_VCOBUF1, bc->bc_data[0]);
|
||||
BWN_RF_WRITE(mac, BWN_B2063_LOGEN_MIXER2, bc->bc_data[1]);
|
||||
BWN_RF_WRITE(mac, BWN_B2063_LOGEN_BUF2, bc->bc_data[2]);
|
||||
@ -796,7 +854,6 @@ bwn_phy_lp_b2063_switch_channel(struct bwn_mac *mac, uint8_t chan)
|
||||
old = BWN_RF_READ(mac, BWN_B2063_COM15);
|
||||
BWN_RF_SET(mac, BWN_B2063_COM15, 0x1e);
|
||||
|
||||
freqxtal = siba_get_cc_pmufreq(sc->sc_dev) * 1000;
|
||||
freqvco = bc->bc_freq << ((bc->bc_freq > 4000) ? 1 : 2);
|
||||
freqref = freqxtal * 3;
|
||||
div = (freqxtal <= 26000000 ? 1 : 2);
|
||||
@ -897,9 +954,9 @@ bwn_phy_lp_b2062_switch_channel(struct bwn_mac *mac, uint8_t chan)
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy_lp *plp = &mac->mac_phy.phy_lp;
|
||||
const struct bwn_b206x_chan *bc = NULL;
|
||||
uint32_t freqxtal = siba_get_cc_pmufreq(sc->sc_dev) * 1000;
|
||||
uint32_t tmp[9];
|
||||
int i;
|
||||
u_int freqxtal;
|
||||
int error, i;
|
||||
|
||||
for (i = 0; i < N(bwn_b2062_chantable); i++) {
|
||||
if (bwn_b2062_chantable[i].bc_chan == chan) {
|
||||
@ -911,6 +968,13 @@ bwn_phy_lp_b2062_switch_channel(struct bwn_mac *mac, uint8_t chan)
|
||||
if (bc == NULL)
|
||||
return (EINVAL);
|
||||
|
||||
error = bhnd_get_clock_freq(sc->sc_dev, BHND_CLOCK_ALP, &freqxtal);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "failed to fetch clock frequency: %d",
|
||||
error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
BWN_RF_SET(mac, BWN_B2062_S_RFPLLCTL14, 0x04);
|
||||
BWN_RF_WRITE(mac, BWN_B2062_N_LGENATUNE0, bc->bc_data[0]);
|
||||
BWN_RF_WRITE(mac, BWN_B2062_N_LGENATUNE2, bc->bc_data[1]);
|
||||
@ -1301,7 +1365,7 @@ bwn_phy_lp_bbinit_r2(struct bwn_mac *mac)
|
||||
BWN_PHY_MASK(mac, BWN_PHY_CRSGAIN_CTL, ~0x4000);
|
||||
BWN_PHY_MASK(mac, BWN_PHY_CRSGAIN_CTL, ~0x2000);
|
||||
BWN_PHY_SET(mac, BWN_PHY_OFDM(0x10a), 0x1);
|
||||
if (siba_get_pci_revid(sc->sc_dev) >= 0x18) {
|
||||
if (sc->sc_board_info.board_rev >= 0x18) {
|
||||
bwn_tab_write(mac, BWN_TAB_4(17, 65), 0xec);
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_OFDM(0x10a), 0xff01, 0x14);
|
||||
} else {
|
||||
@ -1318,8 +1382,8 @@ bwn_phy_lp_bbinit_r2(struct bwn_mac *mac)
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_CLIPCTRTHRESH, 0xfc1f, 0xa0);
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_GAINDIRECTMISMATCH, 0xe0ff, 0x300);
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_HIGAINDB, 0x00ff, 0x2a00);
|
||||
if ((siba_get_chipid(sc->sc_dev) == 0x4325) &&
|
||||
(siba_get_chiprev(sc->sc_dev) == 0)) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM4325 &&
|
||||
sc->sc_cid.chip_pkg == 0) {
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_LOWGAINDB, 0x00ff, 0x2100);
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_VERYLOWGAINDB, 0xff00, 0xa);
|
||||
} else {
|
||||
@ -1328,8 +1392,8 @@ bwn_phy_lp_bbinit_r2(struct bwn_mac *mac)
|
||||
}
|
||||
for (i = 0; i < N(v3); i++)
|
||||
BWN_PHY_SETMASK(mac, v3[i].offset, v3[i].mask, v3[i].set);
|
||||
if ((siba_get_chipid(sc->sc_dev) == 0x4325) &&
|
||||
(siba_get_chiprev(sc->sc_dev) == 0)) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM4325 &&
|
||||
sc->sc_cid.chip_pkg == 0) {
|
||||
bwn_tab_write(mac, BWN_TAB_2(0x08, 0x14), 0);
|
||||
bwn_tab_write(mac, BWN_TAB_2(0x08, 0x12), 0x40);
|
||||
}
|
||||
@ -1354,8 +1418,8 @@ bwn_phy_lp_bbinit_r2(struct bwn_mac *mac)
|
||||
0x2000 | ((uint16_t)plp->plp_rssigs << 10) |
|
||||
((uint16_t)plp->plp_rssivc << 4) | plp->plp_rssivf);
|
||||
|
||||
if ((siba_get_chipid(sc->sc_dev) == 0x4325) &&
|
||||
(siba_get_chiprev(sc->sc_dev) == 0)) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM4325 &&
|
||||
sc->sc_cid.chip_pkg == 0) {
|
||||
BWN_PHY_SET(mac, BWN_PHY_AFE_ADC_CTL_0, 0x1c);
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_AFE_CTL, 0x00ff, 0x8800);
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_AFE_ADC_CTL_1, 0xfc3c, 0x0400);
|
||||
@ -1427,7 +1491,7 @@ bwn_phy_lp_bbinit_r01(struct bwn_mac *mac)
|
||||
{ BWN_PHY_TR_LOOKUP_4, 0xffc0, 0x0006 },
|
||||
{ BWN_PHY_TR_LOOKUP_4, 0xc0ff, 0x0700 }
|
||||
};
|
||||
int i;
|
||||
int error, i;
|
||||
uint16_t tmp, tmp2;
|
||||
|
||||
BWN_PHY_MASK(mac, BWN_PHY_AFE_DAC_CTL, 0xf7ff);
|
||||
@ -1449,23 +1513,38 @@ bwn_phy_lp_bbinit_r01(struct bwn_mac *mac)
|
||||
BWN_PHY_SETMASK(mac, v1[i].offset, v1[i].mask, v1[i].set);
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_INPUT_PWRDB,
|
||||
0xff00, plp->plp_rxpwroffset);
|
||||
if ((siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_FEM) &&
|
||||
if ((sc->sc_board_info.board_flags & BHND_BFL_FEM) &&
|
||||
((IEEE80211_IS_CHAN_5GHZ(ic->ic_curchan)) ||
|
||||
(siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_LDO_PAREF))) {
|
||||
siba_cc_pmu_set_ldovolt(sc->sc_dev, SIBA_LDO_PAREF, 0x28);
|
||||
siba_cc_pmu_set_ldoparef(sc->sc_dev, 1);
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_PAREF))) {
|
||||
error = bhnd_pmu_set_voltage_raw(sc->sc_pmu,
|
||||
BHND_REGULATOR_PAREF_LDO, 0x28);
|
||||
if (error)
|
||||
device_printf(sc->sc_dev, "failed to set PAREF LDO "
|
||||
"voltage: %d\n", error);
|
||||
|
||||
error = bhnd_pmu_enable_regulator(sc->sc_pmu,
|
||||
BHND_REGULATOR_PAREF_LDO);
|
||||
if (error)
|
||||
device_printf(sc->sc_dev, "failed to enable PAREF LDO "
|
||||
"regulator: %d\n", error);
|
||||
|
||||
if (mac->mac_phy.rev == 0)
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_LP_RF_SIGNAL_LUT,
|
||||
0xffcf, 0x0010);
|
||||
bwn_tab_write(mac, BWN_TAB_2(11, 7), 60);
|
||||
} else {
|
||||
siba_cc_pmu_set_ldoparef(sc->sc_dev, 0);
|
||||
error = bhnd_pmu_disable_regulator(sc->sc_pmu,
|
||||
BHND_REGULATOR_PAREF_LDO);
|
||||
if (error)
|
||||
device_printf(sc->sc_dev, "failed to disable PAREF LDO "
|
||||
"regulator: %d\n", error);
|
||||
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_LP_RF_SIGNAL_LUT, 0xffcf, 0x0020);
|
||||
bwn_tab_write(mac, BWN_TAB_2(11, 7), 100);
|
||||
}
|
||||
tmp = plp->plp_rssivf | plp->plp_rssivc << 4 | 0xa000;
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_AFE_RSSI_CTL_0, tmp);
|
||||
if (siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_RSSIINV)
|
||||
if (sc->sc_board_info.board_flags & BHND_BFL_RSSIINV)
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_AFE_RSSI_CTL_1, 0xf000, 0x0aaa);
|
||||
else
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_AFE_RSSI_CTL_1, 0xf000, 0x02aa);
|
||||
@ -1473,19 +1552,19 @@ bwn_phy_lp_bbinit_r01(struct bwn_mac *mac)
|
||||
BWN_PHY_SETMASK(mac, BWN_PHY_RX_RADIO_CTL,
|
||||
0xfff9, (plp->plp_bxarch << 1));
|
||||
if (mac->mac_phy.rev == 1 &&
|
||||
(siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_FEM_BT)) {
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_FEM_BT)) {
|
||||
for (i = 0; i < N(v2); i++)
|
||||
BWN_PHY_SETMASK(mac, v2[i].offset, v2[i].mask,
|
||||
v2[i].set);
|
||||
} else if (IEEE80211_IS_CHAN_5GHZ(ic->ic_curchan) ||
|
||||
(siba_get_pci_subdevice(sc->sc_dev) == 0x048a) ||
|
||||
(sc->sc_board_info.board_type == 0x048a) ||
|
||||
((mac->mac_phy.rev == 0) &&
|
||||
(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_FEM))) {
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_FEM))) {
|
||||
for (i = 0; i < N(v3); i++)
|
||||
BWN_PHY_SETMASK(mac, v3[i].offset, v3[i].mask,
|
||||
v3[i].set);
|
||||
} else if (mac->mac_phy.rev == 1 ||
|
||||
(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_FEM)) {
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_FEM)) {
|
||||
for (i = 0; i < N(v4); i++)
|
||||
BWN_PHY_SETMASK(mac, v4[i].offset, v4[i].mask,
|
||||
v4[i].set);
|
||||
@ -1495,15 +1574,15 @@ bwn_phy_lp_bbinit_r01(struct bwn_mac *mac)
|
||||
v5[i].set);
|
||||
}
|
||||
if (mac->mac_phy.rev == 1 &&
|
||||
(siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_LDO_PAREF)) {
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_PAREF)) {
|
||||
BWN_PHY_COPY(mac, BWN_PHY_TR_LOOKUP_5, BWN_PHY_TR_LOOKUP_1);
|
||||
BWN_PHY_COPY(mac, BWN_PHY_TR_LOOKUP_6, BWN_PHY_TR_LOOKUP_2);
|
||||
BWN_PHY_COPY(mac, BWN_PHY_TR_LOOKUP_7, BWN_PHY_TR_LOOKUP_3);
|
||||
BWN_PHY_COPY(mac, BWN_PHY_TR_LOOKUP_8, BWN_PHY_TR_LOOKUP_4);
|
||||
}
|
||||
if ((siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_FEM_BT) &&
|
||||
(siba_get_chipid(sc->sc_dev) == 0x5354) &&
|
||||
(siba_get_chippkg(sc->sc_dev) == SIBA_CHIPPACK_BCM4712S)) {
|
||||
if ((sc->sc_board_info.board_flags & BHND_BFL_FEM_BT) &&
|
||||
(sc->sc_cid.chip_id == BHND_CHIPID_BCM5354) &&
|
||||
(sc->sc_cid.chip_pkg == BHND_PKGID_BCM4712SMALL)) {
|
||||
BWN_PHY_SET(mac, BWN_PHY_CRSGAIN_CTL, 0x0006);
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_GPIO_SELECT, 0x0005);
|
||||
BWN_PHY_WRITE(mac, BWN_PHY_GPIO_OUTEN, 0xffff);
|
||||
@ -1543,7 +1622,7 @@ struct bwn_b2062_freq {
|
||||
uint8_t value[6];
|
||||
};
|
||||
|
||||
static void
|
||||
static int
|
||||
bwn_phy_lp_b2062_init(struct bwn_mac *mac)
|
||||
{
|
||||
#define CALC_CTL7(freq, div) \
|
||||
@ -1574,8 +1653,17 @@ bwn_phy_lp_b2062_init(struct bwn_mac *mac)
|
||||
{ BWN_B2062_N_CALIB_TS, 0 }
|
||||
};
|
||||
const struct bwn_b2062_freq *f = NULL;
|
||||
uint32_t xtalfreq, ref;
|
||||
uint32_t ref;
|
||||
u_int xtalfreq;
|
||||
unsigned int i;
|
||||
int error;
|
||||
|
||||
error = bhnd_get_clock_freq(sc->sc_dev, BHND_CLOCK_ALP, &xtalfreq);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "failed to fetch clock frequency: %d",
|
||||
error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
bwn_phy_lp_b2062_tblinit(mac);
|
||||
|
||||
@ -1589,11 +1677,6 @@ bwn_phy_lp_b2062_init(struct bwn_mac *mac)
|
||||
else
|
||||
BWN_RF_MASK(mac, BWN_B2062_N_TSSI_CTL0, ~0x1);
|
||||
|
||||
KASSERT(siba_get_cc_caps(sc->sc_dev) & SIBA_CC_CAPS_PMU,
|
||||
("%s:%d: fail", __func__, __LINE__));
|
||||
xtalfreq = siba_get_cc_pmufreq(sc->sc_dev) * 1000;
|
||||
KASSERT(xtalfreq != 0, ("%s:%d: fail", __func__, __LINE__));
|
||||
|
||||
if (xtalfreq <= 30000000) {
|
||||
plp->plp_div = 1;
|
||||
BWN_RF_MASK(mac, BWN_B2062_S_RFPLLCTL1, 0xfffb);
|
||||
@ -1625,12 +1708,14 @@ bwn_phy_lp_b2062_init(struct bwn_mac *mac)
|
||||
((uint16_t)(f->value[3]) << 4) | f->value[2]);
|
||||
BWN_RF_WRITE(mac, BWN_B2062_S_RFPLLCTL10, f->value[4]);
|
||||
BWN_RF_WRITE(mac, BWN_B2062_S_RFPLLCTL11, f->value[5]);
|
||||
|
||||
return (0);
|
||||
#undef CALC_CTL7
|
||||
#undef CALC_CTL18
|
||||
#undef CALC_CTL19
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
bwn_phy_lp_b2063_init(struct bwn_mac *mac)
|
||||
{
|
||||
|
||||
@ -1650,9 +1735,11 @@ bwn_phy_lp_b2063_init(struct bwn_mac *mac)
|
||||
BWN_RF_WRITE(mac, BWN_B2063_PA_SP3, 0x20);
|
||||
BWN_RF_WRITE(mac, BWN_B2063_PA_SP2, 0x20);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
bwn_phy_lp_rxcal_r2(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
@ -1673,10 +1760,17 @@ bwn_phy_lp_rxcal_r2(struct bwn_mac *mac)
|
||||
{ BWN_B2063_RC_CALIB_CTL2, 0x55 },
|
||||
{ BWN_B2063_RC_CALIB_CTL3, 0x76 }
|
||||
};
|
||||
uint32_t freqxtal = siba_get_cc_pmufreq(sc->sc_dev) * 1000;
|
||||
int i;
|
||||
u_int freqxtal;
|
||||
int error, i;
|
||||
uint8_t tmp;
|
||||
|
||||
error = bhnd_get_clock_freq(sc->sc_dev, BHND_CLOCK_ALP, &freqxtal);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "failed to fetch clock frequency: %d",
|
||||
error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
tmp = BWN_RF_READ(mac, BWN_B2063_RX_BB_SP8) & 0xff;
|
||||
|
||||
for (i = 0; i < 2; i++)
|
||||
@ -1713,9 +1807,11 @@ bwn_phy_lp_rxcal_r2(struct bwn_mac *mac)
|
||||
if (!(BWN_RF_READ(mac, BWN_B2063_RC_CALIB_CTL6) & 0x2))
|
||||
BWN_RF_WRITE(mac, BWN_B2063_TX_BB_SP3, tmp);
|
||||
BWN_RF_WRITE(mac, BWN_B2063_RC_CALIB_CTL1, 0x7e);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
bwn_phy_lp_rccal_r12(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_phy_lp *plp = &mac->mac_phy.phy_lp;
|
||||
@ -1831,6 +1927,8 @@ bwn_phy_lp_rccal_r12(struct bwn_mac *mac)
|
||||
bwn_phy_lp_set_txpctlmode(mac, txpctlmode);
|
||||
if (plp->plp_rccap)
|
||||
bwn_phy_lp_set_rccap(mac);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void
|
||||
@ -1876,7 +1974,7 @@ bwn_phy_lp_b2062_reset_pllbias(struct bwn_mac *mac)
|
||||
|
||||
BWN_RF_WRITE(mac, BWN_B2062_S_RFPLLCTL2, 0xff);
|
||||
DELAY(20);
|
||||
if (siba_get_chipid(sc->sc_dev) == 0x5354) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM5354) {
|
||||
BWN_RF_WRITE(mac, BWN_B2062_N_COM1, 4);
|
||||
BWN_RF_WRITE(mac, BWN_B2062_S_RFPLLCTL2, 4);
|
||||
} else {
|
||||
@ -2735,8 +2833,8 @@ bwn_phy_lp_tblinit_r2(struct bwn_mac *mac)
|
||||
bwn_tab_write_multi(mac, BWN_TAB_4(9, 0), N(papdeps), papdeps);
|
||||
bwn_tab_write_multi(mac, BWN_TAB_4(10, 0), N(papdmult), papdmult);
|
||||
|
||||
if ((siba_get_chipid(sc->sc_dev) == 0x4325) &&
|
||||
(siba_get_chiprev(sc->sc_dev) == 0)) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM4325 &&
|
||||
sc->sc_cid.chip_pkg == 0) {
|
||||
bwn_tab_write_multi(mac, BWN_TAB_4(13, 0), N(gainidx_a0),
|
||||
gainidx_a0);
|
||||
bwn_tab_write_multi(mac, BWN_TAB_2(14, 0), N(auxgainidx_a0),
|
||||
@ -3353,7 +3451,7 @@ bwn_phy_lp_tblinit_txgain(struct bwn_mac *mac)
|
||||
};
|
||||
|
||||
if (mac->mac_phy.rev != 0 && mac->mac_phy.rev != 1) {
|
||||
if (siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_NOPA)
|
||||
if (sc->sc_board_info.board_flags & BHND_BFL_NOPA)
|
||||
bwn_phy_lp_gaintbl_write_multi(mac, 0, 128, txgain_r2);
|
||||
else if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan))
|
||||
bwn_phy_lp_gaintbl_write_multi(mac, 0, 128,
|
||||
@ -3365,8 +3463,8 @@ bwn_phy_lp_tblinit_txgain(struct bwn_mac *mac)
|
||||
}
|
||||
|
||||
if (mac->mac_phy.rev == 0) {
|
||||
if ((siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_NOPA) ||
|
||||
(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_HGPA))
|
||||
if ((sc->sc_board_info.board_flags & BHND_BFL_NOPA) ||
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_HGPA))
|
||||
bwn_phy_lp_gaintbl_write_multi(mac, 0, 128, txgain_r0);
|
||||
else if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan))
|
||||
bwn_phy_lp_gaintbl_write_multi(mac, 0, 128,
|
||||
@ -3377,8 +3475,8 @@ bwn_phy_lp_tblinit_txgain(struct bwn_mac *mac)
|
||||
return;
|
||||
}
|
||||
|
||||
if ((siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_NOPA) ||
|
||||
(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_HGPA))
|
||||
if ((sc->sc_board_info.board_flags & BHND_BFL_NOPA) ||
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_HGPA))
|
||||
bwn_phy_lp_gaintbl_write_multi(mac, 0, 128, txgain_r1);
|
||||
else if (IEEE80211_IS_CHAN_2GHZ(ic->ic_curchan))
|
||||
bwn_phy_lp_gaintbl_write_multi(mac, 0, 128, txgain_2ghz_r1);
|
||||
|
@ -72,8 +72,6 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bwn/if_bwn_siba.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
|
||||
@ -121,8 +119,7 @@ bwn_phy_n_prepare_hw(struct bwn_mac *mac)
|
||||
{
|
||||
|
||||
#ifdef BWN_GPL_PHY
|
||||
bwn_nphy_op_prepare_structs(mac);
|
||||
return (0);
|
||||
return (bwn_nphy_op_prepare_structs(mac));
|
||||
#else
|
||||
return (ENXIO);
|
||||
#endif
|
||||
|
@ -1,171 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2016 Landon Fuller <landonf@FreeBSD.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/bus.h>
|
||||
#include <sys/systm.h>
|
||||
|
||||
#include <machine/bus.h>
|
||||
#include <sys/rman.h>
|
||||
#include <machine/resource.h>
|
||||
|
||||
#include <dev/pci/pcireg.h>
|
||||
#include <dev/pci/pcivar.h>
|
||||
|
||||
#define BWN_USE_SIBA 1
|
||||
#include "if_bwn_siba.h"
|
||||
|
||||
/** Legacy siba(4) bus operations */
|
||||
|
||||
static int
|
||||
bwn_siba_bus_ops_init(device_t dev)
|
||||
{
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void
|
||||
bwn_siba_bus_ops_fini(device_t dev)
|
||||
{
|
||||
}
|
||||
|
||||
const struct bwn_bus_ops bwn_siba_bus_ops = {
|
||||
.init = bwn_siba_bus_ops_init,
|
||||
.fini = bwn_siba_bus_ops_fini,
|
||||
.pci_find_cap = pci_find_cap,
|
||||
.pci_alloc_msi = pci_alloc_msi,
|
||||
.pci_release_msi = pci_release_msi,
|
||||
.pci_msi_count = pci_msi_count,
|
||||
.get_vendor = siba_get_vendor,
|
||||
.get_device = siba_get_device,
|
||||
.get_revid = siba_get_revid,
|
||||
.get_pci_vendor = siba_get_pci_vendor,
|
||||
.get_pci_device = siba_get_pci_device,
|
||||
.get_pci_subvendor = siba_get_pci_subvendor,
|
||||
.get_pci_subdevice = siba_get_pci_subdevice,
|
||||
.get_pci_revid = siba_get_pci_revid,
|
||||
.get_chipid = siba_get_chipid,
|
||||
.get_chiprev = siba_get_chiprev,
|
||||
.get_chippkg = siba_get_chippkg,
|
||||
.get_type = siba_get_type,
|
||||
.get_cc_pmufreq = siba_get_cc_pmufreq,
|
||||
.get_cc_caps = siba_get_cc_caps,
|
||||
.get_cc_powerdelay = siba_get_cc_powerdelay,
|
||||
.get_pcicore_revid = siba_get_pcicore_revid,
|
||||
.sprom_get_rev = siba_sprom_get_rev,
|
||||
.sprom_get_mac_80211bg = siba_sprom_get_mac_80211bg,
|
||||
.sprom_get_mac_80211a = siba_sprom_get_mac_80211a,
|
||||
.sprom_get_brev = siba_sprom_get_brev,
|
||||
.sprom_get_ccode = siba_sprom_get_ccode,
|
||||
.sprom_get_ant_a = siba_sprom_get_ant_a,
|
||||
.sprom_get_ant_bg = siba_sprom_get_ant_bg,
|
||||
.sprom_get_pa0b0 = siba_sprom_get_pa0b0,
|
||||
.sprom_get_pa0b1 = siba_sprom_get_pa0b1,
|
||||
.sprom_get_pa0b2 = siba_sprom_get_pa0b2,
|
||||
.sprom_get_gpio0 = siba_sprom_get_gpio0,
|
||||
.sprom_get_gpio1 = siba_sprom_get_gpio1,
|
||||
.sprom_get_gpio2 = siba_sprom_get_gpio2,
|
||||
.sprom_get_gpio3 = siba_sprom_get_gpio3,
|
||||
.sprom_get_maxpwr_bg = siba_sprom_get_maxpwr_bg,
|
||||
.sprom_set_maxpwr_bg = siba_sprom_set_maxpwr_bg,
|
||||
.sprom_get_rxpo2g = siba_sprom_get_rxpo2g,
|
||||
.sprom_get_rxpo5g = siba_sprom_get_rxpo5g,
|
||||
.sprom_get_tssi_bg = siba_sprom_get_tssi_bg,
|
||||
.sprom_get_tri2g = siba_sprom_get_tri2g,
|
||||
.sprom_get_tri5gl = siba_sprom_get_tri5gl,
|
||||
.sprom_get_tri5g = siba_sprom_get_tri5g,
|
||||
.sprom_get_tri5gh = siba_sprom_get_tri5gh,
|
||||
.sprom_get_rssisav2g = siba_sprom_get_rssisav2g,
|
||||
.sprom_get_rssismc2g = siba_sprom_get_rssismc2g,
|
||||
.sprom_get_rssismf2g = siba_sprom_get_rssismf2g,
|
||||
.sprom_get_bxa2g = siba_sprom_get_bxa2g,
|
||||
.sprom_get_rssisav5g = siba_sprom_get_rssisav5g,
|
||||
.sprom_get_rssismc5g = siba_sprom_get_rssismc5g,
|
||||
.sprom_get_rssismf5g = siba_sprom_get_rssismf5g,
|
||||
.sprom_get_bxa5g = siba_sprom_get_bxa5g,
|
||||
.sprom_get_cck2gpo = siba_sprom_get_cck2gpo,
|
||||
.sprom_get_ofdm2gpo = siba_sprom_get_ofdm2gpo,
|
||||
.sprom_get_ofdm5glpo = siba_sprom_get_ofdm5glpo,
|
||||
.sprom_get_ofdm5gpo = siba_sprom_get_ofdm5gpo,
|
||||
.sprom_get_ofdm5ghpo = siba_sprom_get_ofdm5ghpo,
|
||||
.sprom_get_bf_lo = siba_sprom_get_bf_lo,
|
||||
.sprom_set_bf_lo = siba_sprom_set_bf_lo,
|
||||
.sprom_get_bf_hi = siba_sprom_get_bf_hi,
|
||||
.sprom_get_bf2_lo = siba_sprom_get_bf2_lo,
|
||||
.sprom_get_bf2_hi = siba_sprom_get_bf2_hi,
|
||||
.sprom_get_fem_2ghz_tssipos = siba_sprom_get_fem_2ghz_tssipos,
|
||||
.sprom_get_fem_2ghz_extpa_gain = siba_sprom_get_fem_2ghz_extpa_gain,
|
||||
.sprom_get_fem_2ghz_pdet_range = siba_sprom_get_fem_2ghz_pdet_range,
|
||||
.sprom_get_fem_2ghz_tr_iso = siba_sprom_get_fem_2ghz_tr_iso,
|
||||
.sprom_get_fem_2ghz_antswlut = siba_sprom_get_fem_2ghz_antswlut,
|
||||
.sprom_get_fem_5ghz_extpa_gain = siba_sprom_get_fem_5ghz_extpa_gain,
|
||||
.sprom_get_fem_5ghz_pdet_range = siba_sprom_get_fem_5ghz_pdet_range,
|
||||
.sprom_get_fem_5ghz_antswlut = siba_sprom_get_fem_5ghz_antswlut,
|
||||
.sprom_get_txpid_2g_0 = siba_sprom_get_txpid_2g_0,
|
||||
.sprom_get_txpid_2g_1 = siba_sprom_get_txpid_2g_1,
|
||||
.sprom_get_txpid_5gl_0 = siba_sprom_get_txpid_5gl_0,
|
||||
.sprom_get_txpid_5gl_1 = siba_sprom_get_txpid_5gl_1,
|
||||
.sprom_get_txpid_5g_0 = siba_sprom_get_txpid_5g_0,
|
||||
.sprom_get_txpid_5g_1 = siba_sprom_get_txpid_5g_1,
|
||||
.sprom_get_txpid_5gh_0 = siba_sprom_get_txpid_5gh_0,
|
||||
.sprom_get_txpid_5gh_1 = siba_sprom_get_txpid_5gh_1,
|
||||
.sprom_get_stbcpo = siba_sprom_get_stbcpo,
|
||||
.sprom_get_cddpo = siba_sprom_get_cddpo,
|
||||
.powerup = siba_powerup,
|
||||
.powerdown = siba_powerdown,
|
||||
.read_2 = siba_read_2,
|
||||
.write_2 = siba_write_2,
|
||||
.read_4 = siba_read_4,
|
||||
.write_4 = siba_write_4,
|
||||
.dev_up = siba_dev_up,
|
||||
.dev_down = siba_dev_down,
|
||||
.dev_isup = siba_dev_isup,
|
||||
.pcicore_intr = siba_pcicore_intr,
|
||||
.dma_translation = siba_dma_translation,
|
||||
.read_multi_2 = siba_read_multi_2,
|
||||
.read_multi_4 = siba_read_multi_4,
|
||||
.write_multi_2 = siba_write_multi_2,
|
||||
.write_multi_4 = siba_write_multi_4,
|
||||
.barrier = siba_barrier,
|
||||
.cc_pmu_set_ldovolt = siba_cc_pmu_set_ldovolt,
|
||||
.cc_pmu_set_ldoparef = siba_cc_pmu_set_ldoparef,
|
||||
.gpio_set = siba_gpio_set,
|
||||
.gpio_get = siba_gpio_get,
|
||||
.fix_imcfglobug = siba_fix_imcfglobug,
|
||||
.sprom_get_core_power_info = siba_sprom_get_core_power_info,
|
||||
.sprom_get_mcs2gpo = siba_sprom_get_mcs2gpo,
|
||||
.sprom_get_mcs5glpo = siba_sprom_get_mcs5glpo,
|
||||
.sprom_get_mcs5gpo = siba_sprom_get_mcs5gpo,
|
||||
.sprom_get_mcs5ghpo = siba_sprom_get_mcs5ghpo,
|
||||
.pmu_spuravoid_pllupdate = siba_pmu_spuravoid_pllupdate,
|
||||
.cc_set32 = siba_cc_set32,
|
||||
.cc_mask32 = siba_cc_mask32,
|
||||
.cc_write32 = siba_cc_write32,
|
||||
};
|
@ -1,491 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2016 Landon J. Fuller <landonf@FreeBSD.org>.
|
||||
* Copyright (c) 2007 Bruce M. Simpson.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _IF_BWN_SIBA_H_
|
||||
#define _IF_BWN_SIBA_H_
|
||||
|
||||
/** If true, expose legacy siba_pci headers directly. Otherwise,
|
||||
* we expose our siba/bhnd compatibility shims. */
|
||||
#ifndef BWN_USE_SIBA
|
||||
#define BWN_USE_SIBA 0
|
||||
#endif
|
||||
|
||||
struct bwn_softc;
|
||||
struct siba_sprom_core_pwr_info;
|
||||
|
||||
/*
|
||||
* Legacy siba(4) bus API compatibility shims.
|
||||
*/
|
||||
struct bwn_bus_ops {
|
||||
/* bus-specific initialization/finalization */
|
||||
int (*init)(device_t);
|
||||
void (*fini)(device_t);
|
||||
|
||||
/* compatibility shims */
|
||||
int (*pci_find_cap)(device_t, int, int *);
|
||||
int (*pci_alloc_msi)(device_t, int *);
|
||||
int (*pci_release_msi)(device_t);
|
||||
int (*pci_msi_count)(device_t);
|
||||
uint16_t (*get_vendor)(device_t);
|
||||
uint16_t (*get_device)(device_t);
|
||||
uint8_t (*get_revid)(device_t);
|
||||
uint16_t (*get_pci_vendor)(device_t);
|
||||
uint16_t (*get_pci_device)(device_t);
|
||||
uint16_t (*get_pci_subvendor)(device_t);
|
||||
uint16_t (*get_pci_subdevice)(device_t);
|
||||
uint8_t (*get_pci_revid)(device_t);
|
||||
uint16_t (*get_chipid)(device_t);
|
||||
uint16_t (*get_chiprev)(device_t);
|
||||
uint8_t (*get_chippkg)(device_t);
|
||||
enum siba_type (*get_type)(device_t);
|
||||
uint32_t (*get_cc_pmufreq)(device_t);
|
||||
uint32_t (*get_cc_caps)(device_t);
|
||||
uint16_t (*get_cc_powerdelay)(device_t);
|
||||
uint8_t (*get_pcicore_revid)(device_t);
|
||||
uint8_t (*sprom_get_rev)(device_t);
|
||||
uint8_t *(*sprom_get_mac_80211bg)(device_t);
|
||||
uint8_t *(*sprom_get_mac_80211a)(device_t);
|
||||
uint8_t (*sprom_get_brev)(device_t);
|
||||
uint8_t (*sprom_get_ccode)(device_t);
|
||||
uint8_t (*sprom_get_ant_a)(device_t);
|
||||
uint8_t (*sprom_get_ant_bg)(device_t);
|
||||
uint16_t (*sprom_get_pa0b0)(device_t);
|
||||
uint16_t (*sprom_get_pa0b1)(device_t);
|
||||
uint16_t (*sprom_get_pa0b2)(device_t);
|
||||
uint8_t (*sprom_get_gpio0)(device_t);
|
||||
uint8_t (*sprom_get_gpio1)(device_t);
|
||||
uint8_t (*sprom_get_gpio2)(device_t);
|
||||
uint8_t (*sprom_get_gpio3)(device_t);
|
||||
uint16_t (*sprom_get_maxpwr_bg)(device_t);
|
||||
void (*sprom_set_maxpwr_bg)(device_t, uint16_t);
|
||||
uint8_t (*sprom_get_rxpo2g)(device_t);
|
||||
uint8_t (*sprom_get_rxpo5g)(device_t);
|
||||
uint8_t (*sprom_get_tssi_bg)(device_t);
|
||||
uint8_t (*sprom_get_tri2g)(device_t);
|
||||
uint8_t (*sprom_get_tri5gl)(device_t);
|
||||
uint8_t (*sprom_get_tri5g)(device_t);
|
||||
uint8_t (*sprom_get_tri5gh)(device_t);
|
||||
uint8_t (*sprom_get_rssisav2g)(device_t);
|
||||
uint8_t (*sprom_get_rssismc2g)(device_t);
|
||||
uint8_t (*sprom_get_rssismf2g)(device_t);
|
||||
uint8_t (*sprom_get_bxa2g)(device_t);
|
||||
uint8_t (*sprom_get_rssisav5g)(device_t);
|
||||
uint8_t (*sprom_get_rssismc5g)(device_t);
|
||||
uint8_t (*sprom_get_rssismf5g)(device_t);
|
||||
uint8_t (*sprom_get_bxa5g)(device_t);
|
||||
uint16_t (*sprom_get_cck2gpo)(device_t);
|
||||
uint32_t (*sprom_get_ofdm2gpo)(device_t);
|
||||
uint32_t (*sprom_get_ofdm5glpo)(device_t);
|
||||
uint32_t (*sprom_get_ofdm5gpo)(device_t);
|
||||
uint32_t (*sprom_get_ofdm5ghpo)(device_t);
|
||||
uint16_t (*sprom_get_bf_lo)(device_t);
|
||||
void (*sprom_set_bf_lo)(device_t, uint16_t);
|
||||
uint16_t (*sprom_get_bf_hi)(device_t);
|
||||
uint16_t (*sprom_get_bf2_lo)(device_t);
|
||||
uint16_t (*sprom_get_bf2_hi)(device_t);
|
||||
uint8_t (*sprom_get_fem_2ghz_tssipos)(device_t);
|
||||
uint8_t (*sprom_get_fem_2ghz_extpa_gain)(device_t);
|
||||
uint8_t (*sprom_get_fem_2ghz_pdet_range)(device_t);
|
||||
uint8_t (*sprom_get_fem_2ghz_tr_iso)(device_t);
|
||||
uint8_t (*sprom_get_fem_2ghz_antswlut)(device_t);
|
||||
uint8_t (*sprom_get_fem_5ghz_extpa_gain)(device_t);
|
||||
uint8_t (*sprom_get_fem_5ghz_pdet_range)(device_t);
|
||||
uint8_t (*sprom_get_fem_5ghz_antswlut)(device_t);
|
||||
uint8_t (*sprom_get_txpid_2g_0)(device_t);
|
||||
uint8_t (*sprom_get_txpid_2g_1)(device_t);
|
||||
uint8_t (*sprom_get_txpid_5gl_0)(device_t);
|
||||
uint8_t (*sprom_get_txpid_5gl_1)(device_t);
|
||||
uint8_t (*sprom_get_txpid_5g_0)(device_t);
|
||||
uint8_t (*sprom_get_txpid_5g_1)(device_t);
|
||||
uint8_t (*sprom_get_txpid_5gh_0)(device_t);
|
||||
uint8_t (*sprom_get_txpid_5gh_1)(device_t);
|
||||
uint16_t (*sprom_get_stbcpo)(device_t);
|
||||
uint16_t (*sprom_get_cddpo)(device_t);
|
||||
void (*powerup)(device_t, int);
|
||||
int (*powerdown)(device_t);
|
||||
uint16_t (*read_2)(device_t, uint16_t);
|
||||
void (*write_2)(device_t, uint16_t, uint16_t);
|
||||
uint32_t (*read_4)(device_t, uint16_t);
|
||||
void (*write_4)(device_t, uint16_t, uint32_t);
|
||||
void (*dev_up)(device_t, uint32_t);
|
||||
void (*dev_down)(device_t, uint32_t);
|
||||
int (*dev_isup)(device_t);
|
||||
void (*pcicore_intr)(device_t);
|
||||
uint32_t (*dma_translation)(device_t);
|
||||
void (*read_multi_2)(device_t, void *, size_t, uint16_t);
|
||||
void (*read_multi_4)(device_t, void *, size_t, uint16_t);
|
||||
void (*write_multi_2)(device_t, const void *, size_t, uint16_t);
|
||||
void (*write_multi_4)(device_t, const void *, size_t, uint16_t);
|
||||
void (*barrier)(device_t, int);
|
||||
void (*cc_pmu_set_ldovolt)(device_t, int, uint32_t);
|
||||
void (*cc_pmu_set_ldoparef)(device_t, uint8_t);
|
||||
void (*gpio_set)(device_t, uint32_t);
|
||||
uint32_t (*gpio_get)(device_t);
|
||||
void (*fix_imcfglobug)(device_t);
|
||||
int (*sprom_get_core_power_info)(device_t, int, struct siba_sprom_core_pwr_info *);
|
||||
int (*sprom_get_mcs2gpo)(device_t, uint16_t *);
|
||||
int (*sprom_get_mcs5glpo)(device_t, uint16_t *);
|
||||
int (*sprom_get_mcs5gpo)(device_t, uint16_t *);
|
||||
int (*sprom_get_mcs5ghpo)(device_t, uint16_t *);
|
||||
void (*pmu_spuravoid_pllupdate)(device_t, int);
|
||||
void (*cc_set32)(device_t, uint32_t, uint32_t);
|
||||
void (*cc_mask32)(device_t, uint32_t, uint32_t);
|
||||
void (*cc_write32)(device_t, uint32_t, uint32_t);
|
||||
};
|
||||
|
||||
#if BWN_USE_SIBA
|
||||
|
||||
#include <dev/siba/siba_ids.h>
|
||||
#include <dev/siba/sibareg.h>
|
||||
#include <dev/siba/sibavar.h>
|
||||
|
||||
#define BWN_BUS_OPS_ATTACH(_dev) (0)
|
||||
#define BWN_BUS_OPS_DETACH(_dev)
|
||||
|
||||
#else /* !BWN_USE_SIBA */
|
||||
|
||||
struct bwn_bus_ops;
|
||||
|
||||
extern const struct bwn_bus_ops bwn_siba_bus_ops;
|
||||
extern const struct bwn_bus_ops bwn_bhnd_bus_ops;
|
||||
|
||||
/*
|
||||
* Declared in:
|
||||
* /usr/home/landonf/Documents/Code/FreeBSD/svn/head/sys/dev/siba/siba_ids.h
|
||||
*/
|
||||
|
||||
struct siba_devid {
|
||||
uint16_t sd_vendor;
|
||||
uint16_t sd_device;
|
||||
uint8_t sd_rev;
|
||||
char *sd_desc;
|
||||
};
|
||||
|
||||
#define SIBA_DEV(_vendor, _cid, _rev, _msg) \
|
||||
{ SIBA_VID_##_vendor, SIBA_DEVID_##_cid, _rev, _msg }
|
||||
|
||||
#define SIBA_DEVID_80211 0x812
|
||||
#define SIBA_VID_BROADCOM 0x4243
|
||||
|
||||
/*
|
||||
* Declared in:
|
||||
* /usr/home/landonf/Documents/Code/FreeBSD/svn/head/sys/dev/siba/sibareg.h
|
||||
*/
|
||||
|
||||
#define SIBA_CC_CAPS_PMU 0x10000000
|
||||
#define SIBA_CC_CHIPCTL 0x0028
|
||||
#define SIBA_CC_CHIPCTL_ADDR 0x0650
|
||||
#define SIBA_CC_CHIPCTL_DATA 0x0654
|
||||
|
||||
#define SIBA_DMA_TRANSLATION_MASK 0xc0000000
|
||||
|
||||
#define SIBA_TGSLOW 0x0f98
|
||||
#define SIBA_TGSLOW_FGC 0x00020000
|
||||
|
||||
#define SIBA_TGSHIGH 0x0f9c
|
||||
#define SIBA_TGSHIGH_DMA64 0x10000000
|
||||
|
||||
#define SIBA_BOARDVENDOR_DELL 0x1028
|
||||
#define SIBA_BOARDVENDOR_BCM 0x14e4
|
||||
|
||||
#define SIBA_BOARD_BCM4309G 0x0421
|
||||
#define SIBA_BOARD_BU4306 0x0416
|
||||
#define SIBA_BOARD_BCM4321 0x046d
|
||||
|
||||
#define SIBA_CHIPPACK_BCM4712S 1
|
||||
|
||||
|
||||
/*
|
||||
* Declared in:
|
||||
* /usr/home/landonf/Documents/Code/FreeBSD/svn/head/sys/dev/siba/sibavar.h
|
||||
*/
|
||||
|
||||
enum siba_type {
|
||||
SIBA_TYPE_SSB /* unused */,
|
||||
SIBA_TYPE_PCI,
|
||||
SIBA_TYPE_PCMCIA
|
||||
};
|
||||
|
||||
/* TODO: need a real country code table */
|
||||
enum {
|
||||
SIBA_CCODE_JAPAN,
|
||||
SIBA_CCODE_UNKNOWN
|
||||
};
|
||||
|
||||
struct siba_sprom_core_pwr_info {
|
||||
uint8_t itssi_2g;
|
||||
uint8_t itssi_5g;
|
||||
uint8_t maxpwr_2g;
|
||||
uint8_t maxpwr_5gl;
|
||||
uint8_t maxpwr_5g;
|
||||
uint8_t maxpwr_5gh;
|
||||
int16_t pa_2g[3];
|
||||
int16_t pa_5gl[4];
|
||||
int16_t pa_5g[4];
|
||||
int16_t pa_5gh[4];
|
||||
};
|
||||
|
||||
#define SIBA_LDO_PAREF 0
|
||||
|
||||
#define BWN_BUS_OPS_SC(_sc) \
|
||||
((_sc)->sc_bus_ops)
|
||||
|
||||
#define BWN_BUS_OPS(_dev) \
|
||||
BWN_BUS_OPS_SC((struct bwn_softc *)device_get_softc(_dev))
|
||||
|
||||
#define BWN_BUS_OPS_ATTACH(_dev) \
|
||||
BWN_BUS_OPS(_dev)->init(_dev)
|
||||
#define BWN_BUS_OPS_DETACH(_dev) \
|
||||
BWN_BUS_OPS(_dev)->fini(_dev)
|
||||
|
||||
#define pci_find_cap(_dev, capability, capreg) \
|
||||
BWN_BUS_OPS(_dev)->pci_find_cap(_dev, capability, capreg)
|
||||
#define pci_alloc_msi(_dev, count) \
|
||||
BWN_BUS_OPS(_dev)->pci_alloc_msi(_dev, count)
|
||||
#define pci_release_msi(_dev) \
|
||||
BWN_BUS_OPS(_dev)->pci_release_msi(_dev)
|
||||
#define pci_msi_count(_dev) \
|
||||
BWN_BUS_OPS(_dev)->pci_msi_count(_dev)
|
||||
|
||||
#define siba_get_vendor(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_vendor(_dev)
|
||||
#define siba_get_device(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_device(_dev)
|
||||
#define siba_get_revid(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_revid(_dev)
|
||||
#define siba_get_pci_vendor(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_pci_vendor(_dev)
|
||||
#define siba_get_pci_device(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_pci_device(_dev)
|
||||
#define siba_get_pci_subvendor(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_pci_subvendor(_dev)
|
||||
#define siba_get_pci_subdevice(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_pci_subdevice(_dev)
|
||||
#define siba_get_pci_revid(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_pci_revid(_dev)
|
||||
#define siba_get_chipid(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_chipid(_dev)
|
||||
#define siba_get_chiprev(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_chiprev(_dev)
|
||||
#define siba_get_chippkg(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_chippkg(_dev)
|
||||
#define siba_get_type(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_type(_dev)
|
||||
#define siba_get_cc_pmufreq(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_cc_pmufreq(_dev)
|
||||
#define siba_get_cc_caps(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_cc_caps(_dev)
|
||||
#define siba_get_cc_powerdelay(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_cc_powerdelay(_dev)
|
||||
#define siba_get_pcicore_revid(_dev) \
|
||||
BWN_BUS_OPS(_dev)->get_pcicore_revid(_dev)
|
||||
#define siba_sprom_get_rev(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rev(_dev)
|
||||
#define siba_sprom_get_mac_80211bg(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_mac_80211bg(_dev)
|
||||
#define siba_sprom_get_mac_80211a(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_mac_80211a(_dev)
|
||||
#define siba_sprom_get_brev(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_brev(_dev)
|
||||
#define siba_sprom_get_ccode(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_ccode(_dev)
|
||||
#define siba_sprom_get_ant_a(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_ant_a(_dev)
|
||||
#define siba_sprom_get_ant_bg(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_ant_bg(_dev)
|
||||
#define siba_sprom_get_pa0b0(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_pa0b0(_dev)
|
||||
#define siba_sprom_get_pa0b1(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_pa0b1(_dev)
|
||||
#define siba_sprom_get_pa0b2(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_pa0b2(_dev)
|
||||
#define siba_sprom_get_gpio0(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_gpio0(_dev)
|
||||
#define siba_sprom_get_gpio1(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_gpio1(_dev)
|
||||
#define siba_sprom_get_gpio2(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_gpio2(_dev)
|
||||
#define siba_sprom_get_gpio3(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_gpio3(_dev)
|
||||
#define siba_sprom_get_maxpwr_bg(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_maxpwr_bg(_dev)
|
||||
#define siba_sprom_set_maxpwr_bg(_dev, t) \
|
||||
BWN_BUS_OPS(_dev)->sprom_set_maxpwr_bg(_dev, t)
|
||||
#define siba_sprom_get_rxpo2g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rxpo2g(_dev)
|
||||
#define siba_sprom_get_rxpo5g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rxpo5g(_dev)
|
||||
#define siba_sprom_get_tssi_bg(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_tssi_bg(_dev)
|
||||
#define siba_sprom_get_tri2g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_tri2g(_dev)
|
||||
#define siba_sprom_get_tri5gl(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_tri5gl(_dev)
|
||||
#define siba_sprom_get_tri5g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_tri5g(_dev)
|
||||
#define siba_sprom_get_tri5gh(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_tri5gh(_dev)
|
||||
#define siba_sprom_get_rssisav2g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rssisav2g(_dev)
|
||||
#define siba_sprom_get_rssismc2g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rssismc2g(_dev)
|
||||
#define siba_sprom_get_rssismf2g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rssismf2g(_dev)
|
||||
#define siba_sprom_get_bxa2g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_bxa2g(_dev)
|
||||
#define siba_sprom_get_rssisav5g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rssisav5g(_dev)
|
||||
#define siba_sprom_get_rssismc5g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rssismc5g(_dev)
|
||||
#define siba_sprom_get_rssismf5g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_rssismf5g(_dev)
|
||||
#define siba_sprom_get_bxa5g(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_bxa5g(_dev)
|
||||
#define siba_sprom_get_cck2gpo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_cck2gpo(_dev)
|
||||
#define siba_sprom_get_ofdm2gpo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_ofdm2gpo(_dev)
|
||||
#define siba_sprom_get_ofdm5glpo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_ofdm5glpo(_dev)
|
||||
#define siba_sprom_get_ofdm5gpo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_ofdm5gpo(_dev)
|
||||
#define siba_sprom_get_ofdm5ghpo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_ofdm5ghpo(_dev)
|
||||
#define siba_sprom_get_bf_lo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_bf_lo(_dev)
|
||||
#define siba_sprom_set_bf_lo(_dev, t) \
|
||||
BWN_BUS_OPS(_dev)->sprom_set_bf_lo(_dev, t)
|
||||
#define siba_sprom_get_bf_hi(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_bf_hi(_dev)
|
||||
#define siba_sprom_get_bf2_lo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_bf2_lo(_dev)
|
||||
#define siba_sprom_get_bf2_hi(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_bf2_hi(_dev)
|
||||
#define siba_sprom_get_fem_2ghz_tssipos(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_2ghz_tssipos(_dev)
|
||||
#define siba_sprom_get_fem_2ghz_extpa_gain(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_2ghz_extpa_gain(_dev)
|
||||
#define siba_sprom_get_fem_2ghz_pdet_range(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_2ghz_pdet_range(_dev)
|
||||
#define siba_sprom_get_fem_2ghz_tr_iso(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_2ghz_tr_iso(_dev)
|
||||
#define siba_sprom_get_fem_2ghz_antswlut(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_2ghz_antswlut(_dev)
|
||||
#define siba_sprom_get_fem_5ghz_extpa_gain(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_5ghz_extpa_gain(_dev)
|
||||
#define siba_sprom_get_fem_5ghz_pdet_range(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_5ghz_pdet_range(_dev)
|
||||
#define siba_sprom_get_fem_5ghz_antswlut(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_fem_5ghz_antswlut(_dev)
|
||||
#define siba_sprom_get_txpid_2g_0(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_2g_0(_dev)
|
||||
#define siba_sprom_get_txpid_2g_1(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_2g_1(_dev)
|
||||
#define siba_sprom_get_txpid_5gl_0(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_5gl_0(_dev)
|
||||
#define siba_sprom_get_txpid_5gl_1(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_5gl_1(_dev)
|
||||
#define siba_sprom_get_txpid_5g_0(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_5g_0(_dev)
|
||||
#define siba_sprom_get_txpid_5g_1(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_5g_1(_dev)
|
||||
#define siba_sprom_get_txpid_5gh_0(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_5gh_0(_dev)
|
||||
#define siba_sprom_get_txpid_5gh_1(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_txpid_5gh_1(_dev)
|
||||
#define siba_sprom_get_stbcpo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_stbcpo(_dev)
|
||||
#define siba_sprom_get_cddpo(_dev) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_cddpo(_dev)
|
||||
#define siba_powerup(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->powerup(_dev, _arg1)
|
||||
#define siba_powerdown(_dev) \
|
||||
BWN_BUS_OPS(_dev)->powerdown(_dev)
|
||||
#define siba_read_2(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->read_2(_dev, _arg1)
|
||||
#define siba_write_2(_dev, _arg1, _arg2) \
|
||||
BWN_BUS_OPS(_dev)->write_2(_dev, _arg1, _arg2)
|
||||
#define siba_read_4(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->read_4(_dev, _arg1)
|
||||
#define siba_write_4(_dev, _arg1, _arg2) \
|
||||
BWN_BUS_OPS(_dev)->write_4(_dev, _arg1, _arg2)
|
||||
#define siba_dev_up(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->dev_up(_dev, _arg1)
|
||||
#define siba_dev_down(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->dev_down(_dev, _arg1)
|
||||
#define siba_dev_isup(_dev) \
|
||||
BWN_BUS_OPS(_dev)->dev_isup(_dev)
|
||||
#define siba_pcicore_intr(_dev) \
|
||||
BWN_BUS_OPS(_dev)->pcicore_intr(_dev)
|
||||
#define siba_dma_translation(_dev) \
|
||||
BWN_BUS_OPS(_dev)->dma_translation(_dev)
|
||||
#define siba_read_multi_2(_dev, _arg1, _arg2, _arg3) \
|
||||
BWN_BUS_OPS(_dev)->read_multi_2(_dev, _arg1, _arg2, _arg3)
|
||||
#define siba_read_multi_4(_dev, _arg1, _arg2, _arg3) \
|
||||
BWN_BUS_OPS(_dev)->read_multi_4(_dev, _arg1, _arg2, _arg3)
|
||||
#define siba_write_multi_2(_dev, _arg1, _arg2, _arg3) \
|
||||
BWN_BUS_OPS(_dev)->write_multi_2(_dev, _arg1, _arg2, _arg3)
|
||||
#define siba_write_multi_4(_dev, _arg1, _arg2, _arg3) \
|
||||
BWN_BUS_OPS(_dev)->write_multi_4(_dev, _arg1, _arg2, _arg3)
|
||||
#define siba_barrier(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->barrier(_dev, _arg1)
|
||||
#define siba_cc_pmu_set_ldovolt(_dev, _arg1, _arg2) \
|
||||
BWN_BUS_OPS(_dev)->cc_pmu_set_ldovolt(_dev, _arg1, _arg2)
|
||||
#define siba_cc_pmu_set_ldoparef(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->cc_pmu_set_ldoparef(_dev, _arg1)
|
||||
#define siba_gpio_set(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->gpio_set(_dev, _arg1)
|
||||
#define siba_gpio_get(_dev) \
|
||||
BWN_BUS_OPS(_dev)->gpio_get(_dev)
|
||||
#define siba_fix_imcfglobug(_dev) \
|
||||
BWN_BUS_OPS(_dev)->fix_imcfglobug(_dev)
|
||||
#define siba_sprom_get_core_power_info(_dev, _arg1, _arg2) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_core_power_info(_dev, _arg1, _arg2)
|
||||
#define siba_sprom_get_mcs2gpo(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_mcs2gpo(_dev, _arg1)
|
||||
#define siba_sprom_get_mcs5glpo(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_mcs5glpo(_dev, _arg1)
|
||||
#define siba_sprom_get_mcs5gpo(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_mcs5gpo(_dev, _arg1)
|
||||
#define siba_sprom_get_mcs5ghpo(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->sprom_get_mcs5ghpo(_dev, _arg1)
|
||||
#define siba_pmu_spuravoid_pllupdate(_dev, _arg1) \
|
||||
BWN_BUS_OPS(_dev)->pmu_spuravoid_pllupdate(_dev, _arg1)
|
||||
#define siba_cc_set32(_dev, _arg1, _arg2) \
|
||||
BWN_BUS_OPS(_dev)->cc_set32(_dev, _arg1, _arg2)
|
||||
#define siba_cc_mask32(_dev, _arg1, _arg2) \
|
||||
BWN_BUS_OPS(_dev)->cc_mask32(_dev, _arg1, _arg2)
|
||||
#define siba_cc_write32(_dev, _arg1, _arg2) \
|
||||
BWN_BUS_OPS(_dev)->cc_write32(_dev, _arg1, _arg2)
|
||||
|
||||
#endif /* BWN_USE_SIBA */
|
||||
|
||||
#endif /* _IF_BWN_SIBA_H_ */
|
File diff suppressed because it is too large
Load Diff
@ -1,102 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2016 Landon J. Fuller <landonf@FreeBSD.org>.
|
||||
* Copyright (c) 2017 The FreeBSD Foundation
|
||||
* All rights reserved.
|
||||
*
|
||||
* Portions of this software were developed by Landon Fuller
|
||||
* under sponsorship from the FreeBSD Foundation.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _IF_BWN_SIBA_COMPAT_H_
|
||||
#define _IF_BWN_SIBA_COMPAT_H_
|
||||
|
||||
#define BWN_USE_SIBA 0
|
||||
#include "if_bwn_siba.h"
|
||||
|
||||
#include "if_bwnvar.h"
|
||||
|
||||
#define BWN_BHND_NUM_CORE_PWR 4
|
||||
|
||||
/**
|
||||
* Compatiblity shim state.
|
||||
*/
|
||||
struct bwn_bhnd_ctx {
|
||||
device_t chipc_dev; /**< ChipCommon device */
|
||||
device_t gpio_dev; /**< GPIO device */
|
||||
|
||||
device_t pmu_dev; /**< PMU device, or NULL if no PMU */
|
||||
uint32_t pmu_cctl_addr; /**< chipctrl_addr target of
|
||||
reads/writes to/from the
|
||||
chipctrl_data register */
|
||||
|
||||
uint8_t sromrev; /**< SROM format revision */
|
||||
|
||||
/* NVRAM variables for which bwn(4) expects the bus to manage storage
|
||||
* for (and in some cases, allow writes). */
|
||||
uint8_t mac_80211bg[6]; /**< D11 unit 0 */
|
||||
uint8_t mac_80211a[6]; /**< D11 unit 1 */
|
||||
|
||||
uint32_t boardflags; /**< boardflags (bwn-writable) */
|
||||
uint8_t pa0maxpwr; /**< 2GHz max power (bwn-writable) */
|
||||
};
|
||||
|
||||
/**
|
||||
* Return the bwn(4) device's bhnd compatiblity context.
|
||||
*/
|
||||
static inline struct bwn_bhnd_ctx *
|
||||
bwn_bhnd_get_ctx(device_t dev)
|
||||
{
|
||||
struct bwn_softc *sc = device_get_softc(dev);
|
||||
return (sc->sc_bus_ctx);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch an NVRAM variable via bhnd_nvram_getvar_*().
|
||||
*/
|
||||
#define BWN_BHND_NVRAM_FETCH_VAR(_dev, _type, _name, _result) \
|
||||
do { \
|
||||
int error; \
|
||||
\
|
||||
error = bhnd_nvram_getvar_ ## _type(_dev, _name, _result); \
|
||||
if (error) { \
|
||||
panic("NVRAM variable %s unreadable: %d", _name, \
|
||||
error); \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
/**
|
||||
* Fetch and return an NVRAM variable via bhnd_nvram_getvar_*().
|
||||
*/
|
||||
#define BWN_BHND_NVRAM_RETURN_VAR(_dev, _type, _name) \
|
||||
do { \
|
||||
_type ## _t value; \
|
||||
BWN_BHND_NVRAM_FETCH_VAR(_dev, _type, _name, &value); \
|
||||
return (value); \
|
||||
} while(0)
|
||||
|
||||
#endif /* _IF_BWN_SIBA_COMPAT_H_ */
|
@ -72,12 +72,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bwn/if_bwn_siba.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
|
||||
#include <dev/bwn/if_bwn_chipid.h>
|
||||
#include <dev/bwn/if_bwn_debug.h>
|
||||
#include <dev/bwn/if_bwn_misc.h>
|
||||
#include <dev/bwn/if_bwn_util.h>
|
||||
|
@ -34,83 +34,22 @@
|
||||
#ifndef _IF_BWNREG_H
|
||||
#define _IF_BWNREG_H
|
||||
|
||||
#define PCI_VENDOR_COMPAQ 0x0e11
|
||||
#define PCI_VENDOR_DELL 0x1028
|
||||
#define PCI_VENDOR_HP 0x103c
|
||||
#define PCI_VENDOR_ASUSTEK 0x1043
|
||||
#define PCI_VENDOR_MOTOROLA 0x1057
|
||||
#define PCI_VENDOR_APPLE 0x106b
|
||||
#define PCI_VENDOR_BROADCOM 0x14e4
|
||||
#define PCI_VENDOR_LINKSYS 0x1737
|
||||
|
||||
/* SPROM flags */
|
||||
#define BWN_BFL_BTCOEXIST 0x0001 /* implements Bluetooth coexistance */
|
||||
#define BWN_BFL_PACTRL 0x0002 /* GPIO 9 controlling the PA */
|
||||
#define BWN_BFL_AIRLINEMODE 0x0004 /* implements GPIO 13 radio disable indication */
|
||||
#define BWN_BFL_RSSI 0x0008 /* software calculates nrssi slope. */
|
||||
#define BWN_BFL_ENETSPI 0x0010 /* has ephy roboswitch spi */
|
||||
#define BWN_BFL_CRYSTAL_NOSLOW 0x0020 /* no slow clock available */
|
||||
#define BWN_BFL_CCKHIPWR 0x0040 /* can do high power CCK transmission */
|
||||
#define BWN_BFL_ENETADM 0x0080 /* has ADMtek switch */
|
||||
#define BWN_BFL_ENETVLAN 0x0100 /* can do vlan */
|
||||
#define BWN_BFL_AFTERBURNER 0x0200 /* supports Afterburner mode */
|
||||
#define BWN_BFL_NOPCI 0x0400 /* leaves PCI floating */
|
||||
#define BWN_BFL_FEM 0x0800 /* supports the Front End Module */
|
||||
#define BWN_BFL_EXTLNA 0x1000 /* has an external LNA */
|
||||
#define BWN_BFL_HGPA 0x2000 /* had high gain PA */
|
||||
#define BWN_BFL_BTCMOD 0x4000 /* BFL_BTCOEXIST is given in alternate GPIOs */
|
||||
#define BWN_BFL_ALTIQ 0x8000 /* alternate I/Q settings */
|
||||
|
||||
/* SPROM boardflags_hi values */
|
||||
#define BWN_BFH_NOPA 0x0001 /* has no PA */
|
||||
#define BWN_BFH_RSSIINV 0x0002 /* RSSI uses positive slope (not TSSI) */
|
||||
#define BWN_BFH_LDO_PAREF 0x0004 /* uses the PARef LDO */
|
||||
#define BWN_BFH_3TSWITCH 0x0008 /* uses a triple throw switch shared
|
||||
* with bluetooth */
|
||||
#define BWN_BFH_PHASESHIFT 0x0010 /* can support phase shifter */
|
||||
#define BWN_BFH_BUCKBOOST 0x0020 /* has buck/booster */
|
||||
#define BWN_BFH_FEM_BT 0x0040 /* has FEM and switch to share antenna
|
||||
* with bluetooth */
|
||||
#define BWN_BFH_NOCBUCK 0x0080
|
||||
#define BWN_BFH_PALDO 0x0200
|
||||
#define BWN_BFH_EXTLNA_5GHZ 0x1000 /* has an external LNA (5GHz mode) */
|
||||
|
||||
/* SPROM boardflags2_lo values */
|
||||
#define BWN_BFL2_RXBB_INT_REG_DIS 0x0001 /* external RX BB regulator present */
|
||||
#define BWN_BFL2_APLL_WAR 0x0002 /* alternative A-band PLL settings implemented */
|
||||
#define BWN_BFL2_TXPWRCTRL_EN 0x0004 /* permits enabling TX Power Control */
|
||||
#define BWN_BFL2_2X4_DIV 0x0008 /* 2x4 diversity switch */
|
||||
#define BWN_BFL2_5G_PWRGAIN 0x0010 /* supports 5G band power gain */
|
||||
#define BWN_BFL2_PCIEWAR_OVR 0x0020 /* overrides ASPM and Clkreq settings */
|
||||
#define BWN_BFL2_CAESERS_BRD 0x0040 /* is Caesers board (unused) */
|
||||
#define BWN_BFL2_BTC3WIRE 0x0080 /* used 3-wire bluetooth coexist */
|
||||
#define BWN_BFL2_SKWRKFEM_BRD 0x0100 /* 4321mcm93 uses Skyworks FEM */
|
||||
#define BWN_BFL2_SPUR_WAR 0x0200 /* has a workaround for clock-harmonic spurs */
|
||||
#define BWN_BFL2_GPLL_WAR 0x0400 /* altenative G-band PLL settings implemented */
|
||||
#define BWN_BFL2_SINGLEANT_CCK 0x1000
|
||||
#define BWN_BFL2_2G_SPUR_WAR 0x2000
|
||||
|
||||
/* SPROM boardflags2_hi values */
|
||||
#define BWN_BFH2_GPLL_WAR2 0x0001
|
||||
#define BWN_BFH2_IPALVLSHIFT_3P3 0x0002
|
||||
#define BWN_BFH2_INTERNDET_TXIQCAL 0x0004
|
||||
#define BWN_BFH2_XTALBUFOUTEN 0x0008
|
||||
|
||||
/* SIBA control registers */
|
||||
#define BWN_TGSLOW_PHYCLOCK_ENABLE 0x00040000
|
||||
#define BWN_TGSLOW_PHYRESET 0x00080000
|
||||
#define BWN_TGSLOW_MACPHYCLKEN 0x00100000 /* MAC PHY Clock Control Enable (rev >= 5) */
|
||||
#define BWN_TGSLOW_PLLREFSEL 0x00200000 /* PLL Frequency Reference Select (rev >= 5) */
|
||||
/* D11-specific I/O control flags */
|
||||
#define BWN_IOCTL_PHYCLOCK_ENABLE 0x0004
|
||||
#define BWN_IOCTL_PHYRESET 0x0008
|
||||
#define BWN_IOCTL_MACPHYCLKEN 0x0010 /* MAC PHY Clock Control Enable (rev >= 5) */
|
||||
#define BWN_IOCTL_PLLREFSEL 0x0020 /* PLL Frequency Reference Select (rev >= 5) */
|
||||
/* PHY_BANDWIDTH: N-PHY only */
|
||||
#define BWN_TGSLOW_PHY_BANDWIDTH 0x00C00000
|
||||
#define BWN_TGSLOW_PHY_BANDWIDTH_10MHZ 0x00000000
|
||||
#define BWN_TGSLOW_PHY_BANDWIDTH_20MHZ 0x00400000
|
||||
#define BWN_TGSLOW_PHY_BANDWIDTH_40MHZ 0x00800000
|
||||
#define BWN_TGSLOW_SUPPORT_G 0x20000000
|
||||
#define BWN_IOCTL_PHY_BANDWIDTH 0x00C0
|
||||
#define BWN_IOCTL_PHY_BANDWIDTH_10MHZ 0x0000
|
||||
#define BWN_IOCTL_PHY_BANDWIDTH_20MHZ 0x0040
|
||||
#define BWN_IOCTL_PHY_BANDWIDTH_40MHZ 0x0080
|
||||
#define BWN_IOCTL_SUPPORT_G 0x2000
|
||||
|
||||
#define BWN_TGSHIGH_HAVE_2GHZ 0x00010000
|
||||
#define BWN_TGSHIGH_HAVE_5GHZ 0x00020000
|
||||
#define BWN_TGSHIGH_DUALPHY 0x00080000
|
||||
/* D11-specific I/O status flags */
|
||||
#define BWN_IOST_HAVE_2GHZ 0x0001
|
||||
#define BWN_IOST_HAVE_5GHZ 0x0002
|
||||
#define BWN_IOST_DUALPHY 0x0008
|
||||
|
||||
#define BWN_PHYTYPE_A 0x00
|
||||
#define BWN_PHYTYPE_B 0x01
|
||||
@ -433,6 +372,8 @@
|
||||
#define BWN_DMA32_RXDPTR 0x00000fff
|
||||
#define BWN_DMA32_RXSTATE 0x0000f000
|
||||
#define BWN_DMA32_RXSTAT_DISABLED 0x00000000
|
||||
#define BWN_DMA32_ADDREXT_MASK 0xC0000000
|
||||
#define BWN_DMA32_ADDREXT_SHIFT 30
|
||||
#define BWN_DMA64_TXCTL 0x00
|
||||
#define BWN_DMA64_TXENABLE 0x00000001
|
||||
#define BWN_DMA64_TXSUSPEND 0x00000002
|
||||
@ -461,6 +402,8 @@
|
||||
#define BWN_DMA64_RXSTATDPTR 0x00001fff
|
||||
#define BWN_DMA64_RXSTAT 0xf0000000
|
||||
#define BWN_DMA64_RXSTAT_DISABLED 0x00000000
|
||||
#define BWN_DMA64_ADDREXT_MASK 0xC000000000000000ULL
|
||||
#define BWN_DMA64_ADDREXT_SHIFT 62
|
||||
#define BWN_DMA_RINGMEMSIZE PAGE_SIZE
|
||||
#define BWN_DMA0_RX_FRAMEOFFSET_FW351 30
|
||||
#define BWN_DMA0_RX_FRAMEOFFSET_FW598 38
|
||||
@ -723,6 +666,23 @@
|
||||
|
||||
#define BWN_TAB_NOISESCALE_SIZE 27
|
||||
|
||||
/*
|
||||
* SPROM rev 1 locale codes. Later SPROM revisions use a two-character
|
||||
* country code.
|
||||
*/
|
||||
enum {
|
||||
BWN_SPROM1_CC_WORLDWIDE = 0,
|
||||
BWN_SPROM1_CC_THAILAND = 1,
|
||||
BWN_SPROM1_CC_ISRAEL = 2,
|
||||
BWN_SPROM1_CC_JORDAN = 3,
|
||||
BWN_SPROM1_CC_CHINA = 4,
|
||||
BWN_SPROM1_CC_JP = 5,
|
||||
BWN_SPROM1_CC_USA = 6,
|
||||
BWN_SPROM1_CC_EUROPE = 7,
|
||||
BWN_SPROM1_CC_US_LOW = 8,
|
||||
BWN_SPROM1_CC_JP_HIGH = 9,
|
||||
};
|
||||
|
||||
/*
|
||||
* SPROM GPIO
|
||||
*/
|
||||
@ -741,7 +701,7 @@
|
||||
#define BWN_LED_ACT_ASSOC 10
|
||||
#define BWN_LED_ACT_NULL 11
|
||||
|
||||
#define BWN_VENDOR_LED_ACT_COMPAQ \
|
||||
#define BWN_VENDOR_LED_ACT_HP_COMPAQ \
|
||||
BWN_LED_ACT_RF_ENABLED, \
|
||||
BWN_LED_ACT_2GHZ, \
|
||||
BWN_LED_ACT_5GHZ, \
|
||||
|
@ -34,19 +34,13 @@
|
||||
#ifndef _IF_BWNVAR_H
|
||||
#define _IF_BWNVAR_H
|
||||
|
||||
#include "if_bwn_siba.h"
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
|
||||
struct bwn_softc;
|
||||
struct bwn_mac;
|
||||
|
||||
extern driver_t bwn_driver;
|
||||
|
||||
int bwn_attach(device_t dev);
|
||||
int bwn_detach(device_t dev);
|
||||
|
||||
#define N(a) (sizeof(a) / sizeof(a[0]))
|
||||
#define BWN_ALIGN 0x1000
|
||||
#define BWN_BUS_SPACE_MAXADDR_30BIT 0x3fffffff
|
||||
#define BWN_RETRY_SHORT 7
|
||||
#define BWN_RETRY_LONG 4
|
||||
#define BWN_STAID_MAX 64
|
||||
@ -73,10 +67,12 @@ int bwn_detach(device_t dev);
|
||||
((uint16_t)((((uint16_t)tq->tq_index + 1) << 12) | tp->tp_index))
|
||||
#define BWN_DMA_COOKIE(dr, slot) \
|
||||
((uint16_t)(((uint16_t)dr->dr_index + 1) << 12) | (uint16_t)slot)
|
||||
#define BWN_READ_2(mac, o) (siba_read_2(mac->mac_sc->sc_dev, o))
|
||||
#define BWN_READ_4(mac, o) (siba_read_4(mac->mac_sc->sc_dev, o))
|
||||
#define BWN_READ_2(mac, o) \
|
||||
(bus_read_2((mac)->mac_sc->sc_mem_res, (o)))
|
||||
#define BWN_READ_4(mac, o) \
|
||||
(bus_read_4((mac)->mac_sc->sc_mem_res, (o)))
|
||||
#define BWN_WRITE_2(mac, o, v) \
|
||||
(siba_write_2(mac->mac_sc->sc_dev, o, v))
|
||||
(bus_write_2((mac)->mac_sc->sc_mem_res, (o), (v)))
|
||||
#define BWN_WRITE_2_F(mac, o, v) do { \
|
||||
(BWN_WRITE_2(mac, o, v)); \
|
||||
BWN_READ_2(mac, o); \
|
||||
@ -84,13 +80,13 @@ int bwn_detach(device_t dev);
|
||||
#define BWN_WRITE_SETMASK2(mac, offset, mask, set) \
|
||||
BWN_WRITE_2(mac, offset, (BWN_READ_2(mac, offset) & mask) | set)
|
||||
#define BWN_WRITE_4(mac, o, v) \
|
||||
(siba_write_4(mac->mac_sc->sc_dev, o, v))
|
||||
(bus_write_4((mac)->mac_sc->sc_mem_res, (o), (v)))
|
||||
#define BWN_WRITE_SETMASK4(mac, offset, mask, set) \
|
||||
BWN_WRITE_4(mac, offset, (BWN_READ_4(mac, offset) & mask) | set)
|
||||
#define BWN_PIO_TXQOFFSET(mac) \
|
||||
((siba_get_revid(mac->mac_sc->sc_dev) >= 11) ? 0x18 : 0)
|
||||
((bhnd_get_hwrev(mac->mac_sc->sc_dev) >= 11) ? 0x18 : 0)
|
||||
#define BWN_PIO_RXQOFFSET(mac) \
|
||||
((siba_get_revid(mac->mac_sc->sc_dev) >= 11) ? 0x38 : 8)
|
||||
((bhnd_get_hwrev(mac->mac_sc->sc_dev) >= 11) ? 0x38 : 8)
|
||||
#define BWN_SEC_NEWAPI(mac) (mac->mac_fw.rev >= 351)
|
||||
#define BWN_SEC_KEY2FW(mac, idx) \
|
||||
(BWN_SEC_NEWAPI(mac) ? idx : ((idx >= 4) ? idx - 4 : idx))
|
||||
@ -144,7 +140,6 @@ int bwn_detach(device_t dev);
|
||||
#define BWN_LO_CALIB_EXPIRE (1000 * (30 - 2))
|
||||
#define BWN_LO_PWRVEC_EXPIRE (1000 * (30 - 2))
|
||||
#define BWN_LO_TXCTL_EXPIRE (1000 * (180 - 4))
|
||||
#define BWN_DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
|
||||
#define BWN_LPD(L, P, D) (((L) << 2) | ((P) << 1) | ((D) << 0))
|
||||
#define BWN_BITREV4(tmp) (BWN_BITREV8(tmp) >> 4)
|
||||
#define BWN_BITREV8(byte) (bwn_bitrev_table[byte])
|
||||
@ -159,7 +154,8 @@ int bwn_detach(device_t dev);
|
||||
(rate == BWN_CCK_RATE_1MB || rate == BWN_CCK_RATE_2MB || \
|
||||
rate == BWN_CCK_RATE_5MB || rate == BWN_CCK_RATE_11MB)
|
||||
#define BWN_ISOFDMRATE(rate) (!BWN_ISCCKRATE(rate))
|
||||
#define BWN_BARRIER(mac, flags) siba_barrier(mac->mac_sc->sc_dev, flags)
|
||||
#define BWN_BARRIER(mac, offset, length, flags) \
|
||||
bus_barrier((mac)->mac_sc->sc_mem_res, (offset), (length), (flags))
|
||||
#define BWN_DMA_READ(dr, offset) \
|
||||
(BWN_READ_4(dr->dr_mac, dr->dr_base + offset))
|
||||
#define BWN_DMA_WRITE(dr, offset, value) \
|
||||
@ -349,6 +345,7 @@ struct bwn_phy_g {
|
||||
uint16_t pg_radioctx_overval;
|
||||
uint16_t pg_minlowsig[2];
|
||||
uint16_t pg_minlowsigpos[2];
|
||||
uint16_t pg_pa0maxpwr;
|
||||
int8_t *pg_tssi2dbm;
|
||||
int pg_idletssi;
|
||||
int pg_curtssi;
|
||||
@ -606,10 +603,6 @@ struct bwn_noise {
|
||||
int8_t noi_samples[8][4];
|
||||
};
|
||||
|
||||
#define BWN_DMA_30BIT 30
|
||||
#define BWN_DMA_32BIT 32
|
||||
#define BWN_DMA_64BIT 64
|
||||
|
||||
struct bwn_dmadesc_meta {
|
||||
bus_dmamap_t mt_dmap;
|
||||
bus_addr_t mt_paddr;
|
||||
@ -701,10 +694,11 @@ struct bwn_dma_ring {
|
||||
};
|
||||
|
||||
struct bwn_dma {
|
||||
int dmatype;
|
||||
bus_dma_tag_t parent_dtag;
|
||||
bus_dma_tag_t rxbuf_dtag;
|
||||
bus_dma_tag_t txbuf_dtag;
|
||||
struct bhnd_dma_translation translation;
|
||||
u_int addrext_shift;
|
||||
|
||||
struct bwn_dma_ring *wme[5];
|
||||
struct bwn_dma_ring *mcast;
|
||||
@ -948,11 +942,9 @@ struct bwn_mac {
|
||||
#define BWN_MAC_FLAG_WME (1 << 4)
|
||||
#define BWN_MAC_FLAG_HWCRYPTO (1 << 5)
|
||||
|
||||
struct resource_spec *mac_intr_spec;
|
||||
#define BWN_MSI_MESSAGES 1
|
||||
struct resource *mac_res_irq[BWN_MSI_MESSAGES];
|
||||
void *mac_intrhand[BWN_MSI_MESSAGES];
|
||||
int mac_msi;
|
||||
struct resource *mac_res_irq;
|
||||
int mac_rid_irq;
|
||||
void *mac_intrhand;
|
||||
|
||||
struct bwn_noise mac_noise;
|
||||
struct bwn_phy mac_phy;
|
||||
@ -964,6 +956,7 @@ struct bwn_mac {
|
||||
|
||||
struct bwn_fw mac_fw;
|
||||
|
||||
int mac_dmatype;
|
||||
union {
|
||||
struct bwn_dma dma;
|
||||
struct bwn_pio pio;
|
||||
@ -1009,14 +1002,31 @@ struct bwn_vap {
|
||||
#define BWN_VAP(vap) ((struct bwn_vap *)(vap))
|
||||
#define BWN_VAP_CONST(vap) ((const struct mwl_vap *)(vap))
|
||||
|
||||
enum bwn_quirk {
|
||||
/**
|
||||
* The ucode PCI slowclock workaround is required on this device.
|
||||
* @see BWN_HF_PCI_SLOWCLOCK_WORKAROUND.
|
||||
*/
|
||||
BWN_QUIRK_UCODE_SLOWCLOCK_WAR = (1<<0),
|
||||
|
||||
/**
|
||||
* DMA is unsupported on this device; PIO should be used instead.
|
||||
*/
|
||||
BWN_QUIRK_NODMA = (1<<1),
|
||||
};
|
||||
|
||||
struct bwn_softc {
|
||||
device_t sc_dev;
|
||||
const struct bwn_bus_ops *sc_bus_ops;
|
||||
#if !BWN_USE_SIBA
|
||||
void *sc_bus_ctx;
|
||||
struct bhnd_resource *sc_mem_res;
|
||||
int sc_mem_rid;
|
||||
#endif /* !BWN_USE_SIBA */
|
||||
struct bhnd_board_info sc_board_info;
|
||||
struct bhnd_chipid sc_cid;
|
||||
uint32_t sc_quirks; /**< @see bwn_quirk */
|
||||
struct resource *sc_mem_res;
|
||||
int sc_mem_rid;
|
||||
|
||||
device_t sc_chipc; /**< ChipCommon device */
|
||||
device_t sc_gpio; /**< GPIO device */
|
||||
device_t sc_pmu; /**< PMU device, or NULL if unsupported */
|
||||
|
||||
struct mtx sc_mtx;
|
||||
struct ieee80211com sc_ic;
|
||||
struct mbufq sc_snd;
|
||||
@ -1059,6 +1069,9 @@ struct bwn_softc {
|
||||
int sc_led_idle;
|
||||
int sc_led_blink;
|
||||
|
||||
uint8_t sc_ant2g; /**< available 2GHz antennas */
|
||||
uint8_t sc_ant5g; /**< available 5GHz antennas */
|
||||
|
||||
struct bwn_tx_radiotap_header sc_tx_th;
|
||||
struct bwn_rx_radiotap_header sc_rx_th;
|
||||
};
|
||||
|
@ -1,411 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2009-2010 Weongyo Jeong <weongyo@freebsd.org>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer,
|
||||
* without modification.
|
||||
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
||||
* similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
|
||||
* redistribution must be conditioned upon including a substantially
|
||||
* similar Disclaimer requirement for further binary redistribution.
|
||||
*
|
||||
* NO WARRANTY
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
||||
* THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
||||
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||
* THE POSSIBILITY OF SUCH DAMAGES.
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
/*
|
||||
* Sonics Silicon Backplane front-end for bwn(4).
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/module.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/lock.h>
|
||||
#include <sys/mutex.h>
|
||||
#include <sys/errno.h>
|
||||
#include <machine/bus.h>
|
||||
#include <machine/resource.h>
|
||||
#include <sys/bus.h>
|
||||
#include <sys/rman.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
#include <net/if.h>
|
||||
#include <net/if_media.h>
|
||||
#include <net/if_arp.h>
|
||||
|
||||
#include <dev/pci/pcivar.h>
|
||||
#include <dev/pci/pcireg.h>
|
||||
|
||||
#include <dev/siba/siba_ids.h>
|
||||
#include <dev/siba/sibareg.h>
|
||||
#include <dev/siba/sibavar.h>
|
||||
|
||||
/*
|
||||
* PCI glue.
|
||||
*/
|
||||
|
||||
struct siba_bwn_softc {
|
||||
/* Child driver using MSI. */
|
||||
device_t ssc_msi_child;
|
||||
struct siba_softc ssc_siba;
|
||||
};
|
||||
|
||||
#define BS_BAR 0x10
|
||||
#define PCI_VENDOR_BROADCOM 0x14e4
|
||||
#define N(a) (sizeof(a) / sizeof(a[0]))
|
||||
|
||||
static const struct siba_dev {
|
||||
uint16_t vid;
|
||||
uint16_t did;
|
||||
const char *desc;
|
||||
} siba_devices[] = {
|
||||
{ PCI_VENDOR_BROADCOM, 0x4301, "Broadcom BCM4301 802.11b Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4306, "Unknown" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4307, "Broadcom BCM4307 802.11b Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4311, "Broadcom BCM4311 802.11b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4312,
|
||||
"Broadcom BCM4312 802.11a/b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4315, "Broadcom BCM4312 802.11b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4318, "Broadcom BCM4318 802.11b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4319,
|
||||
"Broadcom BCM4318 802.11a/b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4320, "Broadcom BCM4306 802.11b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4321, "Broadcom BCM4306 802.11a Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4324,
|
||||
"Broadcom BCM4309 802.11a/b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4325, "Broadcom BCM4306 802.11b/g Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4328, "Broadcom BCM4321 802.11a/b/g/n Wireless" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x4329, "Unknown" },
|
||||
{ PCI_VENDOR_BROADCOM, 0x432b, "Broadcom BCM4322 802.11a/b/g/n Wireless" }
|
||||
};
|
||||
|
||||
int siba_core_attach(struct siba_softc *);
|
||||
int siba_core_detach(struct siba_softc *);
|
||||
int siba_core_suspend(struct siba_softc *);
|
||||
int siba_core_resume(struct siba_softc *);
|
||||
|
||||
static int
|
||||
siba_bwn_probe(device_t dev)
|
||||
{
|
||||
int i;
|
||||
uint16_t did, vid;
|
||||
|
||||
did = pci_get_device(dev);
|
||||
vid = pci_get_vendor(dev);
|
||||
|
||||
for (i = 0; i < N(siba_devices); i++) {
|
||||
if (siba_devices[i].did == did && siba_devices[i].vid == vid) {
|
||||
device_set_desc(dev, siba_devices[i].desc);
|
||||
return (BUS_PROBE_DEFAULT);
|
||||
}
|
||||
}
|
||||
return (ENXIO);
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_attach(device_t dev)
|
||||
{
|
||||
struct siba_bwn_softc *ssc = device_get_softc(dev);
|
||||
struct siba_softc *siba = &ssc->ssc_siba;
|
||||
|
||||
siba->siba_dev = dev;
|
||||
siba->siba_type = SIBA_TYPE_PCI;
|
||||
|
||||
/*
|
||||
* Enable bus mastering.
|
||||
*/
|
||||
pci_enable_busmaster(dev);
|
||||
|
||||
/*
|
||||
* Setup memory-mapping of PCI registers.
|
||||
*/
|
||||
siba->siba_mem_rid = SIBA_PCIR_BAR;
|
||||
siba->siba_mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
|
||||
&siba->siba_mem_rid, RF_ACTIVE);
|
||||
if (siba->siba_mem_res == NULL) {
|
||||
device_printf(dev, "cannot map register space\n");
|
||||
return (ENXIO);
|
||||
}
|
||||
siba->siba_mem_bt = rman_get_bustag(siba->siba_mem_res);
|
||||
siba->siba_mem_bh = rman_get_bushandle(siba->siba_mem_res);
|
||||
|
||||
/* Get more PCI information */
|
||||
siba->siba_pci_did = pci_get_device(dev);
|
||||
siba->siba_pci_vid = pci_get_vendor(dev);
|
||||
siba->siba_pci_subvid = pci_get_subvendor(dev);
|
||||
siba->siba_pci_subdid = pci_get_subdevice(dev);
|
||||
siba->siba_pci_revid = pci_get_revid(dev);
|
||||
|
||||
return (siba_core_attach(siba));
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_detach(device_t dev)
|
||||
{
|
||||
struct siba_bwn_softc *ssc = device_get_softc(dev);
|
||||
struct siba_softc *siba = &ssc->ssc_siba;
|
||||
|
||||
/* check if device was removed */
|
||||
siba->siba_invalid = !bus_child_present(dev);
|
||||
|
||||
pci_disable_busmaster(dev);
|
||||
bus_generic_detach(dev);
|
||||
siba_core_detach(siba);
|
||||
|
||||
bus_release_resource(dev, SYS_RES_MEMORY, BS_BAR, siba->siba_mem_res);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_suspend(device_t dev)
|
||||
{
|
||||
struct siba_bwn_softc *ssc = device_get_softc(dev);
|
||||
struct siba_softc *siba = &ssc->ssc_siba;
|
||||
int error;
|
||||
|
||||
error = bus_generic_suspend(dev);
|
||||
|
||||
if (error != 0)
|
||||
return (error);
|
||||
|
||||
return (siba_core_suspend(siba));
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_resume(device_t dev)
|
||||
{
|
||||
struct siba_bwn_softc *ssc = device_get_softc(dev);
|
||||
struct siba_softc *siba = &ssc->ssc_siba;
|
||||
int error;
|
||||
|
||||
error = siba_core_resume(siba);
|
||||
if (error != 0)
|
||||
return (error);
|
||||
|
||||
bus_generic_resume(dev);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* proxying to the parent */
|
||||
static struct resource *
|
||||
siba_bwn_alloc_resource(device_t dev, device_t child, int type, int *rid,
|
||||
rman_res_t start, rman_res_t end, rman_res_t count, u_int flags)
|
||||
{
|
||||
|
||||
return (BUS_ALLOC_RESOURCE(device_get_parent(dev), dev,
|
||||
type, rid, start, end, count, flags));
|
||||
}
|
||||
|
||||
/* proxying to the parent */
|
||||
static int
|
||||
siba_bwn_release_resource(device_t dev, device_t child, int type,
|
||||
int rid, struct resource *r)
|
||||
{
|
||||
|
||||
return (BUS_RELEASE_RESOURCE(device_get_parent(dev), dev, type,
|
||||
rid, r));
|
||||
}
|
||||
|
||||
/* proxying to the parent */
|
||||
static int
|
||||
siba_bwn_setup_intr(device_t dev, device_t child, struct resource *irq,
|
||||
int flags, driver_filter_t *filter, driver_intr_t *intr, void *arg,
|
||||
void **cookiep)
|
||||
{
|
||||
|
||||
return (BUS_SETUP_INTR(device_get_parent(dev), dev, irq, flags,
|
||||
filter, intr, arg, cookiep));
|
||||
}
|
||||
|
||||
/* proxying to the parent */
|
||||
static int
|
||||
siba_bwn_teardown_intr(device_t dev, device_t child, struct resource *irq,
|
||||
void *cookie)
|
||||
{
|
||||
|
||||
return (BUS_TEARDOWN_INTR(device_get_parent(dev), dev, irq, cookie));
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_find_cap(device_t dev, device_t child, int capability,
|
||||
int *capreg)
|
||||
{
|
||||
|
||||
return (pci_find_cap(dev, capability, capreg));
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_find_extcap(device_t dev, device_t child, int capability,
|
||||
int *capreg)
|
||||
{
|
||||
|
||||
return (pci_find_extcap(dev, capability, capreg));
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_find_htcap(device_t dev, device_t child, int capability,
|
||||
int *capreg)
|
||||
{
|
||||
|
||||
return (pci_find_htcap(dev, capability, capreg));
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_alloc_msi(device_t dev, device_t child, int *count)
|
||||
{
|
||||
struct siba_bwn_softc *ssc;
|
||||
int error;
|
||||
|
||||
ssc = device_get_softc(dev);
|
||||
if (ssc->ssc_msi_child != NULL)
|
||||
return (EBUSY);
|
||||
error = pci_alloc_msi(dev, count);
|
||||
if (error == 0)
|
||||
ssc->ssc_msi_child = child;
|
||||
return (error);
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_release_msi(device_t dev, device_t child)
|
||||
{
|
||||
struct siba_bwn_softc *ssc;
|
||||
int error;
|
||||
|
||||
ssc = device_get_softc(dev);
|
||||
if (ssc->ssc_msi_child != child)
|
||||
return (ENXIO);
|
||||
error = pci_release_msi(dev);
|
||||
if (error == 0)
|
||||
ssc->ssc_msi_child = NULL;
|
||||
return (error);
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_msi_count(device_t dev, device_t child)
|
||||
{
|
||||
|
||||
return (pci_msi_count(dev));
|
||||
}
|
||||
|
||||
static int
|
||||
siba_bwn_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
|
||||
{
|
||||
struct siba_dev_softc *sd;
|
||||
struct siba_softc *siba;
|
||||
|
||||
sd = device_get_ivars(child);
|
||||
siba = sd->sd_bus;
|
||||
|
||||
switch (which) {
|
||||
case SIBA_IVAR_VENDOR:
|
||||
*result = sd->sd_id.sd_vendor;
|
||||
break;
|
||||
case SIBA_IVAR_DEVICE:
|
||||
*result = sd->sd_id.sd_device;
|
||||
break;
|
||||
case SIBA_IVAR_REVID:
|
||||
*result = sd->sd_id.sd_rev;
|
||||
break;
|
||||
case SIBA_IVAR_PCI_VENDOR:
|
||||
*result = siba->siba_pci_vid;
|
||||
break;
|
||||
case SIBA_IVAR_PCI_DEVICE:
|
||||
*result = siba->siba_pci_did;
|
||||
break;
|
||||
case SIBA_IVAR_PCI_SUBVENDOR:
|
||||
*result = siba->siba_pci_subvid;
|
||||
break;
|
||||
case SIBA_IVAR_PCI_SUBDEVICE:
|
||||
*result = siba->siba_pci_subdid;
|
||||
break;
|
||||
case SIBA_IVAR_PCI_REVID:
|
||||
*result = siba->siba_pci_revid;
|
||||
break;
|
||||
case SIBA_IVAR_CHIPID:
|
||||
*result = siba->siba_chipid;
|
||||
break;
|
||||
case SIBA_IVAR_CHIPREV:
|
||||
*result = siba->siba_chiprev;
|
||||
break;
|
||||
case SIBA_IVAR_CHIPPKG:
|
||||
*result = siba->siba_chippkg;
|
||||
break;
|
||||
case SIBA_IVAR_TYPE:
|
||||
*result = siba->siba_type;
|
||||
break;
|
||||
case SIBA_IVAR_CC_PMUFREQ:
|
||||
*result = siba->siba_cc.scc_pmu.freq;
|
||||
break;
|
||||
case SIBA_IVAR_CC_CAPS:
|
||||
*result = siba->siba_cc.scc_caps;
|
||||
break;
|
||||
case SIBA_IVAR_CC_POWERDELAY:
|
||||
*result = siba->siba_cc.scc_powerup_delay;
|
||||
break;
|
||||
case SIBA_IVAR_PCICORE_REVID:
|
||||
*result = siba->siba_pci.spc_dev->sd_id.sd_rev;
|
||||
break;
|
||||
default:
|
||||
return (ENOENT);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static device_method_t siba_bwn_methods[] = {
|
||||
/* Device interface */
|
||||
DEVMETHOD(device_probe, siba_bwn_probe),
|
||||
DEVMETHOD(device_attach, siba_bwn_attach),
|
||||
DEVMETHOD(device_detach, siba_bwn_detach),
|
||||
DEVMETHOD(device_shutdown, bus_generic_shutdown),
|
||||
DEVMETHOD(device_suspend, siba_bwn_suspend),
|
||||
DEVMETHOD(device_resume, siba_bwn_resume),
|
||||
|
||||
/* Bus interface */
|
||||
DEVMETHOD(bus_alloc_resource, siba_bwn_alloc_resource),
|
||||
DEVMETHOD(bus_release_resource, siba_bwn_release_resource),
|
||||
DEVMETHOD(bus_read_ivar, siba_bwn_read_ivar),
|
||||
DEVMETHOD(bus_setup_intr, siba_bwn_setup_intr),
|
||||
DEVMETHOD(bus_teardown_intr, siba_bwn_teardown_intr),
|
||||
|
||||
/* PCI interface */
|
||||
DEVMETHOD(pci_find_cap, siba_bwn_find_cap),
|
||||
DEVMETHOD(pci_find_extcap, siba_bwn_find_extcap),
|
||||
DEVMETHOD(pci_find_htcap, siba_bwn_find_htcap),
|
||||
DEVMETHOD(pci_alloc_msi, siba_bwn_alloc_msi),
|
||||
DEVMETHOD(pci_release_msi, siba_bwn_release_msi),
|
||||
DEVMETHOD(pci_msi_count, siba_bwn_msi_count),
|
||||
|
||||
DEVMETHOD_END
|
||||
};
|
||||
static driver_t siba_bwn_driver = {
|
||||
"siba_bwn",
|
||||
siba_bwn_methods,
|
||||
sizeof(struct siba_bwn_softc)
|
||||
};
|
||||
static devclass_t siba_bwn_devclass;
|
||||
DRIVER_MODULE(siba_bwn, pci, siba_bwn_driver, siba_bwn_devclass, 0, 0);
|
||||
MODULE_VERSION(siba_bwn, 1);
|
File diff suppressed because it is too large
Load Diff
@ -1,95 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2007 Bruce M. Simpson.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _SIBA_SIBA_IDS_H_
|
||||
#define _SIBA_SIBA_IDS_H_
|
||||
|
||||
/*
|
||||
* Constants and structures for SiBa bus enumeration.
|
||||
*/
|
||||
|
||||
struct siba_devid {
|
||||
uint16_t sd_vendor;
|
||||
uint16_t sd_device;
|
||||
uint8_t sd_rev;
|
||||
char *sd_desc;
|
||||
};
|
||||
#define SIBA_DEV(_vendor, _cid, _rev, _msg) \
|
||||
{ SIBA_VID_##_vendor, SIBA_DEVID_##_cid, _rev, _msg }
|
||||
|
||||
/*
|
||||
* Device IDs
|
||||
*/
|
||||
#define SIBA_DEVID_ANY 0xffff
|
||||
#define SIBA_DEVID_CHIPCOMMON 0x800
|
||||
#define SIBA_DEVID_ILINE20 0x801
|
||||
#define SIBA_DEVID_SDRAM 0x803
|
||||
#define SIBA_DEVID_PCI 0x804
|
||||
#define SIBA_DEVID_MIPS 0x805
|
||||
#define SIBA_DEVID_ETHERNET 0x806
|
||||
#define SIBA_DEVID_MODEM 0x807
|
||||
#define SIBA_DEVID_USB11_HOSTDEV 0x808
|
||||
#define SIBA_DEVID_ADSL 0x809
|
||||
#define SIBA_DEVID_ILINE100 0x80a
|
||||
#define SIBA_DEVID_IPSEC 0x80b
|
||||
#define SIBA_DEVID_PCMCIA 0x80d
|
||||
#define SIBA_DEVID_INTERNAL_MEM 0x80e
|
||||
#define SIBA_DEVID_SDRAMDDR 0x80f
|
||||
#define SIBA_DEVID_EXTIF 0x811
|
||||
#define SIBA_DEVID_80211 0x812
|
||||
#define SIBA_DEVID_MIPS_3302 0x816
|
||||
#define SIBA_DEVID_USB11_HOST 0x817
|
||||
#define SIBA_DEVID_USB11_DEV 0x818
|
||||
#define SIBA_DEVID_USB20_HOST 0x819
|
||||
#define SIBA_DEVID_USB20_DEV 0x81a
|
||||
#define SIBA_DEVID_SDIO_HOST 0x81b
|
||||
#define SIBA_DEVID_ROBOSWITCH 0x81c
|
||||
#define SIBA_DEVID_PARA_ATA 0x81d
|
||||
#define SIBA_DEVID_SATA_XORDMA 0x81e
|
||||
#define SIBA_DEVID_ETHERNET_GBIT 0x81f
|
||||
#define SIBA_DEVID_PCIE 0x820
|
||||
#define SIBA_DEVID_MIMO_PHY 0x821
|
||||
#define SIBA_DEVID_SRAM_CTRLR 0x822
|
||||
#define SIBA_DEVID_MINI_MACPHY 0x823
|
||||
#define SIBA_DEVID_ARM_1176 0x824
|
||||
#define SIBA_DEVID_ARM_7TDMI 0x825
|
||||
|
||||
/*
|
||||
* Vendor IDs
|
||||
*/
|
||||
#define SIBA_VID_ANY 0xffff
|
||||
#define SIBA_VID_BROADCOM 0x4243
|
||||
|
||||
/*
|
||||
* Revision IDs
|
||||
*/
|
||||
#define SIBA_REV_ANY 0xff
|
||||
|
||||
#endif /*_SIBA_SIBA_IDS_H_ */
|
@ -1,582 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2007 Bruce M. Simpson.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
/*
|
||||
* TODO: sprom
|
||||
* TODO: implement dma translation bits (if needed for system bus)
|
||||
*/
|
||||
|
||||
#ifndef _SIBA_SIBAREG_H_
|
||||
#define _SIBA_SIBAREG_H_
|
||||
|
||||
#define PCI_DEVICE_ID_BCM4401 0x4401
|
||||
#define PCI_DEVICE_ID_BCM4401B0 0x4402
|
||||
#define PCI_DEVICE_ID_BCM4401B1 0x170c
|
||||
#define SIBA_PCIR_BAR PCIR_BAR(0)
|
||||
#define SIBA_CCID_BCM4710 0x4710
|
||||
#define SIBA_CCID_BCM4704 0x4704
|
||||
#define SIBA_CCID_SENTRY5 0x5365
|
||||
|
||||
/*
|
||||
* ChipCommon registers.
|
||||
*/
|
||||
#define SIBA_CC_CHIPID 0x0000
|
||||
#define SIBA_CC_IDMASK 0x0000ffff
|
||||
#define SIBA_CC_ID(id) (id & SIBA_CC_IDMASK)
|
||||
#define SIBA_CC_REVMASK 0x000f0000
|
||||
#define SIBA_CC_REVSHIFT 16
|
||||
#define SIBA_CC_REV(id) \
|
||||
((id & SIBA_CC_REVMASK) >> SIBA_CC_REVSHIFT)
|
||||
#define SIBA_CC_PKGMASK 0x00F00000
|
||||
#define SIBA_CC_PKGSHIFT 20
|
||||
#define SIBA_CC_PKG(id) \
|
||||
((id & SIBA_CC_PKGMASK) >> SIBA_CC_PKGSHIFT)
|
||||
#define SIBA_CC_NCORESMASK 0x0F000000
|
||||
#define SIBA_CC_NCORESSHIFT 24
|
||||
#define SIBA_CC_NCORES(id) \
|
||||
((id & SIBA_CC_NCORESMASK) >> SIBA_CC_NCORESSHIFT)
|
||||
#define SIBA_CC_CAPS 0x0004
|
||||
#define SIBA_CC_CAPS_PWCTL 0x00040000
|
||||
#define SIBA_CC_CAPS_PMU 0x10000000 /* PMU (rev >= 20) */
|
||||
#define SIBA_CC_CHIPCTL 0x0028 /* rev >= 11 */
|
||||
#define SIBA_CC_CHIPSTAT 0x002C /* rev >= 11 */
|
||||
#define SIBA_CC_BCAST_ADDR 0x0050 /* Broadcast Address */
|
||||
#define SIBA_CC_BCAST_DATA 0x0054 /* Broadcast Data */
|
||||
#define SIBA_CC_PLLONDELAY 0x00B0 /* Rev >= 4 only */
|
||||
#define SIBA_CC_FREFSELDELAY 0x00B4 /* Rev >= 4 only */
|
||||
#define SIBA_CC_CLKSLOW 0x00b8 /* 6 <= Rev <= 9 only */
|
||||
#define SIBA_CC_CLKSLOW_SRC 0x00000007
|
||||
#define SIBA_CC_CLKSLOW_SRC_CRYSTAL 0x00000001
|
||||
#define SIBA_CC_CLKSLOW_FSLOW 0x00000800
|
||||
#define SIBA_CC_CLKSLOW_IPLL 0x00001000
|
||||
#define SIBA_CC_CLKSLOW_ENXTAL 0x00002000
|
||||
#define SIBA_CC_CLKSYSCTL 0x00C0 /* Rev >= 3 only */
|
||||
#define SIBA_CC_CLKCTLSTATUS 0x01e0
|
||||
#define SIBA_CC_CLKCTLSTATUS_HT 0x00010000
|
||||
#define SIBA_CC_UART0 0x0300 /* offset of UART0 */
|
||||
#define SIBA_CC_UART1 0x0400 /* offset of UART1 */
|
||||
#define SIBA_CC_PMUCTL 0x0600 /* PMU control */
|
||||
#define SIBA_CC_PMUCTL_PLL_UPD 0x00000400
|
||||
#define SIBA_CC_PMUCTL_ILP 0xffff0000 /* mask */
|
||||
#define SIBA_CC_PMUCTL_NOILP 0x00000200
|
||||
#define SIBA_CC_PMUCTL_XF 0x0000007c /* crystal freq */
|
||||
#define SIBA_CC_PMUCTL_XF_VAL(id) ((id & 0x0000007c) >> 2)
|
||||
#define SIBA_CC_PMUCAPS 0x0604
|
||||
#define SIBA_CC_PMUCAPS_REV 0x000000ff
|
||||
#define SIBA_CC_PMU_MINRES 0x0618
|
||||
#define SIBA_CC_PMU_MAXRES 0x061c
|
||||
#define SIBA_CC_PMU_TABSEL 0x0620
|
||||
#define SIBA_CC_PMU_DEPMSK 0x0624
|
||||
#define SIBA_CC_PMU_UPDNTM 0x0628
|
||||
#define SIBA_CC_CHIPCTL_ADDR 0x0650
|
||||
#define SIBA_CC_CHIPCTL_DATA 0x0654
|
||||
#define SIBA_CC_REGCTL_ADDR 0x0658
|
||||
#define SIBA_CC_REGCTL_DATA 0x065c
|
||||
#define SIBA_CC_PLLCTL_ADDR 0x0660
|
||||
#define SIBA_CC_PLLCTL_DATA 0x0664
|
||||
|
||||
#define SIBA_CC_PMU0_PLL0 0
|
||||
#define SIBA_CC_PMU0_PLL0_PDIV_MSK 0x00000001
|
||||
#define SIBA_CC_PMU0_PLL0_PDIV_FREQ 25000
|
||||
#define SIBA_CC_PMU0_PLL1 1
|
||||
#define SIBA_CC_PMU0_PLL1_IMSK 0xf0000000
|
||||
#define SIBA_CC_PMU0_PLL1_FMSK 0x0fffff00
|
||||
#define SIBA_CC_PMU0_PLL1_STOPMOD 0x00000040
|
||||
#define SIBA_CC_PMU0_PLL2 2
|
||||
#define SIBA_CC_PMU0_PLL2_IMSKHI 0x0000000f
|
||||
#define SIBA_CC_PMU1_PLL0 0
|
||||
#define SIBA_CC_PMU1_PLL0_P1DIV 0x00f00000
|
||||
#define SIBA_CC_PMU1_PLL0_P2DIV 0x0f000000
|
||||
#define SIBA_CC_PMU1_PLL1 1
|
||||
#define SIBA_CC_PMU1_PLL2 2
|
||||
#define SIBA_CC_PMU1_PLL2_NDIVMODE 0x000e0000
|
||||
#define SIBA_CC_PMU1_PLL2_NDIVINT 0x1ff00000
|
||||
#define SIBA_CC_PMU1_PLL3 3
|
||||
#define SIBA_CC_PMU1_PLL3_NDIVFRAC 0x00ffffff
|
||||
#define SIBA_CC_PMU1_PLL4 4
|
||||
#define SIBA_CC_PMU1_PLL5 5
|
||||
#define SIBA_CC_PMU1_PLL5_CLKDRV 0xffffff00
|
||||
|
||||
#define SIBA_CC_PMU0_DEFAULT_XTALFREQ 20000
|
||||
#define SIBA_CC_PMU1_DEFAULT_FREQ 15360
|
||||
|
||||
#define SIBA_CC_PMU1_PLLTAB_ENTRY \
|
||||
{ \
|
||||
{ 12000, 1, 3, 22, 0x9, 0xffffef }, \
|
||||
{ 13000, 2, 1, 6, 0xb, 0x483483 }, \
|
||||
{ 14400, 3, 1, 10, 0xa, 0x1c71c7 }, \
|
||||
{ 15360, 4, 1, 5, 0xb, 0x755555 }, \
|
||||
{ 16200, 5, 1, 10, 0x5, 0x6e9e06 }, \
|
||||
{ 16800, 6, 1, 10, 0x5, 0x3cf3cf }, \
|
||||
{ 19200, 7, 1, 9, 0x5, 0x17b425 }, \
|
||||
{ 19800, 8, 1, 11, 0x4, 0xa57eb }, \
|
||||
{ 20000, 9, 1, 11, 0x4, 0 }, \
|
||||
{ 24000, 10, 3, 11, 0xa, 0 }, \
|
||||
{ 25000, 11, 5, 16, 0xb, 0 }, \
|
||||
{ 26000, 12, 1, 2, 0x10, 0xec4ec4 }, \
|
||||
{ 30000, 13, 3, 8, 0xb, 0 }, \
|
||||
{ 38400, 14, 1, 5, 0x4, 0x955555 }, \
|
||||
{ 40000, 15, 1, 2, 0xb, 0 } \
|
||||
}
|
||||
|
||||
#define SIBA_CC_PMU0_PLLTAB_ENTRY \
|
||||
{ \
|
||||
{ 12000, 1, 73, 349525, }, { 13000, 2, 67, 725937, }, \
|
||||
{ 14400, 3, 61, 116508, }, { 15360, 4, 57, 305834, }, \
|
||||
{ 16200, 5, 54, 336579, }, { 16800, 6, 52, 399457, }, \
|
||||
{ 19200, 7, 45, 873813, }, { 19800, 8, 44, 466033, }, \
|
||||
{ 20000, 9, 44, 0, }, { 25000, 10, 70, 419430, }, \
|
||||
{ 26000, 11, 67, 725937, }, { 30000, 12, 58, 699050, }, \
|
||||
{ 38400, 13, 45, 873813, }, { 40000, 14, 45, 0, }, \
|
||||
}
|
||||
|
||||
#define SIBA_CC_PMU_4312_PA_REF 2
|
||||
#define SIBA_CC_PMU_4325_BURST 1
|
||||
#define SIBA_CC_PMU_4325_CLBURST 3
|
||||
#define SIBA_CC_PMU_4325_LN 10
|
||||
#define SIBA_CC_PMU_4325_CRYSTAL 13
|
||||
#define SIBA_CC_PMU_4325_RX_PWR 15
|
||||
#define SIBA_CC_PMU_4325_TX_PWR 16
|
||||
#define SIBA_CC_PMU_4325_LOGEN_PWR 18
|
||||
#define SIBA_CC_PMU_4325_AFE_PWR 19
|
||||
#define SIBA_CC_PMU_4325_BBPLL_PWR 20
|
||||
#define SIBA_CC_PMU_4325_HT 21
|
||||
#define SIBA_CC_PMU_4328_EXT_SWITCH_PWM 0
|
||||
#define SIBA_CC_PMU_4328_BB_SWITCH_PWM 1
|
||||
#define SIBA_CC_PMU_4328_BB_SWITCH_BURST 2
|
||||
#define SIBA_CC_PMU_4328_BB_EXT_SWITCH_BURST 3
|
||||
#define SIBA_CC_PMU_4328_ILP_REQUEST 4
|
||||
#define SIBA_CC_PMU_4328_RADSWITCH_PWM 5 /* radio switch */
|
||||
#define SIBA_CC_PMU_4328_RADSWITCH_BURST 6
|
||||
#define SIBA_CC_PMU_4328_ROM_SWITCH 7
|
||||
#define SIBA_CC_PMU_4328_PA_REF 8
|
||||
#define SIBA_CC_PMU_4328_RADIO 9
|
||||
#define SIBA_CC_PMU_4328_AFE 10
|
||||
#define SIBA_CC_PMU_4328_PLL 11
|
||||
#define SIBA_CC_PMU_4328_BG_FILTBYP 12
|
||||
#define SIBA_CC_PMU_4328_TX_FILTBYP 13
|
||||
#define SIBA_CC_PMU_4328_RX_FILTBYP 14
|
||||
#define SIBA_CC_PMU_4328_CRYSTAL_PU 15
|
||||
#define SIBA_CC_PMU_4328_CRYSTAL_EN 16
|
||||
#define SIBA_CC_PMU_4328_BB_PLL_FILTBYP 17
|
||||
#define SIBA_CC_PMU_4328_RF_PLL_FILTBYP 18
|
||||
#define SIBA_CC_PMU_4328_BB_PLL_PU 19
|
||||
#define SIBA_CC_PMU_5354_PA_REF 8
|
||||
#define SIBA_CC_PMU_5354_BB_PLL_PU 19
|
||||
|
||||
#define SIBA_CC_PMU_4325_RES_UPDOWN \
|
||||
{ \
|
||||
{ SIBA_CC_PMU_4325_CRYSTAL, 0x1501 } \
|
||||
}
|
||||
|
||||
#define SIBA_CC_PMU_4325_RES_DEPEND \
|
||||
{ \
|
||||
{ SIBA_CC_PMU_4325_HT, SIBA_CC_PMU_DEP_ADD, \
|
||||
((1 << SIBA_CC_PMU_4325_RX_PWR) | \
|
||||
(1 << SIBA_CC_PMU_4325_TX_PWR) | \
|
||||
(1 << SIBA_CC_PMU_4325_LOGEN_PWR) | \
|
||||
(1 << SIBA_CC_PMU_4325_AFE_PWR)) } \
|
||||
}
|
||||
|
||||
#define SIBA_CC_PMU_4328_RES_UPDOWN \
|
||||
{ \
|
||||
{ SIBA_CC_PMU_4328_EXT_SWITCH_PWM, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_BB_SWITCH_PWM, 0x1f01 }, \
|
||||
{ SIBA_CC_PMU_4328_BB_SWITCH_BURST, 0x010f }, \
|
||||
{ SIBA_CC_PMU_4328_BB_EXT_SWITCH_BURST, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_ILP_REQUEST, 0x0202 }, \
|
||||
{ SIBA_CC_PMU_4328_RADSWITCH_PWM, 0x0f01 }, \
|
||||
{ SIBA_CC_PMU_4328_RADSWITCH_BURST, 0x0f01 }, \
|
||||
{ SIBA_CC_PMU_4328_ROM_SWITCH, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_PA_REF, 0x0f01 }, \
|
||||
{ SIBA_CC_PMU_4328_RADIO, 0x0f01 }, \
|
||||
{ SIBA_CC_PMU_4328_AFE, 0x0f01 }, \
|
||||
{ SIBA_CC_PMU_4328_PLL, 0x0f01 }, \
|
||||
{ SIBA_CC_PMU_4328_BG_FILTBYP, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_TX_FILTBYP, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_RX_FILTBYP, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_CRYSTAL_PU, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_CRYSTAL_EN, 0xa001 }, \
|
||||
{ SIBA_CC_PMU_4328_BB_PLL_FILTBYP, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_RF_PLL_FILTBYP, 0x0101 }, \
|
||||
{ SIBA_CC_PMU_4328_BB_PLL_PU, 0x0701 }, \
|
||||
}
|
||||
|
||||
#define SIBA_CC_PMU_4328_RES_DEPEND \
|
||||
{ \
|
||||
{ SIBA_CC_PMU_4328_ILP_REQUEST, SIBA_CC_PMU_DEP_SET, \
|
||||
((1 << SIBA_CC_PMU_4328_EXT_SWITCH_PWM) | \
|
||||
(1 << SIBA_CC_PMU_4328_BB_SWITCH_PWM)) }, \
|
||||
}
|
||||
|
||||
#define SIBA_CC_CHST_4325_PMUTOP_2B 0x00000200
|
||||
|
||||
#define SIBA_BAR0 0x80
|
||||
#define SIBA_IRQMASK 0x94
|
||||
#define SIBA_GPIO_IN 0xb0
|
||||
#define SIBA_GPIO_OUT 0xb4
|
||||
#define SIBA_GPIO_OUT_EN 0xb8
|
||||
#define SIBA_GPIO_CRYSTAL 0x40
|
||||
#define SIBA_GPIO_PLL 0x80
|
||||
|
||||
#define SIBA_REGWIN(x) \
|
||||
(SIBA_ENUM_START + ((x) * SIBA_CORE_LEN))
|
||||
#define SIBA_CORE_LEN 0x00001000 /* Size of cfg per core */
|
||||
#define SIBA_CFG_END 0x00010000 /* Upper bound of cfg space */
|
||||
#define SIBA_MAX_CORES (SIBA_CFG_END/SIBA_CORE_LEN) /* #max cores */
|
||||
#define SIBA_ENUM_START 0x18000000U
|
||||
#define SIBA_ENUM_END 0x18010000U
|
||||
|
||||
#define SIBA_DMA_TRANSLATION_MASK 0xc0000000
|
||||
|
||||
#define SIBA_PCI_DMA 0x40000000U
|
||||
#define SIBA_TPS 0x0f18
|
||||
#define SIBA_TPS_BPFLAG 0x0000003f
|
||||
#define SIBA_IAS 0x0f90 /* Initiator Agent State */
|
||||
#define SIBA_IAS_INBAND_ERR 0x00020000
|
||||
#define SIBA_IAS_TIMEOUT 0x00040000
|
||||
#define SIBA_INTR_MASK 0x0f94
|
||||
#define SIBA_TGSLOW 0x0f98
|
||||
#define SIBA_TGSLOW_RESET 0x00000001 /* target state low */
|
||||
#define SIBA_TGSLOW_REJECT_22 0x00000002
|
||||
#define SIBA_TGSLOW_REJECT_23 0x00000004
|
||||
#define SIBA_TGSLOW_CLOCK 0x00010000
|
||||
#define SIBA_TGSLOW_FGC 0x00020000
|
||||
#define SIBA_TGSHIGH 0x0f9c
|
||||
#define SIBA_TGSHIGH_SERR 0x00000001
|
||||
#define SIBA_TGSHIGH_BUSY 0x00000004
|
||||
#define SIBA_TGSHIGH_DMA64 0x10000000
|
||||
#define SIBA_IMCFGLO 0x0fa8
|
||||
#define SIBA_IMCFGLO_SERTO 0x00000007
|
||||
#define SIBA_IMCFGLO_REQTO 0x00000070
|
||||
#define SIBA_IDLOW 0x0ff8
|
||||
#define SIBA_IDLOW_SSBREV 0xf0000000
|
||||
#define SIBA_IDLOW_SSBREV_22 0x00000000
|
||||
#define SIBA_IDLOW_SSBREV_23 0x10000000
|
||||
#define SIBA_IDLOW_SSBREV_24 0x40000000
|
||||
#define SIBA_IDLOW_SSBREV_25 0x50000000
|
||||
#define SIBA_IDLOW_SSBREV_26 0x60000000
|
||||
#define SIBA_IDLOW_SSBREV_27 0x70000000
|
||||
#define SIBA_IDHIGH 0x0ffc
|
||||
#define SIBA_IDHIGH_CORECODEMASK 0x00008FF0 /* Core Code */
|
||||
#define SIBA_IDHIGH_CORECODE_SHIFT 4
|
||||
#define SIBA_IDHIGH_CORECODE(id) \
|
||||
((id & SIBA_IDHIGH_CORECODEMASK) >> SIBA_IDHIGH_CORECODE_SHIFT)
|
||||
/* Revision Code (low part) */
|
||||
#define SIBA_IDHIGH_REVLO 0x0000000f
|
||||
/* Revision Code (high part) */
|
||||
#define SIBA_IDHIGH_REVHI 0x00007000
|
||||
#define SIBA_IDHIGH_REVHI_SHIFT 8
|
||||
#define SIBA_IDHIGH_REV(id) \
|
||||
((id & SIBA_IDHIGH_REVLO) | ((id & SIBA_IDHIGH_REVHI) >> \
|
||||
SIBA_IDHIGH_REVHI_SHIFT))
|
||||
#define SIBA_IDHIGH_VENDORMASK 0xFFFF0000 /* Vendor Code */
|
||||
#define SIBA_IDHIGH_VENDOR_SHIFT 16
|
||||
#define SIBA_IDHIGH_VENDOR(id) \
|
||||
((id & SIBA_IDHIGH_VENDORMASK) >> SIBA_IDHIGH_VENDOR_SHIFT)
|
||||
|
||||
#define SIBA_SPROMSIZE_R123 64
|
||||
#define SIBA_SPROMSIZE_R4 220
|
||||
#define SIBA_SPROM_BASE 0x1000
|
||||
#define SIBA_SPROM_REV_CRC 0xff00
|
||||
|
||||
#define SIBA_SPROM1_MAC_80211BG 0x1048
|
||||
#define SIBA_SPROM1_MAC_ETH 0x104e
|
||||
#define SIBA_SPROM1_MAC_80211A 0x1054
|
||||
#define SIBA_SPROM1_ETHPHY 0x105a
|
||||
#define SIBA_SPROM1_ETHPHY_MII_ETH0 0x001f
|
||||
#define SIBA_SPROM1_ETHPHY_MII_ETH1 0x03e0
|
||||
#define SIBA_SPROM1_ETHPHY_MDIO_ETH0 (1 << 14)
|
||||
#define SIBA_SPROM1_ETHPHY_MDIO_ETH1 (1 << 15)
|
||||
#define SIBA_SPROM1_BOARDINFO 0x105c
|
||||
#define SIBA_SPROM1_BOARDINFO_BREV 0x00ff
|
||||
#define SIBA_SPROM1_BOARDINFO_CCODE 0x0f00
|
||||
#define SIBA_SPROM1_BOARDINFO_ANTBG 0x3000
|
||||
#define SIBA_SPROM1_BOARDINFO_ANTA 0xc000
|
||||
#define SIBA_SPROM1_PA0B0 0x105e
|
||||
#define SIBA_SPROM1_PA0B1 0x1060
|
||||
#define SIBA_SPROM1_PA0B2 0x1062
|
||||
#define SIBA_SPROM1_GPIOA 0x1064
|
||||
#define SIBA_SPROM1_GPIOA_P0 0x00ff
|
||||
#define SIBA_SPROM1_GPIOA_P1 0xff00
|
||||
#define SIBA_SPROM1_GPIOB 0x1066
|
||||
#define SIBA_SPROM1_GPIOB_P2 0x00ff
|
||||
#define SIBA_SPROM1_GPIOB_P3 0xff00
|
||||
#define SIBA_SPROM1_MAXPWR 0x1068
|
||||
#define SIBA_SPROM1_MAXPWR_BG 0x00ff
|
||||
#define SIBA_SPROM1_MAXPWR_A 0xff00
|
||||
#define SIBA_SPROM1_PA1B0 0x106a
|
||||
#define SIBA_SPROM1_PA1B1 0x106c
|
||||
#define SIBA_SPROM1_PA1B2 0x106e
|
||||
#define SIBA_SPROM1_TSSI 0x1070
|
||||
#define SIBA_SPROM1_TSSI_BG 0x00ff
|
||||
#define SIBA_SPROM1_TSSI_A 0xff00
|
||||
#define SIBA_SPROM1_BFLOW 0x1072
|
||||
#define SIBA_SPROM1_AGAIN 0x1074
|
||||
#define SIBA_SPROM1_AGAIN_BG 0x00ff
|
||||
#define SIBA_SPROM1_AGAIN_A 0xff00
|
||||
|
||||
#define SIBA_SPROM2_BFHIGH 0x1038
|
||||
|
||||
#define SIBA_SPROM3_MAC_80211BG 0x104a
|
||||
|
||||
#define SIBA_SPROM4_MAC_80211BG 0x104c
|
||||
#define SIBA_SPROM4_ETHPHY 0x105a
|
||||
#define SIBA_SPROM4_ETHPHY_ET0A 0x001f
|
||||
#define SIBA_SPROM4_ETHPHY_ET1A 0x03e0
|
||||
#define SIBA_SPROM4_CCODE 0x1052
|
||||
#define SIBA_SPROM4_ANTAVAIL 0x105d
|
||||
#define SIBA_SPROM4_ANTAVAIL_A 0x00ff
|
||||
#define SIBA_SPROM4_ANTAVAIL_BG 0xff00
|
||||
#define SIBA_SPROM4_BFLOW 0x1044
|
||||
#define SIBA_SPROM4_AGAIN01 0x105e
|
||||
#define SIBA_SPROM4_AGAIN0 0x00ff
|
||||
#define SIBA_SPROM4_AGAIN1 0xff00
|
||||
#define SIBA_SPROM4_AGAIN23 0x1060
|
||||
#define SIBA_SPROM4_AGAIN2 0x00ff
|
||||
#define SIBA_SPROM4_AGAIN3 0xff00
|
||||
#define SIBA_SPROM4_TXPID2G01 0x0062
|
||||
#define SIBA_SPROM4_TXPID2G0 0x00ff
|
||||
#define SIBA_SPROM4_TXPID2G1 0xff00
|
||||
#define SIBA_SPROM4_TXPID2G23 0x0064
|
||||
#define SIBA_SPROM4_TXPID2G2 0x00ff
|
||||
#define SIBA_SPROM4_TXPID2G3 0xff00
|
||||
#define SIBA_SPROM4_TXPID5G01 0x0066
|
||||
#define SIBA_SPROM4_TXPID5G0 0x00ff
|
||||
#define SIBA_SPROM4_TXPID5G1 0xff00
|
||||
#define SIBA_SPROM4_TXPID5G23 0x0068
|
||||
#define SIBA_SPROM4_TXPID5G2 0x00ff
|
||||
#define SIBA_SPROM4_TXPID5G3 0xff00
|
||||
#define SIBA_SPROM4_TXPID5GL01 0x006a
|
||||
#define SIBA_SPROM4_TXPID5GL0 0x00ff
|
||||
#define SIBA_SPROM4_TXPID5GL1 0xff00
|
||||
#define SIBA_SPROM4_TXPID5GL23 0x006c
|
||||
#define SIBA_SPROM4_TXPID5GL2 0x00ff
|
||||
#define SIBA_SPROM4_TXPID5GL3 0xff00
|
||||
#define SIBA_SPROM4_TXPID5GH01 0x006e
|
||||
#define SIBA_SPROM4_TXPID5GH0 0x00ff
|
||||
#define SIBA_SPROM4_TXPID5GH1 0xff00
|
||||
#define SIBA_SPROM4_TXPID5GH23 0x0070
|
||||
#define SIBA_SPROM4_TXPID5GH2 0x00ff
|
||||
#define SIBA_SPROM4_TXPID5GH3 0xff00
|
||||
#define SIBA_SPROM4_BFHIGH 0x1046
|
||||
#define SIBA_SPROM4_MAXP_BG 0x1080
|
||||
#define SIBA_SPROM4_MAXP_BG_MASK 0x00ff
|
||||
#define SIBA_SPROM4_TSSI_BG 0xff00
|
||||
#define SIBA_SPROM4_MAXP_A 0x108a
|
||||
#define SIBA_SPROM4_MAXP_A_MASK 0x00ff
|
||||
#define SIBA_SPROM4_TSSI_A 0xff00
|
||||
#define SIBA_SPROM4_GPIOA 0x1056
|
||||
#define SIBA_SPROM4_GPIOA_P0 0x00ff
|
||||
#define SIBA_SPROM4_GPIOA_P1 0xff00
|
||||
#define SIBA_SPROM4_GPIOB 0x1058
|
||||
#define SIBA_SPROM4_GPIOB_P2 0x00ff
|
||||
#define SIBA_SPROM4_GPIOB_P3 0xff00
|
||||
|
||||
/* The following four blocks share the same structure */
|
||||
#define SIBA_SPROM4_PWR_INFO_CORE0 0x1080
|
||||
#define SIBA_SPROM4_PWR_INFO_CORE1 0x10AE
|
||||
#define SIBA_SPROM4_PWR_INFO_CORE2 0x10DC
|
||||
#define SIBA_SPROM4_PWR_INFO_CORE3 0x110A
|
||||
|
||||
#define SIBA_SPROM4_2G_MAXP_ITSSI 0x00 /* 2 GHz ITSSI and 2 GHz Max Power */
|
||||
#define SIBA_SPROM4_2G_MAXP 0x00FF
|
||||
#define SIBA_SPROM4_2G_ITSSI 0xFF00
|
||||
#define SIBA_SPROM4_2G_ITSSI_SHIFT 8
|
||||
#define SIBA_SPROM4_2G_PA_0 0x02 /* 2 GHz power amp */
|
||||
#define SIBA_SPROM4_2G_PA_1 0x04
|
||||
#define SIBA_SPROM4_2G_PA_2 0x06
|
||||
#define SIBA_SPROM4_2G_PA_3 0x08
|
||||
#define SIBA_SPROM4_5G_MAXP_ITSSI 0x0A /* 5 GHz ITSSI and 5.3 GHz Max Power */
|
||||
#define SIBA_SPROM4_5G_MAXP 0x00FF
|
||||
#define SIBA_SPROM4_5G_ITSSI 0xFF00
|
||||
#define SIBA_SPROM4_5G_ITSSI_SHIFT 8
|
||||
#define SIBA_SPROM4_5GHL_MAXP 0x0C /* 5.2 GHz and 5.8 GHz Max Power */
|
||||
#define SIBA_SPROM4_5GH_MAXP 0x00FF
|
||||
#define SIBA_SPROM4_5GL_MAXP 0xFF00
|
||||
#define SIBA_SPROM4_5GL_MAXP_SHIFT 8
|
||||
#define SIBA_SPROM4_5G_PA_0 0x0E /* 5.3 GHz power amp */
|
||||
#define SIBA_SPROM4_5G_PA_1 0x10
|
||||
#define SIBA_SPROM4_5G_PA_2 0x12
|
||||
#define SIBA_SPROM4_5G_PA_3 0x14
|
||||
#define SIBA_SPROM4_5GL_PA_0 0x16 /* 5.2 GHz power amp */
|
||||
#define SIBA_SPROM4_5GL_PA_1 0x18
|
||||
#define SIBA_SPROM4_5GL_PA_2 0x1A
|
||||
#define SIBA_SPROM4_5GL_PA_3 0x1C
|
||||
#define SIBA_SPROM4_5GH_PA_0 0x1E /* 5.8 GHz power amp */
|
||||
#define SIBA_SPROM4_5GH_PA_1 0x20
|
||||
#define SIBA_SPROM4_5GH_PA_2 0x22
|
||||
#define SIBA_SPROM4_5GH_PA_3 0x24
|
||||
|
||||
#define SIBA_SPROM5_BFLOW 0x104a
|
||||
#define SIBA_SPROM5_BFHIGH 0x104c
|
||||
#define SIBA_SPROM5_MAC_80211BG 0x1052
|
||||
#define SIBA_SPROM5_CCODE 0x1044
|
||||
#define SIBA_SPROM5_GPIOA 0x1076
|
||||
#define SIBA_SPROM5_GPIOA_P0 0x00ff
|
||||
#define SIBA_SPROM5_GPIOA_P1 0xff00
|
||||
#define SIBA_SPROM5_GPIOB 0x1078
|
||||
#define SIBA_SPROM5_GPIOB_P2 0x00ff
|
||||
#define SIBA_SPROM5_GPIOB_P3 0xff00
|
||||
|
||||
#define SIBA_SPROM8_BFLOW 0x1084
|
||||
#define SIBA_SPROM8_BFHIGH 0x1086
|
||||
#define SIBA_SPROM8_BFL2LO 0x1088
|
||||
#define SIBA_SPROM8_BFL2HI 0x108a
|
||||
#define SIBA_SPROM8_MAC_80211BG 0x108c
|
||||
#define SIBA_SPROM8_CCODE 0x1092
|
||||
#define SIBA_SPROM8_ANTAVAIL 0x109c
|
||||
#define SIBA_SPROM8_ANTAVAIL_A 0xff00
|
||||
#define SIBA_SPROM8_ANTAVAIL_BG 0x00ff
|
||||
#define SIBA_SPROM8_AGAIN01 0x109e
|
||||
#define SIBA_SPROM8_AGAIN0 0x00ff
|
||||
#define SIBA_SPROM8_AGAIN1 0xff00
|
||||
#define SIBA_SPROM8_GPIOA 0x1096
|
||||
#define SIBA_SPROM8_GPIOA_P0 0x00ff
|
||||
#define SIBA_SPROM8_GPIOA_P1 0xff00
|
||||
#define SIBA_SPROM8_GPIOB 0x1098
|
||||
#define SIBA_SPROM8_GPIOB_P2 0x00ff
|
||||
#define SIBA_SPROM8_GPIOB_P3 0xff00
|
||||
#define SIBA_SPROM8_AGAIN23 0x10a0
|
||||
#define SIBA_SPROM8_AGAIN2 0x00ff
|
||||
#define SIBA_SPROM8_AGAIN3 0xff00
|
||||
#define SIBA_SPROM8_RSSIPARM2G 0x10a4
|
||||
#define SIBA_SPROM8_RSSISMF2G 0x000f
|
||||
#define SIBA_SPROM8_RSSISMC2G 0x00f0
|
||||
#define SIBA_SPROM8_RSSISAV2G 0x0700 /* BITMASK */
|
||||
#define SIBA_SPROM8_BXA2G 0x1800 /* BITMASK */
|
||||
#define SIBA_SPROM8_RSSIPARM5G 0x10a6
|
||||
#define SIBA_SPROM8_RSSISMF5G 0x000f
|
||||
#define SIBA_SPROM8_RSSISMC5G 0x00f0
|
||||
#define SIBA_SPROM8_RSSISAV5G 0x0700 /* BITMASK */
|
||||
#define SIBA_SPROM8_BXA5G 0x1800 /* BITMASK */
|
||||
#define SIBA_SPROM8_TRI25G 0x10a8
|
||||
#define SIBA_SPROM8_TRI2G 0x00ff
|
||||
#define SIBA_SPROM8_TRI5G 0xff00
|
||||
#define SIBA_SPROM8_TRI5GHL 0x10aa
|
||||
#define SIBA_SPROM8_TRI5GL 0x00ff
|
||||
#define SIBA_SPROM8_TRI5GH 0xff00
|
||||
#define SIBA_SPROM8_RXPO 0x10ac
|
||||
#define SIBA_SPROM8_RXPO2G 0x00ff
|
||||
#define SIBA_SPROM8_RXPO5G 0xff00
|
||||
|
||||
/* The FEM blocks share the same structure */
|
||||
#define SIBA_SPROM8_FEM2G 0x10ae
|
||||
#define SIBA_SPROM8_FEM5G 0x10b0
|
||||
#define SIBA_SROM8_FEM_TSSIPOS 0x0001
|
||||
#define SIBA_SROM8_FEM_EXTPA_GAIN 0x0006
|
||||
#define SIBA_SROM8_FEM_PDET_RANGE 0x00F8
|
||||
#define SIBA_SROM8_FEM_TR_ISO 0x0700
|
||||
#define SIBA_SROM8_FEM_ANTSWLUT 0xF800
|
||||
|
||||
#define SIBA_SPROM8_MAXP_BG 0x10c0
|
||||
#define SIBA_SPROM8_MAXP_BG_MASK 0x00ff
|
||||
#define SIBA_SPROM8_TSSI_BG 0xff00
|
||||
#define SIBA_SPROM8_PA0B0 0x10c2
|
||||
#define SIBA_SPROM8_PA0B1 0x10c4
|
||||
#define SIBA_SPROM8_PA0B2 0x10c6
|
||||
#define SIBA_SPROM8_MAXP_A 0x10c8
|
||||
#define SIBA_SPROM8_MAXP_A_MASK 0x00ff
|
||||
#define SIBA_SPROM8_TSSI_A 0xff00
|
||||
#define SIBA_SPROM8_MAXP_AHL 0x10ca
|
||||
#define SIBA_SPROM8_MAXP_AH_MASK 0x00ff
|
||||
#define SIBA_SPROM8_MAXP_AL_MASK 0xff00
|
||||
#define SIBA_SPROM8_PA1B0 0x10cc
|
||||
#define SIBA_SPROM8_PA1B1 0x10ce
|
||||
#define SIBA_SPROM8_PA1B2 0x10d0
|
||||
#define SIBA_SPROM8_PA1LOB0 0x10d2
|
||||
#define SIBA_SPROM8_PA1LOB1 0x10d4
|
||||
#define SIBA_SPROM8_PA1LOB2 0x10d6
|
||||
#define SIBA_SPROM8_PA1HIB0 0x10d8
|
||||
#define SIBA_SPROM8_PA1HIB1 0x10da
|
||||
#define SIBA_SPROM8_PA1HIB2 0x10dc
|
||||
#define SIBA_SPROM8_CCK2GPO 0x1140
|
||||
#define SIBA_SPROM8_OFDM2GPO 0x1142
|
||||
#define SIBA_SPROM8_OFDM5GPO 0x1146
|
||||
#define SIBA_SPROM8_OFDM5GLPO 0x114a
|
||||
#define SIBA_SPROM8_OFDM5GHPO 0x114e
|
||||
#define SIBA_SPROM8_CDDPO 0x0192
|
||||
#define SIBA_SPROM8_STBCPO 0x0194
|
||||
#define SIBA_SPROM8_BW40PO 0x0196
|
||||
#define SIBA_SPROM8_BWDUPPO 0x0198
|
||||
|
||||
/* There are 4 blocks with power info sharing the same layout */
|
||||
#define SIBA_SROM8_PWR_INFO_CORE0 0x10C0
|
||||
#define SIBA_SROM8_PWR_INFO_CORE1 0x10E0
|
||||
#define SIBA_SROM8_PWR_INFO_CORE2 0x1100
|
||||
#define SIBA_SROM8_PWR_INFO_CORE3 0x1120
|
||||
|
||||
#define SIBA_SROM8_2G_MAXP_ITSSI 0x00
|
||||
#define SIBA_SPROM8_2G_MAXP 0x00FF
|
||||
#define SIBA_SPROM8_2G_ITSSI 0xFF00
|
||||
#define SIBA_SPROM8_2G_ITSSI_SHIFT 8
|
||||
#define SIBA_SROM8_2G_PA_0 0x02 /* 2GHz power amp settings */
|
||||
#define SIBA_SROM8_2G_PA_1 0x04
|
||||
#define SIBA_SROM8_2G_PA_2 0x06
|
||||
#define SIBA_SROM8_5G_MAXP_ITSSI 0x08 /* 5GHz ITSSI and 5.3GHz Max Power */
|
||||
#define SIBA_SPROM8_5G_MAXP 0x00FF
|
||||
#define SIBA_SPROM8_5G_ITSSI 0xFF00
|
||||
#define SIBA_SPROM8_5G_ITSSI_SHIFT 8
|
||||
#define SIBA_SPROM8_5GHL_MAXP 0x0A /* 5.2GHz and 5.8GHz Max Power */
|
||||
#define SIBA_SPROM8_5GH_MAXP 0x00FF
|
||||
#define SIBA_SPROM8_5GL_MAXP 0xFF00
|
||||
#define SIBA_SPROM8_5GL_MAXP_SHIFT 8
|
||||
#define SIBA_SROM8_5G_PA_0 0x0C /* 5.3GHz power amp settings */
|
||||
#define SIBA_SROM8_5G_PA_1 0x0E
|
||||
#define SIBA_SROM8_5G_PA_2 0x10
|
||||
#define SIBA_SROM8_5GL_PA_0 0x12 /* 5.2GHz power amp settings */
|
||||
#define SIBA_SROM8_5GL_PA_1 0x14
|
||||
#define SIBA_SROM8_5GL_PA_2 0x16
|
||||
#define SIBA_SROM8_5GH_PA_0 0x18 /* 5.8GHz power amp settings */
|
||||
#define SIBA_SROM8_5GH_PA_1 0x1A
|
||||
#define SIBA_SROM8_5GH_PA_2 0x1C
|
||||
|
||||
#define SIBA_BOARDVENDOR_DELL 0x1028
|
||||
#define SIBA_BOARDVENDOR_BCM 0x14e4
|
||||
#define SIBA_BOARD_BCM4309G 0x0421
|
||||
#define SIBA_BOARD_MP4318 0x044a
|
||||
#define SIBA_BOARD_BU4306 0x0416
|
||||
#define SIBA_BOARD_BU4309 0x040a
|
||||
#define SIBA_BOARD_BCM4321 0x046d
|
||||
|
||||
#define SIBA_PCICORE_BCAST_ADDR SIBA_CC_BCAST_ADDR
|
||||
#define SIBA_PCICORE_BCAST_DATA SIBA_CC_BCAST_DATA
|
||||
#define SIBA_PCICORE_SBTOPCI0 0x0100
|
||||
#define SIBA_PCICORE_SBTOPCI1 0x0104
|
||||
#define SIBA_PCICORE_SBTOPCI2 0x0108
|
||||
#define SIBA_PCICORE_MDIO_CTL 0x0128
|
||||
#define SIBA_PCICORE_MDIO_DATA 0x012c
|
||||
#define SIBA_PCICORE_SBTOPCI_PREF 0x00000004
|
||||
#define SIBA_PCICORE_SBTOPCI_BURST 0x00000008
|
||||
#define SIBA_PCICORE_SBTOPCI_MRM 0x00000020
|
||||
|
||||
#define SIBA_CHIPPACK_BCM4712S 1 /* Small 200pin 4712 */
|
||||
|
||||
#endif /* _SIBA_SIBAREG_H_ */
|
@ -1,676 +0,0 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2007 Bruce M. Simpson.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _SIBA_SIBAVAR_H_
|
||||
#define _SIBA_SIBAVAR_H_
|
||||
|
||||
#include <sys/rman.h>
|
||||
|
||||
struct siba_softc;
|
||||
struct siba_dev_softc;
|
||||
|
||||
enum siba_type {
|
||||
SIBA_TYPE_SSB,
|
||||
SIBA_TYPE_PCI,
|
||||
SIBA_TYPE_PCMCIA,
|
||||
};
|
||||
|
||||
enum siba_device_ivars {
|
||||
SIBA_IVAR_VENDOR,
|
||||
SIBA_IVAR_DEVICE,
|
||||
SIBA_IVAR_REVID,
|
||||
SIBA_IVAR_CORE_INDEX,
|
||||
SIBA_IVAR_PCI_VENDOR,
|
||||
SIBA_IVAR_PCI_DEVICE,
|
||||
SIBA_IVAR_PCI_SUBVENDOR,
|
||||
SIBA_IVAR_PCI_SUBDEVICE,
|
||||
SIBA_IVAR_PCI_REVID,
|
||||
SIBA_IVAR_CHIPID,
|
||||
SIBA_IVAR_CHIPREV,
|
||||
SIBA_IVAR_CHIPPKG,
|
||||
SIBA_IVAR_TYPE,
|
||||
SIBA_IVAR_CC_PMUFREQ,
|
||||
SIBA_IVAR_CC_CAPS,
|
||||
SIBA_IVAR_CC_POWERDELAY,
|
||||
SIBA_IVAR_PCICORE_REVID
|
||||
};
|
||||
|
||||
#define SIBA_ACCESSOR(var, ivar, type) \
|
||||
__BUS_ACCESSOR(siba, var, SIBA, ivar, type)
|
||||
|
||||
SIBA_ACCESSOR(vendor, VENDOR, uint16_t)
|
||||
SIBA_ACCESSOR(device, DEVICE, uint16_t)
|
||||
SIBA_ACCESSOR(revid, REVID, uint8_t)
|
||||
SIBA_ACCESSOR(core_index, CORE_INDEX, uint8_t)
|
||||
SIBA_ACCESSOR(pci_vendor, PCI_VENDOR, uint16_t)
|
||||
SIBA_ACCESSOR(pci_device, PCI_DEVICE, uint16_t)
|
||||
SIBA_ACCESSOR(pci_subvendor, PCI_SUBVENDOR, uint16_t)
|
||||
SIBA_ACCESSOR(pci_subdevice, PCI_SUBDEVICE, uint16_t)
|
||||
SIBA_ACCESSOR(pci_revid, PCI_REVID, uint8_t)
|
||||
SIBA_ACCESSOR(chipid, CHIPID, uint16_t)
|
||||
SIBA_ACCESSOR(chiprev, CHIPREV, uint16_t)
|
||||
SIBA_ACCESSOR(chippkg, CHIPPKG, uint8_t)
|
||||
SIBA_ACCESSOR(type, TYPE, enum siba_type)
|
||||
SIBA_ACCESSOR(cc_pmufreq, CC_PMUFREQ, uint32_t)
|
||||
SIBA_ACCESSOR(cc_caps, CC_CAPS, uint32_t)
|
||||
SIBA_ACCESSOR(cc_powerdelay, CC_POWERDELAY, uint16_t)
|
||||
SIBA_ACCESSOR(pcicore_revid, PCICORE_REVID, uint8_t)
|
||||
|
||||
#undef SIBA_ACCESSOR
|
||||
|
||||
/* XXX just for SPROM1? */
|
||||
enum {
|
||||
SIBA_CCODE_WORLD,
|
||||
SIBA_CCODE_THAILAND,
|
||||
SIBA_CCODE_ISRAEL,
|
||||
SIBA_CCODE_JORDAN,
|
||||
SIBA_CCODE_CHINA,
|
||||
SIBA_CCODE_JAPAN,
|
||||
SIBA_CCODE_USA_CANADA_ANZ,
|
||||
SIBA_CCODE_EUROPE,
|
||||
SIBA_CCODE_USA_LOW,
|
||||
SIBA_CCODE_JAPAN_HIGH,
|
||||
SIBA_CCODE_ALL,
|
||||
SIBA_CCODE_NONE,
|
||||
};
|
||||
|
||||
#define siba_mips_read_2(sc, core, reg) \
|
||||
bus_space_read_2((sc)->siba_mem_bt, (sc)->siba_mem_bh, \
|
||||
(core * SIBA_CORE_LEN) + (reg))
|
||||
|
||||
#define siba_mips_read_4(sc, core, reg) \
|
||||
bus_space_read_4((sc)->siba_mem_bt, (sc)->siba_mem_bh, \
|
||||
(core * SIBA_CORE_LEN) + (reg))
|
||||
|
||||
#define siba_mips_write_2(sc, core, reg, val) \
|
||||
bus_space_write_2((sc)->siba_mem_bt, (sc)->siba_mem_bh, \
|
||||
(core * SIBA_CORE_LEN) + (reg), (val))
|
||||
|
||||
#define siba_mips_write_4(sc, core, reg, val) \
|
||||
bus_space_write_4((sc)->siba_mem_bt, (sc)->siba_mem_bh, \
|
||||
(core * SIBA_CORE_LEN) + (reg), (val))
|
||||
|
||||
#define SIBA_READ_4(siba, reg) \
|
||||
bus_space_read_4((siba)->siba_mem_bt, (siba)->siba_mem_bh, (reg))
|
||||
#define SIBA_READ_2(siba, reg) \
|
||||
bus_space_read_2((siba)->siba_mem_bt, (siba)->siba_mem_bh, (reg))
|
||||
#define SIBA_READ_MULTI_1(siba, reg, addr, count) \
|
||||
bus_space_read_multi_1((siba)->siba_mem_bt, (siba)->siba_mem_bh,\
|
||||
(reg), (addr), (count))
|
||||
#define SIBA_READ_MULTI_2(siba, reg, addr, count) \
|
||||
bus_space_read_multi_2((siba)->siba_mem_bt, (siba)->siba_mem_bh,\
|
||||
(reg), (addr), (count))
|
||||
#define SIBA_READ_MULTI_4(siba, reg, addr, count) \
|
||||
bus_space_read_multi_4((siba)->siba_mem_bt, (siba)->siba_mem_bh,\
|
||||
(reg), (addr), (count))
|
||||
|
||||
#define SIBA_WRITE_4(siba, reg, val) \
|
||||
bus_space_write_4((siba)->siba_mem_bt, (siba)->siba_mem_bh, \
|
||||
(reg), (val))
|
||||
#define SIBA_WRITE_2(siba, reg, val) \
|
||||
bus_space_write_2((siba)->siba_mem_bt, (siba)->siba_mem_bh, \
|
||||
(reg), (val))
|
||||
#define SIBA_WRITE_MULTI_1(siba, reg, addr, count) \
|
||||
bus_space_write_multi_1((siba)->siba_mem_bt, (siba)->siba_mem_bh,\
|
||||
(reg), (addr), (count))
|
||||
#define SIBA_WRITE_MULTI_2(siba, reg, addr, count) \
|
||||
bus_space_write_multi_2((siba)->siba_mem_bt, (siba)->siba_mem_bh,\
|
||||
(reg), (addr), (count))
|
||||
#define SIBA_WRITE_MULTI_4(siba, reg, addr, count) \
|
||||
bus_space_write_multi_4((siba)->siba_mem_bt, (siba)->siba_mem_bh,\
|
||||
(reg), (addr), (count))
|
||||
|
||||
#define SIBA_BARRIER(siba, flags) \
|
||||
bus_space_barrier((siba)->siba_mem_bt, (siba)->siba_mem_bh, (0),\
|
||||
(0), (flags))
|
||||
|
||||
#define SIBA_SETBITS_4(siba, reg, bits) \
|
||||
SIBA_WRITE_4((siba), (reg), SIBA_READ_4((siba), (reg)) | (bits))
|
||||
#define SIBA_SETBITS_2(siba, reg, bits) \
|
||||
SIBA_WRITE_2((siba), (reg), SIBA_READ_2((siba), (reg)) | (bits))
|
||||
|
||||
#define SIBA_FILT_SETBITS_4(siba, reg, filt, bits) \
|
||||
SIBA_WRITE_4((siba), (reg), (SIBA_READ_4((siba), \
|
||||
(reg)) & (filt)) | (bits))
|
||||
#define SIBA_FILT_SETBITS_2(siba, reg, filt, bits) \
|
||||
SIBA_WRITE_2((siba), (reg), (SIBA_READ_2((siba), \
|
||||
(reg)) & (filt)) | (bits))
|
||||
|
||||
#define SIBA_CLRBITS_4(siba, reg, bits) \
|
||||
SIBA_WRITE_4((siba), (reg), SIBA_READ_4((siba), (reg)) & ~(bits))
|
||||
#define SIBA_CLRBITS_2(siba, reg, bits) \
|
||||
SIBA_WRITE_2((siba), (reg), SIBA_READ_2((siba), (reg)) & ~(bits))
|
||||
|
||||
#define SIBA_CC_READ32(scc, offset) \
|
||||
siba_read_4_sub((scc)->scc_dev, offset)
|
||||
#define SIBA_CC_WRITE32(scc, offset, val) \
|
||||
siba_write_4_sub((scc)->scc_dev, offset, val)
|
||||
#define SIBA_CC_MASK32(scc, offset, mask) \
|
||||
SIBA_CC_WRITE32(scc, offset, SIBA_CC_READ32(scc, offset) & (mask))
|
||||
#define SIBA_CC_SET32(scc, offset, set) \
|
||||
SIBA_CC_WRITE32(scc, offset, SIBA_CC_READ32(scc, offset) | (set))
|
||||
#define SIBA_CC_MASKSET32(scc, offset, mask, set) \
|
||||
SIBA_CC_WRITE32(scc, offset, \
|
||||
(SIBA_CC_READ32(scc, offset) & (mask)) | (set))
|
||||
|
||||
enum siba_clock {
|
||||
SIBA_CLOCK_DYNAMIC,
|
||||
SIBA_CLOCK_SLOW,
|
||||
SIBA_CLOCK_FAST,
|
||||
};
|
||||
|
||||
enum siba_clksrc {
|
||||
SIBA_CC_CLKSRC_PCI,
|
||||
SIBA_CC_CLKSRC_CRYSTAL,
|
||||
SIBA_CC_CLKSRC_LOWPW,
|
||||
};
|
||||
|
||||
struct siba_cc_pmu0_plltab {
|
||||
uint16_t freq; /* in kHz.*/
|
||||
uint8_t xf; /* crystal frequency */
|
||||
uint8_t wb_int;
|
||||
uint32_t wb_frac;
|
||||
};
|
||||
|
||||
struct siba_cc_pmu1_plltab {
|
||||
uint16_t freq;
|
||||
uint8_t xf;
|
||||
uint8_t p1div;
|
||||
uint8_t p2div;
|
||||
uint8_t ndiv_int;
|
||||
uint32_t ndiv_frac;
|
||||
};
|
||||
|
||||
struct siba_cc_pmu_res_updown {
|
||||
uint8_t res;
|
||||
uint16_t updown;
|
||||
};
|
||||
|
||||
#define SIBA_CC_PMU_DEP_SET 1
|
||||
#define SIBA_CC_PMU_DEP_ADD 2
|
||||
#define SIBA_CC_PMU_DEP_REMOVE 3
|
||||
|
||||
struct siba_cc_pmu_res_depend {
|
||||
uint8_t res;
|
||||
uint8_t task;
|
||||
uint32_t depend;
|
||||
};
|
||||
|
||||
enum siba_sprom_vars {
|
||||
SIBA_SPROMVAR_REV,
|
||||
SIBA_SPROMVAR_MAC_80211BG,
|
||||
SIBA_SPROMVAR_MAC_ETH,
|
||||
SIBA_SPROMVAR_MAC_80211A,
|
||||
SIBA_SPROMVAR_MII_ETH0,
|
||||
SIBA_SPROMVAR_MII_ETH1,
|
||||
SIBA_SPROMVAR_MDIO_ETH0,
|
||||
SIBA_SPROMVAR_MDIO_ETH1,
|
||||
SIBA_SPROMVAR_BREV,
|
||||
SIBA_SPROMVAR_CCODE,
|
||||
SIBA_SPROMVAR_ANT_A,
|
||||
SIBA_SPROMVAR_ANT_BG,
|
||||
SIBA_SPROMVAR_PA0B0,
|
||||
SIBA_SPROMVAR_PA0B1,
|
||||
SIBA_SPROMVAR_PA0B2,
|
||||
SIBA_SPROMVAR_PA1B0,
|
||||
SIBA_SPROMVAR_PA1B1,
|
||||
SIBA_SPROMVAR_PA1B2,
|
||||
SIBA_SPROMVAR_PA1LOB0,
|
||||
SIBA_SPROMVAR_PA1LOB1,
|
||||
SIBA_SPROMVAR_PA1LOB2,
|
||||
SIBA_SPROMVAR_PA1HIB0,
|
||||
SIBA_SPROMVAR_PA1HIB1,
|
||||
SIBA_SPROMVAR_PA1HIB2,
|
||||
SIBA_SPROMVAR_GPIO0,
|
||||
SIBA_SPROMVAR_GPIO1,
|
||||
SIBA_SPROMVAR_GPIO2,
|
||||
SIBA_SPROMVAR_GPIO3,
|
||||
SIBA_SPROMVAR_MAXPWR_AL,
|
||||
SIBA_SPROMVAR_MAXPWR_A,
|
||||
SIBA_SPROMVAR_MAXPWR_AH,
|
||||
SIBA_SPROMVAR_MAXPWR_BG,
|
||||
SIBA_SPROMVAR_RXPO2G,
|
||||
SIBA_SPROMVAR_RXPO5G,
|
||||
SIBA_SPROMVAR_TSSI_A,
|
||||
SIBA_SPROMVAR_TSSI_BG,
|
||||
SIBA_SPROMVAR_TRI2G,
|
||||
SIBA_SPROMVAR_TRI5GL,
|
||||
SIBA_SPROMVAR_TRI5G,
|
||||
SIBA_SPROMVAR_TRI5GH,
|
||||
SIBA_SPROMVAR_RSSISAV2G,
|
||||
SIBA_SPROMVAR_RSSISMC2G,
|
||||
SIBA_SPROMVAR_RSSISMF2G,
|
||||
SIBA_SPROMVAR_BXA2G,
|
||||
SIBA_SPROMVAR_RSSISAV5G,
|
||||
SIBA_SPROMVAR_RSSISMC5G,
|
||||
SIBA_SPROMVAR_RSSISMF5G,
|
||||
SIBA_SPROMVAR_BXA5G,
|
||||
SIBA_SPROMVAR_CCK2GPO,
|
||||
SIBA_SPROMVAR_OFDM2GPO,
|
||||
SIBA_SPROMVAR_OFDM5GLPO,
|
||||
SIBA_SPROMVAR_OFDM5GPO,
|
||||
SIBA_SPROMVAR_OFDM5GHPO,
|
||||
SIBA_SPROMVAR_BF_LO,
|
||||
SIBA_SPROMVAR_BF_HI,
|
||||
SIBA_SPROMVAR_BF2_LO,
|
||||
SIBA_SPROMVAR_BF2_HI,
|
||||
SIBA_SPROMVAR_FEM_2GHZ_TSSIPOS,
|
||||
SIBA_SPROMVAR_FEM_2GHZ_EXTPAGAIN,
|
||||
SIBA_SPROMVAR_FEM_2GHZ_PDET_RANGE,
|
||||
SIBA_SPROMVAR_FEM_2GHZ_TR_ISO,
|
||||
SIBA_SPROMVAR_FEM_2GHZ_ANTSWLUT,
|
||||
SIBA_SPROMVAR_FEM_5GHZ_TSSIPOS,
|
||||
SIBA_SPROMVAR_FEM_5GHZ_EXTPAGAIN,
|
||||
SIBA_SPROMVAR_FEM_5GHZ_PDET_RANGE,
|
||||
SIBA_SPROMVAR_FEM_5GHZ_TR_ISO,
|
||||
SIBA_SPROMVAR_FEM_5GHZ_ANTSWLUT,
|
||||
SIBA_SPROMVAR_TXPID_2G_0,
|
||||
SIBA_SPROMVAR_TXPID_2G_1,
|
||||
SIBA_SPROMVAR_TXPID_2G_2,
|
||||
SIBA_SPROMVAR_TXPID_2G_3,
|
||||
SIBA_SPROMVAR_TXPID_5GL_0,
|
||||
SIBA_SPROMVAR_TXPID_5GL_1,
|
||||
SIBA_SPROMVAR_TXPID_5GL_2,
|
||||
SIBA_SPROMVAR_TXPID_5GL_3,
|
||||
SIBA_SPROMVAR_TXPID_5G_0,
|
||||
SIBA_SPROMVAR_TXPID_5G_1,
|
||||
SIBA_SPROMVAR_TXPID_5G_2,
|
||||
SIBA_SPROMVAR_TXPID_5G_3,
|
||||
SIBA_SPROMVAR_TXPID_5GH_0,
|
||||
SIBA_SPROMVAR_TXPID_5GH_1,
|
||||
SIBA_SPROMVAR_TXPID_5GH_2,
|
||||
SIBA_SPROMVAR_TXPID_5GH_3,
|
||||
SIBA_SPROMVAR_STBCPO,
|
||||
SIBA_SPROMVAR_CDDPO,
|
||||
};
|
||||
|
||||
int siba_read_sprom(device_t, device_t, int, uintptr_t *);
|
||||
int siba_write_sprom(device_t, device_t, int, uintptr_t);
|
||||
|
||||
/**
|
||||
* Generic sprom accessor generation macros for siba(4) drivers
|
||||
*/
|
||||
#define __SPROM_ACCESSOR(varp, var, ivarp, ivar, type) \
|
||||
\
|
||||
static __inline type varp ## _get_ ## var(device_t dev) \
|
||||
{ \
|
||||
uintptr_t v; \
|
||||
siba_read_sprom(device_get_parent(dev), dev, \
|
||||
ivarp ## _SPROMVAR_ ## ivar, &v); \
|
||||
return ((type) v); \
|
||||
} \
|
||||
\
|
||||
static __inline void varp ## _set_ ## var(device_t dev, type t) \
|
||||
{ \
|
||||
uintptr_t v = (uintptr_t) t; \
|
||||
siba_write_sprom(device_get_parent(dev), dev, \
|
||||
ivarp ## _SPROMVAR_ ## ivar, v); \
|
||||
}
|
||||
|
||||
#define SIBA_SPROM_ACCESSOR(var, ivar, type) \
|
||||
__SPROM_ACCESSOR(siba_sprom, var, SIBA, ivar, type)
|
||||
|
||||
SIBA_SPROM_ACCESSOR(rev, REV, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(mac_80211bg, MAC_80211BG, uint8_t *);
|
||||
SIBA_SPROM_ACCESSOR(mac_eth, MAC_ETH, uint8_t *);
|
||||
SIBA_SPROM_ACCESSOR(mac_80211a, MAC_80211A, uint8_t *);
|
||||
SIBA_SPROM_ACCESSOR(mii_eth0, MII_ETH0, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(mii_eth1, MII_ETH1, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(mdio_eth0, MDIO_ETH0, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(mdio_eth1, MDIO_ETH1, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(brev, BREV, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(ccode, CCODE, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(ant_a, ANT_A, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(ant_bg, ANT_BG, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(pa0b0, PA0B0, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa0b1, PA0B1, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa0b2, PA0B2, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1b0, PA1B0, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1b1, PA1B1, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1b2, PA1B2, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1lob0, PA1LOB0, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1lob1, PA1LOB1, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1lob2, PA1LOB2, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1hib0, PA1HIB0, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1hib1, PA1HIB1, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(pa1hib2, PA1HIB2, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(gpio0, GPIO0, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(gpio1, GPIO1, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(gpio2, GPIO2, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(gpio3, GPIO3, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(maxpwr_al, MAXPWR_AL, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(maxpwr_a, MAXPWR_A, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(maxpwr_ah, MAXPWR_AH, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(maxpwr_bg, MAXPWR_BG, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(rxpo2g, RXPO2G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(rxpo5g, RXPO5G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(tssi_a, TSSI_A, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(tssi_bg, TSSI_BG, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(tri2g, TRI2G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(tri5gl, TRI5GL, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(tri5g, TRI5G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(tri5gh, TRI5GH, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(rssisav2g, RSSISAV2G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(rssismc2g, RSSISMC2G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(rssismf2g, RSSISMF2G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(bxa2g, BXA2G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(rssisav5g, RSSISAV5G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(rssismc5g, RSSISMC5G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(rssismf5g, RSSISMF5G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(bxa5g, BXA5G, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(cck2gpo, CCK2GPO, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(ofdm2gpo, OFDM2GPO, uint32_t);
|
||||
SIBA_SPROM_ACCESSOR(ofdm5glpo, OFDM5GLPO, uint32_t);
|
||||
SIBA_SPROM_ACCESSOR(ofdm5gpo, OFDM5GPO, uint32_t);
|
||||
SIBA_SPROM_ACCESSOR(ofdm5ghpo, OFDM5GHPO, uint32_t);
|
||||
SIBA_SPROM_ACCESSOR(bf_lo, BF_LO, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(bf_hi, BF_HI, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(bf2_lo, BF2_LO, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(bf2_hi, BF2_HI, uint16_t);
|
||||
/* 2GHz FEM */
|
||||
SIBA_SPROM_ACCESSOR(fem_2ghz_tssipos, FEM_2GHZ_TSSIPOS, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_2ghz_extpa_gain, FEM_2GHZ_EXTPAGAIN, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_2ghz_pdet_range, FEM_2GHZ_PDET_RANGE, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_2ghz_tr_iso, FEM_2GHZ_TR_ISO, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_2ghz_antswlut, FEM_2GHZ_ANTSWLUT, uint8_t);
|
||||
/* 5GHz FEM */
|
||||
SIBA_SPROM_ACCESSOR(fem_5ghz_tssipos, FEM_5GHZ_TSSIPOS, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_5ghz_extpa_gain, FEM_5GHZ_EXTPAGAIN, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_5ghz_pdet_range, FEM_5GHZ_PDET_RANGE, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_5ghz_tr_iso, FEM_5GHZ_TR_ISO, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(fem_5ghz_antswlut, FEM_5GHZ_ANTSWLUT, uint8_t);
|
||||
/* TX power index */
|
||||
SIBA_SPROM_ACCESSOR(txpid_2g_0, TXPID_2G_0, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_2g_1, TXPID_2G_1, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_2g_2, TXPID_2G_2, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_2g_3, TXPID_2G_3, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gl_0, TXPID_5GL_0, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gl_1, TXPID_5GL_1, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gl_2, TXPID_5GL_2, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gl_3, TXPID_5GL_3, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5g_0, TXPID_5G_0, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5g_1, TXPID_5G_1, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5g_2, TXPID_5G_2, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5g_3, TXPID_5G_3, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gh_0, TXPID_5GH_0, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gh_1, TXPID_5GH_1, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gh_2, TXPID_5GH_2, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(txpid_5gh_3, TXPID_5GH_3, uint8_t);
|
||||
SIBA_SPROM_ACCESSOR(stbcpo, STBCPO, uint16_t);
|
||||
SIBA_SPROM_ACCESSOR(cddpo, CDDPO, uint16_t);
|
||||
|
||||
#undef SIBA_SPROM_ACCESSOR
|
||||
|
||||
struct siba_sprom_core_pwr_info {
|
||||
uint8_t itssi_2g, itssi_5g;
|
||||
uint8_t maxpwr_2g, maxpwr_5gl, maxpwr_5g, maxpwr_5gh;
|
||||
uint8_t pa_2g[4], pa_5gl[4], pa_5g[4], pa_5gh[4];
|
||||
};
|
||||
|
||||
struct siba_sprom {
|
||||
uint8_t rev; /* revision */
|
||||
uint8_t mac_80211bg[6]; /* address for 802.11b/g */
|
||||
uint8_t mac_eth[6]; /* address for Ethernet */
|
||||
uint8_t mac_80211a[6]; /* address for 802.11a */
|
||||
uint8_t mii_eth0; /* MII address for eth0 */
|
||||
uint8_t mii_eth1; /* MII address for eth1 */
|
||||
uint8_t mdio_eth0; /* MDIO for eth0 */
|
||||
uint8_t mdio_eth1; /* MDIO for eth1 */
|
||||
uint8_t brev; /* board revision */
|
||||
uint8_t ccode; /* Country Code */
|
||||
uint8_t ant_a; /* A-PHY antenna */
|
||||
uint8_t ant_bg; /* B/G-PHY antenna */
|
||||
uint16_t pa0b0;
|
||||
uint16_t pa0b1;
|
||||
uint16_t pa0b2;
|
||||
uint16_t pa1b0;
|
||||
uint16_t pa1b1;
|
||||
uint16_t pa1b2;
|
||||
uint16_t pa1lob0;
|
||||
uint16_t pa1lob1;
|
||||
uint16_t pa1lob2;
|
||||
uint16_t pa1hib0;
|
||||
uint16_t pa1hib1;
|
||||
uint16_t pa1hib2;
|
||||
uint8_t gpio0;
|
||||
uint8_t gpio1;
|
||||
uint8_t gpio2;
|
||||
uint8_t gpio3;
|
||||
uint16_t maxpwr_al;
|
||||
uint16_t maxpwr_a; /* A-PHY Max Power */
|
||||
uint16_t maxpwr_ah;
|
||||
uint16_t maxpwr_bg; /* BG-PHY Max Power */
|
||||
uint8_t rxpo2g;
|
||||
uint8_t rxpo5g;
|
||||
uint8_t tssi_a; /* Idle TSSI */
|
||||
uint8_t tssi_bg; /* Idle TSSI */
|
||||
uint8_t tri2g;
|
||||
uint8_t tri5gl;
|
||||
uint8_t tri5g;
|
||||
uint8_t tri5gh;
|
||||
uint8_t txpid2g[4]; /* 2GHz TX power index */
|
||||
uint8_t txpid5gl[4]; /* 4.9 - 5.1GHz TX power index */
|
||||
uint8_t txpid5g[4]; /* 5.1 - 5.5GHz TX power index */
|
||||
uint8_t txpid5gh[4]; /* 5.5 - 5.9GHz TX power index */
|
||||
uint8_t rssisav2g;
|
||||
uint8_t rssismc2g;
|
||||
uint8_t rssismf2g;
|
||||
uint8_t bxa2g;
|
||||
uint8_t rssisav5g;
|
||||
uint8_t rssismc5g;
|
||||
uint8_t rssismf5g;
|
||||
uint8_t bxa5g;
|
||||
uint16_t cck2gpo;
|
||||
uint32_t ofdm2gpo;
|
||||
uint32_t ofdm5glpo;
|
||||
uint32_t ofdm5gpo;
|
||||
uint32_t ofdm5ghpo;
|
||||
uint16_t bf_lo; /* boardflags */
|
||||
uint16_t bf_hi; /* boardflags */
|
||||
uint16_t bf2_lo;
|
||||
uint16_t bf2_hi;
|
||||
|
||||
struct siba_sprom_core_pwr_info core_pwr_info[4];
|
||||
|
||||
struct {
|
||||
struct {
|
||||
int8_t a0, a1, a2, a3;
|
||||
} ghz24;
|
||||
struct {
|
||||
int8_t a0, a1, a2, a3;
|
||||
} ghz5;
|
||||
} again; /* antenna gain */
|
||||
|
||||
struct {
|
||||
struct {
|
||||
uint8_t tssipos, extpa_gain, pdet_range, tr_iso;
|
||||
uint8_t antswlut;
|
||||
} ghz2;
|
||||
struct {
|
||||
uint8_t tssipos, extpa_gain, pdet_range, tr_iso;
|
||||
uint8_t antswlut;
|
||||
} ghz5;
|
||||
} fem;
|
||||
|
||||
uint16_t mcs2gpo[8];
|
||||
uint16_t mcs5gpo[8];
|
||||
uint16_t mcs5glpo[8];
|
||||
uint16_t mcs5ghpo[8];
|
||||
|
||||
uint16_t cddpo;
|
||||
uint16_t stbcpo;
|
||||
};
|
||||
|
||||
#define SIBA_LDO_PAREF 0
|
||||
#define SIBA_LDO_VOLT1 1
|
||||
#define SIBA_LDO_VOLT2 2
|
||||
#define SIBA_LDO_VOLT3 3
|
||||
|
||||
struct siba_cc_pmu {
|
||||
uint8_t rev; /* PMU rev */
|
||||
uint32_t freq; /* crystal freq in kHz */
|
||||
};
|
||||
|
||||
struct siba_cc {
|
||||
struct siba_dev_softc *scc_dev;
|
||||
uint32_t scc_caps;
|
||||
struct siba_cc_pmu scc_pmu;
|
||||
uint16_t scc_powerup_delay;
|
||||
};
|
||||
|
||||
struct siba_pci {
|
||||
struct siba_dev_softc *spc_dev;
|
||||
uint8_t spc_inited;
|
||||
uint8_t spc_hostmode;
|
||||
};
|
||||
|
||||
struct siba_bus_ops {
|
||||
uint16_t (*read_2)(struct siba_dev_softc *,
|
||||
uint16_t);
|
||||
uint32_t (*read_4)(struct siba_dev_softc *,
|
||||
uint16_t);
|
||||
void (*write_2)(struct siba_dev_softc *,
|
||||
uint16_t, uint16_t);
|
||||
void (*write_4)(struct siba_dev_softc *,
|
||||
uint16_t, uint32_t);
|
||||
void (*read_multi_1)(struct siba_dev_softc *,
|
||||
void *, size_t, uint16_t);
|
||||
void (*read_multi_2)(struct siba_dev_softc *,
|
||||
void *, size_t, uint16_t);
|
||||
void (*read_multi_4)(struct siba_dev_softc *,
|
||||
void *, size_t, uint16_t);
|
||||
void (*write_multi_1)(struct siba_dev_softc *,
|
||||
const void *, size_t, uint16_t);
|
||||
void (*write_multi_2)(struct siba_dev_softc *,
|
||||
const void *, size_t, uint16_t);
|
||||
void (*write_multi_4)(struct siba_dev_softc *,
|
||||
const void *, size_t, uint16_t);
|
||||
};
|
||||
|
||||
struct siba_dev_softc {
|
||||
struct siba_softc *sd_bus;
|
||||
struct siba_devid sd_id;
|
||||
const struct siba_bus_ops *sd_ops;
|
||||
|
||||
uint8_t sd_coreidx;
|
||||
};
|
||||
|
||||
struct siba_devinfo {
|
||||
struct resource_list sdi_rl;
|
||||
/*devhandle_t sdi_devhandle; XXX*/
|
||||
/*struct rman sdi_intr_rman;*/
|
||||
|
||||
/* Accessors are needed for ivars below. */
|
||||
uint16_t sdi_vid;
|
||||
uint16_t sdi_devid;
|
||||
uint8_t sdi_rev;
|
||||
uint8_t sdi_idx; /* core index on bus */
|
||||
uint8_t sdi_irq; /* TODO */
|
||||
};
|
||||
|
||||
struct siba_softc {
|
||||
/*
|
||||
* common variables which used for siba(4) bus and siba_bwn bridge.
|
||||
*/
|
||||
device_t siba_dev; /* Device ID */
|
||||
struct resource *siba_mem_res;
|
||||
bus_space_tag_t siba_mem_bt;
|
||||
bus_space_handle_t siba_mem_bh;
|
||||
bus_addr_t siba_maddr;
|
||||
bus_size_t siba_msize;
|
||||
uint8_t siba_ncores;
|
||||
uint32_t siba_debug;
|
||||
|
||||
/*
|
||||
* the following variables are only used for siba_bwn bridge.
|
||||
*/
|
||||
|
||||
enum siba_type siba_type;
|
||||
int siba_invalid;
|
||||
|
||||
struct siba_dev_softc *siba_curdev; /* only for PCI */
|
||||
struct siba_dev_softc siba_devs[SIBA_MAX_CORES];
|
||||
int siba_ndevs;
|
||||
|
||||
uint16_t siba_pci_vid;
|
||||
uint16_t siba_pci_did;
|
||||
uint16_t siba_pci_subvid;
|
||||
uint16_t siba_pci_subdid;
|
||||
uint8_t siba_pci_revid;
|
||||
int siba_mem_rid;
|
||||
|
||||
uint16_t siba_chipid; /* for CORE 0 */
|
||||
uint16_t siba_chiprev;
|
||||
uint8_t siba_chippkg;
|
||||
|
||||
struct siba_cc siba_cc; /* ChipCommon */
|
||||
struct siba_pci siba_pci; /* PCI-core */
|
||||
const struct siba_bus_ops *siba_ops;
|
||||
|
||||
struct siba_sprom siba_sprom; /* SPROM */
|
||||
uint16_t siba_spromsize; /* in word size */
|
||||
};
|
||||
|
||||
void siba_powerup(device_t, int);
|
||||
int siba_powerdown(device_t);
|
||||
uint16_t siba_read_2(device_t, uint16_t);
|
||||
void siba_write_2(device_t, uint16_t, uint16_t);
|
||||
uint32_t siba_read_4(device_t, uint16_t);
|
||||
void siba_write_4(device_t, uint16_t, uint32_t);
|
||||
void siba_dev_up(device_t, uint32_t);
|
||||
void siba_dev_down(device_t, uint32_t);
|
||||
int siba_dev_isup(device_t);
|
||||
void siba_pcicore_intr(device_t);
|
||||
uint32_t siba_dma_translation(device_t);
|
||||
void siba_read_multi_1(device_t, void *, size_t, uint16_t);
|
||||
void siba_read_multi_2(device_t, void *, size_t, uint16_t);
|
||||
void siba_read_multi_4(device_t, void *, size_t, uint16_t);
|
||||
void siba_write_multi_1(device_t, const void *, size_t, uint16_t);
|
||||
void siba_write_multi_2(device_t, const void *, size_t, uint16_t);
|
||||
void siba_write_multi_4(device_t, const void *, size_t, uint16_t);
|
||||
void siba_barrier(device_t, int);
|
||||
void siba_cc_pmu_set_ldovolt(device_t, int, uint32_t);
|
||||
void siba_cc_pmu_set_ldoparef(device_t, uint8_t);
|
||||
void siba_gpio_set(device_t, uint32_t);
|
||||
uint32_t siba_gpio_get(device_t);
|
||||
void siba_fix_imcfglobug(device_t);
|
||||
int siba_sprom_get_core_power_info(device_t, int,
|
||||
struct siba_sprom_core_pwr_info *);
|
||||
int siba_sprom_get_mcs2gpo(device_t, uint16_t *);
|
||||
int siba_sprom_get_mcs5glpo(device_t, uint16_t *);
|
||||
int siba_sprom_get_mcs5gpo(device_t, uint16_t *);
|
||||
int siba_sprom_get_mcs5ghpo(device_t, uint16_t *);
|
||||
void siba_pmu_spuravoid_pllupdate(device_t, int);
|
||||
void siba_cc_set32(device_t dev, uint32_t, uint32_t);
|
||||
void siba_cc_mask32(device_t dev, uint32_t, uint32_t);
|
||||
uint32_t siba_cc_read32(device_t dev, uint32_t);
|
||||
void siba_cc_write32(device_t dev, uint32_t, uint32_t);
|
||||
|
||||
#endif /* _SIBA_SIBAVAR_H_ */
|
@ -69,23 +69,31 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
#include <dev/bhnd/bhnd_ids.h>
|
||||
|
||||
#include <dev/bhnd/cores/pmu/bhnd_pmu.h>
|
||||
#include <dev/bhnd/cores/chipc/chipc.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
#include <dev/bwn/if_bwn_misc.h>
|
||||
#include <dev/bwn/if_bwn_util.h>
|
||||
#include <dev/bwn/if_bwn_debug.h>
|
||||
#include <dev/bwn/if_bwn_phy_common.h>
|
||||
#include <dev/bwn/if_bwn_chipid.h>
|
||||
#include <dev/bwn/if_bwn_cordic.h>
|
||||
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_regs.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_ppr.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_sprom.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_tables.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_radio_2055.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_radio_2056.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_radio_2057.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_core.h>
|
||||
|
||||
#include "bhnd_nvram_map.h"
|
||||
|
||||
struct bwn_nphy_txgains {
|
||||
uint16_t tx_lpf[2];
|
||||
uint16_t txgm[2];
|
||||
@ -590,7 +598,7 @@ static uint16_t bwn_nphy_classifier(struct bwn_mac *mac, uint16_t mask, uint16_t
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint16_t tmp;
|
||||
|
||||
if (siba_get_revid(sc->sc_dev) == 16)
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 16)
|
||||
bwn_mac_suspend(mac);
|
||||
|
||||
tmp = BWN_PHY_READ(mac, BWN_NPHY_CLASSCTL);
|
||||
@ -600,7 +608,7 @@ static uint16_t bwn_nphy_classifier(struct bwn_mac *mac, uint16_t mask, uint16_t
|
||||
tmp |= (val & mask);
|
||||
BWN_PHY_SETMASK(mac, BWN_NPHY_CLASSCTL, 0xFFF8, tmp);
|
||||
|
||||
if (siba_get_revid(sc->sc_dev) == 16)
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 16)
|
||||
bwn_mac_enable(mac);
|
||||
|
||||
return tmp;
|
||||
@ -1232,20 +1240,20 @@ static void bwn_radio_2056_setup(struct bwn_mac *mac,
|
||||
}
|
||||
|
||||
is_pkg_fab_smic =
|
||||
((siba_get_chipid(sc->sc_dev) == BCMA_CHIP_ID_BCM43224 ||
|
||||
siba_get_chipid(sc->sc_dev) == BCMA_CHIP_ID_BCM43225 ||
|
||||
siba_get_chipid(sc->sc_dev) == BCMA_CHIP_ID_BCM43421) &&
|
||||
siba_get_chippkg(sc->sc_dev) == BCMA_PKG_ID_BCM43224_FAB_SMIC);
|
||||
((sc->sc_cid.chip_id == BHND_CHIPID_BCM43224 ||
|
||||
sc->sc_cid.chip_id == BHND_CHIPID_BCM43225 ||
|
||||
sc->sc_cid.chip_id == BHND_CHIPID_BCM43421) &&
|
||||
sc->sc_cid.chip_pkg == BHND_PKGID_BCM43224_FAB_SMIC);
|
||||
|
||||
bwn_chantab_radio_2056_upload(mac, e);
|
||||
b2056_upload_syn_pll_cp2(mac, band == BWN_BAND_5G);
|
||||
|
||||
if (siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_GPLL_WAR &&
|
||||
if (sc->sc_board_info.board_flags2 & BHND_BFL2_GPLL_WAR &&
|
||||
bwn_current_band(mac) == BWN_BAND_2G) {
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER1, 0x1F);
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER2, 0x1F);
|
||||
if (siba_get_chipid(sc->sc_dev) == BCMA_CHIP_ID_BCM4716 ||
|
||||
siba_get_chipid(sc->sc_dev) == BCMA_CHIP_ID_BCM47162) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM4716 ||
|
||||
sc->sc_cid.chip_id == BHND_CHIPID_BCM47162) {
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER4, 0x14);
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_CP2, 0);
|
||||
} else {
|
||||
@ -1253,14 +1261,14 @@ static void bwn_radio_2056_setup(struct bwn_mac *mac,
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_CP2, 0x14);
|
||||
}
|
||||
}
|
||||
if (siba_sprom_get_bf2_hi(sc->sc_dev) & BWN_BFH2_GPLL_WAR2 &&
|
||||
if (sc->sc_board_info.board_flags2 & BHND_BFL2_GPLL_WAR &&
|
||||
bwn_current_band(mac) == BWN_BAND_2G) {
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER1, 0x1f);
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER2, 0x1f);
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER4, 0x0b);
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_CP2, 0x20);
|
||||
}
|
||||
if (siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_APLL_WAR &&
|
||||
if (sc->sc_board_info.board_flags2 & BHND_BFL2_APLL_WAR &&
|
||||
bwn_current_band(mac) == BWN_BAND_5G) {
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER1, 0x1F);
|
||||
BWN_RF_WRITE(mac, B2056_SYN_PLL_LOOPFILTER2, 0x1F);
|
||||
@ -1275,8 +1283,8 @@ static void bwn_radio_2056_setup(struct bwn_mac *mac,
|
||||
BWN_RF_WRITE(mac,
|
||||
offset | B2056_TX_PADG_IDAC, 0xcc);
|
||||
|
||||
if (siba_get_chipid(sc->sc_dev) == BCMA_CHIP_ID_BCM4716 ||
|
||||
siba_get_chipid(sc->sc_dev) == BCMA_CHIP_ID_BCM47162) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM4716 ||
|
||||
sc->sc_cid.chip_id == BHND_CHIPID_BCM47162) {
|
||||
bias = 0x40;
|
||||
cbias = 0x45;
|
||||
pag_boost = 0x5;
|
||||
@ -1551,14 +1559,14 @@ static void bwn_radio_init2055_post(struct bwn_mac *mac)
|
||||
struct bwn_phy_n *nphy = mac->mac_phy.phy_n;
|
||||
bool workaround = false;
|
||||
|
||||
if (siba_get_revid(sc->sc_dev) < 4)
|
||||
if (bhnd_get_hwrev(sc->sc_dev) < 4)
|
||||
workaround =
|
||||
(siba_get_pci_subvendor(sc->sc_dev) != SIBA_BOARDVENDOR_BCM)
|
||||
&& (siba_get_pci_subdevice(sc->sc_dev) == SIBA_BOARD_BCM4321)
|
||||
&& (siba_sprom_get_brev(sc->sc_dev) >= 0x41);
|
||||
(sc->sc_board_info.board_vendor != PCI_VENDOR_BROADCOM)
|
||||
&& (sc->sc_board_info.board_type == BHND_BOARD_BCM4321CB2)
|
||||
&& (sc->sc_board_info.board_rev >= 0x41);
|
||||
else
|
||||
workaround =
|
||||
!(siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_RXBB_INT_REG_DIS);
|
||||
!(sc->sc_board_info.board_flags2 & BHND_BFL2_RXBB_INT_REG_DIS);
|
||||
|
||||
BWN_RF_MASK(mac, B2055_MASTER1, 0xFFF3);
|
||||
if (workaround) {
|
||||
@ -2618,8 +2626,8 @@ static void bwn_nphy_gain_ctl_workarounds_rev3(struct bwn_mac *mac)
|
||||
/* Prepare values */
|
||||
ghz5 = BWN_PHY_READ(mac, BWN_NPHY_BANDCTL)
|
||||
& BWN_NPHY_BANDCTL_5GHZ;
|
||||
ext_lna = ghz5 ? siba_sprom_get_bf_hi(sc->sc_dev) & BWN_BFH_EXTLNA_5GHZ :
|
||||
siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_EXTLNA;
|
||||
ext_lna = ghz5 ? sc->sc_board_info.board_flags & BHND_BFL_EXTLNA_5GHZ :
|
||||
sc->sc_board_info.board_flags & BHND_BFL_EXTLNA;
|
||||
e = bwn_nphy_get_gain_ctl_workaround_ent(mac, ghz5, ext_lna);
|
||||
if (ghz5 && mac->mac_phy.rev >= 5)
|
||||
rssi_gain = 0x90;
|
||||
@ -2811,7 +2819,7 @@ static void bwn_nphy_gain_ctl_workarounds(struct bwn_mac *mac)
|
||||
bwn_nphy_gain_ctl_workarounds_rev1_2(mac);
|
||||
}
|
||||
|
||||
static void bwn_nphy_workarounds_rev7plus(struct bwn_mac *mac)
|
||||
static int bwn_nphy_workarounds_rev7plus(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
@ -3073,8 +3081,8 @@ static void bwn_nphy_workarounds_rev7plus(struct bwn_mac *mac)
|
||||
bwn_nphy_rf_ctl_override_rev7(mac, 4, 1, 3, false, 0);
|
||||
|
||||
if (phy->rf_rev == 3 || phy->rf_rev == 4 || phy->rf_rev == 6) {
|
||||
if (siba_sprom_get_rev(sc->sc_dev) &&
|
||||
siba_sprom_get_bf2_hi(sc->sc_dev) & BWN_BFH2_IPALVLSHIFT_3P3) {
|
||||
if (sc->sc_board_info.board_srom_rev &&
|
||||
sc->sc_board_info.board_flags2 & BHND_BFL2_IPALVLSHIFT_3P3) {
|
||||
BWN_RF_WRITE(mac, 0x5, 0x05);
|
||||
BWN_RF_WRITE(mac, 0x6, 0x30);
|
||||
BWN_RF_WRITE(mac, 0x7, 0x00);
|
||||
@ -3254,9 +3262,11 @@ static void bwn_nphy_workarounds_rev7plus(struct bwn_mac *mac)
|
||||
bwn_ntab_write_bulk(mac, BWN_NTAB16(8, 0x1C), 4,
|
||||
aux_adc_gain_rev7);
|
||||
*/
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void bwn_nphy_workarounds_rev3plus(struct bwn_mac *mac)
|
||||
static int bwn_nphy_workarounds_rev3plus(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy_n *nphy = mac->mac_phy.phy_n;
|
||||
@ -3287,9 +3297,11 @@ static void bwn_nphy_workarounds_rev3plus(struct bwn_mac *mac)
|
||||
};
|
||||
uint16_t *vmid, *gain;
|
||||
|
||||
const char *pdet_range_var;
|
||||
uint8_t pdet_range;
|
||||
uint16_t tmp16;
|
||||
uint32_t tmp32;
|
||||
int error;
|
||||
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_FORCEFRONT0, 0x1f8);
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_FORCEFRONT1, 0x1f8);
|
||||
@ -3347,9 +3359,18 @@ static void bwn_nphy_workarounds_rev3plus(struct bwn_mac *mac)
|
||||
bwn_ntab_write(mac, BWN_NTAB16(8, 16), 2);
|
||||
|
||||
if (bwn_current_band(mac) == BWN_BAND_2G)
|
||||
pdet_range = siba_sprom_get_fem_2ghz_pdet_range(sc->sc_dev);
|
||||
pdet_range_var = BHND_NVAR_PDETRANGE2G;
|
||||
else
|
||||
pdet_range = siba_sprom_get_fem_5ghz_pdet_range(sc->sc_dev);
|
||||
pdet_range_var = BHND_NVAR_PDETRANGE5G;
|
||||
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, pdet_range_var,
|
||||
&pdet_range);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "Error reading PDet range %s from "
|
||||
"NVRAM: %d\n", pdet_range_var, error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
/* uint16_t min() */
|
||||
vmid = vmids[min(pdet_range, 4)];
|
||||
gain = gains[min(pdet_range, 4)];
|
||||
@ -3428,9 +3449,9 @@ static void bwn_nphy_workarounds_rev3plus(struct bwn_mac *mac)
|
||||
|
||||
/* N PHY WAR TX Chain Update with hw_phytxchain as argument */
|
||||
|
||||
if ((siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_APLL_WAR &&
|
||||
if ((sc->sc_board_info.board_flags2 & BHND_BFL2_APLL_WAR &&
|
||||
bwn_current_band(mac) == BWN_BAND_5G) ||
|
||||
(siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_GPLL_WAR &&
|
||||
(sc->sc_board_info.board_flags2 & BHND_BFL2_GPLL_WAR2 &&
|
||||
bwn_current_band(mac) == BWN_BAND_2G))
|
||||
tmp32 = 0x00088888;
|
||||
else
|
||||
@ -3461,11 +3482,13 @@ static void bwn_nphy_workarounds_rev3plus(struct bwn_mac *mac)
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_ED_CRS20UDEASSERTTHRESH0, 0x0381);
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_ED_CRS20UDEASSERTTHRESH1, 0x0381);
|
||||
|
||||
if (mac->mac_phy.rev >= 6 && siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_SINGLEANT_CCK)
|
||||
if (mac->mac_phy.rev >= 6 && sc->sc_board_info.board_flags2 & BHND_BFL2_SINGLEANT_CCK)
|
||||
; /* TODO: 0x0080000000000000 HF */
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void bwn_nphy_workarounds_rev1_2(struct bwn_mac *mac)
|
||||
static int bwn_nphy_workarounds_rev1_2(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
@ -3477,8 +3500,8 @@ static void bwn_nphy_workarounds_rev1_2(struct bwn_mac *mac)
|
||||
uint8_t events2[7] = { 0x0, 0x3, 0x5, 0x4, 0x2, 0x1, 0x8 };
|
||||
uint8_t delays2[7] = { 0x8, 0x6, 0x2, 0x4, 0x4, 0x6, 0x1 };
|
||||
|
||||
if (siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_SKWRKFEM_BRD ||
|
||||
siba_get_pci_subdevice(sc->sc_dev)== BCMA_BOARD_TYPE_BCM943224M93) {
|
||||
if (sc->sc_board_info.board_flags2 & BHND_BFL2_SKWRKFEM_BRD ||
|
||||
sc->sc_board_info.board_type == BHND_BOARD_BCM943224M93) {
|
||||
delays1[0] = 0x1;
|
||||
delays1[5] = 0x14;
|
||||
}
|
||||
@ -3550,13 +3573,16 @@ static void bwn_nphy_workarounds_rev1_2(struct bwn_mac *mac)
|
||||
if (mac->mac_phy.rev == 2)
|
||||
BWN_PHY_SET(mac, BWN_NPHY_FINERX2_CGC,
|
||||
BWN_NPHY_FINERX2_CGC_DECGC);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/Workarounds */
|
||||
static void bwn_nphy_workarounds(struct bwn_mac *mac)
|
||||
static int bwn_nphy_workarounds(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
struct bwn_phy_n *nphy = phy->phy_n;
|
||||
int error;
|
||||
|
||||
if (bwn_current_band(mac) == BWN_BAND_5G)
|
||||
bwn_nphy_classifier(mac, 1, 0);
|
||||
@ -3571,14 +3597,19 @@ static void bwn_nphy_workarounds(struct bwn_mac *mac)
|
||||
|
||||
/* TODO: rev19+ */
|
||||
if (mac->mac_phy.rev >= 7)
|
||||
bwn_nphy_workarounds_rev7plus(mac);
|
||||
error = bwn_nphy_workarounds_rev7plus(mac);
|
||||
else if (mac->mac_phy.rev >= 3)
|
||||
bwn_nphy_workarounds_rev3plus(mac);
|
||||
error = bwn_nphy_workarounds_rev3plus(mac);
|
||||
else
|
||||
bwn_nphy_workarounds_rev1_2(mac);
|
||||
error = bwn_nphy_workarounds_rev1_2(mac);
|
||||
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
if (nphy->hang_avoid)
|
||||
bwn_nphy_stay_in_carrier_search(mac, 0);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/**************************************************
|
||||
@ -3852,7 +3883,7 @@ static void bwn_nphy_tx_power_ctrl(struct bwn_mac *mac, bool enable)
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/TxPwrFix */
|
||||
static void bwn_nphy_tx_power_fix(struct bwn_mac *mac)
|
||||
static int bwn_nphy_tx_power_fix(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy_n *nphy = mac->mac_phy.phy_n;
|
||||
@ -3872,26 +3903,40 @@ static void bwn_nphy_tx_power_fix(struct bwn_mac *mac)
|
||||
} else if (mac->mac_phy.rev >= 3) {
|
||||
txpi[0] = 40;
|
||||
txpi[1] = 40;
|
||||
} else if (siba_sprom_get_rev(sc->sc_dev) < 4) {
|
||||
} else if (sc->sc_board_info.board_srom_rev < 4) {
|
||||
txpi[0] = 72;
|
||||
txpi[1] = 72;
|
||||
} else {
|
||||
#define BWN_NPHY_GET_TXPI(_name, _result) \
|
||||
do { \
|
||||
int error; \
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, (_name), \
|
||||
(_result)); \
|
||||
if (error) { \
|
||||
device_printf(sc->sc_dev, "NVRAM variable %s " \
|
||||
"unreadable: %d\n", (_name), error); \
|
||||
return (error); \
|
||||
} \
|
||||
} while(0)
|
||||
|
||||
if (bwn_current_band(mac) == BWN_BAND_2G) {
|
||||
txpi[0] = siba_sprom_get_txpid_2g_0(sc->sc_dev);
|
||||
txpi[1] = siba_sprom_get_txpid_2g_1(sc->sc_dev);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID2GA0, &txpi[0]);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID2GA1, &txpi[1]);
|
||||
} else if (freq >= 4900 && freq < 5100) {
|
||||
txpi[0] = siba_sprom_get_txpid_5gl_0(sc->sc_dev);
|
||||
txpi[1] = siba_sprom_get_txpid_5gl_1(sc->sc_dev);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID5GLA0, &txpi[0]);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID5GLA1, &txpi[1]);
|
||||
} else if (freq >= 5100 && freq < 5500) {
|
||||
txpi[0] = siba_sprom_get_txpid_5g_0(sc->sc_dev);
|
||||
txpi[1] = siba_sprom_get_txpid_5g_1(sc->sc_dev);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID5GA0, &txpi[0]);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID5GA1, &txpi[1]);
|
||||
} else if (freq >= 5500) {
|
||||
txpi[0] = siba_sprom_get_txpid_5gh_0(sc->sc_dev);
|
||||
txpi[1] = siba_sprom_get_txpid_5gh_1(sc->sc_dev);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID5GHA0, &txpi[0]);
|
||||
BWN_NPHY_GET_TXPI(BHND_NVAR_TXPID5GHA1, &txpi[1]);
|
||||
} else {
|
||||
txpi[0] = 91;
|
||||
txpi[1] = 91;
|
||||
}
|
||||
|
||||
#undef BWN_NPHY_GET_TXPI
|
||||
}
|
||||
if (mac->mac_phy.rev < 7 &&
|
||||
(txpi[0] < 40 || txpi[0] > 100 || txpi[1] < 40 || txpi[1] > 100))
|
||||
@ -3960,6 +4005,8 @@ static void bwn_nphy_tx_power_fix(struct bwn_mac *mac)
|
||||
|
||||
if (nphy->hang_avoid)
|
||||
bwn_nphy_stay_in_carrier_search(mac, 0);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static void bwn_nphy_ipa_internal_tssi_setup(struct bwn_mac *mac)
|
||||
@ -4163,7 +4210,7 @@ static void bwn_nphy_tx_power_ctl_setup(struct bwn_mac *mac)
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
struct bwn_phy_n *nphy = mac->mac_phy.phy_n;
|
||||
struct siba_sprom_core_pwr_info core_pwr_info[4];
|
||||
struct bwn_phy_n_core_pwr_info core_pwr_info[4];
|
||||
int n;
|
||||
|
||||
int16_t a1[2], b0[2], b1[2];
|
||||
@ -4180,7 +4227,7 @@ static void bwn_nphy_tx_power_ctl_setup(struct bwn_mac *mac)
|
||||
|
||||
for (n = 0; n < 4; n++) {
|
||||
bzero(&core_pwr_info[n], sizeof(core_pwr_info[n]));
|
||||
if (siba_sprom_get_core_power_info(sc->sc_dev, n,
|
||||
if (bwn_nphy_get_core_power_info(mac, n,
|
||||
&core_pwr_info[n]) != 0) {
|
||||
BWN_ERRPRINTF(mac->mac_sc,
|
||||
"%s: failed to get core_pwr_info for core %d\n",
|
||||
@ -4189,7 +4236,7 @@ static void bwn_nphy_tx_power_ctl_setup(struct bwn_mac *mac)
|
||||
}
|
||||
}
|
||||
|
||||
if (siba_get_revid(sc->sc_dev) == 11 || siba_get_revid(sc->sc_dev) == 12) {
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 11 || bhnd_get_hwrev(sc->sc_dev) == 12) {
|
||||
BWN_WRITE_SETMASK4(mac, BWN_MACCTL, ~0, 0x200000);
|
||||
BWN_READ_4(mac, BWN_MACCTL);
|
||||
DELAY(1);
|
||||
@ -4206,14 +4253,14 @@ static void bwn_nphy_tx_power_ctl_setup(struct bwn_mac *mac)
|
||||
BWN_PHY_SET(mac, BWN_NPHY_TXPCTL_CMD,
|
||||
BWN_NPHY_TXPCTL_CMD_PCTLEN);
|
||||
|
||||
if (siba_get_revid(sc->sc_dev) == 11 || siba_get_revid(sc->sc_dev) == 12)
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 11 || bhnd_get_hwrev(sc->sc_dev) == 12)
|
||||
BWN_WRITE_SETMASK4(mac, BWN_MACCTL, ~0x200000, 0);
|
||||
|
||||
/*
|
||||
* XXX TODO: see if those bandsbelow map to 5g-lo, 5g-mid, 5g-hi in
|
||||
* any way.
|
||||
*/
|
||||
if (siba_sprom_get_rev(sc->sc_dev) < 4) {
|
||||
if (sc->sc_board_info.board_srom_rev < 4) {
|
||||
idle[0] = nphy->pwr_ctl_info[0].idle_tssi_2g;
|
||||
idle[1] = nphy->pwr_ctl_info[1].idle_tssi_2g;
|
||||
target[0] = target[1] = 52;
|
||||
@ -4270,7 +4317,7 @@ static void bwn_nphy_tx_power_ctl_setup(struct bwn_mac *mac)
|
||||
}
|
||||
|
||||
if (mac->mac_phy.rev >= 3) {
|
||||
if (siba_sprom_get_fem_2ghz_tssipos(sc->sc_dev))
|
||||
if (nphy->tsspos_2g)
|
||||
BWN_PHY_SET(mac, BWN_NPHY_TXPCTL_ITSSI, 0x4000);
|
||||
if (mac->mac_phy.rev >= 7) {
|
||||
for (c = 0; c < 2; c++) {
|
||||
@ -4294,7 +4341,7 @@ static void bwn_nphy_tx_power_ctl_setup(struct bwn_mac *mac)
|
||||
}
|
||||
}
|
||||
|
||||
if (siba_get_revid(sc->sc_dev) == 11 || siba_get_revid(sc->sc_dev) == 12) {
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 11 || bhnd_get_hwrev(sc->sc_dev) == 12) {
|
||||
BWN_WRITE_SETMASK4(mac, BWN_MACCTL, ~0, 0x200000);
|
||||
BWN_READ_4(mac, BWN_MACCTL);
|
||||
DELAY(1);
|
||||
@ -4315,7 +4362,7 @@ static void bwn_nphy_tx_power_ctl_setup(struct bwn_mac *mac)
|
||||
~BWN_NPHY_TXPCTL_INIT_PIDXI1, 0x40);
|
||||
}
|
||||
|
||||
if (siba_get_revid(sc->sc_dev) == 11 || siba_get_revid(sc->sc_dev) == 12)
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 11 || bhnd_get_hwrev(sc->sc_dev) == 12)
|
||||
BWN_WRITE_SETMASK4(mac, BWN_MACCTL, ~0x200000, 0);
|
||||
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_TXPCTL_N,
|
||||
@ -6061,13 +6108,13 @@ bwn_nphy_op_recalc_txpower(struct bwn_mac *mac, bool ignore_tssi)
|
||||
tx_pwr_state = nphy->txpwrctrl;
|
||||
bwn_mac_suspend(mac);
|
||||
bwn_nphy_tx_power_ctl_setup(mac);
|
||||
if (siba_get_revid(sc->sc_dev) == 11 || siba_get_revid(sc->sc_dev) == 12) {
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 11 || bhnd_get_hwrev(sc->sc_dev) == 12) {
|
||||
BWN_WRITE_SETMASK4(mac, BWN_MACCTL, ~0, BWN_MACCTL_PHY_LOCK);
|
||||
BWN_READ_4(mac, BWN_MACCTL);
|
||||
DELAY(1);
|
||||
}
|
||||
bwn_nphy_tx_power_ctrl(mac, nphy->txpwrctrl);
|
||||
if (siba_get_revid(sc->sc_dev) == 11 || siba_get_revid(sc->sc_dev) == 12)
|
||||
if (bhnd_get_hwrev(sc->sc_dev) == 11 || bhnd_get_hwrev(sc->sc_dev) == 12)
|
||||
BWN_WRITE_SETMASK4(mac, BWN_MACCTL, ~BWN_MACCTL_PHY_LOCK, 0);
|
||||
bwn_mac_enable(mac);
|
||||
|
||||
@ -6115,16 +6162,16 @@ static void bwn_nphy_bphy_init(struct bwn_mac *mac)
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/SuperSwitchInit */
|
||||
static void bwn_nphy_superswitch_init(struct bwn_mac *mac, bool init)
|
||||
static int bwn_nphy_superswitch_init(struct bwn_mac *mac, bool init)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
int error;
|
||||
|
||||
if (mac->mac_phy.rev >= 7)
|
||||
return;
|
||||
return (0);
|
||||
|
||||
if (mac->mac_phy.rev >= 3) {
|
||||
if (!init)
|
||||
return;
|
||||
return (0);
|
||||
if (0 /* FIXME */) {
|
||||
bwn_ntab_write(mac, BWN_NTAB16(9, 2), 0x211);
|
||||
bwn_ntab_write(mac, BWN_NTAB16(9, 3), 0x222);
|
||||
@ -6135,7 +6182,8 @@ static void bwn_nphy_superswitch_init(struct bwn_mac *mac, bool init)
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_GPIO_LOOEN, 0);
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_GPIO_HIOEN, 0);
|
||||
|
||||
siba_gpio_set(sc->sc_dev, 0xfc00);
|
||||
if ((error = bwn_gpio_control(mac, 0xfc00)))
|
||||
return (error);
|
||||
|
||||
BWN_WRITE_SETMASK4(mac, BWN_MACCTL, ~BWN_MACCTL_GPOUT_MASK, 0);
|
||||
BWN_WRITE_SETMASK2(mac, BWN_GPIO_MASK, ~0, 0xFC00);
|
||||
@ -6149,6 +6197,8 @@ static void bwn_nphy_superswitch_init(struct bwn_mac *mac, bool init)
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_RFCTL_LUT_TRSW_UP2, 0x301);
|
||||
}
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/Init/N */
|
||||
@ -6159,6 +6209,7 @@ static int bwn_phy_initn(struct bwn_mac *mac)
|
||||
struct bwn_phy_n *nphy = phy->phy_n;
|
||||
uint8_t tx_pwr_state;
|
||||
struct bwn_nphy_txgains target;
|
||||
int error;
|
||||
uint16_t tmp;
|
||||
bwn_band_t tmp2;
|
||||
bool do_rssi_cal;
|
||||
@ -6166,15 +6217,28 @@ static int bwn_phy_initn(struct bwn_mac *mac)
|
||||
uint16_t clip[2];
|
||||
bool do_cal = false;
|
||||
|
||||
if (mac->mac_phy.rev >= 3) {
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, BHND_NVAR_TSSIPOS2G,
|
||||
&nphy->tsspos_2g);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "Error reading %s from "
|
||||
"NVRAM: %d\n", BHND_NVAR_TSSIPOS2G, error);
|
||||
return (error);
|
||||
}
|
||||
} else {
|
||||
nphy->tsspos_2g = 0;
|
||||
}
|
||||
|
||||
if ((mac->mac_phy.rev >= 3) &&
|
||||
(siba_sprom_get_bf_lo(sc->sc_dev) & BWN_BFL_EXTLNA) &&
|
||||
(bwn_current_band(mac) == BWN_BAND_2G)) {
|
||||
siba_cc_set32(sc->sc_dev, SIBA_CC_CHIPCTL, 0x40);
|
||||
(sc->sc_board_info.board_flags & BHND_BFL_EXTLNA) &&
|
||||
(bwn_current_band(mac) == BWN_BAND_2G))
|
||||
{
|
||||
BHND_CHIPC_WRITE_CHIPCTRL(sc->sc_chipc, 0x40, 0x40);
|
||||
}
|
||||
nphy->use_int_tx_iq_lo_cal = bwn_nphy_ipa(mac) ||
|
||||
phy->rev >= 7 ||
|
||||
(phy->rev >= 5 &&
|
||||
siba_sprom_get_bf2_hi(sc->sc_dev) & BWN_BFH2_INTERNDET_TXIQCAL);
|
||||
sc->sc_board_info.board_flags2 & BHND_BFL2_INTERNDET_TXIQCAL);
|
||||
nphy->deaf_count = 0;
|
||||
bwn_nphy_tables_init(mac);
|
||||
nphy->crsminpwr_adjusted = false;
|
||||
@ -6221,9 +6285,9 @@ static int bwn_phy_initn(struct bwn_mac *mac)
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_AFESEQ_TX2RX_PUD_20M, 0x20);
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_AFESEQ_TX2RX_PUD_40M, 0x20);
|
||||
|
||||
if (siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_SKWRKFEM_BRD ||
|
||||
(siba_get_pci_subvendor(sc->sc_dev) == PCI_VENDOR_APPLE &&
|
||||
siba_get_pci_subdevice(sc->sc_dev) == BCMA_BOARD_TYPE_BCM943224M93))
|
||||
if (sc->sc_board_info.board_flags2 & BHND_BFL2_SKWRKFEM_BRD ||
|
||||
(sc->sc_board_info.board_vendor == PCI_VENDOR_APPLE &&
|
||||
sc->sc_board_info.board_type == BHND_BOARD_BCM943224M93))
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_TXREALFD, 0xA0);
|
||||
else
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_TXREALFD, 0xB8);
|
||||
@ -6254,7 +6318,8 @@ static int bwn_phy_initn(struct bwn_mac *mac)
|
||||
bwn_nphy_ext_pa_set_tx_dig_filters(mac);
|
||||
}
|
||||
|
||||
bwn_nphy_workarounds(mac);
|
||||
if ((error = bwn_nphy_workarounds(mac)))
|
||||
return (error);
|
||||
|
||||
/* Reset CCA, in init code it differs a little from standard way */
|
||||
bwn_phy_force_clock(mac, 1);
|
||||
@ -6279,7 +6344,8 @@ static int bwn_phy_initn(struct bwn_mac *mac)
|
||||
|
||||
tx_pwr_state = nphy->txpwrctrl;
|
||||
bwn_nphy_tx_power_ctrl(mac, false);
|
||||
bwn_nphy_tx_power_fix(mac);
|
||||
if ((error = bwn_nphy_tx_power_fix(mac)))
|
||||
return (error);
|
||||
bwn_nphy_tx_power_ctl_idle_tssi(mac);
|
||||
bwn_nphy_tx_power_ctl_setup(mac);
|
||||
bwn_nphy_tx_gain_table_upload(mac);
|
||||
@ -6316,8 +6382,11 @@ static int bwn_phy_initn(struct bwn_mac *mac)
|
||||
if (do_cal) {
|
||||
target = bwn_nphy_get_tx_gains(mac);
|
||||
|
||||
if (nphy->antsel_type == 2)
|
||||
bwn_nphy_superswitch_init(mac, true);
|
||||
if (nphy->antsel_type == 2) {
|
||||
error = bwn_nphy_superswitch_init(mac, true);
|
||||
if (error)
|
||||
return (error);
|
||||
}
|
||||
if (nphy->perical != 2) {
|
||||
bwn_nphy_rssi_cal(mac);
|
||||
if (phy->rev >= 3) {
|
||||
@ -6367,16 +6436,28 @@ static void bwn_chantab_phy_upload(struct bwn_mac *mac,
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PmuSpurAvoid */
|
||||
static void bwn_nphy_pmu_spur_avoid(struct bwn_mac *mac, bool avoid)
|
||||
static void bwn_nphy_pmu_spur_avoid(struct bwn_mac *mac,
|
||||
bhnd_pmu_spuravoid mode)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
int error;
|
||||
|
||||
DPRINTF(sc, BWN_DEBUG_RESET, "%s: spuravoid %d\n", __func__, avoid);
|
||||
siba_pmu_spuravoid_pllupdate(sc->sc_dev, avoid);
|
||||
DPRINTF(sc, BWN_DEBUG_RESET, "%s: spuravoid %d\n", __func__, mode);
|
||||
|
||||
if (sc->sc_pmu == NULL) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "no PMU; cannot configure spurious "
|
||||
"signal avoidance\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if ((error = bhnd_pmu_request_spuravoid(sc->sc_pmu, mode))) {
|
||||
device_printf(sc->sc_dev, "spuravoid request failed: %d",
|
||||
error);
|
||||
}
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/ChanspecSetup */
|
||||
static void bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
static int bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
const struct bwn_phy_n_sfo_cfg *e,
|
||||
struct ieee80211_channel *new_channel)
|
||||
{
|
||||
@ -6384,6 +6465,7 @@ static void bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
struct bwn_phy_n *nphy = mac->mac_phy.phy_n;
|
||||
int ch = new_channel->ic_ieee;
|
||||
int error;
|
||||
uint16_t tmp16;
|
||||
|
||||
if (bwn_channel_band(mac, new_channel) == BWN_BAND_5G) {
|
||||
@ -6422,8 +6504,10 @@ static void bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
BWN_PHY_MASK(mac, BWN_PHY_B_TEST, ~0x840);
|
||||
}
|
||||
|
||||
if (!nphy->txpwrctrl)
|
||||
bwn_nphy_tx_power_fix(mac);
|
||||
if (!nphy->txpwrctrl) {
|
||||
if ((error = bwn_nphy_tx_power_fix(mac)))
|
||||
return (error);
|
||||
}
|
||||
|
||||
if (mac->mac_phy.rev < 3)
|
||||
bwn_nphy_adjust_lna_gain_table(mac);
|
||||
@ -6432,10 +6516,10 @@ static void bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
|
||||
if (mac->mac_phy.rev >= 3 &&
|
||||
mac->mac_phy.phy_n->spur_avoid != BWN_SPUR_AVOID_DISABLE) {
|
||||
uint8_t spuravoid = 0;
|
||||
bhnd_pmu_spuravoid spuravoid = BHND_PMU_SPURAVOID_NONE;
|
||||
|
||||
if (mac->mac_phy.phy_n->spur_avoid == BWN_SPUR_AVOID_FORCE) {
|
||||
spuravoid = 1;
|
||||
spuravoid = BHND_PMU_SPURAVOID_M1;
|
||||
} else if (phy->rev >= 19) {
|
||||
/* TODO */
|
||||
} else if (phy->rev >= 18) {
|
||||
@ -6447,19 +6531,20 @@ static void bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
} else if (phy->rev >= 7) {
|
||||
if (!bwn_is_40mhz(mac)) { /* 20MHz */
|
||||
if (ch == 13 || ch == 14 || ch == 153)
|
||||
spuravoid = 1;
|
||||
spuravoid = BHND_PMU_SPURAVOID_M1;
|
||||
} else { /* 40 MHz */
|
||||
if (ch == 54)
|
||||
spuravoid = 1;
|
||||
spuravoid = BHND_PMU_SPURAVOID_M1;
|
||||
}
|
||||
} else {
|
||||
if (!bwn_is_40mhz(mac)) { /* 20MHz */
|
||||
if ((ch >= 5 && ch <= 8) || ch == 13 || ch == 14)
|
||||
spuravoid = 1;
|
||||
spuravoid = BHND_PMU_SPURAVOID_M1;
|
||||
} else { /* 40MHz */
|
||||
if (nphy->aband_spurwar_en &&
|
||||
(ch == 38 || ch == 102 || ch == 118))
|
||||
spuravoid = siba_get_chipid(sc->sc_dev) == 0x4716;
|
||||
(ch == 38 || ch == 102 || ch == 118) &&
|
||||
sc->sc_cid.chip_id == BHND_CHIPID_BCM4716)
|
||||
spuravoid = BHND_PMU_SPURAVOID_M1;
|
||||
}
|
||||
}
|
||||
|
||||
@ -6470,7 +6555,7 @@ static void bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
if (mac->mac_phy.rev == 3 || mac->mac_phy.rev == 4)
|
||||
bwn_wireless_core_phy_pll_reset(mac);
|
||||
|
||||
if (spuravoid)
|
||||
if (spuravoid != BHND_PMU_SPURAVOID_NONE)
|
||||
BWN_PHY_SET(mac, BWN_NPHY_BBCFG, BWN_NPHY_BBCFG_RSTRX);
|
||||
else
|
||||
BWN_PHY_MASK(mac, BWN_NPHY_BBCFG,
|
||||
@ -6485,6 +6570,8 @@ static void bwn_nphy_channel_setup(struct bwn_mac *mac,
|
||||
|
||||
if (phy->rev >= 3)
|
||||
bwn_nphy_spur_workaround(mac);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/SetChanspec */
|
||||
@ -6499,6 +6586,7 @@ static int bwn_nphy_set_channel(struct bwn_mac *mac,
|
||||
const struct bwn_nphy_chantabent_rev7 *tabent_r7 = NULL;
|
||||
const struct bwn_nphy_chantabent_rev7_2g *tabent_r7_2g = NULL;
|
||||
|
||||
int error;
|
||||
uint8_t tmp;
|
||||
|
||||
if (phy->rev >= 19) {
|
||||
@ -6545,6 +6633,7 @@ static int bwn_nphy_set_channel(struct bwn_mac *mac,
|
||||
|
||||
if (phy->rev >= 19) {
|
||||
/* TODO */
|
||||
error = ENODEV;
|
||||
} else if (phy->rev >= 7) {
|
||||
const struct bwn_phy_n_sfo_cfg *phy_regs = tabent_r7 ?
|
||||
&(tabent_r7->phy_regs) : &(tabent_r7_2g->phy_regs);
|
||||
@ -6556,20 +6645,22 @@ static int bwn_nphy_set_channel(struct bwn_mac *mac,
|
||||
}
|
||||
|
||||
bwn_radio_2057_setup(mac, tabent_r7, tabent_r7_2g);
|
||||
bwn_nphy_channel_setup(mac, phy_regs, channel);
|
||||
error = bwn_nphy_channel_setup(mac, phy_regs, channel);
|
||||
} else if (phy->rev >= 3) {
|
||||
tmp = (bwn_channel_band(mac, channel) == BWN_BAND_5G) ? 4 : 0;
|
||||
BWN_RF_SETMASK(mac, 0x08, 0xFFFB, tmp);
|
||||
bwn_radio_2056_setup(mac, tabent_r3);
|
||||
bwn_nphy_channel_setup(mac, &(tabent_r3->phy_regs), channel);
|
||||
error = bwn_nphy_channel_setup(mac, &(tabent_r3->phy_regs),
|
||||
channel);
|
||||
} else {
|
||||
tmp = (bwn_channel_band(mac, channel) == BWN_BAND_5G) ? 0x0020 : 0x0050;
|
||||
BWN_RF_SETMASK(mac, B2055_MASTER1, 0xFF8F, tmp);
|
||||
bwn_radio_2055_setup(mac, tabent_r2);
|
||||
bwn_nphy_channel_setup(mac, &(tabent_r2->phy_regs), channel);
|
||||
error = bwn_nphy_channel_setup(mac, &(tabent_r2->phy_regs),
|
||||
channel);
|
||||
}
|
||||
|
||||
return 0;
|
||||
return (error);
|
||||
}
|
||||
|
||||
/**************************************************
|
||||
@ -6590,12 +6681,13 @@ bwn_nphy_op_allocate(struct bwn_mac *mac)
|
||||
return 0;
|
||||
}
|
||||
|
||||
void
|
||||
int
|
||||
bwn_nphy_op_prepare_structs(struct bwn_mac *mac)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
struct bwn_phy_n *nphy = phy->phy_n;
|
||||
int error;
|
||||
|
||||
memset(nphy, 0, sizeof(*nphy));
|
||||
|
||||
@ -6615,28 +6707,46 @@ bwn_nphy_op_prepare_structs(struct bwn_mac *mac)
|
||||
nphy->txpwrctrl = false;
|
||||
nphy->pwg_gain_5ghz = false;
|
||||
if (mac->mac_phy.rev >= 3 ||
|
||||
(siba_get_pci_subvendor(sc->sc_dev) == PCI_VENDOR_APPLE &&
|
||||
(siba_get_revid(sc->sc_dev) == 11 || siba_get_revid(sc->sc_dev) == 12))) {
|
||||
(sc->sc_board_info.board_vendor == PCI_VENDOR_APPLE &&
|
||||
(bhnd_get_hwrev(sc->sc_dev) == 11 || bhnd_get_hwrev(sc->sc_dev) == 12))) {
|
||||
nphy->txpwrctrl = true;
|
||||
nphy->pwg_gain_5ghz = true;
|
||||
} else if (siba_sprom_get_rev(sc->sc_dev) >= 4) {
|
||||
} else if (sc->sc_board_info.board_srom_rev >= 4) {
|
||||
if (mac->mac_phy.rev >= 2 &&
|
||||
(siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_TXPWRCTRL_EN)) {
|
||||
(sc->sc_board_info.board_flags2 & BHND_BFL2_TXPWRCTRL_EN)) {
|
||||
nphy->txpwrctrl = true;
|
||||
if (siba_get_type(sc->sc_dev) == SIBA_TYPE_PCI) {
|
||||
if ((siba_get_pci_device(sc->sc_dev) == 0x4328) ||
|
||||
(siba_get_pci_device(sc->sc_dev) == 0x432a))
|
||||
nphy->pwg_gain_5ghz = true;
|
||||
}
|
||||
} else if (siba_sprom_get_bf2_lo(sc->sc_dev) & BWN_BFL2_5G_PWRGAIN) {
|
||||
if ((sc->sc_board_info.board_devid == PCI_DEVID_BCM4321_D11N) ||
|
||||
(sc->sc_board_info.board_devid == PCI_DEVID_BCM4321_D11N5G))
|
||||
nphy->pwg_gain_5ghz = true;
|
||||
} else if (sc->sc_board_info.board_flags2 & BHND_BFL2_5G_PWRGAIN) {
|
||||
nphy->pwg_gain_5ghz = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (mac->mac_phy.rev >= 3) {
|
||||
nphy->ipa2g_on = siba_sprom_get_fem_2ghz_extpa_gain(sc->sc_dev) == 2;
|
||||
nphy->ipa5g_on = siba_sprom_get_fem_5ghz_extpa_gain(sc->sc_dev) == 2;
|
||||
uint8_t extpa_gain2g, extpa_gain5g;
|
||||
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev,
|
||||
BHND_NVAR_EXTPAGAIN2G, &extpa_gain2g);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "Error reading 2GHz EPA "
|
||||
"gain configuration from NVRAM: %d\n", error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev,
|
||||
BHND_NVAR_EXTPAGAIN5G, &extpa_gain5g);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "Error reading 5GHz EPA "
|
||||
"gain configuration from NVRAM: %d\n", error);
|
||||
return (error);
|
||||
}
|
||||
|
||||
nphy->ipa2g_on = (extpa_gain2g == 2);
|
||||
nphy->ipa5g_on = (extpa_gain5g == 2);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -136,6 +136,7 @@ struct bwn_phy_n {
|
||||
struct bwn_ppr tx_pwr_max_ppr;
|
||||
uint16_t tx_pwr_last_recalc_freq;
|
||||
int tx_pwr_last_recalc_limit;
|
||||
uint8_t tsspos_2g;
|
||||
|
||||
uint8_t txrx_chain;
|
||||
uint16_t tx_rx_cal_phy_saveregs[11];
|
||||
@ -167,7 +168,7 @@ struct bwn_phy_n {
|
||||
|
||||
extern bwn_txpwr_result_t bwn_nphy_op_recalc_txpower(struct bwn_mac *mac, bool ignore_tssi);
|
||||
extern int bwn_nphy_op_allocate(struct bwn_mac *mac);
|
||||
extern void bwn_nphy_op_prepare_structs(struct bwn_mac *mac);
|
||||
extern int bwn_nphy_op_prepare_structs(struct bwn_mac *mac);
|
||||
extern void bwn_nphy_op_free(struct bwn_mac *mac);
|
||||
extern int bwn_nphy_op_init(struct bwn_mac *mac);
|
||||
extern void bwn_nphy_op_maskset(struct bwn_mac *mac, uint16_t reg, uint16_t mask, uint16_t set);
|
||||
|
@ -67,6 +67,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
#include <dev/bhnd/cores/pmu/bhnd_pmu.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
#include <dev/bwn/if_bwn_debug.h>
|
||||
@ -74,8 +77,11 @@ __FBSDID("$FreeBSD$");
|
||||
#include <dev/bwn/if_bwn_phy_common.h>
|
||||
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_regs.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_sprom.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_ppr.h>
|
||||
|
||||
#include "bhnd_nvram_map.h"
|
||||
|
||||
#define ppr_for_each_entry(ppr, i, entry) \
|
||||
for (i = 0, entry = &(ppr)->__all_rates[i]; \
|
||||
i < BWN_PPR_RATES_NUM; \
|
||||
@ -136,18 +142,21 @@ bool bwn_ppr_load_max_from_sprom(struct bwn_mac *mac, struct bwn_ppr *ppr,
|
||||
bwn_phy_band_t band)
|
||||
{
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct siba_sprom_core_pwr_info core_pwr_info[4];
|
||||
struct bwn_phy_n_core_pwr_info core_pwr_info[4];
|
||||
struct bwn_ppr_rates *rates = &ppr->rates;
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
const char *var_ofdmgpo, *var_mcsgpo_prefix;
|
||||
uint8_t maxpwr, off;
|
||||
uint32_t sprom_ofdm_po;
|
||||
uint16_t sprom_mcs_po[8];
|
||||
uint16_t cddpo, stbcpo;
|
||||
uint8_t extra_cdd_po, extra_stbc_po;
|
||||
int error;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 4; i++) {
|
||||
bzero(&core_pwr_info[i], sizeof(core_pwr_info[i]));
|
||||
if (siba_sprom_get_core_power_info(sc->sc_dev, i,
|
||||
if (bwn_nphy_get_core_power_info(mac, i,
|
||||
&core_pwr_info[i]) != 0) {
|
||||
BWN_ERRPRINTF(mac->mac_sc,
|
||||
"%s: failed to get core_pwr_info for core %d\n",
|
||||
@ -156,38 +165,53 @@ bool bwn_ppr_load_max_from_sprom(struct bwn_mac *mac, struct bwn_ppr *ppr,
|
||||
}
|
||||
}
|
||||
|
||||
error = bhnd_nvram_getvar_uint16(sc->sc_dev, BHND_NVAR_CDDPO, &cddpo);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "NVRAM variable %s unreadable: %d\n",
|
||||
BHND_NVAR_CDDPO, error);
|
||||
return (false);
|
||||
}
|
||||
|
||||
error = bhnd_nvram_getvar_uint16(sc->sc_dev, BHND_NVAR_STBCPO, &stbcpo);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "NVRAM variable %s unreadable: %d\n",
|
||||
BHND_NVAR_STBCPO, error);
|
||||
return (false);
|
||||
}
|
||||
|
||||
switch (band) {
|
||||
case BWN_PHY_BAND_2G:
|
||||
maxpwr = min(core_pwr_info[0].maxpwr_2g,
|
||||
core_pwr_info[1].maxpwr_2g);
|
||||
sprom_ofdm_po = siba_sprom_get_ofdm2gpo(sc->sc_dev);
|
||||
siba_sprom_get_mcs2gpo(sc->sc_dev, sprom_mcs_po);
|
||||
extra_cdd_po = (siba_sprom_get_cddpo(sc->sc_dev) >> 0) & 0xf;
|
||||
extra_stbc_po = (siba_sprom_get_stbcpo(sc->sc_dev) >> 0) & 0xf;
|
||||
|
||||
var_ofdmgpo = BHND_NVAR_OFDM2GPO;
|
||||
var_mcsgpo_prefix = "mcs2gpo";
|
||||
extra_cdd_po = (cddpo >> 0) & 0xf;
|
||||
extra_stbc_po = (stbcpo >> 0) & 0xf;
|
||||
break;
|
||||
case BWN_PHY_BAND_5G_LO:
|
||||
maxpwr = min(core_pwr_info[0].maxpwr_5gl,
|
||||
core_pwr_info[1].maxpwr_5gl);
|
||||
sprom_ofdm_po = siba_sprom_get_ofdm5glpo(sc->sc_dev);
|
||||
siba_sprom_get_mcs5glpo(sc->sc_dev, sprom_mcs_po);
|
||||
extra_cdd_po = (siba_sprom_get_cddpo(sc->sc_dev) >> 8) & 0xf;
|
||||
extra_stbc_po = (siba_sprom_get_stbcpo(sc->sc_dev) >> 8) & 0xf;
|
||||
var_ofdmgpo = BHND_NVAR_OFDM5GLPO;
|
||||
var_mcsgpo_prefix = "mcs5glpo";
|
||||
extra_cdd_po = (cddpo >> 8) & 0xf;
|
||||
extra_stbc_po = (stbcpo >> 8) & 0xf;
|
||||
break;
|
||||
case BWN_PHY_BAND_5G_MI:
|
||||
maxpwr = min(core_pwr_info[0].maxpwr_5g,
|
||||
core_pwr_info[1].maxpwr_5g);
|
||||
sprom_ofdm_po = siba_sprom_get_ofdm5gpo(sc->sc_dev);
|
||||
siba_sprom_get_mcs5gpo(sc->sc_dev, sprom_mcs_po);
|
||||
extra_cdd_po = (siba_sprom_get_cddpo(sc->sc_dev) >> 4) & 0xf;
|
||||
extra_stbc_po = (siba_sprom_get_stbcpo(sc->sc_dev) >> 4) & 0xf;
|
||||
var_ofdmgpo = BHND_NVAR_OFDM5GPO;
|
||||
var_mcsgpo_prefix = "mcs5gpo";
|
||||
extra_cdd_po = (cddpo >> 4) & 0xf;
|
||||
extra_stbc_po = (stbcpo >> 4) & 0xf;
|
||||
break;
|
||||
case BWN_PHY_BAND_5G_HI:
|
||||
maxpwr = min(core_pwr_info[0].maxpwr_5gh,
|
||||
core_pwr_info[1].maxpwr_5gh);
|
||||
sprom_ofdm_po = siba_sprom_get_ofdm5ghpo(sc->sc_dev);
|
||||
siba_sprom_get_mcs5ghpo(sc->sc_dev, sprom_mcs_po);
|
||||
extra_cdd_po = (siba_sprom_get_cddpo(sc->sc_dev) >> 12) & 0xf;
|
||||
extra_stbc_po = (siba_sprom_get_stbcpo(sc->sc_dev) >> 12) & 0xf;
|
||||
var_ofdmgpo = BHND_NVAR_OFDM5GHPO;
|
||||
var_mcsgpo_prefix = "mcs5ghpo";
|
||||
extra_cdd_po = (cddpo >> 12) & 0xf;
|
||||
extra_stbc_po = (stbcpo >> 12) & 0xf;
|
||||
break;
|
||||
default:
|
||||
device_printf(mac->mac_sc->sc_dev, "%s: invalid band (%d)\n",
|
||||
@ -196,9 +220,48 @@ bool bwn_ppr_load_max_from_sprom(struct bwn_mac *mac, struct bwn_ppr *ppr,
|
||||
return false;
|
||||
}
|
||||
|
||||
error = bhnd_nvram_getvar_uint32(sc->sc_dev, var_ofdmgpo,
|
||||
&sprom_ofdm_po);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "NVRAM variable %s unreadable: %d\n",
|
||||
var_ofdmgpo, error);
|
||||
return (false);
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < nitems(sprom_mcs_po); i++) {
|
||||
char var[strlen(var_mcsgpo_prefix) + sizeof("XX")];
|
||||
int ret;
|
||||
|
||||
/* mcs[25]g[lh]?po[0-9] */
|
||||
ret = snprintf(var, sizeof(var), "%s%zu", var_mcsgpo_prefix, i);
|
||||
if (ret >= sizeof(var)) {
|
||||
device_printf(sc->sc_dev, "buffer too small for "
|
||||
"%s%zu\n", var_mcsgpo_prefix, i);
|
||||
return (false);
|
||||
}
|
||||
|
||||
error = bhnd_nvram_getvar_uint16(sc->sc_dev, var,
|
||||
&sprom_mcs_po[i]);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "NVRAM variable %s "
|
||||
"unreadable: %d\n", var, error);
|
||||
return (false);
|
||||
}
|
||||
}
|
||||
|
||||
if (band == BWN_BAND_2G) {
|
||||
uint16_t ck2gpo;
|
||||
|
||||
error = bhnd_nvram_getvar_uint16(sc->sc_dev, BHND_NVAR_CCK2GPO,
|
||||
&ck2gpo);
|
||||
if (error) {
|
||||
device_printf(sc->sc_dev, "NVRAM variable %s "
|
||||
"unreadable: %d\n", BHND_NVAR_CCK2GPO, error);
|
||||
return (false);
|
||||
}
|
||||
|
||||
for (i = 0; i < 4; i++) {
|
||||
off = ((siba_sprom_get_cck2gpo(sc->sc_dev) >> (i * 4)) & 0xf) * 2;
|
||||
off = ((ck2gpo >> (i * 4)) & 0xf) * 2;
|
||||
rates->cck[i] = maxpwr - off;
|
||||
}
|
||||
}
|
||||
|
181
sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_sprom.c
Normal file
181
sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_sprom.c
Normal file
@ -0,0 +1,181 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*
|
||||
* Copyright (c) 2016 Landon Fuller <landonf@FreeBSD.org>
|
||||
* Copyright (c) 2017 The FreeBSD Foundation
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer,
|
||||
* without modification.
|
||||
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
||||
* similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
|
||||
* redistribution must be conditioned upon including a substantially
|
||||
* similar Disclaimer requirement for further binary redistribution.
|
||||
*
|
||||
* NO WARRANTY
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
||||
* THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
|
||||
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
||||
* THE POSSIBILITY OF SUCH DAMAGES.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
#include <net/ethernet.h>
|
||||
#include <net/if.h>
|
||||
#include <net/if_var.h>
|
||||
#include <net/if_arp.h>
|
||||
#include <net/if_dl.h>
|
||||
#include <net/if_llc.h>
|
||||
#include <net/if_media.h>
|
||||
#include <net/if_types.h>
|
||||
|
||||
#include <net80211/ieee80211_var.h>
|
||||
#include <net80211/ieee80211_radiotap.h>
|
||||
#include <net80211/ieee80211_regdomain.h>
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
|
||||
#include "if_bwn_phy_n_sprom.h"
|
||||
|
||||
#include "bhnd_nvram_map.h"
|
||||
|
||||
|
||||
/* Core power NVRAM variables, indexed by D11 core unit number */
|
||||
static const struct bwn_nphy_power_vars {
|
||||
const char *itt2ga;
|
||||
const char *itt5ga;
|
||||
const char *maxp2ga;
|
||||
const char *pa2ga;
|
||||
const char *pa5ga;
|
||||
} bwn_nphy_power_vars[BWN_NPHY_NUM_CORE_PWR] = {
|
||||
#define BHND_POWER_NVAR(_idx) \
|
||||
{ BHND_NVAR_ITT2GA ## _idx, BHND_NVAR_ITT5GA ## _idx, \
|
||||
BHND_NVAR_MAXP2GA ## _idx, BHND_NVAR_PA2GA ## _idx, \
|
||||
BHND_NVAR_PA5GA ## _idx }
|
||||
BHND_POWER_NVAR(0),
|
||||
BHND_POWER_NVAR(1),
|
||||
BHND_POWER_NVAR(2),
|
||||
BHND_POWER_NVAR(3)
|
||||
#undef BHND_POWER_NVAR
|
||||
};
|
||||
|
||||
static int
|
||||
bwn_nphy_get_core_power_info_r11(struct bwn_softc *sc,
|
||||
const struct bwn_nphy_power_vars *v, struct bwn_phy_n_core_pwr_info *c)
|
||||
{
|
||||
int16_t pa5ga[12];
|
||||
int error;
|
||||
|
||||
/* BHND_NVAR_PA2GA[core] */
|
||||
error = bhnd_nvram_getvar_array(sc->sc_dev, v->pa2ga, c->pa_2g,
|
||||
sizeof(c->pa_2g), BHND_NVRAM_TYPE_INT16);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
/*
|
||||
* BHND_NVAR_PA5GA
|
||||
*
|
||||
* The NVRAM variable is defined as a single pa5ga[12] array; we have
|
||||
* to split this into pa_5gl[4], pa_5g[4], and pa_5gh[4] for use
|
||||
* by bwn(4);
|
||||
*/
|
||||
_Static_assert(nitems(pa5ga) == nitems(c->pa_5g) + nitems(c->pa_5gh) +
|
||||
nitems(c->pa_5gl), "cannot split pa5ga into pa_5gl/pa_5g/pa_5gh");
|
||||
|
||||
error = bhnd_nvram_getvar_array(sc->sc_dev, v->pa5ga, pa5ga,
|
||||
sizeof(pa5ga), BHND_NVRAM_TYPE_INT16);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
memcpy(c->pa_5gl, &pa5ga[0], sizeof(c->pa_5gl));
|
||||
memcpy(c->pa_5g, &pa5ga[4], sizeof(c->pa_5g));
|
||||
memcpy(c->pa_5gh, &pa5ga[8], sizeof(c->pa_5gh));
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
bwn_nphy_get_core_power_info_r4_r10(struct bwn_softc *sc,
|
||||
const struct bwn_nphy_power_vars *v, struct bwn_phy_n_core_pwr_info *c)
|
||||
{
|
||||
int error;
|
||||
|
||||
/* BHND_NVAR_ITT2GA[core] */
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, v->itt2ga, &c->itssi_2g);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
/* BHND_NVAR_ITT5GA[core] */
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, v->itt5ga, &c->itssi_5g);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* siba_sprom_get_core_power_info()
|
||||
*
|
||||
* Referenced by:
|
||||
* bwn_nphy_tx_power_ctl_setup()
|
||||
* bwn_ppr_load_max_from_sprom()
|
||||
*/
|
||||
int
|
||||
bwn_nphy_get_core_power_info(struct bwn_mac *mac, int core,
|
||||
struct bwn_phy_n_core_pwr_info *c)
|
||||
{
|
||||
struct bwn_softc *sc;
|
||||
const struct bwn_nphy_power_vars *v;
|
||||
uint8_t sromrev;
|
||||
int error;
|
||||
|
||||
sc = mac->mac_sc;
|
||||
|
||||
if (core < 0 || core >= nitems(bwn_nphy_power_vars))
|
||||
return (EINVAL);
|
||||
|
||||
sromrev = sc->sc_board_info.board_srom_rev;
|
||||
if (sromrev < 4)
|
||||
return (ENXIO);
|
||||
|
||||
v = &bwn_nphy_power_vars[core];
|
||||
|
||||
/* Any power variables not found in NVRAM (or returning a
|
||||
* shorter array for a particular NVRAM revision) should be zero
|
||||
* initialized */
|
||||
memset(c, 0x0, sizeof(*c));
|
||||
|
||||
/* Populate SPROM revision-independent values */
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, v->maxp2ga, &c->maxpwr_2g);
|
||||
if (error)
|
||||
return (error);
|
||||
|
||||
/* Populate SPROM revision-specific values */
|
||||
if (sromrev >= 4 && sromrev <= 10)
|
||||
return (bwn_nphy_get_core_power_info_r4_r10(sc, v, c));
|
||||
else
|
||||
return (bwn_nphy_get_core_power_info_r11(sc, v, c));
|
||||
}
|
56
sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_sprom.h
Normal file
56
sys/gnu/dev/bwn/phy_n/if_bwn_phy_n_sprom.h
Normal file
@ -0,0 +1,56 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*
|
||||
* Copyright (c) 2017 The FreeBSD Foundation
|
||||
* Copyright (c) 2016 Landon J. Fuller <landonf@FreeBSD.org>
|
||||
* Copyright (c) 2007 Bruce M. Simpson.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _IF_BWN_PHY_N_SPROM_H_
|
||||
#define _IF_BWN_PHY_N_SPROM_H_
|
||||
|
||||
struct bwn_mac;
|
||||
|
||||
#define BWN_NPHY_NUM_CORE_PWR 4
|
||||
|
||||
struct bwn_phy_n_core_pwr_info {
|
||||
uint8_t itssi_2g;
|
||||
uint8_t itssi_5g;
|
||||
uint8_t maxpwr_2g;
|
||||
uint8_t maxpwr_5gl;
|
||||
uint8_t maxpwr_5g;
|
||||
uint8_t maxpwr_5gh;
|
||||
int16_t pa_2g[3];
|
||||
int16_t pa_5gl[4];
|
||||
int16_t pa_5g[4];
|
||||
int16_t pa_5gh[4];
|
||||
};
|
||||
|
||||
int bwn_nphy_get_core_power_info(struct bwn_mac *mac, int core,
|
||||
struct bwn_phy_n_core_pwr_info *c);
|
||||
|
||||
#endif /* _IF_BWN_PHY_N_SPROM_H_ */
|
@ -68,6 +68,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <net80211/ieee80211_phy.h>
|
||||
#include <net80211/ieee80211_ratectl.h>
|
||||
|
||||
#include <dev/bhnd/bhnd.h>
|
||||
#include <dev/bhnd/bhnd_ids.h>
|
||||
|
||||
#include <dev/bwn/if_bwnreg.h>
|
||||
#include <dev/bwn/if_bwnvar.h>
|
||||
#include <dev/bwn/if_bwn_debug.h>
|
||||
@ -77,6 +80,8 @@ __FBSDID("$FreeBSD$");
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_tables.h>
|
||||
#include <gnu/dev/bwn/phy_n/if_bwn_phy_n_core.h>
|
||||
|
||||
#include "bhnd_nvram_map.h"
|
||||
|
||||
static const uint8_t bwn_ntab_adjustpower0[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
@ -3418,8 +3423,8 @@ void bwn_ntab_read_bulk(struct bwn_mac *mac, uint32_t offset,
|
||||
|
||||
for (i = 0; i < nr_elements; i++) {
|
||||
/* Auto increment broken + caching issue on BCM43224? */
|
||||
if (siba_get_chipid(sc->sc_dev) == 43224 &&
|
||||
siba_get_revid(sc->sc_dev) == 1) {
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM43224 &&
|
||||
bhnd_get_hwrev(sc->sc_dev) == 1) {
|
||||
BWN_PHY_READ(mac, BWN_NPHY_TABLE_DATALO);
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_TABLE_ADDR, offset + i);
|
||||
}
|
||||
@ -3504,8 +3509,8 @@ void bwn_ntab_write_bulk(struct bwn_mac *mac, uint32_t offset,
|
||||
for (i = 0; i < nr_elements; i++) {
|
||||
/* Auto increment broken + caching issue on BCM43224? */
|
||||
if ((offset >> 10) == 9 &&
|
||||
siba_get_chipid(sc->sc_dev) == 43224 &&
|
||||
siba_get_revid(sc->sc_dev) == 1) {
|
||||
sc->sc_cid.chip_id == BHND_CHIPID_BCM43224 &&
|
||||
bhnd_get_hwrev(sc->sc_dev) == 1) {
|
||||
BWN_PHY_READ(mac, BWN_NPHY_TABLE_DATALO);
|
||||
BWN_PHY_WRITE(mac, BWN_NPHY_TABLE_ADDR, offset + i);
|
||||
}
|
||||
@ -3557,12 +3562,30 @@ static void bwn_nphy_tables_init_shared_lut(struct bwn_mac *mac)
|
||||
ntab_upload(mac, BWN_NTAB_C1_LOFEEDTH_R3, bwn_ntab_loftlt1_r3);
|
||||
}
|
||||
|
||||
static int bwn_nphy_tables_get_antswlut(struct bwn_mac *mac, uint8_t *antswlut)
|
||||
{
|
||||
struct ieee80211com *ic = &mac->mac_sc->sc_ic;
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
const char *antswlut_var;
|
||||
int error;
|
||||
|
||||
if (IEEE80211_IS_CHAN_5GHZ(ic->ic_curchan))
|
||||
antswlut_var = BHND_NVAR_ANTSWCTL5G;
|
||||
else
|
||||
antswlut_var = BHND_NVAR_ANTSWCTL2G;
|
||||
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, antswlut_var, antswlut);
|
||||
if (error)
|
||||
BWN_ERRPRINTF(mac->mac_sc, "NVRAM variable %s unreadable: %d",
|
||||
antswlut_var, error);
|
||||
|
||||
return (error);
|
||||
}
|
||||
|
||||
static void bwn_nphy_tables_init_rev7_volatile(struct bwn_mac *mac)
|
||||
{
|
||||
struct ieee80211com *ic = &mac->mac_sc->sc_ic;
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint8_t antswlut;
|
||||
int core, offset, i;
|
||||
int core, error, offset, i;
|
||||
uint8_t antswlut;
|
||||
|
||||
const int antswlut0_offsets[] = { 0, 4, 8, }; /* Offsets for values */
|
||||
const uint8_t antswlut0_values[][3] = {
|
||||
@ -3570,10 +3593,8 @@ static void bwn_nphy_tables_init_rev7_volatile(struct bwn_mac *mac)
|
||||
{ 0x2, 0x18, 0x2 }, /* Core 1 */
|
||||
};
|
||||
|
||||
if (IEEE80211_IS_CHAN_5GHZ(ic->ic_curchan))
|
||||
antswlut = siba_sprom_get_fem_5ghz_antswlut(sc->sc_dev);
|
||||
else
|
||||
antswlut = siba_sprom_get_fem_2ghz_antswlut(sc->sc_dev);
|
||||
if ((error = bwn_nphy_tables_get_antswlut(mac, &antswlut)))
|
||||
return;
|
||||
|
||||
switch (antswlut) {
|
||||
case 0:
|
||||
@ -3631,14 +3652,11 @@ static void bwn_nphy_tables_init_rev7(struct bwn_mac *mac)
|
||||
|
||||
static void bwn_nphy_tables_init_rev3(struct bwn_mac *mac)
|
||||
{
|
||||
struct ieee80211com *ic = &mac->mac_sc->sc_ic;
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
uint8_t antswlut;
|
||||
int error;
|
||||
uint8_t antswlut;
|
||||
|
||||
if (IEEE80211_IS_CHAN_5GHZ(ic->ic_curchan))
|
||||
antswlut = siba_sprom_get_fem_5ghz_antswlut(sc->sc_dev);
|
||||
else
|
||||
antswlut = siba_sprom_get_fem_2ghz_antswlut(sc->sc_dev);
|
||||
if ((error = bwn_nphy_tables_get_antswlut(mac, &antswlut)))
|
||||
return;
|
||||
|
||||
/* Static tables */
|
||||
if (mac->mac_phy.phy_do_full_init) {
|
||||
@ -3738,7 +3756,7 @@ static const uint32_t *bwn_nphy_get_ipa_gain_table(struct bwn_mac *mac)
|
||||
return bwn_ntab_tx_gain_ipa_2057_rev5_2g;
|
||||
break;
|
||||
case 6:
|
||||
if (siba_get_chipid(sc->sc_dev) == 47162) /* BCM47612 */
|
||||
if (sc->sc_cid.chip_id == BHND_CHIPID_BCM47162)
|
||||
return bwn_ntab_tx_gain_ipa_rev5_2g;
|
||||
return bwn_ntab_tx_gain_ipa_rev6_2g;
|
||||
case 5:
|
||||
@ -3772,7 +3790,8 @@ const uint32_t *bwn_nphy_get_tx_gain_table(struct bwn_mac *mac)
|
||||
struct ieee80211com *ic = &mac->mac_sc->sc_ic;
|
||||
struct bwn_softc *sc = mac->mac_sc;
|
||||
struct bwn_phy *phy = &mac->mac_phy;
|
||||
int is_5ghz;
|
||||
int error, is_5ghz;
|
||||
uint8_t extpa_gain;
|
||||
|
||||
/* XXX ideally we'd have is2, is5, etc */
|
||||
is_5ghz = !! IEEE80211_IS_CHAN_5GHZ(ic->ic_curchan);
|
||||
@ -3790,7 +3809,16 @@ const uint32_t *bwn_nphy_get_tx_gain_table(struct bwn_mac *mac)
|
||||
case 5:
|
||||
return bwn_ntab_tx_gain_epa_rev5_5g;
|
||||
case 4:
|
||||
return siba_sprom_get_fem_5ghz_extpa_gain(sc->sc_dev) == 3 ?
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev,
|
||||
BHND_NVAR_EXTPAGAIN5G, &extpa_gain);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "Error reading EPA "
|
||||
"gain configuration (%s) from NVRAM: %d\n",
|
||||
BHND_NVAR_EXTPAGAIN5G, error);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
return (extpa_gain == 3) ?
|
||||
bwn_ntab_tx_gain_epa_rev4_5g :
|
||||
bwn_ntab_tx_gain_epa_rev4_hi_pwr_5g;
|
||||
case 3:
|
||||
@ -3804,7 +3832,16 @@ const uint32_t *bwn_nphy_get_tx_gain_table(struct bwn_mac *mac)
|
||||
switch (phy->rev) {
|
||||
case 6:
|
||||
case 5:
|
||||
if (siba_sprom_get_fem_5ghz_extpa_gain(sc->sc_dev) == 3)
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev,
|
||||
BHND_NVAR_EXTPAGAIN2G, &extpa_gain);
|
||||
if (error) {
|
||||
BWN_ERRPRINTF(mac->mac_sc, "Error reading EPA "
|
||||
"gain configuration (%s) from NVRAM: %d\n",
|
||||
BHND_NVAR_EXTPAGAIN2G, error);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
if (extpa_gain == 3)
|
||||
return bwn_ntab_tx_gain_epa_rev3_hi_pwr_2g;
|
||||
/* fall through */
|
||||
case 4:
|
||||
@ -3879,7 +3916,13 @@ struct bwn_nphy_gain_ctl_workaround_entry *bwn_nphy_get_gain_ctl_workaround_ent(
|
||||
|
||||
/* Some workarounds to the workarounds... */
|
||||
if (!ghz5) {
|
||||
uint8_t tr_iso = siba_sprom_get_fem_2ghz_tr_iso(sc->sc_dev);
|
||||
uint8_t tr_iso;
|
||||
int error;
|
||||
|
||||
error = bhnd_nvram_getvar_uint8(sc->sc_dev, BHND_NVAR_TRISO2G,
|
||||
&tr_iso);
|
||||
BWN_ERRPRINTF(mac->mac_sc, "Error reading %s from NVRAM: %d\n",
|
||||
BHND_NVAR_TRISO2G, error);
|
||||
|
||||
if (tr_iso > 7)
|
||||
tr_iso = 3;
|
||||
|
@ -73,7 +73,6 @@ SUBDIR= \
|
||||
bridgestp \
|
||||
bwi \
|
||||
bwn \
|
||||
bwn_pci \
|
||||
${_bytgpio} \
|
||||
cam \
|
||||
${_cardbus} \
|
||||
@ -351,7 +350,6 @@ SUBDIR= \
|
||||
sge \
|
||||
${_sgx} \
|
||||
${_sgx_linux} \
|
||||
siba_bwn \
|
||||
siftr \
|
||||
siis \
|
||||
sis \
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
KMOD= if_bwn
|
||||
SRCS= if_bwn.c if_bwnreg.h if_bwnvar.h
|
||||
SRCS+= if_bwn_siba.c if_bwn_bhnd.c if_bwn_siba_compat.c
|
||||
SRCS+= if_bwn_pci.c
|
||||
SRCS+= if_bwn_util.c
|
||||
|
||||
# PHY
|
||||
@ -19,6 +19,10 @@ SRCS+= bhnd_bus_if.h \
|
||||
bhnd_pwrctl_if.h
|
||||
SRCS+= bhnd_nvram_map.h
|
||||
|
||||
# BHNDB
|
||||
SRCS+= bhndb_bus_if.h \
|
||||
bhndb_if.h
|
||||
|
||||
# Other
|
||||
SRCS+= device_if.h bus_if.h gpio_if.h pci_if.h opt_bwn.h opt_wlan.h
|
||||
|
||||
@ -28,6 +32,7 @@ SRCS+= device_if.h bus_if.h gpio_if.h pci_if.h opt_bwn.h opt_wlan.h
|
||||
SRCS.BWN_GPL_PHY+= if_bwn_radio_2055.c
|
||||
SRCS.BWN_GPL_PHY+= if_bwn_radio_2056.c
|
||||
SRCS.BWN_GPL_PHY+= if_bwn_radio_2057.c
|
||||
SRCS.BWN_GPL_PHY+= if_bwn_phy_n_sprom.c
|
||||
SRCS.BWN_GPL_PHY+= if_bwn_phy_n_tables.c
|
||||
SRCS.BWN_GPL_PHY+= if_bwn_phy_n_ppr.c
|
||||
SRCS.BWN_GPL_PHY+= if_bwn_phy_n_core.c
|
||||
|
@ -1,13 +0,0 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${SRCTOP}/sys/dev/bwn
|
||||
|
||||
KMOD= if_bwn_pci
|
||||
SRCS= if_bwn_pci.c
|
||||
|
||||
SRCS+= bhnd_bus_if.h bhndb_bus_if.h \
|
||||
bhndb_if.h
|
||||
SRCS+= device_if.h bus_if.h pci_if.h \
|
||||
opt_bwn.h opt_wlan.h opt_global.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
@ -1,9 +0,0 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${SRCTOP}/sys/dev/siba
|
||||
|
||||
KMOD= siba_bwn
|
||||
SRCS= siba_core.c siba_bwn.c sibareg.h sibavar.h
|
||||
SRCS+= device_if.h bus_if.h pci_if.h opt_siba.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
Loading…
Reference in New Issue
Block a user