diff options
Diffstat (limited to 'drivers/clocksource/dw_apb_timer_of.c')
-rw-r--r-- | drivers/clocksource/dw_apb_timer_of.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/clocksource/dw_apb_timer_of.c b/drivers/clocksource/dw_apb_timer_of.c index a19a3f619cc7..860843cef572 100644 --- a/drivers/clocksource/dw_apb_timer_of.c +++ b/drivers/clocksource/dw_apb_timer_of.c | |||
@@ -16,6 +16,7 @@ | |||
16 | * You should have received a copy of the GNU General Public License | 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/>. | 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
18 | */ | 18 | */ |
19 | #include <linux/delay.h> | ||
19 | #include <linux/dw_apb_timer.h> | 20 | #include <linux/dw_apb_timer.h> |
20 | #include <linux/of.h> | 21 | #include <linux/of.h> |
21 | #include <linux/of_address.h> | 22 | #include <linux/of_address.h> |
@@ -130,6 +131,17 @@ static void __init init_sched_clock(void) | |||
130 | sched_clock_register(read_sched_clock, 32, sched_rate); | 131 | sched_clock_register(read_sched_clock, 32, sched_rate); |
131 | } | 132 | } |
132 | 133 | ||
134 | #ifdef CONFIG_ARM | ||
135 | static unsigned long dw_apb_delay_timer_read(void) | ||
136 | { | ||
137 | return ~readl_relaxed(sched_io_base); | ||
138 | } | ||
139 | |||
140 | static struct delay_timer dw_apb_delay_timer = { | ||
141 | .read_current_timer = dw_apb_delay_timer_read, | ||
142 | }; | ||
143 | #endif | ||
144 | |||
133 | static int num_called; | 145 | static int num_called; |
134 | static void __init dw_apb_timer_init(struct device_node *timer) | 146 | static void __init dw_apb_timer_init(struct device_node *timer) |
135 | { | 147 | { |
@@ -142,6 +154,10 @@ static void __init dw_apb_timer_init(struct device_node *timer) | |||
142 | pr_debug("%s: found clocksource timer\n", __func__); | 154 | pr_debug("%s: found clocksource timer\n", __func__); |
143 | add_clocksource(timer); | 155 | add_clocksource(timer); |
144 | init_sched_clock(); | 156 | init_sched_clock(); |
157 | #ifdef CONFIG_ARM | ||
158 | dw_apb_delay_timer.freq = sched_rate; | ||
159 | register_current_timer_delay(&dw_apb_delay_timer); | ||
160 | #endif | ||
145 | break; | 161 | break; |
146 | default: | 162 | default: |
147 | break; | 163 | break; |