blob: f9797a2b5d0d55586535104c4bb87c32fe98fb6c [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +02002/*
3 * Device Tree support for Rockchip SoCs
4 *
5 * Copyright (c) 2013 MundoReader S.L.
6 * Author: Heiko Stuebner <heiko@sntech.de>
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +02007 */
8
9#include <linux/kernel.h>
10#include <linux/init.h>
Stephen Boyd62e59c42019-04-18 15:20:22 -070011#include <linux/io.h>
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +020012#include <linux/of_platform.h>
13#include <linux/irqchip.h>
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010014#include <linux/clk-provider.h>
15#include <linux/clocksource.h>
16#include <linux/mfd/syscon.h>
17#include <linux/regmap.h>
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +020018#include <asm/mach/arch.h>
19#include <asm/mach/map.h>
20#include <asm/hardware/cache-l2x0.h>
Heiko Stuebnera7a2b312013-06-17 22:29:23 +020021#include "core.h"
Chris Zhong9c1ec8e2014-12-01 16:52:17 +080022#include "pm.h"
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +020023
Heiko Stuebner2a9fe3c2015-01-20 23:47:30 +010024#define RK3288_TIMER6_7_PHYS 0xff810000
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010025
26static void __init rockchip_timer_init(void)
27{
28 if (of_machine_is_compatible("rockchip,rk3288")) {
Heiko Stuebner2a9fe3c2015-01-20 23:47:30 +010029 void __iomem *reg_base;
30
31 /*
32 * Most/all uboot versions for rk3288 don't enable timer7
33 * which is needed for the architected timer to work.
34 * So make sure it is running during early boot.
35 */
36 reg_base = ioremap(RK3288_TIMER6_7_PHYS, SZ_16K);
37 if (reg_base) {
38 writel(0, reg_base + 0x30);
39 writel(0xffffffff, reg_base + 0x20);
40 writel(0xffffffff, reg_base + 0x24);
41 writel(1, reg_base + 0x30);
42 dsb();
43 iounmap(reg_base);
44 } else {
45 pr_err("rockchip: could not map timer7 registers\n");
46 }
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010047 }
48
49 of_clk_init(NULL);
Daniel Lezcanoba5d08c2017-05-26 17:40:46 +020050 timer_probe();
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010051}
52
Heiko Stuebner47b06fc2d2014-09-13 00:34:31 +020053static void __init rockchip_dt_init(void)
54{
Chris Zhong9c1ec8e2014-12-01 16:52:17 +080055 rockchip_suspend_init();
Heiko Stuebner47b06fc2d2014-09-13 00:34:31 +020056}
57
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +020058static const char * const rockchip_board_dt_compat[] = {
59 "rockchip,rk2928",
60 "rockchip,rk3066a",
61 "rockchip,rk3066b",
62 "rockchip,rk3188",
Jeffy Chen26082242015-12-09 17:04:11 +080063 "rockchip,rk3228",
Heiko Stuebner7a1917a2014-06-28 20:13:42 +020064 "rockchip,rk3288",
Andy Yan51f6bfc2016-11-14 20:15:47 +080065 "rockchip,rv1108",
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +020066 NULL,
67};
68
Heiko Stuebner8c421242015-01-21 10:41:56 +010069DT_MACHINE_START(ROCKCHIP_DT, "Rockchip (Device Tree)")
Russell King2a2d2ff2014-04-28 15:27:59 +010070 .l2c_aux_val = 0,
71 .l2c_aux_mask = ~0,
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010072 .init_time = rockchip_timer_init,
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +020073 .dt_compat = rockchip_board_dt_compat,
Heiko Stuebner47b06fc2d2014-09-13 00:34:31 +020074 .init_machine = rockchip_dt_init,
Heiko Stuebnerd63dc0512013-06-02 23:09:41 +020075MACHINE_END