blob: 721f80e9568dfd5766179a698ad229b6576dffe5 [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
212static void atombios_blank_crtc(struct drm_crtc *crtc, int state)
213{
214 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
215 struct drm_device *dev = crtc->dev;
216 struct radeon_device *rdev = dev->dev_private;
217 int index = GetIndexIntoMasterTable(COMMAND, BlankCRTC);
218 BLANK_CRTC_PS_ALLOCATION args;
219
220 memset(&args, 0, sizeof(args));
221
222 args.ucCRTC = radeon_crtc->crtc_id;
223 args.ucBlanking = state;
224
225 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
226}
227
Alex Deucherfef9f912012-03-20 17:18:03 -0400228static void atombios_powergate_crtc(struct drm_crtc *crtc, int state)
229{
230 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
231 struct drm_device *dev = crtc->dev;
232 struct radeon_device *rdev = dev->dev_private;
233 int index = GetIndexIntoMasterTable(COMMAND, EnableDispPowerGating);
234 ENABLE_DISP_POWER_GATING_PARAMETERS_V2_1 args;
235
236 memset(&args, 0, sizeof(args));
237
238 args.ucDispPipeId = radeon_crtc->crtc_id;
239 args.ucEnable = state;
240
241 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
242}
243
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200244void atombios_crtc_dpms(struct drm_crtc *crtc, int mode)
245{
246 struct drm_device *dev = crtc->dev;
247 struct radeon_device *rdev = dev->dev_private;
Alex Deucher500b7582009-12-02 11:46:52 -0500248 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200249
250 switch (mode) {
251 case DRM_MODE_DPMS_ON:
Alex Deucherd7311172010-05-03 01:13:14 -0400252 radeon_crtc->enabled = true;
253 /* adjust pm to dpms changes BEFORE enabling crtcs */
254 radeon_pm_compute_clocks(rdev);
Alex Deucher6c0ae2a2012-07-26 13:38:52 -0400255 if (ASIC_IS_DCE6(rdev) && !radeon_crtc->in_mode_set)
Alex Deucherfef9f912012-03-20 17:18:03 -0400256 atombios_powergate_crtc(crtc, ATOM_DISABLE);
Alex Deucher37b43902010-02-09 12:04:43 -0500257 atombios_enable_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400258 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500259 atombios_enable_crtc_memreq(crtc, ATOM_ENABLE);
260 atombios_blank_crtc(crtc, ATOM_DISABLE);
Alex Deucher45f9a392010-03-24 13:55:51 -0400261 drm_vblank_post_modeset(dev, radeon_crtc->crtc_id);
Alex Deucher500b7582009-12-02 11:46:52 -0500262 radeon_crtc_load_lut(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200263 break;
264 case DRM_MODE_DPMS_STANDBY:
265 case DRM_MODE_DPMS_SUSPEND:
266 case DRM_MODE_DPMS_OFF:
Alex Deucher45f9a392010-03-24 13:55:51 -0400267 drm_vblank_pre_modeset(dev, radeon_crtc->crtc_id);
Alex Deuchera93f3442010-12-20 11:22:29 -0500268 if (radeon_crtc->enabled)
269 atombios_blank_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400270 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500271 atombios_enable_crtc_memreq(crtc, ATOM_DISABLE);
272 atombios_enable_crtc(crtc, ATOM_DISABLE);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400273 radeon_crtc->enabled = false;
Alex Deucherc205b232012-08-24 18:21:21 -0400274 if (ASIC_IS_DCE6(rdev) && !radeon_crtc->in_mode_set)
275 atombios_powergate_crtc(crtc, ATOM_ENABLE);
Alex Deucherd7311172010-05-03 01:13:14 -0400276 /* adjust pm to dpms changes AFTER disabling crtcs */
277 radeon_pm_compute_clocks(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200278 break;
279 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200280}
281
282static void
283atombios_set_crtc_dtd_timing(struct drm_crtc *crtc,
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400284 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200285{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400286 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200287 struct drm_device *dev = crtc->dev;
288 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400289 SET_CRTC_USING_DTD_TIMING_PARAMETERS args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200290 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400291 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200292
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400293 memset(&args, 0, sizeof(args));
Alex Deucher5b1714d2010-08-03 19:59:20 -0400294 args.usH_Size = cpu_to_le16(mode->crtc_hdisplay - (radeon_crtc->h_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400295 args.usH_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400296 cpu_to_le16(mode->crtc_hblank_end - mode->crtc_hdisplay + (radeon_crtc->h_border * 2));
297 args.usV_Size = cpu_to_le16(mode->crtc_vdisplay - (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400298 args.usV_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400299 cpu_to_le16(mode->crtc_vblank_end - mode->crtc_vdisplay + (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400300 args.usH_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400301 cpu_to_le16(mode->crtc_hsync_start - mode->crtc_hdisplay + radeon_crtc->h_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400302 args.usH_SyncWidth =
303 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
304 args.usV_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400305 cpu_to_le16(mode->crtc_vsync_start - mode->crtc_vdisplay + radeon_crtc->v_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400306 args.usV_SyncWidth =
307 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
Alex Deucher5b1714d2010-08-03 19:59:20 -0400308 args.ucH_Border = radeon_crtc->h_border;
309 args.ucV_Border = radeon_crtc->v_border;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400310
311 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
312 misc |= ATOM_VSYNC_POLARITY;
313 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
314 misc |= ATOM_HSYNC_POLARITY;
315 if (mode->flags & DRM_MODE_FLAG_CSYNC)
316 misc |= ATOM_COMPOSITESYNC;
317 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
318 misc |= ATOM_INTERLACE;
319 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
320 misc |= ATOM_DOUBLE_CLOCK_MODE;
321
322 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
323 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200324
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400325 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200326}
327
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400328static void atombios_crtc_set_timing(struct drm_crtc *crtc,
329 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200330{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400331 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200332 struct drm_device *dev = crtc->dev;
333 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400334 SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200335 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400336 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200337
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400338 memset(&args, 0, sizeof(args));
339 args.usH_Total = cpu_to_le16(mode->crtc_htotal);
340 args.usH_Disp = cpu_to_le16(mode->crtc_hdisplay);
341 args.usH_SyncStart = cpu_to_le16(mode->crtc_hsync_start);
342 args.usH_SyncWidth =
343 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
344 args.usV_Total = cpu_to_le16(mode->crtc_vtotal);
345 args.usV_Disp = cpu_to_le16(mode->crtc_vdisplay);
346 args.usV_SyncStart = cpu_to_le16(mode->crtc_vsync_start);
347 args.usV_SyncWidth =
348 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
349
Alex Deucher54bfe492010-09-03 15:52:53 -0400350 args.ucOverscanRight = radeon_crtc->h_border;
351 args.ucOverscanLeft = radeon_crtc->h_border;
352 args.ucOverscanBottom = radeon_crtc->v_border;
353 args.ucOverscanTop = radeon_crtc->v_border;
354
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400355 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
356 misc |= ATOM_VSYNC_POLARITY;
357 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
358 misc |= ATOM_HSYNC_POLARITY;
359 if (mode->flags & DRM_MODE_FLAG_CSYNC)
360 misc |= ATOM_COMPOSITESYNC;
361 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
362 misc |= ATOM_INTERLACE;
363 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
364 misc |= ATOM_DOUBLE_CLOCK_MODE;
365
366 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
367 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200368
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400369 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200370}
371
Alex Deucher3fa47d92012-01-20 14:56:39 -0500372static void atombios_disable_ss(struct radeon_device *rdev, int pll_id)
Alex Deucherb7922102010-03-06 10:57:30 -0500373{
Alex Deucherb7922102010-03-06 10:57:30 -0500374 u32 ss_cntl;
375
376 if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500377 switch (pll_id) {
Alex Deucherb7922102010-03-06 10:57:30 -0500378 case ATOM_PPLL1:
379 ss_cntl = RREG32(EVERGREEN_P1PLL_SS_CNTL);
380 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
381 WREG32(EVERGREEN_P1PLL_SS_CNTL, ss_cntl);
382 break;
383 case ATOM_PPLL2:
384 ss_cntl = RREG32(EVERGREEN_P2PLL_SS_CNTL);
385 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
386 WREG32(EVERGREEN_P2PLL_SS_CNTL, ss_cntl);
387 break;
388 case ATOM_DCPLL:
389 case ATOM_PPLL_INVALID:
390 return;
391 }
392 } else if (ASIC_IS_AVIVO(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(AVIVO_P1PLL_INT_SS_CNTL);
396 ss_cntl &= ~1;
397 WREG32(AVIVO_P1PLL_INT_SS_CNTL, ss_cntl);
398 break;
399 case ATOM_PPLL2:
400 ss_cntl = RREG32(AVIVO_P2PLL_INT_SS_CNTL);
401 ss_cntl &= ~1;
402 WREG32(AVIVO_P2PLL_INT_SS_CNTL, ss_cntl);
403 break;
404 case ATOM_DCPLL:
405 case ATOM_PPLL_INVALID:
406 return;
407 }
408 }
409}
410
411
Alex Deucher26b9fc32010-02-01 16:39:11 -0500412union atom_enable_ss {
Alex Deucherba032a52010-10-04 17:13:01 -0400413 ENABLE_LVDS_SS_PARAMETERS lvds_ss;
414 ENABLE_LVDS_SS_PARAMETERS_V2 lvds_ss_2;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500415 ENABLE_SPREAD_SPECTRUM_ON_PPLL_PS_ALLOCATION v1;
Alex Deucherba032a52010-10-04 17:13:01 -0400416 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V2 v2;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500417 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V3 v3;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500418};
419
Alex Deucher3fa47d92012-01-20 14:56:39 -0500420static void atombios_crtc_program_ss(struct radeon_device *rdev,
Alex Deucherba032a52010-10-04 17:13:01 -0400421 int enable,
422 int pll_id,
Jerome Glisse5efcc762012-08-17 14:40:04 -0400423 int crtc_id,
Alex Deucherba032a52010-10-04 17:13:01 -0400424 struct radeon_atom_ss *ss)
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400425{
Jerome Glisse5efcc762012-08-17 14:40:04 -0400426 unsigned i;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400427 int index = GetIndexIntoMasterTable(COMMAND, EnableSpreadSpectrumOnPPLL);
Alex Deucher26b9fc32010-02-01 16:39:11 -0500428 union atom_enable_ss args;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400429
Jerome Glisse5efcc762012-08-17 14:40:04 -0400430 if (!enable) {
Alex Deucher53176702012-08-21 18:52:56 -0400431 for (i = 0; i < rdev->num_crtc; i++) {
Jerome Glisse5efcc762012-08-17 14:40:04 -0400432 if (rdev->mode_info.crtcs[i] &&
433 rdev->mode_info.crtcs[i]->enabled &&
434 i != crtc_id &&
435 pll_id == rdev->mode_info.crtcs[i]->pll_id) {
436 /* one other crtc is using this pll don't turn
437 * off spread spectrum as it might turn off
438 * display on active crtc
439 */
440 return;
441 }
442 }
443 }
444
Alex Deucher26b9fc32010-02-01 16:39:11 -0500445 memset(&args, 0, sizeof(args));
Alex Deucherba032a52010-10-04 17:13:01 -0400446
Alex Deuchera572eaa2011-01-06 21:19:16 -0500447 if (ASIC_IS_DCE5(rdev)) {
Cédric Cano45894332011-02-11 19:45:37 -0500448 args.v3.usSpreadSpectrumAmountFrac = cpu_to_le16(0);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400449 args.v3.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500450 switch (pll_id) {
451 case ATOM_PPLL1:
452 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P1PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500453 break;
454 case ATOM_PPLL2:
455 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P2PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500456 break;
457 case ATOM_DCPLL:
458 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_DCPLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500459 break;
460 case ATOM_PPLL_INVALID:
461 return;
462 }
Alex Deucherf312f092012-07-17 14:02:44 -0400463 args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
464 args.v3.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherd0ae3e82011-05-23 14:06:20 -0400465 args.v3.ucEnable = enable;
Alex Deucher0671bdd72012-03-20 17:18:34 -0400466 if ((ss->percentage == 0) || (ss->type & ATOM_EXTERNAL_SS_MASK) || ASIC_IS_DCE61(rdev))
Alex Deucher8e8e5232011-05-20 04:34:16 -0400467 args.v3.ucEnable = ATOM_DISABLE;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500468 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucherba032a52010-10-04 17:13:01 -0400469 args.v2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400470 args.v2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400471 switch (pll_id) {
472 case ATOM_PPLL1:
473 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P1PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400474 break;
475 case ATOM_PPLL2:
476 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P2PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400477 break;
478 case ATOM_DCPLL:
479 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_DCPLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400480 break;
481 case ATOM_PPLL_INVALID:
482 return;
483 }
Alex Deucherf312f092012-07-17 14:02:44 -0400484 args.v2.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
485 args.v2.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherba032a52010-10-04 17:13:01 -0400486 args.v2.ucEnable = enable;
Alex Deucher09cc6502011-10-12 18:44:33 -0400487 if ((ss->percentage == 0) || (ss->type & ATOM_EXTERNAL_SS_MASK) || ASIC_IS_DCE41(rdev))
Alex Deucher8e8e5232011-05-20 04:34:16 -0400488 args.v2.ucEnable = ATOM_DISABLE;
Alex Deucherba032a52010-10-04 17:13:01 -0400489 } else if (ASIC_IS_DCE3(rdev)) {
490 args.v1.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400491 args.v1.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400492 args.v1.ucSpreadSpectrumStep = ss->step;
493 args.v1.ucSpreadSpectrumDelay = ss->delay;
494 args.v1.ucSpreadSpectrumRange = ss->range;
495 args.v1.ucPpll = pll_id;
496 args.v1.ucEnable = enable;
497 } else if (ASIC_IS_AVIVO(rdev)) {
Alex Deucher8e8e5232011-05-20 04:34:16 -0400498 if ((enable == ATOM_DISABLE) || (ss->percentage == 0) ||
499 (ss->type & ATOM_EXTERNAL_SS_MASK)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500500 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400501 return;
502 }
503 args.lvds_ss_2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400504 args.lvds_ss_2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400505 args.lvds_ss_2.ucSpreadSpectrumStep = ss->step;
506 args.lvds_ss_2.ucSpreadSpectrumDelay = ss->delay;
507 args.lvds_ss_2.ucSpreadSpectrumRange = ss->range;
508 args.lvds_ss_2.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400509 } else {
Alex Deucher8e8e5232011-05-20 04:34:16 -0400510 if ((enable == ATOM_DISABLE) || (ss->percentage == 0) ||
511 (ss->type & ATOM_EXTERNAL_SS_MASK)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500512 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400513 return;
514 }
515 args.lvds_ss.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400516 args.lvds_ss.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400517 args.lvds_ss.ucSpreadSpectrumStepSize_Delay = (ss->step & 3) << 2;
518 args.lvds_ss.ucSpreadSpectrumStepSize_Delay |= (ss->delay & 7) << 4;
519 args.lvds_ss.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400520 }
Alex Deucher26b9fc32010-02-01 16:39:11 -0500521 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400522}
523
Alex Deucher4eaeca32010-01-19 17:32:27 -0500524union adjust_pixel_clock {
525 ADJUST_DISPLAY_PLL_PS_ALLOCATION v1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500526 ADJUST_DISPLAY_PLL_PS_ALLOCATION_V3 v3;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500527};
528
529static u32 atombios_adjust_pll(struct drm_crtc *crtc,
Alex Deucher19eca432012-09-13 10:56:16 -0400530 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200531{
Alex Deucher19eca432012-09-13 10:56:16 -0400532 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200533 struct drm_device *dev = crtc->dev;
534 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400535 struct drm_encoder *encoder = radeon_crtc->encoder;
536 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
537 struct drm_connector *connector = radeon_get_connector_for_encoder(encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500538 u32 adjusted_clock = mode->clock;
Alex Deucher5df31962012-09-13 11:52:08 -0400539 int encoder_mode = atombios_get_encoder_mode(encoder);
Alex Deucherfbee67a2010-08-16 12:44:47 -0400540 u32 dp_clock = mode->clock;
Alex Deucher5df31962012-09-13 11:52:08 -0400541 int bpc = radeon_get_monitor_bpc(connector);
542 bool is_duallink = radeon_dig_monitor_is_duallink(encoder, mode->clock);
Alex Deucherfc103322010-01-19 17:16:10 -0500543
Alex Deucher4eaeca32010-01-19 17:32:27 -0500544 /* reset the pll flags */
Alex Deucher19eca432012-09-13 10:56:16 -0400545 radeon_crtc->pll_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200546
547 if (ASIC_IS_AVIVO(rdev)) {
Alex Deuchereb1300b2009-07-13 11:09:56 -0400548 if ((rdev->family == CHIP_RS600) ||
549 (rdev->family == CHIP_RS690) ||
550 (rdev->family == CHIP_RS740))
Alex Deucher19eca432012-09-13 10:56:16 -0400551 radeon_crtc->pll_flags |= (/*RADEON_PLL_USE_FRAC_FB_DIV |*/
552 RADEON_PLL_PREFER_CLOSEST_LOWER);
Dave Airlie5480f722010-10-19 10:36:47 +1000553
554 if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400555 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000556 else
Alex Deucher19eca432012-09-13 10:56:16 -0400557 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Alex Deucher9bb09fa2011-04-07 10:31:25 -0400558
Alex Deucher5785e532011-04-19 15:24:59 -0400559 if (rdev->family < CHIP_RV770)
Alex Deucher19eca432012-09-13 10:56:16 -0400560 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_MINM_OVER_MAXP;
Alex Deucher37d41742012-04-19 10:48:38 -0400561 /* use frac fb div on APUs */
562 if (ASIC_IS_DCE41(rdev) || ASIC_IS_DCE61(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -0400563 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000564 } else {
Alex Deucher19eca432012-09-13 10:56:16 -0400565 radeon_crtc->pll_flags |= RADEON_PLL_LEGACY;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200566
Dave Airlie5480f722010-10-19 10:36:47 +1000567 if (mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400568 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000569 else
Alex Deucher19eca432012-09-13 10:56:16 -0400570 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000571 }
572
Alex Deucher5df31962012-09-13 11:52:08 -0400573 if ((radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
574 (radeon_encoder_get_dp_bridge_encoder_id(encoder) != ENCODER_OBJECT_ID_NONE)) {
575 if (connector) {
576 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
577 struct radeon_connector_atom_dig *dig_connector =
578 radeon_connector->con_priv;
Alex Deucherfbee67a2010-08-16 12:44:47 -0400579
Alex Deucher5df31962012-09-13 11:52:08 -0400580 dp_clock = dig_connector->dp_clock;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200581 }
582 }
583
Alex Deucher5df31962012-09-13 11:52:08 -0400584 /* use recommended ref_div for ss */
585 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
586 if (radeon_crtc->ss_enabled) {
587 if (radeon_crtc->ss.refdiv) {
588 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
589 radeon_crtc->pll_reference_div = radeon_crtc->ss.refdiv;
590 if (ASIC_IS_AVIVO(rdev))
591 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
592 }
593 }
594 }
595
596 if (ASIC_IS_AVIVO(rdev)) {
597 /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */
598 if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1)
599 adjusted_clock = mode->clock * 2;
600 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
601 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_CLOSEST_LOWER;
602 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
603 radeon_crtc->pll_flags |= RADEON_PLL_IS_LCD;
604 } else {
605 if (encoder->encoder_type != DRM_MODE_ENCODER_DAC)
606 radeon_crtc->pll_flags |= RADEON_PLL_NO_ODD_POST_DIV;
607 if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS)
608 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
609 }
610
Alex Deucher2606c882009-10-08 13:36:21 -0400611 /* DCE3+ has an AdjustDisplayPll that will adjust the pixel clock
612 * accordingly based on the encoder/transmitter to work around
613 * special hw requirements.
614 */
615 if (ASIC_IS_DCE3(rdev)) {
Alex Deucher4eaeca32010-01-19 17:32:27 -0500616 union adjust_pixel_clock args;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500617 u8 frev, crev;
618 int index;
Alex Deucher2606c882009-10-08 13:36:21 -0400619
Alex Deucher2606c882009-10-08 13:36:21 -0400620 index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400621 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
622 &crev))
623 return adjusted_clock;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500624
625 memset(&args, 0, sizeof(args));
626
627 switch (frev) {
628 case 1:
629 switch (crev) {
630 case 1:
631 case 2:
632 args.v1.usPixelClock = cpu_to_le16(mode->clock / 10);
633 args.v1.ucTransmitterID = radeon_encoder->encoder_id;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500634 args.v1.ucEncodeMode = encoder_mode;
Alex Deucher19eca432012-09-13 10:56:16 -0400635 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherfbee67a2010-08-16 12:44:47 -0400636 args.v1.ucConfig |=
637 ADJUST_DISPLAY_CONFIG_SS_ENABLE;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500638
639 atom_execute_table(rdev->mode_info.atom_context,
640 index, (uint32_t *)&args);
641 adjusted_clock = le16_to_cpu(args.v1.usPixelClock) * 10;
642 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500643 case 3:
644 args.v3.sInput.usPixelClock = cpu_to_le16(mode->clock / 10);
645 args.v3.sInput.ucTransmitterID = radeon_encoder->encoder_id;
646 args.v3.sInput.ucEncodeMode = encoder_mode;
647 args.v3.sInput.ucDispPllConfig = 0;
Alex Deucher19eca432012-09-13 10:56:16 -0400648 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherb526ce22011-01-20 23:35:58 +0000649 args.v3.sInput.ucDispPllConfig |=
650 DISPPLL_CONFIG_SS_ENABLE;
Alex Deucher996d5c52011-10-26 15:59:50 -0400651 if (ENCODER_MODE_IS_DP(encoder_mode)) {
Alex Deucherb4f15f82011-10-25 11:34:51 -0400652 args.v3.sInput.ucDispPllConfig |=
653 DISPPLL_CONFIG_COHERENT_MODE;
654 /* 16200 or 27000 */
655 args.v3.sInput.usPixelClock = cpu_to_le16(dp_clock / 10);
656 } else if (radeon_encoder->devices & (ATOM_DEVICE_DFP_SUPPORT)) {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500657 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucherb4f15f82011-10-25 11:34:51 -0400658 if (encoder_mode == ATOM_ENCODER_MODE_HDMI)
659 /* deep color support */
660 args.v3.sInput.usPixelClock =
661 cpu_to_le16((mode->clock * bpc / 8) / 10);
662 if (dig->coherent_mode)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500663 args.v3.sInput.ucDispPllConfig |=
664 DISPPLL_CONFIG_COHERENT_MODE;
Alex Deucher9aa59992012-01-20 15:03:30 -0500665 if (is_duallink)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500666 args.v3.sInput.ucDispPllConfig |=
Alex Deucherb4f15f82011-10-25 11:34:51 -0400667 DISPPLL_CONFIG_DUAL_LINK;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500668 }
Alex Deucher1d33e1f2011-10-31 08:58:47 -0400669 if (radeon_encoder_get_dp_bridge_encoder_id(encoder) !=
670 ENCODER_OBJECT_ID_NONE)
671 args.v3.sInput.ucExtTransmitterID =
672 radeon_encoder_get_dp_bridge_encoder_id(encoder);
673 else
Alex Deuchercc9f67a2011-06-16 10:06:16 -0400674 args.v3.sInput.ucExtTransmitterID = 0;
675
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500676 atom_execute_table(rdev->mode_info.atom_context,
677 index, (uint32_t *)&args);
678 adjusted_clock = le32_to_cpu(args.v3.sOutput.ulDispPllFreq) * 10;
679 if (args.v3.sOutput.ucRefDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400680 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
681 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
682 radeon_crtc->pll_reference_div = args.v3.sOutput.ucRefDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500683 }
684 if (args.v3.sOutput.ucPostDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400685 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
686 radeon_crtc->pll_flags |= RADEON_PLL_USE_POST_DIV;
687 radeon_crtc->pll_post_div = args.v3.sOutput.ucPostDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500688 }
689 break;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500690 default:
691 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
692 return adjusted_clock;
693 }
694 break;
695 default:
696 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
697 return adjusted_clock;
698 }
Alex Deucherd56ef9c2009-10-27 12:11:09 -0400699 }
Alex Deucher4eaeca32010-01-19 17:32:27 -0500700 return adjusted_clock;
701}
702
703union set_pixel_clock {
704 SET_PIXEL_CLOCK_PS_ALLOCATION base;
705 PIXEL_CLOCK_PARAMETERS v1;
706 PIXEL_CLOCK_PARAMETERS_V2 v2;
707 PIXEL_CLOCK_PARAMETERS_V3 v3;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500708 PIXEL_CLOCK_PARAMETERS_V5 v5;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500709 PIXEL_CLOCK_PARAMETERS_V6 v6;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500710};
711
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500712/* on DCE5, make sure the voltage is high enough to support the
713 * required disp clk.
714 */
Alex Deucherf3f1f032012-03-20 17:18:04 -0400715static void atombios_crtc_set_disp_eng_pll(struct radeon_device *rdev,
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500716 u32 dispclk)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500717{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500718 u8 frev, crev;
719 int index;
720 union set_pixel_clock args;
721
722 memset(&args, 0, sizeof(args));
723
724 index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400725 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
726 &crev))
727 return;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500728
729 switch (frev) {
730 case 1:
731 switch (crev) {
732 case 5:
733 /* if the default dcpll clock is specified,
734 * SetPixelClock provides the dividers
735 */
736 args.v5.ucCRTC = ATOM_CRTC_INVALID;
Cédric Cano45894332011-02-11 19:45:37 -0500737 args.v5.usPixelClock = cpu_to_le16(dispclk);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500738 args.v5.ucPpll = ATOM_DCPLL;
739 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500740 case 6:
741 /* if the default dcpll clock is specified,
742 * SetPixelClock provides the dividers
743 */
Alex Deucher265aa6c2011-02-14 16:16:22 -0500744 args.v6.ulDispEngClkFreq = cpu_to_le32(dispclk);
Alex Deucher729b95e2012-03-20 17:18:31 -0400745 if (ASIC_IS_DCE61(rdev))
746 args.v6.ucPpll = ATOM_EXT_PLL1;
747 else if (ASIC_IS_DCE6(rdev))
Alex Deucherf3f1f032012-03-20 17:18:04 -0400748 args.v6.ucPpll = ATOM_PPLL0;
749 else
750 args.v6.ucPpll = ATOM_DCPLL;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500751 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500752 default:
753 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
754 return;
755 }
756 break;
757 default:
758 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
759 return;
760 }
761 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
762}
763
Alex Deucher37f90032010-06-11 17:58:38 -0400764static void atombios_crtc_program_pll(struct drm_crtc *crtc,
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000765 u32 crtc_id,
Alex Deucher37f90032010-06-11 17:58:38 -0400766 int pll_id,
767 u32 encoder_mode,
768 u32 encoder_id,
769 u32 clock,
770 u32 ref_div,
771 u32 fb_div,
772 u32 frac_fb_div,
Alex Deucherdf271be2011-05-20 04:34:15 -0400773 u32 post_div,
Alex Deucher8e8e5232011-05-20 04:34:16 -0400774 int bpc,
775 bool ss_enabled,
776 struct radeon_atom_ss *ss)
Alex Deucher37f90032010-06-11 17:58:38 -0400777{
778 struct drm_device *dev = crtc->dev;
779 struct radeon_device *rdev = dev->dev_private;
780 u8 frev, crev;
781 int index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
782 union set_pixel_clock args;
783
784 memset(&args, 0, sizeof(args));
785
786 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
787 &crev))
788 return;
789
790 switch (frev) {
791 case 1:
792 switch (crev) {
793 case 1:
794 if (clock == ATOM_DISABLE)
795 return;
796 args.v1.usPixelClock = cpu_to_le16(clock / 10);
797 args.v1.usRefDiv = cpu_to_le16(ref_div);
798 args.v1.usFbDiv = cpu_to_le16(fb_div);
799 args.v1.ucFracFbDiv = frac_fb_div;
800 args.v1.ucPostDiv = post_div;
801 args.v1.ucPpll = pll_id;
802 args.v1.ucCRTC = crtc_id;
803 args.v1.ucRefDivSrc = 1;
804 break;
805 case 2:
806 args.v2.usPixelClock = cpu_to_le16(clock / 10);
807 args.v2.usRefDiv = cpu_to_le16(ref_div);
808 args.v2.usFbDiv = cpu_to_le16(fb_div);
809 args.v2.ucFracFbDiv = frac_fb_div;
810 args.v2.ucPostDiv = post_div;
811 args.v2.ucPpll = pll_id;
812 args.v2.ucCRTC = crtc_id;
813 args.v2.ucRefDivSrc = 1;
814 break;
815 case 3:
816 args.v3.usPixelClock = cpu_to_le16(clock / 10);
817 args.v3.usRefDiv = cpu_to_le16(ref_div);
818 args.v3.usFbDiv = cpu_to_le16(fb_div);
819 args.v3.ucFracFbDiv = frac_fb_div;
820 args.v3.ucPostDiv = post_div;
821 args.v3.ucPpll = pll_id;
Alex Deuchere7295862012-09-12 17:58:07 -0400822 if (crtc_id == ATOM_CRTC2)
823 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC2;
824 else
825 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC1;
Alex Deucher6f15c502011-05-20 12:36:12 -0400826 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
827 args.v3.ucMiscInfo |= PIXEL_CLOCK_MISC_REF_DIV_SRC;
Alex Deucher37f90032010-06-11 17:58:38 -0400828 args.v3.ucTransmitterId = encoder_id;
829 args.v3.ucEncoderMode = encoder_mode;
830 break;
831 case 5:
832 args.v5.ucCRTC = crtc_id;
833 args.v5.usPixelClock = cpu_to_le16(clock / 10);
834 args.v5.ucRefDiv = ref_div;
835 args.v5.usFbDiv = cpu_to_le16(fb_div);
836 args.v5.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
837 args.v5.ucPostDiv = post_div;
838 args.v5.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400839 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
840 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_REF_DIV_SRC;
Alex Deucherdf271be2011-05-20 04:34:15 -0400841 switch (bpc) {
842 case 8:
843 default:
844 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_24BPP;
845 break;
846 case 10:
847 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_30BPP;
848 break;
849 }
Alex Deucher37f90032010-06-11 17:58:38 -0400850 args.v5.ucTransmitterID = encoder_id;
851 args.v5.ucEncoderMode = encoder_mode;
852 args.v5.ucPpll = pll_id;
853 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500854 case 6:
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000855 args.v6.ulDispEngClkFreq = cpu_to_le32(crtc_id << 24 | clock / 10);
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500856 args.v6.ucRefDiv = ref_div;
857 args.v6.usFbDiv = cpu_to_le16(fb_div);
858 args.v6.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
859 args.v6.ucPostDiv = post_div;
860 args.v6.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400861 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
862 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_REF_DIV_SRC;
Alex Deucherdf271be2011-05-20 04:34:15 -0400863 switch (bpc) {
864 case 8:
865 default:
866 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_24BPP;
867 break;
868 case 10:
869 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_30BPP;
870 break;
871 case 12:
872 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_36BPP;
873 break;
874 case 16:
875 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_48BPP;
876 break;
877 }
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500878 args.v6.ucTransmitterID = encoder_id;
879 args.v6.ucEncoderMode = encoder_mode;
880 args.v6.ucPpll = pll_id;
881 break;
Alex Deucher37f90032010-06-11 17:58:38 -0400882 default:
883 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
884 return;
885 }
886 break;
887 default:
888 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
889 return;
890 }
891
892 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
893}
894
Alex Deucher19eca432012-09-13 10:56:16 -0400895static bool atombios_crtc_prepare_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
896{
897 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
898 struct drm_device *dev = crtc->dev;
899 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400900 struct radeon_encoder *radeon_encoder =
901 to_radeon_encoder(radeon_crtc->encoder);
902 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400903
904 radeon_crtc->bpc = 8;
905 radeon_crtc->ss_enabled = false;
906
Alex Deucher19eca432012-09-13 10:56:16 -0400907 if ((radeon_encoder->active_device & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
Alex Deucher5df31962012-09-13 11:52:08 -0400908 (radeon_encoder_get_dp_bridge_encoder_id(radeon_crtc->encoder) != ENCODER_OBJECT_ID_NONE)) {
Alex Deucher19eca432012-09-13 10:56:16 -0400909 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
910 struct drm_connector *connector =
Alex Deucher5df31962012-09-13 11:52:08 -0400911 radeon_get_connector_for_encoder(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400912 struct radeon_connector *radeon_connector =
913 to_radeon_connector(connector);
914 struct radeon_connector_atom_dig *dig_connector =
915 radeon_connector->con_priv;
916 int dp_clock;
917 radeon_crtc->bpc = radeon_get_monitor_bpc(connector);
918
919 switch (encoder_mode) {
920 case ATOM_ENCODER_MODE_DP_MST:
921 case ATOM_ENCODER_MODE_DP:
922 /* DP/eDP */
923 dp_clock = dig_connector->dp_clock / 10;
924 if (ASIC_IS_DCE4(rdev))
925 radeon_crtc->ss_enabled =
926 radeon_atombios_get_asic_ss_info(rdev, &radeon_crtc->ss,
927 ASIC_INTERNAL_SS_ON_DP,
928 dp_clock);
929 else {
930 if (dp_clock == 16200) {
931 radeon_crtc->ss_enabled =
932 radeon_atombios_get_ppll_ss_info(rdev,
933 &radeon_crtc->ss,
934 ATOM_DP_SS_ID2);
935 if (!radeon_crtc->ss_enabled)
936 radeon_crtc->ss_enabled =
937 radeon_atombios_get_ppll_ss_info(rdev,
938 &radeon_crtc->ss,
939 ATOM_DP_SS_ID1);
940 } else
941 radeon_crtc->ss_enabled =
942 radeon_atombios_get_ppll_ss_info(rdev,
943 &radeon_crtc->ss,
944 ATOM_DP_SS_ID1);
945 }
946 break;
947 case ATOM_ENCODER_MODE_LVDS:
948 if (ASIC_IS_DCE4(rdev))
949 radeon_crtc->ss_enabled =
950 radeon_atombios_get_asic_ss_info(rdev,
951 &radeon_crtc->ss,
952 dig->lcd_ss_id,
953 mode->clock / 10);
954 else
955 radeon_crtc->ss_enabled =
956 radeon_atombios_get_ppll_ss_info(rdev,
957 &radeon_crtc->ss,
958 dig->lcd_ss_id);
959 break;
960 case ATOM_ENCODER_MODE_DVI:
961 if (ASIC_IS_DCE4(rdev))
962 radeon_crtc->ss_enabled =
963 radeon_atombios_get_asic_ss_info(rdev,
964 &radeon_crtc->ss,
965 ASIC_INTERNAL_SS_ON_TMDS,
966 mode->clock / 10);
967 break;
968 case ATOM_ENCODER_MODE_HDMI:
969 if (ASIC_IS_DCE4(rdev))
970 radeon_crtc->ss_enabled =
971 radeon_atombios_get_asic_ss_info(rdev,
972 &radeon_crtc->ss,
973 ASIC_INTERNAL_SS_ON_HDMI,
974 mode->clock / 10);
975 break;
976 default:
977 break;
978 }
979 }
980
981 /* adjust pixel clock as needed */
982 radeon_crtc->adjusted_clock = atombios_adjust_pll(crtc, mode);
983
984 return true;
985}
986
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500987static void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
Alex Deucher4eaeca32010-01-19 17:32:27 -0500988{
989 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
990 struct drm_device *dev = crtc->dev;
991 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400992 struct radeon_encoder *radeon_encoder =
993 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500994 u32 pll_clock = mode->clock;
995 u32 ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0;
996 struct radeon_pll *pll;
Alex Deucher5df31962012-09-13 11:52:08 -0400997 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500998
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500999 switch (radeon_crtc->pll_id) {
1000 case ATOM_PPLL1:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001001 pll = &rdev->clock.p1pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001002 break;
1003 case ATOM_PPLL2:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001004 pll = &rdev->clock.p2pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001005 break;
1006 case ATOM_DCPLL:
1007 case ATOM_PPLL_INVALID:
Stefan Richter921d98b2010-05-26 10:27:44 +10001008 default:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001009 pll = &rdev->clock.dcpll;
1010 break;
1011 }
Alex Deucher4eaeca32010-01-19 17:32:27 -05001012
Alex Deucher19eca432012-09-13 10:56:16 -04001013 /* update pll params */
1014 pll->flags = radeon_crtc->pll_flags;
1015 pll->reference_div = radeon_crtc->pll_reference_div;
1016 pll->post_div = radeon_crtc->pll_post_div;
Alex Deucher2606c882009-10-08 13:36:21 -04001017
Alex Deucher64146f82011-03-22 01:46:12 -04001018 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
1019 /* TV seems to prefer the legacy algo on some boards */
Alex Deucher19eca432012-09-13 10:56:16 -04001020 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1021 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher64146f82011-03-22 01:46:12 -04001022 else if (ASIC_IS_AVIVO(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -04001023 radeon_compute_pll_avivo(pll, radeon_crtc->adjusted_clock, &pll_clock,
1024 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher619efb12011-01-31 16:48:53 -05001025 else
Alex Deucher19eca432012-09-13 10:56:16 -04001026 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1027 &fb_div, &frac_fb_div, &ref_div, &post_div);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001028
Alex Deucher19eca432012-09-13 10:56:16 -04001029 atombios_crtc_program_ss(rdev, ATOM_DISABLE, radeon_crtc->pll_id,
1030 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001031
Alex Deucher37f90032010-06-11 17:58:38 -04001032 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
1033 encoder_mode, radeon_encoder->encoder_id, mode->clock,
Alex Deucher19eca432012-09-13 10:56:16 -04001034 ref_div, fb_div, frac_fb_div, post_div,
1035 radeon_crtc->bpc, radeon_crtc->ss_enabled, &radeon_crtc->ss);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001036
Alex Deucher19eca432012-09-13 10:56:16 -04001037 if (radeon_crtc->ss_enabled) {
Alex Deucherba032a52010-10-04 17:13:01 -04001038 /* calculate ss amount and step size */
1039 if (ASIC_IS_DCE4(rdev)) {
1040 u32 step_size;
Alex Deucher19eca432012-09-13 10:56:16 -04001041 u32 amount = (((fb_div * 10) + frac_fb_div) * radeon_crtc->ss.percentage) / 10000;
1042 radeon_crtc->ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK;
1043 radeon_crtc->ss.amount |= ((amount - (amount / 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) &
Alex Deucherba032a52010-10-04 17:13:01 -04001044 ATOM_PPLL_SS_AMOUNT_V2_NFRAC_MASK;
Alex Deucher19eca432012-09-13 10:56:16 -04001045 if (radeon_crtc->ss.type & ATOM_PPLL_SS_TYPE_V2_CENTRE_SPREAD)
1046 step_size = (4 * amount * ref_div * (radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001047 (125 * 25 * pll->reference_freq / 100);
1048 else
Alex Deucher19eca432012-09-13 10:56:16 -04001049 step_size = (2 * amount * ref_div * (radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001050 (125 * 25 * pll->reference_freq / 100);
Alex Deucher19eca432012-09-13 10:56:16 -04001051 radeon_crtc->ss.step = step_size;
Alex Deucherba032a52010-10-04 17:13:01 -04001052 }
1053
Alex Deucher19eca432012-09-13 10:56:16 -04001054 atombios_crtc_program_ss(rdev, ATOM_ENABLE, radeon_crtc->pll_id,
1055 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001056 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001057}
1058
Alex Deucherc9417bd2011-02-06 14:23:26 -05001059static int dce4_crtc_do_set_base(struct drm_crtc *crtc,
1060 struct drm_framebuffer *fb,
1061 int x, int y, int atomic)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001062{
1063 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1064 struct drm_device *dev = crtc->dev;
1065 struct radeon_device *rdev = dev->dev_private;
1066 struct radeon_framebuffer *radeon_fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001067 struct drm_framebuffer *target_fb;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001068 struct drm_gem_object *obj;
1069 struct radeon_bo *rbo;
1070 uint64_t fb_location;
1071 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Jerome Glisse285484e2011-12-16 17:03:42 -05001072 unsigned bankw, bankh, mtaspect, tile_split;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001073 u32 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_NONE);
Alex Deucheradcfde52011-05-27 10:05:03 -04001074 u32 tmp, viewport_w, viewport_h;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001075 int r;
1076
1077 /* no fb bound */
Chris Ball4dd19b02010-09-26 06:47:23 -05001078 if (!atomic && !crtc->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001079 DRM_DEBUG_KMS("No FB bound\n");
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001080 return 0;
1081 }
1082
Chris Ball4dd19b02010-09-26 06:47:23 -05001083 if (atomic) {
1084 radeon_fb = to_radeon_framebuffer(fb);
1085 target_fb = fb;
1086 }
1087 else {
1088 radeon_fb = to_radeon_framebuffer(crtc->fb);
1089 target_fb = crtc->fb;
1090 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001091
Chris Ball4dd19b02010-09-26 06:47:23 -05001092 /* If atomic, assume fb object is pinned & idle & fenced and
1093 * just update base pointers
1094 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001095 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001096 rbo = gem_to_radeon_bo(obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001097 r = radeon_bo_reserve(rbo, false);
1098 if (unlikely(r != 0))
1099 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001100
1101 if (atomic)
1102 fb_location = radeon_bo_gpu_offset(rbo);
1103 else {
1104 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1105 if (unlikely(r != 0)) {
1106 radeon_bo_unreserve(rbo);
1107 return -EINVAL;
1108 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001109 }
Chris Ball4dd19b02010-09-26 06:47:23 -05001110
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001111 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1112 radeon_bo_unreserve(rbo);
1113
Chris Ball4dd19b02010-09-26 06:47:23 -05001114 switch (target_fb->bits_per_pixel) {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001115 case 8:
1116 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_8BPP) |
1117 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_INDEXED));
1118 break;
1119 case 15:
1120 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1121 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB1555));
1122 break;
1123 case 16:
1124 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1125 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB565));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001126#ifdef __BIG_ENDIAN
1127 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16);
1128#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001129 break;
1130 case 24:
1131 case 32:
1132 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) |
1133 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB8888));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001134#ifdef __BIG_ENDIAN
1135 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN32);
1136#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001137 break;
1138 default:
1139 DRM_ERROR("Unsupported screen depth %d\n",
Chris Ball4dd19b02010-09-26 06:47:23 -05001140 target_fb->bits_per_pixel);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001141 return -EINVAL;
1142 }
1143
Alex Deucher392e3722011-11-28 14:49:27 -05001144 if (tiling_flags & RADEON_TILING_MACRO) {
Alex Deucherb7019b22012-06-14 15:58:25 -04001145 if (rdev->family >= CHIP_TAHITI)
1146 tmp = rdev->config.si.tile_config;
1147 else if (rdev->family >= CHIP_CAYMAN)
Alex Deucher392e3722011-11-28 14:49:27 -05001148 tmp = rdev->config.cayman.tile_config;
1149 else
1150 tmp = rdev->config.evergreen.tile_config;
1151
1152 switch ((tmp & 0xf0) >> 4) {
1153 case 0: /* 4 banks */
1154 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_4_BANK);
1155 break;
1156 case 1: /* 8 banks */
1157 default:
1158 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_8_BANK);
1159 break;
1160 case 2: /* 16 banks */
1161 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_16_BANK);
1162 break;
1163 }
1164
Alex Deucher97d66322010-05-20 12:12:48 -04001165 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_2D_TILED_THIN1);
Jerome Glisse285484e2011-12-16 17:03:42 -05001166
1167 evergreen_tiling_fields(tiling_flags, &bankw, &bankh, &mtaspect, &tile_split);
1168 fb_format |= EVERGREEN_GRPH_TILE_SPLIT(tile_split);
1169 fb_format |= EVERGREEN_GRPH_BANK_WIDTH(bankw);
1170 fb_format |= EVERGREEN_GRPH_BANK_HEIGHT(bankh);
1171 fb_format |= EVERGREEN_GRPH_MACRO_TILE_ASPECT(mtaspect);
Alex Deucher392e3722011-11-28 14:49:27 -05001172 } else if (tiling_flags & RADEON_TILING_MICRO)
Alex Deucher97d66322010-05-20 12:12:48 -04001173 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_1D_TILED_THIN1);
1174
Alex Deucherb7019b22012-06-14 15:58:25 -04001175 if ((rdev->family == CHIP_TAHITI) ||
1176 (rdev->family == CHIP_PITCAIRN))
1177 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P8_32x32_8x16);
1178 else if (rdev->family == CHIP_VERDE)
1179 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P4_8x16);
1180
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001181 switch (radeon_crtc->crtc_id) {
1182 case 0:
1183 WREG32(AVIVO_D1VGA_CONTROL, 0);
1184 break;
1185 case 1:
1186 WREG32(AVIVO_D2VGA_CONTROL, 0);
1187 break;
1188 case 2:
1189 WREG32(EVERGREEN_D3VGA_CONTROL, 0);
1190 break;
1191 case 3:
1192 WREG32(EVERGREEN_D4VGA_CONTROL, 0);
1193 break;
1194 case 4:
1195 WREG32(EVERGREEN_D5VGA_CONTROL, 0);
1196 break;
1197 case 5:
1198 WREG32(EVERGREEN_D6VGA_CONTROL, 0);
1199 break;
1200 default:
1201 break;
1202 }
1203
1204 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1205 upper_32_bits(fb_location));
1206 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1207 upper_32_bits(fb_location));
1208 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1209 (u32)fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1210 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1211 (u32) fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1212 WREG32(EVERGREEN_GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001213 WREG32(EVERGREEN_GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001214
1215 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1216 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1217 WREG32(EVERGREEN_GRPH_X_START + radeon_crtc->crtc_offset, 0);
1218 WREG32(EVERGREEN_GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001219 WREG32(EVERGREEN_GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1220 WREG32(EVERGREEN_GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001221
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001222 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001223 WREG32(EVERGREEN_GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1224 WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1225
1226 WREG32(EVERGREEN_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
Michel Dänzer1b619252012-02-01 12:09:55 +01001227 target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001228 x &= ~3;
1229 y &= ~1;
1230 WREG32(EVERGREEN_VIEWPORT_START + radeon_crtc->crtc_offset,
1231 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001232 viewport_w = crtc->mode.hdisplay;
1233 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001234 WREG32(EVERGREEN_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001235 (viewport_w << 16) | viewport_h);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001236
Alex Deucherfb9674b2011-04-02 09:15:50 -04001237 /* pageflip setup */
1238 /* make sure flip is at vb rather than hb */
1239 tmp = RREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1240 tmp &= ~EVERGREEN_GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1241 WREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1242
1243 /* set pageflip to happen anywhere in vblank interval */
1244 WREG32(EVERGREEN_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1245
Chris Ball4dd19b02010-09-26 06:47:23 -05001246 if (!atomic && fb && fb != crtc->fb) {
1247 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001248 rbo = gem_to_radeon_bo(radeon_fb->obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001249 r = radeon_bo_reserve(rbo, false);
1250 if (unlikely(r != 0))
1251 return r;
1252 radeon_bo_unpin(rbo);
1253 radeon_bo_unreserve(rbo);
1254 }
1255
1256 /* Bytes per pixel may have changed */
1257 radeon_bandwidth_update(rdev);
1258
1259 return 0;
1260}
1261
Chris Ball4dd19b02010-09-26 06:47:23 -05001262static int avivo_crtc_do_set_base(struct drm_crtc *crtc,
1263 struct drm_framebuffer *fb,
1264 int x, int y, int atomic)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001265{
1266 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1267 struct drm_device *dev = crtc->dev;
1268 struct radeon_device *rdev = dev->dev_private;
1269 struct radeon_framebuffer *radeon_fb;
1270 struct drm_gem_object *obj;
Jerome Glisse4c788672009-11-20 14:29:23 +01001271 struct radeon_bo *rbo;
Chris Ball4dd19b02010-09-26 06:47:23 -05001272 struct drm_framebuffer *target_fb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001273 uint64_t fb_location;
Dave Airliee024e112009-06-24 09:48:08 +10001274 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001275 u32 fb_swap = R600_D1GRPH_SWAP_ENDIAN_NONE;
Alex Deucheradcfde52011-05-27 10:05:03 -04001276 u32 tmp, viewport_w, viewport_h;
Jerome Glisse4c788672009-11-20 14:29:23 +01001277 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001278
Jerome Glisse2de3b482009-11-17 14:08:55 -08001279 /* no fb bound */
Chris Ball4dd19b02010-09-26 06:47:23 -05001280 if (!atomic && !crtc->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001281 DRM_DEBUG_KMS("No FB bound\n");
Jerome Glisse2de3b482009-11-17 14:08:55 -08001282 return 0;
1283 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001284
Chris Ball4dd19b02010-09-26 06:47:23 -05001285 if (atomic) {
1286 radeon_fb = to_radeon_framebuffer(fb);
1287 target_fb = fb;
1288 }
1289 else {
1290 radeon_fb = to_radeon_framebuffer(crtc->fb);
1291 target_fb = crtc->fb;
1292 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001293
1294 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001295 rbo = gem_to_radeon_bo(obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001296 r = radeon_bo_reserve(rbo, false);
1297 if (unlikely(r != 0))
1298 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001299
1300 /* If atomic, assume fb object is pinned & idle & fenced and
1301 * just update base pointers
1302 */
1303 if (atomic)
1304 fb_location = radeon_bo_gpu_offset(rbo);
1305 else {
1306 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1307 if (unlikely(r != 0)) {
1308 radeon_bo_unreserve(rbo);
1309 return -EINVAL;
1310 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001311 }
Jerome Glisse4c788672009-11-20 14:29:23 +01001312 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1313 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001314
Chris Ball4dd19b02010-09-26 06:47:23 -05001315 switch (target_fb->bits_per_pixel) {
Dave Airlie41456df2009-09-16 10:15:21 +10001316 case 8:
1317 fb_format =
1318 AVIVO_D1GRPH_CONTROL_DEPTH_8BPP |
1319 AVIVO_D1GRPH_CONTROL_8BPP_INDEXED;
1320 break;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001321 case 15:
1322 fb_format =
1323 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1324 AVIVO_D1GRPH_CONTROL_16BPP_ARGB1555;
1325 break;
1326 case 16:
1327 fb_format =
1328 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1329 AVIVO_D1GRPH_CONTROL_16BPP_RGB565;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001330#ifdef __BIG_ENDIAN
1331 fb_swap = R600_D1GRPH_SWAP_ENDIAN_16BIT;
1332#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001333 break;
1334 case 24:
1335 case 32:
1336 fb_format =
1337 AVIVO_D1GRPH_CONTROL_DEPTH_32BPP |
1338 AVIVO_D1GRPH_CONTROL_32BPP_ARGB8888;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001339#ifdef __BIG_ENDIAN
1340 fb_swap = R600_D1GRPH_SWAP_ENDIAN_32BIT;
1341#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001342 break;
1343 default:
1344 DRM_ERROR("Unsupported screen depth %d\n",
Chris Ball4dd19b02010-09-26 06:47:23 -05001345 target_fb->bits_per_pixel);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001346 return -EINVAL;
1347 }
1348
Alex Deucher40c4ac12010-05-20 12:04:59 -04001349 if (rdev->family >= CHIP_R600) {
1350 if (tiling_flags & RADEON_TILING_MACRO)
1351 fb_format |= R600_D1GRPH_ARRAY_MODE_2D_TILED_THIN1;
1352 else if (tiling_flags & RADEON_TILING_MICRO)
1353 fb_format |= R600_D1GRPH_ARRAY_MODE_1D_TILED_THIN1;
1354 } else {
1355 if (tiling_flags & RADEON_TILING_MACRO)
1356 fb_format |= AVIVO_D1GRPH_MACRO_ADDRESS_MODE;
Dave Airliecf2f05d2009-12-08 15:45:13 +10001357
Alex Deucher40c4ac12010-05-20 12:04:59 -04001358 if (tiling_flags & RADEON_TILING_MICRO)
1359 fb_format |= AVIVO_D1GRPH_TILED;
1360 }
Dave Airliee024e112009-06-24 09:48:08 +10001361
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001362 if (radeon_crtc->crtc_id == 0)
1363 WREG32(AVIVO_D1VGA_CONTROL, 0);
1364 else
1365 WREG32(AVIVO_D2VGA_CONTROL, 0);
Alex Deucherc290dad2009-10-22 16:12:34 -04001366
1367 if (rdev->family >= CHIP_RV770) {
1368 if (radeon_crtc->crtc_id) {
Alex Deucher95347872010-09-01 17:20:42 -04001369 WREG32(R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1370 WREG32(R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001371 } else {
Alex Deucher95347872010-09-01 17:20:42 -04001372 WREG32(R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1373 WREG32(R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001374 }
1375 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001376 WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1377 (u32) fb_location);
1378 WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS +
1379 radeon_crtc->crtc_offset, (u32) fb_location);
1380 WREG32(AVIVO_D1GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001381 if (rdev->family >= CHIP_R600)
1382 WREG32(R600_D1GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001383
1384 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1385 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1386 WREG32(AVIVO_D1GRPH_X_START + radeon_crtc->crtc_offset, 0);
1387 WREG32(AVIVO_D1GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001388 WREG32(AVIVO_D1GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1389 WREG32(AVIVO_D1GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001390
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001391 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001392 WREG32(AVIVO_D1GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1393 WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1394
1395 WREG32(AVIVO_D1MODE_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
Michel Dänzer1b619252012-02-01 12:09:55 +01001396 target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001397 x &= ~3;
1398 y &= ~1;
1399 WREG32(AVIVO_D1MODE_VIEWPORT_START + radeon_crtc->crtc_offset,
1400 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001401 viewport_w = crtc->mode.hdisplay;
1402 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001403 WREG32(AVIVO_D1MODE_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001404 (viewport_w << 16) | viewport_h);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001405
Alex Deucherfb9674b2011-04-02 09:15:50 -04001406 /* pageflip setup */
1407 /* make sure flip is at vb rather than hb */
1408 tmp = RREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1409 tmp &= ~AVIVO_D1GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1410 WREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1411
1412 /* set pageflip to happen anywhere in vblank interval */
1413 WREG32(AVIVO_D1MODE_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1414
Chris Ball4dd19b02010-09-26 06:47:23 -05001415 if (!atomic && fb && fb != crtc->fb) {
1416 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001417 rbo = gem_to_radeon_bo(radeon_fb->obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001418 r = radeon_bo_reserve(rbo, false);
1419 if (unlikely(r != 0))
1420 return r;
1421 radeon_bo_unpin(rbo);
1422 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001423 }
Michel Dänzerf30f37d2009-10-08 10:44:09 +02001424
1425 /* Bytes per pixel may have changed */
1426 radeon_bandwidth_update(rdev);
1427
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001428 return 0;
1429}
1430
Alex Deucher54f088a2010-01-19 16:34:01 -05001431int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y,
1432 struct drm_framebuffer *old_fb)
1433{
1434 struct drm_device *dev = crtc->dev;
1435 struct radeon_device *rdev = dev->dev_private;
1436
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001437 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001438 return dce4_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001439 else if (ASIC_IS_AVIVO(rdev))
Chris Ball4dd19b02010-09-26 06:47:23 -05001440 return avivo_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucher54f088a2010-01-19 16:34:01 -05001441 else
Chris Ball4dd19b02010-09-26 06:47:23 -05001442 return radeon_crtc_do_set_base(crtc, old_fb, x, y, 0);
1443}
1444
1445int atombios_crtc_set_base_atomic(struct drm_crtc *crtc,
1446 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -05001447 int x, int y, enum mode_set_atomic state)
Chris Ball4dd19b02010-09-26 06:47:23 -05001448{
1449 struct drm_device *dev = crtc->dev;
1450 struct radeon_device *rdev = dev->dev_private;
1451
1452 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001453 return dce4_crtc_do_set_base(crtc, fb, x, y, 1);
Chris Ball4dd19b02010-09-26 06:47:23 -05001454 else if (ASIC_IS_AVIVO(rdev))
1455 return avivo_crtc_do_set_base(crtc, fb, x, y, 1);
1456 else
1457 return radeon_crtc_do_set_base(crtc, fb, x, y, 1);
Alex Deucher54f088a2010-01-19 16:34:01 -05001458}
1459
Alex Deucher615e0cb2010-01-20 16:22:53 -05001460/* properly set additional regs when using atombios */
1461static void radeon_legacy_atom_fixup(struct drm_crtc *crtc)
1462{
1463 struct drm_device *dev = crtc->dev;
1464 struct radeon_device *rdev = dev->dev_private;
1465 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1466 u32 disp_merge_cntl;
1467
1468 switch (radeon_crtc->crtc_id) {
1469 case 0:
1470 disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL);
1471 disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN;
1472 WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl);
1473 break;
1474 case 1:
1475 disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL);
1476 disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN;
1477 WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl);
1478 WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID));
1479 WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID));
1480 break;
1481 }
1482}
1483
Alex Deucherf3dd8502012-08-31 11:56:50 -04001484/**
1485 * radeon_get_pll_use_mask - look up a mask of which pplls are in use
1486 *
1487 * @crtc: drm crtc
1488 *
1489 * Returns the mask of which PPLLs (Pixel PLLs) are in use.
1490 */
1491static u32 radeon_get_pll_use_mask(struct drm_crtc *crtc)
1492{
1493 struct drm_device *dev = crtc->dev;
1494 struct drm_crtc *test_crtc;
1495 struct radeon_crtc *radeon_test_crtc;
1496 u32 pll_in_use = 0;
1497
1498 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1499 if (crtc == test_crtc)
1500 continue;
1501
1502 radeon_test_crtc = to_radeon_crtc(test_crtc);
1503 if (radeon_test_crtc->pll_id != ATOM_PPLL_INVALID)
1504 pll_in_use |= (1 << radeon_test_crtc->pll_id);
1505 }
1506 return pll_in_use;
1507}
1508
1509/**
1510 * radeon_get_shared_dp_ppll - return the PPLL used by another crtc for DP
1511 *
1512 * @crtc: drm crtc
1513 *
1514 * Returns the PPLL (Pixel PLL) used by another crtc/encoder which is
1515 * also in DP mode. For DP, a single PPLL can be used for all DP
1516 * crtcs/encoders.
1517 */
1518static int radeon_get_shared_dp_ppll(struct drm_crtc *crtc)
1519{
1520 struct drm_device *dev = crtc->dev;
1521 struct drm_encoder *test_encoder;
Alex Deucher5df31962012-09-13 11:52:08 -04001522 struct radeon_crtc *test_radeon_crtc;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001523
1524 list_for_each_entry(test_encoder, &dev->mode_config.encoder_list, head) {
1525 if (test_encoder->crtc && (test_encoder->crtc != crtc)) {
1526 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_encoder))) {
1527 /* for DP use the same PLL for all */
Alex Deucher5df31962012-09-13 11:52:08 -04001528 test_radeon_crtc = to_radeon_crtc(test_encoder->crtc);
1529 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
1530 return test_radeon_crtc->pll_id;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001531 }
1532 }
1533 }
1534 return ATOM_PPLL_INVALID;
1535}
1536
1537/**
Alex Deucher2f454cf2012-09-12 18:54:14 -04001538 * radeon_get_shared_nondp_ppll - return the PPLL used by another non-DP crtc
1539 *
1540 * @crtc: drm crtc
1541 * @encoder: drm encoder
1542 *
1543 * Returns the PPLL (Pixel PLL) used by another non-DP crtc/encoder which can
1544 * be shared (i.e., same clock).
1545 */
Alex Deucher5df31962012-09-13 11:52:08 -04001546static int radeon_get_shared_nondp_ppll(struct drm_crtc *crtc)
Alex Deucher2f454cf2012-09-12 18:54:14 -04001547{
Alex Deucher5df31962012-09-13 11:52:08 -04001548 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher2f454cf2012-09-12 18:54:14 -04001549 struct drm_device *dev = crtc->dev;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001550 struct drm_encoder *test_encoder;
Alex Deucher9642ac02012-09-13 12:43:41 -04001551 struct drm_crtc *test_crtc;
Alex Deucher5df31962012-09-13 11:52:08 -04001552 struct radeon_crtc *test_radeon_crtc;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001553 struct radeon_encoder *test_radeon_encoder;
Alex Deucher9642ac02012-09-13 12:43:41 -04001554 u32 adjusted_clock, test_adjusted_clock;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001555
Alex Deucher9642ac02012-09-13 12:43:41 -04001556 adjusted_clock = radeon_crtc->adjusted_clock;
1557
1558 if (adjusted_clock == 0)
1559 return ATOM_PPLL_INVALID;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001560
1561 list_for_each_entry(test_encoder, &dev->mode_config.encoder_list, head) {
1562 if (test_encoder->crtc && (test_encoder->crtc != crtc)) {
1563 if (!ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_encoder))) {
1564 test_radeon_encoder = to_radeon_encoder(test_encoder);
Alex Deucher9642ac02012-09-13 12:43:41 -04001565 test_crtc = test_encoder->crtc;
1566 test_radeon_crtc = to_radeon_crtc(test_crtc);
Alex Deucher2f454cf2012-09-12 18:54:14 -04001567 /* for non-DP check the clock */
Alex Deucher9642ac02012-09-13 12:43:41 -04001568 test_adjusted_clock = test_radeon_crtc->adjusted_clock;
1569 if ((crtc->mode.clock == test_crtc->mode.clock) &&
1570 (adjusted_clock == test_adjusted_clock) &&
1571 (radeon_crtc->ss_enabled == test_radeon_crtc->ss_enabled) &&
Alex Deucher5df31962012-09-13 11:52:08 -04001572 (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID))
1573 return test_radeon_crtc->pll_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001574 }
1575 }
1576 }
1577 return ATOM_PPLL_INVALID;
1578}
1579
1580/**
Alex Deucherf3dd8502012-08-31 11:56:50 -04001581 * radeon_atom_pick_pll - Allocate a PPLL for use by the crtc.
1582 *
1583 * @crtc: drm crtc
1584 *
1585 * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
1586 * a single PPLL can be used for all DP crtcs/encoders. For non-DP
1587 * monitors a dedicated PPLL must be used. If a particular board has
1588 * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
1589 * as there is no need to program the PLL itself. If we are not able to
1590 * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
1591 * avoid messing up an existing monitor.
1592 *
1593 * Asic specific PLL information
1594 *
1595 * DCE 6.1
1596 * - PPLL2 is only available to UNIPHYA (both DP and non-DP)
1597 * - PPLL0, PPLL1 are available for UNIPHYB/C/D/E/F (both DP and non-DP)
1598 *
1599 * DCE 6.0
1600 * - PPLL0 is available to all UNIPHY (DP only)
1601 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1602 *
1603 * DCE 5.0
1604 * - DCPLL is available to all UNIPHY (DP only)
1605 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1606 *
1607 * DCE 3.0/4.0/4.1
1608 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1609 *
1610 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001611static int radeon_atom_pick_pll(struct drm_crtc *crtc)
1612{
Alex Deucher5df31962012-09-13 11:52:08 -04001613 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001614 struct drm_device *dev = crtc->dev;
1615 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001616 struct radeon_encoder *radeon_encoder =
1617 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucherf3dd8502012-08-31 11:56:50 -04001618 u32 pll_in_use;
1619 int pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001620
Alex Deucher24e1f792012-03-20 17:18:32 -04001621 if (ASIC_IS_DCE61(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001622 struct radeon_encoder_atom_dig *dig =
1623 radeon_encoder->enc_priv;
Alex Deucher24e1f792012-03-20 17:18:32 -04001624
Alex Deucher5df31962012-09-13 11:52:08 -04001625 if ((radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_UNIPHY) &&
1626 (dig->linkb == false))
1627 /* UNIPHY A uses PPLL2 */
1628 return ATOM_PPLL2;
1629 else if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1630 /* UNIPHY B/C/D/E/F */
1631 if (rdev->clock.dp_extclk)
1632 /* skip PPLL programming if using ext clock */
1633 return ATOM_PPLL_INVALID;
1634 else {
1635 /* use the same PPLL for all DP monitors */
1636 pll = radeon_get_shared_dp_ppll(crtc);
1637 if (pll != ATOM_PPLL_INVALID)
1638 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001639 }
Alex Deucher5df31962012-09-13 11:52:08 -04001640 } else {
1641 /* use the same PPLL for all monitors with the same clock */
1642 pll = radeon_get_shared_nondp_ppll(crtc);
1643 if (pll != ATOM_PPLL_INVALID)
1644 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001645 }
1646 /* UNIPHY B/C/D/E/F */
Alex Deucherf3dd8502012-08-31 11:56:50 -04001647 pll_in_use = radeon_get_pll_use_mask(crtc);
1648 if (!(pll_in_use & (1 << ATOM_PPLL0)))
Alex Deucher24e1f792012-03-20 17:18:32 -04001649 return ATOM_PPLL0;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001650 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1651 return ATOM_PPLL1;
1652 DRM_ERROR("unable to allocate a PPLL\n");
1653 return ATOM_PPLL_INVALID;
Alex Deucher24e1f792012-03-20 17:18:32 -04001654 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001655 /* in DP mode, the DP ref clock can come from PPLL, DCPLL, or ext clock,
1656 * depending on the asic:
1657 * DCE4: PPLL or ext clock
1658 * DCE5: PPLL, DCPLL, or ext clock
1659 * DCE6: PPLL, PPLL0, or ext clock
1660 *
1661 * Setting ATOM_PPLL_INVALID will cause SetPixelClock to skip
1662 * PPLL/DCPLL programming and only program the DP DTO for the
1663 * crtc virtual pixel clock.
1664 */
1665 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1666 if (rdev->clock.dp_extclk)
1667 /* skip PPLL programming if using ext clock */
1668 return ATOM_PPLL_INVALID;
1669 else if (ASIC_IS_DCE6(rdev))
1670 /* use PPLL0 for all DP */
1671 return ATOM_PPLL0;
1672 else if (ASIC_IS_DCE5(rdev))
1673 /* use DCPLL for all DP */
1674 return ATOM_DCPLL;
1675 else {
1676 /* use the same PPLL for all DP monitors */
1677 pll = radeon_get_shared_dp_ppll(crtc);
1678 if (pll != ATOM_PPLL_INVALID)
1679 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001680 }
Alex Deucher5df31962012-09-13 11:52:08 -04001681 } else {
1682 /* use the same PPLL for all monitors with the same clock */
1683 pll = radeon_get_shared_nondp_ppll(crtc);
1684 if (pll != ATOM_PPLL_INVALID)
1685 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001686 }
1687 /* all other cases */
1688 pll_in_use = radeon_get_pll_use_mask(crtc);
1689 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1690 return ATOM_PPLL2;
1691 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1692 return ATOM_PPLL1;
1693 DRM_ERROR("unable to allocate a PPLL\n");
1694 return ATOM_PPLL_INVALID;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001695 } else {
Alex Deucher5df31962012-09-13 11:52:08 -04001696 if (ASIC_IS_AVIVO(rdev)) {
1697 /* in DP mode, the DP ref clock can come from either PPLL
1698 * depending on the asic:
1699 * DCE3: PPLL1 or PPLL2
1700 */
1701 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1702 /* use the same PPLL for all DP monitors */
1703 pll = radeon_get_shared_dp_ppll(crtc);
1704 if (pll != ATOM_PPLL_INVALID)
1705 return pll;
1706 } else {
1707 /* use the same PPLL for all monitors with the same clock */
1708 pll = radeon_get_shared_nondp_ppll(crtc);
1709 if (pll != ATOM_PPLL_INVALID)
1710 return pll;
1711 }
1712 /* all other cases */
1713 pll_in_use = radeon_get_pll_use_mask(crtc);
1714 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1715 return ATOM_PPLL2;
1716 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1717 return ATOM_PPLL1;
1718 DRM_ERROR("unable to allocate a PPLL\n");
1719 return ATOM_PPLL_INVALID;
1720 } else {
1721 /* on pre-R5xx asics, the crtc to pll mapping is hardcoded */
Alex Deucher2f454cf2012-09-12 18:54:14 -04001722 return radeon_crtc->crtc_id;
1723 }
Alex Deucher2f454cf2012-09-12 18:54:14 -04001724 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001725}
1726
Alex Deucherf3f1f032012-03-20 17:18:04 -04001727void radeon_atom_disp_eng_pll_init(struct radeon_device *rdev)
Alex Deucher3fa47d92012-01-20 14:56:39 -05001728{
1729 /* always set DCPLL */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001730 if (ASIC_IS_DCE6(rdev))
1731 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
1732 else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -05001733 struct radeon_atom_ss ss;
1734 bool ss_enabled = radeon_atombios_get_asic_ss_info(rdev, &ss,
1735 ASIC_INTERNAL_SS_ON_DCPLL,
1736 rdev->clock.default_dispclk);
1737 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001738 atombios_crtc_program_ss(rdev, ATOM_DISABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001739 /* XXX: DCE5, make sure voltage, dispclk is high enough */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001740 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001741 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001742 atombios_crtc_program_ss(rdev, ATOM_ENABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001743 }
1744
1745}
1746
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001747int atombios_crtc_mode_set(struct drm_crtc *crtc,
1748 struct drm_display_mode *mode,
1749 struct drm_display_mode *adjusted_mode,
1750 int x, int y, struct drm_framebuffer *old_fb)
1751{
1752 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1753 struct drm_device *dev = crtc->dev;
1754 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001755 struct radeon_encoder *radeon_encoder =
1756 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher54bfe492010-09-03 15:52:53 -04001757 bool is_tvcv = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001758
Alex Deucher5df31962012-09-13 11:52:08 -04001759 if (radeon_encoder->active_device &
1760 (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT))
1761 is_tvcv = true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001762
1763 atombios_crtc_set_pll(crtc, adjusted_mode);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001764
Alex Deucher54bfe492010-09-03 15:52:53 -04001765 if (ASIC_IS_DCE4(rdev))
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001766 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher54bfe492010-09-03 15:52:53 -04001767 else if (ASIC_IS_AVIVO(rdev)) {
1768 if (is_tvcv)
1769 atombios_crtc_set_timing(crtc, adjusted_mode);
1770 else
1771 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
1772 } else {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001773 atombios_crtc_set_timing(crtc, adjusted_mode);
Alex Deucher5a9bcac2009-10-08 15:09:31 -04001774 if (radeon_crtc->crtc_id == 0)
1775 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher615e0cb2010-01-20 16:22:53 -05001776 radeon_legacy_atom_fixup(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001777 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001778 atombios_crtc_set_base(crtc, x, y, old_fb);
Jerome Glissec93bb852009-07-13 21:04:08 +02001779 atombios_overscan_setup(crtc, mode, adjusted_mode);
1780 atombios_scaler_setup(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001781 return 0;
1782}
1783
1784static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02001785 const struct drm_display_mode *mode,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001786 struct drm_display_mode *adjusted_mode)
1787{
Alex Deucher5df31962012-09-13 11:52:08 -04001788 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1789 struct drm_device *dev = crtc->dev;
1790 struct drm_encoder *encoder;
1791
1792 /* assign the encoder to the radeon crtc to avoid repeated lookups later */
1793 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1794 if (encoder->crtc == crtc) {
1795 radeon_crtc->encoder = encoder;
1796 break;
1797 }
1798 }
1799 if (radeon_crtc->encoder == NULL)
1800 return false;
Jerome Glissec93bb852009-07-13 21:04:08 +02001801 if (!radeon_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
1802 return false;
Alex Deucher19eca432012-09-13 10:56:16 -04001803 if (!atombios_crtc_prepare_pll(crtc, adjusted_mode))
1804 return false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001805 return true;
1806}
1807
1808static void atombios_crtc_prepare(struct drm_crtc *crtc)
1809{
Alex Deucher267364a2010-03-08 17:10:41 -05001810 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04001811 struct drm_device *dev = crtc->dev;
1812 struct radeon_device *rdev = dev->dev_private;
Alex Deucher267364a2010-03-08 17:10:41 -05001813
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04001814 radeon_crtc->in_mode_set = true;
Alex Deucher267364a2010-03-08 17:10:41 -05001815 /* pick pll */
1816 radeon_crtc->pll_id = radeon_atom_pick_pll(crtc);
1817
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04001818 /* disable crtc pair power gating before programming */
1819 if (ASIC_IS_DCE6(rdev))
1820 atombios_powergate_crtc(crtc, ATOM_DISABLE);
1821
Alex Deucher37b43902010-02-09 12:04:43 -05001822 atombios_lock_crtc(crtc, ATOM_ENABLE);
Alex Deuchera348c842010-01-21 16:50:30 -05001823 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001824}
1825
1826static void atombios_crtc_commit(struct drm_crtc *crtc)
1827{
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04001828 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1829
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001830 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
Alex Deucher37b43902010-02-09 12:04:43 -05001831 atombios_lock_crtc(crtc, ATOM_DISABLE);
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04001832 radeon_crtc->in_mode_set = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001833}
1834
Alex Deucher37f90032010-06-11 17:58:38 -04001835static void atombios_crtc_disable(struct drm_crtc *crtc)
1836{
1837 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher64199872012-03-20 17:18:33 -04001838 struct drm_device *dev = crtc->dev;
1839 struct radeon_device *rdev = dev->dev_private;
Alex Deucher8e8e5232011-05-20 04:34:16 -04001840 struct radeon_atom_ss ss;
Alex Deucher4e585912012-08-21 19:06:21 -04001841 int i;
Alex Deucher8e8e5232011-05-20 04:34:16 -04001842
Alex Deucher37f90032010-06-11 17:58:38 -04001843 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
1844
Alex Deucher4e585912012-08-21 19:06:21 -04001845 for (i = 0; i < rdev->num_crtc; i++) {
1846 if (rdev->mode_info.crtcs[i] &&
1847 rdev->mode_info.crtcs[i]->enabled &&
1848 i != radeon_crtc->crtc_id &&
1849 radeon_crtc->pll_id == rdev->mode_info.crtcs[i]->pll_id) {
1850 /* one other crtc is using this pll don't turn
1851 * off the pll
1852 */
1853 goto done;
1854 }
1855 }
1856
Alex Deucher37f90032010-06-11 17:58:38 -04001857 switch (radeon_crtc->pll_id) {
1858 case ATOM_PPLL1:
1859 case ATOM_PPLL2:
1860 /* disable the ppll */
1861 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
Alex Deucher8e8e5232011-05-20 04:34:16 -04001862 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
Alex Deucher37f90032010-06-11 17:58:38 -04001863 break;
Alex Deucher64199872012-03-20 17:18:33 -04001864 case ATOM_PPLL0:
1865 /* disable the ppll */
1866 if (ASIC_IS_DCE61(rdev))
1867 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
1868 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
1869 break;
Alex Deucher37f90032010-06-11 17:58:38 -04001870 default:
1871 break;
1872 }
Alex Deucher4e585912012-08-21 19:06:21 -04001873done:
Alex Deucherf3dd8502012-08-31 11:56:50 -04001874 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04001875 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04001876 radeon_crtc->encoder = NULL;
Alex Deucher37f90032010-06-11 17:58:38 -04001877}
1878
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001879static const struct drm_crtc_helper_funcs atombios_helper_funcs = {
1880 .dpms = atombios_crtc_dpms,
1881 .mode_fixup = atombios_crtc_mode_fixup,
1882 .mode_set = atombios_crtc_mode_set,
1883 .mode_set_base = atombios_crtc_set_base,
Chris Ball4dd19b02010-09-26 06:47:23 -05001884 .mode_set_base_atomic = atombios_crtc_set_base_atomic,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001885 .prepare = atombios_crtc_prepare,
1886 .commit = atombios_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10001887 .load_lut = radeon_crtc_load_lut,
Alex Deucher37f90032010-06-11 17:58:38 -04001888 .disable = atombios_crtc_disable,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001889};
1890
1891void radeon_atombios_init_crtc(struct drm_device *dev,
1892 struct radeon_crtc *radeon_crtc)
1893{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001894 struct radeon_device *rdev = dev->dev_private;
1895
1896 if (ASIC_IS_DCE4(rdev)) {
1897 switch (radeon_crtc->crtc_id) {
1898 case 0:
1899 default:
Alex Deucher12d77982010-02-09 17:18:48 -05001900 radeon_crtc->crtc_offset = EVERGREEN_CRTC0_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001901 break;
1902 case 1:
Alex Deucher12d77982010-02-09 17:18:48 -05001903 radeon_crtc->crtc_offset = EVERGREEN_CRTC1_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001904 break;
1905 case 2:
Alex Deucher12d77982010-02-09 17:18:48 -05001906 radeon_crtc->crtc_offset = EVERGREEN_CRTC2_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001907 break;
1908 case 3:
Alex Deucher12d77982010-02-09 17:18:48 -05001909 radeon_crtc->crtc_offset = EVERGREEN_CRTC3_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001910 break;
1911 case 4:
Alex Deucher12d77982010-02-09 17:18:48 -05001912 radeon_crtc->crtc_offset = EVERGREEN_CRTC4_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001913 break;
1914 case 5:
Alex Deucher12d77982010-02-09 17:18:48 -05001915 radeon_crtc->crtc_offset = EVERGREEN_CRTC5_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001916 break;
1917 }
1918 } else {
1919 if (radeon_crtc->crtc_id == 1)
1920 radeon_crtc->crtc_offset =
1921 AVIVO_D2CRTC_H_TOTAL - AVIVO_D1CRTC_H_TOTAL;
1922 else
1923 radeon_crtc->crtc_offset = 0;
1924 }
Alex Deucherf3dd8502012-08-31 11:56:50 -04001925 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04001926 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04001927 radeon_crtc->encoder = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001928 drm_crtc_helper_add(&radeon_crtc->base, &atombios_helper_funcs);
1929}