| /* Copyright (c) 2009-2011, Code Aurora Forum. 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. |
| * |
| */ |
| /* |
| * Qualcomm PMIC8058 driver |
| * |
| */ |
| #include <linux/kernel.h> |
| #include <linux/platform_device.h> |
| #include <linux/slab.h> |
| #include <linux/irq.h> |
| #include <linux/msm_ssbi.h> |
| #include <linux/mfd/core.h> |
| #include <linux/mfd/pmic8058.h> |
| #include <linux/mfd/pm8xxx/core.h> |
| #include <linux/msm_adc.h> |
| |
| #define REG_MPP_BASE 0x50 |
| |
| /* PMIC8058 Revision */ |
| #define PM8058_REG_REV 0x002 /* PMIC4 revision */ |
| #define PM8058_VERSION_MASK 0xF0 |
| #define PM8058_REVISION_MASK 0x0F |
| #define PM8058_VERSION_VALUE 0xE0 |
| |
| /* PMIC 8058 Battery Alarm SSBI registers */ |
| #define REG_BATT_ALARM_THRESH 0x023 |
| #define REG_BATT_ALARM_CTRL1 0x024 |
| #define REG_BATT_ALARM_CTRL2 0x0AA |
| #define REG_BATT_ALARM_PWM_CTRL 0x0A3 |
| |
| #define REG_TEMP_ALRM_CTRL 0x1B |
| #define REG_TEMP_ALRM_PWM 0x9B |
| |
| /* PON CNTL 1 register */ |
| #define SSBI_REG_ADDR_PON_CNTL_1 0x01C |
| |
| #define PM8058_PON_PUP_MASK 0xF0 |
| |
| #define PM8058_PON_WD_EN_MASK 0x08 |
| #define PM8058_PON_WD_EN_RESET 0x08 |
| #define PM8058_PON_WD_EN_PWR_OFF 0x00 |
| |
| /* PON CNTL 4 register */ |
| #define SSBI_REG_ADDR_PON_CNTL_4 0x98 |
| #define PM8058_PON_RESET_EN_MASK 0x01 |
| |
| /* PON CNTL 5 register */ |
| #define SSBI_REG_ADDR_PON_CNTL_5 0x7B |
| #define PM8058_HARD_RESET_EN_MASK 0x08 |
| |
| /* Regulator master enable addresses */ |
| #define SSBI_REG_ADDR_VREG_EN_MSM 0x018 |
| #define SSBI_REG_ADDR_VREG_EN_GRP_5_4 0x1C8 |
| |
| /* Regulator control registers for shutdown/reset */ |
| #define SSBI_REG_ADDR_S0_CTRL 0x004 |
| #define SSBI_REG_ADDR_S1_CTRL 0x005 |
| #define SSBI_REG_ADDR_S3_CTRL 0x111 |
| #define SSBI_REG_ADDR_L21_CTRL 0x120 |
| #define SSBI_REG_ADDR_L22_CTRL 0x121 |
| |
| #define REGULATOR_ENABLE_MASK 0x80 |
| #define REGULATOR_ENABLE 0x80 |
| #define REGULATOR_DISABLE 0x00 |
| #define REGULATOR_PULL_DOWN_MASK 0x40 |
| #define REGULATOR_PULL_DOWN_EN 0x40 |
| #define REGULATOR_PULL_DOWN_DIS 0x00 |
| |
| /* Buck CTRL register */ |
| #define SMPS_LEGACY_VREF_SEL 0x20 |
| #define SMPS_LEGACY_VPROG_MASK 0x1F |
| #define SMPS_ADVANCED_BAND_MASK 0xC0 |
| #define SMPS_ADVANCED_BAND_SHIFT 6 |
| #define SMPS_ADVANCED_VPROG_MASK 0x3F |
| |
| /* Buck TEST2 registers for shutdown/reset */ |
| #define SSBI_REG_ADDR_S0_TEST2 0x084 |
| #define SSBI_REG_ADDR_S1_TEST2 0x085 |
| #define SSBI_REG_ADDR_S3_TEST2 0x11A |
| |
| #define REGULATOR_BANK_WRITE 0x80 |
| #define REGULATOR_BANK_MASK 0x70 |
| #define REGULATOR_BANK_SHIFT 4 |
| #define REGULATOR_BANK_SEL(n) ((n) << REGULATOR_BANK_SHIFT) |
| |
| /* Buck TEST2 register bank 1 */ |
| #define SMPS_LEGACY_VLOW_SEL 0x01 |
| |
| /* Buck TEST2 register bank 7 */ |
| #define SMPS_ADVANCED_MODE_MASK 0x02 |
| #define SMPS_ADVANCED_MODE 0x02 |
| #define SMPS_LEGACY_MODE 0x00 |
| |
| /* SLEEP CNTL register */ |
| #define SSBI_REG_ADDR_SLEEP_CNTL 0x02B |
| |
| #define PM8058_SLEEP_SMPL_EN_MASK 0x04 |
| #define PM8058_SLEEP_SMPL_EN_RESET 0x04 |
| #define PM8058_SLEEP_SMPL_EN_PWR_OFF 0x00 |
| |
| #define PM8058_SLEEP_SMPL_SEL_MASK 0x03 |
| #define PM8058_SLEEP_SMPL_SEL_MIN 0 |
| #define PM8058_SLEEP_SMPL_SEL_MAX 3 |
| |
| /* GP_TEST1 register */ |
| #define SSBI_REG_ADDR_GP_TEST_1 0x07A |
| |
| #define PM8058_RTC_BASE 0x1E8 |
| #define PM8058_OTHC_CNTR_BASE0 0xA0 |
| #define PM8058_OTHC_CNTR_BASE1 0x134 |
| #define PM8058_OTHC_CNTR_BASE2 0x137 |
| |
| #define SINGLE_IRQ_RESOURCE(_name, _irq) \ |
| { \ |
| .name = _name, \ |
| .start = _irq, \ |
| .end = _irq, \ |
| .flags = IORESOURCE_IRQ, \ |
| } |
| |
| struct pm8058_chip { |
| struct pm8058_platform_data pdata; |
| struct device *dev; |
| struct pm_irq_chip *irq_chip; |
| struct mfd_cell *mfd_regulators, *mfd_xo_buffers; |
| |
| u8 revision; |
| |
| struct mutex pm_lock; |
| }; |
| |
| static struct pm8058_chip *pmic_chip; |
| |
| static inline int |
| ssbi_read(struct device *dev, u16 addr, u8 *buf, size_t len) |
| { |
| return msm_ssbi_read(dev->parent, addr, buf, len); |
| } |
| |
| static inline int |
| ssbi_write(struct device *dev, u16 addr, u8 *buf, size_t len) |
| { |
| return msm_ssbi_write(dev->parent, addr, buf, len); |
| } |
| |
| static int pm8058_masked_write(u16 addr, u8 val, u8 mask) |
| { |
| int rc; |
| u8 reg; |
| |
| if (pmic_chip == NULL) |
| return -ENODEV; |
| |
| rc = ssbi_read(pmic_chip->dev, addr, ®, 1); |
| if (rc) { |
| pr_err("%s: ssbi_read(0x%03X) failed: rc=%d\n", __func__, addr, |
| rc); |
| goto done; |
| } |
| |
| reg &= ~mask; |
| reg |= val & mask; |
| |
| rc = ssbi_write(pmic_chip->dev, addr, ®, 1); |
| if (rc) |
| pr_err("%s: ssbi_write(0x%03X)=0x%02X failed: rc=%d\n", |
| __func__, addr, reg, rc); |
| done: |
| return rc; |
| } |
| |
| /** |
| * pm8058_smpl_control - enables/disables SMPL detection |
| * @enable: 0 = shutdown PMIC on power loss, 1 = reset PMIC on power loss |
| * |
| * This function enables or disables the Sudden Momentary Power Loss detection |
| * module. If SMPL detection is enabled, then when a sufficiently long power |
| * loss event occurs, the PMIC will automatically reset itself. If SMPL |
| * detection is disabled, then the PMIC will shutdown when power loss occurs. |
| * |
| * RETURNS: an appropriate -ERRNO error value on error, or zero for success. |
| */ |
| int pm8058_smpl_control(int enable) |
| { |
| return pm8058_masked_write(SSBI_REG_ADDR_SLEEP_CNTL, |
| (enable ? PM8058_SLEEP_SMPL_EN_RESET |
| : PM8058_SLEEP_SMPL_EN_PWR_OFF), |
| PM8058_SLEEP_SMPL_EN_MASK); |
| } |
| EXPORT_SYMBOL(pm8058_smpl_control); |
| |
| /** |
| * pm8058_smpl_set_delay - sets the SMPL detection time delay |
| * @delay: enum value corresponding to delay time |
| * |
| * This function sets the time delay of the SMPL detection module. If power |
| * is reapplied within this interval, then the PMIC reset automatically. The |
| * SMPL detection module must be enabled for this delay time to take effect. |
| * |
| * RETURNS: an appropriate -ERRNO error value on error, or zero for success. |
| */ |
| int pm8058_smpl_set_delay(enum pm8058_smpl_delay delay) |
| { |
| if (delay < PM8058_SLEEP_SMPL_SEL_MIN |
| || delay > PM8058_SLEEP_SMPL_SEL_MAX) { |
| pr_err("%s: invalid delay specified: %d\n", __func__, delay); |
| return -EINVAL; |
| } |
| |
| return pm8058_masked_write(SSBI_REG_ADDR_SLEEP_CNTL, delay, |
| PM8058_SLEEP_SMPL_SEL_MASK); |
| } |
| EXPORT_SYMBOL(pm8058_smpl_set_delay); |
| |
| /** |
| * pm8058_watchdog_reset_control - enables/disables watchdog reset detection |
| * @enable: 0 = shutdown when PS_HOLD goes low, 1 = reset when PS_HOLD goes low |
| * |
| * This function enables or disables the PMIC watchdog reset detection feature. |
| * If watchdog reset detection is enabled, then the PMIC will reset itself |
| * when PS_HOLD goes low. If it is not enabled, then the PMIC will shutdown |
| * when PS_HOLD goes low. |
| * |
| * RETURNS: an appropriate -ERRNO error value on error, or zero for success. |
| */ |
| int pm8058_watchdog_reset_control(int enable) |
| { |
| return pm8058_masked_write(SSBI_REG_ADDR_PON_CNTL_1, |
| (enable ? PM8058_PON_WD_EN_RESET |
| : PM8058_PON_WD_EN_PWR_OFF), |
| PM8058_PON_WD_EN_MASK); |
| } |
| EXPORT_SYMBOL(pm8058_watchdog_reset_control); |
| |
| /* |
| * Set an SMPS regulator to be disabled in its CTRL register, but enabled |
| * in the master enable register. Also set it's pull down enable bit. |
| * Take care to make sure that the output voltage doesn't change if switching |
| * from advanced mode to legacy mode. |
| */ |
| static int disable_smps_locally_set_pull_down(u16 ctrl_addr, u16 test2_addr, |
| u16 master_enable_addr, u8 master_enable_bit) |
| { |
| int rc = 0; |
| u8 vref_sel, vlow_sel, band, vprog, bank, reg; |
| |
| if (pmic_chip == NULL) |
| return -ENODEV; |
| |
| bank = REGULATOR_BANK_SEL(7); |
| rc = ssbi_write(pmic_chip->dev, test2_addr, &bank, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_write(0x%03X): rc=%d\n", __func__, |
| test2_addr, rc); |
| goto done; |
| } |
| |
| rc = ssbi_read(pmic_chip->dev, test2_addr, ®, 1); |
| if (rc) { |
| pr_err("%s: FAIL pm8058_read(0x%03X): rc=%d\n", |
| __func__, test2_addr, rc); |
| goto done; |
| } |
| |
| /* Check if in advanced mode. */ |
| if ((reg & SMPS_ADVANCED_MODE_MASK) == SMPS_ADVANCED_MODE) { |
| /* Determine current output voltage. */ |
| rc = ssbi_read(pmic_chip->dev, ctrl_addr, ®, 1); |
| if (rc) { |
| pr_err("%s: FAIL pm8058_read(0x%03X): rc=%d\n", |
| __func__, ctrl_addr, rc); |
| goto done; |
| } |
| |
| band = (reg & SMPS_ADVANCED_BAND_MASK) |
| >> SMPS_ADVANCED_BAND_SHIFT; |
| switch (band) { |
| case 3: |
| vref_sel = 0; |
| vlow_sel = 0; |
| break; |
| case 2: |
| vref_sel = SMPS_LEGACY_VREF_SEL; |
| vlow_sel = 0; |
| break; |
| case 1: |
| vref_sel = SMPS_LEGACY_VREF_SEL; |
| vlow_sel = SMPS_LEGACY_VLOW_SEL; |
| break; |
| default: |
| pr_err("%s: regulator already disabled\n", __func__); |
| return -EPERM; |
| } |
| vprog = (reg & SMPS_ADVANCED_VPROG_MASK); |
| /* Round up if fine step is in use. */ |
| vprog = (vprog + 1) >> 1; |
| if (vprog > SMPS_LEGACY_VPROG_MASK) |
| vprog = SMPS_LEGACY_VPROG_MASK; |
| |
| /* Set VLOW_SEL bit. */ |
| bank = REGULATOR_BANK_SEL(1); |
| rc = ssbi_write(pmic_chip->dev, test2_addr, &bank, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_write(0x%03X): rc=%d\n", |
| __func__, test2_addr, rc); |
| goto done; |
| } |
| rc = pm8058_masked_write(test2_addr, |
| REGULATOR_BANK_WRITE | REGULATOR_BANK_SEL(1) |
| | vlow_sel, |
| REGULATOR_BANK_WRITE | REGULATOR_BANK_MASK |
| | SMPS_LEGACY_VLOW_SEL); |
| if (rc) |
| goto done; |
| |
| /* Switch to legacy mode */ |
| bank = REGULATOR_BANK_SEL(7); |
| rc = ssbi_write(pmic_chip->dev, test2_addr, &bank, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_write(0x%03X): rc=%d\n", __func__, |
| test2_addr, rc); |
| goto done; |
| } |
| rc = pm8058_masked_write(test2_addr, |
| REGULATOR_BANK_WRITE | REGULATOR_BANK_SEL(7) |
| | SMPS_LEGACY_MODE, |
| REGULATOR_BANK_WRITE | REGULATOR_BANK_MASK |
| | SMPS_ADVANCED_MODE_MASK); |
| if (rc) |
| goto done; |
| |
| /* Enable locally, enable pull down, keep voltage the same. */ |
| rc = pm8058_masked_write(ctrl_addr, |
| REGULATOR_ENABLE | REGULATOR_PULL_DOWN_EN |
| | vref_sel | vprog, |
| REGULATOR_ENABLE_MASK | REGULATOR_PULL_DOWN_MASK |
| | SMPS_LEGACY_VREF_SEL | SMPS_LEGACY_VPROG_MASK); |
| if (rc) |
| goto done; |
| } |
| |
| /* Enable in master control register. */ |
| rc = pm8058_masked_write(master_enable_addr, master_enable_bit, |
| master_enable_bit); |
| if (rc) |
| goto done; |
| |
| /* Disable locally and enable pull down. */ |
| rc = pm8058_masked_write(ctrl_addr, |
| REGULATOR_DISABLE | REGULATOR_PULL_DOWN_EN, |
| REGULATOR_ENABLE_MASK | REGULATOR_PULL_DOWN_MASK); |
| |
| done: |
| return rc; |
| } |
| |
| static int disable_ldo_locally_set_pull_down(u16 ctrl_addr, |
| u16 master_enable_addr, u8 master_enable_bit) |
| { |
| int rc; |
| |
| /* Enable LDO in master control register. */ |
| rc = pm8058_masked_write(master_enable_addr, master_enable_bit, |
| master_enable_bit); |
| if (rc) |
| goto done; |
| |
| /* Disable LDO in CTRL register and set pull down */ |
| rc = pm8058_masked_write(ctrl_addr, |
| REGULATOR_DISABLE | REGULATOR_PULL_DOWN_EN, |
| REGULATOR_ENABLE_MASK | REGULATOR_PULL_DOWN_MASK); |
| |
| done: |
| return rc; |
| } |
| |
| int pm8058_reset_pwr_off(int reset) |
| { |
| int rc; |
| u8 pon, ctrl, smpl; |
| |
| if (pmic_chip == NULL) |
| return -ENODEV; |
| |
| /* When shutting down, enable active pulldowns on important rails. */ |
| if (!reset) { |
| /* Disable SMPS's 0,1,3 locally and set pulldown enable bits. */ |
| disable_smps_locally_set_pull_down(SSBI_REG_ADDR_S0_CTRL, |
| SSBI_REG_ADDR_S0_TEST2, SSBI_REG_ADDR_VREG_EN_MSM, BIT(7)); |
| disable_smps_locally_set_pull_down(SSBI_REG_ADDR_S1_CTRL, |
| SSBI_REG_ADDR_S1_TEST2, SSBI_REG_ADDR_VREG_EN_MSM, BIT(6)); |
| disable_smps_locally_set_pull_down(SSBI_REG_ADDR_S3_CTRL, |
| SSBI_REG_ADDR_S3_TEST2, SSBI_REG_ADDR_VREG_EN_GRP_5_4, |
| BIT(7) | BIT(4)); |
| /* Disable LDO 21 locally and set pulldown enable bit. */ |
| disable_ldo_locally_set_pull_down(SSBI_REG_ADDR_L21_CTRL, |
| SSBI_REG_ADDR_VREG_EN_GRP_5_4, BIT(1)); |
| } |
| |
| /* Set regulator L22 to 1.225V in high power mode. */ |
| rc = ssbi_read(pmic_chip->dev, SSBI_REG_ADDR_L22_CTRL, &ctrl, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_read(0x%x): rc=%d\n", __func__, |
| SSBI_REG_ADDR_L22_CTRL, rc); |
| goto get_out3; |
| } |
| /* Leave pull-down state intact. */ |
| ctrl &= 0x40; |
| ctrl |= 0x93; |
| rc = ssbi_write(pmic_chip->dev, SSBI_REG_ADDR_L22_CTRL, &ctrl, 1); |
| if (rc) |
| pr_err("%s: FAIL ssbi_write(0x%x)=0x%x: rc=%d\n", __func__, |
| SSBI_REG_ADDR_L22_CTRL, ctrl, rc); |
| |
| get_out3: |
| if (!reset) { |
| /* Only modify the SLEEP_CNTL reg if shutdown is desired. */ |
| rc = ssbi_read(pmic_chip->dev, SSBI_REG_ADDR_SLEEP_CNTL, |
| &smpl, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_read(0x%x): rc=%d\n", |
| __func__, SSBI_REG_ADDR_SLEEP_CNTL, rc); |
| goto get_out2; |
| } |
| |
| smpl &= ~PM8058_SLEEP_SMPL_EN_MASK; |
| smpl |= PM8058_SLEEP_SMPL_EN_PWR_OFF; |
| |
| rc = ssbi_write(pmic_chip->dev, SSBI_REG_ADDR_SLEEP_CNTL, |
| &smpl, 1); |
| if (rc) |
| pr_err("%s: FAIL ssbi_write(0x%x)=0x%x: rc=%d\n", |
| __func__, SSBI_REG_ADDR_SLEEP_CNTL, smpl, rc); |
| } |
| |
| get_out2: |
| rc = ssbi_read(pmic_chip->dev, SSBI_REG_ADDR_PON_CNTL_1, &pon, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_read(0x%x): rc=%d\n", |
| __func__, SSBI_REG_ADDR_PON_CNTL_1, rc); |
| goto get_out; |
| } |
| |
| pon &= ~PM8058_PON_WD_EN_MASK; |
| pon |= reset ? PM8058_PON_WD_EN_RESET : PM8058_PON_WD_EN_PWR_OFF; |
| |
| /* Enable all pullups */ |
| pon |= PM8058_PON_PUP_MASK; |
| |
| rc = ssbi_write(pmic_chip->dev, SSBI_REG_ADDR_PON_CNTL_1, &pon, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_write(0x%x)=0x%x: rc=%d\n", |
| __func__, SSBI_REG_ADDR_PON_CNTL_1, pon, rc); |
| goto get_out; |
| } |
| |
| get_out: |
| return rc; |
| } |
| EXPORT_SYMBOL(pm8058_reset_pwr_off); |
| |
| /** |
| * pm8058_stay_on - enables stay_on feature |
| * |
| * PMIC stay-on feature allows PMIC to ignore MSM PS_HOLD=low |
| * signal so that some special functions like debugging could be |
| * performed. |
| * |
| * This feature should not be used in any product release. |
| * |
| * RETURNS: an appropriate -ERRNO error value on error, or zero for success. |
| */ |
| int pm8058_stay_on(void) |
| { |
| u8 ctrl = 0x92; |
| int rc; |
| |
| rc = ssbi_write(pmic_chip->dev, SSBI_REG_ADDR_GP_TEST_1, &ctrl, 1); |
| pr_info("%s: set stay-on: rc = %d\n", __func__, rc); |
| return rc; |
| } |
| EXPORT_SYMBOL(pm8058_stay_on); |
| |
| /* |
| power on hard reset configuration |
| config = DISABLE_HARD_RESET to disable hard reset |
| = SHUTDOWN_ON_HARD_RESET to turn off the system on hard reset |
| = RESTART_ON_HARD_RESET to restart the system on hard reset |
| */ |
| int pm8058_hard_reset_config(enum pon_config config) |
| { |
| int rc, ret; |
| u8 pon, pon_5; |
| |
| if (config >= MAX_PON_CONFIG) |
| return -EINVAL; |
| |
| if (pmic_chip == NULL) |
| return -ENODEV; |
| |
| mutex_lock(&pmic_chip->pm_lock); |
| |
| rc = ssbi_read(pmic_chip->dev, SSBI_REG_ADDR_PON_CNTL_5, &pon, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_read(0x%x): rc=%d\n", |
| __func__, SSBI_REG_ADDR_PON_CNTL_5, rc); |
| mutex_unlock(&pmic_chip->pm_lock); |
| return rc; |
| } |
| |
| pon_5 = pon; |
| (config != DISABLE_HARD_RESET) ? (pon |= PM8058_HARD_RESET_EN_MASK) : |
| (pon &= ~PM8058_HARD_RESET_EN_MASK); |
| |
| rc = ssbi_write(pmic_chip->dev, SSBI_REG_ADDR_PON_CNTL_5, &pon, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_write(0x%x)=0x%x: rc=%d\n", |
| __func__, SSBI_REG_ADDR_PON_CNTL_5, pon, rc); |
| mutex_unlock(&pmic_chip->pm_lock); |
| return rc; |
| } |
| |
| if (config == DISABLE_HARD_RESET) { |
| mutex_unlock(&pmic_chip->pm_lock); |
| return 0; |
| } |
| |
| rc = ssbi_read(pmic_chip->dev, SSBI_REG_ADDR_PON_CNTL_4, &pon, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_read(0x%x): rc=%d\n", |
| __func__, SSBI_REG_ADDR_PON_CNTL_4, rc); |
| goto err_restore_pon_5; |
| } |
| |
| (config == RESTART_ON_HARD_RESET) ? (pon |= PM8058_PON_RESET_EN_MASK) : |
| (pon &= ~PM8058_PON_RESET_EN_MASK); |
| |
| rc = ssbi_write(pmic_chip->dev, SSBI_REG_ADDR_PON_CNTL_4, &pon, 1); |
| if (rc) { |
| pr_err("%s: FAIL ssbi_write(0x%x)=0x%x: rc=%d\n", |
| __func__, SSBI_REG_ADDR_PON_CNTL_4, pon, rc); |
| goto err_restore_pon_5; |
| } |
| mutex_unlock(&pmic_chip->pm_lock); |
| return 0; |
| |
| err_restore_pon_5: |
| ret = ssbi_write(pmic_chip->dev, SSBI_REG_ADDR_PON_CNTL_5, &pon_5, 1); |
| if (ret) |
| pr_err("%s: FAIL ssbi_write(0x%x)=0x%x: rc=%d\n", |
| __func__, SSBI_REG_ADDR_PON_CNTL_5, pon, ret); |
| mutex_unlock(&pmic_chip->pm_lock); |
| return rc; |
| } |
| EXPORT_SYMBOL(pm8058_hard_reset_config); |
| |
| static int pm8058_readb(const struct device *dev, u16 addr, u8 *val) |
| { |
| const struct pm8xxx_drvdata *pm8058_drvdata = dev_get_drvdata(dev); |
| const struct pm8058_chip *pmic = pm8058_drvdata->pm_chip_data; |
| |
| return msm_ssbi_read(pmic->dev->parent, addr, val, 1); |
| } |
| |
| static int pm8058_writeb(const struct device *dev, u16 addr, u8 val) |
| { |
| const struct pm8xxx_drvdata *pm8058_drvdata = dev_get_drvdata(dev); |
| const struct pm8058_chip *pmic = pm8058_drvdata->pm_chip_data; |
| |
| return msm_ssbi_write(pmic->dev->parent, addr, &val, 1); |
| } |
| |
| static int pm8058_read_buf(const struct device *dev, u16 addr, u8 *buf, |
| int cnt) |
| { |
| const struct pm8xxx_drvdata *pm8058_drvdata = dev_get_drvdata(dev); |
| const struct pm8058_chip *pmic = pm8058_drvdata->pm_chip_data; |
| |
| return msm_ssbi_read(pmic->dev->parent, addr, buf, cnt); |
| } |
| |
| static int pm8058_write_buf(const struct device *dev, u16 addr, u8 *buf, |
| int cnt) |
| { |
| const struct pm8xxx_drvdata *pm8058_drvdata = dev_get_drvdata(dev); |
| const struct pm8058_chip *pmic = pm8058_drvdata->pm_chip_data; |
| |
| return msm_ssbi_write(pmic->dev->parent, addr, buf, cnt); |
| } |
| |
| static int pm8058_read_irq_stat(const struct device *dev, int irq) |
| { |
| const struct pm8xxx_drvdata *pm8058_drvdata = dev_get_drvdata(dev); |
| const struct pm8058_chip *pmic = pm8058_drvdata->pm_chip_data; |
| |
| return pm8xxx_get_irq_stat(pmic->irq_chip, irq); |
| |
| return 0; |
| } |
| |
| static enum pm8xxx_version pm8058_get_version(const struct device *dev) |
| { |
| const struct pm8xxx_drvdata *pm8058_drvdata = dev_get_drvdata(dev); |
| const struct pm8058_chip *pmic = pm8058_drvdata->pm_chip_data; |
| enum pm8xxx_version version = -ENODEV; |
| |
| if ((pmic->revision & PM8058_VERSION_MASK) == PM8058_VERSION_VALUE) |
| version = PM8XXX_VERSION_8058; |
| |
| return version; |
| } |
| |
| static int pm8058_get_revision(const struct device *dev) |
| { |
| const struct pm8xxx_drvdata *pm8058_drvdata = dev_get_drvdata(dev); |
| const struct pm8058_chip *pmic = pm8058_drvdata->pm_chip_data; |
| |
| return pmic->revision & PM8058_REVISION_MASK; |
| } |
| |
| static struct pm8xxx_drvdata pm8058_drvdata = { |
| .pmic_readb = pm8058_readb, |
| .pmic_writeb = pm8058_writeb, |
| .pmic_read_buf = pm8058_read_buf, |
| .pmic_write_buf = pm8058_write_buf, |
| .pmic_read_irq_stat = pm8058_read_irq_stat, |
| .pmic_get_version = pm8058_get_version, |
| .pmic_get_revision = pm8058_get_revision, |
| }; |
| |
| static const struct resource pm8058_charger_resources[] __devinitconst = { |
| SINGLE_IRQ_RESOURCE("CHGVAL", PM8058_CHGVAL_IRQ), |
| SINGLE_IRQ_RESOURCE("CHGINVAL", PM8058_CHGINVAL_IRQ), |
| SINGLE_IRQ_RESOURCE("CHGILIM", PM8058_CHGILIM_IRQ), |
| SINGLE_IRQ_RESOURCE("VCP", PM8058_VCP_IRQ), |
| SINGLE_IRQ_RESOURCE("ATC_DONE", PM8058_ATC_DONE_IRQ), |
| SINGLE_IRQ_RESOURCE("ATCFAIL", PM8058_ATCFAIL_IRQ), |
| SINGLE_IRQ_RESOURCE("AUTO_CHGDONE", PM8058_AUTO_CHGDONE_IRQ), |
| SINGLE_IRQ_RESOURCE("AUTO_CHGFAIL", PM8058_AUTO_CHGFAIL_IRQ), |
| SINGLE_IRQ_RESOURCE("CHGSTATE", PM8058_CHGSTATE_IRQ), |
| SINGLE_IRQ_RESOURCE("FASTCHG", PM8058_FASTCHG_IRQ), |
| SINGLE_IRQ_RESOURCE("CHG_END", PM8058_CHG_END_IRQ), |
| SINGLE_IRQ_RESOURCE("BATTTEMP", PM8058_BATTTEMP_IRQ), |
| SINGLE_IRQ_RESOURCE("CHGHOT", PM8058_CHGHOT_IRQ), |
| SINGLE_IRQ_RESOURCE("CHGTLIMIT", PM8058_CHGTLIMIT_IRQ), |
| SINGLE_IRQ_RESOURCE("CHG_GONE", PM8058_CHG_GONE_IRQ), |
| SINGLE_IRQ_RESOURCE("VCPMAJOR", PM8058_VCPMAJOR_IRQ), |
| SINGLE_IRQ_RESOURCE("VBATDET", PM8058_VBATDET_IRQ), |
| SINGLE_IRQ_RESOURCE("BATFET", PM8058_BATFET_IRQ), |
| SINGLE_IRQ_RESOURCE("BATT_REPLACE", PM8058_BATT_REPLACE_IRQ), |
| SINGLE_IRQ_RESOURCE("BATTCONNECT", PM8058_BATTCONNECT_IRQ), |
| SINGLE_IRQ_RESOURCE("VBATDET_LOW", PM8058_VBATDET_LOW_IRQ), |
| }; |
| |
| static struct mfd_cell pm8058_charger_cell __devinitdata = { |
| .name = "pm8058-charger", |
| .id = -1, |
| .resources = pm8058_charger_resources, |
| .num_resources = ARRAY_SIZE(pm8058_charger_resources), |
| }; |
| |
| static const struct resource misc_cell_resources[] __devinitconst = { |
| SINGLE_IRQ_RESOURCE("pm8xxx_osc_halt_irq", PM8058_OSCHALT_IRQ), |
| }; |
| |
| static struct mfd_cell misc_cell __devinitdata = { |
| .name = PM8XXX_MISC_DEV_NAME, |
| .id = -1, |
| .resources = misc_cell_resources, |
| .num_resources = ARRAY_SIZE(misc_cell_resources), |
| }; |
| |
| static struct mfd_cell pm8058_pwm_cell __devinitdata = { |
| .name = "pm8058-pwm", |
| .id = -1, |
| }; |
| |
| static struct resource xoadc_resources[] = { |
| SINGLE_IRQ_RESOURCE(NULL, PM8058_ADC_IRQ), |
| }; |
| |
| static struct mfd_cell xoadc_cell __devinitdata = { |
| .name = "pm8058-xoadc", |
| .id = -1, |
| .resources = xoadc_resources, |
| .num_resources = ARRAY_SIZE(xoadc_resources), |
| }; |
| |
| static const struct resource thermal_alarm_cell_resources[] __devinitconst = { |
| SINGLE_IRQ_RESOURCE("pm8058_tempstat_irq", PM8058_TEMPSTAT_IRQ), |
| SINGLE_IRQ_RESOURCE("pm8058_overtemp_irq", PM8058_OVERTEMP_IRQ), |
| }; |
| |
| static struct pm8xxx_tm_core_data thermal_alarm_cdata = { |
| .adc_channel = CHANNEL_ADC_DIE_TEMP, |
| .adc_type = PM8XXX_TM_ADC_PM8058_ADC, |
| .reg_addr_temp_alarm_ctrl = REG_TEMP_ALRM_CTRL, |
| .reg_addr_temp_alarm_pwm = REG_TEMP_ALRM_PWM, |
| .tm_name = "pm8058_tz", |
| .irq_name_temp_stat = "pm8058_tempstat_irq", |
| .irq_name_over_temp = "pm8058_overtemp_irq", |
| }; |
| |
| static struct mfd_cell thermal_alarm_cell __devinitdata = { |
| .name = PM8XXX_TM_DEV_NAME, |
| .id = -1, |
| .resources = thermal_alarm_cell_resources, |
| .num_resources = ARRAY_SIZE(thermal_alarm_cell_resources), |
| .platform_data = &thermal_alarm_cdata, |
| .pdata_size = sizeof(struct pm8xxx_tm_core_data), |
| }; |
| |
| static struct mfd_cell debugfs_cell __devinitdata = { |
| .name = "pm8xxx-debug", |
| .id = -1, |
| .platform_data = "pm8058-dbg", |
| .pdata_size = sizeof("pm8058-dbg"), |
| }; |
| |
| static const struct resource othc0_cell_resources[] __devinitconst = { |
| { |
| .name = "othc_base", |
| .start = PM8058_OTHC_CNTR_BASE0, |
| .end = PM8058_OTHC_CNTR_BASE0, |
| .flags = IORESOURCE_IO, |
| }, |
| }; |
| |
| static const struct resource othc1_cell_resources[] __devinitconst = { |
| SINGLE_IRQ_RESOURCE(NULL, PM8058_SW_1_IRQ), |
| SINGLE_IRQ_RESOURCE(NULL, PM8058_IR_1_IRQ), |
| { |
| .name = "othc_base", |
| .start = PM8058_OTHC_CNTR_BASE1, |
| .end = PM8058_OTHC_CNTR_BASE1, |
| .flags = IORESOURCE_IO, |
| }, |
| }; |
| |
| static const struct resource othc2_cell_resources[] __devinitconst = { |
| { |
| .name = "othc_base", |
| .start = PM8058_OTHC_CNTR_BASE2, |
| .end = PM8058_OTHC_CNTR_BASE2, |
| .flags = IORESOURCE_IO, |
| }, |
| }; |
| |
| static const struct resource batt_alarm_cell_resources[] __devinitconst = { |
| SINGLE_IRQ_RESOURCE("pm8058_batt_alarm_irq", PM8058_BATT_ALARM_IRQ), |
| }; |
| |
| static struct mfd_cell leds_cell __devinitdata = { |
| .name = "pm8058-led", |
| .id = -1, |
| }; |
| |
| static struct mfd_cell othc0_cell __devinitdata = { |
| .name = "pm8058-othc", |
| .id = 0, |
| .resources = othc0_cell_resources, |
| .num_resources = ARRAY_SIZE(othc0_cell_resources), |
| }; |
| |
| static struct mfd_cell othc1_cell __devinitdata = { |
| .name = "pm8058-othc", |
| .id = 1, |
| .resources = othc1_cell_resources, |
| .num_resources = ARRAY_SIZE(othc1_cell_resources), |
| }; |
| |
| static struct mfd_cell othc2_cell __devinitdata = { |
| .name = "pm8058-othc", |
| .id = 2, |
| .resources = othc2_cell_resources, |
| .num_resources = ARRAY_SIZE(othc2_cell_resources), |
| }; |
| |
| static struct pm8xxx_batt_alarm_core_data batt_alarm_cdata = { |
| .irq_name = "pm8058_batt_alarm_irq", |
| .reg_addr_threshold = REG_BATT_ALARM_THRESH, |
| .reg_addr_ctrl1 = REG_BATT_ALARM_CTRL1, |
| .reg_addr_ctrl2 = REG_BATT_ALARM_CTRL2, |
| .reg_addr_pwm_ctrl = REG_BATT_ALARM_PWM_CTRL, |
| }; |
| |
| static struct mfd_cell batt_alarm_cell __devinitdata = { |
| .name = PM8XXX_BATT_ALARM_DEV_NAME, |
| .id = -1, |
| .resources = batt_alarm_cell_resources, |
| .num_resources = ARRAY_SIZE(batt_alarm_cell_resources), |
| .platform_data = &batt_alarm_cdata, |
| .pdata_size = sizeof(struct pm8xxx_batt_alarm_core_data), |
| }; |
| |
| static struct mfd_cell upl_cell __devinitdata = { |
| .name = PM8XXX_UPL_DEV_NAME, |
| .id = -1, |
| }; |
| |
| static struct mfd_cell nfc_cell __devinitdata = { |
| .name = PM8XXX_NFC_DEV_NAME, |
| .id = -1, |
| }; |
| |
| static const struct resource rtc_cell_resources[] __devinitconst = { |
| [0] = SINGLE_IRQ_RESOURCE(NULL, PM8058_RTC_ALARM_IRQ), |
| [1] = { |
| .name = "pmic_rtc_base", |
| .start = PM8058_RTC_BASE, |
| .end = PM8058_RTC_BASE, |
| .flags = IORESOURCE_IO, |
| }, |
| }; |
| |
| static struct mfd_cell rtc_cell __devinitdata = { |
| .name = PM8XXX_RTC_DEV_NAME, |
| .id = -1, |
| .resources = rtc_cell_resources, |
| .num_resources = ARRAY_SIZE(rtc_cell_resources), |
| }; |
| |
| static const struct resource resources_pwrkey[] __devinitconst = { |
| SINGLE_IRQ_RESOURCE(NULL, PM8058_PWRKEY_REL_IRQ), |
| SINGLE_IRQ_RESOURCE(NULL, PM8058_PWRKEY_PRESS_IRQ), |
| }; |
| |
| static struct mfd_cell vibrator_cell __devinitdata = { |
| .name = PM8XXX_VIBRATOR_DEV_NAME, |
| .id = -1, |
| }; |
| |
| static struct mfd_cell pwrkey_cell __devinitdata = { |
| .name = PM8XXX_PWRKEY_DEV_NAME, |
| .id = -1, |
| .num_resources = ARRAY_SIZE(resources_pwrkey), |
| .resources = resources_pwrkey, |
| }; |
| |
| static const struct resource resources_keypad[] = { |
| SINGLE_IRQ_RESOURCE(NULL, PM8058_KEYPAD_IRQ), |
| SINGLE_IRQ_RESOURCE(NULL, PM8058_KEYSTUCK_IRQ), |
| }; |
| |
| static struct mfd_cell keypad_cell __devinitdata = { |
| .name = PM8XXX_KEYPAD_DEV_NAME, |
| .id = -1, |
| .num_resources = ARRAY_SIZE(resources_keypad), |
| .resources = resources_keypad, |
| }; |
| |
| static const struct resource mpp_cell_resources[] __devinitconst = { |
| { |
| .start = PM8058_IRQ_BLOCK_BIT(PM8058_MPP_BLOCK_START, 0), |
| .end = PM8058_IRQ_BLOCK_BIT(PM8058_MPP_BLOCK_START, 0) |
| + PM8058_MPPS - 1, |
| .flags = IORESOURCE_IRQ, |
| }, |
| }; |
| |
| static struct mfd_cell mpp_cell __devinitdata = { |
| .name = PM8XXX_MPP_DEV_NAME, |
| .id = 0, |
| .resources = mpp_cell_resources, |
| .num_resources = ARRAY_SIZE(mpp_cell_resources), |
| }; |
| |
| static const struct resource gpio_cell_resources[] __devinitconst = { |
| [0] = { |
| .start = PM8058_IRQ_BLOCK_BIT(PM8058_GPIO_BLOCK_START, 0), |
| .end = PM8058_IRQ_BLOCK_BIT(PM8058_GPIO_BLOCK_START, 0) |
| + PM8058_GPIOS - 1, |
| .flags = IORESOURCE_IRQ, |
| }, |
| }; |
| |
| static struct mfd_cell gpio_cell __devinitdata = { |
| .name = PM8XXX_GPIO_DEV_NAME, |
| .id = -1, |
| .resources = gpio_cell_resources, |
| .num_resources = ARRAY_SIZE(gpio_cell_resources), |
| }; |
| |
| static int __devinit |
| pm8058_add_subdevices(const struct pm8058_platform_data *pdata, |
| struct pm8058_chip *pmic) |
| { |
| int rc = 0, irq_base = 0, i; |
| struct pm_irq_chip *irq_chip; |
| static struct mfd_cell *mfd_regulators, *mfd_xo_buffers; |
| |
| if (pdata->irq_pdata) { |
| pdata->irq_pdata->irq_cdata.nirqs = PM8058_NR_IRQS; |
| irq_base = pdata->irq_pdata->irq_base; |
| irq_chip = pm8xxx_irq_init(pmic->dev, pdata->irq_pdata); |
| |
| if (IS_ERR(irq_chip)) { |
| pr_err("Failed to init interrupts ret=%ld\n", |
| PTR_ERR(irq_chip)); |
| return PTR_ERR(irq_chip); |
| } |
| pmic->irq_chip = irq_chip; |
| } |
| |
| if (pdata->gpio_pdata) { |
| pdata->gpio_pdata->gpio_cdata.ngpios = PM8058_GPIOS; |
| gpio_cell.platform_data = pdata->gpio_pdata; |
| gpio_cell.pdata_size = sizeof(struct pm8xxx_gpio_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &gpio_cell, 1, |
| NULL, irq_base); |
| if (rc) { |
| pr_err("Failed to add gpio subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->mpp_pdata) { |
| pdata->mpp_pdata->core_data.nmpps = PM8058_MPPS; |
| pdata->mpp_pdata->core_data.base_addr = REG_MPP_BASE; |
| mpp_cell.platform_data = pdata->mpp_pdata; |
| mpp_cell.pdata_size = sizeof(struct pm8xxx_mpp_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &mpp_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add mpp subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->num_regulators > 0 && pdata->regulator_pdatas) { |
| mfd_regulators = kzalloc(sizeof(struct mfd_cell) |
| * (pdata->num_regulators), GFP_KERNEL); |
| if (!mfd_regulators) { |
| pr_err("Cannot allocate %d bytes for pm8058 regulator " |
| "mfd cells\n", sizeof(struct mfd_cell) |
| * (pdata->num_regulators)); |
| rc = -ENOMEM; |
| goto bail; |
| } |
| for (i = 0; i < pdata->num_regulators; i++) { |
| mfd_regulators[i].name = "pm8058-regulator"; |
| mfd_regulators[i].id = pdata->regulator_pdatas[i].id; |
| mfd_regulators[i].platform_data = |
| &(pdata->regulator_pdatas[i]); |
| mfd_regulators[i].pdata_size = |
| sizeof(struct pm8058_vreg_pdata); |
| } |
| rc = mfd_add_devices(pmic->dev, 0, mfd_regulators, |
| pdata->num_regulators, NULL, irq_base); |
| if (rc) { |
| pr_err("Failed to add regulator subdevices ret=%d\n", |
| rc); |
| kfree(mfd_regulators); |
| goto bail; |
| } |
| pmic->mfd_regulators = mfd_regulators; |
| } |
| |
| if (pdata->num_xo_buffers > 0 && pdata->xo_buffer_pdata) { |
| mfd_xo_buffers = kzalloc(sizeof(struct mfd_cell) |
| * (pdata->num_xo_buffers), GFP_KERNEL); |
| if (!mfd_xo_buffers) { |
| pr_err("Cannot allocate %d bytes for pm8058 XO buffer " |
| "mfd cells\n", sizeof(struct mfd_cell) |
| * (pdata->num_xo_buffers)); |
| rc = -ENOMEM; |
| goto bail; |
| } |
| for (i = 0; i < pdata->num_xo_buffers; i++) { |
| mfd_xo_buffers[i].name = PM8058_XO_BUFFER_DEV_NAME; |
| mfd_xo_buffers[i].id = pdata->xo_buffer_pdata[i].id; |
| mfd_xo_buffers[i].platform_data = |
| &(pdata->xo_buffer_pdata[i]); |
| mfd_xo_buffers[i].pdata_size = |
| sizeof(struct pm8058_xo_pdata); |
| } |
| rc = mfd_add_devices(pmic->dev, 0, mfd_xo_buffers, |
| pdata->num_xo_buffers, NULL, irq_base); |
| if (rc) { |
| pr_err("Failed to add XO buffer subdevices ret=%d\n", |
| rc); |
| kfree(mfd_xo_buffers); |
| goto bail; |
| } |
| pmic->mfd_xo_buffers = mfd_xo_buffers; |
| } |
| |
| if (pdata->keypad_pdata) { |
| keypad_cell.platform_data = pdata->keypad_pdata; |
| keypad_cell.pdata_size = |
| sizeof(struct pm8xxx_keypad_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &keypad_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add keypad subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->rtc_pdata) { |
| rtc_cell.platform_data = pdata->rtc_pdata; |
| rtc_cell.pdata_size = sizeof(struct pm8xxx_rtc_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &rtc_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add rtc subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->pwrkey_pdata) { |
| pwrkey_cell.platform_data = pdata->pwrkey_pdata; |
| pwrkey_cell.pdata_size = |
| sizeof(struct pm8xxx_pwrkey_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &pwrkey_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add pwrkey subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->vibrator_pdata) { |
| vibrator_cell.platform_data = pdata->vibrator_pdata; |
| vibrator_cell.pdata_size = |
| sizeof(struct pm8xxx_vibrator_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &vibrator_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add vibrator subdevice ret=%d\n", |
| rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->leds_pdata) { |
| leds_cell.platform_data = pdata->leds_pdata; |
| leds_cell.pdata_size = |
| sizeof(struct pmic8058_leds_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &leds_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add leds subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->xoadc_pdata) { |
| xoadc_cell.platform_data = pdata->xoadc_pdata; |
| xoadc_cell.pdata_size = |
| sizeof(struct xoadc_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &xoadc_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add leds subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->othc0_pdata) { |
| othc0_cell.platform_data = pdata->othc0_pdata; |
| othc0_cell.pdata_size = |
| sizeof(struct pmic8058_othc_config_pdata); |
| rc = mfd_add_devices(pmic->dev, 0, &othc0_cell, 1, NULL, 0); |
| if (rc) { |
| pr_err("Failed to add othc0 subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->othc1_pdata) { |
| othc1_cell.platform_data = pdata->othc1_pdata; |
| othc1_cell.pdata_size = |
| sizeof(struct pmic8058_othc_config_pdata); |
| rc = mfd_add_devices(pmic->dev, 0, &othc1_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add othc1 subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->othc2_pdata) { |
| othc2_cell.platform_data = pdata->othc2_pdata; |
| othc2_cell.pdata_size = |
| sizeof(struct pmic8058_othc_config_pdata); |
| rc = mfd_add_devices(pmic->dev, 0, &othc2_cell, 1, NULL, 0); |
| if (rc) { |
| pr_err("Failed to add othc2 subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->pwm_pdata) { |
| pm8058_pwm_cell.platform_data = pdata->pwm_pdata; |
| pm8058_pwm_cell.pdata_size = sizeof(struct pm8058_pwm_pdata); |
| rc = mfd_add_devices(pmic->dev, 0, &pm8058_pwm_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add pwm subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| if (pdata->misc_pdata) { |
| misc_cell.platform_data = pdata->misc_pdata; |
| misc_cell.pdata_size = sizeof(struct pm8xxx_misc_platform_data); |
| rc = mfd_add_devices(pmic->dev, 0, &misc_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add misc subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| rc = mfd_add_devices(pmic->dev, 0, &thermal_alarm_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add thermal alarm subdevice ret=%d\n", |
| rc); |
| goto bail; |
| } |
| |
| rc = mfd_add_devices(pmic->dev, 0, &batt_alarm_cell, 1, NULL, |
| irq_base); |
| if (rc) { |
| pr_err("Failed to add battery alarm subdevice ret=%d\n", |
| rc); |
| goto bail; |
| } |
| |
| rc = mfd_add_devices(pmic->dev, 0, &upl_cell, 1, NULL, 0); |
| if (rc) { |
| pr_err("Failed to add upl subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| |
| rc = mfd_add_devices(pmic->dev, 0, &nfc_cell, 1, NULL, 0); |
| if (rc) { |
| pr_err("Failed to add upl subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| |
| if (pdata->charger_pdata) { |
| pm8058_charger_cell.platform_data = pdata->charger_pdata; |
| pm8058_charger_cell.pdata_size = sizeof(struct |
| pmic8058_charger_data); |
| rc = mfd_add_devices(pmic->dev, 0, &pm8058_charger_cell, |
| 1, NULL, irq_base); |
| if (rc) { |
| pr_err("Failed to add charger subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| } |
| |
| rc = mfd_add_devices(pmic->dev, 0, &debugfs_cell, 1, NULL, irq_base); |
| if (rc) { |
| pr_err("Failed to add debugfs subdevice ret=%d\n", rc); |
| goto bail; |
| } |
| |
| return rc; |
| bail: |
| if (pmic->irq_chip) { |
| pm8xxx_irq_exit(pmic->irq_chip); |
| pmic->irq_chip = NULL; |
| } |
| return rc; |
| } |
| |
| static int __devinit pm8058_probe(struct platform_device *pdev) |
| { |
| int rc; |
| struct pm8058_platform_data *pdata = pdev->dev.platform_data; |
| struct pm8058_chip *pmic; |
| |
| if (pdata == NULL) { |
| pr_err("%s: No platform_data or IRQ.\n", __func__); |
| return -ENODEV; |
| } |
| |
| pmic = kzalloc(sizeof *pmic, GFP_KERNEL); |
| if (pmic == NULL) { |
| pr_err("%s: kzalloc() failed.\n", __func__); |
| return -ENOMEM; |
| } |
| |
| pmic->dev = &pdev->dev; |
| |
| pm8058_drvdata.pm_chip_data = pmic; |
| platform_set_drvdata(pdev, &pm8058_drvdata); |
| |
| mutex_init(&pmic->pm_lock); |
| pmic_chip = pmic; |
| |
| /* Read PMIC chip revision */ |
| rc = pm8058_readb(pmic->dev, PM8058_REG_REV, &pmic->revision); |
| if (rc) |
| pr_err("%s: Failed on pm8058_readb for revision: rc=%d.\n", |
| __func__, rc); |
| |
| pr_info("%s: PMIC revision: %X\n", __func__, pmic->revision); |
| |
| (void) memcpy((void *)&pmic->pdata, (const void *)pdata, |
| sizeof(pmic->pdata)); |
| |
| rc = pm8058_add_subdevices(pdata, pmic); |
| if (rc) { |
| pr_err("Cannot add subdevices rc=%d\n", rc); |
| goto err; |
| } |
| |
| rc = pm8058_hard_reset_config(SHUTDOWN_ON_HARD_RESET); |
| if (rc < 0) |
| pr_err("%s: failed to config shutdown on hard reset: %d\n", |
| __func__, rc); |
| |
| return 0; |
| |
| err: |
| mfd_remove_devices(pmic->dev); |
| platform_set_drvdata(pdev, NULL); |
| kfree(pmic); |
| return rc; |
| } |
| |
| static int __devexit pm8058_remove(struct platform_device *pdev) |
| { |
| struct pm8xxx_drvdata *drvdata; |
| struct pm8058_chip *pmic = NULL; |
| |
| drvdata = platform_get_drvdata(pdev); |
| if (drvdata) |
| pmic = drvdata->pm_chip_data; |
| if (pmic) { |
| if (pmic->dev) |
| mfd_remove_devices(pmic->dev); |
| if (pmic->irq_chip) |
| pm8xxx_irq_exit(pmic->irq_chip); |
| mutex_destroy(&pmic->pm_lock); |
| kfree(pmic->mfd_regulators); |
| kfree(pmic); |
| } |
| platform_set_drvdata(pdev, NULL); |
| |
| return 0; |
| } |
| |
| static struct platform_driver pm8058_driver = { |
| .probe = pm8058_probe, |
| .remove = __devexit_p(pm8058_remove), |
| .driver = { |
| .name = "pm8058-core", |
| .owner = THIS_MODULE, |
| }, |
| }; |
| |
| static int __init pm8058_init(void) |
| { |
| return platform_driver_register(&pm8058_driver); |
| } |
| postcore_initcall(pm8058_init); |
| |
| static void __exit pm8058_exit(void) |
| { |
| platform_driver_unregister(&pm8058_driver); |
| } |
| module_exit(pm8058_exit); |
| |
| MODULE_LICENSE("GPL v2"); |
| MODULE_DESCRIPTION("PMIC8058 core driver"); |
| MODULE_VERSION("1.0"); |
| MODULE_ALIAS("platform:pmic8058-core"); |