Merge tag 'drm-intel-fixes-2019-03-28' of git://anongit.freedesktop.org/drm/drm-intel...
[linux-2.6-block.git] / drivers / clocksource / dw_apb_timer_of.c
CommitLineData
af75655c 1/*
cfda5901 2 * Copyright (C) 2012 Altera Corporation
af75655c
JI
3 * Copyright (c) 2011 Picochip Ltd., Jamie Iles
4 *
cfda5901
DN
5 * Modified from mach-picoxcell/time.c
6 *
af75655c
JI
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
cfda5901
DN
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 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
af75655c 18 */
9115df89 19#include <linux/delay.h>
af75655c
JI
20#include <linux/dw_apb_timer.h>
21#include <linux/of.h>
22#include <linux/of_address.h>
23#include <linux/of_irq.h>
a8b447f2 24#include <linux/clk.h>
1f174a1a 25#include <linux/reset.h>
38ff87f7 26#include <linux/sched_clock.h>
af75655c 27
1cf0203a 28static void __init timer_get_base_and_rate(struct device_node *np,
af75655c
JI
29 void __iomem **base, u32 *rate)
30{
a8b447f2
HS
31 struct clk *timer_clk;
32 struct clk *pclk;
1f174a1a 33 struct reset_control *rstc;
a8b447f2 34
af75655c
JI
35 *base = of_iomap(np, 0);
36
37 if (!*base)
2a4849d2 38 panic("Unable to map regs for %pOFn", np);
af75655c 39
1f174a1a
DN
40 /*
41 * Reset the timer if the reset control is available, wiping
42 * out the state the firmware may have left it
43 */
44 rstc = of_reset_control_get(np, NULL);
45 if (!IS_ERR(rstc)) {
46 reset_control_assert(rstc);
47 reset_control_deassert(rstc);
48 }
49
a8b447f2
HS
50 /*
51 * Not all implementations use a periphal clock, so don't panic
52 * if it's not present
53 */
54 pclk = of_clk_get_by_name(np, "pclk");
55 if (!IS_ERR(pclk))
56 if (clk_prepare_enable(pclk))
2a4849d2
RH
57 pr_warn("pclk for %pOFn is present, but could not be activated\n",
58 np);
a8b447f2
HS
59
60 timer_clk = of_clk_get_by_name(np, "timer");
61 if (IS_ERR(timer_clk))
62 goto try_clock_freq;
63
64 if (!clk_prepare_enable(timer_clk)) {
65 *rate = clk_get_rate(timer_clk);
66 return;
67 }
68
69try_clock_freq:
cfda5901 70 if (of_property_read_u32(np, "clock-freq", rate) &&
1cf0203a 71 of_property_read_u32(np, "clock-frequency", rate))
2a4849d2 72 panic("No clock nor clock-frequency property for %pOFn", np);
af75655c
JI
73}
74
1cf0203a 75static void __init add_clockevent(struct device_node *event_timer)
af75655c
JI
76{
77 void __iomem *iobase;
78 struct dw_apb_clock_event_device *ced;
79 u32 irq, rate;
80
81 irq = irq_of_parse_and_map(event_timer, 0);
1a33bd2b 82 if (irq == 0)
af75655c
JI
83 panic("No IRQ for clock event timer");
84
85 timer_get_base_and_rate(event_timer, &iobase, &rate);
86
87 ced = dw_apb_clockevent_init(0, event_timer->name, 300, iobase, irq,
88 rate);
89 if (!ced)
90 panic("Unable to initialise clockevent device");
91
92 dw_apb_clockevent_register(ced);
93}
94
a1198f83
HS
95static void __iomem *sched_io_base;
96static u32 sched_rate;
97
1cf0203a 98static void __init add_clocksource(struct device_node *source_timer)
af75655c
JI
99{
100 void __iomem *iobase;
101 struct dw_apb_clocksource *cs;
102 u32 rate;
103
104 timer_get_base_and_rate(source_timer, &iobase, &rate);
105
106 cs = dw_apb_clocksource_init(300, source_timer->name, iobase, rate);
107 if (!cs)
108 panic("Unable to initialise clocksource device");
109
110 dw_apb_clocksource_start(cs);
111 dw_apb_clocksource_register(cs);
af75655c 112
a1198f83
HS
113 /*
114 * Fallback to use the clocksource as sched_clock if no separate
115 * timer is found. sched_io_base then points to the current_value
116 * register of the clocksource timer.
117 */
118 sched_io_base = iobase + 0x04;
119 sched_rate = rate;
120}
af75655c 121
0d24d1f2 122static u64 notrace read_sched_clock(void)
af75655c 123{
3a10013b 124 return ~readl_relaxed(sched_io_base);
af75655c
JI
125}
126
cfda5901 127static const struct of_device_id sptimer_ids[] __initconst = {
af75655c
JI
128 { .compatible = "picochip,pc3x2-rtc" },
129 { /* Sentinel */ },
130};
131
1cf0203a 132static void __init init_sched_clock(void)
af75655c
JI
133{
134 struct device_node *sched_timer;
af75655c 135
cfda5901 136 sched_timer = of_find_matching_node(NULL, sptimer_ids);
a1198f83
HS
137 if (sched_timer) {
138 timer_get_base_and_rate(sched_timer, &sched_io_base,
139 &sched_rate);
140 of_node_put(sched_timer);
141 }
af75655c 142
fa8296ae 143 sched_clock_register(read_sched_clock, 32, sched_rate);
af75655c
JI
144}
145
9115df89
JZ
146#ifdef CONFIG_ARM
147static unsigned long dw_apb_delay_timer_read(void)
148{
149 return ~readl_relaxed(sched_io_base);
150}
151
152static struct delay_timer dw_apb_delay_timer = {
153 .read_current_timer = dw_apb_delay_timer_read,
154};
155#endif
156
10021488 157static int num_called;
2e1773f8 158static int __init dw_apb_timer_init(struct device_node *timer)
af75655c 159{
10021488
HS
160 switch (num_called) {
161 case 0:
162 pr_debug("%s: found clockevent timer\n", __func__);
163 add_clockevent(timer);
10021488
HS
164 break;
165 case 1:
166 pr_debug("%s: found clocksource timer\n", __func__);
167 add_clocksource(timer);
10021488 168 init_sched_clock();
9115df89
JZ
169#ifdef CONFIG_ARM
170 dw_apb_delay_timer.freq = sched_rate;
171 register_current_timer_delay(&dw_apb_delay_timer);
172#endif
10021488
HS
173 break;
174 default:
175 break;
176 }
af75655c 177
10021488 178 num_called++;
2e1773f8
DL
179
180 return 0;
af75655c 181}
17273395
DL
182TIMER_OF_DECLARE(pc3x2_timer, "picochip,pc3x2-timer", dw_apb_timer_init);
183TIMER_OF_DECLARE(apb_timer_osc, "snps,dw-apb-timer-osc", dw_apb_timer_init);
184TIMER_OF_DECLARE(apb_timer_sp, "snps,dw-apb-timer-sp", dw_apb_timer_init);
185TIMER_OF_DECLARE(apb_timer, "snps,dw-apb-timer", dw_apb_timer_init);