Stephen Boyd | 49fc825 | 2014-03-21 17:59:37 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014, The Linux Foundation. All rights reserved. |
| 3 | * |
| 4 | * This software is licensed under the terms of the GNU General Public |
| 5 | * License version 2, as published by the Free Software Foundation, and |
| 6 | * may be copied, distributed, and modified under those terms. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | */ |
| 13 | #ifndef __QCOM_CLK_COMMON_H__ |
| 14 | #define __QCOM_CLK_COMMON_H__ |
| 15 | |
| 16 | struct platform_device; |
| 17 | struct regmap_config; |
| 18 | struct clk_regmap; |
| 19 | struct qcom_reset_map; |
Stephen Boyd | 5b6b749 | 2014-07-15 14:59:21 -0700 | [diff] [blame] | 20 | struct regmap; |
Stephen Boyd | 50c6a50 | 2014-09-04 13:21:50 -0700 | [diff] [blame] | 21 | struct freq_tbl; |
Georgi Djakov | 293d2e97 | 2015-03-20 18:30:26 +0200 | [diff] [blame] | 22 | struct clk_hw; |
Stephen Boyd | 49fc825 | 2014-03-21 17:59:37 -0700 | [diff] [blame] | 23 | |
Rajendra Nayak | 400d9fd | 2016-09-29 14:05:45 +0530 | [diff] [blame] | 24 | #define PLL_LOCK_COUNT_SHIFT 8 |
| 25 | #define PLL_LOCK_COUNT_MASK 0x3f |
| 26 | #define PLL_BIAS_COUNT_SHIFT 14 |
| 27 | #define PLL_BIAS_COUNT_MASK 0x3f |
| 28 | #define PLL_VOTE_FSM_ENA BIT(20) |
| 29 | #define PLL_VOTE_FSM_RESET BIT(21) |
| 30 | |
Stephen Boyd | 49fc825 | 2014-03-21 17:59:37 -0700 | [diff] [blame] | 31 | struct qcom_cc_desc { |
| 32 | const struct regmap_config *config; |
| 33 | struct clk_regmap **clks; |
| 34 | size_t num_clks; |
| 35 | const struct qcom_reset_map *resets; |
| 36 | size_t num_resets; |
Rajendra Nayak | 5e5cc24 | 2015-08-06 16:07:43 +0530 | [diff] [blame] | 37 | struct gdsc **gdscs; |
| 38 | size_t num_gdscs; |
Stephen Boyd | 49fc825 | 2014-03-21 17:59:37 -0700 | [diff] [blame] | 39 | }; |
| 40 | |
Abhishek Sahu | df96401 | 2017-12-13 19:55:33 +0530 | [diff] [blame] | 41 | /** |
| 42 | * struct parent_map - map table for source select configuration values |
| 43 | * @src: source |
| 44 | * @cfg: configuration value |
| 45 | */ |
| 46 | struct parent_map { |
| 47 | u8 src; |
| 48 | u8 cfg; |
| 49 | }; |
| 50 | |
Stephen Boyd | 50c6a50 | 2014-09-04 13:21:50 -0700 | [diff] [blame] | 51 | extern const struct freq_tbl *qcom_find_freq(const struct freq_tbl *f, |
| 52 | unsigned long rate); |
Rajendra Nayak | 081ba80 | 2016-11-21 12:07:11 +0530 | [diff] [blame] | 53 | extern const struct freq_tbl *qcom_find_freq_floor(const struct freq_tbl *f, |
| 54 | unsigned long rate); |
Rajendra Nayak | 400d9fd | 2016-09-29 14:05:45 +0530 | [diff] [blame] | 55 | extern void |
| 56 | qcom_pll_set_fsm_mode(struct regmap *m, u32 reg, u8 bias_count, u8 lock_count); |
Georgi Djakov | 293d2e97 | 2015-03-20 18:30:26 +0200 | [diff] [blame] | 57 | extern int qcom_find_src_index(struct clk_hw *hw, const struct parent_map *map, |
| 58 | u8 src); |
Stephen Boyd | 50c6a50 | 2014-09-04 13:21:50 -0700 | [diff] [blame] | 59 | |
Stephen Boyd | ee15faf | 2015-10-26 17:11:32 -0700 | [diff] [blame] | 60 | extern int qcom_cc_register_board_clk(struct device *dev, const char *path, |
| 61 | const char *name, unsigned long rate); |
| 62 | extern int qcom_cc_register_sleep_clk(struct device *dev); |
| 63 | |
Stephen Boyd | 5b6b749 | 2014-07-15 14:59:21 -0700 | [diff] [blame] | 64 | extern struct regmap *qcom_cc_map(struct platform_device *pdev, |
| 65 | const struct qcom_cc_desc *desc); |
| 66 | extern int qcom_cc_really_probe(struct platform_device *pdev, |
| 67 | const struct qcom_cc_desc *desc, |
| 68 | struct regmap *regmap); |
Stephen Boyd | 49fc825 | 2014-03-21 17:59:37 -0700 | [diff] [blame] | 69 | extern int qcom_cc_probe(struct platform_device *pdev, |
| 70 | const struct qcom_cc_desc *desc); |
| 71 | |
Stephen Boyd | 49fc825 | 2014-03-21 17:59:37 -0700 | [diff] [blame] | 72 | #endif |