On Mon, Apr 29, 2024 at 06:16:47PM +0800, Alina Yu wrote: > ramp_delay range of bucks is changed. > The maximum ramp up and down range is shorten from 64mVstep/us tor 16mVstep/us/. > The LDO's Vout is adjustable if the haardware setting allow it, and it can be set either 1800mv or 3300mv. > Additionally, the discharge register is chaned to other position. > The discharge register has been moved to another position. > In this version, a software bug has been fixed. rtq2208_ldo_match is no longer a local variable, > which prevents invalid memory access when devm_of_regulator_put_matches is called. As covered in submitting-patches.rst since this is a bunch of different changes that don't really overlap it should be split into multiple patches, for example the change of the ramp time for the DCDCs should be separate to all the LDO stuff. > - if (init_data->constraints.min_uV == init_data->constraints.max_uV) > - rdesc->desc.fixed_uV = init_data->constraints.min_uV; > + fixed_uV = of_property_read_bool(match->of_node, "richtek,use-fix-dvs"); > + > + if (fixed_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; > + } The driver shouldn't need to look at the constraints to set up the operations for the hardware, if the regulator can be configured for multiple voltages just register it that way and let the core figure out if we ever actually want to change the voltage.
Attachment:
signature.asc
Description: PGP signature