123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- /*
- * Copyright (c) 2011-2013, 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.
- */
- #ifndef __MFD_PM8XXX_MISC_H__
- #define __MFD_PM8XXX_MISC_H__
- #include <linux/err.h>
- #define PM8XXX_MISC_DEV_NAME "pm8xxx-misc"
- /**
- * struct pm8xxx_misc_platform_data - PM8xxx misc driver platform data
- * @priority: PMIC prority level in a multi-PMIC system. Lower value means
- * greater priority. Actions are performed from highest to lowest
- * priority PMIC.
- */
- struct pm8xxx_misc_platform_data {
- int priority;
- };
- enum pm8xxx_uart_path_sel {
- UART_NONE,
- UART_TX1_RX1,
- UART_TX2_RX2,
- UART_TX3_RX3,
- };
- enum pm8xxx_coincell_chg_voltage {
- PM8XXX_COINCELL_VOLTAGE_3p2V = 1,
- PM8XXX_COINCELL_VOLTAGE_3p1V,
- PM8XXX_COINCELL_VOLTAGE_3p0V,
- PM8XXX_COINCELL_VOLTAGE_2p5V = 16
- };
- enum pm8xxx_coincell_chg_resistor {
- PM8XXX_COINCELL_RESISTOR_2100_OHMS,
- PM8XXX_COINCELL_RESISTOR_1700_OHMS,
- PM8XXX_COINCELL_RESISTOR_1200_OHMS,
- PM8XXX_COINCELL_RESISTOR_800_OHMS
- };
- enum pm8xxx_coincell_chg_state {
- PM8XXX_COINCELL_CHG_DISABLE,
- PM8XXX_COINCELL_CHG_ENABLE
- };
- struct pm8xxx_coincell_chg {
- enum pm8xxx_coincell_chg_state state;
- enum pm8xxx_coincell_chg_voltage voltage;
- enum pm8xxx_coincell_chg_resistor resistor;
- };
- enum pm8xxx_smpl_delay {
- PM8XXX_SMPL_DELAY_0p5,
- PM8XXX_SMPL_DELAY_1p0,
- PM8XXX_SMPL_DELAY_1p5,
- PM8XXX_SMPL_DELAY_2p0,
- };
- enum pm8xxx_pon_config {
- PM8XXX_DISABLE_HARD_RESET = 0,
- PM8XXX_SHUTDOWN_ON_HARD_RESET,
- PM8XXX_RESTART_ON_HARD_RESET,
- };
- enum pm8xxx_aux_clk_id {
- CLK_MP3_1,
- CLK_MP3_2,
- };
- enum pm8xxx_aux_clk_div {
- XO_DIV_NONE,
- XO_DIV_1,
- XO_DIV_2,
- XO_DIV_4,
- XO_DIV_8,
- XO_DIV_16,
- XO_DIV_32,
- XO_DIV_64,
- };
- enum pm8xxx_hsed_bias {
- PM8XXX_HSED_BIAS0,
- PM8XXX_HSED_BIAS1,
- PM8XXX_HSED_BIAS2,
- };
- #if defined(CONFIG_MFD_PM8XXX_MISC) || defined(CONFIG_MFD_PM8XXX_MISC_MODULE)
- /**
- * pm8xxx_reset_pwr_off - switch all PM8XXX PMIC chips attached to the system to
- * either reset or shutdown when they are turned off
- * @reset: 0 = shudown the PMICs, 1 = shutdown and then restart the PMICs
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_reset_pwr_off(int reset);
- int pm8xxx_uart_gpio_mux_ctrl(enum pm8xxx_uart_path_sel uart_path_sel);
- /**
- * pm8xxx_coincell_chg_config - Disables or enables the coincell charger, and
- * configures its voltage and resistor settings.
- * @chg_config: Holds both voltage and resistor values, and a
- * switch to change the state of charger.
- * If state is to disable the charger then
- * both voltage and resistor are disregarded.
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_coincell_chg_config(struct pm8xxx_coincell_chg *chg_config);
- /**
- * pm8xxx_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 pm8xxx_smpl_control(int enable);
- /**
- * pm8xxx_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 pm8xxx_smpl_set_delay(enum pm8xxx_smpl_delay delay);
- /**
- * pm8xxx_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 pm8xxx_watchdog_reset_control(int enable);
- /**
- * pm8xxx_hard_reset_config - Allows different reset configurations
- *
- * 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
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_hard_reset_config(enum pm8xxx_pon_config config);
- /**
- * pm8xxx_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 pm8xxx_stay_on(void);
- /**
- * pm8xxx_preload_dVdd - preload the dVdd regulator during off state.
- *
- * This can help to reduce fluctuations in the dVdd voltage during startup
- * at the cost of additional off state current draw.
- *
- * This API should only be called if dVdd startup issues are suspected.
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_preload_dVdd(void);
- /**
- * pm8xxx_usb_id_pullup - Control a pullup for USB ID
- *
- * @enable: enable (1) or disable (0) the pullup
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_usb_id_pullup(int enable);
- /**
- * pm8xxx_aux_clk_control - Control an auxiliary clock
- * @clk_id: ID of clock to be programmed, registers of XO_CNTRL2
- * @divider: divisor to use when configuring desired clock
- * @enable: enable (1) the designated clock with the supplied division,
- * or disable (0) the designated clock
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_aux_clk_control(enum pm8xxx_aux_clk_id clk_id,
- enum pm8xxx_aux_clk_div divider,
- bool enable);
- /**
- * pm8xxx_hsed_bias_control - Control the HSED_BIAS signal
- * @bias: the bias line to be controlled (of the 3)
- * @enable: enable/disable the bias line
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_hsed_bias_control(enum pm8xxx_hsed_bias bias, bool enable);
- /**
- * pm8xxx_read_register - Read a PMIC register
- * @addr: PMIC register address
- * @value: Output parameter which gets the value of the register read.
- *
- * RETURNS: an appropriate -ERRNO error value on error, or zero for success.
- */
- int pm8xxx_read_register(u16 addr, u8 *value);
- #else
- static inline int pm8xxx_reset_pwr_off(int reset)
- {
- return -ENODEV;
- }
- static inline int
- pm8xxx_uart_gpio_mux_ctrl(enum pm8xxx_uart_path_sel uart_path_sel)
- {
- return -ENODEV;
- }
- static inline int
- pm8xxx_coincell_chg_config(struct pm8xxx_coincell_chg *chg_config)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_smpl_set_delay(enum pm8xxx_smpl_delay delay)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_smpl_control(int enable)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_watchdog_reset_control(int enable)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_hard_reset_config(enum pm8xxx_pon_config config)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_stay_on(void)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_preload_dVdd(void)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_usb_id_pullup(int enable)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_aux_clk_control(enum pm8xxx_aux_clk_id clk_id,
- enum pm8xxx_aux_clk_div divider, bool enable)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_hsed_bias_control(enum pm8xxx_hsed_bias bias,
- bool enable)
- {
- return -ENODEV;
- }
- static inline int pm8xxx_read_register(u16 addr, u8 *value)
- {
- return -ENODEV;
- }
- #endif
- #endif
|