| /* Copyright (c) 2012, The Linux Foundation. All rights reserved. |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 and |
| * only version 2 as published by the Free Software Foundation. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| */ |
| #include <linux/module.h> |
| #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/mfd/pm8xxx/pm8921.h> |
| #include <linux/mfd/pm8xxx/gpio.h> |
| #include <linux/wcnss_wlan.h> |
| #include <linux/semaphore.h> |
| #include <linux/list.h> |
| #include <linux/slab.h> |
| #include <linux/clk.h> |
| #include <mach/msm_xo.h> |
| #include <mach/msm_iomap.h> |
| |
| |
| static void __iomem *msm_wcnss_base; |
| static struct msm_xo_voter *wlan_clock; |
| static const char *id = "WLAN"; |
| static LIST_HEAD(power_on_lock_list); |
| static DEFINE_MUTEX(list_lock); |
| static DEFINE_SEMAPHORE(wcnss_power_on_lock); |
| |
| #define MSM_RIVA_PHYS 0x03204000 |
| #define MSM_PRONTO_PHYS 0xfb21b000 |
| |
| #define RIVA_PMU_OFFSET 0x28 |
| #define PRONTO_PMU_OFFSET 0x1004 |
| |
| #define WCNSS_PMU_CFG_IRIS_XO_CFG BIT(3) |
| #define WCNSS_PMU_CFG_IRIS_XO_EN BIT(4) |
| #define WCNSS_PMU_CFG_GC_BUS_MUX_SEL_TOP BIT(5) |
| #define WCNSS_PMU_CFG_IRIS_XO_CFG_STS BIT(6) /* 1: in progress, 0: done */ |
| |
| #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 |
| |
| struct vregs_info { |
| const char * const name; |
| int state; |
| const int nominal_min; |
| const int low_power_min; |
| const int max_voltage; |
| const int uA_load; |
| struct regulator *regulator; |
| }; |
| |
| /* IRIS regulators for Riva hardware */ |
| static struct vregs_info iris_vregs_riva[] = { |
| {"iris_vddxo", VREG_NULL_CONFIG, 1800000, 0, 1800000, 10000, NULL}, |
| {"iris_vddrfa", VREG_NULL_CONFIG, 1300000, 0, 1300000, 100000, NULL}, |
| {"iris_vddpa", VREG_NULL_CONFIG, 2900000, 0, 3000000, 515000, NULL}, |
| {"iris_vdddig", VREG_NULL_CONFIG, 1200000, 0, 1225000, 10000, NULL}, |
| }; |
| |
| /* WCNSS regulators for Riva hardware */ |
| static struct vregs_info riva_vregs[] = { |
| /* Riva */ |
| {"riva_vddmx", VREG_NULL_CONFIG, 1050000, 0, 1150000, 0, NULL}, |
| {"riva_vddcx", VREG_NULL_CONFIG, 1050000, 0, 1150000, 0, NULL}, |
| {"riva_vddpx", VREG_NULL_CONFIG, 1800000, 0, 1800000, 0, NULL}, |
| }; |
| |
| /* IRIS regulators for Pronto hardware */ |
| static struct vregs_info iris_vregs_pronto[] = { |
| {"qcom,iris-vddxo", VREG_NULL_CONFIG, 1800000, 0, |
| 1800000, 10000, NULL}, |
| {"qcom,iris-vddrfa", VREG_NULL_CONFIG, 1300000, 0, |
| 1300000, 100000, NULL}, |
| {"qcom,iris-vddpa", VREG_NULL_CONFIG, 2900000, 0, |
| 3000000, 515000, NULL}, |
| {"qcom,iris-vdddig", VREG_NULL_CONFIG, 1225000, 0, |
| 1225000, 10000, NULL}, |
| }; |
| |
| /* WCNSS regulators for Pronto hardware */ |
| static struct vregs_info pronto_vregs[] = { |
| {"qcom,pronto-vddmx", VREG_NULL_CONFIG, 950000, 0, |
| 1150000, 0, NULL}, |
| {"qcom,pronto-vddcx", VREG_NULL_CONFIG, 900000, 0, |
| 1150000, 0, NULL}, |
| {"qcom,pronto-vddpx", VREG_NULL_CONFIG, 1800000, 0, |
| 1800000, 0, NULL}, |
| }; |
| |
| |
| struct host_driver { |
| char name[20]; |
| struct list_head list; |
| }; |
| |
| |
| static int configure_iris_xo(struct device *dev, bool use_48mhz_xo, int on) |
| { |
| u32 reg = 0; |
| int rc = 0; |
| int size = 0; |
| int pmu_offset = 0; |
| unsigned long wcnss_phys_addr; |
| void __iomem *pmu_conf_reg; |
| struct clk *clk; |
| |
| if (wcnss_hardware_type() == WCNSS_PRONTO_HW) { |
| wcnss_phys_addr = MSM_PRONTO_PHYS; |
| pmu_offset = PRONTO_PMU_OFFSET; |
| size = 0x3000; |
| |
| clk = clk_get(dev, "xo"); |
| if (IS_ERR(clk)) { |
| pr_err("Couldn't get xo clock\n"); |
| return PTR_ERR(clk); |
| } |
| } else { |
| wcnss_phys_addr = MSM_RIVA_PHYS; |
| pmu_offset = RIVA_PMU_OFFSET; |
| size = SZ_256; |
| |
| clk = clk_get(dev, "cxo"); |
| if (IS_ERR(clk)) { |
| pr_err("Couldn't get cxo clock\n"); |
| return PTR_ERR(clk); |
| } |
| } |
| |
| if (on) { |
| msm_wcnss_base = ioremap(wcnss_phys_addr, size); |
| if (!msm_wcnss_base) { |
| pr_err("ioremap wcnss physical failed\n"); |
| goto fail; |
| } |
| pmu_conf_reg = msm_wcnss_base + pmu_offset; |
| |
| /* Enable IRIS XO */ |
| rc = clk_prepare_enable(clk); |
| if (rc) { |
| pr_err("clk enable failed\n"); |
| goto fail; |
| } |
| 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); |
| |
| /* Clear XO_MODE[b2:b1] bits. Clear implies 19.2 MHz TCXO */ |
| reg &= ~(WCNSS_PMU_CFG_IRIS_XO_MODE); |
| |
| if (use_48mhz_xo) |
| reg |= WCNSS_PMU_CFG_IRIS_XO_MODE_48; |
| |
| writel_relaxed(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) { |
| wlan_clock = msm_xo_get(MSM_XO_TCXO_A2, id); |
| if (IS_ERR(wlan_clock)) { |
| rc = PTR_ERR(wlan_clock); |
| pr_err("Failed to get MSM_XO_TCXO_A2 voter (%d)\n", |
| rc); |
| goto fail; |
| } |
| |
| rc = msm_xo_mode_vote(wlan_clock, MSM_XO_MODE_ON); |
| if (rc < 0) { |
| pr_err("Configuring MSM_XO_MODE_ON failed (%d)\n", |
| rc); |
| goto msm_xo_vote_fail; |
| } |
| } |
| } else { |
| if (wlan_clock != NULL && !use_48mhz_xo) { |
| rc = msm_xo_mode_vote(wlan_clock, MSM_XO_MODE_OFF); |
| if (rc < 0) |
| pr_err("Configuring MSM_XO_MODE_OFF failed (%d)\n", |
| rc); |
| } |
| } |
| |
| /* Add some delay for XO to settle */ |
| msleep(20); |
| |
| clk_put(clk); |
| return rc; |
| |
| msm_xo_vote_fail: |
| msm_xo_put(wlan_clock); |
| |
| fail: |
| clk_put(clk); |
| return rc; |
| } |
| |
| /* Helper routine to turn off all WCNSS & IRIS vregs */ |
| static void wcnss_vregs_off(struct vregs_info regulators[], uint size) |
| { |
| int i, rc = 0; |
| |
| /* 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_optimum_mode( |
| regulators[i].regulator, 0); |
| if (rc < 0) |
| pr_err("regulator_set_optimum_mode(%s) failed (%d)\n", |
| regulators[i].name, rc); |
| } |
| |
| /* Set voltage to lowest level */ |
| if (regulators[i].state & VREG_SET_VOLTAGE_MASK) { |
| rc = regulator_set_voltage(regulators[i].regulator, |
| regulators[i].low_power_min, |
| regulators[i].max_voltage); |
| if (rc) |
| pr_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) |
| pr_err("vreg %s disable failed (%d)\n", |
| regulators[i].name, rc); |
| } |
| |
| /* Free the regulator source */ |
| if (regulators[i].state & VREG_GET_REGULATOR_MASK) |
| regulator_put(regulators[i].regulator); |
| |
| regulators[i].state = VREG_NULL_CONFIG; |
| } |
| } |
| |
| /* Common helper routine to turn on all WCNSS & IRIS vregs */ |
| static int wcnss_vregs_on(struct device *dev, |
| struct vregs_info regulators[], uint size) |
| { |
| int i, rc = 0, reg_cnt; |
| |
| for (i = 0; i < size; i++) { |
| /* Get regulator source */ |
| regulators[i].regulator = |
| regulator_get(dev, regulators[i].name); |
| if (IS_ERR(regulators[i].regulator)) { |
| rc = PTR_ERR(regulators[i].regulator); |
| pr_err("regulator get of %s failed (%d)\n", |
| regulators[i].name, rc); |
| goto fail; |
| } |
| regulators[i].state |= VREG_GET_REGULATOR_MASK; |
| reg_cnt = regulator_count_voltages(regulators[i].regulator); |
| /* Set voltage to nominal. Exclude swtiches e.g. LVS */ |
| if ((regulators[i].nominal_min || regulators[i].max_voltage) |
| && (reg_cnt > 0)) { |
| rc = regulator_set_voltage(regulators[i].regulator, |
| regulators[i].nominal_min, |
| regulators[i].max_voltage); |
| if (rc) { |
| pr_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 (regulators[i].uA_load && (reg_cnt > 0)) { |
| rc = regulator_set_optimum_mode(regulators[i].regulator, |
| regulators[i].uA_load); |
| if (rc < 0) { |
| pr_err("regulator_set_optimum_mode(%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) { |
| pr_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); |
| return rc; |
| |
| } |
| |
| static void wcnss_iris_vregs_off(enum wcnss_hw_type hw_type) |
| { |
| switch (hw_type) { |
| case WCNSS_RIVA_HW: |
| wcnss_vregs_off(iris_vregs_riva, ARRAY_SIZE(iris_vregs_riva)); |
| break; |
| case WCNSS_PRONTO_HW: |
| wcnss_vregs_off(iris_vregs_pronto, |
| ARRAY_SIZE(iris_vregs_pronto)); |
| break; |
| default: |
| pr_err("%s invalid hardware %d\n", __func__, hw_type); |
| |
| } |
| } |
| |
| static int wcnss_iris_vregs_on(struct device *dev, enum wcnss_hw_type hw_type) |
| { |
| int ret = -1; |
| |
| switch (hw_type) { |
| case WCNSS_RIVA_HW: |
| ret = wcnss_vregs_on(dev, iris_vregs_riva, |
| ARRAY_SIZE(iris_vregs_riva)); |
| break; |
| case WCNSS_PRONTO_HW: |
| ret = wcnss_vregs_on(dev, iris_vregs_pronto, |
| ARRAY_SIZE(iris_vregs_pronto)); |
| break; |
| default: |
| pr_err("%s invalid hardware %d\n", __func__, hw_type); |
| } |
| return ret; |
| } |
| |
| static void wcnss_core_vregs_off(enum wcnss_hw_type hw_type) |
| { |
| switch (hw_type) { |
| case WCNSS_RIVA_HW: |
| wcnss_vregs_off(riva_vregs, ARRAY_SIZE(riva_vregs)); |
| break; |
| case WCNSS_PRONTO_HW: |
| wcnss_vregs_off(pronto_vregs, ARRAY_SIZE(pronto_vregs)); |
| break; |
| default: |
| pr_err("%s invalid hardware %d\n", __func__, hw_type); |
| } |
| |
| } |
| |
| static int wcnss_core_vregs_on(struct device *dev, enum wcnss_hw_type hw_type) |
| { |
| int ret = -1; |
| |
| switch (hw_type) { |
| case WCNSS_RIVA_HW: |
| ret = wcnss_vregs_on(dev, riva_vregs, ARRAY_SIZE(riva_vregs)); |
| break; |
| case WCNSS_PRONTO_HW: |
| ret = wcnss_vregs_on(dev, pronto_vregs, |
| ARRAY_SIZE(pronto_vregs)); |
| break; |
| default: |
| pr_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 rc = 0; |
| enum wcnss_hw_type hw_type = wcnss_hardware_type(); |
| |
| if (on) { |
| down(&wcnss_power_on_lock); |
| /* RIVA regulator settings */ |
| rc = wcnss_core_vregs_on(dev, hw_type); |
| if (rc) |
| goto fail_wcnss_on; |
| |
| /* IRIS regulator settings */ |
| rc = wcnss_iris_vregs_on(dev, hw_type); |
| if (rc) |
| goto fail_iris_on; |
| |
| /* Configure IRIS XO */ |
| rc = configure_iris_xo(dev, cfg->use_48mhz_xo, |
| WCNSS_WLAN_SWITCH_ON); |
| if (rc) |
| goto fail_iris_xo; |
| up(&wcnss_power_on_lock); |
| |
| } else { |
| configure_iris_xo(dev, cfg->use_48mhz_xo, |
| WCNSS_WLAN_SWITCH_OFF); |
| wcnss_iris_vregs_off(hw_type); |
| wcnss_core_vregs_off(hw_type); |
| } |
| |
| return rc; |
| |
| fail_iris_xo: |
| wcnss_iris_vregs_off(hw_type); |
| |
| fail_iris_on: |
| wcnss_core_vregs_off(hw_type); |
| |
| 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(struct host_driver), 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 (!strncmp(node->name, driver_name, sizeof(node->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); |