]> git.ipfire.org Git - people/ms/u-boot.git/blob - common/cmd_dtt.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / common / cmd_dtt.c
1 /*
2 * (C) Copyright 2001
3 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8 #include <common.h>
9 #include <config.h>
10 #include <command.h>
11
12 #include <dtt.h>
13 #include <i2c.h>
14 #include <tmu.h>
15
16 #if defined CONFIG_DTT_SENSORS
17 static unsigned long sensor_initialized;
18
19 static void _initialize_dtt(void)
20 {
21 int i;
22 unsigned char sensors[] = CONFIG_DTT_SENSORS;
23
24 for (i = 0; i < sizeof(sensors); i++) {
25 if ((sensor_initialized & (1 << i)) == 0) {
26 if (dtt_init_one(sensors[i]) != 0) {
27 printf("DTT%d: Failed init!\n", i);
28 continue;
29 }
30 sensor_initialized |= (1 << i);
31 }
32 }
33 }
34
35 void dtt_init(void)
36 {
37 int old_bus;
38
39 /* switch to correct I2C bus */
40 old_bus = I2C_GET_BUS();
41 I2C_SET_BUS(CONFIG_SYS_DTT_BUS_NUM);
42
43 _initialize_dtt();
44
45 /* switch back to original I2C bus */
46 I2C_SET_BUS(old_bus);
47 }
48 #endif
49
50 int dtt_i2c(void)
51 {
52 #if defined CONFIG_DTT_SENSORS
53 int i;
54 unsigned char sensors[] = CONFIG_DTT_SENSORS;
55 int old_bus;
56
57 /* Force a compilation error, if there are more then 32 sensors */
58 BUILD_BUG_ON(sizeof(sensors) > 32);
59 /* switch to correct I2C bus */
60 old_bus = I2C_GET_BUS();
61 I2C_SET_BUS(CONFIG_SYS_DTT_BUS_NUM);
62
63 _initialize_dtt();
64
65 /*
66 * Loop through sensors, read
67 * temperature, and output it.
68 */
69 for (i = 0; i < sizeof(sensors); i++)
70 printf("DTT%d: %i C\n", i + 1, dtt_get_temp(sensors[i]));
71
72 /* switch back to original I2C bus */
73 I2C_SET_BUS(old_bus);
74 #endif
75
76 return 0;
77 }
78
79 int dtt_tmu(void)
80 {
81 #if defined CONFIG_TMU_CMD_DTT
82 int cur_temp;
83
84 /* Sense and return latest thermal info */
85 if (tmu_monitor(&cur_temp) == TMU_STATUS_INIT) {
86 puts("TMU is in unknown state, temperature is invalid\n");
87 return -1;
88 }
89 printf("Current temperature: %u degrees Celsius\n", cur_temp);
90 #endif
91 return 0;
92 }
93
94 int do_dtt(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
95 {
96 int err = 0;
97
98 err |= dtt_i2c();
99 err |= dtt_tmu();
100
101 return err;
102 } /* do_dtt() */
103
104 /***************************************************/
105
106 U_BOOT_CMD(
107 dtt, 1, 1, do_dtt,
108 "Read temperature from Digital Thermometer and Thermostat",
109 ""
110 );