blob: f7599785c08b2c8443ecd9702796273d8dff680d [file] [log] [blame]
Stephen Boydbcd61c02014-01-15 10:47:25 -08001/*
Amit Nischal0e1c06b2018-05-07 10:47:33 +05302 * Copyright (c) 2013, 2016-2018, The Linux Foundation. All rights reserved.
Stephen Boydbcd61c02014-01-15 10:47:25 -08003 *
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_RCG_H__
15#define __QCOM_CLK_RCG_H__
16
17#include <linux/clk-provider.h>
18#include "clk-regmap.h"
19
20struct freq_tbl {
21 unsigned long freq;
22 u8 src;
23 u8 pre_div;
24 u16 m;
25 u16 n;
26};
27
28/**
Georgi Djakov293d2e972015-03-20 18:30:26 +020029 * struct parent_map - map table for PLL source select configuration values
30 * @src: source PLL
31 * @cfg: configuration value
32 */
33struct parent_map {
34 u8 src;
35 u8 cfg;
36};
37
38/**
Stephen Boydbcd61c02014-01-15 10:47:25 -080039 * struct mn - M/N:D counter
40 * @mnctr_en_bit: bit to enable mn counter
41 * @mnctr_reset_bit: bit to assert mn counter reset
42 * @mnctr_mode_shift: lowest bit of mn counter mode field
43 * @n_val_shift: lowest bit of n value field
44 * @m_val_shift: lowest bit of m value field
45 * @width: number of bits in m/n/d values
46 * @reset_in_cc: true if the mnctr_reset_bit is in the CC register
47 */
48struct mn {
49 u8 mnctr_en_bit;
50 u8 mnctr_reset_bit;
51 u8 mnctr_mode_shift;
52#define MNCTR_MODE_DUAL 0x2
53#define MNCTR_MODE_MASK 0x3
54 u8 n_val_shift;
55 u8 m_val_shift;
56 u8 width;
57 bool reset_in_cc;
58};
59
60/**
61 * struct pre_div - pre-divider
62 * @pre_div_shift: lowest bit of pre divider field
63 * @pre_div_width: number of bits in predivider
64 */
65struct pre_div {
66 u8 pre_div_shift;
67 u8 pre_div_width;
68};
69
70/**
71 * struct src_sel - source selector
72 * @src_sel_shift: lowest bit of source selection field
73 * @parent_map: map from software's parent index to hardware's src_sel field
74 */
75struct src_sel {
76 u8 src_sel_shift;
77#define SRC_SEL_MASK 0x7
Georgi Djakov293d2e972015-03-20 18:30:26 +020078 const struct parent_map *parent_map;
Stephen Boydbcd61c02014-01-15 10:47:25 -080079};
80
81/**
82 * struct clk_rcg - root clock generator
83 *
84 * @ns_reg: NS register
85 * @md_reg: MD register
86 * @mn: mn counter
87 * @p: pre divider
88 * @s: source selector
89 * @freq_tbl: frequency table
90 * @clkr: regmap clock handle
91 * @lock: register lock
92 *
93 */
94struct clk_rcg {
95 u32 ns_reg;
96 u32 md_reg;
97
98 struct mn mn;
99 struct pre_div p;
100 struct src_sel s;
101
102 const struct freq_tbl *freq_tbl;
103
104 struct clk_regmap clkr;
105};
106
107extern const struct clk_ops clk_rcg_ops;
Stephen Boyd404c1ff2014-07-11 12:55:27 -0700108extern const struct clk_ops clk_rcg_bypass_ops;
Archit Tanejad8aa2be2015-10-14 18:24:44 +0530109extern const struct clk_ops clk_rcg_bypass2_ops;
110extern const struct clk_ops clk_rcg_pixel_ops;
111extern const struct clk_ops clk_rcg_esc_ops;
Stephen Boyd9d3745d2015-03-06 15:41:53 -0800112extern const struct clk_ops clk_rcg_lcc_ops;
Stephen Boydbcd61c02014-01-15 10:47:25 -0800113
114#define to_clk_rcg(_hw) container_of(to_clk_regmap(_hw), struct clk_rcg, clkr)
115
116/**
117 * struct clk_dyn_rcg - root clock generator with glitch free mux
118 *
119 * @mux_sel_bit: bit to switch glitch free mux
Stephen Boyd229fd4a2014-04-28 15:59:16 -0700120 * @ns_reg: NS0 and NS1 register
Stephen Boydbcd61c02014-01-15 10:47:25 -0800121 * @md_reg: MD0 and MD1 register
Stephen Boyd229fd4a2014-04-28 15:59:16 -0700122 * @bank_reg: register to XOR @mux_sel_bit into to switch glitch free mux
Stephen Boydbcd61c02014-01-15 10:47:25 -0800123 * @mn: mn counter (banked)
124 * @s: source selector (banked)
125 * @freq_tbl: frequency table
126 * @clkr: regmap clock handle
127 * @lock: register lock
128 *
129 */
130struct clk_dyn_rcg {
Stephen Boyd229fd4a2014-04-28 15:59:16 -0700131 u32 ns_reg[2];
Stephen Boydbcd61c02014-01-15 10:47:25 -0800132 u32 md_reg[2];
Stephen Boyd229fd4a2014-04-28 15:59:16 -0700133 u32 bank_reg;
Stephen Boydbcd61c02014-01-15 10:47:25 -0800134
135 u8 mux_sel_bit;
136
137 struct mn mn[2];
138 struct pre_div p[2];
139 struct src_sel s[2];
140
141 const struct freq_tbl *freq_tbl;
142
143 struct clk_regmap clkr;
144};
145
146extern const struct clk_ops clk_dyn_rcg_ops;
147
148#define to_clk_dyn_rcg(_hw) \
149 container_of(to_clk_regmap(_hw), struct clk_dyn_rcg, clkr)
150
151/**
152 * struct clk_rcg2 - root clock generator
153 *
154 * @cmd_rcgr: corresponds to *_CMD_RCGR
155 * @mnd_width: number of bits in m/n/d values
156 * @hid_width: number of bits in half integer divider
157 * @parent_map: map from software's parent index to hardware's src_sel field
158 * @freq_tbl: frequency table
Georgi Djakovd0428772015-09-17 19:39:27 +0300159 * @current_freq: last cached frequency when using branches with shared RCGs
Deepak Katragadda3f55a812016-11-21 12:18:48 -0800160 * @enable_safe_config: When set, the RCG is parked at CXO when it's disabled
Stephen Boydbcd61c02014-01-15 10:47:25 -0800161 * @clkr: regmap clock handle
Deepak Katragadda0b0737d2017-04-04 11:26:43 -0700162 * @flags: additional flag parameters for the RCG
Stephen Boydbcd61c02014-01-15 10:47:25 -0800163 */
164struct clk_rcg2 {
165 u32 cmd_rcgr;
166 u8 mnd_width;
167 u8 hid_width;
Georgi Djakov293d2e972015-03-20 18:30:26 +0200168 const struct parent_map *parent_map;
Stephen Boydbcd61c02014-01-15 10:47:25 -0800169 const struct freq_tbl *freq_tbl;
Georgi Djakovd0428772015-09-17 19:39:27 +0300170 unsigned long current_freq;
Deepak Katragadda3f55a812016-11-21 12:18:48 -0800171 bool enable_safe_config;
Stephen Boydbcd61c02014-01-15 10:47:25 -0800172 struct clk_regmap clkr;
Deepak Katragadda0b0737d2017-04-04 11:26:43 -0700173 u8 flags;
174#define FORCE_ENABLE_RCG BIT(0)
Taniya Das1e69ca12017-04-13 15:19:58 +0530175#define DFS_ENABLE_RCG BIT(1)
Stephen Boydbcd61c02014-01-15 10:47:25 -0800176};
177
178#define to_clk_rcg2(_hw) container_of(to_clk_regmap(_hw), struct clk_rcg2, clkr)
179
180extern const struct clk_ops clk_rcg2_ops;
Georgi Djakovd0428772015-09-17 19:39:27 +0300181extern const struct clk_ops clk_rcg2_shared_ops;
Stephen Boyd99cbd062014-05-16 16:07:11 -0700182extern const struct clk_ops clk_edp_pixel_ops;
183extern const struct clk_ops clk_byte_ops;
Stephen Boyd8ee9c7d2015-04-09 23:02:02 -0700184extern const struct clk_ops clk_byte2_ops;
Stephen Boyd99cbd062014-05-16 16:07:11 -0700185extern const struct clk_ops clk_pixel_ops;
Stephen Boyd55213e12015-11-30 17:31:41 -0800186extern const struct clk_ops clk_gfx3d_ops;
Taniya Das5c642342016-11-21 11:35:12 +0530187extern const struct clk_ops clk_dp_ops;
Amit Nischal0e1c06b2018-05-07 10:47:33 +0530188extern const struct clk_ops clk_esc_ops;
Stephen Boydbcd61c02014-01-15 10:47:25 -0800189
Taniya Das1e69ca12017-04-13 15:19:58 +0530190extern int clk_rcg2_get_dfs_clock_rate(struct clk_rcg2 *clk,
191 struct device *dev, u8 rcg_flags);
Amit Nischalebc33192017-06-14 11:39:16 +0530192extern unsigned long
193clk_rcg2_calc_rate(unsigned long rate, u32 m, u32 n, u32 mode, u32 hid_div);
Stephen Boydbcd61c02014-01-15 10:47:25 -0800194#endif