1 // SPDX-License-Identifier: GPL-2.0-only
3 * OMAP 32ksynctimer/counter_32k-related code
5 * Copyright (C) 2009 Texas Instruments
6 * Copyright (C) 2010 Nokia Corporation
7 * Tony Lindgren <tony@atomide.com>
8 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
10 * NOTE: This timer is not the same timer as the old OMAP1 MPU timer.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/clk.h>
15 #include <linux/err.h>
17 #include <linux/clocksource.h>
18 #include <linux/sched_clock.h>
20 #include <asm/mach/time.h>
22 #include <plat/counter-32k.h>
24 /* OMAP2_32KSYNCNT_CR_OFF: offset of 32ksync counter register */
25 #define OMAP2_32KSYNCNT_REV_OFF 0x0
26 #define OMAP2_32KSYNCNT_REV_SCHEME (0x3 << 30)
27 #define OMAP2_32KSYNCNT_CR_OFF_LOW 0x10
28 #define OMAP2_32KSYNCNT_CR_OFF_HIGH 0x30
31 * 32KHz clocksource ... always available, on pretty most chips except
32 * OMAP 730 and 1510. Other timers could be used as clocksources, with
33 * higher resolution in free-running counter modes (e.g. 12 MHz xtal),
34 * but systems won't necessarily want to spend resources that way.
36 static void __iomem
*sync32k_cnt_reg
;
38 static u64 notrace
omap_32k_read_sched_clock(void)
40 return sync32k_cnt_reg
? readl_relaxed(sync32k_cnt_reg
) : 0;
44 * omap_read_persistent_clock64 - Return time from a persistent clock.
46 * Reads the time from a source which isn't disabled during PM, the
47 * 32k sync timer. Convert the cycles elapsed since last read into
48 * nsecs and adds to a monotonically increasing timespec64.
50 static struct timespec64 persistent_ts
;
51 static cycles_t cycles
;
52 static unsigned int persistent_mult
, persistent_shift
;
54 static void omap_read_persistent_clock64(struct timespec64
*ts
)
56 unsigned long long nsecs
;
60 cycles
= sync32k_cnt_reg
? readl_relaxed(sync32k_cnt_reg
) : 0;
62 nsecs
= clocksource_cyc2ns(cycles
- last_cycles
,
63 persistent_mult
, persistent_shift
);
65 timespec64_add_ns(&persistent_ts
, nsecs
);
71 * omap_init_clocksource_32k - setup and register counter 32k as a
73 * @pbase: base addr of counter_32k module
74 * @size: size of counter_32k to map
76 * Returns 0 upon success or negative error code upon failure.
79 int __init
omap_init_clocksource_32k(void __iomem
*vbase
)
84 * 32k sync Counter IP register offsets vary between the
85 * highlander version and the legacy ones.
86 * The 'SCHEME' bits(30-31) of the revision register is used
87 * to identify the version.
89 if (readl_relaxed(vbase
+ OMAP2_32KSYNCNT_REV_OFF
) &
90 OMAP2_32KSYNCNT_REV_SCHEME
)
91 sync32k_cnt_reg
= vbase
+ OMAP2_32KSYNCNT_CR_OFF_HIGH
;
93 sync32k_cnt_reg
= vbase
+ OMAP2_32KSYNCNT_CR_OFF_LOW
;
96 * 120000 rough estimate from the calculations in
97 * __clocksource_update_freq_scale.
99 clocks_calc_mult_shift(&persistent_mult
, &persistent_shift
,
100 32768, NSEC_PER_SEC
, 120000);
102 ret
= clocksource_mmio_init(sync32k_cnt_reg
, "32k_counter", 32768,
103 250, 32, clocksource_mmio_readl_up
);
105 pr_err("32k_counter: can't register clocksource\n");
109 sched_clock_register(omap_32k_read_sched_clock
, 32, 32768);
110 register_persistent_clock(omap_read_persistent_clock64
);
111 pr_info("OMAP clocksource: 32k_counter at 32768 Hz\n");