]> xenbits.xensource.com Git - xen.git/commitdiff
xen/arm: Implement reset for sunxi.
authorDenis Schneider <v1ne2go@gmail.com>
Thu, 3 Jul 2014 10:08:49 +0000 (11:08 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Thu, 3 Jul 2014 10:09:33 +0000 (11:09 +0100)
Enable hardware resets on Allwinner sunxi devices.

Signed-off-by: Denis Schneider <v1ne2go@gmail.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
xen/arch/arm/platforms/sunxi.c

index fb1280185e3f84bb1439cb6952ff92a353c7f344..89d8290c5eedce827927b260ea2ccc9d94f06644 100644 (file)
  * GNU General Public License for more details.
  */
 
+#include <xen/mm.h>
+#include <xen/vmap.h>
 #include <asm/platform.h>
+#include <asm/io.h>
+
+/* Watchdog constants: */
+#define SUNXI_WDT_BASE            0x01c20c90
+#define SUNXI_WDT_MODE            0x04
+#define SUNXI_WDT_MODEADDR        (SUNXI_WDT_BASE + SUNXI_WDT_MODE)
+#define SUNXI_WDT_MODE_EN         (1 << 0)
+#define SUNXI_WDT_MODE_RST_EN     (1 << 1)
+
+
+static void sunxi_reset(void)
+{
+    void __iomem *wdt;
+
+    wdt = ioremap_nocache(SUNXI_WDT_MODEADDR & PAGE_MASK, PAGE_SIZE);
+    if ( !wdt )
+    {
+        dprintk(XENLOG_ERR, "Unable to map watchdog register!\n");
+        return;
+    }
+
+    /* Enable watchdog to trigger a reset after 500 ms: */
+    writel(SUNXI_WDT_MODE_EN | SUNXI_WDT_MODE_RST_EN,
+      wdt + (SUNXI_WDT_MODEADDR & ~PAGE_MASK));
+    iounmap(wdt);
+
+    for (;;)
+        wfi();
+}
 
 static const char * const sunxi_dt_compat[] __initconst =
 {
@@ -37,6 +68,7 @@ static const struct dt_device_match sunxi_blacklist_dev[] __initconst =
 PLATFORM_START(sunxi, "Allwinner A20")
     .compatible = sunxi_dt_compat,
     .blacklist_dev = sunxi_blacklist_dev,
+    .reset = sunxi_reset,
 
     .dom0_gnttab_start = 0x01d00000,
     .dom0_gnttab_size = 0x20000,