wcnss: Add wcnss snapshot to msm-4.19
Add pronto platform driver support in kernel msm-4.19. This is a snapshot of the wcnss driver and associated files as of msm-4.14. Change-Id: I9156c4e03ba4e758face536275395ca0d2ca04fc Signed-off-by: Sandeep Singh <sandsing@codeaurora.org>
This commit is contained in:
@@ -963,3 +963,5 @@ config ICNSS_QMI
|
||||
handshake messages to WLAN FW, which includes hardware capabilities
|
||||
and configurations. It also send WLAN on/off control message to FW
|
||||
over QMI channel.
|
||||
|
||||
source "drivers/soc/qcom/wcnss/Kconfig"
|
||||
|
||||
@@ -103,6 +103,7 @@ obj-$(CONFIG_RMNET_CTL) += rmnet_ctl/
|
||||
obj-$(CONFIG_QCOM_CX_IPEAK) += cx_ipeak.o
|
||||
obj-$(CONFIG_QTI_L2_REUSE) += l2_reuse.o
|
||||
obj-$(CONFIG_ICNSS2) += icnss2/
|
||||
obj-$(CONFIG_WCNSS_CORE) += wcnss/
|
||||
obj-$(CONFIG_QTI_CRYPTO_COMMON) += crypto-qti-common.o
|
||||
obj-$(CONFIG_QTI_CRYPTO_TZ) += crypto-qti-tz.o
|
||||
obj-$(CONFIG_QTI_HW_KEY_MANAGER) += hwkm_qti.o
|
||||
|
||||
40
drivers/soc/qcom/wcnss/Kconfig
Normal file
40
drivers/soc/qcom/wcnss/Kconfig
Normal file
@@ -0,0 +1,40 @@
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
config WCNSS_CORE
|
||||
tristate "Qualcomm Technologies Inc. WCNSS CORE driver"
|
||||
select WIRELESS_EXT
|
||||
select WEXT_PRIV
|
||||
select WEXT_CORE
|
||||
select WEXT_SPY
|
||||
help
|
||||
This module adds support for WLAN connectivity subsystem
|
||||
This module is responsible for communicating WLAN on/off
|
||||
Core driver for the Qualcomm Technologies Inc. WCNSS triple play
|
||||
connectivity subsystem, Enable WCNSS core platform driver
|
||||
for WLAN.
|
||||
|
||||
config WCNSS_CORE_PRONTO
|
||||
tristate "Qualcomm Technologies Inc. WCNSS Pronto Support"
|
||||
depends on WCNSS_CORE
|
||||
help
|
||||
Pronto Support for the Qualcomm Technologies Inc. WCNSS triple
|
||||
play connectivity subsystem, Enable WCNSS core platform driver
|
||||
for WLAN. This module adds support for WLAN connectivity subsystem
|
||||
This module is responsible for communicating WLAN on/off
|
||||
|
||||
config WCNSS_REGISTER_DUMP_ON_BITE
|
||||
bool "Enable/disable WCNSS register dump when there is a WCNSS bite"
|
||||
depends on WCNSS_CORE_PRONTO
|
||||
help
|
||||
When Apps receives a WDOG bite from WCNSS, collecting a register dump
|
||||
of WCNSS is helpful to root cause the failure. WCNSS may not be
|
||||
properly clocked in some WCNSS bite cases, and that may cause unclocked
|
||||
register access failures. So this feature is to enable/disable the
|
||||
register dump on WCNSS WDOG bite.
|
||||
|
||||
config CNSS_CRYPTO
|
||||
tristate "Enable CNSS crypto support"
|
||||
help
|
||||
Add crypto support for the WLAN driver module.
|
||||
This feature enable wlan driver to use the crypto APIs exported
|
||||
from cnss platform driver. This crypto APIs used to generate cipher
|
||||
key and add support for the WLAN driver module security protocol.
|
||||
6
drivers/soc/qcom/wcnss/Makefile
Normal file
6
drivers/soc/qcom/wcnss/Makefile
Normal file
@@ -0,0 +1,6 @@
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
# Makefile for WCNSS triple-play driver
|
||||
|
||||
wcnsscore-objs += wcnss_wlan.o wcnss_vreg.o
|
||||
|
||||
obj-$(CONFIG_WCNSS_CORE) += wcnsscore.o
|
||||
826
drivers/soc/qcom/wcnss/wcnss_vreg.c
Normal file
826
drivers/soc/qcom/wcnss/wcnss_vreg.c
Normal file
@@ -0,0 +1,826 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (c) 2011-2021, The Linux Foundation. All rights reserved.
|
||||
*/
|
||||
|
||||
#include <linux/slab.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/gpio.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/regulator/consumer.h>
|
||||
#include <linux/regulator/rpm-smd-regulator.h>
|
||||
#include <linux/wcnss_wlan.h>
|
||||
#include <linux/semaphore.h>
|
||||
#include <linux/list.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/clk.h>
|
||||
|
||||
static void __iomem *msm_wcnss_base;
|
||||
static LIST_HEAD(power_on_lock_list);
|
||||
static DEFINE_MUTEX(list_lock);
|
||||
static DEFINE_SEMAPHORE(wcnss_power_on_lock);
|
||||
static int auto_detect;
|
||||
static int is_power_on;
|
||||
|
||||
#define RIVA_PMU_OFFSET 0x28
|
||||
|
||||
#define RIVA_SPARE_OFFSET 0x0b4
|
||||
#define PRONTO_SPARE_OFFSET 0x1088
|
||||
#define NVBIN_DLND_BIT BIT(25)
|
||||
|
||||
#define PRONTO_IRIS_REG_READ_OFFSET 0x1134
|
||||
#define PRONTO_IRIS_REG_CHIP_ID 0x04
|
||||
#define PRONTO_IRIS_REG_CHIP_ID_MASK 0xffff
|
||||
/* IRIS card chip ID's */
|
||||
#define WCN3660 0x0200
|
||||
#define WCN3660A 0x0300
|
||||
#define WCN3660B 0x0400
|
||||
#define WCN3620 0x5111
|
||||
#define WCN3620A 0x5112
|
||||
#define WCN3610 0x9101
|
||||
#define WCN3610V1 0x9110
|
||||
#define WCN3615 0x8110
|
||||
|
||||
#define WCNSS_PMU_CFG_IRIS_XO_CFG BIT(3)
|
||||
#define WCNSS_PMU_CFG_IRIS_XO_EN BIT(4)
|
||||
#define WCNSS_PMU_CFG_IRIS_XO_CFG_STS BIT(6) /* 1: in progress, 0: done */
|
||||
|
||||
#define WCNSS_PMU_CFG_IRIS_RESET BIT(7)
|
||||
#define WCNSS_PMU_CFG_IRIS_RESET_STS BIT(8) /* 1: in progress, 0: done */
|
||||
#define WCNSS_PMU_CFG_IRIS_XO_READ BIT(9)
|
||||
#define WCNSS_PMU_CFG_IRIS_XO_READ_STS BIT(10)
|
||||
|
||||
#define WCNSS_PMU_CFG_IRIS_XO_MODE 0x6
|
||||
#define WCNSS_PMU_CFG_IRIS_XO_MODE_48 (3 << 1)
|
||||
|
||||
#define VREG_NULL_CONFIG 0x0000
|
||||
#define VREG_GET_REGULATOR_MASK 0x0001
|
||||
#define VREG_SET_VOLTAGE_MASK 0x0002
|
||||
#define VREG_OPTIMUM_MODE_MASK 0x0004
|
||||
#define VREG_ENABLE_MASK 0x0008
|
||||
#define VDD_PA "qcom,iris-vddpa"
|
||||
|
||||
#define WCNSS_INVALID_IRIS_REG 0xbaadbaad
|
||||
|
||||
struct vregs_info {
|
||||
const char * const name;
|
||||
const char * const curr;
|
||||
const char * const volt;
|
||||
int state;
|
||||
bool required;
|
||||
struct regulator *regulator;
|
||||
};
|
||||
|
||||
/* IRIS regulators for Pronto hardware */
|
||||
static struct vregs_info iris_vregs[] = {
|
||||
{"qcom,iris-vddxo", "qcom,iris-vddxo-current",
|
||||
"qcom,iris-vddxo-voltage-level", VREG_NULL_CONFIG, true, NULL},
|
||||
{"qcom,iris-vddrfa", "qcom,iris-vddrfa-current",
|
||||
"qcom,iris-vddrfa-voltage-level", VREG_NULL_CONFIG, true, NULL},
|
||||
{"qcom,iris-vddpa", "qcom,iris-vddpa-current",
|
||||
"qcom,iris-vddpa-voltage-level", VREG_NULL_CONFIG, false, NULL},
|
||||
{"qcom,iris-vdddig", "qcom,iris-vdddig-current",
|
||||
"qcom,iris-vdddig-voltage-level", VREG_NULL_CONFIG, true, NULL},
|
||||
};
|
||||
|
||||
/* WCNSS regulators for Pronto hardware */
|
||||
static struct vregs_info pronto_vregs[] = {
|
||||
{"qcom,pronto-vddmx", "qcom,pronto-vddmx-current",
|
||||
"qcom,vddmx-voltage-level", VREG_NULL_CONFIG, true, NULL},
|
||||
{"qcom,pronto-vddcx", "qcom,pronto-vddcx-current",
|
||||
"qcom,vddcx-voltage-level", VREG_NULL_CONFIG, true, NULL},
|
||||
{"qcom,pronto-vddpx", "qcom,pronto-vddpx-current",
|
||||
"qcom,vddpx-voltage-level", VREG_NULL_CONFIG, true, NULL},
|
||||
};
|
||||
|
||||
struct host_driver {
|
||||
char name[20];
|
||||
struct list_head list;
|
||||
};
|
||||
|
||||
enum {
|
||||
IRIS_3660, /* also 3660A and 3680 */
|
||||
IRIS_3620,
|
||||
IRIS_3610,
|
||||
IRIS_3615
|
||||
};
|
||||
|
||||
int xo_auto_detect(u32 reg)
|
||||
{
|
||||
reg >>= 30;
|
||||
|
||||
switch (reg) {
|
||||
case IRIS_3660:
|
||||
return WCNSS_XO_48MHZ;
|
||||
|
||||
case IRIS_3620:
|
||||
return WCNSS_XO_19MHZ;
|
||||
|
||||
case IRIS_3610:
|
||||
return WCNSS_XO_19MHZ;
|
||||
|
||||
case IRIS_3615:
|
||||
return WCNSS_XO_19MHZ;
|
||||
|
||||
default:
|
||||
return WCNSS_XO_INVALID;
|
||||
}
|
||||
}
|
||||
|
||||
int wcnss_get_iris_name(char *iris_name)
|
||||
{
|
||||
struct wcnss_wlan_config *cfg = NULL;
|
||||
u32 iris_id;
|
||||
|
||||
cfg = wcnss_get_wlan_config();
|
||||
|
||||
if (cfg) {
|
||||
iris_id = cfg->iris_id;
|
||||
iris_id = PRONTO_IRIS_REG_CHIP_ID_MASK & (iris_id >> 16);
|
||||
} else {
|
||||
return 1;
|
||||
}
|
||||
|
||||
switch (iris_id) {
|
||||
case WCN3660:
|
||||
memcpy(iris_name, "WCN3660", sizeof("WCN3660"));
|
||||
break;
|
||||
case WCN3660A:
|
||||
memcpy(iris_name, "WCN3660A", sizeof("WCN3660A"));
|
||||
break;
|
||||
case WCN3660B:
|
||||
memcpy(iris_name, "WCN3660B", sizeof("WCN3660B"));
|
||||
break;
|
||||
case WCN3620:
|
||||
memcpy(iris_name, "WCN3620", sizeof("WCN3620"));
|
||||
break;
|
||||
case WCN3620A:
|
||||
memcpy(iris_name, "WCN3620A", sizeof("WCN3620A"));
|
||||
break;
|
||||
case WCN3610:
|
||||
memcpy(iris_name, "WCN3610", sizeof("WCN3610"));
|
||||
break;
|
||||
case WCN3610V1:
|
||||
memcpy(iris_name, "WCN3610V1", sizeof("WCN3610V1"));
|
||||
break;
|
||||
case WCN3615:
|
||||
memcpy(iris_name, "WCN3615", sizeof("WCN3615"));
|
||||
break;
|
||||
default:
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(wcnss_get_iris_name);
|
||||
|
||||
int validate_iris_chip_id(u32 reg)
|
||||
{
|
||||
u32 iris_id;
|
||||
|
||||
iris_id = PRONTO_IRIS_REG_CHIP_ID_MASK & (reg >> 16);
|
||||
|
||||
switch (iris_id) {
|
||||
case WCN3660:
|
||||
case WCN3660A:
|
||||
case WCN3660B:
|
||||
case WCN3620:
|
||||
case WCN3620A:
|
||||
case WCN3610:
|
||||
case WCN3610V1:
|
||||
case WCN3615:
|
||||
return 0;
|
||||
default:
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
wcnss_dt_parse_vreg_level(struct device *dev, int index,
|
||||
const char *current_vreg_name, const char *vreg_name,
|
||||
struct vregs_level *vlevel)
|
||||
{
|
||||
int ret = 0;
|
||||
/* array used to store nominal, low and high voltage values */
|
||||
u32 voltage_levels[3], current_vreg;
|
||||
|
||||
ret = of_property_read_u32_array(dev->of_node, vreg_name,
|
||||
voltage_levels,
|
||||
ARRAY_SIZE(voltage_levels));
|
||||
if (ret) {
|
||||
wcnss_log(ERR, "error reading %s property\n", vreg_name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
vlevel[index].nominal_min = voltage_levels[0];
|
||||
vlevel[index].low_power_min = voltage_levels[1];
|
||||
vlevel[index].max_voltage = voltage_levels[2];
|
||||
|
||||
ret = of_property_read_u32(dev->of_node, current_vreg_name,
|
||||
¤t_vreg);
|
||||
if (ret) {
|
||||
wcnss_log(ERR, "error reading %s property\n",
|
||||
current_vreg_name);
|
||||
return ret;
|
||||
}
|
||||
|
||||
vlevel[index].uA_load = current_vreg;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
wcnss_parse_voltage_regulator(struct wcnss_wlan_config *wlan_config,
|
||||
struct device *dev)
|
||||
{
|
||||
int rc, vreg_i;
|
||||
|
||||
/* Parse pronto voltage regulators from device node */
|
||||
for (vreg_i = 0; vreg_i < PRONTO_REGULATORS; vreg_i++) {
|
||||
pronto_vregs[vreg_i].regulator =
|
||||
devm_regulator_get_optional(dev,
|
||||
pronto_vregs[vreg_i].name);
|
||||
if (IS_ERR(pronto_vregs[vreg_i].regulator)) {
|
||||
if (pronto_vregs[vreg_i].required) {
|
||||
rc = PTR_ERR(pronto_vregs[vreg_i].regulator);
|
||||
wcnss_log(ERR,
|
||||
"regulator get of %s failed (%d)\n",
|
||||
pronto_vregs[vreg_i].name, rc);
|
||||
return rc;
|
||||
}
|
||||
|
||||
wcnss_log(DBG,
|
||||
"Skip optional regulator configuration: %s\n",
|
||||
pronto_vregs[vreg_i].name);
|
||||
continue;
|
||||
}
|
||||
|
||||
rc = wcnss_dt_parse_vreg_level(dev, vreg_i,
|
||||
pronto_vregs[vreg_i].curr,
|
||||
pronto_vregs[vreg_i].volt,
|
||||
wlan_config->pronto_vlevel);
|
||||
if (rc) {
|
||||
wcnss_log(ERR,
|
||||
"error reading voltage-level property\n");
|
||||
return rc;
|
||||
}
|
||||
pronto_vregs[vreg_i].state |= VREG_GET_REGULATOR_MASK;
|
||||
}
|
||||
|
||||
/* Parse iris voltage regulators from device node */
|
||||
for (vreg_i = 0; vreg_i < IRIS_REGULATORS; vreg_i++) {
|
||||
iris_vregs[vreg_i].regulator =
|
||||
devm_regulator_get_optional(dev,
|
||||
iris_vregs[vreg_i].name);
|
||||
if (IS_ERR(iris_vregs[vreg_i].regulator)) {
|
||||
if (iris_vregs[vreg_i].required) {
|
||||
rc = PTR_ERR(iris_vregs[vreg_i].regulator);
|
||||
wcnss_log(ERR,
|
||||
"regulator get of %s failed (%d)\n",
|
||||
iris_vregs[vreg_i].name, rc);
|
||||
return rc;
|
||||
}
|
||||
|
||||
wcnss_log(DBG,
|
||||
"Skip optional regulator configuration: %s\n",
|
||||
iris_vregs[vreg_i].name);
|
||||
continue;
|
||||
}
|
||||
|
||||
rc = wcnss_dt_parse_vreg_level(dev, vreg_i,
|
||||
iris_vregs[vreg_i].curr,
|
||||
iris_vregs[vreg_i].volt,
|
||||
wlan_config->iris_vlevel);
|
||||
if (rc) {
|
||||
wcnss_log(ERR,
|
||||
"error reading voltage-level property\n");
|
||||
return rc;
|
||||
}
|
||||
iris_vregs[vreg_i].state |= VREG_GET_REGULATOR_MASK;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void wcnss_iris_reset(u32 reg, void __iomem *pmu_conf_reg)
|
||||
{
|
||||
/* Reset IRIS */
|
||||
reg |= WCNSS_PMU_CFG_IRIS_RESET;
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
|
||||
/* Wait for PMU_CFG.iris_reg_reset_sts */
|
||||
while (readl_relaxed(pmu_conf_reg) &
|
||||
WCNSS_PMU_CFG_IRIS_RESET_STS)
|
||||
cpu_relax();
|
||||
|
||||
/* Reset iris reset bit */
|
||||
reg &= ~WCNSS_PMU_CFG_IRIS_RESET;
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
}
|
||||
|
||||
static int
|
||||
configure_iris_xo(struct device *dev,
|
||||
struct wcnss_wlan_config *cfg,
|
||||
int on, int *iris_xo_set)
|
||||
{
|
||||
u32 reg = 0, i = 0;
|
||||
u32 iris_reg = WCNSS_INVALID_IRIS_REG;
|
||||
int rc = 0;
|
||||
int pmu_offset = 0;
|
||||
int spare_offset = 0;
|
||||
void __iomem *pmu_conf_reg;
|
||||
void __iomem *spare_reg;
|
||||
void __iomem *iris_read_reg;
|
||||
struct clk *clk;
|
||||
struct clk *clk_rf = NULL;
|
||||
bool use_48mhz_xo;
|
||||
|
||||
use_48mhz_xo = cfg->use_48mhz_xo;
|
||||
|
||||
if (wcnss_hardware_type() == WCNSS_PRONTO_HW) {
|
||||
pmu_offset = PRONTO_PMU_OFFSET;
|
||||
spare_offset = PRONTO_SPARE_OFFSET;
|
||||
|
||||
clk = clk_get(dev, "xo");
|
||||
if (IS_ERR(clk)) {
|
||||
wcnss_log(ERR, "Couldn't get xo clock\n");
|
||||
return PTR_ERR(clk);
|
||||
}
|
||||
|
||||
} else {
|
||||
pmu_offset = RIVA_PMU_OFFSET;
|
||||
spare_offset = RIVA_SPARE_OFFSET;
|
||||
|
||||
clk = clk_get(dev, "cxo");
|
||||
if (IS_ERR(clk)) {
|
||||
wcnss_log(ERR, "Couldn't get cxo clock\n");
|
||||
return PTR_ERR(clk);
|
||||
}
|
||||
}
|
||||
|
||||
if (on) {
|
||||
msm_wcnss_base = cfg->msm_wcnss_base;
|
||||
if (!msm_wcnss_base) {
|
||||
wcnss_log(ERR, "ioremap wcnss physical failed\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
/* Enable IRIS XO */
|
||||
rc = clk_prepare_enable(clk);
|
||||
if (rc) {
|
||||
wcnss_log(ERR, "clk enable failed\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
/* NV bit is set to indicate that platform driver is capable
|
||||
* of doing NV download.
|
||||
*/
|
||||
wcnss_log(DBG, "Indicate NV bin download\n");
|
||||
spare_reg = msm_wcnss_base + spare_offset;
|
||||
reg = readl_relaxed(spare_reg);
|
||||
reg |= NVBIN_DLND_BIT;
|
||||
writel_relaxed(reg, spare_reg);
|
||||
|
||||
pmu_conf_reg = msm_wcnss_base + pmu_offset;
|
||||
writel_relaxed(0, pmu_conf_reg);
|
||||
reg = readl_relaxed(pmu_conf_reg);
|
||||
reg |= WCNSS_PMU_CFG_GC_BUS_MUX_SEL_TOP |
|
||||
WCNSS_PMU_CFG_IRIS_XO_EN;
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
|
||||
if (wcnss_xo_auto_detect_enabled()) {
|
||||
iris_read_reg = msm_wcnss_base +
|
||||
PRONTO_IRIS_REG_READ_OFFSET;
|
||||
iris_reg = readl_relaxed(iris_read_reg);
|
||||
}
|
||||
|
||||
wcnss_iris_reset(reg, pmu_conf_reg);
|
||||
|
||||
if (iris_reg != WCNSS_INVALID_IRIS_REG) {
|
||||
iris_reg &= 0xffff;
|
||||
iris_reg |= PRONTO_IRIS_REG_CHIP_ID;
|
||||
writel_relaxed(iris_reg, iris_read_reg);
|
||||
do {
|
||||
/* Iris read */
|
||||
reg = readl_relaxed(pmu_conf_reg);
|
||||
reg |= WCNSS_PMU_CFG_IRIS_XO_READ;
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
|
||||
/* Wait for PMU_CFG.iris_reg_read_sts */
|
||||
while (readl_relaxed(pmu_conf_reg) &
|
||||
WCNSS_PMU_CFG_IRIS_XO_READ_STS)
|
||||
cpu_relax();
|
||||
|
||||
iris_reg = readl_relaxed(iris_read_reg);
|
||||
wcnss_log(INFO, "IRIS Reg: %08x\n", iris_reg);
|
||||
|
||||
if (validate_iris_chip_id(iris_reg) && i >= 4) {
|
||||
wcnss_log(INFO,
|
||||
"IRIS Card absent/invalid\n");
|
||||
auto_detect = WCNSS_XO_INVALID;
|
||||
/* Reset iris read bit */
|
||||
reg &= ~WCNSS_PMU_CFG_IRIS_XO_READ;
|
||||
/* Clear XO_MODE[b2:b1] bits.
|
||||
* Clear implies 19.2 MHz TCXO
|
||||
*/
|
||||
reg &= ~(WCNSS_PMU_CFG_IRIS_XO_MODE);
|
||||
goto xo_configure;
|
||||
} else if (!validate_iris_chip_id(iris_reg)) {
|
||||
wcnss_log(DBG,
|
||||
"IRIS Card is present\n");
|
||||
break;
|
||||
}
|
||||
reg &= ~WCNSS_PMU_CFG_IRIS_XO_READ;
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
wcnss_iris_reset(reg, pmu_conf_reg);
|
||||
} while (i++ < 5);
|
||||
auto_detect = xo_auto_detect(iris_reg);
|
||||
|
||||
/* Reset iris read bit */
|
||||
reg &= ~WCNSS_PMU_CFG_IRIS_XO_READ;
|
||||
|
||||
} else if (wcnss_xo_auto_detect_enabled()) {
|
||||
/* Default to 48 MHZ */
|
||||
auto_detect = WCNSS_XO_48MHZ;
|
||||
} else {
|
||||
auto_detect = WCNSS_XO_INVALID;
|
||||
}
|
||||
|
||||
cfg->iris_id = iris_reg;
|
||||
|
||||
/* Clear XO_MODE[b2:b1] bits. Clear implies 19.2 MHz TCXO */
|
||||
reg &= ~(WCNSS_PMU_CFG_IRIS_XO_MODE);
|
||||
|
||||
if ((use_48mhz_xo && auto_detect == WCNSS_XO_INVALID) ||
|
||||
auto_detect == WCNSS_XO_48MHZ) {
|
||||
reg |= WCNSS_PMU_CFG_IRIS_XO_MODE_48;
|
||||
|
||||
if (iris_xo_set)
|
||||
*iris_xo_set = WCNSS_XO_48MHZ;
|
||||
}
|
||||
|
||||
xo_configure:
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
|
||||
wcnss_iris_reset(reg, pmu_conf_reg);
|
||||
|
||||
/* Start IRIS XO configuration */
|
||||
reg |= WCNSS_PMU_CFG_IRIS_XO_CFG;
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
|
||||
/* Wait for XO configuration to finish */
|
||||
while (readl_relaxed(pmu_conf_reg) &
|
||||
WCNSS_PMU_CFG_IRIS_XO_CFG_STS)
|
||||
cpu_relax();
|
||||
|
||||
/* Stop IRIS XO configuration */
|
||||
reg &= ~(WCNSS_PMU_CFG_GC_BUS_MUX_SEL_TOP |
|
||||
WCNSS_PMU_CFG_IRIS_XO_CFG);
|
||||
writel_relaxed(reg, pmu_conf_reg);
|
||||
clk_disable_unprepare(clk);
|
||||
|
||||
if ((!use_48mhz_xo && auto_detect == WCNSS_XO_INVALID) ||
|
||||
auto_detect == WCNSS_XO_19MHZ) {
|
||||
clk_rf = clk_get(dev, "rf_clk");
|
||||
if (IS_ERR(clk_rf)) {
|
||||
wcnss_log(ERR, "Couldn't get rf_clk\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
rc = clk_prepare_enable(clk_rf);
|
||||
if (rc) {
|
||||
wcnss_log(ERR, "clk_rf enable failed\n");
|
||||
goto fail;
|
||||
}
|
||||
if (iris_xo_set)
|
||||
*iris_xo_set = WCNSS_XO_19MHZ;
|
||||
}
|
||||
|
||||
} else if ((!use_48mhz_xo && auto_detect == WCNSS_XO_INVALID) ||
|
||||
auto_detect == WCNSS_XO_19MHZ) {
|
||||
clk_rf = clk_get(dev, "rf_clk");
|
||||
if (IS_ERR(clk_rf)) {
|
||||
wcnss_log(ERR, "Couldn't get rf_clk\n");
|
||||
goto fail;
|
||||
}
|
||||
clk_disable_unprepare(clk_rf);
|
||||
}
|
||||
|
||||
/* Add some delay for XO to settle */
|
||||
msleep(20);
|
||||
|
||||
fail:
|
||||
clk_put(clk);
|
||||
|
||||
if (clk_rf)
|
||||
clk_put(clk_rf);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
/* Helper routine to turn off all WCNSS & IRIS vregs */
|
||||
static void wcnss_vregs_off(struct vregs_info regulators[], uint size,
|
||||
struct vregs_level *voltage_level)
|
||||
{
|
||||
int i, rc = 0;
|
||||
struct wcnss_wlan_config *cfg;
|
||||
|
||||
cfg = wcnss_get_wlan_config();
|
||||
|
||||
if (!cfg) {
|
||||
wcnss_log(ERR, "Failed to get WLAN configuration\n");
|
||||
return;
|
||||
}
|
||||
|
||||
/* Regulators need to be turned off in the reverse order */
|
||||
for (i = (size - 1); i >= 0; i--) {
|
||||
if (regulators[i].state == VREG_NULL_CONFIG)
|
||||
continue;
|
||||
|
||||
/* Remove PWM mode */
|
||||
if (regulators[i].state & VREG_OPTIMUM_MODE_MASK) {
|
||||
rc = regulator_set_load(regulators[i].regulator, 0);
|
||||
if (rc < 0) {
|
||||
wcnss_log(ERR,
|
||||
"regulator set load(%s) failed (%d)\n",
|
||||
regulators[i].name, rc);
|
||||
}
|
||||
}
|
||||
|
||||
/* Set voltage to lowest level */
|
||||
if (regulators[i].state & VREG_SET_VOLTAGE_MASK) {
|
||||
if (cfg->is_pronto_vadc) {
|
||||
if (cfg->vbatt < WCNSS_VBATT_THRESHOLD &&
|
||||
!memcmp(regulators[i].name,
|
||||
VDD_PA, sizeof(VDD_PA))) {
|
||||
voltage_level[i].max_voltage =
|
||||
WCNSS_VBATT_LOW;
|
||||
}
|
||||
}
|
||||
|
||||
rc = regulator_set_voltage(regulators[i].regulator,
|
||||
voltage_level[i].low_power_min,
|
||||
voltage_level[i].max_voltage);
|
||||
if (rc)
|
||||
wcnss_log(ERR,
|
||||
"regulator_set_voltage(%s) failed (%d)\n",
|
||||
regulators[i].name, rc);
|
||||
}
|
||||
|
||||
/* Disable regulator */
|
||||
if (regulators[i].state & VREG_ENABLE_MASK) {
|
||||
rc = regulator_disable(regulators[i].regulator);
|
||||
if (rc < 0)
|
||||
wcnss_log(ERR, "vreg %s disable failed (%d)\n",
|
||||
regulators[i].name, rc);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Common helper routine to turn on all WCNSS & IRIS vregs */
|
||||
static int wcnss_vregs_on(struct device *dev,
|
||||
struct vregs_info regulators[], uint size,
|
||||
struct vregs_level *voltage_level)
|
||||
{
|
||||
int i, rc = 0, reg_cnt;
|
||||
struct wcnss_wlan_config *cfg;
|
||||
|
||||
cfg = wcnss_get_wlan_config();
|
||||
|
||||
if (!cfg) {
|
||||
wcnss_log(ERR, "Failed to get WLAN configuration\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
for (i = 0; i < size; i++) {
|
||||
if (regulators[i].state == VREG_NULL_CONFIG)
|
||||
continue;
|
||||
|
||||
reg_cnt = regulator_count_voltages(regulators[i].regulator);
|
||||
/* Set voltage to nominal. Exclude swtiches e.g. LVS */
|
||||
if ((voltage_level[i].nominal_min ||
|
||||
voltage_level[i].max_voltage) && (reg_cnt > 0)) {
|
||||
if (cfg->is_pronto_vadc) {
|
||||
if (cfg->vbatt < WCNSS_VBATT_THRESHOLD &&
|
||||
!memcmp(regulators[i].name,
|
||||
VDD_PA, sizeof(VDD_PA))) {
|
||||
voltage_level[i].nominal_min =
|
||||
WCNSS_VBATT_INITIAL;
|
||||
voltage_level[i].max_voltage =
|
||||
WCNSS_VBATT_LOW;
|
||||
}
|
||||
}
|
||||
|
||||
rc = regulator_set_voltage(regulators[i].regulator,
|
||||
voltage_level[i].nominal_min,
|
||||
voltage_level[i].max_voltage);
|
||||
|
||||
if (rc) {
|
||||
wcnss_log(ERR,
|
||||
"regulator_set_voltage(%s) failed (%d)\n",
|
||||
regulators[i].name, rc);
|
||||
goto fail;
|
||||
}
|
||||
regulators[i].state |= VREG_SET_VOLTAGE_MASK;
|
||||
}
|
||||
|
||||
/* Vote for PWM/PFM mode if needed */
|
||||
if (voltage_level[i].uA_load && (reg_cnt > 0)) {
|
||||
rc = regulator_set_load(regulators[i].regulator,
|
||||
voltage_level[i].uA_load);
|
||||
if (rc < 0) {
|
||||
wcnss_log(ERR,
|
||||
"regulator set load(%s) failed (%d)\n",
|
||||
regulators[i].name, rc);
|
||||
goto fail;
|
||||
}
|
||||
regulators[i].state |= VREG_OPTIMUM_MODE_MASK;
|
||||
}
|
||||
|
||||
/* Enable the regulator */
|
||||
rc = regulator_enable(regulators[i].regulator);
|
||||
if (rc) {
|
||||
wcnss_log(ERR, "vreg %s enable failed (%d)\n",
|
||||
regulators[i].name, rc);
|
||||
goto fail;
|
||||
}
|
||||
regulators[i].state |= VREG_ENABLE_MASK;
|
||||
}
|
||||
|
||||
return rc;
|
||||
|
||||
fail:
|
||||
wcnss_vregs_off(regulators, size, voltage_level);
|
||||
return rc;
|
||||
}
|
||||
|
||||
static void wcnss_iris_vregs_off(enum wcnss_hw_type hw_type,
|
||||
struct wcnss_wlan_config *cfg)
|
||||
{
|
||||
switch (hw_type) {
|
||||
case WCNSS_PRONTO_HW:
|
||||
wcnss_vregs_off(iris_vregs, ARRAY_SIZE(iris_vregs),
|
||||
cfg->iris_vlevel);
|
||||
break;
|
||||
default:
|
||||
wcnss_log(ERR, "%s invalid hardware %d\n", __func__, hw_type);
|
||||
}
|
||||
}
|
||||
|
||||
static int wcnss_iris_vregs_on(struct device *dev,
|
||||
enum wcnss_hw_type hw_type,
|
||||
struct wcnss_wlan_config *cfg)
|
||||
{
|
||||
int ret = -1;
|
||||
|
||||
switch (hw_type) {
|
||||
case WCNSS_PRONTO_HW:
|
||||
ret = wcnss_vregs_on(dev, iris_vregs, ARRAY_SIZE(iris_vregs),
|
||||
cfg->iris_vlevel);
|
||||
break;
|
||||
default:
|
||||
wcnss_log(ERR, "%s invalid hardware %d\n", __func__, hw_type);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void wcnss_core_vregs_off(enum wcnss_hw_type hw_type,
|
||||
struct wcnss_wlan_config *cfg)
|
||||
{
|
||||
switch (hw_type) {
|
||||
case WCNSS_PRONTO_HW:
|
||||
wcnss_vregs_off(pronto_vregs,
|
||||
ARRAY_SIZE(pronto_vregs), cfg->pronto_vlevel);
|
||||
break;
|
||||
default:
|
||||
wcnss_log(ERR, "%s invalid hardware %d\n", __func__, hw_type);
|
||||
}
|
||||
}
|
||||
|
||||
static int wcnss_core_vregs_on(struct device *dev,
|
||||
enum wcnss_hw_type hw_type,
|
||||
struct wcnss_wlan_config *cfg)
|
||||
{
|
||||
int ret = -1;
|
||||
|
||||
switch (hw_type) {
|
||||
case WCNSS_PRONTO_HW:
|
||||
ret = wcnss_vregs_on(dev, pronto_vregs,
|
||||
ARRAY_SIZE(pronto_vregs),
|
||||
cfg->pronto_vlevel);
|
||||
break;
|
||||
default:
|
||||
wcnss_log(ERR, "%s invalid hardware %d\n", __func__, hw_type);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
int wcnss_wlan_power(struct device *dev,
|
||||
struct wcnss_wlan_config *cfg,
|
||||
enum wcnss_opcode on, int *iris_xo_set)
|
||||
{
|
||||
int rc = 0;
|
||||
enum wcnss_hw_type hw_type = wcnss_hardware_type();
|
||||
|
||||
down(&wcnss_power_on_lock);
|
||||
if (on) {
|
||||
/* RIVA regulator settings */
|
||||
rc = wcnss_core_vregs_on(dev, hw_type,
|
||||
cfg);
|
||||
if (rc)
|
||||
goto fail_wcnss_on;
|
||||
|
||||
/* IRIS regulator settings */
|
||||
rc = wcnss_iris_vregs_on(dev, hw_type,
|
||||
cfg);
|
||||
if (rc)
|
||||
goto fail_iris_on;
|
||||
|
||||
/* Configure IRIS XO */
|
||||
rc = configure_iris_xo(dev, cfg,
|
||||
WCNSS_WLAN_SWITCH_ON, iris_xo_set);
|
||||
if (rc)
|
||||
goto fail_iris_xo;
|
||||
|
||||
is_power_on = true;
|
||||
|
||||
} else if (is_power_on) {
|
||||
is_power_on = false;
|
||||
configure_iris_xo(dev, cfg,
|
||||
WCNSS_WLAN_SWITCH_OFF, NULL);
|
||||
wcnss_iris_vregs_off(hw_type, cfg);
|
||||
wcnss_core_vregs_off(hw_type, cfg);
|
||||
}
|
||||
|
||||
up(&wcnss_power_on_lock);
|
||||
return rc;
|
||||
|
||||
fail_iris_xo:
|
||||
wcnss_iris_vregs_off(hw_type, cfg);
|
||||
|
||||
fail_iris_on:
|
||||
wcnss_core_vregs_off(hw_type, cfg);
|
||||
|
||||
fail_wcnss_on:
|
||||
up(&wcnss_power_on_lock);
|
||||
return rc;
|
||||
}
|
||||
EXPORT_SYMBOL(wcnss_wlan_power);
|
||||
|
||||
/*
|
||||
* During SSR WCNSS should not be 'powered on' until all the host drivers
|
||||
* finish their shutdown routines. Host drivers use below APIs to
|
||||
* synchronize power-on. WCNSS will not be 'powered on' until all the
|
||||
* requests(to lock power-on) are freed.
|
||||
*/
|
||||
int wcnss_req_power_on_lock(char *driver_name)
|
||||
{
|
||||
struct host_driver *node;
|
||||
|
||||
if (!driver_name)
|
||||
goto err;
|
||||
|
||||
node = kmalloc(sizeof(*node), GFP_KERNEL);
|
||||
if (!node)
|
||||
goto err;
|
||||
strlcpy(node->name, driver_name, sizeof(node->name));
|
||||
|
||||
mutex_lock(&list_lock);
|
||||
/* Lock when the first request is added */
|
||||
if (list_empty(&power_on_lock_list))
|
||||
down(&wcnss_power_on_lock);
|
||||
list_add(&node->list, &power_on_lock_list);
|
||||
mutex_unlock(&list_lock);
|
||||
|
||||
return 0;
|
||||
|
||||
err:
|
||||
return -EINVAL;
|
||||
}
|
||||
EXPORT_SYMBOL(wcnss_req_power_on_lock);
|
||||
|
||||
int wcnss_free_power_on_lock(char *driver_name)
|
||||
{
|
||||
int ret = -1;
|
||||
struct host_driver *node;
|
||||
|
||||
mutex_lock(&list_lock);
|
||||
list_for_each_entry(node, &power_on_lock_list, list) {
|
||||
if (!strcmp(node->name, driver_name)) {
|
||||
list_del(&node->list);
|
||||
kfree(node);
|
||||
ret = 0;
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* unlock when the last host driver frees the lock */
|
||||
if (list_empty(&power_on_lock_list))
|
||||
up(&wcnss_power_on_lock);
|
||||
mutex_unlock(&list_lock);
|
||||
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(wcnss_free_power_on_lock);
|
||||
3961
drivers/soc/qcom/wcnss/wcnss_wlan.c
Normal file
3961
drivers/soc/qcom/wcnss/wcnss_wlan.c
Normal file
File diff suppressed because it is too large
Load Diff
12
include/linux/platform_data/qcom_wcnss_device.h
Normal file
12
include/linux/platform_data/qcom_wcnss_device.h
Normal file
@@ -0,0 +1,12 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (c) 2011, 2018, 2020-2021, The Linux Foundation. All rights reserved.
|
||||
*/
|
||||
#ifndef __QCOM_WCNSS_DEVICE__H
|
||||
#define __QCOM_WCNSS_DEVICE__H
|
||||
|
||||
struct qcom_wcnss_opts {
|
||||
bool has_48mhz_xo;
|
||||
};
|
||||
|
||||
#endif /* __QCOM_WCNSS_DEVICE__H */
|
||||
196
include/linux/wcnss_wlan.h
Normal file
196
include/linux/wcnss_wlan.h
Normal file
@@ -0,0 +1,196 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (c) 2011-2021, The Linux Foundation. All rights reserved.
|
||||
*/
|
||||
#ifndef _WCNSS_WLAN_H_
|
||||
#define _WCNSS_WLAN_H_
|
||||
|
||||
#include <linux/device.h>
|
||||
#include <linux/rpmsg.h>
|
||||
#include <linux/sched.h>
|
||||
|
||||
#define IRIS_REGULATORS 4
|
||||
#define PRONTO_REGULATORS 3
|
||||
|
||||
enum wcnss_opcode {
|
||||
WCNSS_WLAN_SWITCH_OFF = 0,
|
||||
WCNSS_WLAN_SWITCH_ON,
|
||||
};
|
||||
|
||||
enum wcnss_hw_type {
|
||||
WCNSS_RIVA_HW = 0,
|
||||
WCNSS_PRONTO_HW,
|
||||
};
|
||||
|
||||
struct vregs_level {
|
||||
int nominal_min;
|
||||
int low_power_min;
|
||||
int max_voltage;
|
||||
int uA_load;
|
||||
};
|
||||
|
||||
struct wcnss_wlan_config {
|
||||
int use_48mhz_xo;
|
||||
int is_pronto_vadc;
|
||||
int is_pronto_v3;
|
||||
void __iomem *msm_wcnss_base;
|
||||
unsigned int iris_id;
|
||||
u32 vbatt;
|
||||
struct vregs_level pronto_vlevel[PRONTO_REGULATORS];
|
||||
struct vregs_level iris_vlevel[IRIS_REGULATORS];
|
||||
};
|
||||
|
||||
struct bt_profile_state {
|
||||
bool bt_enabled;
|
||||
bool bt_ble;
|
||||
bool bt_adv;
|
||||
bool bt_a2dp;
|
||||
bool bt_sco;
|
||||
};
|
||||
|
||||
enum {
|
||||
WCNSS_XO_48MHZ = 1,
|
||||
WCNSS_XO_19MHZ,
|
||||
WCNSS_XO_INVALID,
|
||||
};
|
||||
|
||||
enum {
|
||||
WCNSS_WLAN_DATA2,
|
||||
WCNSS_WLAN_DATA1,
|
||||
WCNSS_WLAN_DATA0,
|
||||
WCNSS_WLAN_SET,
|
||||
WCNSS_WLAN_CLK,
|
||||
WCNSS_WLAN_MAX_GPIO,
|
||||
};
|
||||
|
||||
enum wcnss_log_type {
|
||||
ERR,
|
||||
WARN,
|
||||
INFO,
|
||||
DBG,
|
||||
};
|
||||
|
||||
#define WCNSS_VBATT_THRESHOLD 3500000
|
||||
#define WCNSS_VBATT_GUARD 20000
|
||||
#define WCNSS_VBATT_HIGH 3700000
|
||||
#define WCNSS_VBATT_LOW 3300000
|
||||
#define WCNSS_VBATT_INITIAL 3000000
|
||||
#define WCNSS_WLAN_IRQ_INVALID -1
|
||||
#define HAVE_WCNSS_SUSPEND_RESUME_NOTIFY 1
|
||||
#define HAVE_WCNSS_RESET_INTR 1
|
||||
#define HAVE_WCNSS_CAL_DOWNLOAD 1
|
||||
#define HAVE_CBC_DONE 1
|
||||
#define HAVE_WCNSS_RX_BUFF_COUNT 1
|
||||
#define HAVE_WCNSS_SNOC_HIGH_FREQ_VOTING 1
|
||||
#define HAVE_WCNSS_5G_DISABLE 1
|
||||
#define WLAN_MAC_ADDR_SIZE (6)
|
||||
#define WLAN_RF_REG_ADDR_START_OFFSET 0x3
|
||||
#define WLAN_RF_REG_DATA_START_OFFSET 0xf
|
||||
#define WLAN_RF_READ_REG_CMD 0x3
|
||||
#define WLAN_RF_WRITE_REG_CMD 0x2
|
||||
#define WLAN_RF_READ_CMD_MASK 0x3fff
|
||||
#define WLAN_RF_CLK_WAIT_CYCLE 2
|
||||
#define WLAN_RF_PREPARE_CMD_DATA 5
|
||||
#define WLAN_RF_READ_DATA 6
|
||||
#define WLAN_RF_DATA_LEN 3
|
||||
#define WLAN_RF_DATA0_SHIFT 0
|
||||
#define WLAN_RF_DATA1_SHIFT 1
|
||||
#define WLAN_RF_DATA2_SHIFT 2
|
||||
#define PRONTO_PMU_OFFSET 0x1004
|
||||
#define WCNSS_PMU_CFG_GC_BUS_MUX_SEL_TOP BIT(5)
|
||||
|
||||
enum wcnss_driver_state {
|
||||
WCNSS_SMD_OPEN,
|
||||
WCNSS_SMD_CLOSE,
|
||||
};
|
||||
|
||||
struct wcnss_driver_ops {
|
||||
char *name;
|
||||
void *priv_data;
|
||||
int (*driver_state)(void *priv, enum wcnss_driver_state state);
|
||||
int (*bt_profile_state)(void *priv, struct bt_profile_state *state);
|
||||
};
|
||||
|
||||
struct device *wcnss_wlan_get_device(void);
|
||||
void wcnss_get_monotonic_boottime(struct timespec *ts);
|
||||
struct resource *wcnss_wlan_get_memory_map(struct device *dev);
|
||||
int wcnss_wlan_get_dxe_tx_irq(struct device *dev);
|
||||
int wcnss_wlan_get_dxe_rx_irq(struct device *dev);
|
||||
int wcnss_register_driver(struct wcnss_driver_ops *ops, void *priv);
|
||||
int wcnss_unregister_driver(struct wcnss_driver_ops *ops);
|
||||
void wcnss_update_bt_profile(void);
|
||||
void wcnss_wlan_register_pm_ops(struct device *dev,
|
||||
const struct dev_pm_ops *pm_ops);
|
||||
void wcnss_wlan_unregister_pm_ops(struct device *dev,
|
||||
const struct dev_pm_ops *pm_ops);
|
||||
void wcnss_register_thermal_mitigation(struct device *dev,
|
||||
void (*tm_notify)(struct device *dev,
|
||||
int));
|
||||
void wcnss_unregister_thermal_mitigation(void (*tm_notify)(struct device *dev,
|
||||
int));
|
||||
struct platform_device *wcnss_get_platform_device(void);
|
||||
struct wcnss_wlan_config *wcnss_get_wlan_config(void);
|
||||
void wcnss_set_iris_xo_mode(int iris_xo_mode_set);
|
||||
int wcnss_wlan_power(struct device *dev,
|
||||
struct wcnss_wlan_config *cfg,
|
||||
enum wcnss_opcode opcode,
|
||||
int *iris_xo_mode_set);
|
||||
int wcnss_req_power_on_lock(char *driver_name);
|
||||
int wcnss_free_power_on_lock(char *driver_name);
|
||||
unsigned int wcnss_get_serial_number(void);
|
||||
int wcnss_get_wlan_mac_address(char mac_addr[WLAN_MAC_ADDR_SIZE]);
|
||||
void wcnss_allow_suspend(void);
|
||||
void wcnss_prevent_suspend(void);
|
||||
int wcnss_hardware_type(void);
|
||||
void *wcnss_prealloc_get(size_t size);
|
||||
int wcnss_prealloc_put(void *ptr);
|
||||
void wcnss_reset_fiq(bool clk_chk_en);
|
||||
void wcnss_suspend_notify(void);
|
||||
void wcnss_resume_notify(void);
|
||||
void wcnss_riva_log_debug_regs(void);
|
||||
void wcnss_pronto_log_debug_regs(void);
|
||||
int wcnss_is_hw_pronto_ver3(void);
|
||||
int wcnss_device_ready(void);
|
||||
bool wcnss_cbc_complete(void);
|
||||
int wcnss_device_is_shutdown(void);
|
||||
void wcnss_riva_dump_pmic_regs(void);
|
||||
int wcnss_xo_auto_detect_enabled(void);
|
||||
u32 wcnss_get_wlan_rx_buff_count(void);
|
||||
int wcnss_wlan_iris_xo_mode(void);
|
||||
int wcnss_wlan_dual_band_disabled(void);
|
||||
void wcnss_flush_work(struct work_struct *work);
|
||||
void wcnss_flush_delayed_work(struct delayed_work *dwork);
|
||||
void wcnss_init_work(struct work_struct *work, void *callbackptr);
|
||||
void wcnss_init_delayed_work(struct delayed_work *dwork, void *callbackptr);
|
||||
int wcnss_get_iris_name(char *iris_version);
|
||||
void wcnss_dump_stack(struct task_struct *task);
|
||||
void wcnss_snoc_vote(bool clk_chk_en);
|
||||
int wcnss_parse_voltage_regulator(struct wcnss_wlan_config *wlan_config,
|
||||
struct device *dev);
|
||||
void wcnss_log(enum wcnss_log_type type, const char *_fmt, ...);
|
||||
|
||||
#ifdef CONFIG_WCNSS_REGISTER_DUMP_ON_BITE
|
||||
void wcnss_log_debug_regs_on_bite(void);
|
||||
#else
|
||||
static inline void wcnss_log_debug_regs_on_bite(void)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
int wcnss_set_wlan_unsafe_channel(
|
||||
u16 *unsafe_ch_list, u16 ch_count);
|
||||
int wcnss_get_wlan_unsafe_channel(
|
||||
u16 *unsafe_ch_list, u16 buffer_size,
|
||||
u16 *ch_count);
|
||||
struct rpmsg_endpoint *wcnss_open_channel(const char *name,
|
||||
rpmsg_rx_cb_t cb, void *priv);
|
||||
void wcnss_close_channel(struct rpmsg_endpoint *channel);
|
||||
int wcnss_smd_tx(struct rpmsg_endpoint *channel, void *data, int len);
|
||||
int wcnss_get_nv_name(char *nv_name);
|
||||
int wcnss_is_sw_pta_enabled(void);
|
||||
#define wcnss_wlan_get_drvdata(dev) dev_get_drvdata(dev)
|
||||
#define wcnss_wlan_set_drvdata(dev, data) dev_set_drvdata((dev), (data))
|
||||
/* WLAN driver uses these names */
|
||||
#define req_riva_power_on_lock(name) wcnss_req_power_on_lock(name)
|
||||
#define free_riva_power_on_lock(name) wcnss_free_power_on_lock(name)
|
||||
|
||||
#endif /* _WCNSS_WLAN_H_ */
|
||||
Reference in New Issue
Block a user