2 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
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.
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.
14 #ifndef __QCOM_CLK_ALPHA_PLL_H__
15 #define __QCOM_CLK_ALPHA_PLL_H__
17 #include <linux/clk-provider.h>
18 #include "clk-regmap.h"
22 CLK_ALPHA_PLL_TYPE_DEFAULT
,
23 CLK_ALPHA_PLL_TYPE_HUAYRA
,
24 CLK_ALPHA_PLL_TYPE_BRAMMO
,
25 CLK_ALPHA_PLL_TYPE_MAX
,
42 extern const u8 clk_alpha_pll_regs
[CLK_ALPHA_PLL_TYPE_MAX
][PLL_OFF_MAX_REGS
];
45 unsigned long min_freq
;
46 unsigned long max_freq
;
51 * struct clk_alpha_pll - phase locked loop (PLL)
52 * @offset: base address of registers
53 * @vco_table: array of VCO settings
54 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
55 * @clkr: regmap clock handle
57 struct clk_alpha_pll
{
61 const struct pll_vco
*vco_table
;
63 #define SUPPORTS_OFFLINE_REQ BIT(0)
64 #define SUPPORTS_FSM_MODE BIT(2)
65 #define SUPPORTS_DYNAMIC_UPDATE BIT(3)
68 struct clk_regmap clkr
;
72 * struct clk_alpha_pll_postdiv - phase locked loop (PLL) post-divider
73 * @offset: base address of registers
74 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
75 * @width: width of post-divider
76 * @clkr: regmap clock handle
78 struct clk_alpha_pll_postdiv
{
83 struct clk_regmap clkr
;
86 struct alpha_pll_config
{
91 u32 config_ctl_hi_val
;
95 u32 early_output_mask
;
106 extern const struct clk_ops clk_alpha_pll_ops
;
107 extern const struct clk_ops clk_alpha_pll_hwfsm_ops
;
108 extern const struct clk_ops clk_alpha_pll_postdiv_ops
;
109 extern const struct clk_ops clk_alpha_pll_huayra_ops
;
110 extern const struct clk_ops clk_alpha_pll_postdiv_ro_ops
;
112 void clk_alpha_pll_configure(struct clk_alpha_pll
*pll
, struct regmap
*regmap
,
113 const struct alpha_pll_config
*config
);