blob: b6cf3b449428960d28590f5cdad6e331d2239080 [file] [log] [blame]
Heiko Stuebnerd63dc052013-06-02 23:09:41 +02001/*
2 * Device Tree support for Rockchip SoCs
3 *
4 * Copyright (c) 2013 MundoReader S.L.
5 * Author: Heiko Stuebner <heiko@sntech.de>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/of_platform.h>
21#include <linux/irqchip.h>
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010022#include <linux/clk-provider.h>
23#include <linux/clocksource.h>
24#include <linux/mfd/syscon.h>
25#include <linux/regmap.h>
Heiko Stuebnerd63dc052013-06-02 23:09:41 +020026#include <asm/mach/arch.h>
27#include <asm/mach/map.h>
28#include <asm/hardware/cache-l2x0.h>
Heiko Stuebnera7a2b312013-06-17 22:29:23 +020029#include "core.h"
Chris Zhong9c1ec8e2014-12-01 16:52:17 +080030#include "pm.h"
Heiko Stuebnerd63dc052013-06-02 23:09:41 +020031
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010032#define RK3288_GRF_SOC_CON0 0x244
Heiko Stuebner2a9fe3c2015-01-20 23:47:30 +010033#define RK3288_TIMER6_7_PHYS 0xff810000
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010034
35static void __init rockchip_timer_init(void)
36{
37 if (of_machine_is_compatible("rockchip,rk3288")) {
38 struct regmap *grf;
Heiko Stuebner2a9fe3c2015-01-20 23:47:30 +010039 void __iomem *reg_base;
40
41 /*
42 * Most/all uboot versions for rk3288 don't enable timer7
43 * which is needed for the architected timer to work.
44 * So make sure it is running during early boot.
45 */
46 reg_base = ioremap(RK3288_TIMER6_7_PHYS, SZ_16K);
47 if (reg_base) {
48 writel(0, reg_base + 0x30);
49 writel(0xffffffff, reg_base + 0x20);
50 writel(0xffffffff, reg_base + 0x24);
51 writel(1, reg_base + 0x30);
52 dsb();
53 iounmap(reg_base);
54 } else {
55 pr_err("rockchip: could not map timer7 registers\n");
56 }
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010057
58 /*
59 * Disable auto jtag/sdmmc switching that causes issues
60 * with the mmc controllers making them unreliable
61 */
62 grf = syscon_regmap_lookup_by_compatible("rockchip,rk3288-grf");
63 if (!IS_ERR(grf))
64 regmap_write(grf, RK3288_GRF_SOC_CON0, 0x10000000);
65 else
66 pr_err("rockchip: could not get grf syscon\n");
67 }
68
69 of_clk_init(NULL);
70 clocksource_of_init();
71}
72
Heiko Stuebner47b06fc2d2014-09-13 00:34:31 +020073static void __init rockchip_dt_init(void)
74{
Chris Zhong9c1ec8e2014-12-01 16:52:17 +080075 rockchip_suspend_init();
Heiko Stuebner47b06fc2d2014-09-13 00:34:31 +020076 of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
Heiko Stuebner3eb79a52014-09-30 10:33:27 +020077 platform_device_register_simple("cpufreq-dt", 0, NULL, 0);
Heiko Stuebner47b06fc2d2014-09-13 00:34:31 +020078}
79
Heiko Stuebnerd63dc052013-06-02 23:09:41 +020080static const char * const rockchip_board_dt_compat[] = {
81 "rockchip,rk2928",
82 "rockchip,rk3066a",
83 "rockchip,rk3066b",
84 "rockchip,rk3188",
Heiko Stuebner7a1917a2014-06-28 20:13:42 +020085 "rockchip,rk3288",
Heiko Stuebnerd63dc052013-06-02 23:09:41 +020086 NULL,
87};
88
Heiko Stuebner8c421242015-01-21 10:41:56 +010089DT_MACHINE_START(ROCKCHIP_DT, "Rockchip (Device Tree)")
Russell King2a2d2ff2014-04-28 15:27:59 +010090 .l2c_aux_val = 0,
91 .l2c_aux_mask = ~0,
Heiko Stübnerc9b75d52015-01-11 23:09:23 +010092 .init_time = rockchip_timer_init,
Heiko Stuebnerd63dc052013-06-02 23:09:41 +020093 .dt_compat = rockchip_board_dt_compat,
Heiko Stuebner47b06fc2d2014-09-13 00:34:31 +020094 .init_machine = rockchip_dt_init,
Heiko Stuebnerd63dc052013-06-02 23:09:41 +020095MACHINE_END