blob: 0eae4c1515d5b3a1ce1089b14bb881c2541222c9 [file] [log] [blame]
Yuri Tikhonovc147d482008-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
28#ifdef CONFIG_POST
29
30/*
31 * SYSMON test
32 *
33 * This test performs the system hardware monitoring.
34 * The test passes when all the following voltages and temperatures
35 * are within allowed ranges:
36 *
37 * Temperature -40 .. +85 C
38 * +5V +4.75 .. +5.25 V
39 * +5V standby +4.75 .. +5.25 V
40 *
41 * LCD backlight is not enabled if temperature values are not within
42 * allowed ranges (-30 .. + 80). The brightness of backlite can be
43 * controlled by setting "brightness" enviroment variable. Default value is 50%
44 *
45 * See the list of all parameters in the sysmon_table below
46 */
47
48#include <post.h>
49#include <watchdog.h>
50#include <i2c.h>
51
52#if CONFIG_POST & CFG_POST_SYSMON
53
54DECLARE_GLOBAL_DATA_PTR;
55
56#define DEFAULT_BRIGHTNESS 50
57
58/* from dspic.c */
59extern int dspic_read(ushort reg);
60/* from fpga.c */
61extern void fpga_backlight_enable(int v);
62
63static int sysmon_temp_invalid;
64
65#define RELOC(x) if (x != NULL) x = (void *) ((ulong) (x) + gd->reloc_off)
66
67typedef struct sysmon_s sysmon_t;
68typedef struct sysmon_table_s sysmon_table_t;
69
70static void sysmon_dspic_init (sysmon_t * this);
71static int sysmon_dspic_read (sysmon_t * this, uint addr);
72static void sysmon_backlight_disable (sysmon_table_t * this);
73static void sysmon_backlight_enable (sysmon_table_t * this);
74
75struct sysmon_s
76{
77 uchar chip;
78 void (*init)(sysmon_t *);
79 int (*read)(sysmon_t *, uint);
80};
81
82static sysmon_t sysmon_dspic =
83 {CFG_I2C_DSPIC_IO_ADDR, sysmon_dspic_init, sysmon_dspic_read};
84
85static sysmon_t * sysmon_list[] =
86{
87 &sysmon_dspic,
88 NULL
89};
90
91struct sysmon_table_s
92{
93 char * name;
94 char * unit_name;
95 sysmon_t * sysmon;
96 void (*exec_before)(sysmon_table_t *);
97 void (*exec_after)(sysmon_table_t *);
98
99 int unit_precision;
100 int unit_div;
101 int unit_min;
102 int unit_max;
103 uint val_mask;
104 uint val_min;
105 uint val_max;
106 int val_valid;
107 uint val_min_alt;
108 uint val_max_alt;
109 int val_valid_alt;
110 uint addr;
111};
112
113static sysmon_table_t sysmon_table[] =
114{
115 {"Temperature", " C", &sysmon_dspic, NULL, sysmon_backlight_disable,
116 1, 1, -32768, 32767, 0xFFFF, 0x8000-40, 0x8000+85, 0,
117 0x8000-30, 0x8000+80, 0, 0x12BC},
118
119 {"+ 5 V", "V", &sysmon_dspic, NULL, NULL,
120 100, 1000, -0x8000, 0x7FFF, 0xFFFF, 0x8000+4750, 0x8000+5250, 0,
121 0x8000+4750, 0x8000+5250, 0, 0x12CA},
122
123 {"+ 5 V standby", "V", &sysmon_dspic, NULL, sysmon_backlight_enable,
124 100, 1000, -0x8000, 0x7FFF, 0xFFFF, 0x8000+4750, 0x8000+5250, 0,
125 0x8000+4750, 0x8000+5250, 0, 0x12C6},
126};
127static int sysmon_table_size = sizeof(sysmon_table) / sizeof(sysmon_table[0]);
128
129int sysmon_init_f (void)
130{
131 sysmon_t ** l;
132
133 for (l = sysmon_list; *l; l++)
134 (*l)->init(*l);
135
136 return 0;
137}
138
139void sysmon_reloc (void)
140{
141 sysmon_t ** l;
142 sysmon_table_t * t;
143
144 for (l = sysmon_list; *l; l++) {
145 RELOC(*l);
146 RELOC((*l)->init);
147 RELOC((*l)->read);
148 }
149
150 for (t = sysmon_table; t < sysmon_table + sysmon_table_size; t ++) {
151 RELOC(t->exec_before);
152 RELOC(t->exec_after);
153 RELOC(t->sysmon);
154 }
155}
156
157static char *sysmon_unit_value (sysmon_table_t *s, uint val)
158{
159 static char buf[32];
160 char *p, sign;
161 int decimal, frac;
162 int unit_val;
163
164 unit_val =
165 s->unit_min + (s->unit_max - s->unit_min) * val / s->val_mask;
166
167 if (val == -1)
168 return "I/O ERROR";
169
170 if (unit_val < 0) {
171 sign = '-';
172 unit_val = -unit_val;
173 } else
174 sign = '+';
175
176 p = buf + sprintf(buf, "%c%2d", sign, unit_val / s->unit_div);
177
178
179 frac = unit_val % s->unit_div;
180
181 frac /= (s->unit_div / s->unit_precision);
182
183 decimal = s->unit_precision;
184
185 if (decimal != 1)
186 *p++ = '.';
187 for (decimal /= 10; decimal != 0; decimal /= 10)
188 *p++ = '0' + (frac / decimal) % 10;
189 strcpy(p, s->unit_name);
190
191 return buf;
192}
193
194static void sysmon_dspic_init (sysmon_t * this)
195{
196}
197
198static int sysmon_dspic_read (sysmon_t * this, uint addr)
199{
200 int res = dspic_read(addr);
201
202 /* To fit into the table range we should add 0x8000 */
203 return (res == -1) ? -1 : (res + 0x8000);
204}
205
206static void sysmon_backlight_disable (sysmon_table_t * this)
207{
208 if (!this->val_valid_alt)
209 sysmon_temp_invalid = 1;
210}
211
212static void sysmon_backlight_enable (sysmon_table_t * this)
213{
214 char * param;
215 int rc;
216
217 if (!sysmon_temp_invalid) {
218 param = getenv("brightness");
219 rc = param ? simple_strtol(param, NULL, 10) : -1;
220 if (rc >= 0)
221 fpga_backlight_enable(rc);
222 else
223 fpga_backlight_enable(DEFAULT_BRIGHTNESS);
224 }
225}
226
227int sysmon_post_test (int flags)
228{
229 int res = 0;
230 sysmon_table_t * t;
231 int val;
232
233 for (t = sysmon_table; t < sysmon_table + sysmon_table_size; t ++) {
234 if (t->exec_before)
235 t->exec_before(t);
236
237 val = t->sysmon->read(t->sysmon, t->addr);
238 if (val != -1) {
239 t->val_valid = val >= t->val_min && val <= t->val_max;
240 t->val_valid_alt = val >= t->val_min_alt && val <= t->val_max_alt;
241 } else {
242 t->val_valid = 0;
243 t->val_valid_alt = 0;
244 }
245
246 if (t->exec_after)
247 t->exec_after(t);
248
249 if ((!t->val_valid) || (flags & POST_MANUAL)) {
250 printf("%-17s = %-10s ", t->name, sysmon_unit_value(t, val));
251 printf("allowed range");
252 printf(" %-8s ..", sysmon_unit_value(t, t->val_min));
253 printf(" %-8s", sysmon_unit_value(t, t->val_max));
254 printf(" %s\n", t->val_valid ? "OK" : "FAIL");
255 }
256
257 if (!t->val_valid)
258 res = 1;
259 }
260
261 return res;
262}
263
264#endif /* CONFIG_POST & CFG_POST_SYSMON */
265#endif /* CONFIG_POST */