blob: dfc6a91d1af705543309677912d9d832ec7f9785 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ying Zhang3ad27372014-10-31 18:06:18 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Ying Zhang3ad27372014-10-31 18:06:18 +08004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass7b51b572019-08-01 09:46:52 -06008#include <env.h>
Ying Zhang3ad27372014-10-31 18:06:18 +08009#include <i2c.h>
Simon Glass36bf4462019-11-14 12:57:42 -070010#include <irq_func.h>
Shaohui Xie02b5d2e2015-11-11 17:58:37 +080011#include <asm/io.h>
Shaohui Xie126fe702016-09-07 17:56:14 +080012#ifdef CONFIG_FSL_LSCH2
Shaohui Xie02b5d2e2015-11-11 17:58:37 +080013#include <asm/arch/immap_lsch2.h>
Rai Harnindered2530d2016-03-23 17:04:38 +053014#elif defined(CONFIG_FSL_LSCH3)
15#include <asm/arch/immap_lsch3.h>
Shaohui Xie02b5d2e2015-11-11 17:58:37 +080016#else
Ying Zhang3ad27372014-10-31 18:06:18 +080017#include <asm/immap_85xx.h>
Shaohui Xie02b5d2e2015-11-11 17:58:37 +080018#endif
Ying Zhang3ad27372014-10-31 18:06:18 +080019#include "vid.h"
20
Ying Zhang3ad27372014-10-31 18:06:18 +080021int __weak i2c_multiplexer_select_vid_channel(u8 channel)
22{
23 return 0;
24}
25
26/*
27 * Compensate for a board specific voltage drop between regulator and SoC
28 * return a value in mV
29 */
30int __weak board_vdd_drop_compensation(void)
31{
32 return 0;
33}
34
35/*
Rajesh Bhagat36075702018-01-17 16:13:02 +053036 * Board specific settings for specific voltage value
37 */
38int __weak board_adjust_vdd(int vdd)
39{
40 return 0;
41}
42
Rajesh Bhagat94583162018-01-17 16:13:03 +053043#if defined(CONFIG_VOL_MONITOR_IR36021_SET) || \
44 defined(CONFIG_VOL_MONITOR_IR36021_READ)
Rajesh Bhagat36075702018-01-17 16:13:02 +053045/*
Ying Zhang3ad27372014-10-31 18:06:18 +080046 * Get the i2c address configuration for the IR regulator chip
47 *
48 * There are some variance in the RDB HW regarding the I2C address configuration
49 * for the IR regulator chip, which is likely a problem of external resistor
50 * accuracy. So we just check each address in a hopefully non-intrusive mode
51 * and use the first one that seems to work
52 *
53 * The IR chip can show up under the following addresses:
54 * 0x08 (Verified on T1040RDB-PA,T4240RDB-PB,X-T4240RDB-16GPA)
55 * 0x09 (Verified on T1040RDB-PA)
Ying Zhang2f66a822016-01-22 12:15:13 +080056 * 0x38 (Verified on T2080QDS, T2081QDS, T4240RDB)
Ying Zhang3ad27372014-10-31 18:06:18 +080057 */
58static int find_ir_chip_on_i2c(void)
59{
60 int i2caddress;
61 int ret;
62 u8 byte;
63 int i;
64 const int ir_i2c_addr[] = {0x38, 0x08, 0x09};
Chuanhua Han0eba65d2019-07-10 21:00:20 +080065#ifdef CONFIG_DM_I2C
66 struct udevice *dev;
67#endif
Ying Zhang3ad27372014-10-31 18:06:18 +080068
69 /* Check all the address */
70 for (i = 0; i < (sizeof(ir_i2c_addr)/sizeof(ir_i2c_addr[0])); i++) {
71 i2caddress = ir_i2c_addr[i];
Chuanhua Han0eba65d2019-07-10 21:00:20 +080072#ifndef CONFIG_DM_I2C
Ying Zhang3ad27372014-10-31 18:06:18 +080073 ret = i2c_read(i2caddress,
74 IR36021_MFR_ID_OFFSET, 1, (void *)&byte,
75 sizeof(byte));
Chuanhua Han0eba65d2019-07-10 21:00:20 +080076#else
77 ret = i2c_get_chip_for_busnum(0, i2caddress, 1, &dev);
78 if (!ret)
79 ret = dm_i2c_read(dev, IR36021_MFR_ID_OFFSET,
80 (void *)&byte, sizeof(byte));
81#endif
Ying Zhang3ad27372014-10-31 18:06:18 +080082 if ((ret >= 0) && (byte == IR36021_MFR_ID))
83 return i2caddress;
84 }
85 return -1;
86}
Rajesh Bhagat94583162018-01-17 16:13:03 +053087#endif
Ying Zhang3ad27372014-10-31 18:06:18 +080088
89/* Maximum loop count waiting for new voltage to take effect */
90#define MAX_LOOP_WAIT_NEW_VOL 100
91/* Maximum loop count waiting for the voltage to be stable */
92#define MAX_LOOP_WAIT_VOL_STABLE 100
93/*
94 * read_voltage from sensor on I2C bus
95 * We use average of 4 readings, waiting for WAIT_FOR_ADC before
96 * another reading
97 */
98#define NUM_READINGS 4 /* prefer to be power of 2 for efficiency */
99
100/* If an INA220 chip is available, we can use it to read back the voltage
101 * as it may have a higher accuracy than the IR chip for the same purpose
102 */
103#ifdef CONFIG_VOL_MONITOR_INA220
104#define WAIT_FOR_ADC 532 /* wait for 532 microseconds for ADC */
105#define ADC_MIN_ACCURACY 4
106#else
107#define WAIT_FOR_ADC 138 /* wait for 138 microseconds for ADC */
108#define ADC_MIN_ACCURACY 4
109#endif
110
111#ifdef CONFIG_VOL_MONITOR_INA220
112static int read_voltage_from_INA220(int i2caddress)
113{
114 int i, ret, voltage_read = 0;
115 u16 vol_mon;
116 u8 buf[2];
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800117#ifdef CONFIG_DM_I2C
118 struct udevice *dev;
119#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800120
121 for (i = 0; i < NUM_READINGS; i++) {
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800122#ifndef CONFIG_DM_I2C
Ying Zhang3ad27372014-10-31 18:06:18 +0800123 ret = i2c_read(I2C_VOL_MONITOR_ADDR,
124 I2C_VOL_MONITOR_BUS_V_OFFSET, 1,
125 (void *)&buf, 2);
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800126#else
127 ret = i2c_get_chip_for_busnum(0, I2C_VOL_MONITOR_ADDR, 1, &dev);
128 if (!ret)
129 ret = dm_i2c_read(dev, I2C_VOL_MONITOR_BUS_V_OFFSET,
130 (void *)&buf, 2);
131#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800132 if (ret) {
133 printf("VID: failed to read core voltage\n");
134 return ret;
135 }
136 vol_mon = (buf[0] << 8) | buf[1];
137 if (vol_mon & I2C_VOL_MONITOR_BUS_V_OVF) {
138 printf("VID: Core voltage sensor error\n");
139 return -1;
140 }
141 debug("VID: bus voltage reads 0x%04x\n", vol_mon);
142 /* LSB = 4mv */
143 voltage_read += (vol_mon >> I2C_VOL_MONITOR_BUS_V_SHIFT) * 4;
144 udelay(WAIT_FOR_ADC);
145 }
146 /* calculate the average */
147 voltage_read /= NUM_READINGS;
148
149 return voltage_read;
150}
151#endif
152
153/* read voltage from IR */
154#ifdef CONFIG_VOL_MONITOR_IR36021_READ
155static int read_voltage_from_IR(int i2caddress)
156{
157 int i, ret, voltage_read = 0;
158 u16 vol_mon;
159 u8 buf;
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800160#ifdef CONFIG_DM_I2C
161 struct udevice *dev;
162#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800163
164 for (i = 0; i < NUM_READINGS; i++) {
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800165#ifndef CONFIG_DM_I2C
Ying Zhang3ad27372014-10-31 18:06:18 +0800166 ret = i2c_read(i2caddress,
167 IR36021_LOOP1_VOUT_OFFSET,
168 1, (void *)&buf, 1);
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800169#else
170 ret = i2c_get_chip_for_busnum(0, i2caddress, 1, &dev);
171 if (!ret)
172 ret = dm_i2c_read(dev, IR36021_LOOP1_VOUT_OFFSET,
173 (void *)&buf, 1);
174#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800175 if (ret) {
176 printf("VID: failed to read vcpu\n");
177 return ret;
178 }
179 vol_mon = buf;
180 if (!vol_mon) {
181 printf("VID: Core voltage sensor error\n");
182 return -1;
183 }
184 debug("VID: bus voltage reads 0x%02x\n", vol_mon);
185 /* Resolution is 1/128V. We scale up here to get 1/128mV
186 * and divide at the end
187 */
188 voltage_read += vol_mon * 1000;
189 udelay(WAIT_FOR_ADC);
190 }
191 /* Scale down to the real mV as IR resolution is 1/128V, rounding up */
192 voltage_read = DIV_ROUND_UP(voltage_read, 128);
193
194 /* calculate the average */
195 voltage_read /= NUM_READINGS;
196
197 /* Compensate for a board specific voltage drop between regulator and
198 * SoC before converting into an IR VID value
199 */
200 voltage_read -= board_vdd_drop_compensation();
201
202 return voltage_read;
203}
204#endif
205
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530206#ifdef CONFIG_VOL_MONITOR_LTC3882_READ
207/* read the current value of the LTC Regulator Voltage */
208static int read_voltage_from_LTC(int i2caddress)
209{
210 int ret, vcode = 0;
211 u8 chan = PWM_CHANNEL0;
212
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800213#ifndef CONFIG_DM_I2C
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530214 /* select the PAGE 0 using PMBus commands PAGE for VDD*/
215 ret = i2c_write(I2C_VOL_MONITOR_ADDR,
216 PMBUS_CMD_PAGE, 1, &chan, 1);
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800217#else
218 struct udevice *dev;
219
220 ret = i2c_get_chip_for_busnum(0, I2C_VOL_MONITOR_ADDR, 1, &dev);
221 if (!ret)
222 ret = dm_i2c_write(dev, PMBUS_CMD_PAGE, &chan, 1);
223#endif
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530224 if (ret) {
225 printf("VID: failed to select VDD Page 0\n");
226 return ret;
227 }
228
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800229#ifndef CONFIG_DM_I2C
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530230 /*read the output voltage using PMBus command READ_VOUT*/
231 ret = i2c_read(I2C_VOL_MONITOR_ADDR,
232 PMBUS_CMD_READ_VOUT, 1, (void *)&vcode, 2);
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800233#else
234 ret = dm_i2c_read(dev, PMBUS_CMD_READ_VOUT, (void *)&vcode, 2);
235 if (ret) {
236 printf("VID: failed to read the volatge\n");
237 return ret;
238 }
239#endif
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530240 if (ret) {
241 printf("VID: failed to read the volatge\n");
242 return ret;
243 }
244
245 /* Scale down to the real mV as LTC resolution is 1/4096V,rounding up */
246 vcode = DIV_ROUND_UP(vcode * 1000, 4096);
247
248 return vcode;
249}
250#endif
251
Ying Zhang3ad27372014-10-31 18:06:18 +0800252static int read_voltage(int i2caddress)
253{
254 int voltage_read;
255#ifdef CONFIG_VOL_MONITOR_INA220
256 voltage_read = read_voltage_from_INA220(i2caddress);
257#elif defined CONFIG_VOL_MONITOR_IR36021_READ
258 voltage_read = read_voltage_from_IR(i2caddress);
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530259#elif defined CONFIG_VOL_MONITOR_LTC3882_READ
260 voltage_read = read_voltage_from_LTC(i2caddress);
Ying Zhang3ad27372014-10-31 18:06:18 +0800261#else
262 return -1;
263#endif
264 return voltage_read;
265}
266
Rajesh Bhagat94583162018-01-17 16:13:03 +0530267#ifdef CONFIG_VOL_MONITOR_IR36021_SET
Ying Zhang3ad27372014-10-31 18:06:18 +0800268/*
269 * We need to calculate how long before the voltage stops to drop
270 * or increase. It returns with the loop count. Each loop takes
271 * several readings (WAIT_FOR_ADC)
272 */
273static int wait_for_new_voltage(int vdd, int i2caddress)
274{
275 int timeout, vdd_current;
276
277 vdd_current = read_voltage(i2caddress);
278 /* wait until voltage starts to reach the target. Voltage slew
279 * rates by typical regulators will always lead to stable readings
280 * within each fairly long ADC interval in comparison to the
281 * intended voltage delta change until the target voltage is
282 * reached. The fairly small voltage delta change to any target
283 * VID voltage also means that this function will always complete
284 * within few iterations. If the timeout was ever reached, it would
285 * point to a serious failure in the regulator system.
286 */
287 for (timeout = 0;
288 abs(vdd - vdd_current) > (IR_VDD_STEP_UP + IR_VDD_STEP_DOWN) &&
289 timeout < MAX_LOOP_WAIT_NEW_VOL; timeout++) {
290 vdd_current = read_voltage(i2caddress);
291 }
292 if (timeout >= MAX_LOOP_WAIT_NEW_VOL) {
293 printf("VID: Voltage adjustment timeout\n");
294 return -1;
295 }
296 return timeout;
297}
298
299/*
300 * this function keeps reading the voltage until it is stable or until the
301 * timeout expires
302 */
303static int wait_for_voltage_stable(int i2caddress)
304{
305 int timeout, vdd_current, vdd;
306
307 vdd = read_voltage(i2caddress);
308 udelay(NUM_READINGS * WAIT_FOR_ADC);
309
310 /* wait until voltage is stable */
311 vdd_current = read_voltage(i2caddress);
312 /* The maximum timeout is
313 * MAX_LOOP_WAIT_VOL_STABLE * NUM_READINGS * WAIT_FOR_ADC
314 */
315 for (timeout = MAX_LOOP_WAIT_VOL_STABLE;
316 abs(vdd - vdd_current) > ADC_MIN_ACCURACY &&
317 timeout > 0; timeout--) {
318 vdd = vdd_current;
319 udelay(NUM_READINGS * WAIT_FOR_ADC);
320 vdd_current = read_voltage(i2caddress);
321 }
322 if (timeout == 0)
323 return -1;
324 return vdd_current;
325}
326
Ying Zhang3ad27372014-10-31 18:06:18 +0800327/* Set the voltage to the IR chip */
328static int set_voltage_to_IR(int i2caddress, int vdd)
329{
330 int wait, vdd_last;
331 int ret;
332 u8 vid;
333
334 /* Compensate for a board specific voltage drop between regulator and
335 * SoC before converting into an IR VID value
336 */
337 vdd += board_vdd_drop_compensation();
Shaohui Xie126fe702016-09-07 17:56:14 +0800338#ifdef CONFIG_FSL_LSCH2
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800339 vid = DIV_ROUND_UP(vdd - 265, 5);
340#else
Ying Zhang3ad27372014-10-31 18:06:18 +0800341 vid = DIV_ROUND_UP(vdd - 245, 5);
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800342#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800343
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800344#ifndef CONFIG_DM_I2C
Ying Zhang3ad27372014-10-31 18:06:18 +0800345 ret = i2c_write(i2caddress, IR36021_LOOP1_MANUAL_ID_OFFSET,
346 1, (void *)&vid, sizeof(vid));
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800347#else
348 struct udevice *dev;
349
350 ret = i2c_get_chip_for_busnum(0, i2caddress, 1, &dev);
351 if (!ret)
352 ret = dm_i2c_write(dev, IR36021_LOOP1_MANUAL_ID_OFFSET,
353 (void *)&vid, sizeof(vid));
354
355#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800356 if (ret) {
357 printf("VID: failed to write VID\n");
358 return -1;
359 }
360 wait = wait_for_new_voltage(vdd, i2caddress);
361 if (wait < 0)
362 return -1;
363 debug("VID: Waited %d us\n", wait * NUM_READINGS * WAIT_FOR_ADC);
364
365 vdd_last = wait_for_voltage_stable(i2caddress);
366 if (vdd_last < 0)
367 return -1;
368 debug("VID: Current voltage is %d mV\n", vdd_last);
369 return vdd_last;
370}
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530371
372#endif
373
374#ifdef CONFIG_VOL_MONITOR_LTC3882_SET
375/* this function sets the VDD and returns the value set */
376static int set_voltage_to_LTC(int i2caddress, int vdd)
377{
378 int ret, vdd_last, vdd_target = vdd;
Priyanka Jaindf182a42018-10-11 05:11:23 +0000379 int count = 100, temp = 0;
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530380
381 /* Scale up to the LTC resolution is 1/4096V */
382 vdd = (vdd * 4096) / 1000;
383
384 /* 5-byte buffer which needs to be sent following the
385 * PMBus command PAGE_PLUS_WRITE.
386 */
387 u8 buff[5] = {0x04, PWM_CHANNEL0, PMBUS_CMD_VOUT_COMMAND,
388 vdd & 0xFF, (vdd & 0xFF00) >> 8};
389
390 /* Write the desired voltage code to the regulator */
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800391#ifndef CONFIG_DM_I2C
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530392 ret = i2c_write(I2C_VOL_MONITOR_ADDR,
393 PMBUS_CMD_PAGE_PLUS_WRITE, 1, (void *)&buff, 5);
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800394#else
395 struct udevice *dev;
396
397 ret = i2c_get_chip_for_busnum(0, I2C_VOL_MONITOR_ADDR, 1, &dev);
398 if (!ret)
399 ret = dm_i2c_write(dev, PMBUS_CMD_PAGE_PLUS_WRITE,
400 (void *)&buff, 5);
401#endif
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530402 if (ret) {
403 printf("VID: I2C failed to write to the volatge regulator\n");
404 return -1;
405 }
406
407 /* Wait for the volatge to get to the desired value */
408 do {
409 vdd_last = read_voltage_from_LTC(i2caddress);
410 if (vdd_last < 0) {
411 printf("VID: Couldn't read sensor abort VID adjust\n");
412 return -1;
413 }
Priyanka Jaindf182a42018-10-11 05:11:23 +0000414 count--;
415 temp = vdd_last - vdd_target;
416 } while ((abs(temp) > 2) && (count > 0));
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530417
418 return vdd_last;
419}
Ying Zhang3ad27372014-10-31 18:06:18 +0800420#endif
421
422static int set_voltage(int i2caddress, int vdd)
423{
424 int vdd_last = -1;
425
426#ifdef CONFIG_VOL_MONITOR_IR36021_SET
427 vdd_last = set_voltage_to_IR(i2caddress, vdd);
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530428#elif defined CONFIG_VOL_MONITOR_LTC3882_SET
429 vdd_last = set_voltage_to_LTC(i2caddress, vdd);
Ying Zhang3ad27372014-10-31 18:06:18 +0800430#else
431 #error Specific voltage monitor must be defined
432#endif
433 return vdd_last;
434}
435
Priyanka Jain29ca7132017-01-19 11:12:27 +0530436#ifdef CONFIG_FSL_LSCH3
Ying Zhang3ad27372014-10-31 18:06:18 +0800437int adjust_vdd(ulong vdd_override)
438{
439 int re_enable = disable_interrupts();
Priyanka Jain29ca7132017-01-19 11:12:27 +0530440 struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
441 u32 fusesr;
Rajesh Bhagat94583162018-01-17 16:13:03 +0530442#if defined(CONFIG_VOL_MONITOR_IR36021_SET) || \
443 defined(CONFIG_VOL_MONITOR_IR36021_READ)
Priyanka Jain29ca7132017-01-19 11:12:27 +0530444 u8 vid, buf;
Rajesh Bhagat94583162018-01-17 16:13:03 +0530445#else
446 u8 vid;
447#endif
Priyanka Jain29ca7132017-01-19 11:12:27 +0530448 int vdd_target, vdd_current, vdd_last;
449 int ret, i2caddress;
450 unsigned long vdd_string_override;
451 char *vdd_string;
Priyanka Jaindb1e3df2018-10-11 05:22:34 +0000452#ifdef CONFIG_ARCH_LX2160A
453 static const u16 vdd[32] = {
454 8250,
455 7875,
456 7750,
457 0, /* reserved */
458 0, /* reserved */
459 0, /* reserved */
460 0, /* reserved */
461 0, /* reserved */
462 0, /* reserved */
463 0, /* reserved */
464 0, /* reserved */
465 0, /* reserved */
466 0, /* reserved */
467 0, /* reserved */
468 0, /* reserved */
469 0, /* reserved */
470 8000,
471 8125,
472 8250,
473 0, /* reserved */
474 8500,
475 0, /* reserved */
476 0, /* reserved */
477 0, /* reserved */
478 0, /* reserved */
479 0, /* reserved */
480 0, /* reserved */
481 0, /* reserved */
482 0, /* reserved */
483 0, /* reserved */
484 0, /* reserved */
485 0, /* reserved */
486 };
487#else
Rajesh Bhagatc535ad42018-01-17 16:13:01 +0530488#ifdef CONFIG_ARCH_LS1088A
489 static const uint16_t vdd[32] = {
490 10250,
491 9875,
492 9750,
493 0, /* reserved */
494 0, /* reserved */
495 0, /* reserved */
496 0, /* reserved */
497 0, /* reserved */
498 9000,
499 0, /* reserved */
500 0, /* reserved */
501 0, /* reserved */
502 0, /* reserved */
503 0, /* reserved */
504 0, /* reserved */
505 0, /* reserved */
506 10000, /* 1.0000V */
507 10125,
508 10250,
509 0, /* reserved */
510 0, /* reserved */
511 0, /* reserved */
512 0, /* reserved */
513 0, /* reserved */
514 0, /* reserved */
515 0, /* reserved */
516 0, /* reserved */
517 0, /* reserved */
518 0, /* reserved */
519 0, /* reserved */
520 0, /* reserved */
521 0, /* reserved */
522 };
523
524#else
Priyanka Jain29ca7132017-01-19 11:12:27 +0530525 static const uint16_t vdd[32] = {
526 10500,
527 0, /* reserved */
528 9750,
529 0, /* reserved */
530 9500,
531 0, /* reserved */
532 0, /* reserved */
533 0, /* reserved */
534 0, /* reserved */
535 0, /* reserved */
536 0, /* reserved */
Priyanka Jain49119482018-05-09 12:54:38 +0530537 9000, /* reserved */
Priyanka Jain29ca7132017-01-19 11:12:27 +0530538 0, /* reserved */
539 0, /* reserved */
540 0, /* reserved */
541 0, /* reserved */
542 10000, /* 1.0000V */
543 0, /* reserved */
544 10250,
545 0, /* reserved */
546 10500,
547 0, /* reserved */
548 0, /* reserved */
549 0, /* reserved */
550 0, /* reserved */
551 0, /* reserved */
552 0, /* reserved */
553 0, /* reserved */
554 0, /* reserved */
555 0, /* reserved */
556 0, /* reserved */
557 0, /* reserved */
558 };
Rajesh Bhagatc535ad42018-01-17 16:13:01 +0530559#endif
Priyanka Jaindb1e3df2018-10-11 05:22:34 +0000560#endif
Priyanka Jain29ca7132017-01-19 11:12:27 +0530561 struct vdd_drive {
562 u8 vid;
563 unsigned voltage;
564 };
565
566 ret = i2c_multiplexer_select_vid_channel(I2C_MUX_CH_VOL_MONITOR);
567 if (ret) {
568 debug("VID: I2C failed to switch channel\n");
569 ret = -1;
570 goto exit;
571 }
Rajesh Bhagat94583162018-01-17 16:13:03 +0530572#if defined(CONFIG_VOL_MONITOR_IR36021_SET) || \
573 defined(CONFIG_VOL_MONITOR_IR36021_READ)
Priyanka Jain29ca7132017-01-19 11:12:27 +0530574 ret = find_ir_chip_on_i2c();
575 if (ret < 0) {
576 printf("VID: Could not find voltage regulator on I2C.\n");
577 ret = -1;
578 goto exit;
579 } else {
580 i2caddress = ret;
581 debug("VID: IR Chip found on I2C address 0x%02x\n", i2caddress);
582 }
583
584 /* check IR chip work on Intel mode*/
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800585#ifndef CONFIG_DM_I2C
Priyanka Jain29ca7132017-01-19 11:12:27 +0530586 ret = i2c_read(i2caddress,
587 IR36021_INTEL_MODE_OOFSET,
588 1, (void *)&buf, 1);
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800589#else
590 struct udevice *dev;
591
592 ret = i2c_get_chip_for_busnum(0, i2caddress, 1, &dev);
593 if (!ret)
594 ret = dm_i2c_read(dev, IR36021_INTEL_MODE_OOFSET,
595 (void *)&buf, 1);
596#endif
Priyanka Jain29ca7132017-01-19 11:12:27 +0530597 if (ret) {
598 printf("VID: failed to read IR chip mode.\n");
599 ret = -1;
600 goto exit;
601 }
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800602
Priyanka Jain29ca7132017-01-19 11:12:27 +0530603 if ((buf & IR36021_MODE_MASK) != IR36021_INTEL_MODE) {
604 printf("VID: IR Chip is not used in Intel mode.\n");
605 ret = -1;
606 goto exit;
607 }
Rajesh Bhagat94583162018-01-17 16:13:03 +0530608#endif
Priyanka Jain29ca7132017-01-19 11:12:27 +0530609
610 /* get the voltage ID from fuse status register */
611 fusesr = in_le32(&gur->dcfg_fusesr);
612 vid = (fusesr >> FSL_CHASSIS3_DCFG_FUSESR_ALTVID_SHIFT) &
613 FSL_CHASSIS3_DCFG_FUSESR_ALTVID_MASK;
614 if ((vid == 0) || (vid == FSL_CHASSIS3_DCFG_FUSESR_ALTVID_MASK)) {
615 vid = (fusesr >> FSL_CHASSIS3_DCFG_FUSESR_VID_SHIFT) &
616 FSL_CHASSIS3_DCFG_FUSESR_VID_MASK;
617 }
618 vdd_target = vdd[vid];
619
620 /* check override variable for overriding VDD */
Simon Glass00caae62017-08-03 12:22:12 -0600621 vdd_string = env_get(CONFIG_VID_FLS_ENV);
Priyanka Jain29ca7132017-01-19 11:12:27 +0530622 if (vdd_override == 0 && vdd_string &&
623 !strict_strtoul(vdd_string, 10, &vdd_string_override))
624 vdd_override = vdd_string_override;
625
626 if (vdd_override >= VDD_MV_MIN && vdd_override <= VDD_MV_MAX) {
627 vdd_target = vdd_override * 10; /* convert to 1/10 mV */
628 debug("VDD override is %lu\n", vdd_override);
629 } else if (vdd_override != 0) {
630 printf("Invalid value.\n");
631 }
632
633 /* divide and round up by 10 to get a value in mV */
634 vdd_target = DIV_ROUND_UP(vdd_target, 10);
635 if (vdd_target == 0) {
636 debug("VID: VID not used\n");
637 ret = 0;
638 goto exit;
639 } else if (vdd_target < VDD_MV_MIN || vdd_target > VDD_MV_MAX) {
640 /* Check vdd_target is in valid range */
641 printf("VID: Target VID %d mV is not in range.\n",
642 vdd_target);
643 ret = -1;
644 goto exit;
645 } else {
646 debug("VID: vid = %d mV\n", vdd_target);
647 }
648
649 /*
650 * Read voltage monitor to check real voltage.
651 */
652 vdd_last = read_voltage(i2caddress);
653 if (vdd_last < 0) {
654 printf("VID: Couldn't read sensor abort VID adjustment\n");
655 ret = -1;
656 goto exit;
657 }
658 vdd_current = vdd_last;
659 debug("VID: Core voltage is currently at %d mV\n", vdd_last);
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530660
661#ifdef CONFIG_VOL_MONITOR_LTC3882_SET
662 /* Set the target voltage */
663 vdd_last = vdd_current = set_voltage(i2caddress, vdd_target);
664#else
Priyanka Jain29ca7132017-01-19 11:12:27 +0530665 /*
666 * Adjust voltage to at or one step above target.
667 * As measurements are less precise than setting the values
668 * we may run through dummy steps that cancel each other
669 * when stepping up and then down.
670 */
671 while (vdd_last > 0 &&
672 vdd_last < vdd_target) {
673 vdd_current += IR_VDD_STEP_UP;
674 vdd_last = set_voltage(i2caddress, vdd_current);
675 }
676 while (vdd_last > 0 &&
677 vdd_last > vdd_target + (IR_VDD_STEP_DOWN - 1)) {
678 vdd_current -= IR_VDD_STEP_DOWN;
679 vdd_last = set_voltage(i2caddress, vdd_current);
680 }
681
Rajesh Bhagat23a12cb2018-01-17 16:13:05 +0530682#endif
Rajesh Bhagat36075702018-01-17 16:13:02 +0530683 if (board_adjust_vdd(vdd_target) < 0) {
684 ret = -1;
685 goto exit;
686 }
687
Priyanka Jain29ca7132017-01-19 11:12:27 +0530688 if (vdd_last > 0)
689 printf("VID: Core voltage after adjustment is at %d mV\n",
690 vdd_last);
691 else
692 ret = -1;
693exit:
694 if (re_enable)
695 enable_interrupts();
696 i2c_multiplexer_select_vid_channel(I2C_MUX_CH_DEFAULT);
697 return ret;
698}
699#else /* !CONFIG_FSL_LSCH3 */
700int adjust_vdd(ulong vdd_override)
701{
702 int re_enable = disable_interrupts();
703#if defined(CONFIG_FSL_LSCH2)
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800704 struct ccsr_gur *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
705#else
Ying Zhang3ad27372014-10-31 18:06:18 +0800706 ccsr_gur_t __iomem *gur =
707 (void __iomem *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800708#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800709 u32 fusesr;
Ying Zhangcabe4d22016-01-22 12:15:12 +0800710 u8 vid, buf;
Ying Zhang3ad27372014-10-31 18:06:18 +0800711 int vdd_target, vdd_current, vdd_last;
712 int ret, i2caddress;
713 unsigned long vdd_string_override;
714 char *vdd_string;
715 static const uint16_t vdd[32] = {
716 0, /* unused */
717 9875, /* 0.9875V */
718 9750,
719 9625,
720 9500,
721 9375,
722 9250,
723 9125,
724 9000,
725 8875,
726 8750,
727 8625,
728 8500,
729 8375,
730 8250,
731 8125,
732 10000, /* 1.0000V */
733 10125,
734 10250,
735 10375,
736 10500,
737 10625,
738 10750,
739 10875,
740 11000,
741 0, /* reserved */
742 };
743 struct vdd_drive {
744 u8 vid;
745 unsigned voltage;
746 };
747
748 ret = i2c_multiplexer_select_vid_channel(I2C_MUX_CH_VOL_MONITOR);
749 if (ret) {
750 debug("VID: I2C failed to switch channel\n");
751 ret = -1;
752 goto exit;
753 }
Rajesh Bhagat94583162018-01-17 16:13:03 +0530754#if defined(CONFIG_VOL_MONITOR_IR36021_SET) || \
755 defined(CONFIG_VOL_MONITOR_IR36021_READ)
Ying Zhang3ad27372014-10-31 18:06:18 +0800756 ret = find_ir_chip_on_i2c();
757 if (ret < 0) {
758 printf("VID: Could not find voltage regulator on I2C.\n");
759 ret = -1;
760 goto exit;
761 } else {
762 i2caddress = ret;
763 debug("VID: IR Chip found on I2C address 0x%02x\n", i2caddress);
764 }
765
Ying Zhangcabe4d22016-01-22 12:15:12 +0800766 /* check IR chip work on Intel mode*/
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800767#ifndef CONFIG_DM_I2C
Ying Zhangcabe4d22016-01-22 12:15:12 +0800768 ret = i2c_read(i2caddress,
769 IR36021_INTEL_MODE_OOFSET,
770 1, (void *)&buf, 1);
Chuanhua Han0eba65d2019-07-10 21:00:20 +0800771#else
772 struct udevice *dev;
773
774 ret = i2c_get_chip_for_busnum(0, i2caddress, 1, &dev);
775 if (!ret)
776 ret = dm_i2c_read(dev, IR36021_INTEL_MODE_OOFSET,
777 (void *)&buf, 1);
778#endif
Ying Zhangcabe4d22016-01-22 12:15:12 +0800779 if (ret) {
780 printf("VID: failed to read IR chip mode.\n");
781 ret = -1;
782 goto exit;
783 }
784 if ((buf & IR36021_MODE_MASK) != IR36021_INTEL_MODE) {
785 printf("VID: IR Chip is not used in Intel mode.\n");
786 ret = -1;
787 goto exit;
788 }
Rajesh Bhagat94583162018-01-17 16:13:03 +0530789#endif
Ying Zhangcabe4d22016-01-22 12:15:12 +0800790
Ying Zhang3ad27372014-10-31 18:06:18 +0800791 /* get the voltage ID from fuse status register */
792 fusesr = in_be32(&gur->dcfg_fusesr);
793 /*
794 * VID is used according to the table below
795 * ---------------------------------------
796 * | DA_V |
797 * |-------------------------------------|
798 * | 5b00000 | 5b00001-5b11110 | 5b11111 |
799 * ---------------+---------+-----------------+---------|
800 * | D | 5b00000 | NO VID | VID = DA_V | NO VID |
801 * | A |----------+---------+-----------------+---------|
802 * | _ | 5b00001 |VID = | VID = |VID = |
803 * | V | ~ | DA_V_ALT| DA_V_ALT | DA_A_VLT|
804 * | _ | 5b11110 | | | |
805 * | A |----------+---------+-----------------+---------|
806 * | L | 5b11111 | No VID | VID = DA_V | NO VID |
807 * | T | | | | |
808 * ------------------------------------------------------
809 */
Shaohui Xie126fe702016-09-07 17:56:14 +0800810#ifdef CONFIG_FSL_LSCH2
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800811 vid = (fusesr >> FSL_CHASSIS2_DCFG_FUSESR_ALTVID_SHIFT) &
812 FSL_CHASSIS2_DCFG_FUSESR_ALTVID_MASK;
813 if ((vid == 0) || (vid == FSL_CHASSIS2_DCFG_FUSESR_ALTVID_MASK)) {
814 vid = (fusesr >> FSL_CHASSIS2_DCFG_FUSESR_VID_SHIFT) &
815 FSL_CHASSIS2_DCFG_FUSESR_VID_MASK;
816 }
817#else
Ying Zhang3ad27372014-10-31 18:06:18 +0800818 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_ALTVID_SHIFT) &
819 FSL_CORENET_DCFG_FUSESR_ALTVID_MASK;
820 if ((vid == 0) || (vid == FSL_CORENET_DCFG_FUSESR_ALTVID_MASK)) {
821 vid = (fusesr >> FSL_CORENET_DCFG_FUSESR_VID_SHIFT) &
822 FSL_CORENET_DCFG_FUSESR_VID_MASK;
823 }
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800824#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800825 vdd_target = vdd[vid];
826
827 /* check override variable for overriding VDD */
Simon Glass00caae62017-08-03 12:22:12 -0600828 vdd_string = env_get(CONFIG_VID_FLS_ENV);
Ying Zhang3ad27372014-10-31 18:06:18 +0800829 if (vdd_override == 0 && vdd_string &&
830 !strict_strtoul(vdd_string, 10, &vdd_string_override))
831 vdd_override = vdd_string_override;
832 if (vdd_override >= VDD_MV_MIN && vdd_override <= VDD_MV_MAX) {
833 vdd_target = vdd_override * 10; /* convert to 1/10 mV */
834 debug("VDD override is %lu\n", vdd_override);
835 } else if (vdd_override != 0) {
836 printf("Invalid value.\n");
837 }
838 if (vdd_target == 0) {
839 debug("VID: VID not used\n");
840 ret = 0;
841 goto exit;
842 } else {
843 /* divide and round up by 10 to get a value in mV */
844 vdd_target = DIV_ROUND_UP(vdd_target, 10);
845 debug("VID: vid = %d mV\n", vdd_target);
846 }
847
848 /*
849 * Read voltage monitor to check real voltage.
850 */
851 vdd_last = read_voltage(i2caddress);
852 if (vdd_last < 0) {
853 printf("VID: Couldn't read sensor abort VID adjustment\n");
854 ret = -1;
855 goto exit;
856 }
857 vdd_current = vdd_last;
858 debug("VID: Core voltage is currently at %d mV\n", vdd_last);
859 /*
860 * Adjust voltage to at or one step above target.
861 * As measurements are less precise than setting the values
862 * we may run through dummy steps that cancel each other
863 * when stepping up and then down.
864 */
865 while (vdd_last > 0 &&
866 vdd_last < vdd_target) {
867 vdd_current += IR_VDD_STEP_UP;
868 vdd_last = set_voltage(i2caddress, vdd_current);
869 }
870 while (vdd_last > 0 &&
871 vdd_last > vdd_target + (IR_VDD_STEP_DOWN - 1)) {
872 vdd_current -= IR_VDD_STEP_DOWN;
873 vdd_last = set_voltage(i2caddress, vdd_current);
874 }
875
876 if (vdd_last > 0)
877 printf("VID: Core voltage after adjustment is at %d mV\n",
878 vdd_last);
879 else
880 ret = -1;
881exit:
882 if (re_enable)
883 enable_interrupts();
Wenbin Song1be8d102016-03-09 13:38:23 +0800884
885 i2c_multiplexer_select_vid_channel(I2C_MUX_CH_DEFAULT);
886
Ying Zhang3ad27372014-10-31 18:06:18 +0800887 return ret;
888}
Priyanka Jain29ca7132017-01-19 11:12:27 +0530889#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800890
891static int print_vdd(void)
892{
893 int vdd_last, ret, i2caddress;
894
895 ret = i2c_multiplexer_select_vid_channel(I2C_MUX_CH_VOL_MONITOR);
896 if (ret) {
897 debug("VID : I2c failed to switch channel\n");
898 return -1;
899 }
Rajesh Bhagat94583162018-01-17 16:13:03 +0530900#if defined(CONFIG_VOL_MONITOR_IR36021_SET) || \
901 defined(CONFIG_VOL_MONITOR_IR36021_READ)
Ying Zhang3ad27372014-10-31 18:06:18 +0800902 ret = find_ir_chip_on_i2c();
903 if (ret < 0) {
904 printf("VID: Could not find voltage regulator on I2C.\n");
Wenbin Song1be8d102016-03-09 13:38:23 +0800905 goto exit;
Ying Zhang3ad27372014-10-31 18:06:18 +0800906 } else {
907 i2caddress = ret;
908 debug("VID: IR Chip found on I2C address 0x%02x\n", i2caddress);
909 }
Rajesh Bhagat94583162018-01-17 16:13:03 +0530910#endif
Ying Zhang3ad27372014-10-31 18:06:18 +0800911
912 /*
913 * Read voltage monitor to check real voltage.
914 */
915 vdd_last = read_voltage(i2caddress);
916 if (vdd_last < 0) {
917 printf("VID: Couldn't read sensor abort VID adjustment\n");
Wenbin Song1be8d102016-03-09 13:38:23 +0800918 goto exit;
Ying Zhang3ad27372014-10-31 18:06:18 +0800919 }
920 printf("VID: Core voltage is at %d mV\n", vdd_last);
Wenbin Song1be8d102016-03-09 13:38:23 +0800921exit:
922 i2c_multiplexer_select_vid_channel(I2C_MUX_CH_DEFAULT);
Ying Zhang3ad27372014-10-31 18:06:18 +0800923
Wenbin Song1be8d102016-03-09 13:38:23 +0800924 return ret < 0 ? -1 : 0;
925
Ying Zhang3ad27372014-10-31 18:06:18 +0800926}
927
Simon Glass09140112020-05-10 11:40:03 -0600928static int do_vdd_override(struct cmd_tbl *cmdtp,
Ying Zhang3ad27372014-10-31 18:06:18 +0800929 int flag, int argc,
Simon Glass09140112020-05-10 11:40:03 -0600930 char *const argv[])
Ying Zhang3ad27372014-10-31 18:06:18 +0800931{
932 ulong override;
933
934 if (argc < 2)
935 return CMD_RET_USAGE;
936
937 if (!strict_strtoul(argv[1], 10, &override))
938 adjust_vdd(override); /* the value is checked by callee */
939 else
940 return CMD_RET_USAGE;
941 return 0;
942}
943
Simon Glass09140112020-05-10 11:40:03 -0600944static int do_vdd_read(struct cmd_tbl *cmdtp, int flag, int argc,
945 char *const argv[])
Ying Zhang3ad27372014-10-31 18:06:18 +0800946{
947 if (argc < 1)
948 return CMD_RET_USAGE;
949 print_vdd();
950
951 return 0;
952}
953
954U_BOOT_CMD(
955 vdd_override, 2, 0, do_vdd_override,
956 "override VDD",
957 " - override with the voltage specified in mV, eg. 1050"
958);
959
960U_BOOT_CMD(
961 vdd_read, 1, 0, do_vdd_read,
962 "read VDD",
963 " - Read the voltage specified in mV"
964)