Message ID | 20191206184536.2507-3-linux.amoon@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | RK3399 clean shutdown issue | expand |
On 06/12/2019 6:45 pm, Anand Moon wrote: > Use common syscore_shutdown for RK805 PMIC to do > clean I2C shutdown, drop the unused pm_pwroff_prep_fn > and pm_pwroff_fn function pointers. Coincidentally, I've also been looking at RK805 for the sake of trying to get suspend to behave on my RK3328 box, and I've ended up with some slightly different cleanup patches - I'll tidy them up and post them for comparison as soon as I can. > Cc: Heiko Stuebner <heiko@sntech.de> > Signed-off-by: Anand Moon <linux.amoon@gmail.com> > --- > drivers/mfd/rk808.c | 33 +++++++++++++++++---------------- > 1 file changed, 17 insertions(+), 16 deletions(-) > > diff --git a/drivers/mfd/rk808.c b/drivers/mfd/rk808.c > index e637f5bcc8bb..713d989064ba 100644 > --- a/drivers/mfd/rk808.c > +++ b/drivers/mfd/rk808.c > @@ -467,16 +467,6 @@ static void rk808_update_bits(unsigned int reg, unsigned int mask, > "can't write to register 0x%x: %x!\n", reg, ret); > } > > -static void rk805_device_shutdown(void) > -{ > - rk808_update_bits(RK805_DEV_CTRL_REG, DEV_OFF, DEV_OFF); > -} > - > -static void rk805_device_shutdown_prepare(void) > -{ > - rk808_update_bits(RK805_GPIO_IO_POL_REG, SLP_SD_MSK, SHUTDOWN_FUN); > -} > - > static void rk808_device_shutdown(void) > { > rk808_update_bits(RK808_DEVCTRL_REG, DEV_OFF_RST, DEV_OFF_RST); > @@ -491,10 +481,23 @@ static void rk8xx_syscore_shutdown(void) > { > struct rk808 *rk808 = i2c_get_clientdata(rk808_i2c_client); > > - if (system_state == SYSTEM_POWER_OFF && > - (rk808->variant == RK809_ID || rk808->variant == RK817_ID)) { > - rk808_update_bits(RK817_SYS_CFG(3), RK817_SLPPIN_FUNC_MSK, > - SLPPIN_DN_FUN); > + if (system_state == SYSTEM_POWER_OFF) { > + dev_info(&rk808_i2c_client->dev, "System Shutdown Event\n"); > + > + switch (rk808->variant) { > + case RK805_ID: > + rk808_update_bits(RK805_GPIO_IO_POL_REG, > + SLP_SD_MSK, SHUTDOWN_FUN); > + rk808_update_bits(RK805_DEV_CTRL_REG, DEV_OFF, DEV_OFF); Why this change? Shutdown via the SLEEP pin is working just fine on my box :/ Robin. > + break; > + case RK809_ID: > + case RK817_ID: > + rk808_update_bits(RK817_SYS_CFG(3), > + RK817_SLPPIN_FUNC_MSK, SLPPIN_DN_FUN); > + break; > + default: > + break; > + } > } > } > > @@ -565,8 +568,6 @@ static int rk808_probe(struct i2c_client *client, > nr_pre_init_regs = ARRAY_SIZE(rk805_pre_init_reg); > cells = rk805s; > nr_cells = ARRAY_SIZE(rk805s); > - rk808->pm_pwroff_fn = rk805_device_shutdown; > - rk808->pm_pwroff_prep_fn = rk805_device_shutdown_prepare; > break; > case RK808_ID: > rk808->regmap_cfg = &rk808_regmap_config; >
Hi Robin, On Mon, 9 Dec 2019 at 19:04, Robin Murphy <robin.murphy@arm.com> wrote: > > On 06/12/2019 6:45 pm, Anand Moon wrote: > > Use common syscore_shutdown for RK805 PMIC to do > > clean I2C shutdown, drop the unused pm_pwroff_prep_fn > > and pm_pwroff_fn function pointers. > > Coincidentally, I've also been looking at RK805 for the sake of trying > to get suspend to behave on my RK3328 box, and I've ended up with some > slightly different cleanup patches - I'll tidy them up and post them for > comparison as soon as I can. No issue if their is better clean approach, I will definitely test that series. > > > Cc: Heiko Stuebner <heiko@sntech.de> > > Signed-off-by: Anand Moon <linux.amoon@gmail.com> > > --- > > drivers/mfd/rk808.c | 33 +++++++++++++++++---------------- > > 1 file changed, 17 insertions(+), 16 deletions(-) > > > > diff --git a/drivers/mfd/rk808.c b/drivers/mfd/rk808.c > > index e637f5bcc8bb..713d989064ba 100644 > > --- a/drivers/mfd/rk808.c > > +++ b/drivers/mfd/rk808.c > > @@ -467,16 +467,6 @@ static void rk808_update_bits(unsigned int reg, unsigned int mask, > > "can't write to register 0x%x: %x!\n", reg, ret); > > } > > > > -static void rk805_device_shutdown(void) > > -{ > > - rk808_update_bits(RK805_DEV_CTRL_REG, DEV_OFF, DEV_OFF); > > -} > > - > > -static void rk805_device_shutdown_prepare(void) > > -{ > > - rk808_update_bits(RK805_GPIO_IO_POL_REG, SLP_SD_MSK, SHUTDOWN_FUN); > > -} > > - > > static void rk808_device_shutdown(void) > > { > > rk808_update_bits(RK808_DEVCTRL_REG, DEV_OFF_RST, DEV_OFF_RST); > > @@ -491,10 +481,23 @@ static void rk8xx_syscore_shutdown(void) > > { > > struct rk808 *rk808 = i2c_get_clientdata(rk808_i2c_client); > > > > - if (system_state == SYSTEM_POWER_OFF && > > - (rk808->variant == RK809_ID || rk808->variant == RK817_ID)) { > > - rk808_update_bits(RK817_SYS_CFG(3), RK817_SLPPIN_FUNC_MSK, > > - SLPPIN_DN_FUN); > > + if (system_state == SYSTEM_POWER_OFF) { > > + dev_info(&rk808_i2c_client->dev, "System Shutdown Event\n"); > > + > > + switch (rk808->variant) { > > + case RK805_ID: > > + rk808_update_bits(RK805_GPIO_IO_POL_REG, > > + SLP_SD_MSK, SHUTDOWN_FUN); > > + rk808_update_bits(RK805_DEV_CTRL_REG, DEV_OFF, DEV_OFF); > > Why this change? Shutdown via the SLEEP pin is working just fine on my > box :/ > > Robin. As per RK-805 datasheet [0] below. For clean poweroff we need to set in DEV_CTRL_REG reg Bit 0 DEV_OFF: write “1” to turn down the PMU. [0] http://files.pine64.org/doc/rock64/Rockchip_RK805_Datasheet_V1.1%C2%A020160921.pdf -Anand
diff --git a/drivers/mfd/rk808.c b/drivers/mfd/rk808.c index e637f5bcc8bb..713d989064ba 100644 --- a/drivers/mfd/rk808.c +++ b/drivers/mfd/rk808.c @@ -467,16 +467,6 @@ static void rk808_update_bits(unsigned int reg, unsigned int mask, "can't write to register 0x%x: %x!\n", reg, ret); } -static void rk805_device_shutdown(void) -{ - rk808_update_bits(RK805_DEV_CTRL_REG, DEV_OFF, DEV_OFF); -} - -static void rk805_device_shutdown_prepare(void) -{ - rk808_update_bits(RK805_GPIO_IO_POL_REG, SLP_SD_MSK, SHUTDOWN_FUN); -} - static void rk808_device_shutdown(void) { rk808_update_bits(RK808_DEVCTRL_REG, DEV_OFF_RST, DEV_OFF_RST); @@ -491,10 +481,23 @@ static void rk8xx_syscore_shutdown(void) { struct rk808 *rk808 = i2c_get_clientdata(rk808_i2c_client); - if (system_state == SYSTEM_POWER_OFF && - (rk808->variant == RK809_ID || rk808->variant == RK817_ID)) { - rk808_update_bits(RK817_SYS_CFG(3), RK817_SLPPIN_FUNC_MSK, - SLPPIN_DN_FUN); + if (system_state == SYSTEM_POWER_OFF) { + dev_info(&rk808_i2c_client->dev, "System Shutdown Event\n"); + + switch (rk808->variant) { + case RK805_ID: + rk808_update_bits(RK805_GPIO_IO_POL_REG, + SLP_SD_MSK, SHUTDOWN_FUN); + rk808_update_bits(RK805_DEV_CTRL_REG, DEV_OFF, DEV_OFF); + break; + case RK809_ID: + case RK817_ID: + rk808_update_bits(RK817_SYS_CFG(3), + RK817_SLPPIN_FUNC_MSK, SLPPIN_DN_FUN); + break; + default: + break; + } } } @@ -565,8 +568,6 @@ static int rk808_probe(struct i2c_client *client, nr_pre_init_regs = ARRAY_SIZE(rk805_pre_init_reg); cells = rk805s; nr_cells = ARRAY_SIZE(rk805s); - rk808->pm_pwroff_fn = rk805_device_shutdown; - rk808->pm_pwroff_prep_fn = rk805_device_shutdown_prepare; break; case RK808_ID: rk808->regmap_cfg = &rk808_regmap_config;
Use common syscore_shutdown for RK805 PMIC to do clean I2C shutdown, drop the unused pm_pwroff_prep_fn and pm_pwroff_fn function pointers. Cc: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Anand Moon <linux.amoon@gmail.com> --- drivers/mfd/rk808.c | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-)