]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/clk/qcom/clk-alpha-pll.h
Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
[mirror_ubuntu-jammy-kernel.git] / drivers / clk / qcom / clk-alpha-pll.h
CommitLineData
f9419783
TD
1/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (c) 2015, 2018, The Linux Foundation. All rights reserved. */
8ff1f4c4
SB
3
4#ifndef __QCOM_CLK_ALPHA_PLL_H__
5#define __QCOM_CLK_ALPHA_PLL_H__
6
7#include <linux/clk-provider.h>
8#include "clk-regmap.h"
9
28d3f06e
AS
10/* Alpha PLL types */
11enum {
12 CLK_ALPHA_PLL_TYPE_DEFAULT,
134b55b7 13 CLK_ALPHA_PLL_TYPE_HUAYRA,
c23e8a1f 14 CLK_ALPHA_PLL_TYPE_BRAMMO,
687d7a0c 15 CLK_ALPHA_PLL_TYPE_FABIA,
548a9095 16 CLK_ALPHA_PLL_TYPE_TRION,
0b014894 17 CLK_ALPHA_PLL_TYPE_LUCID = CLK_ALPHA_PLL_TYPE_TRION,
28d3f06e
AS
18 CLK_ALPHA_PLL_TYPE_MAX,
19};
20
21enum {
22 PLL_OFF_L_VAL,
548a9095 23 PLL_OFF_CAL_L_VAL,
28d3f06e
AS
24 PLL_OFF_ALPHA_VAL,
25 PLL_OFF_ALPHA_VAL_U,
26 PLL_OFF_USER_CTL,
27 PLL_OFF_USER_CTL_U,
548a9095 28 PLL_OFF_USER_CTL_U1,
28d3f06e
AS
29 PLL_OFF_CONFIG_CTL,
30 PLL_OFF_CONFIG_CTL_U,
548a9095 31 PLL_OFF_CONFIG_CTL_U1,
28d3f06e
AS
32 PLL_OFF_TEST_CTL,
33 PLL_OFF_TEST_CTL_U,
59128c20 34 PLL_OFF_TEST_CTL_U1,
28d3f06e 35 PLL_OFF_STATUS,
687d7a0c
AN
36 PLL_OFF_OPMODE,
37 PLL_OFF_FRAC,
548a9095 38 PLL_OFF_CAL_VAL,
28d3f06e
AS
39 PLL_OFF_MAX_REGS
40};
41
42extern const u8 clk_alpha_pll_regs[CLK_ALPHA_PLL_TYPE_MAX][PLL_OFF_MAX_REGS];
43
8ff1f4c4
SB
44struct pll_vco {
45 unsigned long min_freq;
46 unsigned long max_freq;
47 u32 val;
48};
49
03e342dc
LP
50#define VCO(a, b, c) { \
51 .val = a,\
52 .min_freq = b,\
53 .max_freq = c,\
54}
55
8ff1f4c4
SB
56/**
57 * struct clk_alpha_pll - phase locked loop (PLL)
58 * @offset: base address of registers
59 * @vco_table: array of VCO settings
28d3f06e 60 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
8ff1f4c4
SB
61 * @clkr: regmap clock handle
62 */
63struct clk_alpha_pll {
64 u32 offset;
28d3f06e 65 const u8 *regs;
8ff1f4c4
SB
66
67 const struct pll_vco *vco_table;
68 size_t num_vco;
feb65645 69#define SUPPORTS_OFFLINE_REQ BIT(0)
400d9fda 70#define SUPPORTS_FSM_MODE BIT(2)
472796de 71#define SUPPORTS_DYNAMIC_UPDATE BIT(3)
feb65645 72 u8 flags;
8ff1f4c4
SB
73
74 struct clk_regmap clkr;
75};
76
77/**
78 * struct clk_alpha_pll_postdiv - phase locked loop (PLL) post-divider
79 * @offset: base address of registers
28d3f06e 80 * @regs: alpha pll register map (see @clk_alpha_pll_regs)
8ff1f4c4 81 * @width: width of post-divider
687d7a0c
AN
82 * @post_div_shift: shift to differentiate between odd & even post-divider
83 * @post_div_table: table with PLL odd and even post-divider settings
84 * @num_post_div: Number of PLL post-divider settings
85 *
8ff1f4c4
SB
86 * @clkr: regmap clock handle
87 */
88struct clk_alpha_pll_postdiv {
89 u32 offset;
90 u8 width;
28d3f06e 91 const u8 *regs;
8ff1f4c4
SB
92
93 struct clk_regmap clkr;
687d7a0c
AN
94 int post_div_shift;
95 const struct clk_div_table *post_div_table;
96 size_t num_post_div;
8ff1f4c4
SB
97};
98
9f4e6277
RN
99struct alpha_pll_config {
100 u32 l;
101 u32 alpha;
c45ae598 102 u32 alpha_hi;
9f4e6277
RN
103 u32 config_ctl_val;
104 u32 config_ctl_hi_val;
59128c20 105 u32 config_ctl_hi1_val;
691865ba
TD
106 u32 user_ctl_val;
107 u32 user_ctl_hi_val;
59128c20 108 u32 user_ctl_hi1_val;
691865ba
TD
109 u32 test_ctl_val;
110 u32 test_ctl_hi_val;
59128c20 111 u32 test_ctl_hi1_val;
9f4e6277
RN
112 u32 main_output_mask;
113 u32 aux_output_mask;
114 u32 aux2_output_mask;
115 u32 early_output_mask;
c45ae598
AS
116 u32 alpha_en_mask;
117 u32 alpha_mode_mask;
9f4e6277
RN
118 u32 pre_div_val;
119 u32 pre_div_mask;
120 u32 post_div_val;
121 u32 post_div_mask;
122 u32 vco_val;
123 u32 vco_mask;
124};
125
8ff1f4c4 126extern const struct clk_ops clk_alpha_pll_ops;
4168c1ca 127extern const struct clk_ops clk_alpha_pll_fixed_ops;
feb65645 128extern const struct clk_ops clk_alpha_pll_hwfsm_ops;
8ff1f4c4 129extern const struct clk_ops clk_alpha_pll_postdiv_ops;
134b55b7 130extern const struct clk_ops clk_alpha_pll_huayra_ops;
23c68cc9 131extern const struct clk_ops clk_alpha_pll_postdiv_ro_ops;
8ff1f4c4 132
687d7a0c
AN
133extern const struct clk_ops clk_alpha_pll_fabia_ops;
134extern const struct clk_ops clk_alpha_pll_fixed_fabia_ops;
135extern const struct clk_ops clk_alpha_pll_postdiv_fabia_ops;
136
0b014894
JM
137extern const struct clk_ops clk_alpha_pll_trion_ops;
138extern const struct clk_ops clk_alpha_pll_fixed_trion_ops;
139extern const struct clk_ops clk_alpha_pll_postdiv_trion_ops;
140
d28b503c 141extern const struct clk_ops clk_alpha_pll_lucid_ops;
0b014894 142#define clk_alpha_pll_fixed_lucid_ops clk_alpha_pll_fixed_trion_ops
59128c20
TD
143extern const struct clk_ops clk_alpha_pll_postdiv_lucid_ops;
144
9f4e6277
RN
145void clk_alpha_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
146 const struct alpha_pll_config *config);
687d7a0c
AN
147void clk_fabia_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
148 const struct alpha_pll_config *config);
0b014894 149void clk_trion_pll_configure(struct clk_alpha_pll *pll, struct regmap *regmap,
59128c20 150 const struct alpha_pll_config *config);
0b014894
JM
151#define clk_lucid_pll_configure(pll, regmap, config) \
152 clk_trion_pll_configure(pll, regmap, config)
153
59128c20 154
9f4e6277 155
8ff1f4c4 156#endif