1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * DEC I/O ASIC's counter clocksource
5 * Copyright (C) 2008 Yoichi Yuasa <yuasa@linux-mips.org>
7 #include <linux/clocksource.h>
8 #include <linux/sched_clock.h>
9 #include <linux/init.h>
11 #include <asm/ds1287.h>
13 #include <asm/dec/ioasic.h>
14 #include <asm/dec/ioasic_addrs.h>
16 static u64
dec_ioasic_hpt_read(struct clocksource
*cs
)
18 return ioasic_read(IO_REG_FCTR
);
21 static struct clocksource clocksource_dec
= {
23 .read
= dec_ioasic_hpt_read
,
24 .mask
= CLOCKSOURCE_MASK(32),
25 .flags
= CLOCK_SOURCE_IS_CONTINUOUS
,
28 static u64 notrace
dec_ioasic_read_sched_clock(void)
30 return ioasic_read(IO_REG_FCTR
);
33 int __init
dec_ioasic_clocksource_init(void)
40 while (!ds1287_timer_state())
43 start
= dec_ioasic_hpt_read(&clocksource_dec
);
46 while (!ds1287_timer_state())
49 end
= dec_ioasic_hpt_read(&clocksource_dec
);
51 freq
= (end
- start
) * 8;
53 /* An early revision of the I/O ASIC didn't have the counter. */
57 printk(KERN_INFO
"I/O ASIC clock frequency %dHz\n", freq
);
59 clocksource_dec
.rating
= 200 + freq
/ 10000000;
60 clocksource_register_hz(&clocksource_dec
, freq
);
62 sched_clock_register(dec_ioasic_read_sched_clock
, 32, freq
);