1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) 2018 Theobroma Systems Design und Consulting GmbH
13 #include <power/fan53555.h>
14 #include <power/pmic.h>
15 #include <power/regulator.h>
18 * struct ic_types - definition of fan53555-family devices
20 * @die_id: Identifies the DIE_ID (lower nibble of the ID1 register)
21 * @die_rev: Identifies the DIE_REV (lower nibble of the ID2 register)
22 * @vsel_min: starting voltage (step 0) in uV
23 * @vsel_step: increment of the voltage in uV
25 * The voltage ramp (i.e. minimum voltage and step) is selected from the
26 * combination of 2 nibbles: DIE_ID and DIE_REV.
28 * See http://www.onsemi.com/pub/Collateral/FAN53555-D.pdf for details.
39 { FAN53555_VENDOR_FAIRCHILD, 0x0, 0x3, true, 600000, 10000 },
41 { FAN53555_VENDOR_FAIRCHILD, 0x0, 0xf, true, 800000, 10000 },
43 { FAN53555_VENDOR_FAIRCHILD, 0x0, 0xc, true, 600000, 12500 },
45 { FAN53555_VENDOR_FAIRCHILD, 0x1, 0x3, true, 600000, 10000 },
47 { FAN53555_VENDOR_FAIRCHILD, 0x3, 0x3, true, 600000, 10000 },
49 { FAN53555_VENDOR_FAIRCHILD, 0x4, 0xf, true, 603000, 12826 },
51 { FAN53555_VENDOR_FAIRCHILD, 0x5, 0x3, true, 600000, 10000 },
53 { FAN53555_VENDOR_FAIRCHILD, 0x8, 0x1, true, 600000, 10000 },
55 { FAN53555_VENDOR_FAIRCHILD, 0x8, 0xf, true, 600000, 10000 },
57 { FAN53555_VENDOR_FAIRCHILD, 0xc, 0xf, true, 603000, 12826 },
59 { FAN53555_VENDOR_SILERGY, 0x8, 0x0, false, 712500, 12500 },
61 { FAN53555_VENDOR_SILERGY, 0x9, 0x0, false, 712500, 12500 },
64 /* I2C-accessible byte-sized registers */
67 FAN53555_VSEL0 = 0x00,
69 /* Control register */
75 /* Monitor register */
79 struct fan53555_platdata {
80 /* Voltage setting register */
82 unsigned int sleep_reg;
86 struct fan53555_priv {
92 /* Voltage range and step(linear) */
93 unsigned int vsel_min;
94 unsigned int vsel_step;
95 /* Voltage slew rate limiting */
96 unsigned int slew_rate;
97 /* Sleep voltage cache */
98 unsigned int sleep_vol_cache;
101 static int fan53555_regulator_ofdata_to_platdata(struct udevice *dev)
103 struct fan53555_platdata *dev_pdata = dev_get_platdata(dev);
104 struct dm_regulator_uclass_platdata *uc_pdata =
105 dev_get_uclass_platdata(dev);
108 /* This is a buck regulator */
109 uc_pdata->type = REGULATOR_TYPE_BUCK;
111 sleep_vsel = dev_read_u32_default(dev, "fcs,suspend-voltage-selector",
115 * Depending on the device-tree settings, the 'normal mode'
116 * voltage is either controlled by VSEL0 or VSEL1.
118 switch (sleep_vsel) {
120 dev_pdata->sleep_reg = FAN53555_VSEL0;
121 dev_pdata->vol_reg = FAN53555_VSEL1;
124 dev_pdata->sleep_reg = FAN53555_VSEL1;
125 dev_pdata->vol_reg = FAN53555_VSEL0;
128 pr_err("%s: invalid vsel id %d\n", dev->name, sleep_vsel);
135 static int fan53555_regulator_get_value(struct udevice *dev)
137 struct fan53555_platdata *pdata = dev_get_platdata(dev);
138 struct fan53555_priv *priv = dev_get_priv(dev);
142 /* We only support a single voltage selector (i.e. 'normal' mode). */
143 reg = pmic_reg_read(dev->parent, pdata->vol_reg);
146 voltage = priv->vsel_min + (reg & 0x3f) * priv->vsel_step;
148 debug("%s: %d uV\n", __func__, voltage);
152 static int fan53555_regulator_set_value(struct udevice *dev, int uV)
154 struct fan53555_platdata *pdata = dev_get_platdata(dev);
155 struct fan53555_priv *priv = dev_get_priv(dev);
158 vol = (uV - priv->vsel_min) / priv->vsel_step;
159 debug("%s: uV=%d; writing volume %d: %02x\n",
160 __func__, uV, pdata->vol_reg, vol);
162 return pmic_clrsetbits(dev, pdata->vol_reg, GENMASK(6, 0), vol);
165 static int fan53555_voltages_setup(struct udevice *dev)
167 struct fan53555_priv *priv = dev_get_priv(dev);
170 /* Init voltage range and step */
171 for (i = 0; i < ARRAY_SIZE(ic_types); ++i) {
172 if (ic_types[i].vendor != priv->vendor)
175 if (ic_types[i].die_id != priv->die_id)
178 if (ic_types[i].check_rev &&
179 ic_types[i].die_rev != priv->die_rev)
182 priv->vsel_min = ic_types[i].vsel_min;
183 priv->vsel_step = ic_types[i].vsel_step;
188 pr_err("%s: %s: die id %d rev %d not supported!\n",
189 dev->name, __func__, priv->die_id, priv->die_rev);
200 static int fan53555_probe(struct udevice *dev)
202 struct fan53555_priv *priv = dev_get_priv(dev);
205 debug("%s\n", __func__);
207 /* read chip ID1 and ID2 (two registers, starting at ID1) */
208 ID1 = pmic_reg_read(dev->parent, FAN53555_ID1);
212 ID2 = pmic_reg_read(dev->parent, FAN53555_ID2);
216 /* extract vendor, die_id and die_rev */
217 priv->vendor = dev->driver_data;
218 priv->die_id = ID1 & GENMASK(3, 0);
219 priv->die_rev = ID2 & GENMASK(3, 0);
221 if (fan53555_voltages_setup(dev) < 0)
224 debug("%s: FAN53555 option %d rev %d detected\n",
225 __func__, priv->die_id, priv->die_rev);
230 static const struct dm_regulator_ops fan53555_regulator_ops = {
231 .get_value = fan53555_regulator_get_value,
232 .set_value = fan53555_regulator_set_value,
235 U_BOOT_DRIVER(fan53555_regulator) = {
236 .name = "fan53555_regulator",
237 .id = UCLASS_REGULATOR,
238 .ops = &fan53555_regulator_ops,
239 .ofdata_to_platdata = fan53555_regulator_ofdata_to_platdata,
240 .platdata_auto_alloc_size = sizeof(struct fan53555_platdata),
241 .priv_auto_alloc_size = sizeof(struct fan53555_priv),
242 .probe = fan53555_probe,