blob: bcc6676a8e7a30ee455cdf69f458f282f411d977 [file] [log] [blame]
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -08001/*
2 * Copyright (c) 2015, 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
14#ifndef __QCOM_CLK_ALPHA_PLL_H__
15#define __QCOM_CLK_ALPHA_PLL_H__
16
17#include <linux/clk-provider.h>
18#include "clk-regmap.h"
19
Abhishek Sahu28d3f062017-09-28 23:20:40 +053020/* Alpha PLL types */
21enum {
22 CLK_ALPHA_PLL_TYPE_DEFAULT,
Abhishek Sahu134b55b2017-09-28 23:20:46 +053023 CLK_ALPHA_PLL_TYPE_HUAYRA,
Abhishek Sahuc23e8a12017-09-28 23:20:48 +053024 CLK_ALPHA_PLL_TYPE_BRAMMO,
Abhishek Sahu28d3f062017-09-28 23:20:40 +053025 CLK_ALPHA_PLL_TYPE_MAX,
26};
27
28enum {
29 PLL_OFF_L_VAL,
30 PLL_OFF_ALPHA_VAL,
31 PLL_OFF_ALPHA_VAL_U,
32 PLL_OFF_USER_CTL,
33 PLL_OFF_USER_CTL_U,
34 PLL_OFF_CONFIG_CTL,
35 PLL_OFF_CONFIG_CTL_U,
36 PLL_OFF_TEST_CTL,
37 PLL_OFF_TEST_CTL_U,
38 PLL_OFF_STATUS,
39 PLL_OFF_MAX_REGS
40};
41
42extern const u8 clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_MAX][PLL_OFF_MAX_REGS];
43
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -080044struct pll_vco {
45 unsigned long min_freq;
46 unsigned long max_freq;
47 u32 val;
48};
49
50/**
51 * struct clk_alpha_pll - phase locked loop (PLL)
52 * @offset: base address of registers
53 * @vco_table: array of VCO settings
Abhishek Sahu28d3f062017-09-28 23:20:40 +053054 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -080055 * @clkr: regmap clock handle
56 */
57struct clk_alpha_pll {
58 u32 offset;
Abhishek Sahu28d3f062017-09-28 23:20:40 +053059 const u8 *regs;
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -080060
61 const struct pll_vco *vco_table;
62 size_t num_vco;
Rajendra Nayakfeb65642016-09-29 14:05:42 +053063#define SUPPORTS_OFFLINE_REQ BIT(0)
Rajendra Nayak400d9fd2016-09-29 14:05:45 +053064#define SUPPORTS_FSM_MODE BIT(2)
Abhishek Sahu472796d2017-09-28 23:20:45 +053065#define SUPPORTS_DYNAMIC_UPDATE BIT(3)
Rajendra Nayakfeb65642016-09-29 14:05:42 +053066 u8 flags;
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -080067
68 struct clk_regmap clkr;
69};
70
71/**
72 * struct clk_alpha_pll_postdiv - phase locked loop (PLL) post-divider
73 * @offset: base address of registers
Abhishek Sahu28d3f062017-09-28 23:20:40 +053074 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -080075 * @width: width of post-divider
76 * @clkr: regmap clock handle
77 */
78struct clk_alpha_pll_postdiv {
79 u32 offset;
80 u8 width;
Abhishek Sahu28d3f062017-09-28 23:20:40 +053081 const u8 *regs;
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -080082
83 struct clk_regmap clkr;
84};
85
Rajendra Nayak9f4e6272016-09-29 14:05:43 +053086struct alpha_pll_config {
87 u32 l;
88 u32 alpha;
Abhishek Sahuc45ae592017-09-28 23:20:44 +053089 u32 alpha_hi;
Rajendra Nayak9f4e6272016-09-29 14:05:43 +053090 u32 config_ctl_val;
91 u32 config_ctl_hi_val;
92 u32 main_output_mask;
93 u32 aux_output_mask;
94 u32 aux2_output_mask;
95 u32 early_output_mask;
Abhishek Sahuc45ae592017-09-28 23:20:44 +053096 u32 alpha_en_mask;
97 u32 alpha_mode_mask;
Rajendra Nayak9f4e6272016-09-29 14:05:43 +053098 u32 pre_div_val;
99 u32 pre_div_mask;
100 u32 post_div_val;
101 u32 post_div_mask;
102 u32 vco_val;
103 u32 vco_mask;
104};
105
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -0800106extern const struct clk_ops clk_alpha_pll_ops;
Rajendra Nayakfeb65642016-09-29 14:05:42 +0530107extern const struct clk_ops clk_alpha_pll_hwfsm_ops;
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -0800108extern const struct clk_ops clk_alpha_pll_postdiv_ops;
Abhishek Sahu134b55b2017-09-28 23:20:46 +0530109extern const struct clk_ops clk_alpha_pll_huayra_ops;
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -0800110
Rajendra Nayak9f4e6272016-09-29 14:05:43 +0530111void clk_alpha_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
112 const struct alpha_pll_config *config);
113
Stephen Boyd8ff1f4c2015-11-30 17:31:39 -0800114#endif