| /* 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. |
| * |
| */ |
| |
| #define pr_fmt(fmt) "%s: " fmt, __func__ |
| |
| #include <linux/kernel.h> |
| #include <linux/of.h> |
| #include <linux/err.h> |
| #include <linux/init.h> |
| #include <linux/slab.h> |
| #include <linux/delay.h> |
| #include <linux/mutex.h> |
| #include <linux/types.h> |
| #include <linux/hwmon.h> |
| #include <linux/module.h> |
| #include <linux/debugfs.h> |
| #include <linux/spmi.h> |
| #include <linux/of_irq.h> |
| #include <linux/wakelock.h> |
| #include <linux/interrupt.h> |
| #include <linux/completion.h> |
| #include <linux/hwmon-sysfs.h> |
| #include <linux/qpnp/qpnp-adc.h> |
| #include <linux/thermal.h> |
| #include <linux/platform_device.h> |
| |
| /* QPNP VADC TM register definition */ |
| #define QPNP_STATUS1 0x8 |
| #define QPNP_STATUS1_OP_MODE 4 |
| #define QPNP_STATUS1_MEAS_INTERVAL_EN_STS BIT(2) |
| #define QPNP_STATUS1_REQ_STS BIT(1) |
| #define QPNP_STATUS1_EOC BIT(0) |
| #define QPNP_STATUS2 0x9 |
| #define QPNP_STATUS2_CONV_SEQ_STATE 6 |
| #define QPNP_STATUS2_FIFO_NOT_EMPTY_FLAG BIT(1) |
| #define QPNP_STATUS2_CONV_SEQ_TIMEOUT_STS BIT(0) |
| #define QPNP_CONV_TIMEOUT_ERR 2 |
| |
| #define QPNP_MODE_CTL 0x40 |
| #define QPNP_OP_MODE_SHIFT 3 |
| #define QPNP_VREF_XO_THM_FORCE BIT(2) |
| #define QPNP_AMUX_TRIM_EN BIT(1) |
| #define QPNP_ADC_TRIM_EN BIT(0) |
| #define QPNP_EN_CTL1 0x46 |
| #define QPNP_ADC_TM_EN BIT(7) |
| #define QPNP_ADC_CH_SEL_CTL 0x48 |
| #define QPNP_ADC_DIG_PARAM 0x50 |
| #define QPNP_ADC_DIG_DEC_RATIO_SEL_SHIFT 3 |
| #define QPNP_HW_SETTLE_DELAY 0x51 |
| #define QPNP_CONV_REQ 0x52 |
| #define QPNP_CONV_REQ_SET BIT(7) |
| #define QPNP_CONV_SEQ_CTL 0x54 |
| #define QPNP_CONV_SEQ_HOLDOFF_SHIFT 4 |
| #define QPNP_CONV_SEQ_TRIG_CTL 0x55 |
| #define QPNP_ADC_TM_MEAS_INTERVAL_CTL 0x57 |
| #define QPNP_ADC_TM_MEAS_INTERVAL_TIME_SHIFT 0x3 |
| #define QPNP_ADC_TM_MEAS_INTERVAL_CTL2 0x58 |
| #define QPNP_ADC_TM_MEAS_INTERVAL_CTL2_SHIFT 0x4 |
| #define QPNP_ADC_TM_MEAS_INTERVAL_CTL2_MASK 0xf0 |
| #define QPNP_ADC_TM_MEAS_INTERVAL_CTL3_MASK 0xf |
| |
| #define QPNP_ADC_MEAS_INTERVAL_OP_CTL 0x59 |
| #define QPNP_ADC_MEAS_INTERVAL_OP BIT(7) |
| |
| #define QPNP_FAST_AVG_CTL 0x5a |
| #define QPNP_FAST_AVG_EN 0x5b |
| |
| #define QPNP_M0_LOW_THR_LSB 0x5c |
| #define QPNP_M0_LOW_THR_MSB 0x5d |
| #define QPNP_M0_HIGH_THR_LSB 0x5e |
| #define QPNP_M0_HIGH_THR_MSB 0x5f |
| #define QPNP_M1_LOW_THR_LSB 0x69 |
| #define QPNP_M1_LOW_THR_MSB 0x6a |
| #define QPNP_M1_HIGH_THR_LSB 0x6b |
| #define QPNP_M1_HIGH_THR_MSB 0x6c |
| #define QPNP_M2_LOW_THR_LSB 0x71 |
| #define QPNP_M2_LOW_THR_MSB 0x72 |
| #define QPNP_M2_HIGH_THR_LSB 0x7b |
| #define QPNP_M2_HIGH_THR_MSB 0x7c |
| #define QPNP_M3_LOW_THR_LSB 0x79 |
| #define QPNP_M3_LOW_THR_MSB 0x7a |
| #define QPNP_M3_HIGH_THR_LSB 0x7b |
| #define QPNP_M3_HIGH_THR_MSB 0x7c |
| #define QPNP_M4_LOW_THR_LSB 0x81 |
| #define QPNP_M4_LOW_THR_MSB 0x82 |
| #define QPNP_M4_HIGH_THR_LSB 0x83 |
| #define QPNP_M4_HIGH_THR_MSB 0x84 |
| |
| #define QPNP_ADC_TM_MULTI_MEAS_EN 0x41 |
| #define QPNP_ADC_TM_MULTI_MEAS_EN_M0 BIT(0) |
| #define QPNP_ADC_TM_MULTI_MEAS_EN_M1 BIT(1) |
| #define QPNP_ADC_TM_MULTI_MEAS_EN_M2 BIT(2) |
| #define QPNP_ADC_TM_MULTI_MEAS_EN_M3 BIT(3) |
| #define QPNP_ADC_TM_MULTI_MEAS_EN_M4 BIT(4) |
| #define QPNP_ADC_TM_LOW_THR_INT_EN 0x42 |
| #define QPNP_ADC_TM_LOW_THR_INT_EN_M0 BIT(0) |
| #define QPNP_ADC_TM_LOW_THR_INT_EN_M1 BIT(1) |
| #define QPNP_ADC_TM_LOW_THR_INT_EN_M2 BIT(2) |
| #define QPNP_ADC_TM_LOW_THR_INT_EN_M3 BIT(3) |
| #define QPNP_ADC_TM_LOW_THR_INT_EN_M4 BIT(4) |
| #define QPNP_ADC_TM_HIGH_THR_INT_EN 0x43 |
| #define QPNP_ADC_TM_HIGH_THR_INT_EN_M0 BIT(0) |
| #define QPNP_ADC_TM_HIGH_THR_INT_EN_M1 BIT(1) |
| #define QPNP_ADC_TM_HIGH_THR_INT_EN_M2 BIT(2) |
| #define QPNP_ADC_TM_HIGH_THR_INT_EN_M3 BIT(3) |
| #define QPNP_ADC_TM_HIGH_THR_INT_EN_M4 BIT(4) |
| |
| #define QPNP_ADC_TM_M0_MEAS_INTERVAL_CTL 0x57 |
| #define QPNP_ADC_TM_M1_MEAS_INTERVAL_CTL 0x6d |
| #define QPNP_ADC_TM_M2_MEAS_INTERVAL_CTL 0x75 |
| #define QPNP_ADC_TM_M3_MEAS_INTERVAL_CTL 0x7d |
| #define QPNP_ADC_TM_M4_MEAS_INTERVAL_CTL 0x85 |
| #define QPNP_ADC_TM_STATUS1 0x8 |
| #define QPNP_ADC_TM_STATUS_LOW 0xa |
| #define QPNP_ADC_TM_STATUS_HIGH 0xb |
| |
| #define QPNP_ADC_TM_M0_LOW_THR 0x5d5c |
| #define QPNP_ADC_TM_M0_HIGH_THR 0x5f5e |
| #define QPNP_ADC_TM_MEAS_INTERVAL 0x0 |
| |
| #define QPNP_ADC_TM_THR_LSB_MASK(val) (val & 0xff) |
| #define QPNP_ADC_TM_THR_MSB_MASK(val) ((val & 0xff00) >> 8) |
| |
| struct qpnp_adc_tm_sensor { |
| struct thermal_zone_device *tz_dev; |
| enum thermal_device_mode mode; |
| uint32_t sensor_num; |
| enum qpnp_adc_meas_timer_select timer_select; |
| uint32_t meas_interval; |
| uint32_t low_thr; |
| uint32_t high_thr; |
| uint32_t btm_channel_num; |
| struct work_struct work; |
| }; |
| |
| struct qpnp_adc_tm_drv { |
| struct qpnp_adc_drv *adc; |
| struct qpnp_adc_tm_usbid_param *usb_id_param; |
| struct work_struct usbid_work; |
| struct qpnp_adc_tm_btm_param *battery_param; |
| struct work_struct batt_work; |
| bool adc_tm_initialized; |
| struct qpnp_adc_tm_sensor sensor[0]; |
| }; |
| |
| struct qpnp_adc_tm_drv *qpnp_adc_tm; |
| |
| struct qpnp_adc_tm_trip_reg_type { |
| uint16_t low_thr_lsb_addr; |
| uint16_t low_thr_msb_addr; |
| uint16_t high_thr_lsb_addr; |
| uint16_t high_thr_msb_addr; |
| u8 multi_meas_en; |
| u8 low_thr_int_chan_en; |
| u8 high_thr_int_chan_en; |
| }; |
| |
| static struct qpnp_adc_tm_trip_reg_type adc_tm_data[] = { |
| [QPNP_ADC_TM_M0_ADC_CH_SEL_CTL] = {QPNP_M0_LOW_THR_LSB, |
| QPNP_M0_LOW_THR_MSB, QPNP_M0_HIGH_THR_LSB, |
| QPNP_M0_HIGH_THR_MSB, QPNP_ADC_TM_MULTI_MEAS_EN_M0, |
| QPNP_ADC_TM_LOW_THR_INT_EN_M0, QPNP_ADC_TM_HIGH_THR_INT_EN_M0}, |
| [QPNP_ADC_TM_M1_ADC_CH_SEL_CTL] = {QPNP_M1_LOW_THR_LSB, |
| QPNP_M1_LOW_THR_MSB, QPNP_M1_HIGH_THR_LSB, |
| QPNP_M1_HIGH_THR_MSB, QPNP_ADC_TM_MULTI_MEAS_EN_M1, |
| QPNP_ADC_TM_LOW_THR_INT_EN_M1, QPNP_ADC_TM_HIGH_THR_INT_EN_M1}, |
| [QPNP_ADC_TM_M2_ADC_CH_SEL_CTL] = {QPNP_M2_LOW_THR_LSB, |
| QPNP_M2_LOW_THR_MSB, QPNP_M2_HIGH_THR_LSB, |
| QPNP_M2_HIGH_THR_MSB, QPNP_ADC_TM_MULTI_MEAS_EN_M2, |
| QPNP_ADC_TM_LOW_THR_INT_EN_M2, QPNP_ADC_TM_HIGH_THR_INT_EN_M2}, |
| [QPNP_ADC_TM_M3_ADC_CH_SEL_CTL] = {QPNP_M3_LOW_THR_LSB, |
| QPNP_M3_LOW_THR_MSB, QPNP_M3_HIGH_THR_LSB, |
| QPNP_M3_HIGH_THR_MSB, QPNP_ADC_TM_MULTI_MEAS_EN_M3, |
| QPNP_ADC_TM_LOW_THR_INT_EN_M3, QPNP_ADC_TM_HIGH_THR_INT_EN_M3}, |
| [QPNP_ADC_TM_M4_ADC_CH_SEL_CTL] = {QPNP_M4_LOW_THR_LSB, |
| QPNP_M4_LOW_THR_MSB, QPNP_M4_HIGH_THR_LSB, |
| QPNP_M4_HIGH_THR_MSB, QPNP_ADC_TM_MULTI_MEAS_EN_M4, |
| QPNP_ADC_TM_LOW_THR_INT_EN_M4, QPNP_ADC_TM_HIGH_THR_INT_EN_M4}, |
| }; |
| |
| static int32_t qpnp_adc_tm_read_reg(int16_t reg, u8 *data) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| int rc = 0; |
| |
| rc = spmi_ext_register_readl(adc_tm->adc->spmi->ctrl, |
| adc_tm->adc->slave, (adc_tm->adc->offset + reg), data, 1); |
| if (rc < 0) |
| pr_err("adc-tm read reg %d failed with %d\n", reg, rc); |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_write_reg(int16_t reg, u8 data) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| int rc = 0; |
| u8 *buf; |
| |
| buf = &data; |
| |
| rc = spmi_ext_register_writel(adc_tm->adc->spmi->ctrl, |
| adc_tm->adc->slave, (adc_tm->adc->offset + reg), buf, 1); |
| if (rc < 0) |
| pr_err("adc-tm write reg %d failed with %d\n", reg, rc); |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_enable(bool state) |
| { |
| int rc = 0; |
| u8 data = 0, enable_check = 0; |
| |
| if (state) { |
| data = QPNP_ADC_TM_EN; |
| rc = qpnp_adc_tm_write_reg(QPNP_EN_CTL1, |
| data); |
| if (rc < 0) |
| pr_err("adc-tm enable failed\n"); |
| } else { |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_MULTI_MEAS_EN, |
| &enable_check); |
| if (rc < 0) { |
| pr_err("multi measurement read failed\n"); |
| return rc; |
| } |
| |
| if (!enable_check) { |
| data = 0; |
| rc = qpnp_adc_tm_write_reg(QPNP_EN_CTL1, data); |
| if (rc < 0) |
| pr_err("adc-tm disable failed\n"); |
| } |
| } |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_enable_req_sts_check(void) |
| { |
| u8 status1; |
| int rc; |
| |
| /* The VADC_TM bank needs to be disabled for new conversion request */ |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_STATUS1, &status1); |
| if (rc) { |
| pr_err("adc-tm read status1 failed\n"); |
| return rc; |
| } |
| |
| /* Disable the bank if a conversion is occuring */ |
| if (status1 & QPNP_STATUS1_REQ_STS) { |
| rc = qpnp_adc_tm_write_reg(QPNP_EN_CTL1, 0); |
| if (rc < 0) |
| pr_err("adc-tm disable failed\n"); |
| } |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_mode_select(u8 mode_ctl) |
| { |
| int rc; |
| |
| /* VADC_BTM current sets mode to recurring measurements */ |
| rc = qpnp_adc_tm_write_reg(QPNP_MODE_CTL, mode_ctl); |
| if (rc < 0) |
| pr_err("adc-tm write mode selection err\n"); |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_timer_interval_select( |
| struct qpnp_vadc_chan_properties *chan_prop) |
| { |
| int rc; |
| u8 meas_interval_timer2 = 0; |
| |
| /* Configure USB_ID to timer1, batt_therm to timer2 */ |
| switch (chan_prop->timer_select) { |
| case ADC_MEAS_TIMER_SELECT1: |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_TM_MEAS_INTERVAL_CTL, |
| chan_prop->meas_interval1); |
| if (rc < 0) { |
| pr_err("timer1 configure failed\n"); |
| return rc; |
| } |
| break; |
| case ADC_MEAS_TIMER_SELECT2: |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_MEAS_INTERVAL_CTL2, |
| &meas_interval_timer2); |
| if (rc < 0) { |
| pr_err("timer2 configure read failed\n"); |
| return rc; |
| } |
| meas_interval_timer2 |= |
| (chan_prop->meas_interval2 << |
| QPNP_ADC_TM_MEAS_INTERVAL_CTL2_SHIFT); |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_TM_MEAS_INTERVAL_CTL2, |
| meas_interval_timer2); |
| if (rc < 0) { |
| pr_err("timer2 configure failed\n"); |
| return rc; |
| } |
| break; |
| case ADC_MEAS_TIMER_SELECT3: |
| /* Thermal channels uses timer3, default to 1 second */ |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_MEAS_INTERVAL_CTL2, |
| &meas_interval_timer2); |
| if (rc < 0) { |
| pr_err("timer3 read failed\n"); |
| return rc; |
| } |
| chan_prop->meas_interval2 = ADC_MEAS3_INTERVAL_1S; |
| meas_interval_timer2 |= chan_prop->meas_interval2; |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_TM_MEAS_INTERVAL_CTL2, |
| meas_interval_timer2); |
| if (rc < 0) { |
| pr_err("timer3 configure failed\n"); |
| return rc; |
| } |
| break; |
| default: |
| pr_err("Invalid timer selection\n"); |
| return -EINVAL; |
| } |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_meas_int_update(uint16_t reg_addr_src, |
| u8 reg_addr_dst, bool state) |
| { |
| u8 bit_mask_check = 0; |
| int rc = 0; |
| |
| rc = qpnp_adc_tm_read_reg(reg_addr_src, &bit_mask_check); |
| if (rc < 0) { |
| pr_err("read failed for addr:%x\n", reg_addr_src); |
| return rc; |
| } |
| |
| if (state) |
| bit_mask_check |= reg_addr_dst; |
| else |
| bit_mask_check &= ~reg_addr_dst; |
| |
| rc = qpnp_adc_tm_write_reg(reg_addr_src, bit_mask_check); |
| if (rc < 0) |
| pr_err("write failed for addr:%x\n", reg_addr_src); |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_usbid_btm_thr_en(uint32_t btm_chan, |
| struct qpnp_vadc_chan_properties *chan_prop) |
| { |
| int rc = 0; |
| |
| rc = qpnp_adc_tm_write_reg( |
| adc_tm_data[btm_chan].low_thr_lsb_addr, |
| QPNP_ADC_TM_THR_LSB_MASK(chan_prop->low_thr)); |
| if (rc < 0) { |
| pr_err("low threshold lsb setting failed\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_write_reg( |
| adc_tm_data[btm_chan].low_thr_msb_addr, |
| QPNP_ADC_TM_THR_MSB_MASK(chan_prop->low_thr)); |
| if (rc < 0) { |
| pr_err("low threshold msb setting failed\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_write_reg( |
| adc_tm_data[btm_chan].high_thr_lsb_addr, |
| QPNP_ADC_TM_THR_LSB_MASK(chan_prop->high_thr)); |
| if (rc < 0) { |
| pr_err("high threshold lsb setting failed\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_write_reg( |
| adc_tm_data[btm_chan].high_thr_msb_addr, |
| QPNP_ADC_TM_THR_MSB_MASK(chan_prop->high_thr)); |
| if (rc < 0) |
| pr_err("high threshold msb setting failed\n"); |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_channel_configure(uint32_t btm_chan, |
| struct qpnp_vadc_chan_properties *chan_prop, |
| uint32_t amux_channel) |
| { |
| int rc = 0; |
| |
| switch (btm_chan) { |
| case QPNP_ADC_TM_M0_ADC_CH_SEL_CTL: |
| case QPNP_ADC_TM_M1_ADC_CH_SEL_CTL: |
| /* Update low and high notification thresholds */ |
| rc = qpnp_adc_tm_usbid_btm_thr_en(btm_chan, |
| chan_prop); |
| if (rc < 0) { |
| pr_err("setting chan:%d threshold failed\n", btm_chan); |
| return rc; |
| } |
| |
| if ((chan_prop->state_request == |
| ADC_TM_LOW_THR_ENABLE) || |
| (chan_prop->state_request == |
| ADC_TM_HIGH_LOW_THR_ENABLE)) { |
| /* Enable low threshold's interrupt */ |
| rc = qpnp_adc_tm_meas_int_update( |
| QPNP_ADC_TM_LOW_THR_INT_EN, |
| adc_tm_data[btm_chan].low_thr_int_chan_en, |
| true); |
| if (rc < 0) { |
| pr_err("low thr enable err:%d\n", btm_chan); |
| return rc; |
| } |
| } |
| |
| if ((chan_prop->state_request == |
| ADC_TM_HIGH_THR_ENABLE) || |
| (chan_prop->state_request == |
| ADC_TM_HIGH_LOW_THR_ENABLE)) { |
| /* Enable high threshold's interrupt */ |
| rc = qpnp_adc_tm_meas_int_update( |
| QPNP_ADC_TM_HIGH_THR_INT_EN, |
| adc_tm_data[btm_chan].high_thr_int_chan_en, |
| true); |
| if (rc < 0) { |
| pr_err("high thr enable err:%d\n", btm_chan); |
| return rc; |
| } |
| } |
| /* intention fall through to configure common chan meas */ |
| case QPNP_ADC_TM_M2_ADC_CH_SEL_CTL: |
| case QPNP_ADC_TM_M3_ADC_CH_SEL_CTL: |
| case QPNP_ADC_TM_M4_ADC_CH_SEL_CTL: |
| /* Configure AMUX control register for channel selection */ |
| rc = qpnp_adc_tm_write_reg(btm_chan, amux_channel); |
| if (rc < 0) { |
| pr_err("btm_chan:%d selection failed\n", btm_chan); |
| return rc; |
| } |
| |
| /* Enable corresponding BTM channel measurement */ |
| rc = qpnp_adc_tm_meas_int_update( |
| QPNP_ADC_TM_MULTI_MEAS_EN, |
| adc_tm_data[btm_chan].multi_meas_en, true); |
| if (rc < 0) { |
| pr_err("multi measurement en failed\n"); |
| return rc; |
| } |
| break; |
| default: |
| return -EINVAL; |
| } |
| |
| return rc; |
| } |
| |
| static int32_t qpnp_adc_tm_configure( |
| struct qpnp_adc_amux_properties *chan_prop) |
| { |
| u8 decimation = 0; |
| int rc = 0; |
| uint32_t btm_chan = 0; |
| |
| /* Check if a conversion is in progress */ |
| rc = qpnp_adc_tm_enable_req_sts_check(); |
| if (rc < 0) { |
| pr_err("adc-tm req_sts check failed\n"); |
| return rc; |
| } |
| |
| /* Set measurement in recurring mode */ |
| rc = qpnp_adc_tm_mode_select(chan_prop->mode_sel); |
| if (rc < 0) { |
| pr_err("adc-tm mode select failed\n"); |
| return rc; |
| } |
| |
| /* Configure AMUX channel */ |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_CH_SEL_CTL, |
| chan_prop->amux_channel); |
| if (rc < 0) { |
| pr_err("adc-tm channel selection err\n"); |
| return rc; |
| } |
| |
| /* Digital paramater setup */ |
| decimation |= chan_prop->decimation << |
| QPNP_ADC_DIG_DEC_RATIO_SEL_SHIFT; |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_DIG_PARAM, decimation); |
| if (rc < 0) { |
| pr_err("adc-tm digital parameter setup err\n"); |
| return rc; |
| } |
| |
| /* Hardware setting time */ |
| rc = qpnp_adc_tm_write_reg(QPNP_HW_SETTLE_DELAY, |
| chan_prop->hw_settle_time); |
| if (rc < 0) { |
| pr_err("adc-tm hw settling time setup err\n"); |
| return rc; |
| } |
| |
| /* Fast averaging setup */ |
| rc = qpnp_adc_tm_write_reg(QPNP_FAST_AVG_CTL, |
| chan_prop->fast_avg_setup); |
| if (rc < 0) { |
| pr_err("adc-tm fast-avg setup err\n"); |
| return rc; |
| } |
| |
| /* Measurement interval setup */ |
| rc = qpnp_adc_tm_timer_interval_select(chan_prop->chan_prop); |
| if (rc < 0) { |
| pr_err("adc-tm timer select failed\n"); |
| return rc; |
| } |
| |
| /* Channel configuration setup */ |
| btm_chan = chan_prop->chan_prop->tm_channel_select; |
| rc = qpnp_adc_tm_channel_configure(btm_chan, chan_prop->chan_prop, |
| chan_prop->amux_channel); |
| if (rc < 0) { |
| pr_err("adc-tm channel configure failed\n"); |
| return rc; |
| } |
| |
| /* Enable bank */ |
| rc = qpnp_adc_tm_enable(true); |
| if (rc) |
| return rc; |
| |
| /* Recurring interval measurement enable */ |
| rc = qpnp_adc_tm_meas_int_update(QPNP_ADC_MEAS_INTERVAL_OP_CTL, |
| QPNP_ADC_MEAS_INTERVAL_OP, true); |
| if (rc < 0) { |
| pr_err("adc-tm meas interval op configure failed\n"); |
| return rc; |
| } |
| |
| /* Request conversion */ |
| rc = qpnp_adc_tm_write_reg(QPNP_CONV_REQ, QPNP_CONV_REQ_SET); |
| if (rc < 0) { |
| pr_err("adc-tm request conversion failed\n"); |
| return rc; |
| } |
| |
| return 0; |
| } |
| |
| static int qpnp_adc_tm_get_mode(struct thermal_zone_device *thermal, |
| enum thermal_device_mode *mode) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm = thermal->devdata; |
| |
| if (!adc_tm || !mode) |
| return -EINVAL; |
| |
| *mode = adc_tm->mode; |
| |
| return 0; |
| } |
| |
| static int qpnp_adc_tm_set_mode(struct thermal_zone_device *thermal, |
| enum thermal_device_mode mode) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm = thermal->devdata; |
| struct qpnp_adc_tm_drv *adc_drv = qpnp_adc_tm; |
| int rc = 0, channel; |
| |
| if (!adc_tm) |
| return -EINVAL; |
| |
| if (mode == THERMAL_DEVICE_ENABLED) { |
| adc_drv->adc->amux_prop->amux_channel = adc_tm->sensor_num; |
| channel = adc_tm->sensor_num; |
| adc_drv->adc->amux_prop->decimation = |
| adc_drv->adc->adc_channels[channel].adc_decimation; |
| adc_drv->adc->amux_prop->hw_settle_time = |
| adc_drv->adc->adc_channels[channel].hw_settle_time; |
| adc_drv->adc->amux_prop->fast_avg_setup = |
| adc_drv->adc->adc_channels[channel].fast_avg_setup; |
| adc_drv->adc->amux_prop->mode_sel = |
| ADC_OP_MEASUREMENT_INTERVAL << QPNP_OP_MODE_SHIFT; |
| adc_drv->adc->amux_prop->chan_prop->timer_select = |
| ADC_MEAS_TIMER_SELECT1; |
| adc_drv->adc->amux_prop->chan_prop->meas_interval1 = |
| ADC_MEAS1_INTERVAL_1S; |
| adc_drv->adc->amux_prop->chan_prop->low_thr = adc_tm->low_thr; |
| adc_drv->adc->amux_prop->chan_prop->high_thr = adc_tm->high_thr; |
| adc_drv->adc->amux_prop->chan_prop->tm_channel_select = |
| adc_tm->btm_channel_num; |
| |
| rc = qpnp_adc_tm_configure(adc_drv->adc->amux_prop); |
| if (rc) { |
| pr_err("adc-tm tm configure failed with %d\n", rc); |
| return -EINVAL; |
| } |
| } else if (mode == THERMAL_DEVICE_DISABLED) { |
| rc = qpnp_adc_tm_meas_int_update(QPNP_ADC_TM_MULTI_MEAS_EN, |
| adc_tm_data[adc_tm->btm_channel_num].multi_meas_en, |
| false); |
| if (rc < 0) { |
| pr_err("multi measurement update failed\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_enable(false); |
| if (rc < 0) { |
| pr_err("adc-tm disable failed\n"); |
| return rc; |
| } |
| } |
| |
| adc_tm->mode = mode; |
| |
| return 0; |
| } |
| |
| static int qpnp_adc_tm_get_trip_type(struct thermal_zone_device *thermal, |
| int trip, enum thermal_trip_type *type) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm = thermal->devdata; |
| |
| if (!adc_tm || !type || type < 0) |
| return -EINVAL; |
| |
| switch (trip) { |
| case ADC_TM_TRIP_HIGH_WARM: |
| *type = THERMAL_TRIP_CONFIGURABLE_HI; |
| break; |
| case ADC_TM_TRIP_LOW_COOL: |
| *type = THERMAL_TRIP_CONFIGURABLE_LOW; |
| break; |
| default: |
| return -EINVAL; |
| } |
| |
| return 0; |
| } |
| |
| static int qpnp_adc_tm_get_trip_temp(struct thermal_zone_device *thermal, |
| int trip, unsigned long *temp) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm_sensor = thermal->devdata; |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| int64_t result = 0; |
| u8 trip_cool_thr0, trip_cool_thr1, trip_warm_thr0, trip_warm_thr1; |
| unsigned int reg, rc = 0, btm_channel_num; |
| uint16_t reg_low_thr_lsb, reg_low_thr_msb; |
| uint16_t reg_high_thr_lsb, reg_high_thr_msb; |
| |
| if (!adc_tm) |
| return -EINVAL; |
| |
| btm_channel_num = adc_tm_sensor->btm_channel_num; |
| reg_low_thr_lsb = adc_tm_data[btm_channel_num].low_thr_lsb_addr; |
| reg_low_thr_msb = adc_tm_data[btm_channel_num].low_thr_msb_addr; |
| reg_high_thr_lsb = adc_tm_data[btm_channel_num].high_thr_lsb_addr; |
| reg_high_thr_msb = adc_tm_data[btm_channel_num].high_thr_msb_addr; |
| |
| switch (trip) { |
| case ADC_TM_TRIP_HIGH_WARM: |
| rc = qpnp_adc_tm_read_reg(reg_low_thr_lsb, &trip_warm_thr0); |
| if (rc) { |
| pr_err("adc-tm low_thr_lsb err\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_read_reg(reg_low_thr_msb, &trip_warm_thr1); |
| if (rc) { |
| pr_err("adc-tm low_thr_msb err\n"); |
| return rc; |
| } |
| reg = (trip_warm_thr1 << 8) | trip_warm_thr0; |
| break; |
| case ADC_TM_TRIP_LOW_COOL: |
| rc = qpnp_adc_tm_read_reg(reg_high_thr_lsb, &trip_cool_thr0); |
| if (rc) { |
| pr_err("adc-tm_tm high_thr_lsb err\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_read_reg(reg_high_thr_msb, &trip_cool_thr1); |
| if (rc) { |
| pr_err("adc-tm_tm high_thr_lsb err\n"); |
| return rc; |
| } |
| reg = (trip_cool_thr1 << 8) | trip_cool_thr0; |
| break; |
| default: |
| return -EINVAL; |
| } |
| |
| rc = qpnp_adc_tm_scale_voltage_therm_pu2(reg, &result); |
| if (rc < 0) { |
| pr_err("Failed to lookup the therm thresholds\n"); |
| return rc; |
| } |
| |
| *temp = result; |
| |
| return 0; |
| } |
| |
| static int qpnp_adc_tm_set_trip_temp(struct thermal_zone_device *thermal, |
| int trip, long temp) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm_sensor = thermal->devdata; |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| struct qpnp_adc_tm_config tm_config; |
| u8 trip_cool_thr0, trip_cool_thr1, trip_warm_thr0, trip_warm_thr1; |
| uint16_t reg_low_thr_lsb, reg_low_thr_msb; |
| uint16_t reg_high_thr_lsb, reg_high_thr_msb; |
| int rc = 0, btm_channel_num; |
| |
| if (!adc_tm) |
| return -EINVAL; |
| |
| tm_config.channel = adc_tm_sensor->sensor_num; |
| switch (trip) { |
| case ADC_TM_TRIP_HIGH_WARM: |
| tm_config.high_thr_temp = temp; |
| break; |
| case ADC_TM_TRIP_LOW_COOL: |
| tm_config.low_thr_temp = temp; |
| break; |
| default: |
| return -EINVAL; |
| } |
| |
| rc = qpnp_adc_tm_scale_therm_voltage_pu2(&tm_config); |
| if (rc < 0) { |
| pr_err("Failed to lookup the adc-tm thresholds\n"); |
| return rc; |
| } |
| |
| trip_warm_thr0 = ((tm_config.low_thr_voltage << 24) >> 24); |
| trip_warm_thr1 = ((tm_config.low_thr_voltage << 16) >> 24); |
| trip_cool_thr0 = ((tm_config.high_thr_voltage << 24) >> 24); |
| trip_cool_thr1 = ((tm_config.high_thr_voltage << 16) >> 24); |
| |
| btm_channel_num = adc_tm_sensor->btm_channel_num; |
| reg_low_thr_lsb = adc_tm_data[btm_channel_num].low_thr_lsb_addr; |
| reg_low_thr_msb = adc_tm_data[btm_channel_num].low_thr_msb_addr; |
| reg_high_thr_lsb = adc_tm_data[btm_channel_num].high_thr_lsb_addr; |
| reg_high_thr_msb = adc_tm_data[btm_channel_num].high_thr_msb_addr; |
| |
| switch (trip) { |
| case ADC_TM_TRIP_HIGH_WARM: |
| rc = qpnp_adc_tm_write_reg(reg_low_thr_lsb, trip_cool_thr0); |
| if (rc) { |
| pr_err("adc-tm_tm read threshold err\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_write_reg(reg_low_thr_msb, trip_cool_thr1); |
| if (rc) { |
| pr_err("adc-tm_tm read threshold err\n"); |
| return rc; |
| } |
| adc_tm_sensor->low_thr = tm_config.high_thr_voltage; |
| break; |
| case ADC_TM_TRIP_LOW_COOL: |
| rc = qpnp_adc_tm_write_reg(reg_high_thr_lsb, trip_warm_thr0); |
| if (rc) { |
| pr_err("adc-tm_tm read threshold err\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_write_reg(reg_high_thr_msb, trip_warm_thr1); |
| if (rc) { |
| pr_err("adc-tm_tm read threshold err\n"); |
| return rc; |
| } |
| adc_tm_sensor->high_thr = tm_config.low_thr_voltage; |
| break; |
| default: |
| return -EINVAL; |
| } |
| |
| return 0; |
| } |
| |
| static void notify_uspace_qpnp_adc_tm_fn(struct work_struct *work) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm = container_of(work, |
| struct qpnp_adc_tm_sensor, work); |
| |
| sysfs_notify(&adc_tm->tz_dev->device.kobj, |
| NULL, "btm"); |
| } |
| |
| static void notify_usb_fn(struct work_struct *work) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = container_of(work, |
| struct qpnp_adc_tm_drv, usbid_work); |
| int rc; |
| u8 status_low, status_high; |
| |
| if (adc_tm->usb_id_param->threshold_notification != NULL) { |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_STATUS_LOW, |
| &status_low); |
| if (rc) { |
| pr_err("adc-tm read low status failed\n"); |
| return; |
| } |
| |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_STATUS_HIGH, |
| &status_high); |
| if (rc) { |
| pr_err("adc-tm read high status failed\n"); |
| return; |
| } |
| |
| if (status_low & 1) |
| adc_tm->usb_id_param->threshold_notification( |
| ADC_TM_LOW_STATE, adc_tm->usb_id_param->usbid_ctx); |
| else if (status_high & 1) |
| adc_tm->usb_id_param->threshold_notification( |
| ADC_TM_HIGH_STATE, adc_tm->usb_id_param->usbid_ctx); |
| } |
| |
| return; |
| } |
| |
| static void notify_batt_fn(struct work_struct *work) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = container_of(work, |
| struct qpnp_adc_tm_drv, batt_work); |
| int rc; |
| u8 status_low, status_high; |
| |
| if (adc_tm->battery_param->threshold_notification != NULL) { |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_STATUS_LOW, |
| &status_low); |
| if (rc) { |
| pr_err("adc-tm read low status failed\n"); |
| return; |
| } |
| |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_STATUS_HIGH, |
| &status_high); |
| if (rc) { |
| pr_err("adc-tm read high status failed\n"); |
| return; |
| } |
| |
| if (status_low & QPNP_ADC_TM_LOW_THR_INT_EN_M1) |
| adc_tm->battery_param->threshold_notification( |
| ADC_TM_LOW_STATE, adc_tm->battery_param->btm_ctx); |
| else if (status_high & QPNP_ADC_TM_HIGH_THR_INT_EN_M1) |
| adc_tm->battery_param->threshold_notification( |
| ADC_TM_HIGH_STATE, adc_tm->battery_param->btm_ctx); |
| } |
| |
| return; |
| } |
| |
| static int qpnp_adc_tm_activate_trip_type_fn(uint32_t btm_channel_num, |
| enum thermal_trip_activation_mode mode, u8 *data, uint32_t reg) |
| { |
| u8 thr_int = 0; |
| int rc = 0; |
| |
| rc = qpnp_adc_tm_read_reg(reg, &thr_int); |
| if (rc) { |
| pr_err("multi meas read failed\n"); |
| return rc; |
| } |
| |
| thr_int = adc_tm_data[btm_channel_num].low_thr_int_chan_en; |
| |
| if (mode == THERMAL_TRIP_ACTIVATION_ENABLED) |
| thr_int |= *data; |
| else |
| thr_int &= ~*data; |
| |
| rc = qpnp_adc_tm_write_reg(reg, thr_int); |
| if (rc) |
| pr_err("multi meas write failed\n"); |
| |
| return rc; |
| } |
| |
| static int qpnp_adc_tm_activate_trip_type(struct thermal_zone_device *thermal, |
| int trip, enum thermal_trip_activation_mode mode) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm = thermal->devdata; |
| int rc = 0; |
| u8 thr_int_en = 0; |
| |
| if (!adc_tm) |
| return -EINVAL; |
| |
| switch (trip) { |
| case ADC_TM_TRIP_HIGH_WARM: |
| thr_int_en = adc_tm_data[adc_tm->btm_channel_num]. |
| low_thr_int_chan_en; |
| rc = qpnp_adc_tm_activate_trip_type_fn(adc_tm->btm_channel_num, |
| mode, &thr_int_en, QPNP_ADC_TM_LOW_THR_INT_EN); |
| if (rc) |
| pr_err("channel:%x failed\n", adc_tm->btm_channel_num); |
| break; |
| case ADC_TM_TRIP_LOW_COOL: |
| thr_int_en = adc_tm_data[adc_tm->btm_channel_num]. |
| high_thr_int_chan_en; |
| rc = qpnp_adc_tm_activate_trip_type_fn(adc_tm->btm_channel_num, |
| mode, &thr_int_en, QPNP_ADC_TM_HIGH_THR_INT_EN); |
| if (rc) |
| pr_err("channel:%x failed\n", adc_tm->btm_channel_num); |
| break; |
| default: |
| return -EINVAL; |
| } |
| |
| return rc; |
| } |
| |
| static int qpnp_adc_tm_read_status(void) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| u8 status_low = 0, status_high = 0, qpnp_adc_tm_meas_en = 0; |
| u8 adc_tm_low_enable = 0, adc_tm_high_enable = 0; |
| u8 thr_int_disable = 0; |
| int rc = 0, sensor_notify_num = 0; |
| |
| if (!adc_tm || !adc_tm->adc_tm_initialized) |
| return -ENODEV; |
| |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_STATUS_LOW, &status_low); |
| if (rc) { |
| pr_err("adc-tm-tm read status low failed with %d\n", rc); |
| goto fail; |
| } |
| |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_STATUS_HIGH, &status_high); |
| if (rc) { |
| pr_err("adc-tm-tm read status high failed with %d\n", rc); |
| goto fail; |
| } |
| |
| /* Check which interrupt threshold is lower and measure against the |
| * enabled channel */ |
| rc = qpnp_adc_tm_read_reg(QPNP_ADC_TM_MULTI_MEAS_EN, |
| &qpnp_adc_tm_meas_en); |
| if (rc) { |
| pr_err("adc-tm-tm read status high failed with %d\n", rc); |
| goto fail; |
| } |
| |
| adc_tm_low_enable = qpnp_adc_tm_meas_en & status_low; |
| adc_tm_high_enable = qpnp_adc_tm_meas_en & status_high; |
| |
| if (adc_tm_high_enable) { |
| sensor_notify_num = (adc_tm_high_enable >> 3); |
| switch (adc_tm_high_enable) { |
| case 1: |
| case 2: |
| { |
| if (adc_tm_high_enable == 1) |
| thr_int_disable = |
| QPNP_ADC_TM_HIGH_THR_INT_EN_M0; |
| else if (adc_tm_high_enable == 2) |
| thr_int_disable = |
| QPNP_ADC_TM_HIGH_THR_INT_EN_M1; |
| |
| rc = qpnp_adc_tm_meas_int_update( |
| QPNP_ADC_TM_HIGH_THR_INT_EN, |
| thr_int_disable, false); |
| if (rc < 0) { |
| pr_err("high threshold int read failed\n"); |
| goto fail; |
| } |
| |
| if (adc_tm_high_enable == 1) |
| schedule_work(&adc_tm->usbid_work); |
| else if (adc_tm_high_enable == 2) |
| schedule_work(&adc_tm->batt_work); |
| } |
| break; |
| case 4: |
| case 8: |
| case 16: |
| { |
| /* High voltage threshold is triggered by low temp */ |
| rc = qpnp_adc_tm_activate_trip_type( |
| adc_tm->sensor[sensor_notify_num].tz_dev, |
| ADC_TM_TRIP_LOW_COOL, |
| THERMAL_TRIP_ACTIVATION_DISABLED); |
| if (rc < 0) { |
| pr_err("notify error:%d\n", sensor_notify_num); |
| goto fail; |
| } |
| schedule_work(&adc_tm->sensor[sensor_notify_num].work); |
| } |
| break; |
| default: |
| rc = -EINVAL; |
| } |
| } |
| |
| if (adc_tm_low_enable) { |
| sensor_notify_num = (adc_tm_low_enable >> 3); |
| switch (adc_tm_low_enable) { |
| case 1: |
| case 2: |
| { |
| if (adc_tm_low_enable == 1) |
| thr_int_disable = QPNP_ADC_TM_LOW_THR_INT_EN_M0; |
| else if (adc_tm_low_enable == 2) |
| thr_int_disable = QPNP_ADC_TM_LOW_THR_INT_EN_M1; |
| |
| rc = qpnp_adc_tm_meas_int_update( |
| QPNP_ADC_TM_LOW_THR_INT_EN, |
| thr_int_disable, false); |
| if (rc < 0) { |
| pr_err("low threshold int disable failed\n"); |
| goto fail; |
| } |
| |
| if (adc_tm_low_enable == 1) |
| schedule_work(&adc_tm->usbid_work); |
| else if (adc_tm_low_enable == 2) |
| schedule_work(&adc_tm->batt_work); |
| } |
| break; |
| case 4: |
| case 8: |
| case 16: |
| { |
| /* Low voltage threshold is triggered by high temp */ |
| rc = qpnp_adc_tm_activate_trip_type( |
| adc_tm->sensor[sensor_notify_num].tz_dev, |
| ADC_TM_TRIP_HIGH_WARM, |
| THERMAL_TRIP_ACTIVATION_DISABLED); |
| if (rc < 0) { |
| pr_err("notify error:%d\n", sensor_notify_num); |
| goto fail; |
| } |
| schedule_work(&adc_tm->sensor[sensor_notify_num].work); |
| } |
| break; |
| default: |
| rc = -EINVAL; |
| } |
| } |
| |
| fail: |
| return rc; |
| } |
| |
| static void qpnp_adc_tm_high_thr_work(struct work_struct *work) |
| { |
| int rc; |
| |
| rc = qpnp_adc_tm_read_status(); |
| |
| return; |
| } |
| DECLARE_WORK(trigger_completion_adc_tm_high_thr_work, |
| qpnp_adc_tm_high_thr_work); |
| |
| static irqreturn_t qpnp_adc_tm_high_thr_isr(int irq, void *data) |
| { |
| schedule_work(&trigger_completion_adc_tm_high_thr_work); |
| |
| return IRQ_HANDLED; |
| } |
| |
| static void qpnp_adc_tm_low_thr_work(struct work_struct *work) |
| { |
| int rc; |
| |
| rc = qpnp_adc_tm_read_status(); |
| |
| return; |
| } |
| DECLARE_WORK(trigger_completion_adc_tm_low_thr_work, qpnp_adc_tm_low_thr_work); |
| |
| static irqreturn_t qpnp_adc_tm_low_thr_isr(int irq, void *data) |
| { |
| schedule_work(&trigger_completion_adc_tm_low_thr_work); |
| |
| return IRQ_HANDLED; |
| } |
| |
| static irqreturn_t qpnp_adc_tm_isr(int irq, void *dev_id) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = dev_id; |
| |
| complete(&adc_tm->adc->adc_rslt_completion); |
| |
| return IRQ_HANDLED; |
| } |
| |
| static int qpnp_adc_read_temp(struct thermal_zone_device *thermal, |
| unsigned long *temp) |
| { |
| struct qpnp_adc_tm_sensor *adc_tm_sensor = thermal->devdata; |
| struct qpnp_vadc_result result; |
| int rc = 0; |
| |
| rc = qpnp_vadc_read(adc_tm_sensor->sensor_num, &result); |
| if (rc) |
| return rc; |
| |
| *temp = result.physical; |
| |
| return rc; |
| } |
| |
| static struct thermal_zone_device_ops qpnp_adc_tm_thermal_ops = { |
| .get_temp = qpnp_adc_read_temp, |
| .get_mode = qpnp_adc_tm_get_mode, |
| .set_mode = qpnp_adc_tm_set_mode, |
| .get_trip_type = qpnp_adc_tm_get_trip_type, |
| .activate_trip_type = qpnp_adc_tm_activate_trip_type, |
| .get_trip_temp = qpnp_adc_tm_get_trip_temp, |
| .set_trip_temp = qpnp_adc_tm_set_trip_temp, |
| }; |
| |
| int32_t qpnp_adc_tm_usbid_configure(struct qpnp_adc_tm_usbid_param *param) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| uint32_t channel; |
| int rc = 0; |
| |
| if (!adc_tm || !adc_tm->adc_tm_initialized) |
| return -ENODEV; |
| |
| if (param->threshold_notification == NULL) { |
| pr_err("No USB_ID high/low voltage notificaton??\n"); |
| return -EINVAL; |
| } |
| |
| mutex_lock(&adc_tm->adc->adc_lock); |
| |
| adc_tm->adc->amux_prop->amux_channel = LR_MUX10_PU2_AMUX_USB_ID_LV; |
| channel = LR_MUX10_PU2_AMUX_USB_ID_LV; |
| adc_tm->adc->amux_prop->decimation = |
| adc_tm->adc->adc_channels[channel].adc_decimation; |
| adc_tm->adc->amux_prop->hw_settle_time = |
| adc_tm->adc->adc_channels[channel].hw_settle_time; |
| adc_tm->adc->amux_prop->fast_avg_setup = |
| adc_tm->adc->adc_channels[channel].fast_avg_setup; |
| adc_tm->adc->amux_prop->mode_sel = |
| ADC_OP_MEASUREMENT_INTERVAL << QPNP_OP_MODE_SHIFT; |
| adc_tm->adc->amux_prop->chan_prop->meas_interval1 = |
| ADC_MEAS1_INTERVAL_1S; |
| qpnp_adc_usb_scaler(param, &adc_tm->adc->amux_prop->chan_prop->low_thr, |
| &adc_tm->adc->amux_prop->chan_prop->high_thr); |
| adc_tm->adc->amux_prop->chan_prop->tm_channel_select = |
| QPNP_ADC_TM_M0_ADC_CH_SEL_CTL; |
| adc_tm->adc->amux_prop->chan_prop->timer_select = |
| ADC_MEAS_TIMER_SELECT1; |
| adc_tm->adc->amux_prop->chan_prop->state_request = |
| param->state_request; |
| rc = qpnp_adc_tm_configure(adc_tm->adc->amux_prop); |
| if (rc) { |
| pr_err("adc-tm configure failed with %d\n", rc); |
| goto fail_unlock; |
| } |
| |
| adc_tm->usb_id_param = param; |
| |
| fail_unlock: |
| mutex_unlock(&adc_tm->adc->adc_lock); |
| |
| return rc; |
| } |
| EXPORT_SYMBOL(qpnp_adc_tm_usbid_configure); |
| |
| static int32_t qpnp_adc_tm_chan_usbid_chan_btm_end( |
| uint32_t btm_chan_num) |
| { |
| int32_t rc = 0; |
| |
| rc = qpnp_adc_tm_meas_int_update(QPNP_ADC_TM_LOW_THR_INT_EN, |
| adc_tm_data[btm_chan_num].low_thr_int_chan_en, |
| false); |
| if (rc < 0) { |
| pr_err("low threshold int write failed\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_meas_int_update(QPNP_ADC_TM_HIGH_THR_INT_EN, |
| adc_tm_data[btm_chan_num].high_thr_int_chan_en, |
| false); |
| if (rc < 0) { |
| pr_err("high threshold int enable failed\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_meas_int_update(QPNP_ADC_TM_MULTI_MEAS_EN, |
| adc_tm_data[btm_chan_num].multi_meas_en, |
| false); |
| if (rc < 0) { |
| pr_err("multi measurement en failed\n"); |
| return rc; |
| } |
| |
| rc = qpnp_adc_tm_enable(false); |
| if (rc < 0) |
| pr_err("TM disable failed\n"); |
| |
| return rc; |
| } |
| |
| int32_t qpnp_adc_tm_usbid_end(void) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| int rc = 0; |
| |
| if (!adc_tm || !adc_tm->adc_tm_initialized) |
| return -ENODEV; |
| |
| mutex_lock(&adc_tm->adc->adc_lock); |
| |
| rc = qpnp_adc_tm_chan_usbid_chan_btm_end( |
| QPNP_ADC_TM_M0_ADC_CH_SEL_CTL); |
| if (rc < 0) |
| pr_err("disabling thresholds for usb channel failed\n"); |
| |
| mutex_unlock(&adc_tm->adc->adc_lock); |
| |
| return rc; |
| } |
| EXPORT_SYMBOL(qpnp_adc_tm_usbid_end); |
| |
| int32_t qpnp_adc_tm_btm_configure(struct qpnp_adc_tm_btm_param *param) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| uint32_t channel; |
| int rc = 0; |
| |
| if (!adc_tm || !adc_tm->adc_tm_initialized) |
| return -ENODEV; |
| |
| if (param->threshold_notification == NULL) { |
| pr_err("No battery high/low temp notificaton??\n"); |
| return -EINVAL; |
| } |
| |
| mutex_lock(&adc_tm->adc->adc_lock); |
| |
| adc_tm->adc->amux_prop->amux_channel = LR_MUX1_BATT_THERM; |
| channel = LR_MUX1_BATT_THERM; |
| adc_tm->adc->amux_prop->decimation = |
| adc_tm->adc->adc_channels[channel].adc_decimation; |
| adc_tm->adc->amux_prop->hw_settle_time = |
| adc_tm->adc->adc_channels[channel].hw_settle_time; |
| adc_tm->adc->amux_prop->fast_avg_setup = |
| adc_tm->adc->adc_channels[channel].fast_avg_setup; |
| adc_tm->adc->amux_prop->mode_sel = |
| ADC_OP_MEASUREMENT_INTERVAL << QPNP_OP_MODE_SHIFT; |
| adc_tm->adc->amux_prop->chan_prop->meas_interval2 = |
| ADC_MEAS2_INTERVAL_1S; |
| qpnp_adc_btm_scaler(param, &adc_tm->adc->amux_prop->chan_prop->low_thr, |
| &adc_tm->adc->amux_prop->chan_prop->high_thr); |
| adc_tm->adc->amux_prop->chan_prop->tm_channel_select = |
| QPNP_ADC_TM_M1_ADC_CH_SEL_CTL; |
| adc_tm->adc->amux_prop->chan_prop->timer_select = |
| ADC_MEAS_TIMER_SELECT2; |
| adc_tm->adc->amux_prop->chan_prop->state_request = |
| param->state_request; |
| rc = qpnp_adc_tm_configure(adc_tm->adc->amux_prop); |
| if (rc) { |
| pr_err("adc-tm configure failed with %d\n", rc); |
| goto fail_unlock; |
| } |
| |
| adc_tm->battery_param = param; |
| |
| fail_unlock: |
| mutex_unlock(&adc_tm->adc->adc_lock); |
| |
| return rc; |
| } |
| EXPORT_SYMBOL(qpnp_adc_tm_btm_configure); |
| |
| int32_t qpnp_adc_tm_btm_end(void) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| int rc = 0; |
| |
| if (!adc_tm || !adc_tm->adc_tm_initialized) |
| return -ENODEV; |
| |
| mutex_lock(&adc_tm->adc->adc_lock); |
| |
| rc = qpnp_adc_tm_chan_usbid_chan_btm_end( |
| QPNP_ADC_TM_M1_ADC_CH_SEL_CTL); |
| if (rc < 0) |
| pr_err("disabling thresholds for batt channel failed\n"); |
| |
| mutex_unlock(&adc_tm->adc->adc_lock); |
| |
| return rc; |
| } |
| EXPORT_SYMBOL(qpnp_adc_tm_btm_end); |
| |
| int32_t qpnp_adc_tm_is_ready(void) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = qpnp_adc_tm; |
| |
| if (!adc_tm || !adc_tm->adc_tm_initialized) |
| return -EPROBE_DEFER; |
| else |
| return 0; |
| } |
| EXPORT_SYMBOL(qpnp_adc_tm_is_ready); |
| |
| static int __devinit qpnp_adc_tm_probe(struct spmi_device *spmi) |
| { |
| struct device_node *node = spmi->dev.of_node, *child; |
| struct qpnp_adc_tm_drv *adc_tm; |
| struct qpnp_adc_drv *adc_qpnp; |
| int32_t count_adc_channel_list = 0, rc, i = 0, j = 0; |
| u8 thr_init = 0; |
| |
| if (!node) |
| return -EINVAL; |
| |
| if (qpnp_adc_tm) { |
| pr_err("adc-tm already in use\n"); |
| return -EBUSY; |
| } |
| |
| for_each_child_of_node(node, child) |
| count_adc_channel_list++; |
| |
| if (!count_adc_channel_list) { |
| pr_err("No channel listing\n"); |
| return -EINVAL; |
| } |
| |
| adc_tm = devm_kzalloc(&spmi->dev, sizeof(struct qpnp_adc_tm_drv) + |
| (count_adc_channel_list * |
| sizeof(struct qpnp_adc_tm_sensor)), |
| GFP_KERNEL); |
| if (!adc_tm) { |
| dev_err(&spmi->dev, "Unable to allocate memory\n"); |
| return -ENOMEM; |
| } |
| |
| adc_qpnp = devm_kzalloc(&spmi->dev, sizeof(struct qpnp_adc_drv), |
| GFP_KERNEL); |
| if (!adc_qpnp) { |
| dev_err(&spmi->dev, "Unable to allocate memory\n"); |
| rc = -ENOMEM; |
| goto fail; |
| } |
| |
| adc_tm->adc = adc_qpnp; |
| |
| rc = qpnp_adc_get_devicetree_data(spmi, adc_tm->adc); |
| if (rc) { |
| dev_err(&spmi->dev, "failed to read device tree\n"); |
| goto fail; |
| } |
| |
| /* Register the ADC peripheral interrupt */ |
| adc_tm->adc->adc_high_thr_irq = spmi_get_irq_byname(spmi, |
| NULL, "high-thr-en-set"); |
| if (adc_tm->adc->adc_high_thr_irq < 0) { |
| pr_err("Invalid irq\n"); |
| rc = -ENXIO; |
| goto fail; |
| } |
| |
| adc_tm->adc->adc_low_thr_irq = spmi_get_irq_byname(spmi, |
| NULL, "low-thr-en-set"); |
| if (adc_tm->adc->adc_low_thr_irq < 0) { |
| pr_err("Invalid irq\n"); |
| rc = -ENXIO; |
| goto fail; |
| } |
| |
| rc = devm_request_irq(&spmi->dev, adc_tm->adc->adc_irq_eoc, |
| qpnp_adc_tm_isr, IRQF_TRIGGER_RISING, |
| "qpnp_adc_tm_interrupt", adc_tm); |
| if (rc) { |
| dev_err(&spmi->dev, |
| "failed to request adc irq with error %d\n", rc); |
| goto fail; |
| } else { |
| enable_irq_wake(adc_tm->adc->adc_irq_eoc); |
| } |
| |
| rc = devm_request_irq(&spmi->dev, adc_tm->adc->adc_high_thr_irq, |
| qpnp_adc_tm_high_thr_isr, |
| IRQF_TRIGGER_RISING, "qpnp_adc_tm_high_interrupt", adc_tm); |
| if (rc) { |
| dev_err(&spmi->dev, "failed to request adc irq\n"); |
| goto fail; |
| } else { |
| enable_irq_wake(adc_tm->adc->adc_high_thr_irq); |
| } |
| |
| rc = devm_request_irq(&spmi->dev, adc_tm->adc->adc_low_thr_irq, |
| qpnp_adc_tm_low_thr_isr, |
| IRQF_TRIGGER_RISING, "qpnp_adc_tm_low_interrupt", adc_tm); |
| if (rc) { |
| dev_err(&spmi->dev, "failed to request adc irq\n"); |
| goto fail; |
| } else { |
| enable_irq_wake(adc_tm->adc->adc_low_thr_irq); |
| } |
| |
| for_each_child_of_node(node, child) { |
| char name[25]; |
| int btm_channel_num; |
| rc = of_property_read_u32(child, |
| "qcom,btm-channel-number", &btm_channel_num); |
| if (rc) { |
| pr_err("Invalid btm channel number\n"); |
| goto fail; |
| } |
| |
| if ((btm_channel_num != QPNP_ADC_TM_M0_ADC_CH_SEL_CTL) && |
| (btm_channel_num != QPNP_ADC_TM_M1_ADC_CH_SEL_CTL)) { |
| /* Register with the thermal zone */ |
| adc_tm->sensor[i].mode = THERMAL_DEVICE_DISABLED; |
| snprintf(name, sizeof(name), "qpnp_adc_tm_sensor%d", i); |
| adc_tm->sensor[i].sensor_num = |
| adc_tm->adc->adc_channels[j].channel_num; |
| adc_tm->sensor[i].btm_channel_num = btm_channel_num; |
| adc_tm->sensor[i].meas_interval = |
| QPNP_ADC_TM_MEAS_INTERVAL; |
| adc_tm->sensor[i].low_thr = QPNP_ADC_TM_M0_LOW_THR; |
| adc_tm->sensor[i].high_thr = QPNP_ADC_TM_M0_HIGH_THR; |
| adc_tm->sensor[i].tz_dev = |
| thermal_zone_device_register(name, |
| ADC_TM_TRIP_NUM, |
| &adc_tm->sensor[i], |
| &qpnp_adc_tm_thermal_ops, 0, 0, 0, 0); |
| if (IS_ERR(adc_tm->sensor[i].tz_dev)) |
| pr_err("thermal device register failed.\n"); |
| INIT_WORK(&adc_tm->sensor[i].work, |
| notify_uspace_qpnp_adc_tm_fn); |
| i++; |
| } |
| j++; |
| } |
| INIT_WORK(&adc_tm->usbid_work, notify_usb_fn); |
| INIT_WORK(&adc_tm->batt_work, notify_batt_fn); |
| qpnp_adc_tm = adc_tm; |
| dev_set_drvdata(&spmi->dev, adc_tm); |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_TM_HIGH_THR_INT_EN, thr_init); |
| if (rc < 0) { |
| pr_err("high thr init failed\n"); |
| goto fail; |
| } |
| |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_TM_LOW_THR_INT_EN, thr_init); |
| if (rc < 0) { |
| pr_err("low thr init failed\n"); |
| goto fail; |
| } |
| |
| rc = qpnp_adc_tm_write_reg(QPNP_ADC_TM_MULTI_MEAS_EN, thr_init); |
| if (rc < 0) { |
| pr_err("multi meas en failed\n"); |
| goto fail; |
| } |
| |
| adc_tm->adc_tm_initialized = true; |
| |
| return 0; |
| fail: |
| qpnp_adc_tm = NULL; |
| return rc; |
| } |
| |
| static int __devexit qpnp_adc_tm_remove(struct spmi_device *spmi) |
| { |
| struct qpnp_adc_tm_drv *adc_tm = dev_get_drvdata(&spmi->dev); |
| struct device_node *node = spmi->dev.of_node; |
| struct device_node *child; |
| int i = 0; |
| |
| for_each_child_of_node(node, child) { |
| thermal_zone_device_unregister(adc_tm->sensor[i].tz_dev); |
| i++; |
| } |
| |
| adc_tm->adc_tm_initialized = false; |
| dev_set_drvdata(&spmi->dev, NULL); |
| |
| return 0; |
| } |
| |
| static const struct of_device_id qpnp_adc_tm_match_table[] = { |
| { .compatible = "qcom,qpnp-adc-tm" }, |
| {} |
| }; |
| |
| static struct spmi_driver qpnp_adc_tm_driver = { |
| .driver = { |
| .name = "qcom,qpnp-adc-tm", |
| .of_match_table = qpnp_adc_tm_match_table, |
| }, |
| .probe = qpnp_adc_tm_probe, |
| .remove = qpnp_adc_tm_remove, |
| }; |
| |
| static int __init qpnp_adc_tm_init(void) |
| { |
| return spmi_driver_register(&qpnp_adc_tm_driver); |
| } |
| module_init(qpnp_adc_tm_init); |
| |
| static void __exit qpnp_adc_tm_exit(void) |
| { |
| spmi_driver_unregister(&qpnp_adc_tm_driver); |
| } |
| module_exit(qpnp_adc_tm_exit); |
| |
| MODULE_DESCRIPTION("QPNP PMIC ADC Threshold Monitoring driver"); |
| MODULE_LICENSE("GPL v2"); |