blob: 26c12a3fe4301f25c53d5e0f431c0eaa4076d043 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors: Dave Airlie
24 * Alex Deucher
25 */
26#include <drm/drmP.h>
27#include <drm/drm_crtc_helper.h>
28#include <drm/radeon_drm.h>
Ben Skeggs68adac52010-04-28 11:46:42 +100029#include <drm/drm_fixed.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020030#include "radeon.h"
31#include "atom.h"
32#include "atom-bits.h"
33
Jerome Glissec93bb852009-07-13 21:04:08 +020034static void atombios_overscan_setup(struct drm_crtc *crtc,
35 struct drm_display_mode *mode,
36 struct drm_display_mode *adjusted_mode)
37{
38 struct drm_device *dev = crtc->dev;
39 struct radeon_device *rdev = dev->dev_private;
40 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
41 SET_CRTC_OVERSCAN_PS_ALLOCATION args;
42 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_OverScan);
43 int a1, a2;
44
45 memset(&args, 0, sizeof(args));
46
Jerome Glissec93bb852009-07-13 21:04:08 +020047 args.ucCRTC = radeon_crtc->crtc_id;
48
49 switch (radeon_crtc->rmx_type) {
50 case RMX_CENTER:
Cédric Cano45894332011-02-11 19:45:37 -050051 args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2);
52 args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2);
53 args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2);
54 args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2);
Jerome Glissec93bb852009-07-13 21:04:08 +020055 break;
56 case RMX_ASPECT:
57 a1 = mode->crtc_vdisplay * adjusted_mode->crtc_hdisplay;
58 a2 = adjusted_mode->crtc_vdisplay * mode->crtc_hdisplay;
59
60 if (a1 > a2) {
Cédric Cano45894332011-02-11 19:45:37 -050061 args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2);
62 args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2);
Jerome Glissec93bb852009-07-13 21:04:08 +020063 } else if (a2 > a1) {
Alex Deucher942b0e92011-03-14 23:18:00 -040064 args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
65 args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
Jerome Glissec93bb852009-07-13 21:04:08 +020066 }
Jerome Glissec93bb852009-07-13 21:04:08 +020067 break;
68 case RMX_FULL:
69 default:
Cédric Cano45894332011-02-11 19:45:37 -050070 args.usOverscanRight = cpu_to_le16(radeon_crtc->h_border);
71 args.usOverscanLeft = cpu_to_le16(radeon_crtc->h_border);
72 args.usOverscanBottom = cpu_to_le16(radeon_crtc->v_border);
73 args.usOverscanTop = cpu_to_le16(radeon_crtc->v_border);
Jerome Glissec93bb852009-07-13 21:04:08 +020074 break;
75 }
Alex Deucher5b1714d2010-08-03 19:59:20 -040076 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glissec93bb852009-07-13 21:04:08 +020077}
78
79static void atombios_scaler_setup(struct drm_crtc *crtc)
80{
81 struct drm_device *dev = crtc->dev;
82 struct radeon_device *rdev = dev->dev_private;
83 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
84 ENABLE_SCALER_PS_ALLOCATION args;
85 int index = GetIndexIntoMasterTable(COMMAND, EnableScaler);
Alex Deucher5df31962012-09-13 11:52:08 -040086 struct radeon_encoder *radeon_encoder =
87 to_radeon_encoder(radeon_crtc->encoder);
Jerome Glissec93bb852009-07-13 21:04:08 +020088 /* fixme - fill in enc_priv for atom dac */
89 enum radeon_tv_std tv_std = TV_STD_NTSC;
Dave Airlie4ce001a2009-08-13 16:32:14 +100090 bool is_tv = false, is_cv = false;
Jerome Glissec93bb852009-07-13 21:04:08 +020091
92 if (!ASIC_IS_AVIVO(rdev) && radeon_crtc->crtc_id)
93 return;
94
Alex Deucher5df31962012-09-13 11:52:08 -040095 if (radeon_encoder->active_device & ATOM_DEVICE_TV_SUPPORT) {
96 struct radeon_encoder_atom_dac *tv_dac = radeon_encoder->enc_priv;
97 tv_std = tv_dac->tv_std;
98 is_tv = true;
Dave Airlie4ce001a2009-08-13 16:32:14 +100099 }
100
Jerome Glissec93bb852009-07-13 21:04:08 +0200101 memset(&args, 0, sizeof(args));
102
103 args.ucScaler = radeon_crtc->crtc_id;
104
Dave Airlie4ce001a2009-08-13 16:32:14 +1000105 if (is_tv) {
Jerome Glissec93bb852009-07-13 21:04:08 +0200106 switch (tv_std) {
107 case TV_STD_NTSC:
108 default:
109 args.ucTVStandard = ATOM_TV_NTSC;
110 break;
111 case TV_STD_PAL:
112 args.ucTVStandard = ATOM_TV_PAL;
113 break;
114 case TV_STD_PAL_M:
115 args.ucTVStandard = ATOM_TV_PALM;
116 break;
117 case TV_STD_PAL_60:
118 args.ucTVStandard = ATOM_TV_PAL60;
119 break;
120 case TV_STD_NTSC_J:
121 args.ucTVStandard = ATOM_TV_NTSCJ;
122 break;
123 case TV_STD_SCART_PAL:
124 args.ucTVStandard = ATOM_TV_PAL; /* ??? */
125 break;
126 case TV_STD_SECAM:
127 args.ucTVStandard = ATOM_TV_SECAM;
128 break;
129 case TV_STD_PAL_CN:
130 args.ucTVStandard = ATOM_TV_PALCN;
131 break;
132 }
133 args.ucEnable = SCALER_ENABLE_MULTITAP_MODE;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000134 } else if (is_cv) {
Jerome Glissec93bb852009-07-13 21:04:08 +0200135 args.ucTVStandard = ATOM_TV_CV;
136 args.ucEnable = SCALER_ENABLE_MULTITAP_MODE;
137 } else {
138 switch (radeon_crtc->rmx_type) {
139 case RMX_FULL:
140 args.ucEnable = ATOM_SCALER_EXPANSION;
141 break;
142 case RMX_CENTER:
143 args.ucEnable = ATOM_SCALER_CENTER;
144 break;
145 case RMX_ASPECT:
146 args.ucEnable = ATOM_SCALER_EXPANSION;
147 break;
148 default:
149 if (ASIC_IS_AVIVO(rdev))
150 args.ucEnable = ATOM_SCALER_DISABLE;
151 else
152 args.ucEnable = ATOM_SCALER_CENTER;
153 break;
154 }
155 }
156 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000157 if ((is_tv || is_cv)
158 && rdev->family >= CHIP_RV515 && rdev->family <= CHIP_R580) {
159 atom_rv515_force_tv_scaler(rdev, radeon_crtc);
Jerome Glissec93bb852009-07-13 21:04:08 +0200160 }
161}
162
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200163static void atombios_lock_crtc(struct drm_crtc *crtc, int lock)
164{
165 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
166 struct drm_device *dev = crtc->dev;
167 struct radeon_device *rdev = dev->dev_private;
168 int index =
169 GetIndexIntoMasterTable(COMMAND, UpdateCRTC_DoubleBufferRegisters);
170 ENABLE_CRTC_PS_ALLOCATION args;
171
172 memset(&args, 0, sizeof(args));
173
174 args.ucCRTC = radeon_crtc->crtc_id;
175 args.ucEnable = lock;
176
177 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
178}
179
180static void atombios_enable_crtc(struct drm_crtc *crtc, int state)
181{
182 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
183 struct drm_device *dev = crtc->dev;
184 struct radeon_device *rdev = dev->dev_private;
185 int index = GetIndexIntoMasterTable(COMMAND, EnableCRTC);
186 ENABLE_CRTC_PS_ALLOCATION args;
187
188 memset(&args, 0, sizeof(args));
189
190 args.ucCRTC = radeon_crtc->crtc_id;
191 args.ucEnable = state;
192
193 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
194}
195
196static void atombios_enable_crtc_memreq(struct drm_crtc *crtc, int state)
197{
198 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
199 struct drm_device *dev = crtc->dev;
200 struct radeon_device *rdev = dev->dev_private;
201 int index = GetIndexIntoMasterTable(COMMAND, EnableCRTCMemReq);
202 ENABLE_CRTC_PS_ALLOCATION args;
203
204 memset(&args, 0, sizeof(args));
205
206 args.ucCRTC = radeon_crtc->crtc_id;
207 args.ucEnable = state;
208
209 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
210}
211
Alex Deucher78fe9e52014-01-28 23:49:37 -0500212static const u32 vga_control_regs[6] =
213{
214 AVIVO_D1VGA_CONTROL,
215 AVIVO_D2VGA_CONTROL,
216 EVERGREEN_D3VGA_CONTROL,
217 EVERGREEN_D4VGA_CONTROL,
218 EVERGREEN_D5VGA_CONTROL,
219 EVERGREEN_D6VGA_CONTROL,
220};
221
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200222static void atombios_blank_crtc(struct drm_crtc *crtc, int state)
223{
224 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
225 struct drm_device *dev = crtc->dev;
226 struct radeon_device *rdev = dev->dev_private;
227 int index = GetIndexIntoMasterTable(COMMAND, BlankCRTC);
228 BLANK_CRTC_PS_ALLOCATION args;
Alex Deucher78fe9e52014-01-28 23:49:37 -0500229 u32 vga_control = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200230
231 memset(&args, 0, sizeof(args));
232
Alex Deucher78fe9e52014-01-28 23:49:37 -0500233 if (ASIC_IS_DCE8(rdev)) {
234 vga_control = RREG32(vga_control_regs[radeon_crtc->crtc_id]);
235 WREG32(vga_control_regs[radeon_crtc->crtc_id], vga_control | 1);
236 }
237
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200238 args.ucCRTC = radeon_crtc->crtc_id;
239 args.ucBlanking = state;
240
241 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Alex Deucher78fe9e52014-01-28 23:49:37 -0500242
243 if (ASIC_IS_DCE8(rdev)) {
244 WREG32(vga_control_regs[radeon_crtc->crtc_id], vga_control);
245 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200246}
247
Alex Deucherfef9f912012-03-20 17:18:03 -0400248static void atombios_powergate_crtc(struct drm_crtc *crtc, int state)
249{
250 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
251 struct drm_device *dev = crtc->dev;
252 struct radeon_device *rdev = dev->dev_private;
253 int index = GetIndexIntoMasterTable(COMMAND, EnableDispPowerGating);
254 ENABLE_DISP_POWER_GATING_PARAMETERS_V2_1 args;
255
256 memset(&args, 0, sizeof(args));
257
258 args.ucDispPipeId = radeon_crtc->crtc_id;
259 args.ucEnable = state;
260
261 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
262}
263
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200264void atombios_crtc_dpms(struct drm_crtc *crtc, int mode)
265{
266 struct drm_device *dev = crtc->dev;
267 struct radeon_device *rdev = dev->dev_private;
Alex Deucher500b7582009-12-02 11:46:52 -0500268 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200269
270 switch (mode) {
271 case DRM_MODE_DPMS_ON:
Alex Deucherd7311172010-05-03 01:13:14 -0400272 radeon_crtc->enabled = true;
Alex Deucher37b43902010-02-09 12:04:43 -0500273 atombios_enable_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400274 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500275 atombios_enable_crtc_memreq(crtc, ATOM_ENABLE);
276 atombios_blank_crtc(crtc, ATOM_DISABLE);
Alex Deucher45f9a392010-03-24 13:55:51 -0400277 drm_vblank_post_modeset(dev, radeon_crtc->crtc_id);
Alex Deucher500b7582009-12-02 11:46:52 -0500278 radeon_crtc_load_lut(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200279 break;
280 case DRM_MODE_DPMS_STANDBY:
281 case DRM_MODE_DPMS_SUSPEND:
282 case DRM_MODE_DPMS_OFF:
Alex Deucher45f9a392010-03-24 13:55:51 -0400283 drm_vblank_pre_modeset(dev, radeon_crtc->crtc_id);
Alex Deuchera93f3442010-12-20 11:22:29 -0500284 if (radeon_crtc->enabled)
285 atombios_blank_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400286 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500287 atombios_enable_crtc_memreq(crtc, ATOM_DISABLE);
288 atombios_enable_crtc(crtc, ATOM_DISABLE);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400289 radeon_crtc->enabled = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200290 break;
291 }
Alex Deucher3640da22014-05-30 12:40:15 -0400292 /* adjust pm to dpms */
293 radeon_pm_compute_clocks(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200294}
295
296static void
297atombios_set_crtc_dtd_timing(struct drm_crtc *crtc,
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400298 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200299{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400300 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200301 struct drm_device *dev = crtc->dev;
302 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400303 SET_CRTC_USING_DTD_TIMING_PARAMETERS args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200304 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400305 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200306
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400307 memset(&args, 0, sizeof(args));
Alex Deucher5b1714d2010-08-03 19:59:20 -0400308 args.usH_Size = cpu_to_le16(mode->crtc_hdisplay - (radeon_crtc->h_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400309 args.usH_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400310 cpu_to_le16(mode->crtc_hblank_end - mode->crtc_hdisplay + (radeon_crtc->h_border * 2));
311 args.usV_Size = cpu_to_le16(mode->crtc_vdisplay - (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400312 args.usV_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400313 cpu_to_le16(mode->crtc_vblank_end - mode->crtc_vdisplay + (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400314 args.usH_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400315 cpu_to_le16(mode->crtc_hsync_start - mode->crtc_hdisplay + radeon_crtc->h_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400316 args.usH_SyncWidth =
317 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
318 args.usV_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400319 cpu_to_le16(mode->crtc_vsync_start - mode->crtc_vdisplay + radeon_crtc->v_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400320 args.usV_SyncWidth =
321 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
Alex Deucher5b1714d2010-08-03 19:59:20 -0400322 args.ucH_Border = radeon_crtc->h_border;
323 args.ucV_Border = radeon_crtc->v_border;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400324
325 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
326 misc |= ATOM_VSYNC_POLARITY;
327 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
328 misc |= ATOM_HSYNC_POLARITY;
329 if (mode->flags & DRM_MODE_FLAG_CSYNC)
330 misc |= ATOM_COMPOSITESYNC;
331 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
332 misc |= ATOM_INTERLACE;
333 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
334 misc |= ATOM_DOUBLE_CLOCK_MODE;
335
336 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
337 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200338
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400339 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200340}
341
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400342static void atombios_crtc_set_timing(struct drm_crtc *crtc,
343 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200344{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400345 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346 struct drm_device *dev = crtc->dev;
347 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400348 SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200349 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400350 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200351
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400352 memset(&args, 0, sizeof(args));
353 args.usH_Total = cpu_to_le16(mode->crtc_htotal);
354 args.usH_Disp = cpu_to_le16(mode->crtc_hdisplay);
355 args.usH_SyncStart = cpu_to_le16(mode->crtc_hsync_start);
356 args.usH_SyncWidth =
357 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
358 args.usV_Total = cpu_to_le16(mode->crtc_vtotal);
359 args.usV_Disp = cpu_to_le16(mode->crtc_vdisplay);
360 args.usV_SyncStart = cpu_to_le16(mode->crtc_vsync_start);
361 args.usV_SyncWidth =
362 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
363
Alex Deucher54bfe492010-09-03 15:52:53 -0400364 args.ucOverscanRight = radeon_crtc->h_border;
365 args.ucOverscanLeft = radeon_crtc->h_border;
366 args.ucOverscanBottom = radeon_crtc->v_border;
367 args.ucOverscanTop = radeon_crtc->v_border;
368
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400369 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
370 misc |= ATOM_VSYNC_POLARITY;
371 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
372 misc |= ATOM_HSYNC_POLARITY;
373 if (mode->flags & DRM_MODE_FLAG_CSYNC)
374 misc |= ATOM_COMPOSITESYNC;
375 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
376 misc |= ATOM_INTERLACE;
377 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
378 misc |= ATOM_DOUBLE_CLOCK_MODE;
379
380 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
381 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200382
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400383 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200384}
385
Alex Deucher3fa47d92012-01-20 14:56:39 -0500386static void atombios_disable_ss(struct radeon_device *rdev, int pll_id)
Alex Deucherb7922102010-03-06 10:57:30 -0500387{
Alex Deucherb7922102010-03-06 10:57:30 -0500388 u32 ss_cntl;
389
390 if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500391 switch (pll_id) {
Alex Deucherb7922102010-03-06 10:57:30 -0500392 case ATOM_PPLL1:
393 ss_cntl = RREG32(EVERGREEN_P1PLL_SS_CNTL);
394 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
395 WREG32(EVERGREEN_P1PLL_SS_CNTL, ss_cntl);
396 break;
397 case ATOM_PPLL2:
398 ss_cntl = RREG32(EVERGREEN_P2PLL_SS_CNTL);
399 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
400 WREG32(EVERGREEN_P2PLL_SS_CNTL, ss_cntl);
401 break;
402 case ATOM_DCPLL:
403 case ATOM_PPLL_INVALID:
404 return;
405 }
406 } else if (ASIC_IS_AVIVO(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500407 switch (pll_id) {
Alex Deucherb7922102010-03-06 10:57:30 -0500408 case ATOM_PPLL1:
409 ss_cntl = RREG32(AVIVO_P1PLL_INT_SS_CNTL);
410 ss_cntl &= ~1;
411 WREG32(AVIVO_P1PLL_INT_SS_CNTL, ss_cntl);
412 break;
413 case ATOM_PPLL2:
414 ss_cntl = RREG32(AVIVO_P2PLL_INT_SS_CNTL);
415 ss_cntl &= ~1;
416 WREG32(AVIVO_P2PLL_INT_SS_CNTL, ss_cntl);
417 break;
418 case ATOM_DCPLL:
419 case ATOM_PPLL_INVALID:
420 return;
421 }
422 }
423}
424
425
Alex Deucher26b9fc32010-02-01 16:39:11 -0500426union atom_enable_ss {
Alex Deucherba032a52010-10-04 17:13:01 -0400427 ENABLE_LVDS_SS_PARAMETERS lvds_ss;
428 ENABLE_LVDS_SS_PARAMETERS_V2 lvds_ss_2;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500429 ENABLE_SPREAD_SPECTRUM_ON_PPLL_PS_ALLOCATION v1;
Alex Deucherba032a52010-10-04 17:13:01 -0400430 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V2 v2;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500431 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V3 v3;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500432};
433
Alex Deucher3fa47d92012-01-20 14:56:39 -0500434static void atombios_crtc_program_ss(struct radeon_device *rdev,
Alex Deucherba032a52010-10-04 17:13:01 -0400435 int enable,
436 int pll_id,
Jerome Glisse5efcc762012-08-17 14:40:04 -0400437 int crtc_id,
Alex Deucherba032a52010-10-04 17:13:01 -0400438 struct radeon_atom_ss *ss)
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400439{
Jerome Glisse5efcc762012-08-17 14:40:04 -0400440 unsigned i;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400441 int index = GetIndexIntoMasterTable(COMMAND, EnableSpreadSpectrumOnPPLL);
Alex Deucher26b9fc32010-02-01 16:39:11 -0500442 union atom_enable_ss args;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400443
Alex Deucherc4756ba2014-01-15 13:59:47 -0500444 if (enable) {
445 /* Don't mess with SS if percentage is 0 or external ss.
446 * SS is already disabled previously, and disabling it
447 * again can cause display problems if the pll is already
448 * programmed.
449 */
450 if (ss->percentage == 0)
451 return;
452 if (ss->type & ATOM_EXTERNAL_SS_MASK)
453 return;
454 } else {
Alex Deucher53176702012-08-21 18:52:56 -0400455 for (i = 0; i < rdev->num_crtc; i++) {
Jerome Glisse5efcc762012-08-17 14:40:04 -0400456 if (rdev->mode_info.crtcs[i] &&
457 rdev->mode_info.crtcs[i]->enabled &&
458 i != crtc_id &&
459 pll_id == rdev->mode_info.crtcs[i]->pll_id) {
460 /* one other crtc is using this pll don't turn
461 * off spread spectrum as it might turn off
462 * display on active crtc
463 */
464 return;
465 }
466 }
467 }
468
Alex Deucher26b9fc32010-02-01 16:39:11 -0500469 memset(&args, 0, sizeof(args));
Alex Deucherba032a52010-10-04 17:13:01 -0400470
Alex Deuchera572eaa2011-01-06 21:19:16 -0500471 if (ASIC_IS_DCE5(rdev)) {
Cédric Cano45894332011-02-11 19:45:37 -0500472 args.v3.usSpreadSpectrumAmountFrac = cpu_to_le16(0);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400473 args.v3.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500474 switch (pll_id) {
475 case ATOM_PPLL1:
476 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P1PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500477 break;
478 case ATOM_PPLL2:
479 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P2PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500480 break;
481 case ATOM_DCPLL:
482 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_DCPLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500483 break;
484 case ATOM_PPLL_INVALID:
485 return;
486 }
Alex Deucherf312f092012-07-17 14:02:44 -0400487 args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
488 args.v3.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherd0ae3e82011-05-23 14:06:20 -0400489 args.v3.ucEnable = enable;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500490 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucherba032a52010-10-04 17:13:01 -0400491 args.v2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400492 args.v2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400493 switch (pll_id) {
494 case ATOM_PPLL1:
495 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P1PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400496 break;
497 case ATOM_PPLL2:
498 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P2PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400499 break;
500 case ATOM_DCPLL:
501 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_DCPLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400502 break;
503 case ATOM_PPLL_INVALID:
504 return;
505 }
Alex Deucherf312f092012-07-17 14:02:44 -0400506 args.v2.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
507 args.v2.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherba032a52010-10-04 17:13:01 -0400508 args.v2.ucEnable = enable;
509 } else if (ASIC_IS_DCE3(rdev)) {
510 args.v1.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400511 args.v1.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400512 args.v1.ucSpreadSpectrumStep = ss->step;
513 args.v1.ucSpreadSpectrumDelay = ss->delay;
514 args.v1.ucSpreadSpectrumRange = ss->range;
515 args.v1.ucPpll = pll_id;
516 args.v1.ucEnable = enable;
517 } else if (ASIC_IS_AVIVO(rdev)) {
Alex Deucher8e8e5232011-05-20 04:34:16 -0400518 if ((enable == ATOM_DISABLE) || (ss->percentage == 0) ||
519 (ss->type & ATOM_EXTERNAL_SS_MASK)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500520 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400521 return;
522 }
523 args.lvds_ss_2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400524 args.lvds_ss_2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400525 args.lvds_ss_2.ucSpreadSpectrumStep = ss->step;
526 args.lvds_ss_2.ucSpreadSpectrumDelay = ss->delay;
527 args.lvds_ss_2.ucSpreadSpectrumRange = ss->range;
528 args.lvds_ss_2.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400529 } else {
Alex Deucherc4756ba2014-01-15 13:59:47 -0500530 if (enable == ATOM_DISABLE) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500531 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400532 return;
533 }
534 args.lvds_ss.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400535 args.lvds_ss.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400536 args.lvds_ss.ucSpreadSpectrumStepSize_Delay = (ss->step & 3) << 2;
537 args.lvds_ss.ucSpreadSpectrumStepSize_Delay |= (ss->delay & 7) << 4;
538 args.lvds_ss.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400539 }
Alex Deucher26b9fc32010-02-01 16:39:11 -0500540 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400541}
542
Alex Deucher4eaeca32010-01-19 17:32:27 -0500543union adjust_pixel_clock {
544 ADJUST_DISPLAY_PLL_PS_ALLOCATION v1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500545 ADJUST_DISPLAY_PLL_PS_ALLOCATION_V3 v3;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500546};
547
548static u32 atombios_adjust_pll(struct drm_crtc *crtc,
Alex Deucher19eca432012-09-13 10:56:16 -0400549 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200550{
Alex Deucher19eca432012-09-13 10:56:16 -0400551 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200552 struct drm_device *dev = crtc->dev;
553 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400554 struct drm_encoder *encoder = radeon_crtc->encoder;
555 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
556 struct drm_connector *connector = radeon_get_connector_for_encoder(encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500557 u32 adjusted_clock = mode->clock;
Alex Deucher5df31962012-09-13 11:52:08 -0400558 int encoder_mode = atombios_get_encoder_mode(encoder);
Alex Deucherfbee67a2010-08-16 12:44:47 -0400559 u32 dp_clock = mode->clock;
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400560 u32 clock = mode->clock;
Alex Deucher7d5a33b2014-02-03 15:53:25 -0500561 int bpc = radeon_crtc->bpc;
Alex Deucher5df31962012-09-13 11:52:08 -0400562 bool is_duallink = radeon_dig_monitor_is_duallink(encoder, mode->clock);
Alex Deucherfc103322010-01-19 17:16:10 -0500563
Alex Deucher4eaeca32010-01-19 17:32:27 -0500564 /* reset the pll flags */
Alex Deucher19eca432012-09-13 10:56:16 -0400565 radeon_crtc->pll_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200566
567 if (ASIC_IS_AVIVO(rdev)) {
Alex Deuchereb1300b2009-07-13 11:09:56 -0400568 if ((rdev->family == CHIP_RS600) ||
569 (rdev->family == CHIP_RS690) ||
570 (rdev->family == CHIP_RS740))
Alex Deucher19eca432012-09-13 10:56:16 -0400571 radeon_crtc->pll_flags |= (/*RADEON_PLL_USE_FRAC_FB_DIV |*/
572 RADEON_PLL_PREFER_CLOSEST_LOWER);
Dave Airlie5480f722010-10-19 10:36:47 +1000573
574 if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400575 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000576 else
Alex Deucher19eca432012-09-13 10:56:16 -0400577 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Alex Deucher9bb09fa2011-04-07 10:31:25 -0400578
Alex Deucher5785e532011-04-19 15:24:59 -0400579 if (rdev->family < CHIP_RV770)
Alex Deucher19eca432012-09-13 10:56:16 -0400580 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_MINM_OVER_MAXP;
Alex Deucher37d41742012-04-19 10:48:38 -0400581 /* use frac fb div on APUs */
Alex Deucherc7d2f222012-12-18 22:11:51 -0500582 if (ASIC_IS_DCE41(rdev) || ASIC_IS_DCE61(rdev) || ASIC_IS_DCE8(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -0400583 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Alex Deucher41167822013-04-01 16:06:25 -0400584 /* use frac fb div on RS780/RS880 */
585 if ((rdev->family == CHIP_RS780) || (rdev->family == CHIP_RS880))
586 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Alex Deuchera02dc742012-11-13 18:03:41 -0500587 if (ASIC_IS_DCE32(rdev) && mode->clock > 165000)
588 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000589 } else {
Alex Deucher19eca432012-09-13 10:56:16 -0400590 radeon_crtc->pll_flags |= RADEON_PLL_LEGACY;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200591
Dave Airlie5480f722010-10-19 10:36:47 +1000592 if (mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400593 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000594 else
Alex Deucher19eca432012-09-13 10:56:16 -0400595 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000596 }
597
Alex Deucher5df31962012-09-13 11:52:08 -0400598 if ((radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
599 (radeon_encoder_get_dp_bridge_encoder_id(encoder) != ENCODER_OBJECT_ID_NONE)) {
600 if (connector) {
601 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
602 struct radeon_connector_atom_dig *dig_connector =
603 radeon_connector->con_priv;
Alex Deucherfbee67a2010-08-16 12:44:47 -0400604
Alex Deucher5df31962012-09-13 11:52:08 -0400605 dp_clock = dig_connector->dp_clock;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200606 }
607 }
608
Alex Deucher5df31962012-09-13 11:52:08 -0400609 /* use recommended ref_div for ss */
610 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
611 if (radeon_crtc->ss_enabled) {
612 if (radeon_crtc->ss.refdiv) {
613 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
614 radeon_crtc->pll_reference_div = radeon_crtc->ss.refdiv;
615 if (ASIC_IS_AVIVO(rdev))
616 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
617 }
618 }
619 }
620
621 if (ASIC_IS_AVIVO(rdev)) {
622 /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */
623 if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1)
624 adjusted_clock = mode->clock * 2;
625 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
626 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_CLOSEST_LOWER;
627 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
628 radeon_crtc->pll_flags |= RADEON_PLL_IS_LCD;
629 } else {
630 if (encoder->encoder_type != DRM_MODE_ENCODER_DAC)
631 radeon_crtc->pll_flags |= RADEON_PLL_NO_ODD_POST_DIV;
632 if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS)
633 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
634 }
635
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400636 /* adjust pll for deep color modes */
637 if (encoder_mode == ATOM_ENCODER_MODE_HDMI) {
638 switch (bpc) {
639 case 8:
640 default:
641 break;
642 case 10:
643 clock = (clock * 5) / 4;
644 break;
645 case 12:
646 clock = (clock * 3) / 2;
647 break;
648 case 16:
649 clock = clock * 2;
650 break;
651 }
652 }
653
Alex Deucher2606c882009-10-08 13:36:21 -0400654 /* DCE3+ has an AdjustDisplayPll that will adjust the pixel clock
655 * accordingly based on the encoder/transmitter to work around
656 * special hw requirements.
657 */
658 if (ASIC_IS_DCE3(rdev)) {
Alex Deucher4eaeca32010-01-19 17:32:27 -0500659 union adjust_pixel_clock args;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500660 u8 frev, crev;
661 int index;
Alex Deucher2606c882009-10-08 13:36:21 -0400662
Alex Deucher2606c882009-10-08 13:36:21 -0400663 index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400664 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
665 &crev))
666 return adjusted_clock;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500667
668 memset(&args, 0, sizeof(args));
669
670 switch (frev) {
671 case 1:
672 switch (crev) {
673 case 1:
674 case 2:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400675 args.v1.usPixelClock = cpu_to_le16(clock / 10);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500676 args.v1.ucTransmitterID = radeon_encoder->encoder_id;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500677 args.v1.ucEncodeMode = encoder_mode;
Alex Deucher19eca432012-09-13 10:56:16 -0400678 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherfbee67a2010-08-16 12:44:47 -0400679 args.v1.ucConfig |=
680 ADJUST_DISPLAY_CONFIG_SS_ENABLE;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500681
682 atom_execute_table(rdev->mode_info.atom_context,
683 index, (uint32_t *)&args);
684 adjusted_clock = le16_to_cpu(args.v1.usPixelClock) * 10;
685 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500686 case 3:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400687 args.v3.sInput.usPixelClock = cpu_to_le16(clock / 10);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500688 args.v3.sInput.ucTransmitterID = radeon_encoder->encoder_id;
689 args.v3.sInput.ucEncodeMode = encoder_mode;
690 args.v3.sInput.ucDispPllConfig = 0;
Alex Deucher19eca432012-09-13 10:56:16 -0400691 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherb526ce22011-01-20 23:35:58 +0000692 args.v3.sInput.ucDispPllConfig |=
693 DISPPLL_CONFIG_SS_ENABLE;
Alex Deucher996d5c52011-10-26 15:59:50 -0400694 if (ENCODER_MODE_IS_DP(encoder_mode)) {
Alex Deucherb4f15f82011-10-25 11:34:51 -0400695 args.v3.sInput.ucDispPllConfig |=
696 DISPPLL_CONFIG_COHERENT_MODE;
697 /* 16200 or 27000 */
698 args.v3.sInput.usPixelClock = cpu_to_le16(dp_clock / 10);
699 } else if (radeon_encoder->devices & (ATOM_DEVICE_DFP_SUPPORT)) {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500700 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucherb4f15f82011-10-25 11:34:51 -0400701 if (dig->coherent_mode)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500702 args.v3.sInput.ucDispPllConfig |=
703 DISPPLL_CONFIG_COHERENT_MODE;
Alex Deucher9aa59992012-01-20 15:03:30 -0500704 if (is_duallink)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500705 args.v3.sInput.ucDispPllConfig |=
Alex Deucherb4f15f82011-10-25 11:34:51 -0400706 DISPPLL_CONFIG_DUAL_LINK;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500707 }
Alex Deucher1d33e1f2011-10-31 08:58:47 -0400708 if (radeon_encoder_get_dp_bridge_encoder_id(encoder) !=
709 ENCODER_OBJECT_ID_NONE)
710 args.v3.sInput.ucExtTransmitterID =
711 radeon_encoder_get_dp_bridge_encoder_id(encoder);
712 else
Alex Deuchercc9f67a2011-06-16 10:06:16 -0400713 args.v3.sInput.ucExtTransmitterID = 0;
714
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500715 atom_execute_table(rdev->mode_info.atom_context,
716 index, (uint32_t *)&args);
717 adjusted_clock = le32_to_cpu(args.v3.sOutput.ulDispPllFreq) * 10;
718 if (args.v3.sOutput.ucRefDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400719 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
720 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
721 radeon_crtc->pll_reference_div = args.v3.sOutput.ucRefDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500722 }
723 if (args.v3.sOutput.ucPostDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400724 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
725 radeon_crtc->pll_flags |= RADEON_PLL_USE_POST_DIV;
726 radeon_crtc->pll_post_div = args.v3.sOutput.ucPostDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500727 }
728 break;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500729 default:
730 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
731 return adjusted_clock;
732 }
733 break;
734 default:
735 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
736 return adjusted_clock;
737 }
Alex Deucherd56ef9c2009-10-27 12:11:09 -0400738 }
Alex Deucher4eaeca32010-01-19 17:32:27 -0500739 return adjusted_clock;
740}
741
742union set_pixel_clock {
743 SET_PIXEL_CLOCK_PS_ALLOCATION base;
744 PIXEL_CLOCK_PARAMETERS v1;
745 PIXEL_CLOCK_PARAMETERS_V2 v2;
746 PIXEL_CLOCK_PARAMETERS_V3 v3;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500747 PIXEL_CLOCK_PARAMETERS_V5 v5;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500748 PIXEL_CLOCK_PARAMETERS_V6 v6;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500749};
750
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500751/* on DCE5, make sure the voltage is high enough to support the
752 * required disp clk.
753 */
Alex Deucherf3f1f032012-03-20 17:18:04 -0400754static void atombios_crtc_set_disp_eng_pll(struct radeon_device *rdev,
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500755 u32 dispclk)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500756{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500757 u8 frev, crev;
758 int index;
759 union set_pixel_clock args;
760
761 memset(&args, 0, sizeof(args));
762
763 index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400764 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
765 &crev))
766 return;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500767
768 switch (frev) {
769 case 1:
770 switch (crev) {
771 case 5:
772 /* if the default dcpll clock is specified,
773 * SetPixelClock provides the dividers
774 */
775 args.v5.ucCRTC = ATOM_CRTC_INVALID;
Cédric Cano45894332011-02-11 19:45:37 -0500776 args.v5.usPixelClock = cpu_to_le16(dispclk);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500777 args.v5.ucPpll = ATOM_DCPLL;
778 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500779 case 6:
780 /* if the default dcpll clock is specified,
781 * SetPixelClock provides the dividers
782 */
Alex Deucher265aa6c2011-02-14 16:16:22 -0500783 args.v6.ulDispEngClkFreq = cpu_to_le32(dispclk);
Alex Deucher8542c122012-07-13 11:04:37 -0400784 if (ASIC_IS_DCE61(rdev) || ASIC_IS_DCE8(rdev))
Alex Deucher729b95e2012-03-20 17:18:31 -0400785 args.v6.ucPpll = ATOM_EXT_PLL1;
786 else if (ASIC_IS_DCE6(rdev))
Alex Deucherf3f1f032012-03-20 17:18:04 -0400787 args.v6.ucPpll = ATOM_PPLL0;
788 else
789 args.v6.ucPpll = ATOM_DCPLL;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500790 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500791 default:
792 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
793 return;
794 }
795 break;
796 default:
797 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
798 return;
799 }
800 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
801}
802
Alex Deucher37f90032010-06-11 17:58:38 -0400803static void atombios_crtc_program_pll(struct drm_crtc *crtc,
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000804 u32 crtc_id,
Alex Deucher37f90032010-06-11 17:58:38 -0400805 int pll_id,
806 u32 encoder_mode,
807 u32 encoder_id,
808 u32 clock,
809 u32 ref_div,
810 u32 fb_div,
811 u32 frac_fb_div,
Alex Deucherdf271be2011-05-20 04:34:15 -0400812 u32 post_div,
Alex Deucher8e8e5232011-05-20 04:34:16 -0400813 int bpc,
814 bool ss_enabled,
815 struct radeon_atom_ss *ss)
Alex Deucher37f90032010-06-11 17:58:38 -0400816{
817 struct drm_device *dev = crtc->dev;
818 struct radeon_device *rdev = dev->dev_private;
819 u8 frev, crev;
820 int index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
821 union set_pixel_clock args;
822
823 memset(&args, 0, sizeof(args));
824
825 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
826 &crev))
827 return;
828
829 switch (frev) {
830 case 1:
831 switch (crev) {
832 case 1:
833 if (clock == ATOM_DISABLE)
834 return;
835 args.v1.usPixelClock = cpu_to_le16(clock / 10);
836 args.v1.usRefDiv = cpu_to_le16(ref_div);
837 args.v1.usFbDiv = cpu_to_le16(fb_div);
838 args.v1.ucFracFbDiv = frac_fb_div;
839 args.v1.ucPostDiv = post_div;
840 args.v1.ucPpll = pll_id;
841 args.v1.ucCRTC = crtc_id;
842 args.v1.ucRefDivSrc = 1;
843 break;
844 case 2:
845 args.v2.usPixelClock = cpu_to_le16(clock / 10);
846 args.v2.usRefDiv = cpu_to_le16(ref_div);
847 args.v2.usFbDiv = cpu_to_le16(fb_div);
848 args.v2.ucFracFbDiv = frac_fb_div;
849 args.v2.ucPostDiv = post_div;
850 args.v2.ucPpll = pll_id;
851 args.v2.ucCRTC = crtc_id;
852 args.v2.ucRefDivSrc = 1;
853 break;
854 case 3:
855 args.v3.usPixelClock = cpu_to_le16(clock / 10);
856 args.v3.usRefDiv = cpu_to_le16(ref_div);
857 args.v3.usFbDiv = cpu_to_le16(fb_div);
858 args.v3.ucFracFbDiv = frac_fb_div;
859 args.v3.ucPostDiv = post_div;
860 args.v3.ucPpll = pll_id;
Alex Deuchere7295862012-09-12 17:58:07 -0400861 if (crtc_id == ATOM_CRTC2)
862 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC2;
863 else
864 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC1;
Alex Deucher6f15c502011-05-20 12:36:12 -0400865 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
866 args.v3.ucMiscInfo |= PIXEL_CLOCK_MISC_REF_DIV_SRC;
Alex Deucher37f90032010-06-11 17:58:38 -0400867 args.v3.ucTransmitterId = encoder_id;
868 args.v3.ucEncoderMode = encoder_mode;
869 break;
870 case 5:
871 args.v5.ucCRTC = crtc_id;
872 args.v5.usPixelClock = cpu_to_le16(clock / 10);
873 args.v5.ucRefDiv = ref_div;
874 args.v5.usFbDiv = cpu_to_le16(fb_div);
875 args.v5.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
876 args.v5.ucPostDiv = post_div;
877 args.v5.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400878 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
879 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_REF_DIV_SRC;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400880 if (encoder_mode == ATOM_ENCODER_MODE_HDMI) {
881 switch (bpc) {
882 case 8:
883 default:
884 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_24BPP;
885 break;
886 case 10:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400887 /* yes this is correct, the atom define is wrong */
888 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_32BPP;
889 break;
890 case 12:
891 /* yes this is correct, the atom define is wrong */
Alex Deucher7d5ab302014-04-21 21:45:09 -0400892 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_30BPP;
893 break;
894 }
Alex Deucherdf271be2011-05-20 04:34:15 -0400895 }
Alex Deucher37f90032010-06-11 17:58:38 -0400896 args.v5.ucTransmitterID = encoder_id;
897 args.v5.ucEncoderMode = encoder_mode;
898 args.v5.ucPpll = pll_id;
899 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500900 case 6:
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000901 args.v6.ulDispEngClkFreq = cpu_to_le32(crtc_id << 24 | clock / 10);
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500902 args.v6.ucRefDiv = ref_div;
903 args.v6.usFbDiv = cpu_to_le16(fb_div);
904 args.v6.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
905 args.v6.ucPostDiv = post_div;
906 args.v6.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400907 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
908 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_REF_DIV_SRC;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400909 if (encoder_mode == ATOM_ENCODER_MODE_HDMI) {
910 switch (bpc) {
911 case 8:
912 default:
913 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_24BPP;
914 break;
915 case 10:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400916 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_30BPP_V6;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400917 break;
918 case 12:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400919 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_36BPP_V6;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400920 break;
921 case 16:
922 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_48BPP;
923 break;
924 }
Alex Deucherdf271be2011-05-20 04:34:15 -0400925 }
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500926 args.v6.ucTransmitterID = encoder_id;
927 args.v6.ucEncoderMode = encoder_mode;
928 args.v6.ucPpll = pll_id;
929 break;
Alex Deucher37f90032010-06-11 17:58:38 -0400930 default:
931 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
932 return;
933 }
934 break;
935 default:
936 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
937 return;
938 }
939
940 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
941}
942
Alex Deucher19eca432012-09-13 10:56:16 -0400943static bool atombios_crtc_prepare_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
944{
945 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
946 struct drm_device *dev = crtc->dev;
947 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400948 struct radeon_encoder *radeon_encoder =
949 to_radeon_encoder(radeon_crtc->encoder);
950 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400951
952 radeon_crtc->bpc = 8;
953 radeon_crtc->ss_enabled = false;
954
Alex Deucher19eca432012-09-13 10:56:16 -0400955 if ((radeon_encoder->active_device & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
Alex Deucher5df31962012-09-13 11:52:08 -0400956 (radeon_encoder_get_dp_bridge_encoder_id(radeon_crtc->encoder) != ENCODER_OBJECT_ID_NONE)) {
Alex Deucher19eca432012-09-13 10:56:16 -0400957 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
958 struct drm_connector *connector =
Alex Deucher5df31962012-09-13 11:52:08 -0400959 radeon_get_connector_for_encoder(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400960 struct radeon_connector *radeon_connector =
961 to_radeon_connector(connector);
962 struct radeon_connector_atom_dig *dig_connector =
963 radeon_connector->con_priv;
964 int dp_clock;
Mario Kleinerea292862014-06-05 09:58:24 -0400965
966 /* Assign mode clock for hdmi deep color max clock limit check */
967 radeon_connector->pixelclock_for_modeset = mode->clock;
Alex Deucher19eca432012-09-13 10:56:16 -0400968 radeon_crtc->bpc = radeon_get_monitor_bpc(connector);
969
970 switch (encoder_mode) {
971 case ATOM_ENCODER_MODE_DP_MST:
972 case ATOM_ENCODER_MODE_DP:
973 /* DP/eDP */
974 dp_clock = dig_connector->dp_clock / 10;
975 if (ASIC_IS_DCE4(rdev))
976 radeon_crtc->ss_enabled =
977 radeon_atombios_get_asic_ss_info(rdev, &radeon_crtc->ss,
978 ASIC_INTERNAL_SS_ON_DP,
979 dp_clock);
980 else {
981 if (dp_clock == 16200) {
982 radeon_crtc->ss_enabled =
983 radeon_atombios_get_ppll_ss_info(rdev,
984 &radeon_crtc->ss,
985 ATOM_DP_SS_ID2);
986 if (!radeon_crtc->ss_enabled)
987 radeon_crtc->ss_enabled =
988 radeon_atombios_get_ppll_ss_info(rdev,
989 &radeon_crtc->ss,
990 ATOM_DP_SS_ID1);
Alex Deucherd8e24522014-01-13 16:47:05 -0500991 } else {
Alex Deucher19eca432012-09-13 10:56:16 -0400992 radeon_crtc->ss_enabled =
993 radeon_atombios_get_ppll_ss_info(rdev,
994 &radeon_crtc->ss,
995 ATOM_DP_SS_ID1);
Alex Deucherd8e24522014-01-13 16:47:05 -0500996 }
997 /* disable spread spectrum on DCE3 DP */
998 radeon_crtc->ss_enabled = false;
Alex Deucher19eca432012-09-13 10:56:16 -0400999 }
1000 break;
1001 case ATOM_ENCODER_MODE_LVDS:
1002 if (ASIC_IS_DCE4(rdev))
1003 radeon_crtc->ss_enabled =
1004 radeon_atombios_get_asic_ss_info(rdev,
1005 &radeon_crtc->ss,
1006 dig->lcd_ss_id,
1007 mode->clock / 10);
1008 else
1009 radeon_crtc->ss_enabled =
1010 radeon_atombios_get_ppll_ss_info(rdev,
1011 &radeon_crtc->ss,
1012 dig->lcd_ss_id);
1013 break;
1014 case ATOM_ENCODER_MODE_DVI:
1015 if (ASIC_IS_DCE4(rdev))
1016 radeon_crtc->ss_enabled =
1017 radeon_atombios_get_asic_ss_info(rdev,
1018 &radeon_crtc->ss,
1019 ASIC_INTERNAL_SS_ON_TMDS,
1020 mode->clock / 10);
1021 break;
1022 case ATOM_ENCODER_MODE_HDMI:
1023 if (ASIC_IS_DCE4(rdev))
1024 radeon_crtc->ss_enabled =
1025 radeon_atombios_get_asic_ss_info(rdev,
1026 &radeon_crtc->ss,
1027 ASIC_INTERNAL_SS_ON_HDMI,
1028 mode->clock / 10);
1029 break;
1030 default:
1031 break;
1032 }
1033 }
1034
1035 /* adjust pixel clock as needed */
1036 radeon_crtc->adjusted_clock = atombios_adjust_pll(crtc, mode);
1037
1038 return true;
1039}
1040
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001041static void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
Alex Deucher4eaeca32010-01-19 17:32:27 -05001042{
1043 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1044 struct drm_device *dev = crtc->dev;
1045 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001046 struct radeon_encoder *radeon_encoder =
1047 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -05001048 u32 pll_clock = mode->clock;
Alex Deucherf71d9eb2014-04-21 22:09:19 -04001049 u32 clock = mode->clock;
Alex Deucher4eaeca32010-01-19 17:32:27 -05001050 u32 ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0;
1051 struct radeon_pll *pll;
Alex Deucher5df31962012-09-13 11:52:08 -04001052 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -05001053
Alex Deucherf71d9eb2014-04-21 22:09:19 -04001054 /* pass the actual clock to atombios_crtc_program_pll for DCE5,6 for HDMI */
1055 if (ASIC_IS_DCE5(rdev) && !ASIC_IS_DCE8(rdev) &&
1056 (encoder_mode == ATOM_ENCODER_MODE_HDMI) &&
1057 (radeon_crtc->bpc > 8))
1058 clock = radeon_crtc->adjusted_clock;
1059
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001060 switch (radeon_crtc->pll_id) {
1061 case ATOM_PPLL1:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001062 pll = &rdev->clock.p1pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001063 break;
1064 case ATOM_PPLL2:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001065 pll = &rdev->clock.p2pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001066 break;
1067 case ATOM_DCPLL:
1068 case ATOM_PPLL_INVALID:
Stefan Richter921d98b2010-05-26 10:27:44 +10001069 default:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001070 pll = &rdev->clock.dcpll;
1071 break;
1072 }
Alex Deucher4eaeca32010-01-19 17:32:27 -05001073
Alex Deucher19eca432012-09-13 10:56:16 -04001074 /* update pll params */
1075 pll->flags = radeon_crtc->pll_flags;
1076 pll->reference_div = radeon_crtc->pll_reference_div;
1077 pll->post_div = radeon_crtc->pll_post_div;
Alex Deucher2606c882009-10-08 13:36:21 -04001078
Alex Deucher64146f82011-03-22 01:46:12 -04001079 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
1080 /* TV seems to prefer the legacy algo on some boards */
Alex Deucher19eca432012-09-13 10:56:16 -04001081 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1082 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher64146f82011-03-22 01:46:12 -04001083 else if (ASIC_IS_AVIVO(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -04001084 radeon_compute_pll_avivo(pll, radeon_crtc->adjusted_clock, &pll_clock,
1085 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher619efb12011-01-31 16:48:53 -05001086 else
Alex Deucher19eca432012-09-13 10:56:16 -04001087 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1088 &fb_div, &frac_fb_div, &ref_div, &post_div);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001089
Alex Deucher19eca432012-09-13 10:56:16 -04001090 atombios_crtc_program_ss(rdev, ATOM_DISABLE, radeon_crtc->pll_id,
1091 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001092
Alex Deucher37f90032010-06-11 17:58:38 -04001093 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
Alex Deucherf71d9eb2014-04-21 22:09:19 -04001094 encoder_mode, radeon_encoder->encoder_id, clock,
Alex Deucher19eca432012-09-13 10:56:16 -04001095 ref_div, fb_div, frac_fb_div, post_div,
1096 radeon_crtc->bpc, radeon_crtc->ss_enabled, &radeon_crtc->ss);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001097
Alex Deucher19eca432012-09-13 10:56:16 -04001098 if (radeon_crtc->ss_enabled) {
Alex Deucherba032a52010-10-04 17:13:01 -04001099 /* calculate ss amount and step size */
1100 if (ASIC_IS_DCE4(rdev)) {
1101 u32 step_size;
Alex Deucher18f8f522014-01-15 13:41:31 -05001102 u32 amount = (((fb_div * 10) + frac_fb_div) *
1103 (u32)radeon_crtc->ss.percentage) /
1104 (100 * (u32)radeon_crtc->ss.percentage_divider);
Alex Deucher19eca432012-09-13 10:56:16 -04001105 radeon_crtc->ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK;
1106 radeon_crtc->ss.amount |= ((amount - (amount / 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) &
Alex Deucherba032a52010-10-04 17:13:01 -04001107 ATOM_PPLL_SS_AMOUNT_V2_NFRAC_MASK;
Alex Deucher19eca432012-09-13 10:56:16 -04001108 if (radeon_crtc->ss.type & ATOM_PPLL_SS_TYPE_V2_CENTRE_SPREAD)
Alex Deucher18f8f522014-01-15 13:41:31 -05001109 step_size = (4 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001110 (125 * 25 * pll->reference_freq / 100);
1111 else
Alex Deucher18f8f522014-01-15 13:41:31 -05001112 step_size = (2 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001113 (125 * 25 * pll->reference_freq / 100);
Alex Deucher19eca432012-09-13 10:56:16 -04001114 radeon_crtc->ss.step = step_size;
Alex Deucherba032a52010-10-04 17:13:01 -04001115 }
1116
Alex Deucher19eca432012-09-13 10:56:16 -04001117 atombios_crtc_program_ss(rdev, ATOM_ENABLE, radeon_crtc->pll_id,
1118 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001119 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001120}
1121
Alex Deucherc9417bd2011-02-06 14:23:26 -05001122static int dce4_crtc_do_set_base(struct drm_crtc *crtc,
1123 struct drm_framebuffer *fb,
1124 int x, int y, int atomic)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001125{
1126 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1127 struct drm_device *dev = crtc->dev;
1128 struct radeon_device *rdev = dev->dev_private;
1129 struct radeon_framebuffer *radeon_fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001130 struct drm_framebuffer *target_fb;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001131 struct drm_gem_object *obj;
1132 struct radeon_bo *rbo;
1133 uint64_t fb_location;
1134 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Jerome Glisse285484e2011-12-16 17:03:42 -05001135 unsigned bankw, bankh, mtaspect, tile_split;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001136 u32 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_NONE);
Alex Deucheradcfde52011-05-27 10:05:03 -04001137 u32 tmp, viewport_w, viewport_h;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001138 int r;
1139
1140 /* no fb bound */
Matt Roperf4510a22014-04-01 15:22:40 -07001141 if (!atomic && !crtc->primary->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001142 DRM_DEBUG_KMS("No FB bound\n");
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001143 return 0;
1144 }
1145
Chris Ball4dd19b02010-09-26 06:47:23 -05001146 if (atomic) {
1147 radeon_fb = to_radeon_framebuffer(fb);
1148 target_fb = fb;
1149 }
1150 else {
Matt Roperf4510a22014-04-01 15:22:40 -07001151 radeon_fb = to_radeon_framebuffer(crtc->primary->fb);
1152 target_fb = crtc->primary->fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001153 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001154
Chris Ball4dd19b02010-09-26 06:47:23 -05001155 /* If atomic, assume fb object is pinned & idle & fenced and
1156 * just update base pointers
1157 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001158 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001159 rbo = gem_to_radeon_bo(obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001160 r = radeon_bo_reserve(rbo, false);
1161 if (unlikely(r != 0))
1162 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001163
1164 if (atomic)
1165 fb_location = radeon_bo_gpu_offset(rbo);
1166 else {
1167 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1168 if (unlikely(r != 0)) {
1169 radeon_bo_unreserve(rbo);
1170 return -EINVAL;
1171 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001172 }
Chris Ball4dd19b02010-09-26 06:47:23 -05001173
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001174 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1175 radeon_bo_unreserve(rbo);
1176
Chris Ball4dd19b02010-09-26 06:47:23 -05001177 switch (target_fb->bits_per_pixel) {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001178 case 8:
1179 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_8BPP) |
1180 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_INDEXED));
1181 break;
1182 case 15:
1183 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1184 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB1555));
1185 break;
1186 case 16:
1187 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1188 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB565));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001189#ifdef __BIG_ENDIAN
1190 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16);
1191#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001192 break;
1193 case 24:
1194 case 32:
1195 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) |
1196 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB8888));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001197#ifdef __BIG_ENDIAN
1198 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN32);
1199#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001200 break;
1201 default:
1202 DRM_ERROR("Unsupported screen depth %d\n",
Chris Ball4dd19b02010-09-26 06:47:23 -05001203 target_fb->bits_per_pixel);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001204 return -EINVAL;
1205 }
1206
Alex Deucher392e3722011-11-28 14:49:27 -05001207 if (tiling_flags & RADEON_TILING_MACRO) {
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001208 evergreen_tiling_fields(tiling_flags, &bankw, &bankh, &mtaspect, &tile_split);
Alex Deucher392e3722011-11-28 14:49:27 -05001209
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001210 /* Set NUM_BANKS. */
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001211 if (rdev->family >= CHIP_TAHITI) {
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001212 unsigned index, num_banks;
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001213
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001214 if (rdev->family >= CHIP_BONAIRE) {
1215 unsigned tileb, tile_split_bytes;
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001216
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001217 /* Calculate the macrotile mode index. */
1218 tile_split_bytes = 64 << tile_split;
1219 tileb = 8 * 8 * target_fb->bits_per_pixel / 8;
1220 tileb = min(tile_split_bytes, tileb);
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001221
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001222 for (index = 0; tileb > 64; index++)
1223 tileb >>= 1;
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001224
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001225 if (index >= 16) {
1226 DRM_ERROR("Wrong screen bpp (%u) or tile split (%u)\n",
1227 target_fb->bits_per_pixel, tile_split);
1228 return -EINVAL;
1229 }
1230
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001231 num_banks = (rdev->config.cik.macrotile_mode_array[index] >> 6) & 0x3;
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001232 } else {
1233 switch (target_fb->bits_per_pixel) {
1234 case 8:
1235 index = 10;
1236 break;
1237 case 16:
1238 index = SI_TILE_MODE_COLOR_2D_SCANOUT_16BPP;
1239 break;
1240 default:
1241 case 32:
1242 index = SI_TILE_MODE_COLOR_2D_SCANOUT_32BPP;
1243 break;
1244 }
1245
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001246 num_banks = (rdev->config.si.tile_mode_array[index] >> 20) & 0x3;
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001247 }
1248
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001249 fb_format |= EVERGREEN_GRPH_NUM_BANKS(num_banks);
1250 } else {
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001251 /* NI and older. */
1252 if (rdev->family >= CHIP_CAYMAN)
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001253 tmp = rdev->config.cayman.tile_config;
1254 else
1255 tmp = rdev->config.evergreen.tile_config;
1256
1257 switch ((tmp & 0xf0) >> 4) {
1258 case 0: /* 4 banks */
1259 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_4_BANK);
1260 break;
1261 case 1: /* 8 banks */
1262 default:
1263 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_8_BANK);
1264 break;
1265 case 2: /* 16 banks */
1266 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_16_BANK);
1267 break;
1268 }
Alex Deucher392e3722011-11-28 14:49:27 -05001269 }
1270
Alex Deucher97d66322010-05-20 12:12:48 -04001271 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_2D_TILED_THIN1);
Jerome Glisse285484e2011-12-16 17:03:42 -05001272 fb_format |= EVERGREEN_GRPH_TILE_SPLIT(tile_split);
1273 fb_format |= EVERGREEN_GRPH_BANK_WIDTH(bankw);
1274 fb_format |= EVERGREEN_GRPH_BANK_HEIGHT(bankh);
1275 fb_format |= EVERGREEN_GRPH_MACRO_TILE_ASPECT(mtaspect);
Alex Deucher8da0e502012-07-11 18:38:29 -04001276 if (rdev->family >= CHIP_BONAIRE) {
1277 /* XXX need to know more about the surface tiling mode */
1278 fb_format |= CIK_GRPH_MICRO_TILE_MODE(CIK_DISPLAY_MICRO_TILING);
1279 }
Alex Deucher392e3722011-11-28 14:49:27 -05001280 } else if (tiling_flags & RADEON_TILING_MICRO)
Alex Deucher97d66322010-05-20 12:12:48 -04001281 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_1D_TILED_THIN1);
1282
Alex Deucher8da0e502012-07-11 18:38:29 -04001283 if (rdev->family >= CHIP_BONAIRE) {
Marek Olšák35a90522013-12-23 17:11:35 +01001284 /* Read the pipe config from the 2D TILED SCANOUT mode.
1285 * It should be the same for the other modes too, but not all
1286 * modes set the pipe config field. */
1287 u32 pipe_config = (rdev->config.cik.tile_mode_array[10] >> 6) & 0x1f;
1288
1289 fb_format |= CIK_GRPH_PIPE_CONFIG(pipe_config);
Alex Deucher8da0e502012-07-11 18:38:29 -04001290 } else if ((rdev->family == CHIP_TAHITI) ||
1291 (rdev->family == CHIP_PITCAIRN))
Alex Deucherb7019b22012-06-14 15:58:25 -04001292 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P8_32x32_8x16);
Alex Deucher227ae102013-12-11 11:43:58 -05001293 else if ((rdev->family == CHIP_VERDE) ||
1294 (rdev->family == CHIP_OLAND) ||
1295 (rdev->family == CHIP_HAINAN)) /* for completeness. HAINAN has no display hw */
Alex Deucherb7019b22012-06-14 15:58:25 -04001296 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P4_8x16);
1297
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001298 switch (radeon_crtc->crtc_id) {
1299 case 0:
1300 WREG32(AVIVO_D1VGA_CONTROL, 0);
1301 break;
1302 case 1:
1303 WREG32(AVIVO_D2VGA_CONTROL, 0);
1304 break;
1305 case 2:
1306 WREG32(EVERGREEN_D3VGA_CONTROL, 0);
1307 break;
1308 case 3:
1309 WREG32(EVERGREEN_D4VGA_CONTROL, 0);
1310 break;
1311 case 4:
1312 WREG32(EVERGREEN_D5VGA_CONTROL, 0);
1313 break;
1314 case 5:
1315 WREG32(EVERGREEN_D6VGA_CONTROL, 0);
1316 break;
1317 default:
1318 break;
1319 }
1320
1321 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1322 upper_32_bits(fb_location));
1323 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1324 upper_32_bits(fb_location));
1325 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1326 (u32)fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1327 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1328 (u32) fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1329 WREG32(EVERGREEN_GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001330 WREG32(EVERGREEN_GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001331
1332 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1333 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1334 WREG32(EVERGREEN_GRPH_X_START + radeon_crtc->crtc_offset, 0);
1335 WREG32(EVERGREEN_GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001336 WREG32(EVERGREEN_GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1337 WREG32(EVERGREEN_GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001338
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001339 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001340 WREG32(EVERGREEN_GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1341 WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1342
Alex Deucher8da0e502012-07-11 18:38:29 -04001343 if (rdev->family >= CHIP_BONAIRE)
1344 WREG32(CIK_LB_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
1345 target_fb->height);
1346 else
1347 WREG32(EVERGREEN_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
1348 target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001349 x &= ~3;
1350 y &= ~1;
1351 WREG32(EVERGREEN_VIEWPORT_START + radeon_crtc->crtc_offset,
1352 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001353 viewport_w = crtc->mode.hdisplay;
1354 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001355 WREG32(EVERGREEN_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001356 (viewport_w << 16) | viewport_h);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001357
Alex Deucherfb9674b2011-04-02 09:15:50 -04001358 /* pageflip setup */
1359 /* make sure flip is at vb rather than hb */
1360 tmp = RREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1361 tmp &= ~EVERGREEN_GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1362 WREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1363
1364 /* set pageflip to happen anywhere in vblank interval */
1365 WREG32(EVERGREEN_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1366
Matt Roperf4510a22014-04-01 15:22:40 -07001367 if (!atomic && fb && fb != crtc->primary->fb) {
Chris Ball4dd19b02010-09-26 06:47:23 -05001368 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001369 rbo = gem_to_radeon_bo(radeon_fb->obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001370 r = radeon_bo_reserve(rbo, false);
1371 if (unlikely(r != 0))
1372 return r;
1373 radeon_bo_unpin(rbo);
1374 radeon_bo_unreserve(rbo);
1375 }
1376
1377 /* Bytes per pixel may have changed */
1378 radeon_bandwidth_update(rdev);
1379
1380 return 0;
1381}
1382
Chris Ball4dd19b02010-09-26 06:47:23 -05001383static int avivo_crtc_do_set_base(struct drm_crtc *crtc,
1384 struct drm_framebuffer *fb,
1385 int x, int y, int atomic)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001386{
1387 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1388 struct drm_device *dev = crtc->dev;
1389 struct radeon_device *rdev = dev->dev_private;
1390 struct radeon_framebuffer *radeon_fb;
1391 struct drm_gem_object *obj;
Jerome Glisse4c788672009-11-20 14:29:23 +01001392 struct radeon_bo *rbo;
Chris Ball4dd19b02010-09-26 06:47:23 -05001393 struct drm_framebuffer *target_fb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001394 uint64_t fb_location;
Dave Airliee024e112009-06-24 09:48:08 +10001395 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001396 u32 fb_swap = R600_D1GRPH_SWAP_ENDIAN_NONE;
Alex Deucheradcfde52011-05-27 10:05:03 -04001397 u32 tmp, viewport_w, viewport_h;
Jerome Glisse4c788672009-11-20 14:29:23 +01001398 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001399
Jerome Glisse2de3b482009-11-17 14:08:55 -08001400 /* no fb bound */
Matt Roperf4510a22014-04-01 15:22:40 -07001401 if (!atomic && !crtc->primary->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001402 DRM_DEBUG_KMS("No FB bound\n");
Jerome Glisse2de3b482009-11-17 14:08:55 -08001403 return 0;
1404 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001405
Chris Ball4dd19b02010-09-26 06:47:23 -05001406 if (atomic) {
1407 radeon_fb = to_radeon_framebuffer(fb);
1408 target_fb = fb;
1409 }
1410 else {
Matt Roperf4510a22014-04-01 15:22:40 -07001411 radeon_fb = to_radeon_framebuffer(crtc->primary->fb);
1412 target_fb = crtc->primary->fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001413 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001414
1415 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001416 rbo = gem_to_radeon_bo(obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001417 r = radeon_bo_reserve(rbo, false);
1418 if (unlikely(r != 0))
1419 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001420
1421 /* If atomic, assume fb object is pinned & idle & fenced and
1422 * just update base pointers
1423 */
1424 if (atomic)
1425 fb_location = radeon_bo_gpu_offset(rbo);
1426 else {
1427 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1428 if (unlikely(r != 0)) {
1429 radeon_bo_unreserve(rbo);
1430 return -EINVAL;
1431 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001432 }
Jerome Glisse4c788672009-11-20 14:29:23 +01001433 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1434 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001435
Chris Ball4dd19b02010-09-26 06:47:23 -05001436 switch (target_fb->bits_per_pixel) {
Dave Airlie41456df2009-09-16 10:15:21 +10001437 case 8:
1438 fb_format =
1439 AVIVO_D1GRPH_CONTROL_DEPTH_8BPP |
1440 AVIVO_D1GRPH_CONTROL_8BPP_INDEXED;
1441 break;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001442 case 15:
1443 fb_format =
1444 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1445 AVIVO_D1GRPH_CONTROL_16BPP_ARGB1555;
1446 break;
1447 case 16:
1448 fb_format =
1449 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1450 AVIVO_D1GRPH_CONTROL_16BPP_RGB565;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001451#ifdef __BIG_ENDIAN
1452 fb_swap = R600_D1GRPH_SWAP_ENDIAN_16BIT;
1453#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001454 break;
1455 case 24:
1456 case 32:
1457 fb_format =
1458 AVIVO_D1GRPH_CONTROL_DEPTH_32BPP |
1459 AVIVO_D1GRPH_CONTROL_32BPP_ARGB8888;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001460#ifdef __BIG_ENDIAN
1461 fb_swap = R600_D1GRPH_SWAP_ENDIAN_32BIT;
1462#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001463 break;
1464 default:
1465 DRM_ERROR("Unsupported screen depth %d\n",
Chris Ball4dd19b02010-09-26 06:47:23 -05001466 target_fb->bits_per_pixel);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001467 return -EINVAL;
1468 }
1469
Alex Deucher40c4ac12010-05-20 12:04:59 -04001470 if (rdev->family >= CHIP_R600) {
1471 if (tiling_flags & RADEON_TILING_MACRO)
1472 fb_format |= R600_D1GRPH_ARRAY_MODE_2D_TILED_THIN1;
1473 else if (tiling_flags & RADEON_TILING_MICRO)
1474 fb_format |= R600_D1GRPH_ARRAY_MODE_1D_TILED_THIN1;
1475 } else {
1476 if (tiling_flags & RADEON_TILING_MACRO)
1477 fb_format |= AVIVO_D1GRPH_MACRO_ADDRESS_MODE;
Dave Airliecf2f05d2009-12-08 15:45:13 +10001478
Alex Deucher40c4ac12010-05-20 12:04:59 -04001479 if (tiling_flags & RADEON_TILING_MICRO)
1480 fb_format |= AVIVO_D1GRPH_TILED;
1481 }
Dave Airliee024e112009-06-24 09:48:08 +10001482
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001483 if (radeon_crtc->crtc_id == 0)
1484 WREG32(AVIVO_D1VGA_CONTROL, 0);
1485 else
1486 WREG32(AVIVO_D2VGA_CONTROL, 0);
Alex Deucherc290dad2009-10-22 16:12:34 -04001487
1488 if (rdev->family >= CHIP_RV770) {
1489 if (radeon_crtc->crtc_id) {
Alex Deucher95347872010-09-01 17:20:42 -04001490 WREG32(R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1491 WREG32(R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001492 } else {
Alex Deucher95347872010-09-01 17:20:42 -04001493 WREG32(R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1494 WREG32(R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001495 }
1496 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001497 WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1498 (u32) fb_location);
1499 WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS +
1500 radeon_crtc->crtc_offset, (u32) fb_location);
1501 WREG32(AVIVO_D1GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001502 if (rdev->family >= CHIP_R600)
1503 WREG32(R600_D1GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001504
1505 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1506 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1507 WREG32(AVIVO_D1GRPH_X_START + radeon_crtc->crtc_offset, 0);
1508 WREG32(AVIVO_D1GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001509 WREG32(AVIVO_D1GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1510 WREG32(AVIVO_D1GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001511
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001512 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001513 WREG32(AVIVO_D1GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1514 WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1515
1516 WREG32(AVIVO_D1MODE_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
Michel Dänzer1b619252012-02-01 12:09:55 +01001517 target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001518 x &= ~3;
1519 y &= ~1;
1520 WREG32(AVIVO_D1MODE_VIEWPORT_START + radeon_crtc->crtc_offset,
1521 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001522 viewport_w = crtc->mode.hdisplay;
1523 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001524 WREG32(AVIVO_D1MODE_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001525 (viewport_w << 16) | viewport_h);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001526
Alex Deucherfb9674b2011-04-02 09:15:50 -04001527 /* pageflip setup */
1528 /* make sure flip is at vb rather than hb */
1529 tmp = RREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1530 tmp &= ~AVIVO_D1GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1531 WREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1532
1533 /* set pageflip to happen anywhere in vblank interval */
1534 WREG32(AVIVO_D1MODE_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1535
Matt Roperf4510a22014-04-01 15:22:40 -07001536 if (!atomic && fb && fb != crtc->primary->fb) {
Chris Ball4dd19b02010-09-26 06:47:23 -05001537 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001538 rbo = gem_to_radeon_bo(radeon_fb->obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001539 r = radeon_bo_reserve(rbo, false);
1540 if (unlikely(r != 0))
1541 return r;
1542 radeon_bo_unpin(rbo);
1543 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001544 }
Michel Dänzerf30f37d2009-10-08 10:44:09 +02001545
1546 /* Bytes per pixel may have changed */
1547 radeon_bandwidth_update(rdev);
1548
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001549 return 0;
1550}
1551
Alex Deucher54f088a2010-01-19 16:34:01 -05001552int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y,
1553 struct drm_framebuffer *old_fb)
1554{
1555 struct drm_device *dev = crtc->dev;
1556 struct radeon_device *rdev = dev->dev_private;
1557
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001558 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001559 return dce4_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001560 else if (ASIC_IS_AVIVO(rdev))
Chris Ball4dd19b02010-09-26 06:47:23 -05001561 return avivo_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucher54f088a2010-01-19 16:34:01 -05001562 else
Chris Ball4dd19b02010-09-26 06:47:23 -05001563 return radeon_crtc_do_set_base(crtc, old_fb, x, y, 0);
1564}
1565
1566int atombios_crtc_set_base_atomic(struct drm_crtc *crtc,
1567 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -05001568 int x, int y, enum mode_set_atomic state)
Chris Ball4dd19b02010-09-26 06:47:23 -05001569{
1570 struct drm_device *dev = crtc->dev;
1571 struct radeon_device *rdev = dev->dev_private;
1572
1573 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001574 return dce4_crtc_do_set_base(crtc, fb, x, y, 1);
Chris Ball4dd19b02010-09-26 06:47:23 -05001575 else if (ASIC_IS_AVIVO(rdev))
1576 return avivo_crtc_do_set_base(crtc, fb, x, y, 1);
1577 else
1578 return radeon_crtc_do_set_base(crtc, fb, x, y, 1);
Alex Deucher54f088a2010-01-19 16:34:01 -05001579}
1580
Alex Deucher615e0cb2010-01-20 16:22:53 -05001581/* properly set additional regs when using atombios */
1582static void radeon_legacy_atom_fixup(struct drm_crtc *crtc)
1583{
1584 struct drm_device *dev = crtc->dev;
1585 struct radeon_device *rdev = dev->dev_private;
1586 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1587 u32 disp_merge_cntl;
1588
1589 switch (radeon_crtc->crtc_id) {
1590 case 0:
1591 disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL);
1592 disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN;
1593 WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl);
1594 break;
1595 case 1:
1596 disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL);
1597 disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN;
1598 WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl);
1599 WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID));
1600 WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID));
1601 break;
1602 }
1603}
1604
Alex Deucherf3dd8502012-08-31 11:56:50 -04001605/**
1606 * radeon_get_pll_use_mask - look up a mask of which pplls are in use
1607 *
1608 * @crtc: drm crtc
1609 *
1610 * Returns the mask of which PPLLs (Pixel PLLs) are in use.
1611 */
1612static u32 radeon_get_pll_use_mask(struct drm_crtc *crtc)
1613{
1614 struct drm_device *dev = crtc->dev;
1615 struct drm_crtc *test_crtc;
Alex Deucher57b35e22012-09-17 17:34:45 -04001616 struct radeon_crtc *test_radeon_crtc;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001617 u32 pll_in_use = 0;
1618
1619 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1620 if (crtc == test_crtc)
1621 continue;
1622
Alex Deucher57b35e22012-09-17 17:34:45 -04001623 test_radeon_crtc = to_radeon_crtc(test_crtc);
1624 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
1625 pll_in_use |= (1 << test_radeon_crtc->pll_id);
Alex Deucherf3dd8502012-08-31 11:56:50 -04001626 }
1627 return pll_in_use;
1628}
1629
1630/**
1631 * radeon_get_shared_dp_ppll - return the PPLL used by another crtc for DP
1632 *
1633 * @crtc: drm crtc
1634 *
1635 * Returns the PPLL (Pixel PLL) used by another crtc/encoder which is
1636 * also in DP mode. For DP, a single PPLL can be used for all DP
1637 * crtcs/encoders.
1638 */
1639static int radeon_get_shared_dp_ppll(struct drm_crtc *crtc)
1640{
1641 struct drm_device *dev = crtc->dev;
Alex Deucher57b35e22012-09-17 17:34:45 -04001642 struct drm_crtc *test_crtc;
Alex Deucher5df31962012-09-13 11:52:08 -04001643 struct radeon_crtc *test_radeon_crtc;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001644
Alex Deucher57b35e22012-09-17 17:34:45 -04001645 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1646 if (crtc == test_crtc)
1647 continue;
1648 test_radeon_crtc = to_radeon_crtc(test_crtc);
1649 if (test_radeon_crtc->encoder &&
1650 ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_radeon_crtc->encoder))) {
1651 /* for DP use the same PLL for all */
1652 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
1653 return test_radeon_crtc->pll_id;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001654 }
1655 }
1656 return ATOM_PPLL_INVALID;
1657}
1658
1659/**
Alex Deucher2f454cf2012-09-12 18:54:14 -04001660 * radeon_get_shared_nondp_ppll - return the PPLL used by another non-DP crtc
1661 *
1662 * @crtc: drm crtc
1663 * @encoder: drm encoder
1664 *
1665 * Returns the PPLL (Pixel PLL) used by another non-DP crtc/encoder which can
1666 * be shared (i.e., same clock).
1667 */
Alex Deucher5df31962012-09-13 11:52:08 -04001668static int radeon_get_shared_nondp_ppll(struct drm_crtc *crtc)
Alex Deucher2f454cf2012-09-12 18:54:14 -04001669{
Alex Deucher5df31962012-09-13 11:52:08 -04001670 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher2f454cf2012-09-12 18:54:14 -04001671 struct drm_device *dev = crtc->dev;
Alex Deucher9642ac02012-09-13 12:43:41 -04001672 struct drm_crtc *test_crtc;
Alex Deucher5df31962012-09-13 11:52:08 -04001673 struct radeon_crtc *test_radeon_crtc;
Alex Deucher9642ac02012-09-13 12:43:41 -04001674 u32 adjusted_clock, test_adjusted_clock;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001675
Alex Deucher9642ac02012-09-13 12:43:41 -04001676 adjusted_clock = radeon_crtc->adjusted_clock;
1677
1678 if (adjusted_clock == 0)
1679 return ATOM_PPLL_INVALID;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001680
Alex Deucher57b35e22012-09-17 17:34:45 -04001681 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1682 if (crtc == test_crtc)
1683 continue;
1684 test_radeon_crtc = to_radeon_crtc(test_crtc);
1685 if (test_radeon_crtc->encoder &&
1686 !ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_radeon_crtc->encoder))) {
1687 /* check if we are already driving this connector with another crtc */
1688 if (test_radeon_crtc->connector == radeon_crtc->connector) {
1689 /* if we are, return that pll */
1690 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
Alex Deucher5df31962012-09-13 11:52:08 -04001691 return test_radeon_crtc->pll_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001692 }
Alex Deucher57b35e22012-09-17 17:34:45 -04001693 /* for non-DP check the clock */
1694 test_adjusted_clock = test_radeon_crtc->adjusted_clock;
1695 if ((crtc->mode.clock == test_crtc->mode.clock) &&
1696 (adjusted_clock == test_adjusted_clock) &&
1697 (radeon_crtc->ss_enabled == test_radeon_crtc->ss_enabled) &&
1698 (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID))
1699 return test_radeon_crtc->pll_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001700 }
1701 }
1702 return ATOM_PPLL_INVALID;
1703}
1704
1705/**
Alex Deucherf3dd8502012-08-31 11:56:50 -04001706 * radeon_atom_pick_pll - Allocate a PPLL for use by the crtc.
1707 *
1708 * @crtc: drm crtc
1709 *
1710 * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
1711 * a single PPLL can be used for all DP crtcs/encoders. For non-DP
1712 * monitors a dedicated PPLL must be used. If a particular board has
1713 * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
1714 * as there is no need to program the PLL itself. If we are not able to
1715 * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
1716 * avoid messing up an existing monitor.
1717 *
1718 * Asic specific PLL information
1719 *
Alex Deucher0331f672012-09-14 11:57:21 -04001720 * DCE 8.x
1721 * KB/KV
1722 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
1723 * CI
1724 * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1725 *
Alex Deucherf3dd8502012-08-31 11:56:50 -04001726 * DCE 6.1
1727 * - PPLL2 is only available to UNIPHYA (both DP and non-DP)
1728 * - PPLL0, PPLL1 are available for UNIPHYB/C/D/E/F (both DP and non-DP)
1729 *
1730 * DCE 6.0
1731 * - PPLL0 is available to all UNIPHY (DP only)
1732 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1733 *
1734 * DCE 5.0
1735 * - DCPLL is available to all UNIPHY (DP only)
1736 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1737 *
1738 * DCE 3.0/4.0/4.1
1739 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1740 *
1741 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001742static int radeon_atom_pick_pll(struct drm_crtc *crtc)
1743{
Alex Deucher5df31962012-09-13 11:52:08 -04001744 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001745 struct drm_device *dev = crtc->dev;
1746 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001747 struct radeon_encoder *radeon_encoder =
1748 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucherf3dd8502012-08-31 11:56:50 -04001749 u32 pll_in_use;
1750 int pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001751
Alex Deucher0331f672012-09-14 11:57:21 -04001752 if (ASIC_IS_DCE8(rdev)) {
1753 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1754 if (rdev->clock.dp_extclk)
1755 /* skip PPLL programming if using ext clock */
1756 return ATOM_PPLL_INVALID;
1757 else {
1758 /* use the same PPLL for all DP monitors */
1759 pll = radeon_get_shared_dp_ppll(crtc);
1760 if (pll != ATOM_PPLL_INVALID)
1761 return pll;
1762 }
1763 } else {
1764 /* use the same PPLL for all monitors with the same clock */
1765 pll = radeon_get_shared_nondp_ppll(crtc);
1766 if (pll != ATOM_PPLL_INVALID)
1767 return pll;
1768 }
1769 /* otherwise, pick one of the plls */
1770 if ((rdev->family == CHIP_KAVERI) ||
Samuel Lib214f2a2014-04-30 18:40:53 -04001771 (rdev->family == CHIP_KABINI) ||
1772 (rdev->family == CHIP_MULLINS)) {
1773 /* KB/KV/ML has PPLL1 and PPLL2 */
Alex Deucher0331f672012-09-14 11:57:21 -04001774 pll_in_use = radeon_get_pll_use_mask(crtc);
1775 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1776 return ATOM_PPLL2;
1777 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1778 return ATOM_PPLL1;
1779 DRM_ERROR("unable to allocate a PPLL\n");
1780 return ATOM_PPLL_INVALID;
1781 } else {
1782 /* CI has PPLL0, PPLL1, and PPLL2 */
1783 pll_in_use = radeon_get_pll_use_mask(crtc);
1784 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1785 return ATOM_PPLL2;
1786 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1787 return ATOM_PPLL1;
1788 if (!(pll_in_use & (1 << ATOM_PPLL0)))
1789 return ATOM_PPLL0;
1790 DRM_ERROR("unable to allocate a PPLL\n");
1791 return ATOM_PPLL_INVALID;
1792 }
1793 } else if (ASIC_IS_DCE61(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001794 struct radeon_encoder_atom_dig *dig =
1795 radeon_encoder->enc_priv;
Alex Deucher24e1f792012-03-20 17:18:32 -04001796
Alex Deucher5df31962012-09-13 11:52:08 -04001797 if ((radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_UNIPHY) &&
1798 (dig->linkb == false))
1799 /* UNIPHY A uses PPLL2 */
1800 return ATOM_PPLL2;
1801 else if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1802 /* UNIPHY B/C/D/E/F */
1803 if (rdev->clock.dp_extclk)
1804 /* skip PPLL programming if using ext clock */
1805 return ATOM_PPLL_INVALID;
1806 else {
1807 /* use the same PPLL for all DP monitors */
1808 pll = radeon_get_shared_dp_ppll(crtc);
1809 if (pll != ATOM_PPLL_INVALID)
1810 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001811 }
Alex Deucher5df31962012-09-13 11:52:08 -04001812 } else {
1813 /* use the same PPLL for all monitors with the same clock */
1814 pll = radeon_get_shared_nondp_ppll(crtc);
1815 if (pll != ATOM_PPLL_INVALID)
1816 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001817 }
1818 /* UNIPHY B/C/D/E/F */
Alex Deucherf3dd8502012-08-31 11:56:50 -04001819 pll_in_use = radeon_get_pll_use_mask(crtc);
1820 if (!(pll_in_use & (1 << ATOM_PPLL0)))
Alex Deucher24e1f792012-03-20 17:18:32 -04001821 return ATOM_PPLL0;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001822 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1823 return ATOM_PPLL1;
1824 DRM_ERROR("unable to allocate a PPLL\n");
1825 return ATOM_PPLL_INVALID;
Alex Deucher9ef4e1d2014-02-25 10:21:43 -05001826 } else if (ASIC_IS_DCE41(rdev)) {
1827 /* Don't share PLLs on DCE4.1 chips */
1828 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1829 if (rdev->clock.dp_extclk)
1830 /* skip PPLL programming if using ext clock */
1831 return ATOM_PPLL_INVALID;
1832 }
1833 pll_in_use = radeon_get_pll_use_mask(crtc);
1834 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1835 return ATOM_PPLL1;
1836 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1837 return ATOM_PPLL2;
1838 DRM_ERROR("unable to allocate a PPLL\n");
1839 return ATOM_PPLL_INVALID;
Alex Deucher24e1f792012-03-20 17:18:32 -04001840 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001841 /* in DP mode, the DP ref clock can come from PPLL, DCPLL, or ext clock,
1842 * depending on the asic:
1843 * DCE4: PPLL or ext clock
1844 * DCE5: PPLL, DCPLL, or ext clock
1845 * DCE6: PPLL, PPLL0, or ext clock
1846 *
1847 * Setting ATOM_PPLL_INVALID will cause SetPixelClock to skip
1848 * PPLL/DCPLL programming and only program the DP DTO for the
1849 * crtc virtual pixel clock.
1850 */
1851 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1852 if (rdev->clock.dp_extclk)
1853 /* skip PPLL programming if using ext clock */
1854 return ATOM_PPLL_INVALID;
1855 else if (ASIC_IS_DCE6(rdev))
1856 /* use PPLL0 for all DP */
1857 return ATOM_PPLL0;
1858 else if (ASIC_IS_DCE5(rdev))
1859 /* use DCPLL for all DP */
1860 return ATOM_DCPLL;
1861 else {
1862 /* use the same PPLL for all DP monitors */
1863 pll = radeon_get_shared_dp_ppll(crtc);
1864 if (pll != ATOM_PPLL_INVALID)
1865 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001866 }
Alex Deucher9ef4e1d2014-02-25 10:21:43 -05001867 } else {
Alex Deucher5df31962012-09-13 11:52:08 -04001868 /* use the same PPLL for all monitors with the same clock */
1869 pll = radeon_get_shared_nondp_ppll(crtc);
1870 if (pll != ATOM_PPLL_INVALID)
1871 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001872 }
1873 /* all other cases */
1874 pll_in_use = radeon_get_pll_use_mask(crtc);
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001875 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1876 return ATOM_PPLL1;
Alex Deucher29dbe3b2012-10-05 10:22:02 -04001877 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1878 return ATOM_PPLL2;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001879 DRM_ERROR("unable to allocate a PPLL\n");
1880 return ATOM_PPLL_INVALID;
Alex Deucher1e4db5f2012-11-05 10:16:12 -05001881 } else {
1882 /* on pre-R5xx asics, the crtc to pll mapping is hardcoded */
Jerome Glissefc58acd2012-11-27 16:12:29 -05001883 /* some atombios (observed in some DCE2/DCE3) code have a bug,
1884 * the matching btw pll and crtc is done through
1885 * PCLK_CRTC[1|2]_CNTL (0x480/0x484) but atombios code use the
1886 * pll (1 or 2) to select which register to write. ie if using
1887 * pll1 it will use PCLK_CRTC1_CNTL (0x480) and if using pll2
1888 * it will use PCLK_CRTC2_CNTL (0x484), it then use crtc id to
1889 * choose which value to write. Which is reverse order from
1890 * register logic. So only case that works is when pllid is
1891 * same as crtcid or when both pll and crtc are enabled and
1892 * both use same clock.
1893 *
1894 * So just return crtc id as if crtc and pll were hard linked
1895 * together even if they aren't
1896 */
Alex Deucher1e4db5f2012-11-05 10:16:12 -05001897 return radeon_crtc->crtc_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001898 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001899}
1900
Alex Deucherf3f1f032012-03-20 17:18:04 -04001901void radeon_atom_disp_eng_pll_init(struct radeon_device *rdev)
Alex Deucher3fa47d92012-01-20 14:56:39 -05001902{
1903 /* always set DCPLL */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001904 if (ASIC_IS_DCE6(rdev))
1905 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
1906 else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -05001907 struct radeon_atom_ss ss;
1908 bool ss_enabled = radeon_atombios_get_asic_ss_info(rdev, &ss,
1909 ASIC_INTERNAL_SS_ON_DCPLL,
1910 rdev->clock.default_dispclk);
1911 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001912 atombios_crtc_program_ss(rdev, ATOM_DISABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001913 /* XXX: DCE5, make sure voltage, dispclk is high enough */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001914 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001915 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001916 atombios_crtc_program_ss(rdev, ATOM_ENABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001917 }
1918
1919}
1920
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001921int atombios_crtc_mode_set(struct drm_crtc *crtc,
1922 struct drm_display_mode *mode,
1923 struct drm_display_mode *adjusted_mode,
1924 int x, int y, struct drm_framebuffer *old_fb)
1925{
1926 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1927 struct drm_device *dev = crtc->dev;
1928 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001929 struct radeon_encoder *radeon_encoder =
1930 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher54bfe492010-09-03 15:52:53 -04001931 bool is_tvcv = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001932
Alex Deucher5df31962012-09-13 11:52:08 -04001933 if (radeon_encoder->active_device &
1934 (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT))
1935 is_tvcv = true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001936
Christian Königcde10122014-05-02 14:27:42 +02001937 if (!radeon_crtc->adjusted_clock)
1938 return -EINVAL;
1939
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001940 atombios_crtc_set_pll(crtc, adjusted_mode);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001941
Alex Deucher54bfe492010-09-03 15:52:53 -04001942 if (ASIC_IS_DCE4(rdev))
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001943 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher54bfe492010-09-03 15:52:53 -04001944 else if (ASIC_IS_AVIVO(rdev)) {
1945 if (is_tvcv)
1946 atombios_crtc_set_timing(crtc, adjusted_mode);
1947 else
1948 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
1949 } else {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001950 atombios_crtc_set_timing(crtc, adjusted_mode);
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001951 if (radeon_crtc->crtc_id == 0)
1952 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher615e0cb2010-01-20 16:22:53 -05001953 radeon_legacy_atom_fixup(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001954 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001955 atombios_crtc_set_base(crtc, x, y, old_fb);
Jerome Glissec93bb852009-07-13 21:04:08 +02001956 atombios_overscan_setup(crtc, mode, adjusted_mode);
1957 atombios_scaler_setup(crtc);
Alex Deucher66edc1c2013-07-08 11:26:42 -04001958 /* update the hw version fpr dpm */
1959 radeon_crtc->hw_mode = *adjusted_mode;
1960
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001961 return 0;
1962}
1963
1964static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001965 const struct drm_display_mode *mode,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001966 struct drm_display_mode *adjusted_mode)
1967{
Alex Deucher5df31962012-09-13 11:52:08 -04001968 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1969 struct drm_device *dev = crtc->dev;
1970 struct drm_encoder *encoder;
1971
1972 /* assign the encoder to the radeon crtc to avoid repeated lookups later */
1973 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1974 if (encoder->crtc == crtc) {
1975 radeon_crtc->encoder = encoder;
Alex Deucher57b35e22012-09-17 17:34:45 -04001976 radeon_crtc->connector = radeon_get_connector_for_encoder(encoder);
Alex Deucher5df31962012-09-13 11:52:08 -04001977 break;
1978 }
1979 }
Alex Deucher57b35e22012-09-17 17:34:45 -04001980 if ((radeon_crtc->encoder == NULL) || (radeon_crtc->connector == NULL)) {
1981 radeon_crtc->encoder = NULL;
1982 radeon_crtc->connector = NULL;
Alex Deucher5df31962012-09-13 11:52:08 -04001983 return false;
Alex Deucher57b35e22012-09-17 17:34:45 -04001984 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001985 if (!radeon_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
1986 return false;
Alex Deucher19eca432012-09-13 10:56:16 -04001987 if (!atombios_crtc_prepare_pll(crtc, adjusted_mode))
1988 return false;
Alex Deucherc0fd0832012-09-14 12:30:51 -04001989 /* pick pll */
1990 radeon_crtc->pll_id = radeon_atom_pick_pll(crtc);
1991 /* if we can't get a PPLL for a non-DP encoder, fail */
1992 if ((radeon_crtc->pll_id == ATOM_PPLL_INVALID) &&
1993 !ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder)))
1994 return false;
1995
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001996 return true;
1997}
1998
1999static void atombios_crtc_prepare(struct drm_crtc *crtc)
2000{
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04002001 struct drm_device *dev = crtc->dev;
2002 struct radeon_device *rdev = dev->dev_private;
Alex Deucher267364a2010-03-08 17:10:41 -05002003
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04002004 /* disable crtc pair power gating before programming */
2005 if (ASIC_IS_DCE6(rdev))
2006 atombios_powergate_crtc(crtc, ATOM_DISABLE);
2007
Alex Deucher37b43902010-02-09 12:04:43 -05002008 atombios_lock_crtc(crtc, ATOM_ENABLE);
Alex Deuchera348c842010-01-21 16:50:30 -05002009 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002010}
2011
2012static void atombios_crtc_commit(struct drm_crtc *crtc)
2013{
2014 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
Alex Deucher37b43902010-02-09 12:04:43 -05002015 atombios_lock_crtc(crtc, ATOM_DISABLE);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002016}
2017
Alex Deucher37f90032010-06-11 17:58:38 -04002018static void atombios_crtc_disable(struct drm_crtc *crtc)
2019{
2020 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher64199872012-03-20 17:18:33 -04002021 struct drm_device *dev = crtc->dev;
2022 struct radeon_device *rdev = dev->dev_private;
Alex Deucher8e8e5232011-05-20 04:34:16 -04002023 struct radeon_atom_ss ss;
Alex Deucher4e585912012-08-21 19:06:21 -04002024 int i;
Alex Deucher8e8e5232011-05-20 04:34:16 -04002025
Alex Deucher37f90032010-06-11 17:58:38 -04002026 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Matt Roperf4510a22014-04-01 15:22:40 -07002027 if (crtc->primary->fb) {
Ilija Hadzic75b871e2013-11-02 23:00:19 -04002028 int r;
2029 struct radeon_framebuffer *radeon_fb;
2030 struct radeon_bo *rbo;
2031
Matt Roperf4510a22014-04-01 15:22:40 -07002032 radeon_fb = to_radeon_framebuffer(crtc->primary->fb);
Ilija Hadzic75b871e2013-11-02 23:00:19 -04002033 rbo = gem_to_radeon_bo(radeon_fb->obj);
2034 r = radeon_bo_reserve(rbo, false);
2035 if (unlikely(r))
2036 DRM_ERROR("failed to reserve rbo before unpin\n");
2037 else {
2038 radeon_bo_unpin(rbo);
2039 radeon_bo_unreserve(rbo);
2040 }
2041 }
Alex Deucherac4d04d2013-08-21 14:44:15 -04002042 /* disable the GRPH */
2043 if (ASIC_IS_DCE4(rdev))
2044 WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 0);
2045 else if (ASIC_IS_AVIVO(rdev))
2046 WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 0);
2047
Alex Deucher0e3d50b2013-02-05 11:47:09 -05002048 if (ASIC_IS_DCE6(rdev))
2049 atombios_powergate_crtc(crtc, ATOM_ENABLE);
Alex Deucher37f90032010-06-11 17:58:38 -04002050
Alex Deucher4e585912012-08-21 19:06:21 -04002051 for (i = 0; i < rdev->num_crtc; i++) {
2052 if (rdev->mode_info.crtcs[i] &&
2053 rdev->mode_info.crtcs[i]->enabled &&
2054 i != radeon_crtc->crtc_id &&
2055 radeon_crtc->pll_id == rdev->mode_info.crtcs[i]->pll_id) {
2056 /* one other crtc is using this pll don't turn
2057 * off the pll
2058 */
2059 goto done;
2060 }
2061 }
2062
Alex Deucher37f90032010-06-11 17:58:38 -04002063 switch (radeon_crtc->pll_id) {
2064 case ATOM_PPLL1:
2065 case ATOM_PPLL2:
2066 /* disable the ppll */
2067 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
Alex Deucher8e8e5232011-05-20 04:34:16 -04002068 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
Alex Deucher37f90032010-06-11 17:58:38 -04002069 break;
Alex Deucher64199872012-03-20 17:18:33 -04002070 case ATOM_PPLL0:
2071 /* disable the ppll */
Alex Deucher7eeeabf2013-08-19 10:22:26 -04002072 if ((rdev->family == CHIP_ARUBA) ||
2073 (rdev->family == CHIP_BONAIRE) ||
2074 (rdev->family == CHIP_HAWAII))
Alex Deucher64199872012-03-20 17:18:33 -04002075 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
2076 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2077 break;
Alex Deucher37f90032010-06-11 17:58:38 -04002078 default:
2079 break;
2080 }
Alex Deucher4e585912012-08-21 19:06:21 -04002081done:
Alex Deucherf3dd8502012-08-31 11:56:50 -04002082 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04002083 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04002084 radeon_crtc->encoder = NULL;
Alex Deucher57b35e22012-09-17 17:34:45 -04002085 radeon_crtc->connector = NULL;
Alex Deucher37f90032010-06-11 17:58:38 -04002086}
2087
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002088static const struct drm_crtc_helper_funcs atombios_helper_funcs = {
2089 .dpms = atombios_crtc_dpms,
2090 .mode_fixup = atombios_crtc_mode_fixup,
2091 .mode_set = atombios_crtc_mode_set,
2092 .mode_set_base = atombios_crtc_set_base,
Chris Ball4dd19b02010-09-26 06:47:23 -05002093 .mode_set_base_atomic = atombios_crtc_set_base_atomic,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002094 .prepare = atombios_crtc_prepare,
2095 .commit = atombios_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10002096 .load_lut = radeon_crtc_load_lut,
Alex Deucher37f90032010-06-11 17:58:38 -04002097 .disable = atombios_crtc_disable,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002098};
2099
2100void radeon_atombios_init_crtc(struct drm_device *dev,
2101 struct radeon_crtc *radeon_crtc)
2102{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002103 struct radeon_device *rdev = dev->dev_private;
2104
2105 if (ASIC_IS_DCE4(rdev)) {
2106 switch (radeon_crtc->crtc_id) {
2107 case 0:
2108 default:
Alex Deucher12d77982010-02-09 17:18:48 -05002109 radeon_crtc->crtc_offset = EVERGREEN_CRTC0_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002110 break;
2111 case 1:
Alex Deucher12d77982010-02-09 17:18:48 -05002112 radeon_crtc->crtc_offset = EVERGREEN_CRTC1_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002113 break;
2114 case 2:
Alex Deucher12d77982010-02-09 17:18:48 -05002115 radeon_crtc->crtc_offset = EVERGREEN_CRTC2_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002116 break;
2117 case 3:
Alex Deucher12d77982010-02-09 17:18:48 -05002118 radeon_crtc->crtc_offset = EVERGREEN_CRTC3_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002119 break;
2120 case 4:
Alex Deucher12d77982010-02-09 17:18:48 -05002121 radeon_crtc->crtc_offset = EVERGREEN_CRTC4_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002122 break;
2123 case 5:
Alex Deucher12d77982010-02-09 17:18:48 -05002124 radeon_crtc->crtc_offset = EVERGREEN_CRTC5_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002125 break;
2126 }
2127 } else {
2128 if (radeon_crtc->crtc_id == 1)
2129 radeon_crtc->crtc_offset =
2130 AVIVO_D2CRTC_H_TOTAL - AVIVO_D1CRTC_H_TOTAL;
2131 else
2132 radeon_crtc->crtc_offset = 0;
2133 }
Alex Deucherf3dd8502012-08-31 11:56:50 -04002134 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04002135 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04002136 radeon_crtc->encoder = NULL;
Alex Deucher57b35e22012-09-17 17:34:45 -04002137 radeon_crtc->connector = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002138 drm_crtc_helper_add(&radeon_crtc->base, &atombios_helper_funcs);
2139}