1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2023-2024 Qualcomm Innovation Center, Inc. All rights reserved.
- */
- #include <linux/clk.h>
- #include <linux/delay.h>
- #include <linux/of.h>
- #include <linux/pinctrl/consumer.h>
- #include <linux/regulator/consumer.h>
- #include <soc/qcom/cmd-db.h>
- #include "main.h"
- #include "qmi.h"
- #include "debug.h"
- #include "power.h"
- #if IS_ENABLED(CONFIG_MSM_QMP)
- #include <linux/soc/qcom/qcom_aoss.h>
- #endif
- static struct icnss_vreg_cfg icnss_wcn6750_vreg_list[] = {
- {"vdd-cx-mx", 824000, 952000, 0, 0, 0, false, true},
- {"vdd-1.8-xo", 1872000, 1872000, 0, 0, 0, false, true},
- {"vdd-1.3-rfa", 1256000, 1352000, 0, 0, 0, false, true},
- };
- static struct icnss_vreg_cfg icnss_adrestea_vreg_list[] = {
- {"vdd-cx-mx", 752000, 752000, 0, 0, 0, false, true},
- {"vdd-1.8-xo", 1800000, 1800000, 0, 0, 0, false, true},
- {"vdd-1.3-rfa", 1304000, 1304000, 0, 0, 0, false, true},
- {"vdd-3.3-ch1", 3312000, 3312000, 0, 0, 0, false, false},
- {"vdd-3.3-ch0", 3312000, 3312000, 0, 0, 0, false, true},
- };
- static struct icnss_battery_level icnss_battery_level[] = {
- {70, 3300000},
- {60, 3200000},
- {50, 3100000},
- {25, 3000000},
- {0, 2850000},
- };
- static struct icnss_vreg_cfg icnss_wcn6450_vreg_list[] = {
- {"vdd-cx-mx", 824000, 952000, 0, 0, 0, false, true},
- {"vdd-1.8-xo", 1872000, 1872000, 0, 0, 0, false, true},
- {"vdd-1.3-rfa", 1256000, 1352000, 0, 0, 0, false, true},
- {"vdd-aon", 1256000, 1352000, 0, 0, 0, false, true},
- };
- static struct icnss_clk_cfg icnss_clk_list[] = {
- {"rf_clk", 0, 0},
- };
- static struct icnss_clk_cfg icnss_adrestea_clk_list[] = {
- {"cxo_ref_clk_pin", 0, 0},
- };
- #define ICNSS_VREG_LIST_SIZE ARRAY_SIZE(icnss_wcn6750_vreg_list)
- #define ICNSS_VREG_ADRESTEA_LIST_SIZE ARRAY_SIZE(icnss_adrestea_vreg_list)
- #define ICNSS_VREG_EVROS_LIST_SIZE ARRAY_SIZE(icnss_wcn6450_vreg_list)
- #define ICNSS_CLK_LIST_SIZE ARRAY_SIZE(icnss_clk_list)
- #define ICNSS_CLK_ADRESTEA_LIST_SIZE ARRAY_SIZE(icnss_adrestea_clk_list)
- #define ICNSS_CHAIN1_REGULATOR "vdd-3.3-ch1"
- #define MAX_PROP_SIZE 32
- #define BT_CXMX_VOLTAGE_MV 950
- #define ICNSS_MBOX_MSG_MAX_LEN 64
- #define ICNSS_MBOX_TIMEOUT_MS 1000
- #define ICNSS_BATTERY_LEVEL_COUNT ARRAY_SIZE(icnss_battery_level)
- #define ICNSS_MAX_BATTERY_LEVEL 100
- /**
- * enum icnss_vreg_param: Voltage regulator TCS param
- * @ICNSS_VREG_VOLTAGE: Provides voltage level to be configured in TCS
- * @ICNSS_VREG_MODE: Regulator mode
- * @ICNSS_VREG_ENABLE: Set Voltage regulator enable config in TCS
- */
- enum icnss_vreg_param {
- ICNSS_VREG_VOLTAGE,
- ICNSS_VREG_MODE,
- ICNSS_VREG_ENABLE,
- };
- /**
- * enum icnss_tcs_seq: TCS sequence ID for trigger
- * ICNSS_TCS_UP_SEQ: TCS Sequence based on up trigger / Wake TCS
- * ICNSS_TCS_DOWN_SEQ: TCS Sequence based on down trigger / Sleep TCS
- * ICNSS_TCS_ALL_SEQ: Update for both up and down triggers
- */
- enum icnss_tcs_seq {
- ICNSS_TCS_UP_SEQ,
- ICNSS_TCS_DOWN_SEQ,
- ICNSS_TCS_ALL_SEQ,
- };
- static int icnss_get_vreg_single(struct icnss_priv *priv,
- struct icnss_vreg_info *vreg)
- {
- int ret = 0;
- struct device *dev = NULL;
- struct regulator *reg = NULL;
- const __be32 *prop = NULL;
- char prop_name[MAX_PROP_SIZE] = {0};
- int len = 0;
- int i;
- dev = &priv->pdev->dev;
- reg = devm_regulator_get_optional(dev, vreg->cfg.name);
- if (IS_ERR(reg)) {
- ret = PTR_ERR(reg);
- if (ret == -ENODEV) {
- return ret;
- } else if (ret == -EPROBE_DEFER) {
- icnss_pr_info("EPROBE_DEFER for regulator: %s\n",
- vreg->cfg.name);
- goto out;
- } else if (priv->device_id == ADRASTEA_DEVICE_ID) {
- if (vreg->cfg.required) {
- icnss_pr_err("Regulator %s doesn't exist: %d\n",
- vreg->cfg.name, ret);
- goto out;
- } else {
- icnss_pr_dbg("Optional regulator %s doesn't exist: %d\n",
- vreg->cfg.name, ret);
- goto done;
- }
- } else {
- icnss_pr_err("Failed to get regulator %s, err = %d\n",
- vreg->cfg.name, ret);
- goto out;
- }
- }
- vreg->reg = reg;
- snprintf(prop_name, MAX_PROP_SIZE, "qcom,%s-config",
- vreg->cfg.name);
- prop = of_get_property(dev->of_node, prop_name, &len);
- icnss_pr_dbg("Got regulator config, prop: %s, len: %d\n",
- prop_name, len);
- if (!prop || len < (2 * sizeof(__be32))) {
- icnss_pr_dbg("Property %s %s, use default\n", prop_name,
- prop ? "invalid format" : "doesn't exist");
- goto done;
- }
- for (i = 0; (i * sizeof(__be32)) < len; i++) {
- switch (i) {
- case 0:
- vreg->cfg.min_uv = be32_to_cpup(&prop[0]);
- break;
- case 1:
- vreg->cfg.max_uv = be32_to_cpup(&prop[1]);
- break;
- case 2:
- vreg->cfg.load_ua = be32_to_cpup(&prop[2]);
- break;
- case 3:
- vreg->cfg.delay_us = be32_to_cpup(&prop[3]);
- break;
- case 4:
- if (priv->device_id == WCN6750_DEVICE_ID)
- vreg->cfg.need_unvote = be32_to_cpup(&prop[4]);
- else
- vreg->cfg.need_unvote = 0;
- break;
- default:
- icnss_pr_dbg("Property %s, ignoring value at %d\n",
- prop_name, i);
- break;
- }
- }
- done:
- icnss_pr_dbg("Got regulator: %s, min_uv: %u, max_uv: %u, load_ua: %u, delay_us: %u, need_unvote: %u\n",
- vreg->cfg.name, vreg->cfg.min_uv,
- vreg->cfg.max_uv, vreg->cfg.load_ua,
- vreg->cfg.delay_us, vreg->cfg.need_unvote);
- return 0;
- out:
- return ret;
- }
- static int icnss_vreg_on_single(struct icnss_vreg_info *vreg)
- {
- int ret = 0;
- if (vreg->enabled) {
- icnss_pr_dbg("Regulator %s is already enabled\n",
- vreg->cfg.name);
- return 0;
- }
- icnss_pr_dbg("Regulator %s is being enabled\n", vreg->cfg.name);
- if (vreg->cfg.min_uv != 0 && vreg->cfg.max_uv != 0) {
- ret = regulator_set_voltage(vreg->reg,
- vreg->cfg.min_uv,
- vreg->cfg.max_uv);
- if (ret) {
- icnss_pr_err("Failed to set voltage for regulator %s, min_uv: %u, max_uv: %u, err = %d\n",
- vreg->cfg.name, vreg->cfg.min_uv,
- vreg->cfg.max_uv, ret);
- goto out;
- }
- }
- if (vreg->cfg.load_ua) {
- ret = regulator_set_load(vreg->reg,
- vreg->cfg.load_ua);
- if (ret < 0) {
- icnss_pr_err("Failed to set load for regulator %s, load: %u, err = %d\n",
- vreg->cfg.name, vreg->cfg.load_ua,
- ret);
- goto out;
- }
- }
- if (vreg->cfg.delay_us)
- udelay(vreg->cfg.delay_us);
- ret = regulator_enable(vreg->reg);
- if (ret) {
- icnss_pr_err("Failed to enable regulator %s, err = %d\n",
- vreg->cfg.name, ret);
- goto out;
- }
- vreg->enabled = true;
- out:
- return ret;
- }
- static int icnss_vreg_unvote_single(struct icnss_vreg_info *vreg)
- {
- int ret = 0;
- if (!vreg->enabled) {
- icnss_pr_dbg("Regulator %s is already disabled\n",
- vreg->cfg.name);
- return 0;
- }
- icnss_pr_dbg("Removing vote for Regulator %s\n", vreg->cfg.name);
- if (vreg->cfg.load_ua) {
- ret = regulator_set_load(vreg->reg, 0);
- if (ret < 0)
- icnss_pr_err("Failed to set load for regulator %s, err = %d\n",
- vreg->cfg.name, ret);
- }
- if (vreg->cfg.min_uv != 0 && vreg->cfg.max_uv != 0) {
- ret = regulator_set_voltage(vreg->reg, 0,
- vreg->cfg.max_uv);
- if (ret)
- icnss_pr_err("Failed to set voltage for regulator %s, err = %d\n",
- vreg->cfg.name, ret);
- }
- return ret;
- }
- static int icnss_vreg_off_single(struct icnss_vreg_info *vreg)
- {
- int ret = 0;
- if (!vreg->enabled) {
- icnss_pr_dbg("Regulator %s is already disabled\n",
- vreg->cfg.name);
- return 0;
- }
- icnss_pr_dbg("Regulator %s is being disabled\n",
- vreg->cfg.name);
- ret = regulator_disable(vreg->reg);
- if (ret)
- icnss_pr_err("Failed to disable regulator %s, err = %d\n",
- vreg->cfg.name, ret);
- if (vreg->cfg.load_ua) {
- ret = regulator_set_load(vreg->reg, 0);
- if (ret < 0)
- icnss_pr_err("Failed to set load for regulator %s, err = %d\n",
- vreg->cfg.name, ret);
- }
- if (vreg->cfg.min_uv != 0 && vreg->cfg.max_uv != 0) {
- ret = regulator_set_voltage(vreg->reg, 0,
- vreg->cfg.max_uv);
- if (ret)
- icnss_pr_err("Failed to set voltage for regulator %s, err = %d\n",
- vreg->cfg.name, ret);
- }
- vreg->enabled = false;
- return ret;
- }
- static struct icnss_vreg_cfg *get_vreg_list(u32 *vreg_list_size,
- unsigned long device_id)
- {
- switch (device_id) {
- case WCN6750_DEVICE_ID:
- *vreg_list_size = ICNSS_VREG_LIST_SIZE;
- return icnss_wcn6750_vreg_list;
- case ADRASTEA_DEVICE_ID:
- *vreg_list_size = ICNSS_VREG_ADRESTEA_LIST_SIZE;
- return icnss_adrestea_vreg_list;
- case WCN6450_DEVICE_ID:
- *vreg_list_size = ICNSS_VREG_EVROS_LIST_SIZE;
- return icnss_wcn6450_vreg_list;
- default:
- icnss_pr_err("Unsupported device_id 0x%x\n", device_id);
- *vreg_list_size = 0;
- return NULL;
- }
- }
- int icnss_get_vreg(struct icnss_priv *priv)
- {
- int ret = 0;
- int i;
- struct icnss_vreg_info *vreg;
- struct icnss_vreg_cfg *vreg_cfg = NULL;
- struct list_head *vreg_list = &priv->vreg_list;
- struct device *dev = &priv->pdev->dev;
- u32 vreg_list_size = 0;
- vreg_cfg = get_vreg_list(&vreg_list_size, priv->device_id);
- if (!vreg_cfg)
- return -EINVAL;
- for (i = 0; i < vreg_list_size; i++) {
- vreg = devm_kzalloc(dev, sizeof(*vreg), GFP_KERNEL);
- if (!vreg)
- return -ENOMEM;
- memcpy(&vreg->cfg, &vreg_cfg[i], sizeof(vreg->cfg));
- ret = icnss_get_vreg_single(priv, vreg);
- if (ret != 0) {
- if (ret == -ENODEV)
- continue;
- else
- return ret;
- }
- list_add_tail(&vreg->list, vreg_list);
- }
- return 0;
- }
- void icnss_put_vreg(struct icnss_priv *priv)
- {
- struct list_head *vreg_list = &priv->vreg_list;
- struct icnss_vreg_info *vreg = NULL;
- while (!list_empty(vreg_list)) {
- vreg = list_first_entry(vreg_list,
- struct icnss_vreg_info, list);
- list_del(&vreg->list);
- }
- }
- static int icnss_vreg_on(struct icnss_priv *priv)
- {
- struct list_head *vreg_list = &priv->vreg_list;
- struct icnss_vreg_info *vreg = NULL;
- int ret = 0;
- list_for_each_entry(vreg, vreg_list, list) {
- if (IS_ERR_OR_NULL(vreg->reg) || !vreg->cfg.is_supported)
- continue;
- ret = icnss_vreg_on_single(vreg);
- if (ret)
- break;
- }
- if (!ret)
- return 0;
- list_for_each_entry_continue_reverse(vreg, vreg_list, list) {
- if (IS_ERR_OR_NULL(vreg->reg) || !vreg->enabled)
- continue;
- icnss_vreg_off_single(vreg);
- }
- return ret;
- }
- static int icnss_vreg_off(struct icnss_priv *priv)
- {
- struct list_head *vreg_list = &priv->vreg_list;
- struct icnss_vreg_info *vreg = NULL;
- list_for_each_entry_reverse(vreg, vreg_list, list) {
- if (IS_ERR_OR_NULL(vreg->reg))
- continue;
- icnss_vreg_off_single(vreg);
- }
- return 0;
- }
- int icnss_vreg_unvote(struct icnss_priv *priv)
- {
- struct list_head *vreg_list = &priv->vreg_list;
- struct icnss_vreg_info *vreg = NULL;
- list_for_each_entry_reverse(vreg, vreg_list, list) {
- if (IS_ERR_OR_NULL(vreg->reg))
- continue;
- if (vreg->cfg.need_unvote)
- icnss_vreg_unvote_single(vreg);
- }
- return 0;
- }
- int icnss_get_clk_single(struct icnss_priv *priv,
- struct icnss_clk_info *clk_info)
- {
- struct device *dev = &priv->pdev->dev;
- struct clk *clk;
- int ret;
- clk = devm_clk_get(dev, clk_info->cfg.name);
- if (IS_ERR(clk)) {
- ret = PTR_ERR(clk);
- if (clk_info->cfg.required)
- icnss_pr_err("Failed to get clock %s, err = %d\n",
- clk_info->cfg.name, ret);
- else
- icnss_pr_dbg("Failed to get optional clock %s, err = %d\n",
- clk_info->cfg.name, ret);
- return ret;
- }
- clk_info->clk = clk;
- icnss_pr_dbg("Got clock: %s, freq: %u\n",
- clk_info->cfg.name, clk_info->cfg.freq);
- return 0;
- }
- static int icnss_clk_on_single(struct icnss_clk_info *clk_info)
- {
- int ret;
- if (clk_info->enabled) {
- icnss_pr_dbg("Clock %s is already enabled\n",
- clk_info->cfg.name);
- return 0;
- }
- icnss_pr_dbg("Clock %s is being enabled\n", clk_info->cfg.name);
- if (clk_info->cfg.freq) {
- ret = clk_set_rate(clk_info->clk, clk_info->cfg.freq);
- if (ret) {
- icnss_pr_err("Failed to set frequency %u for clock %s, err = %d\n",
- clk_info->cfg.freq, clk_info->cfg.name,
- ret);
- return ret;
- }
- }
- ret = clk_prepare_enable(clk_info->clk);
- if (ret) {
- icnss_pr_err("Failed to enable clock %s, err = %d\n",
- clk_info->cfg.name, ret);
- return ret;
- }
- clk_info->enabled = true;
- return 0;
- }
- static int icnss_clk_off_single(struct icnss_clk_info *clk_info)
- {
- if (!clk_info->enabled) {
- icnss_pr_dbg("Clock %s is already disabled\n",
- clk_info->cfg.name);
- return 0;
- }
- icnss_pr_dbg("Clock %s is being disabled\n", clk_info->cfg.name);
- clk_disable_unprepare(clk_info->clk);
- clk_info->enabled = false;
- return 0;
- }
- int icnss_get_clk(struct icnss_priv *priv)
- {
- struct device *dev;
- struct list_head *clk_list;
- struct icnss_clk_info *clk_info;
- struct icnss_clk_cfg *clk_cfg;
- int ret, i;
- u32 clk_list_size = 0;
- if (!priv)
- return -ENODEV;
- dev = &priv->pdev->dev;
- clk_list = &priv->clk_list;
- if (priv->device_id == ADRASTEA_DEVICE_ID) {
- clk_cfg = icnss_adrestea_clk_list;
- clk_list_size = ICNSS_CLK_ADRESTEA_LIST_SIZE;
- } else if (priv->device_id == WCN6750_DEVICE_ID ||
- priv->device_id == WCN6450_DEVICE_ID) {
- clk_cfg = icnss_clk_list;
- clk_list_size = ICNSS_CLK_LIST_SIZE;
- }
- if (!list_empty(clk_list)) {
- icnss_pr_dbg("Clocks have already been updated\n");
- return 0;
- }
- for (i = 0; i < clk_list_size; i++) {
- clk_info = devm_kzalloc(dev, sizeof(*clk_info), GFP_KERNEL);
- if (!clk_info) {
- ret = -ENOMEM;
- goto cleanup;
- }
- memcpy(&clk_info->cfg, &clk_cfg[i],
- sizeof(clk_info->cfg));
- ret = icnss_get_clk_single(priv, clk_info);
- if (ret != 0) {
- if (clk_info->cfg.required)
- goto cleanup;
- else
- continue;
- }
- list_add_tail(&clk_info->list, clk_list);
- }
- return 0;
- cleanup:
- while (!list_empty(clk_list)) {
- clk_info = list_first_entry(clk_list, struct icnss_clk_info,
- list);
- list_del(&clk_info->list);
- }
- return ret;
- }
- void icnss_put_clk(struct icnss_priv *priv)
- {
- struct device *dev;
- struct list_head *clk_list;
- struct icnss_clk_info *clk_info;
- if (!priv)
- return;
- dev = &priv->pdev->dev;
- clk_list = &priv->clk_list;
- while (!list_empty(clk_list)) {
- clk_info = list_first_entry(clk_list, struct icnss_clk_info,
- list);
- list_del(&clk_info->list);
- }
- }
- static int icnss_clk_on(struct list_head *clk_list)
- {
- struct icnss_clk_info *clk_info;
- int ret = 0;
- list_for_each_entry(clk_info, clk_list, list) {
- if (IS_ERR_OR_NULL(clk_info->clk))
- continue;
- ret = icnss_clk_on_single(clk_info);
- if (ret)
- break;
- }
- if (!ret)
- return 0;
- list_for_each_entry_continue_reverse(clk_info, clk_list, list) {
- if (IS_ERR_OR_NULL(clk_info->clk))
- continue;
- icnss_clk_off_single(clk_info);
- }
- return ret;
- }
- static int icnss_clk_off(struct list_head *clk_list)
- {
- struct icnss_clk_info *clk_info;
- list_for_each_entry_reverse(clk_info, clk_list, list) {
- if (IS_ERR_OR_NULL(clk_info->clk))
- continue;
- icnss_clk_off_single(clk_info);
- }
- return 0;
- }
- int icnss_hw_power_on(struct icnss_priv *priv)
- {
- int ret = 0;
- icnss_pr_dbg("HW Power on: state: 0x%lx\n", priv->state);
- spin_lock(&priv->on_off_lock);
- if (test_bit(ICNSS_POWER_ON, &priv->state)) {
- spin_unlock(&priv->on_off_lock);
- return ret;
- }
- set_bit(ICNSS_POWER_ON, &priv->state);
- spin_unlock(&priv->on_off_lock);
- ret = icnss_vreg_on(priv);
- if (ret) {
- icnss_pr_err("Failed to turn on vreg, err = %d\n", ret);
- goto out;
- }
- ret = icnss_clk_on(&priv->clk_list);
- if (ret)
- goto vreg_off;
- return ret;
- vreg_off:
- icnss_vreg_off(priv);
- out:
- clear_bit(ICNSS_POWER_ON, &priv->state);
- return ret;
- }
- int icnss_hw_power_off(struct icnss_priv *priv)
- {
- int ret = 0;
- if (test_bit(HW_ALWAYS_ON, &priv->ctrl_params.quirks))
- return 0;
- if (test_bit(ICNSS_FW_DOWN, &priv->state))
- return 0;
- icnss_pr_dbg("HW Power off: 0x%lx\n", priv->state);
- spin_lock(&priv->on_off_lock);
- if (!test_bit(ICNSS_POWER_ON, &priv->state)) {
- spin_unlock(&priv->on_off_lock);
- return ret;
- }
- clear_bit(ICNSS_POWER_ON, &priv->state);
- spin_unlock(&priv->on_off_lock);
- icnss_clk_off(&priv->clk_list);
- ret = icnss_vreg_off(priv);
- return ret;
- }
- int icnss_power_on(struct device *dev)
- {
- struct icnss_priv *priv = dev_get_drvdata(dev);
- if (!priv) {
- icnss_pr_err("Invalid drvdata: dev %pK, data %pK\n",
- dev, priv);
- return -EINVAL;
- }
- icnss_pr_dbg("Power On: 0x%lx\n", priv->state);
- return icnss_hw_power_on(priv);
- }
- EXPORT_SYMBOL(icnss_power_on);
- int icnss_power_off(struct device *dev)
- {
- struct icnss_priv *priv = dev_get_drvdata(dev);
- if (!priv) {
- icnss_pr_err("Invalid drvdata: dev %pK, data %pK\n",
- dev, priv);
- return -EINVAL;
- }
- icnss_pr_dbg("Power Off: 0x%lx\n", priv->state);
- return icnss_hw_power_off(priv);
- }
- EXPORT_SYMBOL(icnss_power_off);
- int icnss_power_on_chain1_reg(struct icnss_priv *priv)
- {
- struct list_head *vreg_list = &priv->vreg_list;
- struct icnss_vreg_info *vreg = NULL;
- int ret = 0;
- list_for_each_entry(vreg, vreg_list, list) {
- if (!strcmp(ICNSS_CHAIN1_REGULATOR, vreg->cfg.name) && priv->is_chain1_supported) {
- vreg->cfg.is_supported = true;
- ret = icnss_vreg_on_single(vreg);
- break;
- }
- }
- /* Setting chain1 supported to false as chain1 regulator cfg already updated */
- priv->is_chain1_supported = false;
- return ret;
- }
- void icnss_put_resources(struct icnss_priv *priv)
- {
- icnss_put_clk(priv);
- icnss_put_vreg(priv);
- }
- #if IS_ENABLED(CONFIG_MSM_QMP)
- /**
- * icnss_aop_interface_init: Initialize AOP interface: either mbox channel or direct QMP
- * @priv: Pointer to icnss platform data
- *
- * Device tree file should have either mbox or qmp configured, but not both.
- * Based on device tree configuration setup mbox channel or QMP
- *
- * Return: 0 for success, otherwise error code
- */
- int icnss_aop_interface_init(struct icnss_priv *priv)
- {
- struct mbox_client *mbox = &priv->mbox_client_data;
- struct mbox_chan *chan;
- int ret = 0, ol_cpr = 0;
- ol_cpr = of_property_read_string(priv->pdev->dev.of_node,
- "qcom,vreg_ol_cpr",
- &priv->cpr_info.vreg_ol_cpr);
- if (ol_cpr && !priv->pdc_init_table) {
- icnss_pr_dbg("Vreg for OL CPR and pdc_init table not configured\n");
- return -EINVAL;
- }
- mbox->dev = &priv->pdev->dev;
- mbox->tx_block = true;
- mbox->tx_tout = ICNSS_MBOX_TIMEOUT_MS;
- mbox->knows_txdone = false;
- priv->mbox_chan = NULL;
- priv->qmp = NULL;
- priv->use_direct_qmp = false;
- /* First try to get mbox channel, if it fails then try qmp_get
- * In device tree file there should be either mboxes or qmp,
- * cannot have both properties at the same time.
- */
- chan = mbox_request_channel(mbox, 0);
- if (IS_ERR(chan)) {
- ret = PTR_ERR(chan);
- icnss_pr_dbg("Failed to get mbox channel with err %d\n", ret);
- priv->qmp = qmp_get(&priv->pdev->dev);
- if (IS_ERR(priv->qmp)) {
- icnss_pr_err("Failed to get qmp\n");
- return PTR_ERR(priv->qmp);
- } else {
- priv->use_direct_qmp = true;
- icnss_pr_dbg("QMP initialized\n");
- }
- } else {
- priv->mbox_chan = chan;
- icnss_pr_dbg("Mbox channel initialized\n");
- }
- ret = icnss_aop_pdc_reconfig(priv);
- if (ret)
- icnss_pr_err("Failed to reconfig WLAN PDC, err = %d\n", ret);
- return ret;
- }
- /**
- * icnss_aop_interface_deinit: Cleanup AOP interface
- * @priv: Pointer to icnss platform data
- *
- * Cleanup mbox channel or QMP whichever was configured during initialization.
- *
- * Return: None
- */
- void icnss_aop_interface_deinit(struct icnss_priv *priv)
- {
- if (!IS_ERR_OR_NULL(priv->mbox_chan))
- mbox_free_channel(priv->mbox_chan);
- if (!IS_ERR_OR_NULL(priv->qmp)) {
- qmp_put(priv->qmp);
- priv->use_direct_qmp = false;
- }
- }
- static int icnss_aop_set_vreg_param(struct icnss_priv *priv,
- const char *vreg_name,
- enum icnss_vreg_param param,
- enum icnss_tcs_seq seq, int val)
- {
- struct qmp_pkt pkt;
- char mbox_msg[ICNSS_MBOX_MSG_MAX_LEN];
- static const char * const vreg_param_str[] = {"v", "m", "e"};
- static const char *const tcs_seq_str[] = {"upval", "dwnval", "enable"};
- int ret = 0;
- if (param > ICNSS_VREG_ENABLE || seq > ICNSS_TCS_ALL_SEQ || !vreg_name)
- return -EINVAL;
- snprintf(mbox_msg, ICNSS_MBOX_MSG_MAX_LEN,
- "{class: wlan_pdc, res: %s.%s, %s: %d}", vreg_name,
- vreg_param_str[param], tcs_seq_str[seq], val);
- if (priv->use_direct_qmp) {
- icnss_pr_dbg("Sending AOP QMP msg: %s\n", mbox_msg);
- ret = qmp_send(priv->qmp, mbox_msg, ICNSS_MBOX_MSG_MAX_LEN);
- if (ret < 0)
- icnss_pr_err("Failed to send AOP QMP msg: %s\n", mbox_msg);
- else
- ret = 0;
- } else {
- icnss_pr_dbg("Sending AOP Mbox msg: %s\n", mbox_msg);
- pkt.size = ICNSS_MBOX_MSG_MAX_LEN;
- pkt.data = mbox_msg;
- ret = mbox_send_message(priv->mbox_chan, &pkt);
- if (ret < 0)
- icnss_pr_err("Failed to send AOP mbox msg: %s,ret: %d\n",
- mbox_msg, ret);
- else
- ret = 0;
- }
- return ret;
- }
- /* icnss_aop_pdc_reconfig: Send AOP msg to configure PDC table for WLAN device
- * @priv: Pointer to icnss platform data
- *
- * Send AOP QMP or Mbox msg to configure PDC table for WLAN device
- *
- * Return: 0 for success, otherwise error code
- */
- int icnss_aop_pdc_reconfig(struct icnss_priv *priv)
- {
- u32 i;
- int ret;
- char *mbox_msg;
- struct qmp_pkt pkt;
- if (priv->pdc_init_table_len <= 0 || !priv->pdc_init_table)
- return 0;
- icnss_pr_dbg("Setting PDC defaults for device ID: (0x%x)\n",
- priv->device_id);
- for (i = 0; i < priv->pdc_init_table_len; i++) {
- mbox_msg = (char *)priv->pdc_init_table[i];
- if (priv->use_direct_qmp) {
- icnss_pr_dbg("Sending AOP QMP msg: %s\n", mbox_msg);
- ret = qmp_send(priv->qmp, mbox_msg,
- ICNSS_MBOX_MSG_MAX_LEN);
- if (ret < 0)
- icnss_pr_err("Failed to send AOP QMP msg: %s\n",
- mbox_msg);
- else
- ret = 0;
- } else {
- icnss_pr_dbg("Sending AOP Mbox msg: %s\n", mbox_msg);
- pkt.size = ICNSS_MBOX_MSG_MAX_LEN;
- pkt.data = mbox_msg;
- ret = mbox_send_message(priv->mbox_chan, &pkt);
- if (ret < 0)
- icnss_pr_err("Failed to send AOP mbox msg: %s,ret: %d\n",
- mbox_msg, ret);
- else
- ret = 0;
- }
- }
- return ret;
- }
- #else
- int icnss_aop_interface_init(struct icnss_priv *priv)
- {
- return 0;
- }
- void icnss_aop_interface_deinit(struct icnss_priv *priv)
- {
- }
- static int icnss_aop_set_vreg_param(struct icnss_priv *priv,
- const char *vreg_name,
- enum icnss_vreg_param param,
- enum icnss_tcs_seq seq, int val)
- {
- return 0;
- }
- int icnss_aop_pdc_reconfig(struct icnss_priv *priv)
- {
- return 0;
- }
- #endif
- void icnss_power_misc_params_init(struct icnss_priv *priv)
- {
- struct device *dev = &priv->pdev->dev;
- int ret;
- /* common DT Entries */
- priv->pdc_init_table_len =
- of_property_count_strings(dev->of_node,
- "qcom,pdc_init_table");
- if (priv->pdc_init_table_len > 0) {
- priv->pdc_init_table =
- kcalloc(priv->pdc_init_table_len,
- sizeof(char *), GFP_KERNEL);
- if (priv->pdc_init_table) {
- ret = of_property_read_string_array(dev->of_node,
- "qcom,pdc_init_table",
- priv->pdc_init_table,
- priv->pdc_init_table_len);
- if (ret < 0)
- icnss_pr_err("Failed to get PDC Init Table\n");
- } else {
- icnss_pr_err("Failed to alloc PDC Init Table mem\n");
- }
- } else {
- icnss_pr_dbg("PDC Init Table not configured\n");
- }
- }
- int icnss_update_cpr_info(struct icnss_priv *priv)
- {
- struct icnss_cpr_info *cpr_info = &priv->cpr_info;
- if (!cpr_info->vreg_ol_cpr || (!priv->mbox_chan && !priv->use_direct_qmp)) {
- icnss_pr_dbg("Mbox channel / QMP / OL CPR Vreg not configured\n");
- return 0;
- }
- if (cpr_info->voltage == 0) {
- icnss_pr_err("Voltage %dmV is not valid\n", cpr_info->voltage);
- return -EINVAL;
- }
- cpr_info->voltage = cpr_info->voltage > BT_CXMX_VOLTAGE_MV ?
- cpr_info->voltage : BT_CXMX_VOLTAGE_MV;
- return icnss_aop_set_vreg_param(priv,
- cpr_info->vreg_ol_cpr,
- ICNSS_VREG_VOLTAGE,
- ICNSS_TCS_UP_SEQ,
- cpr_info->voltage);
- }
- static int icnss_get_battery_level(struct icnss_priv *priv)
- {
- int err = 0, battery_percentage = 0;
- union power_supply_propval psp = {0,};
- if (!priv->batt_psy)
- priv->batt_psy = power_supply_get_by_name("battery");
- if (priv->batt_psy) {
- err = power_supply_get_property(priv->batt_psy,
- POWER_SUPPLY_PROP_CAPACITY,
- &psp);
- if (err) {
- icnss_pr_err("battery percentage read error:%d\n", err);
- goto out;
- }
- battery_percentage = psp.intval;
- }
- icnss_pr_info("Battery Percentage: %d\n", battery_percentage);
- out:
- return battery_percentage;
- }
- static void icnss_update_soc_level(struct work_struct *work)
- {
- int battery_percentage = 0, current_updated_voltage = 0, err = 0;
- int level_count;
- struct icnss_priv *priv = container_of(work, struct icnss_priv, soc_update_work);
- battery_percentage = icnss_get_battery_level(priv);
- if (!battery_percentage ||
- battery_percentage > ICNSS_MAX_BATTERY_LEVEL) {
- icnss_pr_err("Battery percentage read failure\n");
- return;
- }
- for (level_count = 0; level_count < ICNSS_BATTERY_LEVEL_COUNT;
- level_count++) {
- if (battery_percentage >=
- icnss_battery_level[level_count].lower_battery_threshold) {
- current_updated_voltage =
- icnss_battery_level[level_count].ldo_voltage;
- break;
- }
- }
- if (level_count != ICNSS_BATTERY_LEVEL_COUNT &&
- priv->last_updated_voltage != current_updated_voltage) {
- err = icnss_send_vbatt_update(priv, current_updated_voltage);
- if (err < 0) {
- icnss_pr_err("Unable to update ldo voltage");
- return;
- }
- priv->last_updated_voltage = current_updated_voltage;
- }
- }
- static int icnss_battery_supply_callback(struct notifier_block *nb,
- unsigned long event, void *data)
- {
- struct power_supply *psy = data;
- struct icnss_priv *priv = container_of(nb, struct icnss_priv,
- psf_nb);
- if (strcmp(psy->desc->name, "battery"))
- return NOTIFY_OK;
- if (test_bit(ICNSS_WLFW_CONNECTED, &priv->state) &&
- !test_bit(ICNSS_FW_DOWN, &priv->state))
- queue_work(priv->soc_update_wq, &priv->soc_update_work);
- return NOTIFY_OK;
- }
- int icnss_get_psf_info(struct icnss_priv *priv)
- {
- int ret = 0;
- priv->soc_update_wq = alloc_workqueue("icnss_soc_update",
- WQ_UNBOUND, 1);
- if (!priv->soc_update_wq) {
- icnss_pr_err("Workqueue creation failed for soc update\n");
- ret = -EFAULT;
- goto out;
- }
- priv->psf_nb.notifier_call = icnss_battery_supply_callback;
- ret = power_supply_reg_notifier(&priv->psf_nb);
- if (ret < 0) {
- icnss_pr_err("Power supply framework registration err: %d\n",
- ret);
- goto err_psf_registration;
- }
- INIT_WORK(&priv->soc_update_work, icnss_update_soc_level);
- return 0;
- err_psf_registration:
- destroy_workqueue(priv->soc_update_wq);
- out:
- return ret;
- }
|