public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Shreenidhi Shedi <yesshedi@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v1 5/6] microblaze: Support for watchdog_reset in Microblaze init
Date: Sat, 30 Jun 2018 03:21:42 +0530	[thread overview]
Message-ID: <20180629215143.3975-6-yesshedi@gmail.com> (raw)
In-Reply-To: <20180629215143.3975-1-yesshedi@gmail.com>

Signed-off-by: Shreenidhi Shedi <yesshedi@gmail.com>
---

Changes in v1: None

 .../microblaze-generic/microblaze-generic.c   | 43 +++++++++++++++++--
 1 file changed, 39 insertions(+), 4 deletions(-)

diff --git a/board/xilinx/microblaze-generic/microblaze-generic.c b/board/xilinx/microblaze-generic/microblaze-generic.c
index 7d8f247fa9..1d48bfb20e 100644
--- a/board/xilinx/microblaze-generic/microblaze-generic.c
+++ b/board/xilinx/microblaze-generic/microblaze-generic.c
@@ -17,6 +17,7 @@
 #include <asm/microblaze_intc.h>
 #include <asm/asm.h>
 #include <asm/gpio.h>
+#include <dm/uclass.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
@@ -24,6 +25,12 @@ DECLARE_GLOBAL_DATA_PTR;
 static int reset_pin = -1;
 #endif
 
+#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_XILINX_TB_WATCHDOG)
+#include <wdt.h>
+
+static struct udevice *watchdog_dev;
+#endif /* !CONFIG_SPL_BUILD && CONFIG_XILINX_TB_WATCHDOG */
+
 ulong ram_base;
 
 int dram_init_banksize(void)
@@ -68,10 +75,6 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 	if (reset_pin != -1)
 		gpio_direction_output(reset_pin, 1);
 #endif
-
-#ifdef CONFIG_XILINX_TB_WATCHDOG
-	hw_watchdog_disable();
-#endif
 #endif
 	puts("Resetting board\n");
 	__asm__ __volatile__ ("	mts rmsr, r0;" \
@@ -91,9 +94,41 @@ static int gpio_init(void)
 	return 0;
 }
 
+#ifdef CONFIG_XILINX_TB_WATCHDOG
+/* Called by macro WATCHDOG_RESET */
+void watchdog_reset(void)
+{
+#if !defined(CONFIG_SPL_BUILD)
+	ulong now;
+	static ulong next_reset;
+
+	if (!watchdog_dev)
+		return;
+
+	now = timer_get_us();
+
+	/* Do not reset the watchdog too often */
+	if (now > next_reset) {
+		wdt_reset(watchdog_dev);
+		next_reset = now + 1000;
+	}
+#endif /* !CONFIG_SPL_BUILD */
+}
+#endif /* CONFIG_XILINX_TB_WATCHDOG */
+
 int board_late_init(void)
 {
 	gpio_init();
 
+#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_XILINX_TB_WATCHDOG)
+	watchdog_dev = NULL;
+	if (uclass_get_device(UCLASS_WDT, 0, &watchdog_dev)) {
+		puts("Watchdog: Not found!\n");
+	} else {
+		wdt_start(watchdog_dev, 0, 0);
+		puts("Watchdog: Started\n");
+	}
+#endif /* !CONFIG_SPL_BUILD && CONFIG_XILINX_TB_WATCHDOG */
+
 	return 0;
 }
-- 
2.17.1

  parent reply	other threads:[~2018-06-29 21:51 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-29 21:51 [U-Boot] [PATCH v1 0/6] This patch series contains the the changes related to Shreenidhi Shedi
2018-06-29 21:51 ` [U-Boot] [PATCH v1 1/6] microblaze: Use default implementation from include/linux/io.h Shreenidhi Shedi
2018-07-11  8:12   ` Michal Simek
2018-06-29 21:51 ` [U-Boot] [PATCH v1 2/6] microblaze: Guard do_reset by CONFIG_SYSRESET Shreenidhi Shedi
2018-07-11  8:13   ` Michal Simek
2018-06-29 21:51 ` [U-Boot] [PATCH v1 3/6] microblaze: Cosmetic changes in Microblaze related files Shreenidhi Shedi
2018-07-11  8:14   ` Michal Simek
2018-06-29 21:51 ` [U-Boot] [PATCH v1 4/6] microblaze: Delete Xilinx watchdog related macros Shreenidhi Shedi
2018-07-11  8:15   ` Michal Simek
2018-06-29 21:51 ` Shreenidhi Shedi [this message]
2018-07-11 14:29   ` [U-Boot] [PATCH v1 5/6] microblaze: Support for watchdog_reset in Microblaze init Michal Simek
2018-06-29 21:51 ` [U-Boot] [PATCH v1 6/6] watchdog: Convert Xilinx Axi watchdog driver to driver model Shreenidhi Shedi
2018-07-11 14:24   ` Michal Simek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180629215143.3975-6-yesshedi@gmail.com \
    --to=yesshedi@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox