blob: 7fee17e3d24193c105f44f61ff2f099dc56811eb [file] [log] [blame]
Thomas Chouc8a7ba92015-10-09 13:46:34 +08001/*
2 * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef _TIMER_H_
8#define _TIMER_H_
9
10/*
Bin Meng9ca07eb2015-11-24 13:31:17 -070011 * timer_conv_64 - convert 32-bit counter value to 64-bit
12 *
13 * @count: 32-bit counter value
14 * @return: 64-bit counter value
15 */
16u64 timer_conv_64(u32 count);
17
18/*
Thomas Chouc8a7ba92015-10-09 13:46:34 +080019 * Get the current timer count
20 *
Bin Meng435ae762015-11-13 00:11:14 -080021 * @dev: The timer device
Thomas Chouc8a7ba92015-10-09 13:46:34 +080022 * @count: pointer that returns the current timer count
23 * @return: 0 if OK, -ve on error
24 */
Bin Meng9ca07eb2015-11-24 13:31:17 -070025int timer_get_count(struct udevice *dev, u64 *count);
Bin Meng435ae762015-11-13 00:11:14 -080026
Thomas Chouc8a7ba92015-10-09 13:46:34 +080027/*
28 * Get the timer input clock frequency
29 *
Bin Meng435ae762015-11-13 00:11:14 -080030 * @dev: The timer device
Thomas Chouc8a7ba92015-10-09 13:46:34 +080031 * @return: the timer input clock frequency
32 */
33unsigned long timer_get_rate(struct udevice *dev);
34
35/*
Bin Meng435ae762015-11-13 00:11:14 -080036 * struct timer_ops - Driver model timer operations
Thomas Chouc8a7ba92015-10-09 13:46:34 +080037 *
Bin Meng435ae762015-11-13 00:11:14 -080038 * The uclass interface is implemented by all timer devices which use
Thomas Chouc8a7ba92015-10-09 13:46:34 +080039 * driver model.
40 */
41struct timer_ops {
42 /*
43 * Get the current timer count
44 *
Bin Meng435ae762015-11-13 00:11:14 -080045 * @dev: The timer device
Bin Meng9ca07eb2015-11-24 13:31:17 -070046 * @count: pointer that returns the current 64-bit timer count
Thomas Chouc8a7ba92015-10-09 13:46:34 +080047 * @return: 0 if OK, -ve on error
48 */
Bin Meng9ca07eb2015-11-24 13:31:17 -070049 int (*get_count)(struct udevice *dev, u64 *count);
Thomas Chouc8a7ba92015-10-09 13:46:34 +080050};
51
52/*
53 * struct timer_dev_priv - information about a device used by the uclass
54 *
55 * @clock_rate: the timer input clock frequency
56 */
57struct timer_dev_priv {
58 unsigned long clock_rate;
59};
60
61#endif /* _TIMER_H_ */