blob: f2e750f2f1642f0fa71a6be1edac10eb48578f75 [file] [log] [blame]
wdenk38635852002-08-27 05:55:31 +00001/*
2 * (C) Copyright 2001
3 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk38635852002-08-27 05:55:31 +00006 */
7
8#include <common.h>
9#include <config.h>
10#include <command.h>
wdenk38635852002-08-27 05:55:31 +000011
wdenk38635852002-08-27 05:55:31 +000012#include <dtt.h>
Stefan Roese0dc018e2007-02-20 10:51:26 +010013#include <i2c.h>
Akshay Saraswatbc5478b2013-02-25 01:13:04 +000014#include <tmu.h>
wdenk38635852002-08-27 05:55:31 +000015
Akshay Saraswatbc5478b2013-02-25 01:13:04 +000016#if defined CONFIG_DTT_SENSORS
Heiko Schocher780f13a2011-08-01 04:01:43 +000017static unsigned long sensor_initialized;
18
Dirk Eibachb88e7b32011-10-13 23:23:12 +000019static 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
35void 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}
Akshay Saraswatbc5478b2013-02-25 01:13:04 +000048#endif
Dirk Eibachb88e7b32011-10-13 23:23:12 +000049
Akshay Saraswatbc5478b2013-02-25 01:13:04 +000050int dtt_i2c(void)
wdenk38635852002-08-27 05:55:31 +000051{
Akshay Saraswatbc5478b2013-02-25 01:13:04 +000052#if defined CONFIG_DTT_SENSORS
wdenk38635852002-08-27 05:55:31 +000053 int i;
54 unsigned char sensors[] = CONFIG_DTT_SENSORS;
Stefan Roese0dc018e2007-02-20 10:51:26 +010055 int old_bus;
56
Heiko Schocher780f13a2011-08-01 04:01:43 +000057 /* Force a compilation error, if there are more then 32 sensors */
58 BUILD_BUG_ON(sizeof(sensors) > 32);
Stefan Roese0dc018e2007-02-20 10:51:26 +010059 /* switch to correct I2C bus */
Heiko Schocher3f4978c2012-01-16 21:12:24 +000060#ifdef CONFIG_SYS_I2C
61 old_bus = i2c_get_bus_num();
62 i2c_set_bus_num(CONFIG_SYS_DTT_BUS_NUM);
63#else
Stefan Roese0dc018e2007-02-20 10:51:26 +010064 old_bus = I2C_GET_BUS();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 I2C_SET_BUS(CONFIG_SYS_DTT_BUS_NUM);
Heiko Schocher3f4978c2012-01-16 21:12:24 +000066#endif
wdenk38635852002-08-27 05:55:31 +000067
Dirk Eibachb88e7b32011-10-13 23:23:12 +000068 _initialize_dtt();
69
wdenk38635852002-08-27 05:55:31 +000070 /*
71 * Loop through sensors, read
72 * temperature, and output it.
73 */
Dirk Eibachb88e7b32011-10-13 23:23:12 +000074 for (i = 0; i < sizeof(sensors); i++)
Heiko Schocher780f13a2011-08-01 04:01:43 +000075 printf("DTT%d: %i C\n", i + 1, dtt_get_temp(sensors[i]));
Stefan Roese0dc018e2007-02-20 10:51:26 +010076
77 /* switch back to original I2C bus */
Heiko Schocher3f4978c2012-01-16 21:12:24 +000078#ifdef CONFIG_SYS_I2C
79 i2c_set_bus_num(old_bus);
80#else
Stefan Roese0dc018e2007-02-20 10:51:26 +010081 I2C_SET_BUS(old_bus);
Akshay Saraswatbc5478b2013-02-25 01:13:04 +000082#endif
Heiko Schocher3f4978c2012-01-16 21:12:24 +000083#endif
wdenk38635852002-08-27 05:55:31 +000084
85 return 0;
Akshay Saraswatbc5478b2013-02-25 01:13:04 +000086}
87
88int dtt_tmu(void)
89{
90#if defined CONFIG_TMU_CMD_DTT
91 int cur_temp;
92
93 /* Sense and return latest thermal info */
94 if (tmu_monitor(&cur_temp) == TMU_STATUS_INIT) {
95 puts("TMU is in unknown state, temperature is invalid\n");
96 return -1;
97 }
98 printf("Current temperature: %u degrees Celsius\n", cur_temp);
99#endif
100 return 0;
101}
102
103int do_dtt(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
104{
105 int err = 0;
106
107 err |= dtt_i2c();
108 err |= dtt_tmu();
109
110 return err;
wdenk38635852002-08-27 05:55:31 +0000111} /* do_dtt() */
112
wdenk8bde7f72003-06-27 21:31:46 +0000113/***************************************************/
114
wdenk0d498392003-07-01 21:06:45 +0000115U_BOOT_CMD(
116 dtt, 1, 1, do_dtt,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200117 "Read temperature from Digital Thermometer and Thermostat",
118 ""
wdenk8bde7f72003-06-27 21:31:46 +0000119);