linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mfd: axp20x: Update AXP288 volatile ranges
@ 2021-06-26 13:27 Hans de Goede
  2021-06-29  2:19 ` Chen-Yu Tsai
  0 siblings, 1 reply; 3+ messages in thread
From: Hans de Goede @ 2021-06-26 13:27 UTC (permalink / raw)
  To: Lee Jones, Chen-Yu Tsai
  Cc: Hans de Goede, linux-acpi, linux-kernel, Clamshell

On Cherry Trail devices with an AXP288 PMIC the external SD-card slot
used the AXP's DLDO2 as card-voltage and either DLDO3 or GPIO1LDO
(GPIO1 pin in low noise LDO mode) as signal-voltage.

These regulators are turned on/off and in case of the signal-voltage
also have their output-voltage changed by the _PS0 and _PS3 power-
management ACPI methods on the MMC-controllers ACPI fwnode as well as
by the _DSM ACPI method for changing the signal voltage.

The AML code implementing these methods is directly accessing the
PMIC through ACPI I2C OpRegion accesses, instead of using the special
PMIC OpRegion handled by drivers/acpi/pmic/intel_pmic_xpower.c .

This means that the contents of the involved PMIC registers can change
without the change being made through the regmap interface, so regmap
should not cache the contents of these registers.

Mark the LDO power on/off, the LDO voltage control and the GPIO1 control
register as volatile, to avoid regmap caching their contents.

Specifically this fixes an issue on some models where the i915 driver
toggles another LDO using the same on/off register on/off through
MIPI sequences (through intel_soc_pmic_exec_mipi_pmic_seq_element())
which then writes back a cached on/off register-value where the
card-voltage is off causing the external sdcard slot to stop working
when the screen goes blank, or comes back on again.

Note the AXP288 PMIC is only used on Bay- and Cherry-Trail platforms,
so even though this is an ACPI specific problem there is no need to
make the new volatile ranges conditional since these platforms always
use ACPI.

Fixes: dc91c3b6fe66 ("mfd: axp20x: Mark AXP20X_VBUS_IPSOUT_MGMT as volatile")
Reported-and-tested-by: Clamshell <clamfly@163.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 drivers/mfd/axp20x.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c
index 3eae04e24ac8..db6a21465594 100644
--- a/drivers/mfd/axp20x.c
+++ b/drivers/mfd/axp20x.c
@@ -125,12 +125,13 @@ static const struct regmap_range axp288_writeable_ranges[] = {
 
 static const struct regmap_range axp288_volatile_ranges[] = {
 	regmap_reg_range(AXP20X_PWR_INPUT_STATUS, AXP288_POWER_REASON),
+	regmap_reg_range(AXP22X_PWR_OUT_CTRL1, AXP22X_ALDO3_V_OUT),
 	regmap_reg_range(AXP288_BC_GLOBAL, AXP288_BC_GLOBAL),
 	regmap_reg_range(AXP288_BC_DET_STAT, AXP20X_VBUS_IPSOUT_MGMT),
 	regmap_reg_range(AXP20X_CHRG_BAK_CTRL, AXP20X_CHRG_BAK_CTRL),
 	regmap_reg_range(AXP20X_IRQ1_EN, AXP20X_IPSOUT_V_HIGH_L),
 	regmap_reg_range(AXP20X_TIMER_CTRL, AXP20X_TIMER_CTRL),
-	regmap_reg_range(AXP22X_GPIO_STATE, AXP22X_GPIO_STATE),
+	regmap_reg_range(AXP20X_GPIO1_CTRL, AXP22X_GPIO_STATE),
 	regmap_reg_range(AXP288_RT_BATT_V_H, AXP288_RT_BATT_V_L),
 	regmap_reg_range(AXP20X_FG_RES, AXP288_FG_CC_CAP_REG),
 };
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mfd: axp20x: Update AXP288 volatile ranges
  2021-06-26 13:27 [PATCH] mfd: axp20x: Update AXP288 volatile ranges Hans de Goede
@ 2021-06-29  2:19 ` Chen-Yu Tsai
  2021-06-29 17:00   ` Hans de Goede
  0 siblings, 1 reply; 3+ messages in thread
From: Chen-Yu Tsai @ 2021-06-29  2:19 UTC (permalink / raw)
  To: Hans de Goede; +Cc: Lee Jones, linux-acpi, linux-kernel, Clamshell

Hi,

On Sat, Jun 26, 2021 at 9:29 PM Hans de Goede <hdegoede@redhat.com> wrote:
>
> On Cherry Trail devices with an AXP288 PMIC the external SD-card slot
> used the AXP's DLDO2 as card-voltage and either DLDO3 or GPIO1LDO
> (GPIO1 pin in low noise LDO mode) as signal-voltage.
>
> These regulators are turned on/off and in case of the signal-voltage
> also have their output-voltage changed by the _PS0 and _PS3 power-
> management ACPI methods on the MMC-controllers ACPI fwnode as well as
> by the _DSM ACPI method for changing the signal voltage.
>
> The AML code implementing these methods is directly accessing the
> PMIC through ACPI I2C OpRegion accesses, instead of using the special
> PMIC OpRegion handled by drivers/acpi/pmic/intel_pmic_xpower.c .
>
> This means that the contents of the involved PMIC registers can change
> without the change being made through the regmap interface, so regmap
> should not cache the contents of these registers.
>
> Mark the LDO power on/off, the LDO voltage control and the GPIO1 control
> register as volatile, to avoid regmap caching their contents.
>
> Specifically this fixes an issue on some models where the i915 driver
> toggles another LDO using the same on/off register on/off through
> MIPI sequences (through intel_soc_pmic_exec_mipi_pmic_seq_element())
> which then writes back a cached on/off register-value where the
> card-voltage is off causing the external sdcard slot to stop working
> when the screen goes blank, or comes back on again.
>
> Note the AXP288 PMIC is only used on Bay- and Cherry-Trail platforms,
> so even though this is an ACPI specific problem there is no need to
> make the new volatile ranges conditional since these platforms always
> use ACPI.
>
> Fixes: dc91c3b6fe66 ("mfd: axp20x: Mark AXP20X_VBUS_IPSOUT_MGMT as volatile")

Maybe you want

Fixes: cd53216625a0 ("mfd: axp20x: Fix axp288 volatile ranges")

and then list the other one as a prerequisite? Or just list both tags.

Should we CC stable on this? I don't know the exact use case for these
devices. Are people running distro LTS kernels on them?

> Reported-and-tested-by: Clamshell <clamfly@163.com>
> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
> ---
>  drivers/mfd/axp20x.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c
> index 3eae04e24ac8..db6a21465594 100644
> --- a/drivers/mfd/axp20x.c
> +++ b/drivers/mfd/axp20x.c
> @@ -125,12 +125,13 @@ static const struct regmap_range axp288_writeable_ranges[] = {
>
>  static const struct regmap_range axp288_volatile_ranges[] = {
>         regmap_reg_range(AXP20X_PWR_INPUT_STATUS, AXP288_POWER_REASON),
> +       regmap_reg_range(AXP22X_PWR_OUT_CTRL1, AXP22X_ALDO3_V_OUT),

This region also covers the voltage and on/off controls for the buck
regulators. Maybe include that in your commit message if that was the
intent, or skip over them if not?


Thanks
ChenYu

>         regmap_reg_range(AXP288_BC_GLOBAL, AXP288_BC_GLOBAL),
>         regmap_reg_range(AXP288_BC_DET_STAT, AXP20X_VBUS_IPSOUT_MGMT),
>         regmap_reg_range(AXP20X_CHRG_BAK_CTRL, AXP20X_CHRG_BAK_CTRL),
>         regmap_reg_range(AXP20X_IRQ1_EN, AXP20X_IPSOUT_V_HIGH_L),
>         regmap_reg_range(AXP20X_TIMER_CTRL, AXP20X_TIMER_CTRL),
> -       regmap_reg_range(AXP22X_GPIO_STATE, AXP22X_GPIO_STATE),
> +       regmap_reg_range(AXP20X_GPIO1_CTRL, AXP22X_GPIO_STATE),
>         regmap_reg_range(AXP288_RT_BATT_V_H, AXP288_RT_BATT_V_L),
>         regmap_reg_range(AXP20X_FG_RES, AXP288_FG_CC_CAP_REG),
>  };
> --
> 2.31.1
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mfd: axp20x: Update AXP288 volatile ranges
  2021-06-29  2:19 ` Chen-Yu Tsai
