blob: 4a7824065d4704ffa1bd690a8b9bb5c128ec18a6 [file] [log] [blame]
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +01001/*
2 * (C) Copyright 2008 Dmitry Rakhchev, EmCraft Systems, rda@emcraft.com
3 *
4 * Developed for DENX Software Engineering GmbH
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <post.h>
26#include <common.h>
27
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010028/*
29 * SYSMON test
30 *
31 * This test performs the system hardware monitoring.
32 * The test passes when all the following voltages and temperatures
33 * are within allowed ranges:
34 *
Sascha Laue6aee00f2008-04-01 10:10:18 +020035 * Temperature -40 .. +90 C
36 * +5V +4.50 .. +5.50 V
37 * +5V standby +3.50 .. +5.50 V
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010038 *
39 * LCD backlight is not enabled if temperature values are not within
40 * allowed ranges (-30 .. + 80). The brightness of backlite can be
41 * controlled by setting "brightness" enviroment variable. Default value is 50%
42 *
43 * See the list of all parameters in the sysmon_table below
44 */
45
46#include <post.h>
47#include <watchdog.h>
48#include <i2c.h>
49
Yuri Tikhonov0f855a12008-03-18 13:27:57 +010050#if defined(CONFIG_VIDEO)
51#include <mb862xx.h>
52#endif
53
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054#if CONFIG_POST & CONFIG_SYS_POST_SYSMON
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010055
56DECLARE_GLOBAL_DATA_PTR;
57
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010058/* from dspic.c */
Sascha Lauef14ae412010-08-19 09:38:56 +020059extern int dspic_read(ushort reg, ushort *data);
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010060
Sascha Laue6aee00f2008-04-01 10:10:18 +020061#define REG_TEMPERATURE 0x12BC
62#define REG_VOLTAGE_5V 0x12CA
63#define REG_VOLTAGE_5V_STANDBY 0x12C6
64
65#define TEMPERATURE_MIN (-40) /* degr. C */
66#define TEMPERATURE_MAX (+90) /* degr. C */
67#define TEMPERATURE_DISPLAY_MIN (-35) /* degr. C */
Wolfgang Denk6adf61d2008-05-04 12:10:33 +020068#define TEMPERATURE_DISPLAY_MAX (+85) /* degr. C */
Sascha Laue6aee00f2008-04-01 10:10:18 +020069
70#define VOLTAGE_5V_MIN (+4500) /* mV */
71#define VOLTAGE_5V_MAX (+5500) /* mV */
72
73#define VOLTAGE_5V_STANDBY_MIN (+3500) /* mV */
74#define VOLTAGE_5V_STANDBY_MAX (+5500) /* mV */
75
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010076typedef struct sysmon_s sysmon_t;
77typedef struct sysmon_table_s sysmon_table_t;
78
Sascha Lauef14ae412010-08-19 09:38:56 +020079static void sysmon_dspic_init(sysmon_t *this);
80static int sysmon_dspic_read(sysmon_t *this, uint addr, int *val);
81static int sysmon_dspic_read_sgn(sysmon_t *this, uint addr, int *val);
82static void sysmon_backlight_disable(sysmon_table_t *this);
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010083
Sascha Lauef14ae412010-08-19 09:38:56 +020084struct sysmon_s {
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010085 uchar chip;
86 void (*init)(sysmon_t *);
Sascha Lauef14ae412010-08-19 09:38:56 +020087 int (*read)(sysmon_t *, uint, int *);
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010088};
89
Sascha Lauef14ae412010-08-19 09:38:56 +020090static sysmon_t sysmon_dspic = {
91 CONFIG_SYS_I2C_DSPIC_IO_ADDR,
92 sysmon_dspic_init,
93 sysmon_dspic_read
94};
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010095
Sascha Lauef14ae412010-08-19 09:38:56 +020096static sysmon_t sysmon_dspic_sgn = {
97 CONFIG_SYS_I2C_DSPIC_IO_ADDR,
98 sysmon_dspic_init,
99 sysmon_dspic_read_sgn
100};
101
102static sysmon_t *sysmon_list[] = {
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100103 &sysmon_dspic,
104 NULL
105};
106
Sascha Lauef14ae412010-08-19 09:38:56 +0200107struct sysmon_table_s {
108 char *name;
109 char *unit_name;
110 sysmon_t *sysmon;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100111 void (*exec_before)(sysmon_table_t *);
112 void (*exec_after)(sysmon_table_t *);
113
114 int unit_precision;
115 int unit_div;
116 int unit_min;
117 int unit_max;
118 uint val_mask;
119 uint val_min;
120 uint val_max;
121 int val_valid;
122 uint val_min_alt;
123 uint val_max_alt;
124 int val_valid_alt;
125 uint addr;
126};
127
Sascha Lauef14ae412010-08-19 09:38:56 +0200128static sysmon_table_t sysmon_table[] = {
Sascha Laue6aee00f2008-04-01 10:10:18 +0200129 {
Sascha Lauef14ae412010-08-19 09:38:56 +0200130 "Temperature", " C", &sysmon_dspic, NULL, sysmon_backlight_disable,
131 1, 1, -32768, 32767, 0xFFFF,
132 0x8000 + TEMPERATURE_MIN, 0x8000 + TEMPERATURE_MAX, 0,
133 0x8000 + TEMPERATURE_DISPLAY_MIN, 0x8000 + TEMPERATURE_DISPLAY_MAX, 0,
134 REG_TEMPERATURE,
Sascha Laue6aee00f2008-04-01 10:10:18 +0200135 },
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100136
Sascha Laue6aee00f2008-04-01 10:10:18 +0200137 {
Sascha Lauef14ae412010-08-19 09:38:56 +0200138 "+ 5 V", "V", &sysmon_dspic, NULL, NULL,
139 100, 1000, -0x8000, 0x7FFF, 0xFFFF,
140 0x8000 + VOLTAGE_5V_MIN, 0x8000 + VOLTAGE_5V_MAX, 0,
141 0x8000 + VOLTAGE_5V_MIN, 0x8000 + VOLTAGE_5V_MAX, 0,
142 REG_VOLTAGE_5V,
Sascha Laue6aee00f2008-04-01 10:10:18 +0200143 },
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100144
Sascha Laue6aee00f2008-04-01 10:10:18 +0200145 {
Sascha Lauef14ae412010-08-19 09:38:56 +0200146 "+ 5 V standby", "V", &sysmon_dspic, NULL, NULL,
147 100, 1000, -0x8000, 0x7FFF, 0xFFFF,
148 0x8000 + VOLTAGE_5V_STANDBY_MIN, 0x8000 + VOLTAGE_5V_STANDBY_MAX, 0,
149 0x8000 + VOLTAGE_5V_STANDBY_MIN, 0x8000 + VOLTAGE_5V_STANDBY_MAX, 0,
150 REG_VOLTAGE_5V_STANDBY,
151 },
152
153 {
154 "Temperature", "°C", &sysmon_dspic_sgn, NULL, sysmon_backlight_disable,
155 1, 1, -32768, 32767, 0xFFFF,
156 0x8000 + TEMPERATURE_MIN, 0x8000 + TEMPERATURE_MAX, 0,
157 0x8000 + TEMPERATURE_DISPLAY_MIN, 0x8000 + TEMPERATURE_DISPLAY_MAX, 0,
158 REG_TEMPERATURE,
Sascha Laue6aee00f2008-04-01 10:10:18 +0200159 },
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100160};
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100161
Sascha Lauef14ae412010-08-19 09:38:56 +0200162int sysmon_init_f(void)
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100163{
Sascha Lauef14ae412010-08-19 09:38:56 +0200164 sysmon_t **l;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100165
166 for (l = sysmon_list; *l; l++)
167 (*l)->init(*l);
168
169 return 0;
170}
171
Sascha Lauef14ae412010-08-19 09:38:56 +0200172void sysmon_reloc(void)
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100173{
Peter Tyser80f73b92009-09-21 11:20:34 -0500174 /* Do nothing for now, sysmon_reloc() is required by the sysmon post */
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100175}
176
Sascha Lauef14ae412010-08-19 09:38:56 +0200177static char *sysmon_unit_value(sysmon_table_t *s, uint val)
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100178{
179 static char buf[32];
180 char *p, sign;
181 int decimal, frac;
182 int unit_val;
183
Wolfgang Denk7ed40112008-04-26 00:34:42 +0200184 unit_val = s->unit_min + (s->unit_max - s->unit_min) * val / s->val_mask;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100185
186 if (val == -1)
187 return "I/O ERROR";
188
189 if (unit_val < 0) {
190 sign = '-';
191 unit_val = -unit_val;
Sascha Lauef14ae412010-08-19 09:38:56 +0200192 } else {
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100193 sign = '+';
Sascha Lauef14ae412010-08-19 09:38:56 +0200194 }
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100195
196 p = buf + sprintf(buf, "%c%2d", sign, unit_val / s->unit_div);
197
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100198 frac = unit_val % s->unit_div;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100199 frac /= (s->unit_div / s->unit_precision);
200
201 decimal = s->unit_precision;
202
203 if (decimal != 1)
204 *p++ = '.';
205 for (decimal /= 10; decimal != 0; decimal /= 10)
206 *p++ = '0' + (frac / decimal) % 10;
207 strcpy(p, s->unit_name);
208
209 return buf;
210}
211
Sascha Lauef14ae412010-08-19 09:38:56 +0200212static void sysmon_dspic_init(sysmon_t *this)
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100213{
214}
215
Sascha Lauef14ae412010-08-19 09:38:56 +0200216static int sysmon_dspic_read(sysmon_t *this, uint addr, int *val)
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100217{
Sascha Lauef14ae412010-08-19 09:38:56 +0200218 ushort data;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100219
Sascha Lauef14ae412010-08-19 09:38:56 +0200220 if (dspic_read(addr, &data) == 0){
221 /* To fit into the table range we should add 0x8000 */
222 *val = data + 0x8000;
223 return 0;
224 }
225
226 return -1;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100227}
228
Sascha Lauef14ae412010-08-19 09:38:56 +0200229static int sysmon_dspic_read_sgn(sysmon_t *this, uint addr, int *val)
230{
231 ushort data;
232
233 if (dspic_read(addr, &data) == 0){
234 /* To fit into the table range we should add 0x8000 */
235 *val = (signed short)data + 0x8000;
236 return 0;
237 }
238
239 return -1;
240}
241
242static void sysmon_backlight_disable(sysmon_table_t *this)
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100243{
Yuri Tikhonov0f855a12008-03-18 13:27:57 +0100244#if defined(CONFIG_VIDEO)
245 board_backlight_switch(this->val_valid_alt);
246#endif
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100247}
248
Sascha Lauef14ae412010-08-19 09:38:56 +0200249int sysmon_post_test(int flags)
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100250{
251 int res = 0;
252 sysmon_table_t * t;
253 int val;
254
Sascha Lauef14ae412010-08-19 09:38:56 +0200255 for (t = sysmon_table; t < sysmon_table + ARRAY_SIZE(sysmon_table); t++) {
256 t->val_valid = 1;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100257 if (t->exec_before)
258 t->exec_before(t);
259
Sascha Lauef14ae412010-08-19 09:38:56 +0200260 if (t->sysmon->read(t->sysmon, t->addr, &val) != 0) {
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100261 t->val_valid = 0;
262 t->val_valid_alt = 0;
Sascha Lauef14ae412010-08-19 09:38:56 +0200263 post_log(": read failed\n");
264 res = 1;
265 break;
266 }
267
268 if (t->val_valid != 0) {
269 t->val_valid = val >= t->val_min && val <= t->val_max;
270 t->val_valid_alt = val >= t->val_min_alt && val <= t->val_max_alt;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100271 }
272
273 if (t->exec_after)
274 t->exec_after(t);
275
Sascha Lauef14ae412010-08-19 09:38:56 +0200276 if ((!t->val_valid) || (flags)) {
277 post_log("\n\t%-17s = %-10s ", t->name, sysmon_unit_value(t, val));
278 post_log("allowed range");
279 post_log(" %-8s ..", sysmon_unit_value(t, t->val_min));
280 post_log(" %-8s", sysmon_unit_value(t, t->val_max));
281 post_log(" %s", t->val_valid ? "OK" : "FAIL");
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100282 }
283
Sascha Lauef14ae412010-08-19 09:38:56 +0200284 if (!t->val_valid) {
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100285 res = 1;
Sascha Lauef14ae412010-08-19 09:38:56 +0200286 break;
287 }
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100288 }
Sascha Lauef14ae412010-08-19 09:38:56 +0200289 post_log("\n");
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100290
291 return res;
292}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200293#endif /* CONFIG_POST & CONFIG_SYS_POST_SYSMON */