lkml.org 
[lkml]   [2014]   [Oct]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 8/9] regulator: max77802: Parse regulator operating mode properties
    Date
    The max77802 PMIC regulators output can be configured in one of two
    modes: Output ON (normal) and Output ON in Low Power Mode. Some of
    the regulators support their operating mode to be changed on startup
    or by consumers when the system is running while others only support
    their operating mode to be changed while the system has entered in a
    suspend state.

    The max77802 PMIC Device Tree binding document a set of properties to
    configure the regulators operating modes from a FDT. This patch parse
    those properties and fills the regulator constraints so the regulator
    core can call the suspend handlers when the system enters into sleep.

    Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
    ---
    drivers/regulator/max77802.c | 18 ++++++++++++++++++
    1 file changed, 18 insertions(+)

    diff --git a/drivers/regulator/max77802.c b/drivers/regulator/max77802.c
    index 43e34dd..c922edc 100644
    --- a/drivers/regulator/max77802.c
    +++ b/drivers/regulator/max77802.c
    @@ -517,6 +517,22 @@ static struct regulator_desc regulators[] = {
    };

    #ifdef CONFIG_OF
    +
    +static void max77802_parse_opmodes(struct device_node *np,
    + struct regulation_constraints *cons)
    +{
    + u32 pval;
    +
    + if (!of_property_read_u32(np, "maxim,regulator-initial-mode", &pval))
    + cons->initial_mode = MAX77802_MODE(pval);
    +
    + if (!of_property_read_u32(np, "maxim,regulator-disk-mode", &pval))
    + cons->state_disk.mode = MAX77802_MODE(pval);
    +
    + if (!of_property_read_u32(np, "maxim,regulator-mem-mode", &pval))
    + cons->state_mem.mode = MAX77802_MODE(pval);
    +}
    +
    static int max77802_pmic_dt_parse_pdata(struct platform_device *pdev,
    struct max77686_platform_data *pdata)
    {
    @@ -554,6 +570,8 @@ static int max77802_pmic_dt_parse_pdata(struct platform_device *pdev,
    rdata[i].initdata = rmatch.init_data;
    rdata[i].of_node = rmatch.of_node;
    rdata[i].id = regulators[i].id;
    + max77802_parse_opmodes(rdata[i].of_node,
    + &rdata[i].initdata->constraints);
    }

    pdata->regulators = rdata;
    --
    2.1.0


    \
     
     \ /
      Last update: 2014-10-15 19:01    [W:2.455 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site