blob: f0d409d846f28457fa60eb72bf8dff985b90f09b [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;
273 /* adjust pm to dpms changes BEFORE enabling crtcs */
274 radeon_pm_compute_clocks(rdev);
Alex Deucher37b43902010-02-09 12:04:43 -0500275 atombios_enable_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400276 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500277 atombios_enable_crtc_memreq(crtc, ATOM_ENABLE);
278 atombios_blank_crtc(crtc, ATOM_DISABLE);
Alex Deucher45f9a392010-03-24 13:55:51 -0400279 drm_vblank_post_modeset(dev, radeon_crtc->crtc_id);
Alex Deucher500b7582009-12-02 11:46:52 -0500280 radeon_crtc_load_lut(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200281 break;
282 case DRM_MODE_DPMS_STANDBY:
283 case DRM_MODE_DPMS_SUSPEND:
284 case DRM_MODE_DPMS_OFF:
Alex Deucher45f9a392010-03-24 13:55:51 -0400285 drm_vblank_pre_modeset(dev, radeon_crtc->crtc_id);
Alex Deuchera93f3442010-12-20 11:22:29 -0500286 if (radeon_crtc->enabled)
287 atombios_blank_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400288 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500289 atombios_enable_crtc_memreq(crtc, ATOM_DISABLE);
290 atombios_enable_crtc(crtc, ATOM_DISABLE);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400291 radeon_crtc->enabled = false;
Alex Deucherd7311172010-05-03 01:13:14 -0400292 /* adjust pm to dpms changes AFTER disabling crtcs */
293 radeon_pm_compute_clocks(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200294 break;
295 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200296}
297
298static void
299atombios_set_crtc_dtd_timing(struct drm_crtc *crtc,
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400300 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200301{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400302 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200303 struct drm_device *dev = crtc->dev;
304 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400305 SET_CRTC_USING_DTD_TIMING_PARAMETERS args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200306 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400307 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200308
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400309 memset(&args, 0, sizeof(args));
Alex Deucher5b1714d2010-08-03 19:59:20 -0400310 args.usH_Size = cpu_to_le16(mode->crtc_hdisplay - (radeon_crtc->h_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400311 args.usH_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400312 cpu_to_le16(mode->crtc_hblank_end - mode->crtc_hdisplay + (radeon_crtc->h_border * 2));
313 args.usV_Size = cpu_to_le16(mode->crtc_vdisplay - (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400314 args.usV_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400315 cpu_to_le16(mode->crtc_vblank_end - mode->crtc_vdisplay + (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400316 args.usH_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400317 cpu_to_le16(mode->crtc_hsync_start - mode->crtc_hdisplay + radeon_crtc->h_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400318 args.usH_SyncWidth =
319 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
320 args.usV_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400321 cpu_to_le16(mode->crtc_vsync_start - mode->crtc_vdisplay + radeon_crtc->v_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400322 args.usV_SyncWidth =
323 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
Alex Deucher5b1714d2010-08-03 19:59:20 -0400324 args.ucH_Border = radeon_crtc->h_border;
325 args.ucV_Border = radeon_crtc->v_border;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400326
327 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
328 misc |= ATOM_VSYNC_POLARITY;
329 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
330 misc |= ATOM_HSYNC_POLARITY;
331 if (mode->flags & DRM_MODE_FLAG_CSYNC)
332 misc |= ATOM_COMPOSITESYNC;
333 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
334 misc |= ATOM_INTERLACE;
335 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
336 misc |= ATOM_DOUBLE_CLOCK_MODE;
337
338 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
339 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200340
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400341 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200342}
343
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400344static void atombios_crtc_set_timing(struct drm_crtc *crtc,
345 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400347 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200348 struct drm_device *dev = crtc->dev;
349 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400350 SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200351 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400352 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200353
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400354 memset(&args, 0, sizeof(args));
355 args.usH_Total = cpu_to_le16(mode->crtc_htotal);
356 args.usH_Disp = cpu_to_le16(mode->crtc_hdisplay);
357 args.usH_SyncStart = cpu_to_le16(mode->crtc_hsync_start);
358 args.usH_SyncWidth =
359 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
360 args.usV_Total = cpu_to_le16(mode->crtc_vtotal);
361 args.usV_Disp = cpu_to_le16(mode->crtc_vdisplay);
362 args.usV_SyncStart = cpu_to_le16(mode->crtc_vsync_start);
363 args.usV_SyncWidth =
364 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
365
Alex Deucher54bfe492010-09-03 15:52:53 -0400366 args.ucOverscanRight = radeon_crtc->h_border;
367 args.ucOverscanLeft = radeon_crtc->h_border;
368 args.ucOverscanBottom = radeon_crtc->v_border;
369 args.ucOverscanTop = radeon_crtc->v_border;
370
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400371 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
372 misc |= ATOM_VSYNC_POLARITY;
373 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
374 misc |= ATOM_HSYNC_POLARITY;
375 if (mode->flags & DRM_MODE_FLAG_CSYNC)
376 misc |= ATOM_COMPOSITESYNC;
377 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
378 misc |= ATOM_INTERLACE;
379 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
380 misc |= ATOM_DOUBLE_CLOCK_MODE;
381
382 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
383 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200384
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400385 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200386}
387
Alex Deucher3fa47d92012-01-20 14:56:39 -0500388static void atombios_disable_ss(struct radeon_device *rdev, int pll_id)
Alex Deucherb7922102010-03-06 10:57:30 -0500389{
Alex Deucherb7922102010-03-06 10:57:30 -0500390 u32 ss_cntl;
391
392 if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500393 switch (pll_id) {
Alex Deucherb7922102010-03-06 10:57:30 -0500394 case ATOM_PPLL1:
395 ss_cntl = RREG32(EVERGREEN_P1PLL_SS_CNTL);
396 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
397 WREG32(EVERGREEN_P1PLL_SS_CNTL, ss_cntl);
398 break;
399 case ATOM_PPLL2:
400 ss_cntl = RREG32(EVERGREEN_P2PLL_SS_CNTL);
401 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
402 WREG32(EVERGREEN_P2PLL_SS_CNTL, ss_cntl);
403 break;
404 case ATOM_DCPLL:
405 case ATOM_PPLL_INVALID:
406 return;
407 }
408 } else if (ASIC_IS_AVIVO(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500409 switch (pll_id) {
Alex Deucherb7922102010-03-06 10:57:30 -0500410 case ATOM_PPLL1:
411 ss_cntl = RREG32(AVIVO_P1PLL_INT_SS_CNTL);
412 ss_cntl &= ~1;
413 WREG32(AVIVO_P1PLL_INT_SS_CNTL, ss_cntl);
414 break;
415 case ATOM_PPLL2:
416 ss_cntl = RREG32(AVIVO_P2PLL_INT_SS_CNTL);
417 ss_cntl &= ~1;
418 WREG32(AVIVO_P2PLL_INT_SS_CNTL, ss_cntl);
419 break;
420 case ATOM_DCPLL:
421 case ATOM_PPLL_INVALID:
422 return;
423 }
424 }
425}
426
427
Alex Deucher26b9fc32010-02-01 16:39:11 -0500428union atom_enable_ss {
Alex Deucherba032a52010-10-04 17:13:01 -0400429 ENABLE_LVDS_SS_PARAMETERS lvds_ss;
430 ENABLE_LVDS_SS_PARAMETERS_V2 lvds_ss_2;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500431 ENABLE_SPREAD_SPECTRUM_ON_PPLL_PS_ALLOCATION v1;
Alex Deucherba032a52010-10-04 17:13:01 -0400432 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V2 v2;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500433 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V3 v3;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500434};
435
Alex Deucher3fa47d92012-01-20 14:56:39 -0500436static void atombios_crtc_program_ss(struct radeon_device *rdev,
Alex Deucherba032a52010-10-04 17:13:01 -0400437 int enable,
438 int pll_id,
Jerome Glisse5efcc762012-08-17 14:40:04 -0400439 int crtc_id,
Alex Deucherba032a52010-10-04 17:13:01 -0400440 struct radeon_atom_ss *ss)
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400441{
Jerome Glisse5efcc762012-08-17 14:40:04 -0400442 unsigned i;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400443 int index = GetIndexIntoMasterTable(COMMAND, EnableSpreadSpectrumOnPPLL);
Alex Deucher26b9fc32010-02-01 16:39:11 -0500444 union atom_enable_ss args;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400445
Alex Deucherc4756ba2014-01-15 13:59:47 -0500446 if (enable) {
447 /* Don't mess with SS if percentage is 0 or external ss.
448 * SS is already disabled previously, and disabling it
449 * again can cause display problems if the pll is already
450 * programmed.
451 */
452 if (ss->percentage == 0)
453 return;
454 if (ss->type & ATOM_EXTERNAL_SS_MASK)
455 return;
456 } else {
Alex Deucher53176702012-08-21 18:52:56 -0400457 for (i = 0; i < rdev->num_crtc; i++) {
Jerome Glisse5efcc762012-08-17 14:40:04 -0400458 if (rdev->mode_info.crtcs[i] &&
459 rdev->mode_info.crtcs[i]->enabled &&
460 i != crtc_id &&
461 pll_id == rdev->mode_info.crtcs[i]->pll_id) {
462 /* one other crtc is using this pll don't turn
463 * off spread spectrum as it might turn off
464 * display on active crtc
465 */
466 return;
467 }
468 }
469 }
470
Alex Deucher26b9fc32010-02-01 16:39:11 -0500471 memset(&args, 0, sizeof(args));
Alex Deucherba032a52010-10-04 17:13:01 -0400472
Alex Deuchera572eaa2011-01-06 21:19:16 -0500473 if (ASIC_IS_DCE5(rdev)) {
Cédric Cano45894332011-02-11 19:45:37 -0500474 args.v3.usSpreadSpectrumAmountFrac = cpu_to_le16(0);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400475 args.v3.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500476 switch (pll_id) {
477 case ATOM_PPLL1:
478 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P1PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500479 break;
480 case ATOM_PPLL2:
481 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P2PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500482 break;
483 case ATOM_DCPLL:
484 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_DCPLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500485 break;
486 case ATOM_PPLL_INVALID:
487 return;
488 }
Alex Deucherf312f092012-07-17 14:02:44 -0400489 args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
490 args.v3.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherd0ae3e82011-05-23 14:06:20 -0400491 args.v3.ucEnable = enable;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500492 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucherba032a52010-10-04 17:13:01 -0400493 args.v2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400494 args.v2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400495 switch (pll_id) {
496 case ATOM_PPLL1:
497 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P1PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400498 break;
499 case ATOM_PPLL2:
500 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P2PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400501 break;
502 case ATOM_DCPLL:
503 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_DCPLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400504 break;
505 case ATOM_PPLL_INVALID:
506 return;
507 }
Alex Deucherf312f092012-07-17 14:02:44 -0400508 args.v2.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
509 args.v2.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherba032a52010-10-04 17:13:01 -0400510 args.v2.ucEnable = enable;
511 } else if (ASIC_IS_DCE3(rdev)) {
512 args.v1.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400513 args.v1.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400514 args.v1.ucSpreadSpectrumStep = ss->step;
515 args.v1.ucSpreadSpectrumDelay = ss->delay;
516 args.v1.ucSpreadSpectrumRange = ss->range;
517 args.v1.ucPpll = pll_id;
518 args.v1.ucEnable = enable;
519 } else if (ASIC_IS_AVIVO(rdev)) {
Alex Deucher8e8e5232011-05-20 04:34:16 -0400520 if ((enable == ATOM_DISABLE) || (ss->percentage == 0) ||
521 (ss->type & ATOM_EXTERNAL_SS_MASK)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500522 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400523 return;
524 }
525 args.lvds_ss_2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400526 args.lvds_ss_2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400527 args.lvds_ss_2.ucSpreadSpectrumStep = ss->step;
528 args.lvds_ss_2.ucSpreadSpectrumDelay = ss->delay;
529 args.lvds_ss_2.ucSpreadSpectrumRange = ss->range;
530 args.lvds_ss_2.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400531 } else {
Alex Deucherc4756ba2014-01-15 13:59:47 -0500532 if (enable == ATOM_DISABLE) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500533 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400534 return;
535 }
536 args.lvds_ss.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400537 args.lvds_ss.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400538 args.lvds_ss.ucSpreadSpectrumStepSize_Delay = (ss->step & 3) << 2;
539 args.lvds_ss.ucSpreadSpectrumStepSize_Delay |= (ss->delay & 7) << 4;
540 args.lvds_ss.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400541 }
Alex Deucher26b9fc32010-02-01 16:39:11 -0500542 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400543}
544
Alex Deucher4eaeca32010-01-19 17:32:27 -0500545union adjust_pixel_clock {
546 ADJUST_DISPLAY_PLL_PS_ALLOCATION v1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500547 ADJUST_DISPLAY_PLL_PS_ALLOCATION_V3 v3;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500548};
549
550static u32 atombios_adjust_pll(struct drm_crtc *crtc,
Alex Deucher19eca432012-09-13 10:56:16 -0400551 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200552{
Alex Deucher19eca432012-09-13 10:56:16 -0400553 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200554 struct drm_device *dev = crtc->dev;
555 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400556 struct drm_encoder *encoder = radeon_crtc->encoder;
557 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
558 struct drm_connector *connector = radeon_get_connector_for_encoder(encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500559 u32 adjusted_clock = mode->clock;
Alex Deucher5df31962012-09-13 11:52:08 -0400560 int encoder_mode = atombios_get_encoder_mode(encoder);
Alex Deucherfbee67a2010-08-16 12:44:47 -0400561 u32 dp_clock = mode->clock;
Alex Deucher7d5a33b2014-02-03 15:53:25 -0500562 int bpc = radeon_crtc->bpc;
Alex Deucher5df31962012-09-13 11:52:08 -0400563 bool is_duallink = radeon_dig_monitor_is_duallink(encoder, mode->clock);
Alex Deucherfc103322010-01-19 17:16:10 -0500564
Alex Deucher4eaeca32010-01-19 17:32:27 -0500565 /* reset the pll flags */
Alex Deucher19eca432012-09-13 10:56:16 -0400566 radeon_crtc->pll_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200567
568 if (ASIC_IS_AVIVO(rdev)) {
Alex Deuchereb1300b2009-07-13 11:09:56 -0400569 if ((rdev->family == CHIP_RS600) ||
570 (rdev->family == CHIP_RS690) ||
571 (rdev->family == CHIP_RS740))
Alex Deucher19eca432012-09-13 10:56:16 -0400572 radeon_crtc->pll_flags |= (/*RADEON_PLL_USE_FRAC_FB_DIV |*/
573 RADEON_PLL_PREFER_CLOSEST_LOWER);
Dave Airlie5480f722010-10-19 10:36:47 +1000574
575 if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400576 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000577 else
Alex Deucher19eca432012-09-13 10:56:16 -0400578 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Alex Deucher9bb09fa2011-04-07 10:31:25 -0400579
Alex Deucher5785e532011-04-19 15:24:59 -0400580 if (rdev->family < CHIP_RV770)
Alex Deucher19eca432012-09-13 10:56:16 -0400581 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_MINM_OVER_MAXP;
Alex Deucher37d41742012-04-19 10:48:38 -0400582 /* use frac fb div on APUs */
Alex Deucherc7d2f222012-12-18 22:11:51 -0500583 if (ASIC_IS_DCE41(rdev) || ASIC_IS_DCE61(rdev) || ASIC_IS_DCE8(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -0400584 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Alex Deucher41167822013-04-01 16:06:25 -0400585 /* use frac fb div on RS780/RS880 */
586 if ((rdev->family == CHIP_RS780) || (rdev->family == CHIP_RS880))
587 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Alex Deuchera02dc742012-11-13 18:03:41 -0500588 if (ASIC_IS_DCE32(rdev) && mode->clock > 165000)
589 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000590 } else {
Alex Deucher19eca432012-09-13 10:56:16 -0400591 radeon_crtc->pll_flags |= RADEON_PLL_LEGACY;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200592
Dave Airlie5480f722010-10-19 10:36:47 +1000593 if (mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400594 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000595 else
Alex Deucher19eca432012-09-13 10:56:16 -0400596 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000597 }
598
Alex Deucher5df31962012-09-13 11:52:08 -0400599 if ((radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
600 (radeon_encoder_get_dp_bridge_encoder_id(encoder) != ENCODER_OBJECT_ID_NONE)) {
601 if (connector) {
602 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
603 struct radeon_connector_atom_dig *dig_connector =
604 radeon_connector->con_priv;
Alex Deucherfbee67a2010-08-16 12:44:47 -0400605
Alex Deucher5df31962012-09-13 11:52:08 -0400606 dp_clock = dig_connector->dp_clock;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200607 }
608 }
609
Alex Deucher5df31962012-09-13 11:52:08 -0400610 /* use recommended ref_div for ss */
611 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
612 if (radeon_crtc->ss_enabled) {
613 if (radeon_crtc->ss.refdiv) {
614 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
615 radeon_crtc->pll_reference_div = radeon_crtc->ss.refdiv;
616 if (ASIC_IS_AVIVO(rdev))
617 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
618 }
619 }
620 }
621
622 if (ASIC_IS_AVIVO(rdev)) {
623 /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */
624 if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1)
625 adjusted_clock = mode->clock * 2;
626 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
627 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_CLOSEST_LOWER;
628 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
629 radeon_crtc->pll_flags |= RADEON_PLL_IS_LCD;
630 } else {
631 if (encoder->encoder_type != DRM_MODE_ENCODER_DAC)
632 radeon_crtc->pll_flags |= RADEON_PLL_NO_ODD_POST_DIV;
633 if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS)
634 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
635 }
636
Alex Deucher2606c882009-10-08 13:36:21 -0400637 /* DCE3+ has an AdjustDisplayPll that will adjust the pixel clock
638 * accordingly based on the encoder/transmitter to work around
639 * special hw requirements.
640 */
641 if (ASIC_IS_DCE3(rdev)) {
Alex Deucher4eaeca32010-01-19 17:32:27 -0500642 union adjust_pixel_clock args;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500643 u8 frev, crev;
644 int index;
Alex Deucher2606c882009-10-08 13:36:21 -0400645
Alex Deucher2606c882009-10-08 13:36:21 -0400646 index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400647 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
648 &crev))
649 return adjusted_clock;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500650
651 memset(&args, 0, sizeof(args));
652
653 switch (frev) {
654 case 1:
655 switch (crev) {
656 case 1:
657 case 2:
658 args.v1.usPixelClock = cpu_to_le16(mode->clock / 10);
659 args.v1.ucTransmitterID = radeon_encoder->encoder_id;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500660 args.v1.ucEncodeMode = encoder_mode;
Alex Deucher19eca432012-09-13 10:56:16 -0400661 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherfbee67a2010-08-16 12:44:47 -0400662 args.v1.ucConfig |=
663 ADJUST_DISPLAY_CONFIG_SS_ENABLE;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500664
665 atom_execute_table(rdev->mode_info.atom_context,
666 index, (uint32_t *)&args);
667 adjusted_clock = le16_to_cpu(args.v1.usPixelClock) * 10;
668 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500669 case 3:
670 args.v3.sInput.usPixelClock = cpu_to_le16(mode->clock / 10);
671 args.v3.sInput.ucTransmitterID = radeon_encoder->encoder_id;
672 args.v3.sInput.ucEncodeMode = encoder_mode;
673 args.v3.sInput.ucDispPllConfig = 0;
Alex Deucher19eca432012-09-13 10:56:16 -0400674 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherb526ce22011-01-20 23:35:58 +0000675 args.v3.sInput.ucDispPllConfig |=
676 DISPPLL_CONFIG_SS_ENABLE;
Alex Deucher996d5c52011-10-26 15:59:50 -0400677 if (ENCODER_MODE_IS_DP(encoder_mode)) {
Alex Deucherb4f15f82011-10-25 11:34:51 -0400678 args.v3.sInput.ucDispPllConfig |=
679 DISPPLL_CONFIG_COHERENT_MODE;
680 /* 16200 or 27000 */
681 args.v3.sInput.usPixelClock = cpu_to_le16(dp_clock / 10);
682 } else if (radeon_encoder->devices & (ATOM_DEVICE_DFP_SUPPORT)) {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500683 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucherb4f15f82011-10-25 11:34:51 -0400684 if (encoder_mode == ATOM_ENCODER_MODE_HDMI)
685 /* deep color support */
686 args.v3.sInput.usPixelClock =
687 cpu_to_le16((mode->clock * bpc / 8) / 10);
688 if (dig->coherent_mode)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500689 args.v3.sInput.ucDispPllConfig |=
690 DISPPLL_CONFIG_COHERENT_MODE;
Alex Deucher9aa59992012-01-20 15:03:30 -0500691 if (is_duallink)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500692 args.v3.sInput.ucDispPllConfig |=
Alex Deucherb4f15f82011-10-25 11:34:51 -0400693 DISPPLL_CONFIG_DUAL_LINK;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500694 }
Alex Deucher1d33e1f2011-10-31 08:58:47 -0400695 if (radeon_encoder_get_dp_bridge_encoder_id(encoder) !=
696 ENCODER_OBJECT_ID_NONE)
697 args.v3.sInput.ucExtTransmitterID =
698 radeon_encoder_get_dp_bridge_encoder_id(encoder);
699 else
Alex Deuchercc9f67a2011-06-16 10:06:16 -0400700 args.v3.sInput.ucExtTransmitterID = 0;
701
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500702 atom_execute_table(rdev->mode_info.atom_context,
703 index, (uint32_t *)&args);
704 adjusted_clock = le32_to_cpu(args.v3.sOutput.ulDispPllFreq) * 10;
705 if (args.v3.sOutput.ucRefDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400706 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
707 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
708 radeon_crtc->pll_reference_div = args.v3.sOutput.ucRefDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500709 }
710 if (args.v3.sOutput.ucPostDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400711 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
712 radeon_crtc->pll_flags |= RADEON_PLL_USE_POST_DIV;
713 radeon_crtc->pll_post_div = args.v3.sOutput.ucPostDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500714 }
715 break;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500716 default:
717 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
718 return adjusted_clock;
719 }
720 break;
721 default:
722 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
723 return adjusted_clock;
724 }
Alex Deucherd56ef9c2009-10-27 12:11:09 -0400725 }
Alex Deucher4eaeca32010-01-19 17:32:27 -0500726 return adjusted_clock;
727}
728
729union set_pixel_clock {
730 SET_PIXEL_CLOCK_PS_ALLOCATION base;
731 PIXEL_CLOCK_PARAMETERS v1;
732 PIXEL_CLOCK_PARAMETERS_V2 v2;
733 PIXEL_CLOCK_PARAMETERS_V3 v3;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500734 PIXEL_CLOCK_PARAMETERS_V5 v5;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500735 PIXEL_CLOCK_PARAMETERS_V6 v6;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500736};
737
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500738/* on DCE5, make sure the voltage is high enough to support the
739 * required disp clk.
740 */
Alex Deucherf3f1f032012-03-20 17:18:04 -0400741static void atombios_crtc_set_disp_eng_pll(struct radeon_device *rdev,
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500742 u32 dispclk)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500743{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500744 u8 frev, crev;
745 int index;
746 union set_pixel_clock args;
747
748 memset(&args, 0, sizeof(args));
749
750 index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400751 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
752 &crev))
753 return;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500754
755 switch (frev) {
756 case 1:
757 switch (crev) {
758 case 5:
759 /* if the default dcpll clock is specified,
760 * SetPixelClock provides the dividers
761 */
762 args.v5.ucCRTC = ATOM_CRTC_INVALID;
Cédric Cano45894332011-02-11 19:45:37 -0500763 args.v5.usPixelClock = cpu_to_le16(dispclk);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500764 args.v5.ucPpll = ATOM_DCPLL;
765 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500766 case 6:
767 /* if the default dcpll clock is specified,
768 * SetPixelClock provides the dividers
769 */
Alex Deucher265aa6c2011-02-14 16:16:22 -0500770 args.v6.ulDispEngClkFreq = cpu_to_le32(dispclk);
Alex Deucher8542c122012-07-13 11:04:37 -0400771 if (ASIC_IS_DCE61(rdev) || ASIC_IS_DCE8(rdev))
Alex Deucher729b95e2012-03-20 17:18:31 -0400772 args.v6.ucPpll = ATOM_EXT_PLL1;
773 else if (ASIC_IS_DCE6(rdev))
Alex Deucherf3f1f032012-03-20 17:18:04 -0400774 args.v6.ucPpll = ATOM_PPLL0;
775 else
776 args.v6.ucPpll = ATOM_DCPLL;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500777 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500778 default:
779 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
780 return;
781 }
782 break;
783 default:
784 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
785 return;
786 }
787 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
788}
789
Alex Deucher37f90032010-06-11 17:58:38 -0400790static void atombios_crtc_program_pll(struct drm_crtc *crtc,
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000791 u32 crtc_id,
Alex Deucher37f90032010-06-11 17:58:38 -0400792 int pll_id,
793 u32 encoder_mode,
794 u32 encoder_id,
795 u32 clock,
796 u32 ref_div,
797 u32 fb_div,
798 u32 frac_fb_div,
Alex Deucherdf271be2011-05-20 04:34:15 -0400799 u32 post_div,
Alex Deucher8e8e5232011-05-20 04:34:16 -0400800 int bpc,
801 bool ss_enabled,
802 struct radeon_atom_ss *ss)
Alex Deucher37f90032010-06-11 17:58:38 -0400803{
804 struct drm_device *dev = crtc->dev;
805 struct radeon_device *rdev = dev->dev_private;
806 u8 frev, crev;
807 int index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
808 union set_pixel_clock args;
809
810 memset(&args, 0, sizeof(args));
811
812 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
813 &crev))
814 return;
815
816 switch (frev) {
817 case 1:
818 switch (crev) {
819 case 1:
820 if (clock == ATOM_DISABLE)
821 return;
822 args.v1.usPixelClock = cpu_to_le16(clock / 10);
823 args.v1.usRefDiv = cpu_to_le16(ref_div);
824 args.v1.usFbDiv = cpu_to_le16(fb_div);
825 args.v1.ucFracFbDiv = frac_fb_div;
826 args.v1.ucPostDiv = post_div;
827 args.v1.ucPpll = pll_id;
828 args.v1.ucCRTC = crtc_id;
829 args.v1.ucRefDivSrc = 1;
830 break;
831 case 2:
832 args.v2.usPixelClock = cpu_to_le16(clock / 10);
833 args.v2.usRefDiv = cpu_to_le16(ref_div);
834 args.v2.usFbDiv = cpu_to_le16(fb_div);
835 args.v2.ucFracFbDiv = frac_fb_div;
836 args.v2.ucPostDiv = post_div;
837 args.v2.ucPpll = pll_id;
838 args.v2.ucCRTC = crtc_id;
839 args.v2.ucRefDivSrc = 1;
840 break;
841 case 3:
842 args.v3.usPixelClock = cpu_to_le16(clock / 10);
843 args.v3.usRefDiv = cpu_to_le16(ref_div);
844 args.v3.usFbDiv = cpu_to_le16(fb_div);
845 args.v3.ucFracFbDiv = frac_fb_div;
846 args.v3.ucPostDiv = post_div;
847 args.v3.ucPpll = pll_id;
Alex Deuchere7295862012-09-12 17:58:07 -0400848 if (crtc_id == ATOM_CRTC2)
849 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC2;
850 else
851 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC1;
Alex Deucher6f15c502011-05-20 12:36:12 -0400852 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
853 args.v3.ucMiscInfo |= PIXEL_CLOCK_MISC_REF_DIV_SRC;
Alex Deucher37f90032010-06-11 17:58:38 -0400854 args.v3.ucTransmitterId = encoder_id;
855 args.v3.ucEncoderMode = encoder_mode;
856 break;
857 case 5:
858 args.v5.ucCRTC = crtc_id;
859 args.v5.usPixelClock = cpu_to_le16(clock / 10);
860 args.v5.ucRefDiv = ref_div;
861 args.v5.usFbDiv = cpu_to_le16(fb_div);
862 args.v5.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
863 args.v5.ucPostDiv = post_div;
864 args.v5.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400865 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
866 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_REF_DIV_SRC;
Alex Deucherdf271be2011-05-20 04:34:15 -0400867 switch (bpc) {
868 case 8:
869 default:
870 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_24BPP;
871 break;
872 case 10:
873 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_30BPP;
874 break;
875 }
Alex Deucher37f90032010-06-11 17:58:38 -0400876 args.v5.ucTransmitterID = encoder_id;
877 args.v5.ucEncoderMode = encoder_mode;
878 args.v5.ucPpll = pll_id;
879 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500880 case 6:
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000881 args.v6.ulDispEngClkFreq = cpu_to_le32(crtc_id << 24 | clock / 10);
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500882 args.v6.ucRefDiv = ref_div;
883 args.v6.usFbDiv = cpu_to_le16(fb_div);
884 args.v6.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
885 args.v6.ucPostDiv = post_div;
886 args.v6.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400887 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
888 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_REF_DIV_SRC;
Alex Deucherdf271be2011-05-20 04:34:15 -0400889 switch (bpc) {
890 case 8:
891 default:
892 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_24BPP;
893 break;
894 case 10:
895 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_30BPP;
896 break;
897 case 12:
898 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_36BPP;
899 break;
900 case 16:
901 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_48BPP;
902 break;
903 }
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500904 args.v6.ucTransmitterID = encoder_id;
905 args.v6.ucEncoderMode = encoder_mode;
906 args.v6.ucPpll = pll_id;
907 break;
Alex Deucher37f90032010-06-11 17:58:38 -0400908 default:
909 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
910 return;
911 }
912 break;
913 default:
914 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
915 return;
916 }
917
918 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
919}
920
Alex Deucher19eca432012-09-13 10:56:16 -0400921static bool atombios_crtc_prepare_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
922{
923 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
924 struct drm_device *dev = crtc->dev;
925 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400926 struct radeon_encoder *radeon_encoder =
927 to_radeon_encoder(radeon_crtc->encoder);
928 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400929
930 radeon_crtc->bpc = 8;
931 radeon_crtc->ss_enabled = false;
932
Alex Deucher19eca432012-09-13 10:56:16 -0400933 if ((radeon_encoder->active_device & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
Alex Deucher5df31962012-09-13 11:52:08 -0400934 (radeon_encoder_get_dp_bridge_encoder_id(radeon_crtc->encoder) != ENCODER_OBJECT_ID_NONE)) {
Alex Deucher19eca432012-09-13 10:56:16 -0400935 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
936 struct drm_connector *connector =
Alex Deucher5df31962012-09-13 11:52:08 -0400937 radeon_get_connector_for_encoder(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400938 struct radeon_connector *radeon_connector =
939 to_radeon_connector(connector);
940 struct radeon_connector_atom_dig *dig_connector =
941 radeon_connector->con_priv;
942 int dp_clock;
943 radeon_crtc->bpc = radeon_get_monitor_bpc(connector);
944
945 switch (encoder_mode) {
946 case ATOM_ENCODER_MODE_DP_MST:
947 case ATOM_ENCODER_MODE_DP:
948 /* DP/eDP */
949 dp_clock = dig_connector->dp_clock / 10;
950 if (ASIC_IS_DCE4(rdev))
951 radeon_crtc->ss_enabled =
952 radeon_atombios_get_asic_ss_info(rdev, &radeon_crtc->ss,
953 ASIC_INTERNAL_SS_ON_DP,
954 dp_clock);
955 else {
956 if (dp_clock == 16200) {
957 radeon_crtc->ss_enabled =
958 radeon_atombios_get_ppll_ss_info(rdev,
959 &radeon_crtc->ss,
960 ATOM_DP_SS_ID2);
961 if (!radeon_crtc->ss_enabled)
962 radeon_crtc->ss_enabled =
963 radeon_atombios_get_ppll_ss_info(rdev,
964 &radeon_crtc->ss,
965 ATOM_DP_SS_ID1);
Alex Deucherd8e24522014-01-13 16:47:05 -0500966 } else {
Alex Deucher19eca432012-09-13 10:56:16 -0400967 radeon_crtc->ss_enabled =
968 radeon_atombios_get_ppll_ss_info(rdev,
969 &radeon_crtc->ss,
970 ATOM_DP_SS_ID1);
Alex Deucherd8e24522014-01-13 16:47:05 -0500971 }
972 /* disable spread spectrum on DCE3 DP */
973 radeon_crtc->ss_enabled = false;
Alex Deucher19eca432012-09-13 10:56:16 -0400974 }
975 break;
976 case ATOM_ENCODER_MODE_LVDS:
977 if (ASIC_IS_DCE4(rdev))
978 radeon_crtc->ss_enabled =
979 radeon_atombios_get_asic_ss_info(rdev,
980 &radeon_crtc->ss,
981 dig->lcd_ss_id,
982 mode->clock / 10);
983 else
984 radeon_crtc->ss_enabled =
985 radeon_atombios_get_ppll_ss_info(rdev,
986 &radeon_crtc->ss,
987 dig->lcd_ss_id);
988 break;
989 case ATOM_ENCODER_MODE_DVI:
990 if (ASIC_IS_DCE4(rdev))
991 radeon_crtc->ss_enabled =
992 radeon_atombios_get_asic_ss_info(rdev,
993 &radeon_crtc->ss,
994 ASIC_INTERNAL_SS_ON_TMDS,
995 mode->clock / 10);
996 break;
997 case ATOM_ENCODER_MODE_HDMI:
998 if (ASIC_IS_DCE4(rdev))
999 radeon_crtc->ss_enabled =
1000 radeon_atombios_get_asic_ss_info(rdev,
1001 &radeon_crtc->ss,
1002 ASIC_INTERNAL_SS_ON_HDMI,
1003 mode->clock / 10);
1004 break;
1005 default:
1006 break;
1007 }
1008 }
1009
1010 /* adjust pixel clock as needed */
1011 radeon_crtc->adjusted_clock = atombios_adjust_pll(crtc, mode);
1012
1013 return true;
1014}
1015
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001016static void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
Alex Deucher4eaeca32010-01-19 17:32:27 -05001017{
1018 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1019 struct drm_device *dev = crtc->dev;
1020 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001021 struct radeon_encoder *radeon_encoder =
1022 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -05001023 u32 pll_clock = mode->clock;
1024 u32 ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0;
1025 struct radeon_pll *pll;
Alex Deucher5df31962012-09-13 11:52:08 -04001026 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -05001027
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001028 switch (radeon_crtc->pll_id) {
1029 case ATOM_PPLL1:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001030 pll = &rdev->clock.p1pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001031 break;
1032 case ATOM_PPLL2:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001033 pll = &rdev->clock.p2pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001034 break;
1035 case ATOM_DCPLL:
1036 case ATOM_PPLL_INVALID:
Stefan Richter921d98b2010-05-26 10:27:44 +10001037 default:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001038 pll = &rdev->clock.dcpll;
1039 break;
1040 }
Alex Deucher4eaeca32010-01-19 17:32:27 -05001041
Alex Deucher19eca432012-09-13 10:56:16 -04001042 /* update pll params */
1043 pll->flags = radeon_crtc->pll_flags;
1044 pll->reference_div = radeon_crtc->pll_reference_div;
1045 pll->post_div = radeon_crtc->pll_post_div;
Alex Deucher2606c882009-10-08 13:36:21 -04001046
Alex Deucher64146f82011-03-22 01:46:12 -04001047 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
1048 /* TV seems to prefer the legacy algo on some boards */
Alex Deucher19eca432012-09-13 10:56:16 -04001049 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1050 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher64146f82011-03-22 01:46:12 -04001051 else if (ASIC_IS_AVIVO(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -04001052 radeon_compute_pll_avivo(pll, radeon_crtc->adjusted_clock, &pll_clock,
1053 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher619efb12011-01-31 16:48:53 -05001054 else
Alex Deucher19eca432012-09-13 10:56:16 -04001055 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1056 &fb_div, &frac_fb_div, &ref_div, &post_div);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001057
Alex Deucher19eca432012-09-13 10:56:16 -04001058 atombios_crtc_program_ss(rdev, ATOM_DISABLE, radeon_crtc->pll_id,
1059 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001060
Alex Deucher37f90032010-06-11 17:58:38 -04001061 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
1062 encoder_mode, radeon_encoder->encoder_id, mode->clock,
Alex Deucher19eca432012-09-13 10:56:16 -04001063 ref_div, fb_div, frac_fb_div, post_div,
1064 radeon_crtc->bpc, radeon_crtc->ss_enabled, &radeon_crtc->ss);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001065
Alex Deucher19eca432012-09-13 10:56:16 -04001066 if (radeon_crtc->ss_enabled) {
Alex Deucherba032a52010-10-04 17:13:01 -04001067 /* calculate ss amount and step size */
1068 if (ASIC_IS_DCE4(rdev)) {
1069 u32 step_size;
Alex Deucher18f8f522014-01-15 13:41:31 -05001070 u32 amount = (((fb_div * 10) + frac_fb_div) *
1071 (u32)radeon_crtc->ss.percentage) /
1072 (100 * (u32)radeon_crtc->ss.percentage_divider);
Alex Deucher19eca432012-09-13 10:56:16 -04001073 radeon_crtc->ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK;
1074 radeon_crtc->ss.amount |= ((amount - (amount / 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) &
Alex Deucherba032a52010-10-04 17:13:01 -04001075 ATOM_PPLL_SS_AMOUNT_V2_NFRAC_MASK;
Alex Deucher19eca432012-09-13 10:56:16 -04001076 if (radeon_crtc->ss.type & ATOM_PPLL_SS_TYPE_V2_CENTRE_SPREAD)
Alex Deucher18f8f522014-01-15 13:41:31 -05001077 step_size = (4 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001078 (125 * 25 * pll->reference_freq / 100);
1079 else
Alex Deucher18f8f522014-01-15 13:41:31 -05001080 step_size = (2 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001081 (125 * 25 * pll->reference_freq / 100);
Alex Deucher19eca432012-09-13 10:56:16 -04001082 radeon_crtc->ss.step = step_size;
Alex Deucherba032a52010-10-04 17:13:01 -04001083 }
1084
Alex Deucher19eca432012-09-13 10:56:16 -04001085 atombios_crtc_program_ss(rdev, ATOM_ENABLE, radeon_crtc->pll_id,
1086 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001087 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001088}
1089
Alex Deucherc9417bd2011-02-06 14:23:26 -05001090static int dce4_crtc_do_set_base(struct drm_crtc *crtc,
1091 struct drm_framebuffer *fb,
1092 int x, int y, int atomic)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001093{
1094 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1095 struct drm_device *dev = crtc->dev;
1096 struct radeon_device *rdev = dev->dev_private;
1097 struct radeon_framebuffer *radeon_fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001098 struct drm_framebuffer *target_fb;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001099 struct drm_gem_object *obj;
1100 struct radeon_bo *rbo;
1101 uint64_t fb_location;
1102 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Jerome Glisse285484e2011-12-16 17:03:42 -05001103 unsigned bankw, bankh, mtaspect, tile_split;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001104 u32 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_NONE);
Alex Deucheradcfde52011-05-27 10:05:03 -04001105 u32 tmp, viewport_w, viewport_h;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001106 int r;
1107
1108 /* no fb bound */
Chris Ball4dd19b02010-09-26 06:47:23 -05001109 if (!atomic && !crtc->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001110 DRM_DEBUG_KMS("No FB bound\n");
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001111 return 0;
1112 }
1113
Chris Ball4dd19b02010-09-26 06:47:23 -05001114 if (atomic) {
1115 radeon_fb = to_radeon_framebuffer(fb);
1116 target_fb = fb;
1117 }
1118 else {
1119 radeon_fb = to_radeon_framebuffer(crtc->fb);
1120 target_fb = crtc->fb;
1121 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001122
Chris Ball4dd19b02010-09-26 06:47:23 -05001123 /* If atomic, assume fb object is pinned & idle & fenced and
1124 * just update base pointers
1125 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001126 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001127 rbo = gem_to_radeon_bo(obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001128 r = radeon_bo_reserve(rbo, false);
1129 if (unlikely(r != 0))
1130 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001131
1132 if (atomic)
1133 fb_location = radeon_bo_gpu_offset(rbo);
1134 else {
1135 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1136 if (unlikely(r != 0)) {
1137 radeon_bo_unreserve(rbo);
1138 return -EINVAL;
1139 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001140 }
Chris Ball4dd19b02010-09-26 06:47:23 -05001141
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001142 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1143 radeon_bo_unreserve(rbo);
1144
Chris Ball4dd19b02010-09-26 06:47:23 -05001145 switch (target_fb->bits_per_pixel) {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001146 case 8:
1147 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_8BPP) |
1148 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_INDEXED));
1149 break;
1150 case 15:
1151 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1152 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB1555));
1153 break;
1154 case 16:
1155 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1156 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB565));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001157#ifdef __BIG_ENDIAN
1158 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16);
1159#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001160 break;
1161 case 24:
1162 case 32:
1163 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) |
1164 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB8888));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001165#ifdef __BIG_ENDIAN
1166 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN32);
1167#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001168 break;
1169 default:
1170 DRM_ERROR("Unsupported screen depth %d\n",
Chris Ball4dd19b02010-09-26 06:47:23 -05001171 target_fb->bits_per_pixel);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001172 return -EINVAL;
1173 }
1174
Alex Deucher392e3722011-11-28 14:49:27 -05001175 if (tiling_flags & RADEON_TILING_MACRO) {
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001176 evergreen_tiling_fields(tiling_flags, &bankw, &bankh, &mtaspect, &tile_split);
Alex Deucher392e3722011-11-28 14:49:27 -05001177
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001178 /* Set NUM_BANKS. */
1179 if (rdev->family >= CHIP_BONAIRE) {
1180 unsigned tileb, index, num_banks, tile_split_bytes;
1181
1182 /* Calculate the macrotile mode index. */
1183 tile_split_bytes = 64 << tile_split;
1184 tileb = 8 * 8 * target_fb->bits_per_pixel / 8;
1185 tileb = min(tile_split_bytes, tileb);
1186
1187 for (index = 0; tileb > 64; index++) {
1188 tileb >>= 1;
1189 }
1190
1191 if (index >= 16) {
1192 DRM_ERROR("Wrong screen bpp (%u) or tile split (%u)\n",
1193 target_fb->bits_per_pixel, tile_split);
1194 return -EINVAL;
1195 }
1196
1197 num_banks = (rdev->config.cik.macrotile_mode_array[index] >> 6) & 0x3;
1198 fb_format |= EVERGREEN_GRPH_NUM_BANKS(num_banks);
1199 } else {
1200 /* SI and older. */
1201 if (rdev->family >= CHIP_TAHITI)
1202 tmp = rdev->config.si.tile_config;
1203 else if (rdev->family >= CHIP_CAYMAN)
1204 tmp = rdev->config.cayman.tile_config;
1205 else
1206 tmp = rdev->config.evergreen.tile_config;
1207
1208 switch ((tmp & 0xf0) >> 4) {
1209 case 0: /* 4 banks */
1210 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_4_BANK);
1211 break;
1212 case 1: /* 8 banks */
1213 default:
1214 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_8_BANK);
1215 break;
1216 case 2: /* 16 banks */
1217 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_16_BANK);
1218 break;
1219 }
Alex Deucher392e3722011-11-28 14:49:27 -05001220 }
1221
Alex Deucher97d66322010-05-20 12:12:48 -04001222 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_2D_TILED_THIN1);
Jerome Glisse285484e2011-12-16 17:03:42 -05001223 fb_format |= EVERGREEN_GRPH_TILE_SPLIT(tile_split);
1224 fb_format |= EVERGREEN_GRPH_BANK_WIDTH(bankw);
1225 fb_format |= EVERGREEN_GRPH_BANK_HEIGHT(bankh);
1226 fb_format |= EVERGREEN_GRPH_MACRO_TILE_ASPECT(mtaspect);
Alex Deucher8da0e502012-07-11 18:38:29 -04001227 if (rdev->family >= CHIP_BONAIRE) {
1228 /* XXX need to know more about the surface tiling mode */
1229 fb_format |= CIK_GRPH_MICRO_TILE_MODE(CIK_DISPLAY_MICRO_TILING);
1230 }
Alex Deucher392e3722011-11-28 14:49:27 -05001231 } else if (tiling_flags & RADEON_TILING_MICRO)
Alex Deucher97d66322010-05-20 12:12:48 -04001232 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_1D_TILED_THIN1);
1233
Alex Deucher8da0e502012-07-11 18:38:29 -04001234 if (rdev->family >= CHIP_BONAIRE) {
Marek Olšák35a90522013-12-23 17:11:35 +01001235 /* Read the pipe config from the 2D TILED SCANOUT mode.
1236 * It should be the same for the other modes too, but not all
1237 * modes set the pipe config field. */
1238 u32 pipe_config = (rdev->config.cik.tile_mode_array[10] >> 6) & 0x1f;
1239
1240 fb_format |= CIK_GRPH_PIPE_CONFIG(pipe_config);
Alex Deucher8da0e502012-07-11 18:38:29 -04001241 } else if ((rdev->family == CHIP_TAHITI) ||
1242 (rdev->family == CHIP_PITCAIRN))
Alex Deucherb7019b22012-06-14 15:58:25 -04001243 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P8_32x32_8x16);
Alex Deucher227ae102013-12-11 11:43:58 -05001244 else if ((rdev->family == CHIP_VERDE) ||
1245 (rdev->family == CHIP_OLAND) ||
1246 (rdev->family == CHIP_HAINAN)) /* for completeness. HAINAN has no display hw */
Alex Deucherb7019b22012-06-14 15:58:25 -04001247 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P4_8x16);
1248
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001249 switch (radeon_crtc->crtc_id) {
1250 case 0:
1251 WREG32(AVIVO_D1VGA_CONTROL, 0);
1252 break;
1253 case 1:
1254 WREG32(AVIVO_D2VGA_CONTROL, 0);
1255 break;
1256 case 2:
1257 WREG32(EVERGREEN_D3VGA_CONTROL, 0);
1258 break;
1259 case 3:
1260 WREG32(EVERGREEN_D4VGA_CONTROL, 0);
1261 break;
1262 case 4:
1263 WREG32(EVERGREEN_D5VGA_CONTROL, 0);
1264 break;
1265 case 5:
1266 WREG32(EVERGREEN_D6VGA_CONTROL, 0);
1267 break;
1268 default:
1269 break;
1270 }
1271
1272 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1273 upper_32_bits(fb_location));
1274 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1275 upper_32_bits(fb_location));
1276 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1277 (u32)fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1278 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1279 (u32) fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1280 WREG32(EVERGREEN_GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001281 WREG32(EVERGREEN_GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001282
1283 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1284 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1285 WREG32(EVERGREEN_GRPH_X_START + radeon_crtc->crtc_offset, 0);
1286 WREG32(EVERGREEN_GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001287 WREG32(EVERGREEN_GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1288 WREG32(EVERGREEN_GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001289
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001290 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001291 WREG32(EVERGREEN_GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1292 WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1293
Alex Deucher8da0e502012-07-11 18:38:29 -04001294 if (rdev->family >= CHIP_BONAIRE)
1295 WREG32(CIK_LB_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
1296 target_fb->height);
1297 else
1298 WREG32(EVERGREEN_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
1299 target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001300 x &= ~3;
1301 y &= ~1;
1302 WREG32(EVERGREEN_VIEWPORT_START + radeon_crtc->crtc_offset,
1303 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001304 viewport_w = crtc->mode.hdisplay;
1305 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001306 WREG32(EVERGREEN_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001307 (viewport_w << 16) | viewport_h);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001308
Alex Deucherfb9674b2011-04-02 09:15:50 -04001309 /* pageflip setup */
1310 /* make sure flip is at vb rather than hb */
1311 tmp = RREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1312 tmp &= ~EVERGREEN_GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1313 WREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1314
1315 /* set pageflip to happen anywhere in vblank interval */
1316 WREG32(EVERGREEN_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1317
Chris Ball4dd19b02010-09-26 06:47:23 -05001318 if (!atomic && fb && fb != crtc->fb) {
1319 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001320 rbo = gem_to_radeon_bo(radeon_fb->obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001321 r = radeon_bo_reserve(rbo, false);
1322 if (unlikely(r != 0))
1323 return r;
1324 radeon_bo_unpin(rbo);
1325 radeon_bo_unreserve(rbo);
1326 }
1327
1328 /* Bytes per pixel may have changed */
1329 radeon_bandwidth_update(rdev);
1330
1331 return 0;
1332}
1333
Chris Ball4dd19b02010-09-26 06:47:23 -05001334static int avivo_crtc_do_set_base(struct drm_crtc *crtc,
1335 struct drm_framebuffer *fb,
1336 int x, int y, int atomic)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001337{
1338 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1339 struct drm_device *dev = crtc->dev;
1340 struct radeon_device *rdev = dev->dev_private;
1341 struct radeon_framebuffer *radeon_fb;
1342 struct drm_gem_object *obj;
Jerome Glisse4c788672009-11-20 14:29:23 +01001343 struct radeon_bo *rbo;
Chris Ball4dd19b02010-09-26 06:47:23 -05001344 struct drm_framebuffer *target_fb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001345 uint64_t fb_location;
Dave Airliee024e112009-06-24 09:48:08 +10001346 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001347 u32 fb_swap = R600_D1GRPH_SWAP_ENDIAN_NONE;
Alex Deucheradcfde52011-05-27 10:05:03 -04001348 u32 tmp, viewport_w, viewport_h;
Jerome Glisse4c788672009-11-20 14:29:23 +01001349 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001350
Jerome Glisse2de3b482009-11-17 14:08:55 -08001351 /* no fb bound */
Chris Ball4dd19b02010-09-26 06:47:23 -05001352 if (!atomic && !crtc->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001353 DRM_DEBUG_KMS("No FB bound\n");
Jerome Glisse2de3b482009-11-17 14:08:55 -08001354 return 0;
1355 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001356
Chris Ball4dd19b02010-09-26 06:47:23 -05001357 if (atomic) {
1358 radeon_fb = to_radeon_framebuffer(fb);
1359 target_fb = fb;
1360 }
1361 else {
1362 radeon_fb = to_radeon_framebuffer(crtc->fb);
1363 target_fb = crtc->fb;
1364 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001365
1366 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001367 rbo = gem_to_radeon_bo(obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001368 r = radeon_bo_reserve(rbo, false);
1369 if (unlikely(r != 0))
1370 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001371
1372 /* If atomic, assume fb object is pinned & idle & fenced and
1373 * just update base pointers
1374 */
1375 if (atomic)
1376 fb_location = radeon_bo_gpu_offset(rbo);
1377 else {
1378 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1379 if (unlikely(r != 0)) {
1380 radeon_bo_unreserve(rbo);
1381 return -EINVAL;
1382 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001383 }
Jerome Glisse4c788672009-11-20 14:29:23 +01001384 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1385 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001386
Chris Ball4dd19b02010-09-26 06:47:23 -05001387 switch (target_fb->bits_per_pixel) {
Dave Airlie41456df2009-09-16 10:15:21 +10001388 case 8:
1389 fb_format =
1390 AVIVO_D1GRPH_CONTROL_DEPTH_8BPP |
1391 AVIVO_D1GRPH_CONTROL_8BPP_INDEXED;
1392 break;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001393 case 15:
1394 fb_format =
1395 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1396 AVIVO_D1GRPH_CONTROL_16BPP_ARGB1555;
1397 break;
1398 case 16:
1399 fb_format =
1400 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1401 AVIVO_D1GRPH_CONTROL_16BPP_RGB565;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001402#ifdef __BIG_ENDIAN
1403 fb_swap = R600_D1GRPH_SWAP_ENDIAN_16BIT;
1404#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001405 break;
1406 case 24:
1407 case 32:
1408 fb_format =
1409 AVIVO_D1GRPH_CONTROL_DEPTH_32BPP |
1410 AVIVO_D1GRPH_CONTROL_32BPP_ARGB8888;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001411#ifdef __BIG_ENDIAN
1412 fb_swap = R600_D1GRPH_SWAP_ENDIAN_32BIT;
1413#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001414 break;
1415 default:
1416 DRM_ERROR("Unsupported screen depth %d\n",
Chris Ball4dd19b02010-09-26 06:47:23 -05001417 target_fb->bits_per_pixel);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001418 return -EINVAL;
1419 }
1420
Alex Deucher40c4ac12010-05-20 12:04:59 -04001421 if (rdev->family >= CHIP_R600) {
1422 if (tiling_flags & RADEON_TILING_MACRO)
1423 fb_format |= R600_D1GRPH_ARRAY_MODE_2D_TILED_THIN1;
1424 else if (tiling_flags & RADEON_TILING_MICRO)
1425 fb_format |= R600_D1GRPH_ARRAY_MODE_1D_TILED_THIN1;
1426 } else {
1427 if (tiling_flags & RADEON_TILING_MACRO)
1428 fb_format |= AVIVO_D1GRPH_MACRO_ADDRESS_MODE;
Dave Airliecf2f05d2009-12-08 15:45:13 +10001429
Alex Deucher40c4ac12010-05-20 12:04:59 -04001430 if (tiling_flags & RADEON_TILING_MICRO)
1431 fb_format |= AVIVO_D1GRPH_TILED;
1432 }
Dave Airliee024e112009-06-24 09:48:08 +10001433
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001434 if (radeon_crtc->crtc_id == 0)
1435 WREG32(AVIVO_D1VGA_CONTROL, 0);
1436 else
1437 WREG32(AVIVO_D2VGA_CONTROL, 0);
Alex Deucherc290dad2009-10-22 16:12:34 -04001438
1439 if (rdev->family >= CHIP_RV770) {
1440 if (radeon_crtc->crtc_id) {
Alex Deucher95347872010-09-01 17:20:42 -04001441 WREG32(R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1442 WREG32(R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001443 } else {
Alex Deucher95347872010-09-01 17:20:42 -04001444 WREG32(R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1445 WREG32(R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001446 }
1447 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001448 WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1449 (u32) fb_location);
1450 WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS +
1451 radeon_crtc->crtc_offset, (u32) fb_location);
1452 WREG32(AVIVO_D1GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001453 if (rdev->family >= CHIP_R600)
1454 WREG32(R600_D1GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001455
1456 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1457 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1458 WREG32(AVIVO_D1GRPH_X_START + radeon_crtc->crtc_offset, 0);
1459 WREG32(AVIVO_D1GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001460 WREG32(AVIVO_D1GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1461 WREG32(AVIVO_D1GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001462
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001463 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001464 WREG32(AVIVO_D1GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1465 WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1466
1467 WREG32(AVIVO_D1MODE_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
Michel Dänzer1b619252012-02-01 12:09:55 +01001468 target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001469 x &= ~3;
1470 y &= ~1;
1471 WREG32(AVIVO_D1MODE_VIEWPORT_START + radeon_crtc->crtc_offset,
1472 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001473 viewport_w = crtc->mode.hdisplay;
1474 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001475 WREG32(AVIVO_D1MODE_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001476 (viewport_w << 16) | viewport_h);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001477
Alex Deucherfb9674b2011-04-02 09:15:50 -04001478 /* pageflip setup */
1479 /* make sure flip is at vb rather than hb */
1480 tmp = RREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1481 tmp &= ~AVIVO_D1GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1482 WREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1483
1484 /* set pageflip to happen anywhere in vblank interval */
1485 WREG32(AVIVO_D1MODE_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1486
Chris Ball4dd19b02010-09-26 06:47:23 -05001487 if (!atomic && fb && fb != crtc->fb) {
1488 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001489 rbo = gem_to_radeon_bo(radeon_fb->obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001490 r = radeon_bo_reserve(rbo, false);
1491 if (unlikely(r != 0))
1492 return r;
1493 radeon_bo_unpin(rbo);
1494 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001495 }
Michel Dänzerf30f37d2009-10-08 10:44:09 +02001496
1497 /* Bytes per pixel may have changed */
1498 radeon_bandwidth_update(rdev);
1499
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001500 return 0;
1501}
1502
Alex Deucher54f088a2010-01-19 16:34:01 -05001503int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y,
1504 struct drm_framebuffer *old_fb)
1505{
1506 struct drm_device *dev = crtc->dev;
1507 struct radeon_device *rdev = dev->dev_private;
1508
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001509 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001510 return dce4_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001511 else if (ASIC_IS_AVIVO(rdev))
Chris Ball4dd19b02010-09-26 06:47:23 -05001512 return avivo_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucher54f088a2010-01-19 16:34:01 -05001513 else
Chris Ball4dd19b02010-09-26 06:47:23 -05001514 return radeon_crtc_do_set_base(crtc, old_fb, x, y, 0);
1515}
1516
1517int atombios_crtc_set_base_atomic(struct drm_crtc *crtc,
1518 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -05001519 int x, int y, enum mode_set_atomic state)
Chris Ball4dd19b02010-09-26 06:47:23 -05001520{
1521 struct drm_device *dev = crtc->dev;
1522 struct radeon_device *rdev = dev->dev_private;
1523
1524 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001525 return dce4_crtc_do_set_base(crtc, fb, x, y, 1);
Chris Ball4dd19b02010-09-26 06:47:23 -05001526 else if (ASIC_IS_AVIVO(rdev))
1527 return avivo_crtc_do_set_base(crtc, fb, x, y, 1);
1528 else
1529 return radeon_crtc_do_set_base(crtc, fb, x, y, 1);
Alex Deucher54f088a2010-01-19 16:34:01 -05001530}
1531
Alex Deucher615e0cb2010-01-20 16:22:53 -05001532/* properly set additional regs when using atombios */
1533static void radeon_legacy_atom_fixup(struct drm_crtc *crtc)
1534{
1535 struct drm_device *dev = crtc->dev;
1536 struct radeon_device *rdev = dev->dev_private;
1537 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1538 u32 disp_merge_cntl;
1539
1540 switch (radeon_crtc->crtc_id) {
1541 case 0:
1542 disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL);
1543 disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN;
1544 WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl);
1545 break;
1546 case 1:
1547 disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL);
1548 disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN;
1549 WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl);
1550 WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID));
1551 WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID));
1552 break;
1553 }
1554}
1555
Alex Deucherf3dd8502012-08-31 11:56:50 -04001556/**
1557 * radeon_get_pll_use_mask - look up a mask of which pplls are in use
1558 *
1559 * @crtc: drm crtc
1560 *
1561 * Returns the mask of which PPLLs (Pixel PLLs) are in use.
1562 */
1563static u32 radeon_get_pll_use_mask(struct drm_crtc *crtc)
1564{
1565 struct drm_device *dev = crtc->dev;
1566 struct drm_crtc *test_crtc;
Alex Deucher57b35e22012-09-17 17:34:45 -04001567 struct radeon_crtc *test_radeon_crtc;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001568 u32 pll_in_use = 0;
1569
1570 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1571 if (crtc == test_crtc)
1572 continue;
1573
Alex Deucher57b35e22012-09-17 17:34:45 -04001574 test_radeon_crtc = to_radeon_crtc(test_crtc);
1575 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
1576 pll_in_use |= (1 << test_radeon_crtc->pll_id);
Alex Deucherf3dd8502012-08-31 11:56:50 -04001577 }
1578 return pll_in_use;
1579}
1580
1581/**
1582 * radeon_get_shared_dp_ppll - return the PPLL used by another crtc for DP
1583 *
1584 * @crtc: drm crtc
1585 *
1586 * Returns the PPLL (Pixel PLL) used by another crtc/encoder which is
1587 * also in DP mode. For DP, a single PPLL can be used for all DP
1588 * crtcs/encoders.
1589 */
1590static int radeon_get_shared_dp_ppll(struct drm_crtc *crtc)
1591{
1592 struct drm_device *dev = crtc->dev;
Alex Deucher57b35e22012-09-17 17:34:45 -04001593 struct drm_crtc *test_crtc;
Alex Deucher5df31962012-09-13 11:52:08 -04001594 struct radeon_crtc *test_radeon_crtc;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001595
Alex Deucher57b35e22012-09-17 17:34:45 -04001596 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1597 if (crtc == test_crtc)
1598 continue;
1599 test_radeon_crtc = to_radeon_crtc(test_crtc);
1600 if (test_radeon_crtc->encoder &&
1601 ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_radeon_crtc->encoder))) {
1602 /* for DP use the same PLL for all */
1603 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
1604 return test_radeon_crtc->pll_id;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001605 }
1606 }
1607 return ATOM_PPLL_INVALID;
1608}
1609
1610/**
Alex Deucher2f454cf2012-09-12 18:54:14 -04001611 * radeon_get_shared_nondp_ppll - return the PPLL used by another non-DP crtc
1612 *
1613 * @crtc: drm crtc
1614 * @encoder: drm encoder
1615 *
1616 * Returns the PPLL (Pixel PLL) used by another non-DP crtc/encoder which can
1617 * be shared (i.e., same clock).
1618 */
Alex Deucher5df31962012-09-13 11:52:08 -04001619static int radeon_get_shared_nondp_ppll(struct drm_crtc *crtc)
Alex Deucher2f454cf2012-09-12 18:54:14 -04001620{
Alex Deucher5df31962012-09-13 11:52:08 -04001621 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher2f454cf2012-09-12 18:54:14 -04001622 struct drm_device *dev = crtc->dev;
Alex Deucher9642ac02012-09-13 12:43:41 -04001623 struct drm_crtc *test_crtc;
Alex Deucher5df31962012-09-13 11:52:08 -04001624 struct radeon_crtc *test_radeon_crtc;
Alex Deucher9642ac02012-09-13 12:43:41 -04001625 u32 adjusted_clock, test_adjusted_clock;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001626
Alex Deucher9642ac02012-09-13 12:43:41 -04001627 adjusted_clock = radeon_crtc->adjusted_clock;
1628
1629 if (adjusted_clock == 0)
1630 return ATOM_PPLL_INVALID;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001631
Alex Deucher57b35e22012-09-17 17:34:45 -04001632 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1633 if (crtc == test_crtc)
1634 continue;
1635 test_radeon_crtc = to_radeon_crtc(test_crtc);
1636 if (test_radeon_crtc->encoder &&
1637 !ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_radeon_crtc->encoder))) {
1638 /* check if we are already driving this connector with another crtc */
1639 if (test_radeon_crtc->connector == radeon_crtc->connector) {
1640 /* if we are, return that pll */
1641 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
Alex Deucher5df31962012-09-13 11:52:08 -04001642 return test_radeon_crtc->pll_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001643 }
Alex Deucher57b35e22012-09-17 17:34:45 -04001644 /* for non-DP check the clock */
1645 test_adjusted_clock = test_radeon_crtc->adjusted_clock;
1646 if ((crtc->mode.clock == test_crtc->mode.clock) &&
1647 (adjusted_clock == test_adjusted_clock) &&
1648 (radeon_crtc->ss_enabled == test_radeon_crtc->ss_enabled) &&
1649 (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID))
1650 return test_radeon_crtc->pll_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001651 }
1652 }
1653 return ATOM_PPLL_INVALID;
1654}
1655
1656/**
Alex Deucherf3dd8502012-08-31 11:56:50 -04001657 * radeon_atom_pick_pll - Allocate a PPLL for use by the crtc.
1658 *
1659 * @crtc: drm crtc
1660 *
1661 * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
1662 * a single PPLL can be used for all DP crtcs/encoders. For non-DP
1663 * monitors a dedicated PPLL must be used. If a particular board has
1664 * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
1665 * as there is no need to program the PLL itself. If we are not able to
1666 * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
1667 * avoid messing up an existing monitor.
1668 *
1669 * Asic specific PLL information
1670 *
Alex Deucher0331f672012-09-14 11:57:21 -04001671 * DCE 8.x
1672 * KB/KV
1673 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
1674 * CI
1675 * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1676 *
Alex Deucherf3dd8502012-08-31 11:56:50 -04001677 * DCE 6.1
1678 * - PPLL2 is only available to UNIPHYA (both DP and non-DP)
1679 * - PPLL0, PPLL1 are available for UNIPHYB/C/D/E/F (both DP and non-DP)
1680 *
1681 * DCE 6.0
1682 * - PPLL0 is available to all UNIPHY (DP only)
1683 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1684 *
1685 * DCE 5.0
1686 * - DCPLL is available to all UNIPHY (DP only)
1687 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1688 *
1689 * DCE 3.0/4.0/4.1
1690 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1691 *
1692 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001693static int radeon_atom_pick_pll(struct drm_crtc *crtc)
1694{
Alex Deucher5df31962012-09-13 11:52:08 -04001695 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001696 struct drm_device *dev = crtc->dev;
1697 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001698 struct radeon_encoder *radeon_encoder =
1699 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucherf3dd8502012-08-31 11:56:50 -04001700 u32 pll_in_use;
1701 int pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001702
Alex Deucher0331f672012-09-14 11:57:21 -04001703 if (ASIC_IS_DCE8(rdev)) {
1704 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1705 if (rdev->clock.dp_extclk)
1706 /* skip PPLL programming if using ext clock */
1707 return ATOM_PPLL_INVALID;
1708 else {
1709 /* use the same PPLL for all DP monitors */
1710 pll = radeon_get_shared_dp_ppll(crtc);
1711 if (pll != ATOM_PPLL_INVALID)
1712 return pll;
1713 }
1714 } else {
1715 /* use the same PPLL for all monitors with the same clock */
1716 pll = radeon_get_shared_nondp_ppll(crtc);
1717 if (pll != ATOM_PPLL_INVALID)
1718 return pll;
1719 }
1720 /* otherwise, pick one of the plls */
1721 if ((rdev->family == CHIP_KAVERI) ||
1722 (rdev->family == CHIP_KABINI)) {
1723 /* KB/KV has PPLL1 and PPLL2 */
1724 pll_in_use = radeon_get_pll_use_mask(crtc);
1725 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1726 return ATOM_PPLL2;
1727 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1728 return ATOM_PPLL1;
1729 DRM_ERROR("unable to allocate a PPLL\n");
1730 return ATOM_PPLL_INVALID;
1731 } else {
1732 /* CI has PPLL0, PPLL1, and PPLL2 */
1733 pll_in_use = radeon_get_pll_use_mask(crtc);
1734 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1735 return ATOM_PPLL2;
1736 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1737 return ATOM_PPLL1;
1738 if (!(pll_in_use & (1 << ATOM_PPLL0)))
1739 return ATOM_PPLL0;
1740 DRM_ERROR("unable to allocate a PPLL\n");
1741 return ATOM_PPLL_INVALID;
1742 }
1743 } else if (ASIC_IS_DCE61(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001744 struct radeon_encoder_atom_dig *dig =
1745 radeon_encoder->enc_priv;
Alex Deucher24e1f792012-03-20 17:18:32 -04001746
Alex Deucher5df31962012-09-13 11:52:08 -04001747 if ((radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_UNIPHY) &&
1748 (dig->linkb == false))
1749 /* UNIPHY A uses PPLL2 */
1750 return ATOM_PPLL2;
1751 else if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1752 /* UNIPHY B/C/D/E/F */
1753 if (rdev->clock.dp_extclk)
1754 /* skip PPLL programming if using ext clock */
1755 return ATOM_PPLL_INVALID;
1756 else {
1757 /* use the same PPLL for all DP monitors */
1758 pll = radeon_get_shared_dp_ppll(crtc);
1759 if (pll != ATOM_PPLL_INVALID)
1760 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001761 }
Alex Deucher5df31962012-09-13 11:52:08 -04001762 } else {
1763 /* use the same PPLL for all monitors with the same clock */
1764 pll = radeon_get_shared_nondp_ppll(crtc);
1765 if (pll != ATOM_PPLL_INVALID)
1766 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001767 }
1768 /* UNIPHY B/C/D/E/F */
Alex Deucherf3dd8502012-08-31 11:56:50 -04001769 pll_in_use = radeon_get_pll_use_mask(crtc);
1770 if (!(pll_in_use & (1 << ATOM_PPLL0)))
Alex Deucher24e1f792012-03-20 17:18:32 -04001771 return ATOM_PPLL0;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001772 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1773 return ATOM_PPLL1;
1774 DRM_ERROR("unable to allocate a PPLL\n");
1775 return ATOM_PPLL_INVALID;
Alex Deucher24e1f792012-03-20 17:18:32 -04001776 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001777 /* in DP mode, the DP ref clock can come from PPLL, DCPLL, or ext clock,
1778 * depending on the asic:
1779 * DCE4: PPLL or ext clock
1780 * DCE5: PPLL, DCPLL, or ext clock
1781 * DCE6: PPLL, PPLL0, or ext clock
1782 *
1783 * Setting ATOM_PPLL_INVALID will cause SetPixelClock to skip
1784 * PPLL/DCPLL programming and only program the DP DTO for the
1785 * crtc virtual pixel clock.
1786 */
1787 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1788 if (rdev->clock.dp_extclk)
1789 /* skip PPLL programming if using ext clock */
1790 return ATOM_PPLL_INVALID;
1791 else if (ASIC_IS_DCE6(rdev))
1792 /* use PPLL0 for all DP */
1793 return ATOM_PPLL0;
1794 else if (ASIC_IS_DCE5(rdev))
1795 /* use DCPLL for all DP */
1796 return ATOM_DCPLL;
1797 else {
1798 /* use the same PPLL for all DP monitors */
1799 pll = radeon_get_shared_dp_ppll(crtc);
1800 if (pll != ATOM_PPLL_INVALID)
1801 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001802 }
Alex Deucher70471862013-10-31 16:43:27 -04001803 } else if (!ASIC_IS_DCE41(rdev)) { /* Don't share PLLs on DCE4.1 chips */
Alex Deucher5df31962012-09-13 11:52:08 -04001804 /* use the same PPLL for all monitors with the same clock */
1805 pll = radeon_get_shared_nondp_ppll(crtc);
1806 if (pll != ATOM_PPLL_INVALID)
1807 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001808 }
1809 /* all other cases */
1810 pll_in_use = radeon_get_pll_use_mask(crtc);
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001811 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1812 return ATOM_PPLL1;
Alex Deucher29dbe3b2012-10-05 10:22:02 -04001813 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1814 return ATOM_PPLL2;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001815 DRM_ERROR("unable to allocate a PPLL\n");
1816 return ATOM_PPLL_INVALID;
Alex Deucher1e4db5f2012-11-05 10:16:12 -05001817 } else {
1818 /* on pre-R5xx asics, the crtc to pll mapping is hardcoded */
Jerome Glissefc58acd2012-11-27 16:12:29 -05001819 /* some atombios (observed in some DCE2/DCE3) code have a bug,
1820 * the matching btw pll and crtc is done through
1821 * PCLK_CRTC[1|2]_CNTL (0x480/0x484) but atombios code use the
1822 * pll (1 or 2) to select which register to write. ie if using
1823 * pll1 it will use PCLK_CRTC1_CNTL (0x480) and if using pll2
1824 * it will use PCLK_CRTC2_CNTL (0x484), it then use crtc id to
1825 * choose which value to write. Which is reverse order from
1826 * register logic. So only case that works is when pllid is
1827 * same as crtcid or when both pll and crtc are enabled and
1828 * both use same clock.
1829 *
1830 * So just return crtc id as if crtc and pll were hard linked
1831 * together even if they aren't
1832 */
Alex Deucher1e4db5f2012-11-05 10:16:12 -05001833 return radeon_crtc->crtc_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001834 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001835}
1836
Alex Deucherf3f1f032012-03-20 17:18:04 -04001837void radeon_atom_disp_eng_pll_init(struct radeon_device *rdev)
Alex Deucher3fa47d92012-01-20 14:56:39 -05001838{
1839 /* always set DCPLL */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001840 if (ASIC_IS_DCE6(rdev))
1841 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
1842 else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -05001843 struct radeon_atom_ss ss;
1844 bool ss_enabled = radeon_atombios_get_asic_ss_info(rdev, &ss,
1845 ASIC_INTERNAL_SS_ON_DCPLL,
1846 rdev->clock.default_dispclk);
1847 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001848 atombios_crtc_program_ss(rdev, ATOM_DISABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001849 /* XXX: DCE5, make sure voltage, dispclk is high enough */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001850 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001851 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001852 atombios_crtc_program_ss(rdev, ATOM_ENABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001853 }
1854
1855}
1856
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001857int atombios_crtc_mode_set(struct drm_crtc *crtc,
1858 struct drm_display_mode *mode,
1859 struct drm_display_mode *adjusted_mode,
1860 int x, int y, struct drm_framebuffer *old_fb)
1861{
1862 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1863 struct drm_device *dev = crtc->dev;
1864 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001865 struct radeon_encoder *radeon_encoder =
1866 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher54bfe492010-09-03 15:52:53 -04001867 bool is_tvcv = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001868
Alex Deucher5df31962012-09-13 11:52:08 -04001869 if (radeon_encoder->active_device &
1870 (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT))
1871 is_tvcv = true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001872
1873 atombios_crtc_set_pll(crtc, adjusted_mode);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001874
Alex Deucher54bfe492010-09-03 15:52:53 -04001875 if (ASIC_IS_DCE4(rdev))
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001876 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher54bfe492010-09-03 15:52:53 -04001877 else if (ASIC_IS_AVIVO(rdev)) {
1878 if (is_tvcv)
1879 atombios_crtc_set_timing(crtc, adjusted_mode);
1880 else
1881 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
1882 } else {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001883 atombios_crtc_set_timing(crtc, adjusted_mode);
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001884 if (radeon_crtc->crtc_id == 0)
1885 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher615e0cb2010-01-20 16:22:53 -05001886 radeon_legacy_atom_fixup(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001887 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001888 atombios_crtc_set_base(crtc, x, y, old_fb);
Jerome Glissec93bb852009-07-13 21:04:08 +02001889 atombios_overscan_setup(crtc, mode, adjusted_mode);
1890 atombios_scaler_setup(crtc);
Alex Deucher66edc1c2013-07-08 11:26:42 -04001891 /* update the hw version fpr dpm */
1892 radeon_crtc->hw_mode = *adjusted_mode;
1893
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001894 return 0;
1895}
1896
1897static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001898 const struct drm_display_mode *mode,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001899 struct drm_display_mode *adjusted_mode)
1900{
Alex Deucher5df31962012-09-13 11:52:08 -04001901 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1902 struct drm_device *dev = crtc->dev;
1903 struct drm_encoder *encoder;
1904
1905 /* assign the encoder to the radeon crtc to avoid repeated lookups later */
1906 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1907 if (encoder->crtc == crtc) {
1908 radeon_crtc->encoder = encoder;
Alex Deucher57b35e22012-09-17 17:34:45 -04001909 radeon_crtc->connector = radeon_get_connector_for_encoder(encoder);
Alex Deucher5df31962012-09-13 11:52:08 -04001910 break;
1911 }
1912 }
Alex Deucher57b35e22012-09-17 17:34:45 -04001913 if ((radeon_crtc->encoder == NULL) || (radeon_crtc->connector == NULL)) {
1914 radeon_crtc->encoder = NULL;
1915 radeon_crtc->connector = NULL;
Alex Deucher5df31962012-09-13 11:52:08 -04001916 return false;
Alex Deucher57b35e22012-09-17 17:34:45 -04001917 }
Jerome Glissec93bb852009-07-13 21:04:08 +02001918 if (!radeon_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
1919 return false;
Alex Deucher19eca432012-09-13 10:56:16 -04001920 if (!atombios_crtc_prepare_pll(crtc, adjusted_mode))
1921 return false;
Alex Deucherc0fd0832012-09-14 12:30:51 -04001922 /* pick pll */
1923 radeon_crtc->pll_id = radeon_atom_pick_pll(crtc);
1924 /* if we can't get a PPLL for a non-DP encoder, fail */
1925 if ((radeon_crtc->pll_id == ATOM_PPLL_INVALID) &&
1926 !ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder)))
1927 return false;
1928
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001929 return true;
1930}
1931
1932static void atombios_crtc_prepare(struct drm_crtc *crtc)
1933{
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04001934 struct drm_device *dev = crtc->dev;
1935 struct radeon_device *rdev = dev->dev_private;
Alex Deucher267364a2010-03-08 17:10:41 -05001936
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04001937 /* disable crtc pair power gating before programming */
1938 if (ASIC_IS_DCE6(rdev))
1939 atombios_powergate_crtc(crtc, ATOM_DISABLE);
1940
Alex Deucher37b43902010-02-09 12:04:43 -05001941 atombios_lock_crtc(crtc, ATOM_ENABLE);
Alex Deuchera348c842010-01-21 16:50:30 -05001942 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001943}
1944
1945static void atombios_crtc_commit(struct drm_crtc *crtc)
1946{
1947 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
Alex Deucher37b43902010-02-09 12:04:43 -05001948 atombios_lock_crtc(crtc, ATOM_DISABLE);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001949}
1950
Alex Deucher37f90032010-06-11 17:58:38 -04001951static void atombios_crtc_disable(struct drm_crtc *crtc)
1952{
1953 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher64199872012-03-20 17:18:33 -04001954 struct drm_device *dev = crtc->dev;
1955 struct radeon_device *rdev = dev->dev_private;
Alex Deucher8e8e5232011-05-20 04:34:16 -04001956 struct radeon_atom_ss ss;
Alex Deucher4e585912012-08-21 19:06:21 -04001957 int i;
Alex Deucher8e8e5232011-05-20 04:34:16 -04001958
Alex Deucher37f90032010-06-11 17:58:38 -04001959 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Ilija Hadzic75b871e2013-11-02 23:00:19 -04001960 if (crtc->fb) {
1961 int r;
1962 struct radeon_framebuffer *radeon_fb;
1963 struct radeon_bo *rbo;
1964
1965 radeon_fb = to_radeon_framebuffer(crtc->fb);
1966 rbo = gem_to_radeon_bo(radeon_fb->obj);
1967 r = radeon_bo_reserve(rbo, false);
1968 if (unlikely(r))
1969 DRM_ERROR("failed to reserve rbo before unpin\n");
1970 else {
1971 radeon_bo_unpin(rbo);
1972 radeon_bo_unreserve(rbo);
1973 }
1974 }
Alex Deucherac4d04d2013-08-21 14:44:15 -04001975 /* disable the GRPH */
1976 if (ASIC_IS_DCE4(rdev))
1977 WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 0);
1978 else if (ASIC_IS_AVIVO(rdev))
1979 WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 0);
1980
Alex Deucher0e3d50b2013-02-05 11:47:09 -05001981 if (ASIC_IS_DCE6(rdev))
1982 atombios_powergate_crtc(crtc, ATOM_ENABLE);
Alex Deucher37f90032010-06-11 17:58:38 -04001983
Alex Deucher4e585912012-08-21 19:06:21 -04001984 for (i = 0; i < rdev->num_crtc; i++) {
1985 if (rdev->mode_info.crtcs[i] &&
1986 rdev->mode_info.crtcs[i]->enabled &&
1987 i != radeon_crtc->crtc_id &&
1988 radeon_crtc->pll_id == rdev->mode_info.crtcs[i]->pll_id) {
1989 /* one other crtc is using this pll don't turn
1990 * off the pll
1991 */
1992 goto done;
1993 }
1994 }
1995
Alex Deucher37f90032010-06-11 17:58:38 -04001996 switch (radeon_crtc->pll_id) {
1997 case ATOM_PPLL1:
1998 case ATOM_PPLL2:
1999 /* disable the ppll */
2000 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
Alex Deucher8e8e5232011-05-20 04:34:16 -04002001 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
Alex Deucher37f90032010-06-11 17:58:38 -04002002 break;
Alex Deucher64199872012-03-20 17:18:33 -04002003 case ATOM_PPLL0:
2004 /* disable the ppll */
Alex Deucher7eeeabf2013-08-19 10:22:26 -04002005 if ((rdev->family == CHIP_ARUBA) ||
2006 (rdev->family == CHIP_BONAIRE) ||
2007 (rdev->family == CHIP_HAWAII))
Alex Deucher64199872012-03-20 17:18:33 -04002008 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
2009 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2010 break;
Alex Deucher37f90032010-06-11 17:58:38 -04002011 default:
2012 break;
2013 }
Alex Deucher4e585912012-08-21 19:06:21 -04002014done:
Alex Deucherf3dd8502012-08-31 11:56:50 -04002015 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04002016 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04002017 radeon_crtc->encoder = NULL;
Alex Deucher57b35e22012-09-17 17:34:45 -04002018 radeon_crtc->connector = NULL;
Alex Deucher37f90032010-06-11 17:58:38 -04002019}
2020
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002021static const struct drm_crtc_helper_funcs atombios_helper_funcs = {
2022 .dpms = atombios_crtc_dpms,
2023 .mode_fixup = atombios_crtc_mode_fixup,
2024 .mode_set = atombios_crtc_mode_set,
2025 .mode_set_base = atombios_crtc_set_base,
Chris Ball4dd19b02010-09-26 06:47:23 -05002026 .mode_set_base_atomic = atombios_crtc_set_base_atomic,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002027 .prepare = atombios_crtc_prepare,
2028 .commit = atombios_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10002029 .load_lut = radeon_crtc_load_lut,
Alex Deucher37f90032010-06-11 17:58:38 -04002030 .disable = atombios_crtc_disable,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002031};
2032
2033void radeon_atombios_init_crtc(struct drm_device *dev,
2034 struct radeon_crtc *radeon_crtc)
2035{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002036 struct radeon_device *rdev = dev->dev_private;
2037
2038 if (ASIC_IS_DCE4(rdev)) {
2039 switch (radeon_crtc->crtc_id) {
2040 case 0:
2041 default:
Alex Deucher12d77982010-02-09 17:18:48 -05002042 radeon_crtc->crtc_offset = EVERGREEN_CRTC0_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002043 break;
2044 case 1:
Alex Deucher12d77982010-02-09 17:18:48 -05002045 radeon_crtc->crtc_offset = EVERGREEN_CRTC1_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002046 break;
2047 case 2:
Alex Deucher12d77982010-02-09 17:18:48 -05002048 radeon_crtc->crtc_offset = EVERGREEN_CRTC2_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002049 break;
2050 case 3:
Alex Deucher12d77982010-02-09 17:18:48 -05002051 radeon_crtc->crtc_offset = EVERGREEN_CRTC3_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002052 break;
2053 case 4:
Alex Deucher12d77982010-02-09 17:18:48 -05002054 radeon_crtc->crtc_offset = EVERGREEN_CRTC4_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002055 break;
2056 case 5:
Alex Deucher12d77982010-02-09 17:18:48 -05002057 radeon_crtc->crtc_offset = EVERGREEN_CRTC5_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002058 break;
2059 }
2060 } else {
2061 if (radeon_crtc->crtc_id == 1)
2062 radeon_crtc->crtc_offset =
2063 AVIVO_D2CRTC_H_TOTAL - AVIVO_D1CRTC_H_TOTAL;
2064 else
2065 radeon_crtc->crtc_offset = 0;
2066 }
Alex Deucherf3dd8502012-08-31 11:56:50 -04002067 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04002068 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04002069 radeon_crtc->encoder = NULL;
Alex Deucher57b35e22012-09-17 17:34:45 -04002070 radeon_crtc->connector = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002071 drm_crtc_helper_add(&radeon_crtc->base, &atombios_helper_funcs);
2072}