@ 2021-06-29 17:00   ` Hans de Goede
  0 siblings, 0 replies; 3+ messages in thread
From: Hans de Goede @ 2021-06-29 17:00 UTC (permalink / raw)
  To: wens; +Cc: Lee Jones, linux-acpi, linux-kernel, Clamshell

Hi,

Thank you for the review.

On 6/29/21 4:19 AM, Chen-Yu Tsai wrote:
> Hi,
> 
> On Sat, Jun 26, 2021 at 9:29 PM Hans de Goede <hdegoede@redhat.com> wrote:
>>
>> On Cherry Trail devices with an AXP288 PMIC the external SD-card slot
>> used the AXP's DLDO2 as card-voltage and either DLDO3 or GPIO1LDO
>> (GPIO1 pin in low noise LDO mode) as signal-voltage.
>>
>> These regulators are turned on/off and in case of the signal-voltage
>> also have their output-voltage changed by the _PS0 and _PS3 power-
>> management ACPI methods on the MMC-controllers ACPI fwnode as well as
>> by the _DSM ACPI method for changing the signal voltage.
>>
>> The AML code implementing these methods is directly accessing the
>> PMIC through ACPI I2C OpRegion accesses, instead of using the special
>> PMIC OpRegion handled by drivers/acpi/pmic/intel_pmic_xpower.c .
>>
>> This means that the contents of the involved PMIC registers can change
>> without the change being made through the regmap interface, so regmap
>> should not cache the contents of these registers.
>>
>> Mark the LDO power on/off, the LDO voltage control and the GPIO1 control
>> register as volatile, to avoid regmap caching their contents.
>>
>> Specifically this fixes an issue on some models where the i915 driver
>> toggles another LDO using the same on/off register on/off through
>> MIPI sequences (through intel_soc_pmic_exec_mipi_pmic_seq_element())
>> which then writes back a cached on/off register-value where the
>> card-voltage is off causing the external sdcard slot to stop working
>> when the screen goes blank, or comes back on again.
>>
>> Note the AXP288 PMIC is only used on Bay- and Cherry-Trail platforms,
>> so even though this is an ACPI specific problem there is no need to
>> make the new volatile ranges conditional since these platforms always
>> use ACPI.
>>
>> Fixes: dc91c3b6fe66 ("mfd: axp20x: Mark AXP20X_VBUS_IPSOUT_MGMT as volatile")
> 
> Maybe you want
> 
> Fixes: cd53216625a0 ("mfd: axp20x: Fix axp288 volatile ranges")
> 
> and then list the other one as a prerequisite? Or just list both tags.

I've just listed both for v2 of this patch.

> Should we CC stable on this?

That is not necessary, the fix will automatically get picked up in
the relevant stable series based on the Fixes tag (in my experience).

>> Reported-and-tested-by: Clamshell <clamfly@163.com>
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>> ---
>>  drivers/mfd/axp20x.c | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c
>> index 3eae04e24ac8..db6a21465594 100644
>> --- a/drivers/mfd/axp20x.c
>> +++ b/drivers/mfd/axp20x.c
>> @@ -125,12 +125,13 @@ static const struct regmap_range axp288_writeable_ranges[] = {
>>
>>  static const struct regmap_range axp288_volatile_ranges[] = {
>>         regmap_reg_range(AXP20X_PWR_INPUT_STATUS, AXP288_POWER_REASON),
>> +       regmap_reg_range(AXP22X_PWR_OUT_CTRL1, AXP22X_ALDO3_V_OUT),
> 
> This region also covers the voltage and on/off controls for the buck
> regulators. Maybe include that in your commit message if that was the
> intent, or skip over them if not?

This was intentional I've added the following comment to the commit
msg for v2:

"The regulator register-range now marked volatile also includes the
buck regulator control registers. This is done on purpose these are
normally not touched by the AML code, but they are updated directly
by the SoC's PUNIT which means that they may also change without going
through regmap."

Regards,

Hans




> 
> 
> Thanks
> ChenYu
> 
>>         regmap_reg_range(AXP288_BC_GLOBAL, AXP288_BC_GLOBAL),
>>         regmap_reg_range(AXP288_BC_DET_STAT, AXP20X_VBUS_IPSOUT_MGMT),
>>         regmap_reg_range(AXP20X_CHRG_BAK_CTRL, AXP20X_CHRG_BAK_CTRL),
>>         regmap_reg_range(AXP20X_IRQ1_EN, AXP20X_IPSOUT_V_HIGH_L),
>>         regmap_reg_range(AXP20X_TIMER_CTRL, AXP20X_TIMER_CTRL),
>> -       regmap_reg_range(AXP22X_GPIO_STATE, AXP22X_GPIO_STATE),
>> +       regmap_reg_range(AXP20X_GPIO1_CTRL, AXP22X_GPIO_STATE),
>>         regmap_reg_range(AXP288_RT_BATT_V_H, AXP288_RT_BATT_V_L),
>>         regmap_reg_range(AXP20X_FG_RES, AXP288_FG_CC_CAP_REG),
>>  };
>> --
>> 2.31.1
>>
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-29 17:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-26 13:27 [PATCH] mfd: axp20x: Update AXP288 volatile ranges Hans de Goede
2021-06-29  2:19 ` Chen-Yu Tsai
2021-06-29 17:00   ` Hans de Goede

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).