blob: 7794c7ac87e6e70da397f4537afe3e3ad5f5abea [file] [log] [blame]
Ander Conselvan de Oliveiraac7f11c2016-03-08 17:46:19 +02001/*
2 * Copyright © 2012-2016 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
25#ifndef _INTEL_DPLL_MGR_H_
26#define _INTEL_DPLL_MGR_H_
27
28struct drm_i915_private;
Ander Conselvan de Oliveirac2a9fcd2016-03-08 17:46:20 +020029struct intel_crtc;
30struct intel_crtc_state;
Ander Conselvan de Oliveira2edd6442016-03-08 17:46:21 +020031struct intel_shared_dpll;
Ander Conselvan de Oliveiraac7f11c2016-03-08 17:46:19 +020032
Ander Conselvan de Oliveiraf9476a62016-03-08 17:46:22 +020033struct intel_dpll_mgr;
34
Ander Conselvan de Oliveiraac7f11c2016-03-08 17:46:19 +020035enum intel_dpll_id {
36 DPLL_ID_PRIVATE = -1, /* non-shared dpll in use */
37 /* real shared dpll ids must be >= 0 */
38 DPLL_ID_PCH_PLL_A = 0,
39 DPLL_ID_PCH_PLL_B = 1,
40 /* hsw/bdw */
41 DPLL_ID_WRPLL1 = 0,
42 DPLL_ID_WRPLL2 = 1,
43 DPLL_ID_SPLL = 2,
44
45 /* skl */
46 DPLL_ID_SKL_DPLL1 = 0,
47 DPLL_ID_SKL_DPLL2 = 1,
48 DPLL_ID_SKL_DPLL3 = 2,
49};
50#define I915_NUM_PLLS 3
51
52struct intel_dpll_hw_state {
53 /* i9xx, pch plls */
54 uint32_t dpll;
55 uint32_t dpll_md;
56 uint32_t fp0;
57 uint32_t fp1;
58
59 /* hsw, bdw */
60 uint32_t wrpll;
61 uint32_t spll;
62
63 /* skl */
64 /*
65 * DPLL_CTRL1 has 6 bits for each each this DPLL. We store those in
66 * lower part of ctrl1 and they get shifted into position when writing
67 * the register. This allows us to easily compare the state to share
68 * the DPLL.
69 */
70 uint32_t ctrl1;
71 /* HDMI only, 0 when used for DP */
72 uint32_t cfgcr1, cfgcr2;
73
74 /* bxt */
75 uint32_t ebb0, ebb4, pll0, pll1, pll2, pll3, pll6, pll8, pll9, pll10,
76 pcsdw12;
77};
78
79struct intel_shared_dpll_config {
80 unsigned crtc_mask; /* mask of CRTCs sharing this PLL */
81 struct intel_dpll_hw_state hw_state;
82};
83
Ander Conselvan de Oliveira2edd6442016-03-08 17:46:21 +020084struct intel_shared_dpll_funcs {
Ander Conselvan de Oliveiraac7f11c2016-03-08 17:46:19 +020085 /* The mode_set hook is optional and should be used together with the
86 * intel_prepare_shared_dpll function. */
87 void (*mode_set)(struct drm_i915_private *dev_priv,
88 struct intel_shared_dpll *pll);
89 void (*enable)(struct drm_i915_private *dev_priv,
90 struct intel_shared_dpll *pll);
91 void (*disable)(struct drm_i915_private *dev_priv,
92 struct intel_shared_dpll *pll);
93 bool (*get_hw_state)(struct drm_i915_private *dev_priv,
94 struct intel_shared_dpll *pll,
95 struct intel_dpll_hw_state *hw_state);
96};
97
Ander Conselvan de Oliveira2edd6442016-03-08 17:46:21 +020098struct intel_shared_dpll {
99 struct intel_shared_dpll_config config;
100
101 int active; /* count of number of active CRTCs (i.e. DPMS on) */
102 bool on; /* is the PLL actually active? Disabled during modeset */
103 const char *name;
104 /* should match the index in the dev_priv->shared_dplls array */
105 enum intel_dpll_id id;
106
107 struct intel_shared_dpll_funcs funcs;
108};
109
Ander Conselvan de Oliveiraac7f11c2016-03-08 17:46:19 +0200110#define SKL_DPLL0 0
111#define SKL_DPLL1 1
112#define SKL_DPLL2 2
113#define SKL_DPLL3 3
114
Ander Conselvan de Oliveirac2a9fcd2016-03-08 17:46:20 +0200115/* shared dpll functions */
116struct intel_shared_dpll *
117intel_get_shared_dpll_by_id(struct drm_i915_private *dev_priv,
118 enum intel_dpll_id id);
119enum intel_dpll_id
120intel_get_shared_dpll_id(struct drm_i915_private *dev_priv,
121 struct intel_shared_dpll *pll);
122void
123intel_shared_dpll_config_get(struct intel_shared_dpll_config *config,
124 struct intel_shared_dpll *pll,
125 struct intel_crtc *crtc);
126void
127intel_shared_dpll_config_put(struct intel_shared_dpll_config *config,
128 struct intel_shared_dpll *pll,
129 struct intel_crtc *crtc);
130void assert_shared_dpll(struct drm_i915_private *dev_priv,
131 struct intel_shared_dpll *pll,
132 bool state);
133#define assert_shared_dpll_enabled(d, p) assert_shared_dpll(d, p, true)
134#define assert_shared_dpll_disabled(d, p) assert_shared_dpll(d, p, false)
135struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
136 struct intel_crtc_state *state);
137void intel_prepare_shared_dpll(struct intel_crtc *crtc);
138void intel_enable_shared_dpll(struct intel_crtc *crtc);
139void intel_disable_shared_dpll(struct intel_crtc *crtc);
140void intel_shared_dpll_commit(struct drm_atomic_state *state);
141void intel_shared_dpll_init(struct drm_device *dev);
142
Ander Conselvan de Oliveiraac7f11c2016-03-08 17:46:19 +0200143
144#endif /* _INTEL_DPLL_MGR_H_ */