ARM: rockchip: indent rk3036.c
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-rockchip / rk3036.c
1 /*
2  * Device Tree support for Rockchip RK3036
3  *
4  * Copyright (C) 2014 ROCKCHIP, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #include <linux/clk-provider.h>
18 #include <linux/clocksource.h>
19 #include <linux/cpuidle.h>
20 #include <linux/delay.h>
21 #include <linux/init.h>
22 #include <linux/irqchip.h>
23 #include <linux/kernel.h>
24 #include <linux/of_address.h>
25 #include <linux/of_platform.h>
26 #include <linux/rockchip/common.h>
27 #include <linux/rockchip/cpu.h>
28 #include <linux/rockchip/cru.h>
29 #include <linux/rockchip/dvfs.h>
30 #include <linux/rockchip/grf.h>
31 #include <linux/rockchip/iomap.h>
32 #include <linux/rockchip/pmu.h>
33 #include <asm/cpuidle.h>
34 #include <asm/cputype.h>
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include "cpu_axi.h"
38 #include "loader.h"
39 #define CPU 3036
40 #include "sram.h"
41 #include "pm.h"
42
43 #define RK3036_DEVICE(name) \
44         { \
45                 .virtual        = (unsigned long) RK_##name##_VIRT, \
46                 .pfn            = __phys_to_pfn(RK3036_##name##_PHYS), \
47                 .length         = RK3036_##name##_SIZE, \
48                 .type           = MT_DEVICE, \
49         }
50
51 #define RK3036_IMEM_VIRT (RK_BOOTRAM_VIRT + SZ_32K)
52 #define RK3036_TIMER5_VIRT (RK_TIMER_VIRT + 0xa0)
53
54 static struct map_desc rk3036_io_desc[] __initdata = {
55         RK3036_DEVICE(CRU),
56         RK3036_DEVICE(GRF),
57         RK3036_DEVICE(ROM),
58         RK3036_DEVICE(EFUSE),
59         RK_DEVICE(RK_DDR_VIRT, RK3036_DDR_PCTL_PHYS, RK3036_DDR_PCTL_SIZE),
60         RK_DEVICE(RK_DDR_VIRT + RK3036_DDR_PCTL_SIZE, RK3036_DDR_PHY_PHYS,
61                   RK3036_DDR_PHY_SIZE),
62         RK_DEVICE(RK_GPIO_VIRT(0), RK3036_GPIO0_PHYS, RK3036_GPIO_SIZE),
63         RK_DEVICE(RK_GPIO_VIRT(1), RK3036_GPIO1_PHYS, RK3036_GPIO_SIZE),
64         RK_DEVICE(RK_GPIO_VIRT(2), RK3036_GPIO2_PHYS, RK3036_GPIO_SIZE),
65         RK_DEVICE(RK_DEBUG_UART_VIRT, RK3036_UART2_PHYS, RK3036_UART_SIZE),
66         RK_DEVICE(RK_GIC_VIRT, RK3036_GIC_DIST_PHYS, RK3036_GIC_DIST_SIZE),
67         RK_DEVICE(RK_GIC_VIRT + RK3036_GIC_DIST_SIZE, RK3036_GIC_CPU_PHYS,
68                   RK3036_GIC_CPU_SIZE),
69         RK_DEVICE(RK3036_IMEM_VIRT, RK3036_IMEM_PHYS, SZ_4K),
70         RK_DEVICE(RK_TIMER_VIRT, RK3036_TIMER_PHYS, RK3036_TIMER_SIZE),
71 };
72
73 static void __init rk3036_boot_mode_init(void)
74 {
75         u32 flag = readl_relaxed(RK_GRF_VIRT + RK3036_GRF_OS_REG0);
76         u32 mode = readl_relaxed(RK_GRF_VIRT + RK3036_GRF_OS_REG1);
77         u32 rst_st = readl_relaxed(RK_CRU_VIRT + RK3036_CRU_RST_ST);
78
79         if (flag == (SYS_KERNRL_REBOOT_FLAG | BOOT_RECOVER))
80                 mode = BOOT_MODE_RECOVERY;
81         if (rst_st & ((1 << 2) | (1 << 3)))
82                 mode = BOOT_MODE_WATCHDOG;
83         rockchip_boot_mode_init(flag, mode);
84 }
85
86 static void usb_uart_init(void)
87 {
88 #ifdef CONFIG_RK_USB_UART
89         u32 soc_status0 = readl_relaxed(RK_GRF_VIRT + RK3036_GRF_SOC_STATUS0);
90 #endif
91         writel_relaxed(0x34000000, RK_GRF_VIRT + RK3036_GRF_UOC1_CON4);
92 #ifdef CONFIG_RK_USB_UART
93         if (!(soc_status0 & (1 << 14)) && (soc_status0 & (1 << 17))) {
94                 /* software control usb phy enable */
95                 writel_relaxed(0x007f0055, RK_GRF_VIRT + RK3036_GRF_UOC0_CON5);
96                 writel_relaxed(0x34003000, RK_GRF_VIRT + RK3036_GRF_UOC1_CON4);
97         }
98 #endif
99
100         writel_relaxed(0x07, RK_DEBUG_UART_VIRT + 0x88);
101         writel_relaxed(0x00, RK_DEBUG_UART_VIRT + 0x04);
102         writel_relaxed(0x83, RK_DEBUG_UART_VIRT + 0x0c);
103         writel_relaxed(0x0d, RK_DEBUG_UART_VIRT + 0x00);
104         writel_relaxed(0x00, RK_DEBUG_UART_VIRT + 0x04);
105         writel_relaxed(0x03, RK_DEBUG_UART_VIRT + 0x0c);
106 }
107
108 static void __init rk3036_dt_map_io(void)
109 {
110         rockchip_soc_id = ROCKCHIP_SOC_RK3036;
111
112         iotable_init(rk3036_io_desc, ARRAY_SIZE(rk3036_io_desc));
113         debug_ll_io_init();
114         usb_uart_init();
115
116         /* enable timer5 for core */
117         writel_relaxed(0, RK3036_TIMER5_VIRT + 0x10);
118         dsb();
119         writel_relaxed(0xFFFFFFFF, RK3036_TIMER5_VIRT + 0x00);
120         writel_relaxed(0xFFFFFFFF, RK3036_TIMER5_VIRT + 0x04);
121         dsb();
122         writel_relaxed(1, RK3036_TIMER5_VIRT + 0x10);
123         dsb();
124
125         rk3036_boot_mode_init();
126 }
127
128 extern void secondary_startup(void);
129 static int rk3036_sys_set_power_domain(enum pmu_power_domain pd, bool on)
130 {
131         if (on) {
132 #ifdef CONFIG_SMP
133                 if (PD_CPU_1 == pd) {
134                         writel_relaxed(0x20000,
135                                        RK_CRU_VIRT + RK3036_CRU_SOFTRST0_CON);
136                         dsb();
137                         udelay(10);
138                         writel_relaxed(virt_to_phys(secondary_startup),
139                                        RK3036_IMEM_VIRT + 8);
140                         writel_relaxed(0xDEADBEAF, RK3036_IMEM_VIRT + 4);
141                         dsb_sev();
142                 }
143 #endif
144         } else {
145 #ifdef CONFIG_SMP
146                 if (PD_CPU_1 == pd) {
147                         writel_relaxed(0x20002,
148                                        RK_CRU_VIRT + RK3036_CRU_SOFTRST0_CON);
149                         dsb();
150                 }
151 #endif
152         }
153
154         return 0;
155 }
156
157 static bool rk3036_pmu_power_domain_is_on(enum pmu_power_domain pd)
158 {
159         return 1;
160 }
161
162 static int rk3036_pmu_set_idle_request(enum pmu_idle_req req, bool idle)
163 {
164         return 0;
165 }
166
167 static void __init rk3036_dt_init_timer(void)
168 {
169         rockchip_pmu_ops.set_power_domain = rk3036_sys_set_power_domain;
170         rockchip_pmu_ops.power_domain_is_on = rk3036_pmu_power_domain_is_on;
171         rockchip_pmu_ops.set_idle_request = rk3036_pmu_set_idle_request;
172         of_clk_init(NULL);
173         clocksource_of_init();
174 }
175
176 static void __init rk3036_init_late(void)
177 {
178 }
179
180 static void __init rk3036_reserve(void)
181 {
182         /* reserve memory for ION */
183         //rockchip_ion_reserve();
184 }
185
186 static void rk3036_restart(char mode, const char *cmd)
187 {
188         u32 boot_flag, boot_mode;
189
190         rockchip_restart_get_boot_mode(cmd, &boot_flag, &boot_mode);
191
192         writel_relaxed(boot_flag, RK_GRF_VIRT + RK3036_GRF_OS_REG0);    // for loader
193         writel_relaxed(boot_mode, RK_GRF_VIRT + RK3036_GRF_OS_REG1);    // for linux
194         dsb();
195
196         /* pll enter slow mode */
197         writel_relaxed(0x30110000, RK_CRU_VIRT + RK3036_CRU_MODE_CON);
198         dsb();
199         writel_relaxed(0xeca8, RK_CRU_VIRT + RK3036_CRU_GLB_SRST_SND_VALUE);
200         dsb();
201 }
202
203 static const char *const rk3036_dt_compat[] __initconst = {
204         "rockchip,rk3036",
205         NULL,
206 };
207
208 DT_MACHINE_START(RK3036_DT, "Rockchip RK3036")
209         .dt_compat      = rk3036_dt_compat,
210         .smp            = smp_ops(rockchip_smp_ops),
211         .reserve        = rk3036_reserve,
212         .map_io         = rk3036_dt_map_io,
213         .init_time      = rk3036_dt_init_timer,
214         .init_late      = rk3036_init_late,
215         .reserve        = rk3036_reserve,
216         .restart        = rk3036_restart,
217 MACHINE_END