1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2010,2011 NVIDIA Corporation <www.nvidia.com>
11 #include <linux/delay.h>
12 #include <linux/errno.h>
14 static struct udevice *tps6586x_dev;
17 /* Registers that we access */
18 SUPPLY_CONTROL1 = 0x20,
20 SM1_VOLTAGE_V1 = 0x23,
22 SM0_VOLTAGE_V1 = 0x26,
26 /* Bits in the supply control registers */
28 CTRL_SM1_SUPPLY2 = 0x02,
30 CTRL_SM0_SUPPLY2 = 0x08,
33 #define MAX_I2C_RETRY 3
34 static int tps6586x_read(int reg)
40 for (i = 0; i < MAX_I2C_RETRY; ++i) {
41 if (!dm_i2c_read(tps6586x_dev, reg, &data, 1)) {
46 /* i2c access failed, retry */
51 debug("pmu_read %x=%x\n", reg, retval);
53 debug("%s: failed to read register %#x: %d\n", __func__, reg,
58 static int tps6586x_write(int reg, uchar *data, uint len)
63 for (i = 0; i < MAX_I2C_RETRY; ++i) {
64 if (!dm_i2c_write(tps6586x_dev, reg, data, len)) {
69 /* i2c access failed, retry */
74 debug("pmu_write %x=%x: ", reg, retval);
75 for (i = 0; i < len; i++)
76 debug("%x ", data[i]);
78 debug("%s: failed to write register %#x\n", __func__, reg);
83 * Get current voltage of SM0 and SM1
85 * @param sm0 Place to put SM0 voltage
86 * @param sm1 Place to put SM1 voltage
87 * Return: 0 if ok, -1 on error
89 static int read_voltages(int *sm0, int *sm1)
95 * Each vdd has two supply sources, ie, v1 and v2.
96 * The supply control reg1 and reg2 determine the current selection.
98 ctrl1 = tps6586x_read(SUPPLY_CONTROL1);
99 ctrl2 = tps6586x_read(SUPPLY_CONTROL2);
100 if (ctrl1 == -1 || ctrl2 == -1)
103 /* Figure out whether V1 or V2 is selected */
104 is_v2 = (ctrl1 | ctrl2) & CTRL_SM0_SUPPLY2;
105 *sm0 = tps6586x_read(is_v2 ? SM0_VOLTAGE_V2 : SM0_VOLTAGE_V1);
106 *sm1 = tps6586x_read(is_v2 ? SM1_VOLTAGE_V2 : SM1_VOLTAGE_V1);
107 if (*sm0 == -1 || *sm1 == -1)
113 static int set_voltage(int reg, int data, int rate)
118 control_bit = (reg == SM0_VOLTAGE_V1 ? CTRL_SM0_RAMP : CTRL_SM1_RAMP);
121 * Only one supply is needed in u-boot. set both v1 and v2 to
124 * When both v1 and v2 are set to same value, we just need to set
125 * control1 reg to trigger the supply selection.
127 buff[0] = buff[1] = (uchar)data;
130 /* write v1, v2 and rate, then trigger */
131 if (tps6586x_write(reg, buff, 3) ||
132 tps6586x_write(SUPPLY_CONTROL1, &control_bit, 1))
138 static int calculate_next_voltage(int voltage, int target, int step)
140 int diff = voltage < target ? step : -step;
142 if (abs(target - voltage) > step)
150 int tps6586x_set_pwm_mode(int mask)
155 assert(tps6586x_dev);
156 ret = tps6586x_read(PFM_MODE);
161 ret = tps6586x_write(PFM_MODE, &val, 1);
165 debug("%s: Failed to read/write PWM mode reg\n", __func__);
170 int tps6586x_adjust_sm0_sm1(int sm0_target, int sm1_target, int step, int rate,
171 int min_sm0_over_sm1)
176 assert(tps6586x_dev);
178 /* get current voltage settings */
179 if (read_voltages(&sm0, &sm1)) {
180 debug("%s: Cannot read voltage settings\n", __func__);
185 * if vdd_core < vdd_cpu + rel
188 * This condition may happen when system reboots due to kernel crash.
190 if (min_sm0_over_sm1 != -1 && sm0 < sm1 + min_sm0_over_sm1) {
191 debug("%s: SM0 is %d, SM1 is %d, but min_sm0_over_sm1 is %d\n",
192 __func__, sm0, sm1, min_sm0_over_sm1);
197 * Since vdd_core and vdd_cpu may both stand at either greater or less
198 * than their nominal voltage, the adjustment may go either directions.
200 * Make sure vdd_core is always higher than vdd_cpu with certain margin.
201 * So, find out which vdd to adjust first in each step.
203 * case 1: both sm0 and sm1 need to move up
204 * adjust sm0 before sm1
206 * case 2: both sm0 and sm1 need to move down
207 * adjust sm1 before sm0
209 * case 3: sm0 moves down and sm1 moves up
210 * adjusting either one first is fine.
212 * Adjust vdd_core and vdd_cpu one step at a time until they reach
213 * their nominal values.
216 while (!bad && (sm0 != sm0_target || sm1 != sm1_target)) {
217 int adjust_sm0_late = 0; /* flag to adjust vdd_core later */
219 debug("%d-%d %d-%d ", sm0, sm0_target, sm1, sm1_target);
221 if (sm0 != sm0_target) {
223 * if case 1 and case 3, set new sm0 first.
224 * otherwise, hold down until new sm1 is set.
226 sm0 = calculate_next_voltage(sm0, sm0_target, step);
227 if (sm1 < sm1_target)
228 bad |= set_voltage(SM0_VOLTAGE_V1, sm0, rate);
233 if (sm1 != sm1_target) {
234 sm1 = calculate_next_voltage(sm1, sm1_target, step);
235 bad |= set_voltage(SM1_VOLTAGE_V1, sm1, rate);
239 bad |= set_voltage(SM0_VOLTAGE_V1, sm0, rate);
240 debug("%d\n", adjust_sm0_late);
242 debug("%d-%d %d-%d done\n", sm0, sm0_target, sm1, sm1_target);
244 return bad ? -EINVAL : 0;
247 int tps6586x_init(struct udevice *dev)