blob: 4e5ed0dda28341b78599a15ef573af6e35a75e3b [file] [log] [blame]
Yuri Tikhonov8f15d4a2008-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 <common.h>
26
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010027/* This test verifies if the reason of last reset was an abnormal voltage
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010028 * condition, than it performs watchdog test, measuing time required to
29 * trigger watchdog reset.
30 */
31
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010032#include <post.h>
33
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020034#if CONFIG_POST & CONFIG_SYS_POST_WATCHDOG
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010035
36#include <watchdog.h>
Stefan Roese09887762010-09-16 14:30:37 +020037#include <asm/ppc4xx-gpio.h>
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010038#include <asm/io.h>
39
40static uint watchdog_magic_read(void)
41{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042 return in_be32((void *)CONFIG_SYS_WATCHDOG_FLAGS_ADDR) &
43 CONFIG_SYS_WATCHDOG_MAGIC_MASK;
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010044}
45
46static void watchdog_magic_write(uint value)
47{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048 out_be32((void *)CONFIG_SYS_WATCHDOG_FLAGS_ADDR, value |
49 (in_be32((void *)CONFIG_SYS_WATCHDOG_FLAGS_ADDR) &
50 ~CONFIG_SYS_WATCHDOG_MAGIC_MASK));
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010051}
52
53int sysmon1_post_test(int flags)
54{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055 if (gpio_read_in_bit(CONFIG_SYS_GPIO_SYSMON_STATUS) == 0) {
Sascha Laue3e4615a2008-04-01 15:13:03 +020056 /*
57 * 3.1. GPIO62 is low
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010058 * Assuming system voltage failure.
59 */
Sascha Lauef14ae412010-08-19 09:38:56 +020060 post_log("sysmon1 Abnormal voltage detected (GPIO62)\n");
61 post_log("POST sysmon1 FAILED\n");
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010062 return 1;
Sascha Lauef14ae412010-08-19 09:38:56 +020063 } else {
64 post_log("sysmon1 PASSED\n");
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010065 }
66
67 return 0;
68}
69
70int lwmon5_watchdog_post_test(int flags)
71{
72 /* On each reset scratch register 1 should be tested,
73 * but first test GPIO62:
74 */
75 if (!(flags & POST_MANUAL) && sysmon1_post_test(flags)) {
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010076 /* 3.1. GPIO62 is low
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010077 * Assuming system voltage failure.
78 */
79 /* 3.1.1. Set scratch register 1 to 0x0000xxxx */
80 watchdog_magic_write(0);
81 /* 3.1.2. Mark test as failed due to voltage?! */
82 return 1;
83 }
84
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085 if (watchdog_magic_read() != CONFIG_SYS_WATCHDOG_MAGIC) {
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010086 /* 3.2. Scratch register 1 differs from magic value 0x1248xxxx
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010087 * Assuming PowerOn
88 */
89 int ints;
90 ulong base;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +010091 ulong time;
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010092
93 /* 3.2.1. Set magic value to scratch register */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020094 watchdog_magic_write(CONFIG_SYS_WATCHDOG_MAGIC);
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +010095
96 ints = disable_interrupts ();
97 /* 3.2.2. strobe watchdog once */
98 WATCHDOG_RESET();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099 out_be32((void *)CONFIG_SYS_WATCHDOG_TIME_ADDR, 0);
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +0100100 /* 3.2.3. save time of strobe in scratch register 2 */
101 base = post_time_ms (0);
102
103 /* 3.2.4. Wait for 150 ms (enough for reset to happen) */
104 while ((time = post_time_ms (base)) < 150)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105 out_be32((void *)CONFIG_SYS_WATCHDOG_TIME_ADDR, time);
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +0100106 if (ints)
107 enable_interrupts ();
108
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100109 /* 3.2.5. Reset didn't happen. - Set 0x0000xxxx
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +0100110 * into scratch register 1
111 */
112 watchdog_magic_write(0);
113 /* 3.2.6. Mark test as failed. */
114 post_log("hw watchdog time : %u ms, failed ", time);
115 return 2;
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100116 } else {
117 /* 3.3. Scratch register matches magic value 0x1248xxxx
118 * Assume this is watchdog-initiated reset
119 */
120 ulong time;
121 /* 3.3.1. So, the test succeed, save measured time to syslog. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122 time = in_be32((void *)CONFIG_SYS_WATCHDOG_TIME_ADDR);
Sascha Lauef14ae412010-08-19 09:38:56 +0200123 if (time > 90 ) { /* ms*/
124 post_log("hw watchdog time : %u ms, passed ", time);
125 /* 3.3.2. Set scratch register 1 to 0x0000xxxx */
126 watchdog_magic_write(0);
127 return 0;
128 } else {
129 /*test minimum watchdogtime */
130 post_log("hw watchdog time : %u ms, failed ", time);
131 return 2;
132 }
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +0100133 }
Yuri Tikhonov65b20dc2008-02-04 14:10:42 +0100134 return -1;
Wolfgang Denk81a0ac62008-03-20 22:01:38 +0100135}
Yuri Tikhonov8f15d4a2008-02-04 14:10:42 +0100136
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200137#endif /* CONFIG_POST & CONFIG_SYS_POST_WATCHDOG */