blob: 1ac59fc0cb15fa4b129fe5bfe1f1d5dce805ba0a [file] [log] [blame]
Christian Daudt8ac49e02012-11-19 09:46:10 -08001/*
Markus Mayera21ea262014-02-25 14:17:44 -08002 * Copyright (C) 2012-2014 Broadcom Corporation
Christian Daudt8ac49e02012-11-19 09:46:10 -08003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
7 *
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Christian Daudt80116572013-03-13 14:27:27 -070014#include <linux/clocksource.h>
Markus Mayer389df032014-02-25 14:17:45 -080015#include <linux/of_address.h>
16#include <linux/of_platform.h>
Christian Daudt8ac49e02012-11-19 09:46:10 -080017
18#include <asm/mach/arch.h>
Christian Daudt8ac49e02012-11-19 09:46:10 -080019
Alex Eldereeda4cb2014-04-21 16:53:11 -050020#include "kona_l2_cache.h"
Christian Daudtb8eb35f2013-02-26 21:48:49 -080021
Markus Mayera21ea262014-02-25 14:17:44 -080022#define SECWDOG_OFFSET 0x00000000
23#define SECWDOG_RESERVED_MASK 0xe2000000
24#define SECWDOG_WD_LOAD_FLAG_MASK 0x10000000
25#define SECWDOG_EN_MASK 0x08000000
26#define SECWDOG_SRSTEN_MASK 0x04000000
27#define SECWDOG_CLKS_SHIFT 20
28#define SECWDOG_COUNT_SHIFT 0
Markus Mayer257b49e2013-06-24 15:39:33 -070029
Markus Mayera21ea262014-02-25 14:17:44 -080030static void bcm281xx_restart(enum reboot_mode mode, const char *cmd)
31{
32 uint32_t val;
33 void __iomem *base;
34 struct device_node *np_wdog;
35
36 np_wdog = of_find_compatible_node(NULL, NULL, "brcm,kona-wdt");
37 if (!np_wdog) {
38 pr_emerg("Couldn't find brcm,kona-wdt\n");
39 return;
Markus Mayer257b49e2013-06-24 15:39:33 -070040 }
Markus Mayera21ea262014-02-25 14:17:44 -080041 base = of_iomap(np_wdog, 0);
42 if (!base) {
43 pr_emerg("Couldn't map brcm,kona-wdt\n");
44 return;
45 }
46
47 /* Enable watchdog with short timeout (244us). */
48 val = readl(base + SECWDOG_OFFSET);
49 val &= SECWDOG_RESERVED_MASK | SECWDOG_WD_LOAD_FLAG_MASK;
50 val |= SECWDOG_EN_MASK | SECWDOG_SRSTEN_MASK |
51 (0x15 << SECWDOG_CLKS_SHIFT) |
52 (0x8 << SECWDOG_COUNT_SHIFT);
53 writel(val, base + SECWDOG_OFFSET);
54
55 /* Wait for reset */
56 while (1);
Markus Mayer257b49e2013-06-24 15:39:33 -070057}
58
Markus Mayer0e8b8602014-02-25 14:17:46 -080059static void __init bcm281xx_init(void)
Christian Daudt8ac49e02012-11-19 09:46:10 -080060{
61 of_platform_populate(NULL, of_default_bus_match_table, NULL,
62 &platform_bus);
Christian Daudtb8eb35f2013-02-26 21:48:49 -080063 kona_l2_cache_init();
Christian Daudt8ac49e02012-11-19 09:46:10 -080064}
65
Alex Elder9c6423a2014-02-25 17:01:45 -060066static const char * const bcm281xx_dt_compat[] = {
67 "brcm,bcm11351", /* Have to use the first number upstreamed */
68 NULL,
69};
Christian Daudt8ac49e02012-11-19 09:46:10 -080070
Alex Elder9c6423a2014-02-25 17:01:45 -060071DT_MACHINE_START(BCM281XX_DT, "BCM281xx Broadcom Application Processor")
Markus Mayer0e8b8602014-02-25 14:17:46 -080072 .init_machine = bcm281xx_init,
Markus Mayera21ea262014-02-25 14:17:44 -080073 .restart = bcm281xx_restart,
Alex Elder9c6423a2014-02-25 17:01:45 -060074 .dt_compat = bcm281xx_dt_compat,
Christian Daudt8ac49e02012-11-19 09:46:10 -080075MACHINE_END