Heiko Stuebner | d63dc05 | 2013-06-02 23:09:41 +0200 | [diff] [blame] | 1 | /* |
| 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übner | c9b75d5 | 2015-01-11 23:09:23 +0100 | [diff] [blame] | 22 | #include <linux/clk-provider.h> |
| 23 | #include <linux/clocksource.h> |
| 24 | #include <linux/mfd/syscon.h> |
| 25 | #include <linux/regmap.h> |
Heiko Stuebner | d63dc05 | 2013-06-02 23:09:41 +0200 | [diff] [blame] | 26 | #include <asm/mach/arch.h> |
| 27 | #include <asm/mach/map.h> |
| 28 | #include <asm/hardware/cache-l2x0.h> |
Heiko Stuebner | a7a2b31 | 2013-06-17 22:29:23 +0200 | [diff] [blame] | 29 | #include "core.h" |
Chris Zhong | 9c1ec8e | 2014-12-01 16:52:17 +0800 | [diff] [blame] | 30 | #include "pm.h" |
Heiko Stuebner | d63dc05 | 2013-06-02 23:09:41 +0200 | [diff] [blame] | 31 | |
Heiko Stuebner | 2a9fe3c | 2015-01-20 23:47:30 +0100 | [diff] [blame] | 32 | #define RK3288_TIMER6_7_PHYS 0xff810000 |
Heiko Stübner | c9b75d5 | 2015-01-11 23:09:23 +0100 | [diff] [blame] | 33 | |
| 34 | static void __init rockchip_timer_init(void) |
| 35 | { |
| 36 | if (of_machine_is_compatible("rockchip,rk3288")) { |
Heiko Stuebner | 2a9fe3c | 2015-01-20 23:47:30 +0100 | [diff] [blame] | 37 | void __iomem *reg_base; |
| 38 | |
| 39 | /* |
| 40 | * Most/all uboot versions for rk3288 don't enable timer7 |
| 41 | * which is needed for the architected timer to work. |
| 42 | * So make sure it is running during early boot. |
| 43 | */ |
| 44 | reg_base = ioremap(RK3288_TIMER6_7_PHYS, SZ_16K); |
| 45 | if (reg_base) { |
| 46 | writel(0, reg_base + 0x30); |
| 47 | writel(0xffffffff, reg_base + 0x20); |
| 48 | writel(0xffffffff, reg_base + 0x24); |
| 49 | writel(1, reg_base + 0x30); |
| 50 | dsb(); |
| 51 | iounmap(reg_base); |
| 52 | } else { |
| 53 | pr_err("rockchip: could not map timer7 registers\n"); |
| 54 | } |
Heiko Stübner | c9b75d5 | 2015-01-11 23:09:23 +0100 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | of_clk_init(NULL); |
Marc Zyngier | 3722ed2 | 2015-09-28 15:49:18 +0100 | [diff] [blame] | 58 | clocksource_probe(); |
Heiko Stübner | c9b75d5 | 2015-01-11 23:09:23 +0100 | [diff] [blame] | 59 | } |
| 60 | |
Heiko Stuebner | 47b06fc2d | 2014-09-13 00:34:31 +0200 | [diff] [blame] | 61 | static void __init rockchip_dt_init(void) |
| 62 | { |
Chris Zhong | 9c1ec8e | 2014-12-01 16:52:17 +0800 | [diff] [blame] | 63 | rockchip_suspend_init(); |
Heiko Stuebner | 47b06fc2d | 2014-09-13 00:34:31 +0200 | [diff] [blame] | 64 | } |
| 65 | |
Heiko Stuebner | d63dc05 | 2013-06-02 23:09:41 +0200 | [diff] [blame] | 66 | static const char * const rockchip_board_dt_compat[] = { |
| 67 | "rockchip,rk2928", |
| 68 | "rockchip,rk3066a", |
| 69 | "rockchip,rk3066b", |
| 70 | "rockchip,rk3188", |
Jeffy Chen | 2608224 | 2015-12-09 17:04:11 +0800 | [diff] [blame] | 71 | "rockchip,rk3228", |
Heiko Stuebner | 7a1917a | 2014-06-28 20:13:42 +0200 | [diff] [blame] | 72 | "rockchip,rk3288", |
Heiko Stuebner | d63dc05 | 2013-06-02 23:09:41 +0200 | [diff] [blame] | 73 | NULL, |
| 74 | }; |
| 75 | |
Heiko Stuebner | 8c42124 | 2015-01-21 10:41:56 +0100 | [diff] [blame] | 76 | DT_MACHINE_START(ROCKCHIP_DT, "Rockchip (Device Tree)") |
Russell King | 2a2d2ff | 2014-04-28 15:27:59 +0100 | [diff] [blame] | 77 | .l2c_aux_val = 0, |
| 78 | .l2c_aux_mask = ~0, |
Heiko Stübner | c9b75d5 | 2015-01-11 23:09:23 +0100 | [diff] [blame] | 79 | .init_time = rockchip_timer_init, |
Heiko Stuebner | d63dc05 | 2013-06-02 23:09:41 +0200 | [diff] [blame] | 80 | .dt_compat = rockchip_board_dt_compat, |
Heiko Stuebner | 47b06fc2d | 2014-09-13 00:34:31 +0200 | [diff] [blame] | 81 | .init_machine = rockchip_dt_init, |
Heiko Stuebner | d63dc05 | 2013-06-02 23:09:41 +0200 | [diff] [blame] | 82 | MACHINE_END |