Merge "qcom: smblib: Only enable hdc and icl irqs on QC/PD chargers"

This commit is contained in:
Linux Build Service Account 2017-03-27 20:43:38 -07:00 committed by Gerrit - the friendly Code Review server
commit 24cabe3eb3
3 changed files with 49 additions and 0 deletions

View file

@ -1654,6 +1654,15 @@ static int smb2_init_hw(struct smb2 *chip)
return rc; return rc;
} }
static int smb2_post_init(struct smb2 *chip)
{
struct smb_charger *chg = &chip->chg;
rerun_election(chg->usb_irq_enable_votable);
return 0;
}
static int smb2_chg_config_init(struct smb2 *chip) static int smb2_chg_config_init(struct smb2 *chip)
{ {
struct smb_charger *chg = &chip->chg; struct smb_charger *chg = &chip->chg;
@ -2183,6 +2192,8 @@ static int smb2_probe(struct platform_device *pdev)
goto cleanup; goto cleanup;
} }
smb2_post_init(chip);
smb2_create_debugfs(chip); smb2_create_debugfs(chip);
rc = smblib_get_prop_usb_present(chg, &val); rc = smblib_get_prop_usb_present(chg, &val);

View file

@ -1130,6 +1130,26 @@ static int smblib_hvdcp_hw_inov_dis_vote_callback(struct votable *votable,
return rc; return rc;
} }
static int smblib_usb_irq_enable_vote_callback(struct votable *votable,
void *data, int enable, const char *client)
{
struct smb_charger *chg = data;
if (!chg->irq_info[INPUT_CURRENT_LIMIT_IRQ].irq ||
!chg->irq_info[HIGH_DUTY_CYCLE_IRQ].irq)
return 0;
if (enable) {
enable_irq(chg->irq_info[INPUT_CURRENT_LIMIT_IRQ].irq);
enable_irq(chg->irq_info[HIGH_DUTY_CYCLE_IRQ].irq);
} else {
disable_irq(chg->irq_info[INPUT_CURRENT_LIMIT_IRQ].irq);
disable_irq(chg->irq_info[HIGH_DUTY_CYCLE_IRQ].irq);
}
return 0;
}
/******************* /*******************
* VCONN REGULATOR * * VCONN REGULATOR *
* *****************/ * *****************/
@ -2524,6 +2544,7 @@ int smblib_set_prop_pd_active(struct smb_charger *chg,
vote(chg->apsd_disable_votable, PD_VOTER, pd_active, 0); vote(chg->apsd_disable_votable, PD_VOTER, pd_active, 0);
vote(chg->pd_allowed_votable, PD_VOTER, pd_active, 0); vote(chg->pd_allowed_votable, PD_VOTER, pd_active, 0);
vote(chg->usb_irq_enable_votable, PD_VOTER, pd_active, 0);
/* /*
* VCONN_EN_ORIENTATION_BIT controls whether to use CC1 or CC2 line * VCONN_EN_ORIENTATION_BIT controls whether to use CC1 or CC2 line
@ -3358,6 +3379,10 @@ static void smblib_handle_hvdcp_check_timeout(struct smb_charger *chg,
/* could be a legacy cable, try doing hvdcp */ /* could be a legacy cable, try doing hvdcp */
try_rerun_apsd_for_hvdcp(chg); try_rerun_apsd_for_hvdcp(chg);
/* enable HDC and ICL irq for QC2/3 charger */
if (qc_charger)
vote(chg->usb_irq_enable_votable, QC_VOTER, true, 0);
/* /*
* HVDCP detection timeout done * HVDCP detection timeout done
* If adapter is not QC2.0/QC3.0 - it is a plain old DCP. * If adapter is not QC2.0/QC3.0 - it is a plain old DCP.
@ -3608,6 +3633,8 @@ static void smblib_handle_typec_removal(struct smb_charger *chg)
vote(chg->pd_disallowed_votable_indirect, CC_DETACHED_VOTER, true, 0); vote(chg->pd_disallowed_votable_indirect, CC_DETACHED_VOTER, true, 0);
vote(chg->pd_disallowed_votable_indirect, HVDCP_TIMEOUT_VOTER, true, 0); vote(chg->pd_disallowed_votable_indirect, HVDCP_TIMEOUT_VOTER, true, 0);
vote(chg->pl_disable_votable, PL_DELAY_HVDCP_VOTER, true, 0); vote(chg->pl_disable_votable, PL_DELAY_HVDCP_VOTER, true, 0);
vote(chg->usb_irq_enable_votable, PD_VOTER, false, 0);
vote(chg->usb_irq_enable_votable, QC_VOTER, false, 0);
/* reset votes from vbus_cc_short */ /* reset votes from vbus_cc_short */
vote(chg->hvdcp_disable_votable_indirect, VBUS_CC_SHORT_VOTER, vote(chg->hvdcp_disable_votable_indirect, VBUS_CC_SHORT_VOTER,
@ -4290,6 +4317,15 @@ static int smblib_create_votables(struct smb_charger *chg)
return rc; return rc;
} }
chg->usb_irq_enable_votable = create_votable("USB_IRQ_DISABLE",
VOTE_SET_ANY,
smblib_usb_irq_enable_vote_callback,
chg);
if (IS_ERR(chg->usb_irq_enable_votable)) {
rc = PTR_ERR(chg->usb_irq_enable_votable);
return rc;
}
return rc; return rc;
} }

View file

@ -32,6 +32,7 @@ enum print_reason {
#define USER_VOTER "USER_VOTER" #define USER_VOTER "USER_VOTER"
#define PD_VOTER "PD_VOTER" #define PD_VOTER "PD_VOTER"
#define DCP_VOTER "DCP_VOTER" #define DCP_VOTER "DCP_VOTER"
#define QC_VOTER "QC_VOTER"
#define PL_USBIN_USBIN_VOTER "PL_USBIN_USBIN_VOTER" #define PL_USBIN_USBIN_VOTER "PL_USBIN_USBIN_VOTER"
#define USB_PSY_VOTER "USB_PSY_VOTER" #define USB_PSY_VOTER "USB_PSY_VOTER"
#define PL_TAPER_WORK_RUNNING_VOTER "PL_TAPER_WORK_RUNNING_VOTER" #define PL_TAPER_WORK_RUNNING_VOTER "PL_TAPER_WORK_RUNNING_VOTER"
@ -272,6 +273,7 @@ struct smb_charger {
struct votable *hvdcp_enable_votable; struct votable *hvdcp_enable_votable;
struct votable *apsd_disable_votable; struct votable *apsd_disable_votable;
struct votable *hvdcp_hw_inov_dis_votable; struct votable *hvdcp_hw_inov_dis_votable;
struct votable *usb_irq_enable_votable;
/* work */ /* work */
struct work_struct bms_update_work; struct work_struct bms_update_work;