Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 2 | /* |
| 3 | * DEC I/O ASIC's counter clocksource |
| 4 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 5 | * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org> |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 6 | */ |
| 7 | #include <linux/clocksource.h> |
Deng-Cheng Zhu | 7cb24b7 | 2015-03-07 10:30:28 -0800 | [diff] [blame] | 8 | #include <linux/sched_clock.h> |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 9 | #include <linux/init.h> |
| 10 | |
| 11 | #include <asm/ds1287.h> |
| 12 | #include <asm/time.h> |
| 13 | #include <asm/dec/ioasic.h> |
| 14 | #include <asm/dec/ioasic_addrs.h> |
| 15 | |
Thomas Gleixner | a5a1d1c | 2016-12-21 20:32:01 +0100 | [diff] [blame] | 16 | static u64 dec_ioasic_hpt_read(struct clocksource *cs) |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 17 | { |
| 18 | return ioasic_read(IO_REG_FCTR); |
| 19 | } |
| 20 | |
| 21 | static struct clocksource clocksource_dec = { |
| 22 | .name = "dec-ioasic", |
| 23 | .read = dec_ioasic_hpt_read, |
| 24 | .mask = CLOCKSOURCE_MASK(32), |
| 25 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 26 | }; |
| 27 | |
Deng-Cheng Zhu | 7cb24b7 | 2015-03-07 10:30:28 -0800 | [diff] [blame] | 28 | static u64 notrace dec_ioasic_read_sched_clock(void) |
| 29 | { |
| 30 | return ioasic_read(IO_REG_FCTR); |
| 31 | } |
| 32 | |
Maciej W. Rozycki | daed128 | 2013-09-12 12:01:53 +0100 | [diff] [blame] | 33 | int __init dec_ioasic_clocksource_init(void) |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 34 | { |
| 35 | unsigned int freq; |
| 36 | u32 start, end; |
Maciej W. Rozycki | 8533966 | 2013-09-04 23:47:45 +0100 | [diff] [blame] | 37 | int i = HZ / 8; |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 38 | |
Maciej W. Rozycki | 8533966 | 2013-09-04 23:47:45 +0100 | [diff] [blame] | 39 | ds1287_timer_state(); |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 40 | while (!ds1287_timer_state()) |
| 41 | ; |
| 42 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 43 | start = dec_ioasic_hpt_read(&clocksource_dec); |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 44 | |
| 45 | while (i--) |
| 46 | while (!ds1287_timer_state()) |
| 47 | ; |
| 48 | |
Magnus Damm | 8e19608 | 2009-04-21 12:24:00 -0700 | [diff] [blame] | 49 | end = dec_ioasic_hpt_read(&clocksource_dec); |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 50 | |
Maciej W. Rozycki | 8533966 | 2013-09-04 23:47:45 +0100 | [diff] [blame] | 51 | freq = (end - start) * 8; |
Maciej W. Rozycki | daed128 | 2013-09-12 12:01:53 +0100 | [diff] [blame] | 52 | |
| 53 | /* An early revision of the I/O ASIC didn't have the counter. */ |
| 54 | if (!freq) |
| 55 | return -ENXIO; |
| 56 | |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 57 | printk(KERN_INFO "I/O ASIC clock frequency %dHz\n", freq); |
| 58 | |
| 59 | clocksource_dec.rating = 200 + freq / 10000000; |
John Stultz | 75c4fd8 | 2010-04-26 20:23:11 -0700 | [diff] [blame] | 60 | clocksource_register_hz(&clocksource_dec, freq); |
Deng-Cheng Zhu | 7cb24b7 | 2015-03-07 10:30:28 -0800 | [diff] [blame] | 61 | |
| 62 | sched_clock_register(dec_ioasic_read_sched_clock, 32, freq); |
| 63 | |
Maciej W. Rozycki | daed128 | 2013-09-12 12:01:53 +0100 | [diff] [blame] | 64 | return 0; |
Yoichi Yuasa | 4247417 | 2008-04-24 09:48:40 +0900 | [diff] [blame] | 65 | } |