Quoting Jorge Ramirez (2018-12-26 09:53:08) > On 12/20/18 21:29, Stephen Boyd wrote: > > Quoting Jorge Ramirez-Ortiz (2018-12-07 01:55:58) > > > >> + struct regulator *vdda1p8; > >> + struct regulator *vbus; > >> + struct regulator *vdd; > >> + unsigned int vdd_levels[LEVEL_NUM]; > >> +}; > >> + > >> +static inline void qcom_ssphy_updatel(void __iomem *addr, u32 mask, u32 val) > >> +{ > >> + writel((readl(addr) & ~mask) | val, addr); > >> +} > >> + > >> +static int qcom_ssphy_config_vdd(struct ssphy_priv *priv, > >> + enum phy_vdd_level level) > >> +{ > >> + return regulator_set_voltage(priv->vdd, > >> + priv->vdd_levels[level], > >> + priv->vdd_levels[LEVEL_MAX]); > > > > regulator_set_voltage(reg, 0, max) is very suspicious. It's voltage > > corners where the voltages are known? > > sorry I dont understand the question > > this regulator on the ss phy wold be > vreg_l3_1p05: l3 { > regulator-min-microvolt = <976000>; > regulator-max-microvolt = <1160000>; Is this also the CX or MX voltage for the SoC? There would be a pin like VDDCX or VDDMX on the SoC part that is connected to this regulator if that's the case. Because you have "LEVEL" in the code it makes it sounds like it's voltage corners here so I suspect this is mapping into the voltage corner stuff that qcom has. > }; > > > >> +} > >> + > >> +static int qcom_ssphy_ldo_enable(struct ssphy_priv *priv) > >> +{ > >> + int ret; > >> + > >> + ret = regulator_set_load(priv->vdda1p8, 23000); > > > > Do you need to do this? Why can't the regulator be in high power mode > > all the time and then go low power when it's disabled? > > this regulator is shared with the usb hs phy and each (ss/hs) have > different load requirements. why would it be wrong for the ss phy to > announce its needs (which will differ from those of the hs phy)? Yes they have different load requirements, but in the end I would guess they always push the regulator into high power mode when the device is active and drop the load requirement when it's inactive. If it matches the enable state of the regulator then there isn't much need for setting a load explicitly besides stating that when the regulator is on it should be in high power mode and when it's off it should be in low power mode and off.