Thomas Gleixner | 9c92ab6 | 2019-05-29 07:17:56 -0700 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Josh Cartwright | 4116076 | 2015-01-19 18:05:30 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014, The Linux Foundation. All rights reserved. |
Josh Cartwright | 4116076 | 2015-01-19 18:05:30 -0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __QCOM_CLK_REGMAP_DIVIDER_H__ |
| 7 | #define __QCOM_CLK_REGMAP_DIVIDER_H__ |
| 8 | |
| 9 | #include <linux/clk-provider.h> |
| 10 | #include "clk-regmap.h" |
| 11 | |
| 12 | struct clk_regmap_div { |
| 13 | u32 reg; |
| 14 | u32 shift; |
| 15 | u32 width; |
| 16 | struct clk_regmap clkr; |
| 17 | }; |
| 18 | |
| 19 | extern const struct clk_ops clk_regmap_div_ops; |
Abhishek Sahu | f933d38 | 2017-12-13 19:55:32 +0530 | [diff] [blame] | 20 | extern const struct clk_ops clk_regmap_div_ro_ops; |
Josh Cartwright | 4116076 | 2015-01-19 18:05:30 -0800 | [diff] [blame] | 21 | |
| 22 | #endif |