[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240502092614.GA31518@linuxcarl2.richtek.com>
Date: Thu, 2 May 2024 17:26:14 +0800
From: Alina Yu <alina_yu@...htek.com>
To: Mark Brown <broonie@...nel.org>
CC: <lgirdwood@...il.com>, <linux-kernel@...r.kernel.org>,
<johnny_lai@...htek.com>, <cy_huang@...htek.com>
Subject: Re: [PATCH v2 2/4] regulator: rtq2208: Fix LDO to be compatible with
both fixed and adjustable vout
On Thu, May 02, 2024 at 03:30:29PM +0800, Alina Yu wrote:
> On Wed, May 01, 2024 at 11:19:05AM +0900, Mark Brown wrote:
> > On Tue, Apr 30, 2024 at 05:58:25PM +0800, Alina Yu wrote:
> >
> > > In this patch, LDO's adjustable and fixed Vout settings are compatible.
> > > The LDO Vout ability depends on the init_data->constraints.
> > > If adjustable, the Vout can be set to either 1800mV or 3300mV.
> >
> > > + if (init_data->constraints.min_uV == init_data->constraints.max_uV) {
> > > + desc->n_voltages = 1;
> > > + desc->fixed_uV = init_data->constraints.min_uV;
> > > + desc->ops = &rtq2208_regulator_ldo_fix_ops;
> > > + } else {
> > > + desc->n_voltages = ARRAY_SIZE(rtq2208_ldo_volt_table);
> > > + desc->volt_table = rtq2208_ldo_volt_table;
> > > + desc->ops = &rtq2208_regulator_ldo_adj_ops;
> > > + }
> >
> > Why are you making this change? The operations supported by the
> > regulator don't change depending on if the system is going to chnage the
> > voltage.
>
> The change is necessary due to the requirement of the SD card for high/default and ultra-high-speed modes. The system needs to adjust the LDO Vout accordingly.
> In ultra-high-speed mode, the LDO Vout needs to be adjusted to 1.8V; otherwise, it will remain at 1.8V.
>
>
Apologies for the misunderstanding. Let me provide further clarification regarding the LDO Vout.
For the fixed LDO Vout, it will be set to either 0.9V or 1.2V, which are outside the range of 1.8V to 3.3V.
The determination of whether it is fixed or adjustable lies solely with the user.
This modification aims to ensure compatibility with the user's application.
Thanks,
Alina
>
>
Powered by blists - more mailing lists