blob: 27bfeaecbf3a1c9a49f4ad7f4395496396d8e995 [file] [log] [blame]
Tim Harvey552c3582014-03-06 07:46:30 -08001/*
2 * Copyright (C) 2013 Gateworks Corporation
3 *
4 * Author: Tim Harvey <tharvey@gateworks.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <asm/errno.h>
10#include <common.h>
11#include <i2c.h>
12#include <linux/ctype.h>
13
14#include "gsc.h"
15
Tim Harvey552c3582014-03-06 07:46:30 -080016/*
17 * The Gateworks System Controller will fail to ACK a master transaction if
18 * it is busy, which can occur during its 1HZ timer tick while reading ADC's.
19 * When this does occur, it will never be busy long enough to fail more than
20 * 2 back-to-back transfers. Thus we wrap i2c_read and i2c_write with
21 * 3 retries.
22 */
23int gsc_i2c_read(uchar chip, uint addr, int alen, uchar *buf, int len)
24{
25 int retry = 3;
26 int n = 0;
27 int ret;
28
29 while (n++ < retry) {
30 ret = i2c_read(chip, addr, alen, buf, len);
31 if (!ret)
32 break;
33 debug("%s: 0x%02x 0x%02x retry%d: %d\n", __func__, chip, addr,
34 n, ret);
35 if (ret != -ENODEV)
36 break;
37 mdelay(10);
38 }
39 return ret;
40}
41
42int gsc_i2c_write(uchar chip, uint addr, int alen, uchar *buf, int len)
43{
44 int retry = 3;
45 int n = 0;
46 int ret;
47
48 while (n++ < retry) {
49 ret = i2c_write(chip, addr, alen, buf, len);
50 if (!ret)
51 break;
52 debug("%s: 0x%02x 0x%02x retry%d: %d\n", __func__, chip, addr,
53 n, ret);
54 if (ret != -ENODEV)
55 break;
56 mdelay(10);
57 }
Tim Harvey8d68c8e2014-08-07 22:35:44 -070058 mdelay(100);
Tim Harvey552c3582014-03-06 07:46:30 -080059 return ret;
60}
61
62#ifdef CONFIG_CMD_GSC
Tim Harveybd804512015-04-08 12:54:50 -070063static void read_hwmon(const char *name, uint reg, uint size)
Tim Harvey552c3582014-03-06 07:46:30 -080064{
65 unsigned char buf[3];
66 uint ui;
67
68 printf("%-8s:", name);
69 memset(buf, 0, sizeof(buf));
70 if (gsc_i2c_read(GSC_HWMON_ADDR, reg, 1, buf, size)) {
71 puts("fRD\n");
72 } else {
73 ui = buf[0] | (buf[1]<<8) | (buf[2]<<16);
74 if (ui == 0xffffff)
Tim Harveybd804512015-04-08 12:54:50 -070075 puts("invalid\n");
Tim Harvey552c3582014-03-06 07:46:30 -080076 else
Tim Harveybd804512015-04-08 12:54:50 -070077 printf("%d\n", ui);
Tim Harvey552c3582014-03-06 07:46:30 -080078 }
Tim Harvey552c3582014-03-06 07:46:30 -080079}
80
81int do_gsc(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
82{
83 const char *model = getenv("model");
84
85 i2c_set_bus_num(0);
Tim Harveybd804512015-04-08 12:54:50 -070086 read_hwmon("Temp", GSC_HWMON_TEMP, 2);
87 read_hwmon("VIN", GSC_HWMON_VIN, 3);
88 read_hwmon("VBATT", GSC_HWMON_VBATT, 3);
89 read_hwmon("VDD_3P3", GSC_HWMON_VDD_3P3, 3);
90 read_hwmon("VDD_HIGH", GSC_HWMON_VDD_HIGH, 3);
91 read_hwmon("VDD_DDR", GSC_HWMON_VDD_DDR, 3);
92 read_hwmon("VDD_5P0", GSC_HWMON_VDD_5P0, 3);
93 read_hwmon("VDD_2P5", GSC_HWMON_VDD_2P5, 3);
94 read_hwmon("VDD_1P8", GSC_HWMON_VDD_1P8, 3);
Tim Harvey552c3582014-03-06 07:46:30 -080095 switch (model[3]) {
96 case '1': /* GW51xx */
Tim Harveybd804512015-04-08 12:54:50 -070097 read_hwmon("VDD_CORE", GSC_HWMON_VDD_CORE, 3);
98 read_hwmon("VDD_SOC", GSC_HWMON_VDD_SOC, 3);
Tim Harvey552c3582014-03-06 07:46:30 -080099 break;
100 case '2': /* GW52xx */
101 case '3': /* GW53xx */
Tim Harveybd804512015-04-08 12:54:50 -0700102 read_hwmon("VDD_CORE", GSC_HWMON_VDD_CORE, 3);
103 read_hwmon("VDD_SOC", GSC_HWMON_VDD_SOC, 3);
104 read_hwmon("VDD_1P0", GSC_HWMON_VDD_1P0, 3);
Tim Harvey552c3582014-03-06 07:46:30 -0800105 break;
106 case '4': /* GW54xx */
Tim Harveybd804512015-04-08 12:54:50 -0700107 read_hwmon("VDD_CORE", GSC_HWMON_VDD_CORE, 3);
108 read_hwmon("VDD_SOC", GSC_HWMON_VDD_SOC, 3);
109 read_hwmon("VDD_1P0", GSC_HWMON_VDD_1P0, 3);
Tim Harvey552c3582014-03-06 07:46:30 -0800110 break;
Tim Harvey50581832014-08-20 23:35:14 -0700111 case '5': /* GW55xx */
Tim Harveybd804512015-04-08 12:54:50 -0700112 read_hwmon("VDD_CORE", GSC_HWMON_VDD_CORE, 3);
113 read_hwmon("VDD_SOC", GSC_HWMON_VDD_SOC, 3);
Tim Harvey50581832014-08-20 23:35:14 -0700114 break;
Tim Harvey552c3582014-03-06 07:46:30 -0800115 }
116 return 0;
117}
118
119U_BOOT_CMD(gsc, 1, 1, do_gsc,
120 "GSC test",
121 ""
122);
123
124#endif /* CONFIG_CMD_GSC */