blob: f61d598244ccb025f1bbe2f7a86812cc97872d3f [file] [log] [blame]
wdenk4532cb62003-04-27 22:52:51 +00001/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <post.h>
25#include <common.h>
26
27#ifdef CONFIG_POST
28
29/*
30 * SYSMON test
31 *
32 * This test performs the system hardware monitoring.
33 * The test passes when all the following voltages and temperatures
34 * are within allowed ranges:
wdenk8bde7f72003-06-27 21:31:46 +000035 *
wdenk4532cb62003-04-27 22:52:51 +000036 * Board temperature
37 * Front temperature
38 * +3.3V CPU logic
39 * +5V logic
40 * +12V PCMCIA
41 * +12V CCFL
42 * +5V standby
wdenk8bde7f72003-06-27 21:31:46 +000043 *
wdenk4532cb62003-04-27 22:52:51 +000044 * CCFL is not enabled if temperature values are not within allowed ranges
45 *
46 * See the list off all parameters in the sysmon_table below
47 */
48
49#include <post.h>
50#include <watchdog.h>
51#include <i2c.h>
52
wdenk4532cb62003-04-27 22:52:51 +000053#if CONFIG_POST & CFG_POST_SYSMON
54
Wolfgang Denkd87080b2006-03-31 18:32:53 +020055DECLARE_GLOBAL_DATA_PTR;
56
wdenk45219c42003-05-12 21:50:16 +000057static int sysmon_temp_invalid = 0;
58
wdenk4532cb62003-04-27 22:52:51 +000059/* #define DEBUG */
60
61#define RELOC(x) if (x != NULL) x = (void *) ((ulong) (x) + gd->reloc_off)
62
63typedef struct sysmon_s sysmon_t;
64typedef struct sysmon_table_s sysmon_table_t;
65
66static void sysmon_lm87_init (sysmon_t * this);
67static void sysmon_pic_init (sysmon_t * this);
68static uint sysmon_i2c_read (sysmon_t * this, uint addr);
69static uint sysmon_i2c_read_sgn (sysmon_t * this, uint addr);
70static void sysmon_ccfl_disable (sysmon_table_t * this);
71static void sysmon_ccfl_enable (sysmon_table_t * this);
72
73struct sysmon_s
74{
75 uchar chip;
76 void (*init)(sysmon_t *);
77 uint (*read)(sysmon_t *, uint);
78};
79
80static sysmon_t sysmon_lm87 =
81 {CFG_I2C_SYSMON_ADDR, sysmon_lm87_init, sysmon_i2c_read};
82static sysmon_t sysmon_lm87_sgn =
83 {CFG_I2C_SYSMON_ADDR, sysmon_lm87_init, sysmon_i2c_read_sgn};
84static sysmon_t sysmon_pic =
85 {CFG_I2C_PICIO_ADDR, sysmon_pic_init, sysmon_i2c_read};
86
87static sysmon_t * sysmon_list[] =
88{
89 &sysmon_lm87,
90 &sysmon_lm87_sgn,
91 &sysmon_pic,
92 NULL
93};
94
95struct sysmon_table_s
96{
97 char * name;
98 char * unit_name;
99 sysmon_t * sysmon;
100 void (*exec_before)(sysmon_table_t *);
101 void (*exec_after)(sysmon_table_t *);
102
wdenk8564acf2003-07-14 22:13:32 +0000103 int unit_precision;
wdenk4532cb62003-04-27 22:52:51 +0000104 int unit_div;
105 int unit_min;
106 int unit_max;
107 uint val_mask;
108 uint val_min;
109 uint val_max;
110 int val_valid;
wdenk8564acf2003-07-14 22:13:32 +0000111 uint val_min_alt;
112 uint val_max_alt;
113 int val_valid_alt;
wdenk4532cb62003-04-27 22:52:51 +0000114 uint addr;
115};
116
117static sysmon_table_t sysmon_table[] =
118{
119 {"Board temperature", " C", &sysmon_lm87_sgn, NULL, sysmon_ccfl_disable,
wdenk7d7ce412004-03-17 01:13:07 +0000120 1, 1, -128, 127, 0xFF, 0x58, 0xD5, 0, 0x6C, 0xC6, 0, 0x27},
wdenk4532cb62003-04-27 22:52:51 +0000121
122 {"Front temperature", " C", &sysmon_lm87, NULL, sysmon_ccfl_disable,
wdenk7d7ce412004-03-17 01:13:07 +0000123 1, 100, -27316, 8984, 0xFF, 0xA4, 0xFC, 0, 0xB2, 0xF1, 0, 0x29},
wdenk4532cb62003-04-27 22:52:51 +0000124
125 {"+3.3V CPU logic", "V", &sysmon_lm87, NULL, NULL,
wdenk8564acf2003-07-14 22:13:32 +0000126 100, 1000, 0, 4386, 0xFF, 0xB6, 0xC9, 0, 0xB6, 0xC9, 0, 0x22},
wdenk4532cb62003-04-27 22:52:51 +0000127
wdenk8564acf2003-07-14 22:13:32 +0000128 {"+ 5 V logic", "V", &sysmon_lm87, NULL, NULL,
129 100, 1000, 0, 6630, 0xFF, 0xB6, 0xCA, 0, 0xB6, 0xCA, 0, 0x23},
wdenk4532cb62003-04-27 22:52:51 +0000130
wdenk8564acf2003-07-14 22:13:32 +0000131 {"+12 V PCMCIA", "V", &sysmon_lm87, NULL, NULL,
132 100, 1000, 0, 15460, 0xFF, 0xBC, 0xD0, 0, 0xBC, 0xD0, 0, 0x21},
wdenk4532cb62003-04-27 22:52:51 +0000133
wdenk8564acf2003-07-14 22:13:32 +0000134 {"+12 V CCFL", "V", &sysmon_lm87, NULL, sysmon_ccfl_enable,
135 100, 1000, 0, 15900, 0xFF, 0xB6, 0xCA, 0, 0xB6, 0xCA, 0, 0x24},
wdenk4532cb62003-04-27 22:52:51 +0000136
wdenk8564acf2003-07-14 22:13:32 +0000137 {"+ 5 V standby", "V", &sysmon_pic, NULL, NULL,
138 100, 1000, 0, 6040, 0xFF, 0xC8, 0xDE, 0, 0xC8, 0xDE, 0, 0x7C},
wdenk4532cb62003-04-27 22:52:51 +0000139};
140static int sysmon_table_size = sizeof(sysmon_table) / sizeof(sysmon_table[0]);
141
142static int conversion_done = 0;
143
144
145int sysmon_init_f (void)
146{
147 sysmon_t ** l;
148 ulong reg;
149
150 /* Power on CCFL, PCMCIA */
151 reg = pic_read (0x60);
152 reg |= 0x09;
153 pic_write (0x60, reg);
154
wdenk7d7ce412004-03-17 01:13:07 +0000155 for (l = sysmon_list; *l; l++) {
wdenk4532cb62003-04-27 22:52:51 +0000156 (*l)->init(*l);
157 }
wdenk8bde7f72003-06-27 21:31:46 +0000158
wdenk4532cb62003-04-27 22:52:51 +0000159 return 0;
160}
161
162void sysmon_reloc (void)
163{
wdenk4532cb62003-04-27 22:52:51 +0000164 sysmon_t ** l;
165 sysmon_table_t * t;
166
wdenk7d7ce412004-03-17 01:13:07 +0000167 for (l = sysmon_list; *l; l++) {
wdenk4532cb62003-04-27 22:52:51 +0000168 RELOC(*l);
169 RELOC((*l)->init);
170 RELOC((*l)->read);
171 }
172
wdenk7d7ce412004-03-17 01:13:07 +0000173 for (t = sysmon_table; t < sysmon_table + sysmon_table_size; t ++) {
wdenk4532cb62003-04-27 22:52:51 +0000174 RELOC(t->exec_before);
175 RELOC(t->exec_after);
176 RELOC(t->sysmon);
177 }
178}
179
wdenk8564acf2003-07-14 22:13:32 +0000180static char *sysmon_unit_value (sysmon_table_t *s, uint val)
wdenk4532cb62003-04-27 22:52:51 +0000181{
182 static char buf[32];
183 int unit_val =
184 s->unit_min + (s->unit_max - s->unit_min) * val / s->val_mask;
wdenk8564acf2003-07-14 22:13:32 +0000185 char *p, sign;
wdenk4532cb62003-04-27 22:52:51 +0000186 int dec, frac;
187
Wolfgang Denk15f36a52005-07-28 10:42:26 +0200188 if (val == -1) {
189 return "I/O ERROR";
190 }
191
wdenk8564acf2003-07-14 22:13:32 +0000192 if (unit_val < 0) {
193 sign = '-';
194 unit_val = -unit_val;
195 } else {
196 sign = '+';
197 }
wdenk8bde7f72003-06-27 21:31:46 +0000198
wdenk8564acf2003-07-14 22:13:32 +0000199 p = buf + sprintf(buf, "%c%2d", sign, unit_val / s->unit_div);
wdenk8bde7f72003-06-27 21:31:46 +0000200
wdenk8564acf2003-07-14 22:13:32 +0000201
202 frac = unit_val % s->unit_div;
203
204 frac /= (s->unit_div / s->unit_precision);
205
206 dec = s->unit_precision;
wdenk8bde7f72003-06-27 21:31:46 +0000207
wdenk7d7ce412004-03-17 01:13:07 +0000208 if (dec != 1) {
wdenk4532cb62003-04-27 22:52:51 +0000209 *p++ = '.';
210 }
wdenk7d7ce412004-03-17 01:13:07 +0000211 for (dec /= 10; dec != 0; dec /= 10) {
wdenk8564acf2003-07-14 22:13:32 +0000212 *p++ = '0' + (frac / dec) % 10;
wdenk4532cb62003-04-27 22:52:51 +0000213 }
wdenk4532cb62003-04-27 22:52:51 +0000214 strcpy(p, s->unit_name);
wdenk8bde7f72003-06-27 21:31:46 +0000215
wdenk4532cb62003-04-27 22:52:51 +0000216 return buf;
217}
218
219static void sysmon_lm87_init (sysmon_t * this)
220{
221 uchar val;
222
223 /* Detect LM87 chip */
224 if (i2c_read(this->chip, 0x40, 1, &val, 1) || (val & 0x80) != 0 ||
wdenk7d7ce412004-03-17 01:13:07 +0000225 i2c_read(this->chip, 0x3E, 1, &val, 1) || val != 0x02) {
wdenk4532cb62003-04-27 22:52:51 +0000226 printf("Error: LM87 not found at 0x%02X\n", this->chip);
227 return;
228 }
wdenk8bde7f72003-06-27 21:31:46 +0000229
wdenk4532cb62003-04-27 22:52:51 +0000230 /* Configure pins 5,6 as AIN */
231 val = 0x03;
wdenk7d7ce412004-03-17 01:13:07 +0000232 if (i2c_write(this->chip, 0x16, 1, &val, 1)) {
wdenk4532cb62003-04-27 22:52:51 +0000233 printf("Error: can't write LM87 config register\n");
234 return;
235 }
236
237 /* Start monitoring */
238 val = 0x01;
wdenk7d7ce412004-03-17 01:13:07 +0000239 if (i2c_write(this->chip, 0x40, 1, &val, 1)) {
wdenk4532cb62003-04-27 22:52:51 +0000240 printf("Error: can't write LM87 config register\n");
241 return;
242 }
243}
244
245static void sysmon_pic_init (sysmon_t * this)
246{
247}
248
249static uint sysmon_i2c_read (sysmon_t * this, uint addr)
250{
251 uchar val;
252 uint res = i2c_read(this->chip, addr, 1, &val, 1);
253
254 return res == 0 ? val : -1;
255}
256
257static uint sysmon_i2c_read_sgn (sysmon_t * this, uint addr)
258{
259 uchar val;
260 return i2c_read(this->chip, addr, 1, &val, 1) == 0 ?
261 128 + (signed char)val : -1;
262}
263
264static void sysmon_ccfl_disable (sysmon_table_t * this)
265{
wdenk7d7ce412004-03-17 01:13:07 +0000266 if (!this->val_valid_alt) {
wdenk4532cb62003-04-27 22:52:51 +0000267 sysmon_temp_invalid = 1;
268 }
269}
270
271static void sysmon_ccfl_enable (sysmon_table_t * this)
272{
273 ulong reg;
274
wdenk7d7ce412004-03-17 01:13:07 +0000275 if (!sysmon_temp_invalid) {
wdenk4532cb62003-04-27 22:52:51 +0000276 reg = pic_read (0x60);
wdenk7d7ce412004-03-17 01:13:07 +0000277 reg |= 0x06;
wdenk4532cb62003-04-27 22:52:51 +0000278 pic_write (0x60, reg);
279 }
280}
281
282int sysmon_post_test (int flags)
283{
wdenk4532cb62003-04-27 22:52:51 +0000284 int res = 0;
285 sysmon_table_t * t;
286 uint val;
287
288 /*
289 * The A/D conversion on the LM87 sensor takes 300 ms.
290 */
wdenk7d7ce412004-03-17 01:13:07 +0000291 if (! conversion_done) {
wdenk4532cb62003-04-27 22:52:51 +0000292 while (post_time_ms(gd->post_init_f_time) < 300) WATCHDOG_RESET ();
293 conversion_done = 1;
294 }
295
wdenk7d7ce412004-03-17 01:13:07 +0000296 for (t = sysmon_table; t < sysmon_table + sysmon_table_size; t ++) {
297 if (t->exec_before) {
wdenk4532cb62003-04-27 22:52:51 +0000298 t->exec_before(t);
299 }
300
301 val = t->sysmon->read(t->sysmon, t->addr);
Wolfgang Denk15f36a52005-07-28 10:42:26 +0200302 if (val != -1) {
303 t->val_valid = val >= t->val_min && val <= t->val_max;
304 t->val_valid_alt = val >= t->val_min_alt && val <= t->val_max_alt;
305 } else {
306 t->val_valid = 0;
307 t->val_valid_alt = 0;
308 }
wdenk4532cb62003-04-27 22:52:51 +0000309
wdenk7d7ce412004-03-17 01:13:07 +0000310 if (t->exec_after) {
wdenk4532cb62003-04-27 22:52:51 +0000311 t->exec_after(t);
312 }
313
wdenk7d7ce412004-03-17 01:13:07 +0000314 if ((!t->val_valid) || (flags & POST_MANUAL)) {
wdenk4532cb62003-04-27 22:52:51 +0000315 printf("%-17s = %-10s ", t->name, sysmon_unit_value(t, val));
316 printf("allowed range");
317 printf(" %-8s ..", sysmon_unit_value(t, t->val_min));
318 printf(" %-8s", sysmon_unit_value(t, t->val_max));
319 printf(" %s\n", t->val_valid ? "OK" : "FAIL");
320 }
321
wdenk7d7ce412004-03-17 01:13:07 +0000322 if (!t->val_valid) {
wdenk4532cb62003-04-27 22:52:51 +0000323 res = -1;
324 }
325 }
326
327 return res;
328}
329
330#endif /* CONFIG_POST & CFG_POST_SYSMON */
331#endif /* CONFIG_POST */