blob: b91f79ebbda1817d6adaf493c058c60dd040d5d8 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2007-8 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors: Dave Airlie
24 * Alex Deucher
25 */
26#include <drm/drmP.h>
27#include <drm/drm_crtc_helper.h>
28#include <drm/radeon_drm.h>
Ben Skeggs68adac52010-04-28 11:46:42 +100029#include <drm/drm_fixed.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020030#include "radeon.h"
31#include "atom.h"
32#include "atom-bits.h"
33
Jerome Glissec93bb852009-07-13 21:04:08 +020034static void atombios_overscan_setup(struct drm_crtc *crtc,
35 struct drm_display_mode *mode,
36 struct drm_display_mode *adjusted_mode)
37{
38 struct drm_device *dev = crtc->dev;
39 struct radeon_device *rdev = dev->dev_private;
40 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
41 SET_CRTC_OVERSCAN_PS_ALLOCATION args;
42 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_OverScan);
43 int a1, a2;
44
45 memset(&args, 0, sizeof(args));
46
Jerome Glissec93bb852009-07-13 21:04:08 +020047 args.ucCRTC = radeon_crtc->crtc_id;
48
49 switch (radeon_crtc->rmx_type) {
50 case RMX_CENTER:
Cédric Cano45894332011-02-11 19:45:37 -050051 args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2);
52 args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - mode->crtc_vdisplay) / 2);
53 args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2);
54 args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - mode->crtc_hdisplay) / 2);
Jerome Glissec93bb852009-07-13 21:04:08 +020055 break;
56 case RMX_ASPECT:
57 a1 = mode->crtc_vdisplay * adjusted_mode->crtc_hdisplay;
58 a2 = adjusted_mode->crtc_vdisplay * mode->crtc_hdisplay;
59
60 if (a1 > a2) {
Cédric Cano45894332011-02-11 19:45:37 -050061 args.usOverscanLeft = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2);
62 args.usOverscanRight = cpu_to_le16((adjusted_mode->crtc_hdisplay - (a2 / mode->crtc_vdisplay)) / 2);
Jerome Glissec93bb852009-07-13 21:04:08 +020063 } else if (a2 > a1) {
Alex Deucher942b0e92011-03-14 23:18:00 -040064 args.usOverscanTop = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
65 args.usOverscanBottom = cpu_to_le16((adjusted_mode->crtc_vdisplay - (a1 / mode->crtc_hdisplay)) / 2);
Jerome Glissec93bb852009-07-13 21:04:08 +020066 }
Jerome Glissec93bb852009-07-13 21:04:08 +020067 break;
68 case RMX_FULL:
69 default:
Cédric Cano45894332011-02-11 19:45:37 -050070 args.usOverscanRight = cpu_to_le16(radeon_crtc->h_border);
71 args.usOverscanLeft = cpu_to_le16(radeon_crtc->h_border);
72 args.usOverscanBottom = cpu_to_le16(radeon_crtc->v_border);
73 args.usOverscanTop = cpu_to_le16(radeon_crtc->v_border);
Jerome Glissec93bb852009-07-13 21:04:08 +020074 break;
75 }
Alex Deucher5b1714d2010-08-03 19:59:20 -040076 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glissec93bb852009-07-13 21:04:08 +020077}
78
79static void atombios_scaler_setup(struct drm_crtc *crtc)
80{
81 struct drm_device *dev = crtc->dev;
82 struct radeon_device *rdev = dev->dev_private;
83 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
84 ENABLE_SCALER_PS_ALLOCATION args;
85 int index = GetIndexIntoMasterTable(COMMAND, EnableScaler);
Alex Deucher5df31962012-09-13 11:52:08 -040086 struct radeon_encoder *radeon_encoder =
87 to_radeon_encoder(radeon_crtc->encoder);
Jerome Glissec93bb852009-07-13 21:04:08 +020088 /* fixme - fill in enc_priv for atom dac */
89 enum radeon_tv_std tv_std = TV_STD_NTSC;
Dave Airlie4ce001a2009-08-13 16:32:14 +100090 bool is_tv = false, is_cv = false;
Jerome Glissec93bb852009-07-13 21:04:08 +020091
92 if (!ASIC_IS_AVIVO(rdev) && radeon_crtc->crtc_id)
93 return;
94
Alex Deucher5df31962012-09-13 11:52:08 -040095 if (radeon_encoder->active_device & ATOM_DEVICE_TV_SUPPORT) {
96 struct radeon_encoder_atom_dac *tv_dac = radeon_encoder->enc_priv;
97 tv_std = tv_dac->tv_std;
98 is_tv = true;
Dave Airlie4ce001a2009-08-13 16:32:14 +100099 }
100
Jerome Glissec93bb852009-07-13 21:04:08 +0200101 memset(&args, 0, sizeof(args));
102
103 args.ucScaler = radeon_crtc->crtc_id;
104
Dave Airlie4ce001a2009-08-13 16:32:14 +1000105 if (is_tv) {
Jerome Glissec93bb852009-07-13 21:04:08 +0200106 switch (tv_std) {
107 case TV_STD_NTSC:
108 default:
109 args.ucTVStandard = ATOM_TV_NTSC;
110 break;
111 case TV_STD_PAL:
112 args.ucTVStandard = ATOM_TV_PAL;
113 break;
114 case TV_STD_PAL_M:
115 args.ucTVStandard = ATOM_TV_PALM;
116 break;
117 case TV_STD_PAL_60:
118 args.ucTVStandard = ATOM_TV_PAL60;
119 break;
120 case TV_STD_NTSC_J:
121 args.ucTVStandard = ATOM_TV_NTSCJ;
122 break;
123 case TV_STD_SCART_PAL:
124 args.ucTVStandard = ATOM_TV_PAL; /* ??? */
125 break;
126 case TV_STD_SECAM:
127 args.ucTVStandard = ATOM_TV_SECAM;
128 break;
129 case TV_STD_PAL_CN:
130 args.ucTVStandard = ATOM_TV_PALCN;
131 break;
132 }
133 args.ucEnable = SCALER_ENABLE_MULTITAP_MODE;
Dave Airlie4ce001a2009-08-13 16:32:14 +1000134 } else if (is_cv) {
Jerome Glissec93bb852009-07-13 21:04:08 +0200135 args.ucTVStandard = ATOM_TV_CV;
136 args.ucEnable = SCALER_ENABLE_MULTITAP_MODE;
137 } else {
138 switch (radeon_crtc->rmx_type) {
139 case RMX_FULL:
140 args.ucEnable = ATOM_SCALER_EXPANSION;
141 break;
142 case RMX_CENTER:
143 args.ucEnable = ATOM_SCALER_CENTER;
144 break;
145 case RMX_ASPECT:
146 args.ucEnable = ATOM_SCALER_EXPANSION;
147 break;
148 default:
149 if (ASIC_IS_AVIVO(rdev))
150 args.ucEnable = ATOM_SCALER_DISABLE;
151 else
152 args.ucEnable = ATOM_SCALER_CENTER;
153 break;
154 }
155 }
156 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Dave Airlie4ce001a2009-08-13 16:32:14 +1000157 if ((is_tv || is_cv)
158 && rdev->family >= CHIP_RV515 && rdev->family <= CHIP_R580) {
159 atom_rv515_force_tv_scaler(rdev, radeon_crtc);
Jerome Glissec93bb852009-07-13 21:04:08 +0200160 }
161}
162
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200163static void atombios_lock_crtc(struct drm_crtc *crtc, int lock)
164{
165 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
166 struct drm_device *dev = crtc->dev;
167 struct radeon_device *rdev = dev->dev_private;
168 int index =
169 GetIndexIntoMasterTable(COMMAND, UpdateCRTC_DoubleBufferRegisters);
170 ENABLE_CRTC_PS_ALLOCATION args;
171
172 memset(&args, 0, sizeof(args));
173
174 args.ucCRTC = radeon_crtc->crtc_id;
175 args.ucEnable = lock;
176
177 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
178}
179
180static void atombios_enable_crtc(struct drm_crtc *crtc, int state)
181{
182 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
183 struct drm_device *dev = crtc->dev;
184 struct radeon_device *rdev = dev->dev_private;
185 int index = GetIndexIntoMasterTable(COMMAND, EnableCRTC);
186 ENABLE_CRTC_PS_ALLOCATION args;
187
188 memset(&args, 0, sizeof(args));
189
190 args.ucCRTC = radeon_crtc->crtc_id;
191 args.ucEnable = state;
192
193 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
194}
195
196static void atombios_enable_crtc_memreq(struct drm_crtc *crtc, int state)
197{
198 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
199 struct drm_device *dev = crtc->dev;
200 struct radeon_device *rdev = dev->dev_private;
201 int index = GetIndexIntoMasterTable(COMMAND, EnableCRTCMemReq);
202 ENABLE_CRTC_PS_ALLOCATION args;
203
204 memset(&args, 0, sizeof(args));
205
206 args.ucCRTC = radeon_crtc->crtc_id;
207 args.ucEnable = state;
208
209 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
210}
211
Alex Deucher78fe9e52014-01-28 23:49:37 -0500212static const u32 vga_control_regs[6] =
213{
214 AVIVO_D1VGA_CONTROL,
215 AVIVO_D2VGA_CONTROL,
216 EVERGREEN_D3VGA_CONTROL,
217 EVERGREEN_D4VGA_CONTROL,
218 EVERGREEN_D5VGA_CONTROL,
219 EVERGREEN_D6VGA_CONTROL,
220};
221
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200222static void atombios_blank_crtc(struct drm_crtc *crtc, int state)
223{
224 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
225 struct drm_device *dev = crtc->dev;
226 struct radeon_device *rdev = dev->dev_private;
227 int index = GetIndexIntoMasterTable(COMMAND, BlankCRTC);
228 BLANK_CRTC_PS_ALLOCATION args;
Alex Deucher78fe9e52014-01-28 23:49:37 -0500229 u32 vga_control = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200230
231 memset(&args, 0, sizeof(args));
232
Alex Deucher78fe9e52014-01-28 23:49:37 -0500233 if (ASIC_IS_DCE8(rdev)) {
234 vga_control = RREG32(vga_control_regs[radeon_crtc->crtc_id]);
235 WREG32(vga_control_regs[radeon_crtc->crtc_id], vga_control | 1);
236 }
237
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200238 args.ucCRTC = radeon_crtc->crtc_id;
239 args.ucBlanking = state;
240
241 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Alex Deucher78fe9e52014-01-28 23:49:37 -0500242
243 if (ASIC_IS_DCE8(rdev)) {
244 WREG32(vga_control_regs[radeon_crtc->crtc_id], vga_control);
245 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200246}
247
Alex Deucherfef9f912012-03-20 17:18:03 -0400248static void atombios_powergate_crtc(struct drm_crtc *crtc, int state)
249{
250 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
251 struct drm_device *dev = crtc->dev;
252 struct radeon_device *rdev = dev->dev_private;
253 int index = GetIndexIntoMasterTable(COMMAND, EnableDispPowerGating);
254 ENABLE_DISP_POWER_GATING_PARAMETERS_V2_1 args;
255
256 memset(&args, 0, sizeof(args));
257
258 args.ucDispPipeId = radeon_crtc->crtc_id;
259 args.ucEnable = state;
260
261 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
262}
263
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200264void atombios_crtc_dpms(struct drm_crtc *crtc, int mode)
265{
266 struct drm_device *dev = crtc->dev;
267 struct radeon_device *rdev = dev->dev_private;
Alex Deucher500b7582009-12-02 11:46:52 -0500268 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200269
270 switch (mode) {
271 case DRM_MODE_DPMS_ON:
Alex Deucherd7311172010-05-03 01:13:14 -0400272 radeon_crtc->enabled = true;
Alex Deucher37b43902010-02-09 12:04:43 -0500273 atombios_enable_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400274 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500275 atombios_enable_crtc_memreq(crtc, ATOM_ENABLE);
276 atombios_blank_crtc(crtc, ATOM_DISABLE);
Alex Deucher45f9a392010-03-24 13:55:51 -0400277 drm_vblank_post_modeset(dev, radeon_crtc->crtc_id);
Alex Deucher500b7582009-12-02 11:46:52 -0500278 radeon_crtc_load_lut(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200279 break;
280 case DRM_MODE_DPMS_STANDBY:
281 case DRM_MODE_DPMS_SUSPEND:
282 case DRM_MODE_DPMS_OFF:
Alex Deucher45f9a392010-03-24 13:55:51 -0400283 drm_vblank_pre_modeset(dev, radeon_crtc->crtc_id);
Alex Deuchera93f3442010-12-20 11:22:29 -0500284 if (radeon_crtc->enabled)
285 atombios_blank_crtc(crtc, ATOM_ENABLE);
Alex Deucher79f17c62012-03-20 17:18:02 -0400286 if (ASIC_IS_DCE3(rdev) && !ASIC_IS_DCE6(rdev))
Alex Deucher37b43902010-02-09 12:04:43 -0500287 atombios_enable_crtc_memreq(crtc, ATOM_DISABLE);
288 atombios_enable_crtc(crtc, ATOM_DISABLE);
Alex Deuchera48b9b42010-04-22 14:03:55 -0400289 radeon_crtc->enabled = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200290 break;
291 }
Alex Deucher3640da22014-05-30 12:40:15 -0400292 /* adjust pm to dpms */
293 radeon_pm_compute_clocks(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200294}
295
296static void
297atombios_set_crtc_dtd_timing(struct drm_crtc *crtc,
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400298 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200299{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400300 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200301 struct drm_device *dev = crtc->dev;
302 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400303 SET_CRTC_USING_DTD_TIMING_PARAMETERS args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200304 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400305 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200306
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400307 memset(&args, 0, sizeof(args));
Alex Deucher5b1714d2010-08-03 19:59:20 -0400308 args.usH_Size = cpu_to_le16(mode->crtc_hdisplay - (radeon_crtc->h_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400309 args.usH_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400310 cpu_to_le16(mode->crtc_hblank_end - mode->crtc_hdisplay + (radeon_crtc->h_border * 2));
311 args.usV_Size = cpu_to_le16(mode->crtc_vdisplay - (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400312 args.usV_Blanking_Time =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400313 cpu_to_le16(mode->crtc_vblank_end - mode->crtc_vdisplay + (radeon_crtc->v_border * 2));
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400314 args.usH_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400315 cpu_to_le16(mode->crtc_hsync_start - mode->crtc_hdisplay + radeon_crtc->h_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400316 args.usH_SyncWidth =
317 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
318 args.usV_SyncOffset =
Alex Deucher5b1714d2010-08-03 19:59:20 -0400319 cpu_to_le16(mode->crtc_vsync_start - mode->crtc_vdisplay + radeon_crtc->v_border);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400320 args.usV_SyncWidth =
321 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
Alex Deucher5b1714d2010-08-03 19:59:20 -0400322 args.ucH_Border = radeon_crtc->h_border;
323 args.ucV_Border = radeon_crtc->v_border;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400324
325 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
326 misc |= ATOM_VSYNC_POLARITY;
327 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
328 misc |= ATOM_HSYNC_POLARITY;
329 if (mode->flags & DRM_MODE_FLAG_CSYNC)
330 misc |= ATOM_COMPOSITESYNC;
331 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
332 misc |= ATOM_INTERLACE;
333 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
334 misc |= ATOM_DOUBLE_CLOCK_MODE;
335
336 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
337 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200338
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400339 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200340}
341
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400342static void atombios_crtc_set_timing(struct drm_crtc *crtc,
343 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200344{
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400345 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200346 struct drm_device *dev = crtc->dev;
347 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400348 SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200349 int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing);
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400350 u16 misc = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200351
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400352 memset(&args, 0, sizeof(args));
353 args.usH_Total = cpu_to_le16(mode->crtc_htotal);
354 args.usH_Disp = cpu_to_le16(mode->crtc_hdisplay);
355 args.usH_SyncStart = cpu_to_le16(mode->crtc_hsync_start);
356 args.usH_SyncWidth =
357 cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start);
358 args.usV_Total = cpu_to_le16(mode->crtc_vtotal);
359 args.usV_Disp = cpu_to_le16(mode->crtc_vdisplay);
360 args.usV_SyncStart = cpu_to_le16(mode->crtc_vsync_start);
361 args.usV_SyncWidth =
362 cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start);
363
Alex Deucher54bfe492010-09-03 15:52:53 -0400364 args.ucOverscanRight = radeon_crtc->h_border;
365 args.ucOverscanLeft = radeon_crtc->h_border;
366 args.ucOverscanBottom = radeon_crtc->v_border;
367 args.ucOverscanTop = radeon_crtc->v_border;
368
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400369 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
370 misc |= ATOM_VSYNC_POLARITY;
371 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
372 misc |= ATOM_HSYNC_POLARITY;
373 if (mode->flags & DRM_MODE_FLAG_CSYNC)
374 misc |= ATOM_COMPOSITESYNC;
375 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
376 misc |= ATOM_INTERLACE;
377 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
378 misc |= ATOM_DOUBLE_CLOCK_MODE;
379
380 args.susModeMiscInfo.usAccess = cpu_to_le16(misc);
381 args.ucCRTC = radeon_crtc->crtc_id;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200382
Alex Deucher5a9bcac2009-10-08 15:09:31 -0400383 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200384}
385
Alex Deucher3fa47d92012-01-20 14:56:39 -0500386static void atombios_disable_ss(struct radeon_device *rdev, int pll_id)
Alex Deucherb7922102010-03-06 10:57:30 -0500387{
Alex Deucherb7922102010-03-06 10:57:30 -0500388 u32 ss_cntl;
389
390 if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500391 switch (pll_id) {
Alex Deucherb7922102010-03-06 10:57:30 -0500392 case ATOM_PPLL1:
393 ss_cntl = RREG32(EVERGREEN_P1PLL_SS_CNTL);
394 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
395 WREG32(EVERGREEN_P1PLL_SS_CNTL, ss_cntl);
396 break;
397 case ATOM_PPLL2:
398 ss_cntl = RREG32(EVERGREEN_P2PLL_SS_CNTL);
399 ss_cntl &= ~EVERGREEN_PxPLL_SS_EN;
400 WREG32(EVERGREEN_P2PLL_SS_CNTL, ss_cntl);
401 break;
402 case ATOM_DCPLL:
403 case ATOM_PPLL_INVALID:
404 return;
405 }
406 } else if (ASIC_IS_AVIVO(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500407 switch (pll_id) {
Alex Deucherb7922102010-03-06 10:57:30 -0500408 case ATOM_PPLL1:
409 ss_cntl = RREG32(AVIVO_P1PLL_INT_SS_CNTL);
410 ss_cntl &= ~1;
411 WREG32(AVIVO_P1PLL_INT_SS_CNTL, ss_cntl);
412 break;
413 case ATOM_PPLL2:
414 ss_cntl = RREG32(AVIVO_P2PLL_INT_SS_CNTL);
415 ss_cntl &= ~1;
416 WREG32(AVIVO_P2PLL_INT_SS_CNTL, ss_cntl);
417 break;
418 case ATOM_DCPLL:
419 case ATOM_PPLL_INVALID:
420 return;
421 }
422 }
423}
424
425
Alex Deucher26b9fc32010-02-01 16:39:11 -0500426union atom_enable_ss {
Alex Deucherba032a52010-10-04 17:13:01 -0400427 ENABLE_LVDS_SS_PARAMETERS lvds_ss;
428 ENABLE_LVDS_SS_PARAMETERS_V2 lvds_ss_2;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500429 ENABLE_SPREAD_SPECTRUM_ON_PPLL_PS_ALLOCATION v1;
Alex Deucherba032a52010-10-04 17:13:01 -0400430 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V2 v2;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500431 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V3 v3;
Alex Deucher26b9fc32010-02-01 16:39:11 -0500432};
433
Alex Deucher3fa47d92012-01-20 14:56:39 -0500434static void atombios_crtc_program_ss(struct radeon_device *rdev,
Alex Deucherba032a52010-10-04 17:13:01 -0400435 int enable,
436 int pll_id,
Jerome Glisse5efcc762012-08-17 14:40:04 -0400437 int crtc_id,
Alex Deucherba032a52010-10-04 17:13:01 -0400438 struct radeon_atom_ss *ss)
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400439{
Jerome Glisse5efcc762012-08-17 14:40:04 -0400440 unsigned i;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400441 int index = GetIndexIntoMasterTable(COMMAND, EnableSpreadSpectrumOnPPLL);
Alex Deucher26b9fc32010-02-01 16:39:11 -0500442 union atom_enable_ss args;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400443
Alex Deucherc4756ba2014-01-15 13:59:47 -0500444 if (enable) {
445 /* Don't mess with SS if percentage is 0 or external ss.
446 * SS is already disabled previously, and disabling it
447 * again can cause display problems if the pll is already
448 * programmed.
449 */
450 if (ss->percentage == 0)
451 return;
452 if (ss->type & ATOM_EXTERNAL_SS_MASK)
453 return;
454 } else {
Alex Deucher53176702012-08-21 18:52:56 -0400455 for (i = 0; i < rdev->num_crtc; i++) {
Jerome Glisse5efcc762012-08-17 14:40:04 -0400456 if (rdev->mode_info.crtcs[i] &&
457 rdev->mode_info.crtcs[i]->enabled &&
458 i != crtc_id &&
459 pll_id == rdev->mode_info.crtcs[i]->pll_id) {
460 /* one other crtc is using this pll don't turn
461 * off spread spectrum as it might turn off
462 * display on active crtc
463 */
464 return;
465 }
466 }
467 }
468
Alex Deucher26b9fc32010-02-01 16:39:11 -0500469 memset(&args, 0, sizeof(args));
Alex Deucherba032a52010-10-04 17:13:01 -0400470
Alex Deuchera572eaa2011-01-06 21:19:16 -0500471 if (ASIC_IS_DCE5(rdev)) {
Cédric Cano45894332011-02-11 19:45:37 -0500472 args.v3.usSpreadSpectrumAmountFrac = cpu_to_le16(0);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400473 args.v3.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500474 switch (pll_id) {
475 case ATOM_PPLL1:
476 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P1PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500477 break;
478 case ATOM_PPLL2:
479 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_P2PLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500480 break;
481 case ATOM_DCPLL:
482 args.v3.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V3_DCPLL;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500483 break;
484 case ATOM_PPLL_INVALID:
485 return;
486 }
Alex Deucherf312f092012-07-17 14:02:44 -0400487 args.v3.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
488 args.v3.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherd0ae3e82011-05-23 14:06:20 -0400489 args.v3.ucEnable = enable;
Alex Deuchera572eaa2011-01-06 21:19:16 -0500490 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucherba032a52010-10-04 17:13:01 -0400491 args.v2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400492 args.v2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400493 switch (pll_id) {
494 case ATOM_PPLL1:
495 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P1PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400496 break;
497 case ATOM_PPLL2:
498 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_P2PLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400499 break;
500 case ATOM_DCPLL:
501 args.v2.ucSpreadSpectrumType |= ATOM_PPLL_SS_TYPE_V2_DCPLL;
Alex Deucherba032a52010-10-04 17:13:01 -0400502 break;
503 case ATOM_PPLL_INVALID:
504 return;
505 }
Alex Deucherf312f092012-07-17 14:02:44 -0400506 args.v2.usSpreadSpectrumAmount = cpu_to_le16(ss->amount);
507 args.v2.usSpreadSpectrumStep = cpu_to_le16(ss->step);
Alex Deucherba032a52010-10-04 17:13:01 -0400508 args.v2.ucEnable = enable;
509 } else if (ASIC_IS_DCE3(rdev)) {
510 args.v1.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400511 args.v1.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400512 args.v1.ucSpreadSpectrumStep = ss->step;
513 args.v1.ucSpreadSpectrumDelay = ss->delay;
514 args.v1.ucSpreadSpectrumRange = ss->range;
515 args.v1.ucPpll = pll_id;
516 args.v1.ucEnable = enable;
517 } else if (ASIC_IS_AVIVO(rdev)) {
Alex Deucher8e8e5232011-05-20 04:34:16 -0400518 if ((enable == ATOM_DISABLE) || (ss->percentage == 0) ||
519 (ss->type & ATOM_EXTERNAL_SS_MASK)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500520 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400521 return;
522 }
523 args.lvds_ss_2.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400524 args.lvds_ss_2.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400525 args.lvds_ss_2.ucSpreadSpectrumStep = ss->step;
526 args.lvds_ss_2.ucSpreadSpectrumDelay = ss->delay;
527 args.lvds_ss_2.ucSpreadSpectrumRange = ss->range;
528 args.lvds_ss_2.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400529 } else {
Alex Deucherc4756ba2014-01-15 13:59:47 -0500530 if (enable == ATOM_DISABLE) {
Alex Deucher3fa47d92012-01-20 14:56:39 -0500531 atombios_disable_ss(rdev, pll_id);
Alex Deucherba032a52010-10-04 17:13:01 -0400532 return;
533 }
534 args.lvds_ss.usSpreadSpectrumPercentage = cpu_to_le16(ss->percentage);
Alex Deucher8e8e5232011-05-20 04:34:16 -0400535 args.lvds_ss.ucSpreadSpectrumType = ss->type & ATOM_SS_CENTRE_SPREAD_MODE_MASK;
Alex Deucherba032a52010-10-04 17:13:01 -0400536 args.lvds_ss.ucSpreadSpectrumStepSize_Delay = (ss->step & 3) << 2;
537 args.lvds_ss.ucSpreadSpectrumStepSize_Delay |= (ss->delay & 7) << 4;
538 args.lvds_ss.ucEnable = enable;
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400539 }
Alex Deucher26b9fc32010-02-01 16:39:11 -0500540 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
Alex Deucherebbe1cb2009-10-16 11:15:25 -0400541}
542
Alex Deucher4eaeca32010-01-19 17:32:27 -0500543union adjust_pixel_clock {
544 ADJUST_DISPLAY_PLL_PS_ALLOCATION v1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500545 ADJUST_DISPLAY_PLL_PS_ALLOCATION_V3 v3;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500546};
547
548static u32 atombios_adjust_pll(struct drm_crtc *crtc,
Alex Deucher19eca432012-09-13 10:56:16 -0400549 struct drm_display_mode *mode)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200550{
Alex Deucher19eca432012-09-13 10:56:16 -0400551 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200552 struct drm_device *dev = crtc->dev;
553 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400554 struct drm_encoder *encoder = radeon_crtc->encoder;
555 struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder);
556 struct drm_connector *connector = radeon_get_connector_for_encoder(encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500557 u32 adjusted_clock = mode->clock;
Alex Deucher5df31962012-09-13 11:52:08 -0400558 int encoder_mode = atombios_get_encoder_mode(encoder);
Alex Deucherfbee67a2010-08-16 12:44:47 -0400559 u32 dp_clock = mode->clock;
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400560 u32 clock = mode->clock;
Alex Deucher7d5a33b2014-02-03 15:53:25 -0500561 int bpc = radeon_crtc->bpc;
Alex Deucher5df31962012-09-13 11:52:08 -0400562 bool is_duallink = radeon_dig_monitor_is_duallink(encoder, mode->clock);
Alex Deucherfc103322010-01-19 17:16:10 -0500563
Alex Deucher4eaeca32010-01-19 17:32:27 -0500564 /* reset the pll flags */
Alex Deucher19eca432012-09-13 10:56:16 -0400565 radeon_crtc->pll_flags = 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200566
567 if (ASIC_IS_AVIVO(rdev)) {
Alex Deuchereb1300b2009-07-13 11:09:56 -0400568 if ((rdev->family == CHIP_RS600) ||
569 (rdev->family == CHIP_RS690) ||
570 (rdev->family == CHIP_RS740))
Alex Deucher19eca432012-09-13 10:56:16 -0400571 radeon_crtc->pll_flags |= (/*RADEON_PLL_USE_FRAC_FB_DIV |*/
572 RADEON_PLL_PREFER_CLOSEST_LOWER);
Dave Airlie5480f722010-10-19 10:36:47 +1000573
574 if (ASIC_IS_DCE32(rdev) && mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400575 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000576 else
Alex Deucher19eca432012-09-13 10:56:16 -0400577 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Alex Deucher9bb09fa2011-04-07 10:31:25 -0400578
Alex Deucher5785e532011-04-19 15:24:59 -0400579 if (rdev->family < CHIP_RV770)
Alex Deucher19eca432012-09-13 10:56:16 -0400580 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_MINM_OVER_MAXP;
Alex Deucher37d41742012-04-19 10:48:38 -0400581 /* use frac fb div on APUs */
Alex Deucherc7d2f222012-12-18 22:11:51 -0500582 if (ASIC_IS_DCE41(rdev) || ASIC_IS_DCE61(rdev) || ASIC_IS_DCE8(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -0400583 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Alex Deucher41167822013-04-01 16:06:25 -0400584 /* use frac fb div on RS780/RS880 */
585 if ((rdev->family == CHIP_RS780) || (rdev->family == CHIP_RS880))
586 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Alex Deuchera02dc742012-11-13 18:03:41 -0500587 if (ASIC_IS_DCE32(rdev) && mode->clock > 165000)
588 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000589 } else {
Alex Deucher19eca432012-09-13 10:56:16 -0400590 radeon_crtc->pll_flags |= RADEON_PLL_LEGACY;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200591
Dave Airlie5480f722010-10-19 10:36:47 +1000592 if (mode->clock > 200000) /* range limits??? */
Alex Deucher19eca432012-09-13 10:56:16 -0400593 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000594 else
Alex Deucher19eca432012-09-13 10:56:16 -0400595 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV;
Dave Airlie5480f722010-10-19 10:36:47 +1000596 }
597
Alex Deucher5df31962012-09-13 11:52:08 -0400598 if ((radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
599 (radeon_encoder_get_dp_bridge_encoder_id(encoder) != ENCODER_OBJECT_ID_NONE)) {
600 if (connector) {
601 struct radeon_connector *radeon_connector = to_radeon_connector(connector);
602 struct radeon_connector_atom_dig *dig_connector =
603 radeon_connector->con_priv;
Alex Deucherfbee67a2010-08-16 12:44:47 -0400604
Alex Deucher5df31962012-09-13 11:52:08 -0400605 dp_clock = dig_connector->dp_clock;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200606 }
607 }
608
Alex Deucher5df31962012-09-13 11:52:08 -0400609 /* use recommended ref_div for ss */
610 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) {
611 if (radeon_crtc->ss_enabled) {
612 if (radeon_crtc->ss.refdiv) {
613 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
614 radeon_crtc->pll_reference_div = radeon_crtc->ss.refdiv;
615 if (ASIC_IS_AVIVO(rdev))
616 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
617 }
618 }
619 }
620
621 if (ASIC_IS_AVIVO(rdev)) {
622 /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */
623 if (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1)
624 adjusted_clock = mode->clock * 2;
625 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
626 radeon_crtc->pll_flags |= RADEON_PLL_PREFER_CLOSEST_LOWER;
627 if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT))
628 radeon_crtc->pll_flags |= RADEON_PLL_IS_LCD;
629 } else {
630 if (encoder->encoder_type != DRM_MODE_ENCODER_DAC)
631 radeon_crtc->pll_flags |= RADEON_PLL_NO_ODD_POST_DIV;
632 if (encoder->encoder_type == DRM_MODE_ENCODER_LVDS)
633 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
634 }
635
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400636 /* adjust pll for deep color modes */
637 if (encoder_mode == ATOM_ENCODER_MODE_HDMI) {
638 switch (bpc) {
639 case 8:
640 default:
641 break;
642 case 10:
643 clock = (clock * 5) / 4;
644 break;
645 case 12:
646 clock = (clock * 3) / 2;
647 break;
648 case 16:
649 clock = clock * 2;
650 break;
651 }
652 }
653
Alex Deucher2606c882009-10-08 13:36:21 -0400654 /* DCE3+ has an AdjustDisplayPll that will adjust the pixel clock
655 * accordingly based on the encoder/transmitter to work around
656 * special hw requirements.
657 */
658 if (ASIC_IS_DCE3(rdev)) {
Alex Deucher4eaeca32010-01-19 17:32:27 -0500659 union adjust_pixel_clock args;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500660 u8 frev, crev;
661 int index;
Alex Deucher2606c882009-10-08 13:36:21 -0400662
Alex Deucher2606c882009-10-08 13:36:21 -0400663 index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400664 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
665 &crev))
666 return adjusted_clock;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500667
668 memset(&args, 0, sizeof(args));
669
670 switch (frev) {
671 case 1:
672 switch (crev) {
673 case 1:
674 case 2:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400675 args.v1.usPixelClock = cpu_to_le16(clock / 10);
Alex Deucher4eaeca32010-01-19 17:32:27 -0500676 args.v1.ucTransmitterID = radeon_encoder->encoder_id;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500677 args.v1.ucEncodeMode = encoder_mode;
Alex Deucher19eca432012-09-13 10:56:16 -0400678 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherfbee67a2010-08-16 12:44:47 -0400679 args.v1.ucConfig |=
680 ADJUST_DISPLAY_CONFIG_SS_ENABLE;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500681
682 atom_execute_table(rdev->mode_info.atom_context,
683 index, (uint32_t *)&args);
684 adjusted_clock = le16_to_cpu(args.v1.usPixelClock) * 10;
685 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500686 case 3:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400687 args.v3.sInput.usPixelClock = cpu_to_le16(clock / 10);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500688 args.v3.sInput.ucTransmitterID = radeon_encoder->encoder_id;
689 args.v3.sInput.ucEncodeMode = encoder_mode;
690 args.v3.sInput.ucDispPllConfig = 0;
Alex Deucher19eca432012-09-13 10:56:16 -0400691 if (radeon_crtc->ss_enabled && radeon_crtc->ss.percentage)
Alex Deucherb526ce22011-01-20 23:35:58 +0000692 args.v3.sInput.ucDispPllConfig |=
693 DISPPLL_CONFIG_SS_ENABLE;
Alex Deucher996d5c52011-10-26 15:59:50 -0400694 if (ENCODER_MODE_IS_DP(encoder_mode)) {
Alex Deucherb4f15f82011-10-25 11:34:51 -0400695 args.v3.sInput.ucDispPllConfig |=
696 DISPPLL_CONFIG_COHERENT_MODE;
697 /* 16200 or 27000 */
698 args.v3.sInput.usPixelClock = cpu_to_le16(dp_clock / 10);
699 } else if (radeon_encoder->devices & (ATOM_DEVICE_DFP_SUPPORT)) {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500700 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
Alex Deucherb4f15f82011-10-25 11:34:51 -0400701 if (dig->coherent_mode)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500702 args.v3.sInput.ucDispPllConfig |=
703 DISPPLL_CONFIG_COHERENT_MODE;
Alex Deucher9aa59992012-01-20 15:03:30 -0500704 if (is_duallink)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500705 args.v3.sInput.ucDispPllConfig |=
Alex Deucherb4f15f82011-10-25 11:34:51 -0400706 DISPPLL_CONFIG_DUAL_LINK;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500707 }
Alex Deucher1d33e1f2011-10-31 08:58:47 -0400708 if (radeon_encoder_get_dp_bridge_encoder_id(encoder) !=
709 ENCODER_OBJECT_ID_NONE)
710 args.v3.sInput.ucExtTransmitterID =
711 radeon_encoder_get_dp_bridge_encoder_id(encoder);
712 else
Alex Deuchercc9f67a2011-06-16 10:06:16 -0400713 args.v3.sInput.ucExtTransmitterID = 0;
714
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500715 atom_execute_table(rdev->mode_info.atom_context,
716 index, (uint32_t *)&args);
717 adjusted_clock = le32_to_cpu(args.v3.sOutput.ulDispPllFreq) * 10;
718 if (args.v3.sOutput.ucRefDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400719 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
720 radeon_crtc->pll_flags |= RADEON_PLL_USE_REF_DIV;
721 radeon_crtc->pll_reference_div = args.v3.sOutput.ucRefDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500722 }
723 if (args.v3.sOutput.ucPostDiv) {
Alex Deucher19eca432012-09-13 10:56:16 -0400724 radeon_crtc->pll_flags |= RADEON_PLL_USE_FRAC_FB_DIV;
725 radeon_crtc->pll_flags |= RADEON_PLL_USE_POST_DIV;
726 radeon_crtc->pll_post_div = args.v3.sOutput.ucPostDiv;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500727 }
728 break;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500729 default:
730 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
731 return adjusted_clock;
732 }
733 break;
734 default:
735 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
736 return adjusted_clock;
737 }
Alex Deucherd56ef9c2009-10-27 12:11:09 -0400738 }
Alex Deucher4eaeca32010-01-19 17:32:27 -0500739 return adjusted_clock;
740}
741
742union set_pixel_clock {
743 SET_PIXEL_CLOCK_PS_ALLOCATION base;
744 PIXEL_CLOCK_PARAMETERS v1;
745 PIXEL_CLOCK_PARAMETERS_V2 v2;
746 PIXEL_CLOCK_PARAMETERS_V3 v3;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500747 PIXEL_CLOCK_PARAMETERS_V5 v5;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500748 PIXEL_CLOCK_PARAMETERS_V6 v6;
Alex Deucher4eaeca32010-01-19 17:32:27 -0500749};
750
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500751/* on DCE5, make sure the voltage is high enough to support the
752 * required disp clk.
753 */
Alex Deucherf3f1f032012-03-20 17:18:04 -0400754static void atombios_crtc_set_disp_eng_pll(struct radeon_device *rdev,
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500755 u32 dispclk)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500756{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500757 u8 frev, crev;
758 int index;
759 union set_pixel_clock args;
760
761 memset(&args, 0, sizeof(args));
762
763 index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
Alex Deuchera084e6e2010-03-18 01:04:01 -0400764 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
765 &crev))
766 return;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500767
768 switch (frev) {
769 case 1:
770 switch (crev) {
771 case 5:
772 /* if the default dcpll clock is specified,
773 * SetPixelClock provides the dividers
774 */
775 args.v5.ucCRTC = ATOM_CRTC_INVALID;
Cédric Cano45894332011-02-11 19:45:37 -0500776 args.v5.usPixelClock = cpu_to_le16(dispclk);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500777 args.v5.ucPpll = ATOM_DCPLL;
778 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500779 case 6:
780 /* if the default dcpll clock is specified,
781 * SetPixelClock provides the dividers
782 */
Alex Deucher265aa6c2011-02-14 16:16:22 -0500783 args.v6.ulDispEngClkFreq = cpu_to_le32(dispclk);
Alex Deucher8542c122012-07-13 11:04:37 -0400784 if (ASIC_IS_DCE61(rdev) || ASIC_IS_DCE8(rdev))
Alex Deucher729b95e2012-03-20 17:18:31 -0400785 args.v6.ucPpll = ATOM_EXT_PLL1;
786 else if (ASIC_IS_DCE6(rdev))
Alex Deucherf3f1f032012-03-20 17:18:04 -0400787 args.v6.ucPpll = ATOM_PPLL0;
788 else
789 args.v6.ucPpll = ATOM_DCPLL;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500790 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500791 default:
792 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
793 return;
794 }
795 break;
796 default:
797 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
798 return;
799 }
800 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
801}
802
Alex Deucher37f90032010-06-11 17:58:38 -0400803static void atombios_crtc_program_pll(struct drm_crtc *crtc,
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000804 u32 crtc_id,
Alex Deucher37f90032010-06-11 17:58:38 -0400805 int pll_id,
806 u32 encoder_mode,
807 u32 encoder_id,
808 u32 clock,
809 u32 ref_div,
810 u32 fb_div,
811 u32 frac_fb_div,
Alex Deucherdf271be2011-05-20 04:34:15 -0400812 u32 post_div,
Alex Deucher8e8e5232011-05-20 04:34:16 -0400813 int bpc,
814 bool ss_enabled,
815 struct radeon_atom_ss *ss)
Alex Deucher37f90032010-06-11 17:58:38 -0400816{
817 struct drm_device *dev = crtc->dev;
818 struct radeon_device *rdev = dev->dev_private;
819 u8 frev, crev;
820 int index = GetIndexIntoMasterTable(COMMAND, SetPixelClock);
821 union set_pixel_clock args;
822
823 memset(&args, 0, sizeof(args));
824
825 if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev,
826 &crev))
827 return;
828
829 switch (frev) {
830 case 1:
831 switch (crev) {
832 case 1:
833 if (clock == ATOM_DISABLE)
834 return;
835 args.v1.usPixelClock = cpu_to_le16(clock / 10);
836 args.v1.usRefDiv = cpu_to_le16(ref_div);
837 args.v1.usFbDiv = cpu_to_le16(fb_div);
838 args.v1.ucFracFbDiv = frac_fb_div;
839 args.v1.ucPostDiv = post_div;
840 args.v1.ucPpll = pll_id;
841 args.v1.ucCRTC = crtc_id;
842 args.v1.ucRefDivSrc = 1;
843 break;
844 case 2:
845 args.v2.usPixelClock = cpu_to_le16(clock / 10);
846 args.v2.usRefDiv = cpu_to_le16(ref_div);
847 args.v2.usFbDiv = cpu_to_le16(fb_div);
848 args.v2.ucFracFbDiv = frac_fb_div;
849 args.v2.ucPostDiv = post_div;
850 args.v2.ucPpll = pll_id;
851 args.v2.ucCRTC = crtc_id;
852 args.v2.ucRefDivSrc = 1;
853 break;
854 case 3:
855 args.v3.usPixelClock = cpu_to_le16(clock / 10);
856 args.v3.usRefDiv = cpu_to_le16(ref_div);
857 args.v3.usFbDiv = cpu_to_le16(fb_div);
858 args.v3.ucFracFbDiv = frac_fb_div;
859 args.v3.ucPostDiv = post_div;
860 args.v3.ucPpll = pll_id;
Alex Deuchere7295862012-09-12 17:58:07 -0400861 if (crtc_id == ATOM_CRTC2)
862 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC2;
863 else
864 args.v3.ucMiscInfo = PIXEL_CLOCK_MISC_CRTC_SEL_CRTC1;
Alex Deucher6f15c502011-05-20 12:36:12 -0400865 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
866 args.v3.ucMiscInfo |= PIXEL_CLOCK_MISC_REF_DIV_SRC;
Alex Deucher37f90032010-06-11 17:58:38 -0400867 args.v3.ucTransmitterId = encoder_id;
868 args.v3.ucEncoderMode = encoder_mode;
869 break;
870 case 5:
871 args.v5.ucCRTC = crtc_id;
872 args.v5.usPixelClock = cpu_to_le16(clock / 10);
873 args.v5.ucRefDiv = ref_div;
874 args.v5.usFbDiv = cpu_to_le16(fb_div);
875 args.v5.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
876 args.v5.ucPostDiv = post_div;
877 args.v5.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400878 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
879 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_REF_DIV_SRC;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400880 if (encoder_mode == ATOM_ENCODER_MODE_HDMI) {
881 switch (bpc) {
882 case 8:
883 default:
884 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_24BPP;
885 break;
886 case 10:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400887 /* yes this is correct, the atom define is wrong */
888 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_32BPP;
889 break;
890 case 12:
891 /* yes this is correct, the atom define is wrong */
Alex Deucher7d5ab302014-04-21 21:45:09 -0400892 args.v5.ucMiscInfo |= PIXEL_CLOCK_V5_MISC_HDMI_30BPP;
893 break;
894 }
Alex Deucherdf271be2011-05-20 04:34:15 -0400895 }
Alex Deucher37f90032010-06-11 17:58:38 -0400896 args.v5.ucTransmitterID = encoder_id;
897 args.v5.ucEncoderMode = encoder_mode;
898 args.v5.ucPpll = pll_id;
899 break;
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500900 case 6:
Benjamin Herrenschmidtf1bece72011-07-13 16:28:15 +1000901 args.v6.ulDispEngClkFreq = cpu_to_le32(crtc_id << 24 | clock / 10);
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500902 args.v6.ucRefDiv = ref_div;
903 args.v6.usFbDiv = cpu_to_le16(fb_div);
904 args.v6.ulFbDivDecFrac = cpu_to_le32(frac_fb_div * 100000);
905 args.v6.ucPostDiv = post_div;
906 args.v6.ucMiscInfo = 0; /* HDMI depth, etc. */
Alex Deucher8e8e5232011-05-20 04:34:16 -0400907 if (ss_enabled && (ss->type & ATOM_EXTERNAL_SS_MASK))
908 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_REF_DIV_SRC;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400909 if (encoder_mode == ATOM_ENCODER_MODE_HDMI) {
910 switch (bpc) {
911 case 8:
912 default:
913 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_24BPP;
914 break;
915 case 10:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400916 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_30BPP_V6;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400917 break;
918 case 12:
Alex Deucherf71d9eb2014-04-21 22:09:19 -0400919 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_36BPP_V6;
Alex Deucher7d5ab302014-04-21 21:45:09 -0400920 break;
921 case 16:
922 args.v6.ucMiscInfo |= PIXEL_CLOCK_V6_MISC_HDMI_48BPP;
923 break;
924 }
Alex Deucherdf271be2011-05-20 04:34:15 -0400925 }
Alex Deucherf82b3dd2011-01-06 21:19:15 -0500926 args.v6.ucTransmitterID = encoder_id;
927 args.v6.ucEncoderMode = encoder_mode;
928 args.v6.ucPpll = pll_id;
929 break;
Alex Deucher37f90032010-06-11 17:58:38 -0400930 default:
931 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
932 return;
933 }
934 break;
935 default:
936 DRM_ERROR("Unknown table version %d %d\n", frev, crev);
937 return;
938 }
939
940 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args);
941}
942
Alex Deucher19eca432012-09-13 10:56:16 -0400943static bool atombios_crtc_prepare_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
944{
945 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
946 struct drm_device *dev = crtc->dev;
947 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -0400948 struct radeon_encoder *radeon_encoder =
949 to_radeon_encoder(radeon_crtc->encoder);
950 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400951
952 radeon_crtc->bpc = 8;
953 radeon_crtc->ss_enabled = false;
954
Alex Deucher19eca432012-09-13 10:56:16 -0400955 if ((radeon_encoder->active_device & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) ||
Alex Deucher5df31962012-09-13 11:52:08 -0400956 (radeon_encoder_get_dp_bridge_encoder_id(radeon_crtc->encoder) != ENCODER_OBJECT_ID_NONE)) {
Alex Deucher19eca432012-09-13 10:56:16 -0400957 struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv;
958 struct drm_connector *connector =
Alex Deucher5df31962012-09-13 11:52:08 -0400959 radeon_get_connector_for_encoder(radeon_crtc->encoder);
Alex Deucher19eca432012-09-13 10:56:16 -0400960 struct radeon_connector *radeon_connector =
961 to_radeon_connector(connector);
962 struct radeon_connector_atom_dig *dig_connector =
963 radeon_connector->con_priv;
964 int dp_clock;
Mario Kleinerea292862014-06-05 09:58:24 -0400965
966 /* Assign mode clock for hdmi deep color max clock limit check */
967 radeon_connector->pixelclock_for_modeset = mode->clock;
Alex Deucher19eca432012-09-13 10:56:16 -0400968 radeon_crtc->bpc = radeon_get_monitor_bpc(connector);
969
970 switch (encoder_mode) {
971 case ATOM_ENCODER_MODE_DP_MST:
972 case ATOM_ENCODER_MODE_DP:
973 /* DP/eDP */
974 dp_clock = dig_connector->dp_clock / 10;
975 if (ASIC_IS_DCE4(rdev))
976 radeon_crtc->ss_enabled =
977 radeon_atombios_get_asic_ss_info(rdev, &radeon_crtc->ss,
978 ASIC_INTERNAL_SS_ON_DP,
979 dp_clock);
980 else {
981 if (dp_clock == 16200) {
982 radeon_crtc->ss_enabled =
983 radeon_atombios_get_ppll_ss_info(rdev,
984 &radeon_crtc->ss,
985 ATOM_DP_SS_ID2);
986 if (!radeon_crtc->ss_enabled)
987 radeon_crtc->ss_enabled =
988 radeon_atombios_get_ppll_ss_info(rdev,
989 &radeon_crtc->ss,
990 ATOM_DP_SS_ID1);
Alex Deucherd8e24522014-01-13 16:47:05 -0500991 } else {
Alex Deucher19eca432012-09-13 10:56:16 -0400992 radeon_crtc->ss_enabled =
993 radeon_atombios_get_ppll_ss_info(rdev,
994 &radeon_crtc->ss,
995 ATOM_DP_SS_ID1);
Alex Deucherd8e24522014-01-13 16:47:05 -0500996 }
997 /* disable spread spectrum on DCE3 DP */
998 radeon_crtc->ss_enabled = false;
Alex Deucher19eca432012-09-13 10:56:16 -0400999 }
1000 break;
1001 case ATOM_ENCODER_MODE_LVDS:
1002 if (ASIC_IS_DCE4(rdev))
1003 radeon_crtc->ss_enabled =
1004 radeon_atombios_get_asic_ss_info(rdev,
1005 &radeon_crtc->ss,
1006 dig->lcd_ss_id,
1007 mode->clock / 10);
1008 else
1009 radeon_crtc->ss_enabled =
1010 radeon_atombios_get_ppll_ss_info(rdev,
1011 &radeon_crtc->ss,
1012 dig->lcd_ss_id);
1013 break;
1014 case ATOM_ENCODER_MODE_DVI:
1015 if (ASIC_IS_DCE4(rdev))
1016 radeon_crtc->ss_enabled =
1017 radeon_atombios_get_asic_ss_info(rdev,
1018 &radeon_crtc->ss,
1019 ASIC_INTERNAL_SS_ON_TMDS,
1020 mode->clock / 10);
1021 break;
1022 case ATOM_ENCODER_MODE_HDMI:
1023 if (ASIC_IS_DCE4(rdev))
1024 radeon_crtc->ss_enabled =
1025 radeon_atombios_get_asic_ss_info(rdev,
1026 &radeon_crtc->ss,
1027 ASIC_INTERNAL_SS_ON_HDMI,
1028 mode->clock / 10);
1029 break;
1030 default:
1031 break;
1032 }
1033 }
1034
1035 /* adjust pixel clock as needed */
1036 radeon_crtc->adjusted_clock = atombios_adjust_pll(crtc, mode);
1037
1038 return true;
1039}
1040
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001041static void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode)
Alex Deucher4eaeca32010-01-19 17:32:27 -05001042{
1043 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1044 struct drm_device *dev = crtc->dev;
1045 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001046 struct radeon_encoder *radeon_encoder =
1047 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -05001048 u32 pll_clock = mode->clock;
Alex Deucherf71d9eb2014-04-21 22:09:19 -04001049 u32 clock = mode->clock;
Alex Deucher4eaeca32010-01-19 17:32:27 -05001050 u32 ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0;
1051 struct radeon_pll *pll;
Alex Deucher5df31962012-09-13 11:52:08 -04001052 int encoder_mode = atombios_get_encoder_mode(radeon_crtc->encoder);
Alex Deucher4eaeca32010-01-19 17:32:27 -05001053
Alex Deucherf71d9eb2014-04-21 22:09:19 -04001054 /* pass the actual clock to atombios_crtc_program_pll for DCE5,6 for HDMI */
1055 if (ASIC_IS_DCE5(rdev) && !ASIC_IS_DCE8(rdev) &&
1056 (encoder_mode == ATOM_ENCODER_MODE_HDMI) &&
1057 (radeon_crtc->bpc > 8))
1058 clock = radeon_crtc->adjusted_clock;
1059
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001060 switch (radeon_crtc->pll_id) {
1061 case ATOM_PPLL1:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001062 pll = &rdev->clock.p1pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001063 break;
1064 case ATOM_PPLL2:
Alex Deucher4eaeca32010-01-19 17:32:27 -05001065 pll = &rdev->clock.p2pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001066 break;
1067 case ATOM_DCPLL:
1068 case ATOM_PPLL_INVALID:
Stefan Richter921d98b2010-05-26 10:27:44 +10001069 default:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001070 pll = &rdev->clock.dcpll;
1071 break;
1072 }
Alex Deucher4eaeca32010-01-19 17:32:27 -05001073
Alex Deucher19eca432012-09-13 10:56:16 -04001074 /* update pll params */
1075 pll->flags = radeon_crtc->pll_flags;
1076 pll->reference_div = radeon_crtc->pll_reference_div;
1077 pll->post_div = radeon_crtc->pll_post_div;
Alex Deucher2606c882009-10-08 13:36:21 -04001078
Alex Deucher64146f82011-03-22 01:46:12 -04001079 if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))
1080 /* TV seems to prefer the legacy algo on some boards */
Alex Deucher19eca432012-09-13 10:56:16 -04001081 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1082 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher64146f82011-03-22 01:46:12 -04001083 else if (ASIC_IS_AVIVO(rdev))
Alex Deucher19eca432012-09-13 10:56:16 -04001084 radeon_compute_pll_avivo(pll, radeon_crtc->adjusted_clock, &pll_clock,
1085 &fb_div, &frac_fb_div, &ref_div, &post_div);
Alex Deucher619efb12011-01-31 16:48:53 -05001086 else
Alex Deucher19eca432012-09-13 10:56:16 -04001087 radeon_compute_pll_legacy(pll, radeon_crtc->adjusted_clock, &pll_clock,
1088 &fb_div, &frac_fb_div, &ref_div, &post_div);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001089
Alex Deucher19eca432012-09-13 10:56:16 -04001090 atombios_crtc_program_ss(rdev, ATOM_DISABLE, radeon_crtc->pll_id,
1091 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001092
Alex Deucher37f90032010-06-11 17:58:38 -04001093 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
Alex Deucherf71d9eb2014-04-21 22:09:19 -04001094 encoder_mode, radeon_encoder->encoder_id, clock,
Alex Deucher19eca432012-09-13 10:56:16 -04001095 ref_div, fb_div, frac_fb_div, post_div,
1096 radeon_crtc->bpc, radeon_crtc->ss_enabled, &radeon_crtc->ss);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001097
Alex Deucher19eca432012-09-13 10:56:16 -04001098 if (radeon_crtc->ss_enabled) {
Alex Deucherba032a52010-10-04 17:13:01 -04001099 /* calculate ss amount and step size */
1100 if (ASIC_IS_DCE4(rdev)) {
1101 u32 step_size;
Alex Deucher18f8f522014-01-15 13:41:31 -05001102 u32 amount = (((fb_div * 10) + frac_fb_div) *
1103 (u32)radeon_crtc->ss.percentage) /
1104 (100 * (u32)radeon_crtc->ss.percentage_divider);
Alex Deucher19eca432012-09-13 10:56:16 -04001105 radeon_crtc->ss.amount = (amount / 10) & ATOM_PPLL_SS_AMOUNT_V2_FBDIV_MASK;
1106 radeon_crtc->ss.amount |= ((amount - (amount / 10)) << ATOM_PPLL_SS_AMOUNT_V2_NFRAC_SHIFT) &
Alex Deucherba032a52010-10-04 17:13:01 -04001107 ATOM_PPLL_SS_AMOUNT_V2_NFRAC_MASK;
Alex Deucher19eca432012-09-13 10:56:16 -04001108 if (radeon_crtc->ss.type & ATOM_PPLL_SS_TYPE_V2_CENTRE_SPREAD)
Alex Deucher18f8f522014-01-15 13:41:31 -05001109 step_size = (4 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001110 (125 * 25 * pll->reference_freq / 100);
1111 else
Alex Deucher18f8f522014-01-15 13:41:31 -05001112 step_size = (2 * amount * ref_div * ((u32)radeon_crtc->ss.rate * 2048)) /
Alex Deucherba032a52010-10-04 17:13:01 -04001113 (125 * 25 * pll->reference_freq / 100);
Alex Deucher19eca432012-09-13 10:56:16 -04001114 radeon_crtc->ss.step = step_size;
Alex Deucherba032a52010-10-04 17:13:01 -04001115 }
1116
Alex Deucher19eca432012-09-13 10:56:16 -04001117 atombios_crtc_program_ss(rdev, ATOM_ENABLE, radeon_crtc->pll_id,
1118 radeon_crtc->crtc_id, &radeon_crtc->ss);
Alex Deucherba032a52010-10-04 17:13:01 -04001119 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001120}
1121
Alex Deucherc9417bd2011-02-06 14:23:26 -05001122static int dce4_crtc_do_set_base(struct drm_crtc *crtc,
1123 struct drm_framebuffer *fb,
1124 int x, int y, int atomic)
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001125{
1126 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1127 struct drm_device *dev = crtc->dev;
1128 struct radeon_device *rdev = dev->dev_private;
1129 struct radeon_framebuffer *radeon_fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001130 struct drm_framebuffer *target_fb;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001131 struct drm_gem_object *obj;
1132 struct radeon_bo *rbo;
1133 uint64_t fb_location;
1134 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Jerome Glisse285484e2011-12-16 17:03:42 -05001135 unsigned bankw, bankh, mtaspect, tile_split;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001136 u32 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_NONE);
Alex Deucheradcfde52011-05-27 10:05:03 -04001137 u32 tmp, viewport_w, viewport_h;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001138 int r;
1139
1140 /* no fb bound */
Matt Roperf4510a22014-04-01 15:22:40 -07001141 if (!atomic && !crtc->primary->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001142 DRM_DEBUG_KMS("No FB bound\n");
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001143 return 0;
1144 }
1145
Chris Ball4dd19b02010-09-26 06:47:23 -05001146 if (atomic) {
1147 radeon_fb = to_radeon_framebuffer(fb);
1148 target_fb = fb;
1149 }
1150 else {
Matt Roperf4510a22014-04-01 15:22:40 -07001151 radeon_fb = to_radeon_framebuffer(crtc->primary->fb);
1152 target_fb = crtc->primary->fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001153 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001154
Chris Ball4dd19b02010-09-26 06:47:23 -05001155 /* If atomic, assume fb object is pinned & idle & fenced and
1156 * just update base pointers
1157 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001158 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001159 rbo = gem_to_radeon_bo(obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001160 r = radeon_bo_reserve(rbo, false);
1161 if (unlikely(r != 0))
1162 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001163
1164 if (atomic)
1165 fb_location = radeon_bo_gpu_offset(rbo);
1166 else {
1167 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1168 if (unlikely(r != 0)) {
1169 radeon_bo_unreserve(rbo);
1170 return -EINVAL;
1171 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001172 }
Chris Ball4dd19b02010-09-26 06:47:23 -05001173
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001174 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1175 radeon_bo_unreserve(rbo);
1176
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001177 switch (target_fb->pixel_format) {
1178 case DRM_FORMAT_C8:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001179 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_8BPP) |
1180 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_INDEXED));
1181 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001182 case DRM_FORMAT_XRGB4444:
1183 case DRM_FORMAT_ARGB4444:
1184 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1185 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB4444));
1186#ifdef __BIG_ENDIAN
1187 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16);
1188#endif
1189 break;
1190 case DRM_FORMAT_XRGB1555:
1191 case DRM_FORMAT_ARGB1555:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001192 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1193 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB1555));
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001194#ifdef __BIG_ENDIAN
1195 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16);
1196#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001197 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001198 case DRM_FORMAT_BGRX5551:
1199 case DRM_FORMAT_BGRA5551:
1200 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1201 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_BGRA5551));
1202#ifdef __BIG_ENDIAN
1203 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16);
1204#endif
1205 break;
1206 case DRM_FORMAT_RGB565:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001207 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_16BPP) |
1208 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB565));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001209#ifdef __BIG_ENDIAN
1210 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN16);
1211#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001212 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001213 case DRM_FORMAT_XRGB8888:
1214 case DRM_FORMAT_ARGB8888:
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001215 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) |
1216 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB8888));
Alex Deucherfa6bee42011-01-25 11:55:50 -05001217#ifdef __BIG_ENDIAN
1218 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN32);
1219#endif
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001220 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001221 case DRM_FORMAT_XRGB2101010:
1222 case DRM_FORMAT_ARGB2101010:
1223 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) |
1224 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_ARGB2101010));
1225#ifdef __BIG_ENDIAN
1226 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN32);
1227#endif
1228 break;
1229 case DRM_FORMAT_BGRX1010102:
1230 case DRM_FORMAT_BGRA1010102:
1231 fb_format = (EVERGREEN_GRPH_DEPTH(EVERGREEN_GRPH_DEPTH_32BPP) |
1232 EVERGREEN_GRPH_FORMAT(EVERGREEN_GRPH_FORMAT_BGRA1010102));
1233#ifdef __BIG_ENDIAN
1234 fb_swap = EVERGREEN_GRPH_ENDIAN_SWAP(EVERGREEN_GRPH_ENDIAN_8IN32);
1235#endif
1236 break;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001237 default:
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001238 DRM_ERROR("Unsupported screen format %s\n",
1239 drm_get_format_name(target_fb->pixel_format));
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001240 return -EINVAL;
1241 }
1242
Alex Deucher392e3722011-11-28 14:49:27 -05001243 if (tiling_flags & RADEON_TILING_MACRO) {
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001244 evergreen_tiling_fields(tiling_flags, &bankw, &bankh, &mtaspect, &tile_split);
Alex Deucher392e3722011-11-28 14:49:27 -05001245
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001246 /* Set NUM_BANKS. */
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001247 if (rdev->family >= CHIP_TAHITI) {
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001248 unsigned index, num_banks;
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001249
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001250 if (rdev->family >= CHIP_BONAIRE) {
1251 unsigned tileb, tile_split_bytes;
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001252
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001253 /* Calculate the macrotile mode index. */
1254 tile_split_bytes = 64 << tile_split;
1255 tileb = 8 * 8 * target_fb->bits_per_pixel / 8;
1256 tileb = min(tile_split_bytes, tileb);
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001257
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001258 for (index = 0; tileb > 64; index++)
1259 tileb >>= 1;
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001260
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001261 if (index >= 16) {
1262 DRM_ERROR("Wrong screen bpp (%u) or tile split (%u)\n",
1263 target_fb->bits_per_pixel, tile_split);
1264 return -EINVAL;
1265 }
1266
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001267 num_banks = (rdev->config.cik.macrotile_mode_array[index] >> 6) & 0x3;
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001268 } else {
1269 switch (target_fb->bits_per_pixel) {
1270 case 8:
1271 index = 10;
1272 break;
1273 case 16:
1274 index = SI_TILE_MODE_COLOR_2D_SCANOUT_16BPP;
1275 break;
1276 default:
1277 case 32:
1278 index = SI_TILE_MODE_COLOR_2D_SCANOUT_32BPP;
1279 break;
1280 }
1281
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001282 num_banks = (rdev->config.si.tile_mode_array[index] >> 20) & 0x3;
Michel Dänzere9d14ae2014-04-22 16:53:52 +09001283 }
1284
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001285 fb_format |= EVERGREEN_GRPH_NUM_BANKS(num_banks);
1286 } else {
Alex Deucher6d8ea7d2014-02-17 14:16:31 -05001287 /* NI and older. */
1288 if (rdev->family >= CHIP_CAYMAN)
Marek Olšáke3ea94a2013-12-23 17:11:36 +01001289 tmp = rdev->config.cayman.tile_config;
1290 else
1291 tmp = rdev->config.evergreen.tile_config;
1292
1293 switch ((tmp & 0xf0) >> 4) {
1294 case 0: /* 4 banks */
1295 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_4_BANK);
1296 break;
1297 case 1: /* 8 banks */
1298 default:
1299 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_8_BANK);
1300 break;
1301 case 2: /* 16 banks */
1302 fb_format |= EVERGREEN_GRPH_NUM_BANKS(EVERGREEN_ADDR_SURF_16_BANK);
1303 break;
1304 }
Alex Deucher392e3722011-11-28 14:49:27 -05001305 }
1306
Alex Deucher97d66322010-05-20 12:12:48 -04001307 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_2D_TILED_THIN1);
Jerome Glisse285484e2011-12-16 17:03:42 -05001308 fb_format |= EVERGREEN_GRPH_TILE_SPLIT(tile_split);
1309 fb_format |= EVERGREEN_GRPH_BANK_WIDTH(bankw);
1310 fb_format |= EVERGREEN_GRPH_BANK_HEIGHT(bankh);
1311 fb_format |= EVERGREEN_GRPH_MACRO_TILE_ASPECT(mtaspect);
Alex Deucher8da0e502012-07-11 18:38:29 -04001312 if (rdev->family >= CHIP_BONAIRE) {
1313 /* XXX need to know more about the surface tiling mode */
1314 fb_format |= CIK_GRPH_MICRO_TILE_MODE(CIK_DISPLAY_MICRO_TILING);
1315 }
Alex Deucher392e3722011-11-28 14:49:27 -05001316 } else if (tiling_flags & RADEON_TILING_MICRO)
Alex Deucher97d66322010-05-20 12:12:48 -04001317 fb_format |= EVERGREEN_GRPH_ARRAY_MODE(EVERGREEN_GRPH_ARRAY_1D_TILED_THIN1);
1318
Alex Deucher8da0e502012-07-11 18:38:29 -04001319 if (rdev->family >= CHIP_BONAIRE) {
Marek Olšák35a90522013-12-23 17:11:35 +01001320 /* Read the pipe config from the 2D TILED SCANOUT mode.
1321 * It should be the same for the other modes too, but not all
1322 * modes set the pipe config field. */
1323 u32 pipe_config = (rdev->config.cik.tile_mode_array[10] >> 6) & 0x1f;
1324
1325 fb_format |= CIK_GRPH_PIPE_CONFIG(pipe_config);
Alex Deucher8da0e502012-07-11 18:38:29 -04001326 } else if ((rdev->family == CHIP_TAHITI) ||
1327 (rdev->family == CHIP_PITCAIRN))
Alex Deucherb7019b22012-06-14 15:58:25 -04001328 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P8_32x32_8x16);
Alex Deucher227ae102013-12-11 11:43:58 -05001329 else if ((rdev->family == CHIP_VERDE) ||
1330 (rdev->family == CHIP_OLAND) ||
1331 (rdev->family == CHIP_HAINAN)) /* for completeness. HAINAN has no display hw */
Alex Deucherb7019b22012-06-14 15:58:25 -04001332 fb_format |= SI_GRPH_PIPE_CONFIG(SI_ADDR_SURF_P4_8x16);
1333
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001334 switch (radeon_crtc->crtc_id) {
1335 case 0:
1336 WREG32(AVIVO_D1VGA_CONTROL, 0);
1337 break;
1338 case 1:
1339 WREG32(AVIVO_D2VGA_CONTROL, 0);
1340 break;
1341 case 2:
1342 WREG32(EVERGREEN_D3VGA_CONTROL, 0);
1343 break;
1344 case 3:
1345 WREG32(EVERGREEN_D4VGA_CONTROL, 0);
1346 break;
1347 case 4:
1348 WREG32(EVERGREEN_D5VGA_CONTROL, 0);
1349 break;
1350 case 5:
1351 WREG32(EVERGREEN_D6VGA_CONTROL, 0);
1352 break;
1353 default:
1354 break;
1355 }
1356
1357 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1358 upper_32_bits(fb_location));
1359 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS_HIGH + radeon_crtc->crtc_offset,
1360 upper_32_bits(fb_location));
1361 WREG32(EVERGREEN_GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1362 (u32)fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1363 WREG32(EVERGREEN_GRPH_SECONDARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1364 (u32) fb_location & EVERGREEN_GRPH_SURFACE_ADDRESS_MASK);
1365 WREG32(EVERGREEN_GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001366 WREG32(EVERGREEN_GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001367
1368 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1369 WREG32(EVERGREEN_GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1370 WREG32(EVERGREEN_GRPH_X_START + radeon_crtc->crtc_offset, 0);
1371 WREG32(EVERGREEN_GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001372 WREG32(EVERGREEN_GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1373 WREG32(EVERGREEN_GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001374
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001375 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001376 WREG32(EVERGREEN_GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1377 WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1378
Alex Deucher8da0e502012-07-11 18:38:29 -04001379 if (rdev->family >= CHIP_BONAIRE)
1380 WREG32(CIK_LB_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
1381 target_fb->height);
1382 else
1383 WREG32(EVERGREEN_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
1384 target_fb->height);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001385 x &= ~3;
1386 y &= ~1;
1387 WREG32(EVERGREEN_VIEWPORT_START + radeon_crtc->crtc_offset,
1388 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001389 viewport_w = crtc->mode.hdisplay;
1390 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001391 WREG32(EVERGREEN_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001392 (viewport_w << 16) | viewport_h);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001393
Alex Deucherfb9674b2011-04-02 09:15:50 -04001394 /* pageflip setup */
1395 /* make sure flip is at vb rather than hb */
1396 tmp = RREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1397 tmp &= ~EVERGREEN_GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1398 WREG32(EVERGREEN_GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1399
1400 /* set pageflip to happen anywhere in vblank interval */
1401 WREG32(EVERGREEN_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1402
Matt Roperf4510a22014-04-01 15:22:40 -07001403 if (!atomic && fb && fb != crtc->primary->fb) {
Chris Ball4dd19b02010-09-26 06:47:23 -05001404 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001405 rbo = gem_to_radeon_bo(radeon_fb->obj);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001406 r = radeon_bo_reserve(rbo, false);
1407 if (unlikely(r != 0))
1408 return r;
1409 radeon_bo_unpin(rbo);
1410 radeon_bo_unreserve(rbo);
1411 }
1412
1413 /* Bytes per pixel may have changed */
1414 radeon_bandwidth_update(rdev);
1415
1416 return 0;
1417}
1418
Chris Ball4dd19b02010-09-26 06:47:23 -05001419static int avivo_crtc_do_set_base(struct drm_crtc *crtc,
1420 struct drm_framebuffer *fb,
1421 int x, int y, int atomic)
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001422{
1423 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1424 struct drm_device *dev = crtc->dev;
1425 struct radeon_device *rdev = dev->dev_private;
1426 struct radeon_framebuffer *radeon_fb;
1427 struct drm_gem_object *obj;
Jerome Glisse4c788672009-11-20 14:29:23 +01001428 struct radeon_bo *rbo;
Chris Ball4dd19b02010-09-26 06:47:23 -05001429 struct drm_framebuffer *target_fb;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001430 uint64_t fb_location;
Dave Airliee024e112009-06-24 09:48:08 +10001431 uint32_t fb_format, fb_pitch_pixels, tiling_flags;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001432 u32 fb_swap = R600_D1GRPH_SWAP_ENDIAN_NONE;
Alex Deucheradcfde52011-05-27 10:05:03 -04001433 u32 tmp, viewport_w, viewport_h;
Jerome Glisse4c788672009-11-20 14:29:23 +01001434 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001435
Jerome Glisse2de3b482009-11-17 14:08:55 -08001436 /* no fb bound */
Matt Roperf4510a22014-04-01 15:22:40 -07001437 if (!atomic && !crtc->primary->fb) {
Dave Airlied9fdaaf2010-08-02 10:42:55 +10001438 DRM_DEBUG_KMS("No FB bound\n");
Jerome Glisse2de3b482009-11-17 14:08:55 -08001439 return 0;
1440 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001441
Chris Ball4dd19b02010-09-26 06:47:23 -05001442 if (atomic) {
1443 radeon_fb = to_radeon_framebuffer(fb);
1444 target_fb = fb;
1445 }
1446 else {
Matt Roperf4510a22014-04-01 15:22:40 -07001447 radeon_fb = to_radeon_framebuffer(crtc->primary->fb);
1448 target_fb = crtc->primary->fb;
Chris Ball4dd19b02010-09-26 06:47:23 -05001449 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001450
1451 obj = radeon_fb->obj;
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001452 rbo = gem_to_radeon_bo(obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001453 r = radeon_bo_reserve(rbo, false);
1454 if (unlikely(r != 0))
1455 return r;
Chris Ball4dd19b02010-09-26 06:47:23 -05001456
1457 /* If atomic, assume fb object is pinned & idle & fenced and
1458 * just update base pointers
1459 */
1460 if (atomic)
1461 fb_location = radeon_bo_gpu_offset(rbo);
1462 else {
1463 r = radeon_bo_pin(rbo, RADEON_GEM_DOMAIN_VRAM, &fb_location);
1464 if (unlikely(r != 0)) {
1465 radeon_bo_unreserve(rbo);
1466 return -EINVAL;
1467 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001468 }
Jerome Glisse4c788672009-11-20 14:29:23 +01001469 radeon_bo_get_tiling_flags(rbo, &tiling_flags, NULL);
1470 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001471
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001472 switch (target_fb->pixel_format) {
1473 case DRM_FORMAT_C8:
Dave Airlie41456df2009-09-16 10:15:21 +10001474 fb_format =
1475 AVIVO_D1GRPH_CONTROL_DEPTH_8BPP |
1476 AVIVO_D1GRPH_CONTROL_8BPP_INDEXED;
1477 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001478 case DRM_FORMAT_XRGB4444:
1479 case DRM_FORMAT_ARGB4444:
1480 fb_format =
1481 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1482 AVIVO_D1GRPH_CONTROL_16BPP_ARGB4444;
1483#ifdef __BIG_ENDIAN
1484 fb_swap = R600_D1GRPH_SWAP_ENDIAN_16BIT;
1485#endif
1486 break;
1487 case DRM_FORMAT_XRGB1555:
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001488 fb_format =
1489 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1490 AVIVO_D1GRPH_CONTROL_16BPP_ARGB1555;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001491#ifdef __BIG_ENDIAN
1492 fb_swap = R600_D1GRPH_SWAP_ENDIAN_16BIT;
1493#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001494 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001495 case DRM_FORMAT_RGB565:
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001496 fb_format =
1497 AVIVO_D1GRPH_CONTROL_DEPTH_16BPP |
1498 AVIVO_D1GRPH_CONTROL_16BPP_RGB565;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001499#ifdef __BIG_ENDIAN
1500 fb_swap = R600_D1GRPH_SWAP_ENDIAN_16BIT;
1501#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001502 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001503 case DRM_FORMAT_XRGB8888:
1504 case DRM_FORMAT_ARGB8888:
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001505 fb_format =
1506 AVIVO_D1GRPH_CONTROL_DEPTH_32BPP |
1507 AVIVO_D1GRPH_CONTROL_32BPP_ARGB8888;
Alex Deucherfa6bee42011-01-25 11:55:50 -05001508#ifdef __BIG_ENDIAN
1509 fb_swap = R600_D1GRPH_SWAP_ENDIAN_32BIT;
1510#endif
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001511 break;
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001512 case DRM_FORMAT_XRGB2101010:
1513 case DRM_FORMAT_ARGB2101010:
1514 fb_format =
1515 AVIVO_D1GRPH_CONTROL_DEPTH_32BPP |
1516 AVIVO_D1GRPH_CONTROL_32BPP_ARGB2101010;
1517#ifdef __BIG_ENDIAN
1518 fb_swap = R600_D1GRPH_SWAP_ENDIAN_32BIT;
1519#endif
1520 break;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001521 default:
Fredrik Höglund8bae4272013-09-21 17:15:36 +02001522 DRM_ERROR("Unsupported screen format %s\n",
1523 drm_get_format_name(target_fb->pixel_format));
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001524 return -EINVAL;
1525 }
1526
Alex Deucher40c4ac12010-05-20 12:04:59 -04001527 if (rdev->family >= CHIP_R600) {
1528 if (tiling_flags & RADEON_TILING_MACRO)
1529 fb_format |= R600_D1GRPH_ARRAY_MODE_2D_TILED_THIN1;
1530 else if (tiling_flags & RADEON_TILING_MICRO)
1531 fb_format |= R600_D1GRPH_ARRAY_MODE_1D_TILED_THIN1;
1532 } else {
1533 if (tiling_flags & RADEON_TILING_MACRO)
1534 fb_format |= AVIVO_D1GRPH_MACRO_ADDRESS_MODE;
Dave Airliecf2f05d2009-12-08 15:45:13 +10001535
Alex Deucher40c4ac12010-05-20 12:04:59 -04001536 if (tiling_flags & RADEON_TILING_MICRO)
1537 fb_format |= AVIVO_D1GRPH_TILED;
1538 }
Dave Airliee024e112009-06-24 09:48:08 +10001539
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001540 if (radeon_crtc->crtc_id == 0)
1541 WREG32(AVIVO_D1VGA_CONTROL, 0);
1542 else
1543 WREG32(AVIVO_D2VGA_CONTROL, 0);
Alex Deucherc290dad2009-10-22 16:12:34 -04001544
1545 if (rdev->family >= CHIP_RV770) {
1546 if (radeon_crtc->crtc_id) {
Alex Deucher95347872010-09-01 17:20:42 -04001547 WREG32(R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1548 WREG32(R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001549 } else {
Alex Deucher95347872010-09-01 17:20:42 -04001550 WREG32(R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
1551 WREG32(R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, upper_32_bits(fb_location));
Alex Deucherc290dad2009-10-22 16:12:34 -04001552 }
1553 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001554 WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset,
1555 (u32) fb_location);
1556 WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS +
1557 radeon_crtc->crtc_offset, (u32) fb_location);
1558 WREG32(AVIVO_D1GRPH_CONTROL + radeon_crtc->crtc_offset, fb_format);
Alex Deucherfa6bee42011-01-25 11:55:50 -05001559 if (rdev->family >= CHIP_R600)
1560 WREG32(R600_D1GRPH_SWAP_CONTROL + radeon_crtc->crtc_offset, fb_swap);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001561
1562 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_X + radeon_crtc->crtc_offset, 0);
1563 WREG32(AVIVO_D1GRPH_SURFACE_OFFSET_Y + radeon_crtc->crtc_offset, 0);
1564 WREG32(AVIVO_D1GRPH_X_START + radeon_crtc->crtc_offset, 0);
1565 WREG32(AVIVO_D1GRPH_Y_START + radeon_crtc->crtc_offset, 0);
Chris Ball4dd19b02010-09-26 06:47:23 -05001566 WREG32(AVIVO_D1GRPH_X_END + radeon_crtc->crtc_offset, target_fb->width);
1567 WREG32(AVIVO_D1GRPH_Y_END + radeon_crtc->crtc_offset, target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001568
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001569 fb_pitch_pixels = target_fb->pitches[0] / (target_fb->bits_per_pixel / 8);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001570 WREG32(AVIVO_D1GRPH_PITCH + radeon_crtc->crtc_offset, fb_pitch_pixels);
1571 WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 1);
1572
1573 WREG32(AVIVO_D1MODE_DESKTOP_HEIGHT + radeon_crtc->crtc_offset,
Michel Dänzer1b619252012-02-01 12:09:55 +01001574 target_fb->height);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001575 x &= ~3;
1576 y &= ~1;
1577 WREG32(AVIVO_D1MODE_VIEWPORT_START + radeon_crtc->crtc_offset,
1578 (x << 16) | y);
Alex Deucheradcfde52011-05-27 10:05:03 -04001579 viewport_w = crtc->mode.hdisplay;
1580 viewport_h = (crtc->mode.vdisplay + 1) & ~1;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001581 WREG32(AVIVO_D1MODE_VIEWPORT_SIZE + radeon_crtc->crtc_offset,
Alex Deucheradcfde52011-05-27 10:05:03 -04001582 (viewport_w << 16) | viewport_h);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001583
Alex Deucherfb9674b2011-04-02 09:15:50 -04001584 /* pageflip setup */
1585 /* make sure flip is at vb rather than hb */
1586 tmp = RREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset);
1587 tmp &= ~AVIVO_D1GRPH_SURFACE_UPDATE_H_RETRACE_EN;
1588 WREG32(AVIVO_D1GRPH_FLIP_CONTROL + radeon_crtc->crtc_offset, tmp);
1589
1590 /* set pageflip to happen anywhere in vblank interval */
1591 WREG32(AVIVO_D1MODE_MASTER_UPDATE_MODE + radeon_crtc->crtc_offset, 0);
1592
Matt Roperf4510a22014-04-01 15:22:40 -07001593 if (!atomic && fb && fb != crtc->primary->fb) {
Chris Ball4dd19b02010-09-26 06:47:23 -05001594 radeon_fb = to_radeon_framebuffer(fb);
Daniel Vetter7e4d15d2011-02-18 17:59:17 +01001595 rbo = gem_to_radeon_bo(radeon_fb->obj);
Jerome Glisse4c788672009-11-20 14:29:23 +01001596 r = radeon_bo_reserve(rbo, false);
1597 if (unlikely(r != 0))
1598 return r;
1599 radeon_bo_unpin(rbo);
1600 radeon_bo_unreserve(rbo);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001601 }
Michel Dänzerf30f37d2009-10-08 10:44:09 +02001602
1603 /* Bytes per pixel may have changed */
1604 radeon_bandwidth_update(rdev);
1605
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001606 return 0;
1607}
1608
Alex Deucher54f088a2010-01-19 16:34:01 -05001609int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y,
1610 struct drm_framebuffer *old_fb)
1611{
1612 struct drm_device *dev = crtc->dev;
1613 struct radeon_device *rdev = dev->dev_private;
1614
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001615 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001616 return dce4_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001617 else if (ASIC_IS_AVIVO(rdev))
Chris Ball4dd19b02010-09-26 06:47:23 -05001618 return avivo_crtc_do_set_base(crtc, old_fb, x, y, 0);
Alex Deucher54f088a2010-01-19 16:34:01 -05001619 else
Chris Ball4dd19b02010-09-26 06:47:23 -05001620 return radeon_crtc_do_set_base(crtc, old_fb, x, y, 0);
1621}
1622
1623int atombios_crtc_set_base_atomic(struct drm_crtc *crtc,
1624 struct drm_framebuffer *fb,
Jason Wessel21c74a82010-10-13 14:09:44 -05001625 int x, int y, enum mode_set_atomic state)
Chris Ball4dd19b02010-09-26 06:47:23 -05001626{
1627 struct drm_device *dev = crtc->dev;
1628 struct radeon_device *rdev = dev->dev_private;
1629
1630 if (ASIC_IS_DCE4(rdev))
Alex Deucherc9417bd2011-02-06 14:23:26 -05001631 return dce4_crtc_do_set_base(crtc, fb, x, y, 1);
Chris Ball4dd19b02010-09-26 06:47:23 -05001632 else if (ASIC_IS_AVIVO(rdev))
1633 return avivo_crtc_do_set_base(crtc, fb, x, y, 1);
1634 else
1635 return radeon_crtc_do_set_base(crtc, fb, x, y, 1);
Alex Deucher54f088a2010-01-19 16:34:01 -05001636}
1637
Alex Deucher615e0cb2010-01-20 16:22:53 -05001638/* properly set additional regs when using atombios */
1639static void radeon_legacy_atom_fixup(struct drm_crtc *crtc)
1640{
1641 struct drm_device *dev = crtc->dev;
1642 struct radeon_device *rdev = dev->dev_private;
1643 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1644 u32 disp_merge_cntl;
1645
1646 switch (radeon_crtc->crtc_id) {
1647 case 0:
1648 disp_merge_cntl = RREG32(RADEON_DISP_MERGE_CNTL);
1649 disp_merge_cntl &= ~RADEON_DISP_RGB_OFFSET_EN;
1650 WREG32(RADEON_DISP_MERGE_CNTL, disp_merge_cntl);
1651 break;
1652 case 1:
1653 disp_merge_cntl = RREG32(RADEON_DISP2_MERGE_CNTL);
1654 disp_merge_cntl &= ~RADEON_DISP2_RGB_OFFSET_EN;
1655 WREG32(RADEON_DISP2_MERGE_CNTL, disp_merge_cntl);
1656 WREG32(RADEON_FP_H2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_H_SYNC_STRT_WID));
1657 WREG32(RADEON_FP_V2_SYNC_STRT_WID, RREG32(RADEON_CRTC2_V_SYNC_STRT_WID));
1658 break;
1659 }
1660}
1661
Alex Deucherf3dd8502012-08-31 11:56:50 -04001662/**
1663 * radeon_get_pll_use_mask - look up a mask of which pplls are in use
1664 *
1665 * @crtc: drm crtc
1666 *
1667 * Returns the mask of which PPLLs (Pixel PLLs) are in use.
1668 */
1669static u32 radeon_get_pll_use_mask(struct drm_crtc *crtc)
1670{
1671 struct drm_device *dev = crtc->dev;
1672 struct drm_crtc *test_crtc;
Alex Deucher57b35e22012-09-17 17:34:45 -04001673 struct radeon_crtc *test_radeon_crtc;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001674 u32 pll_in_use = 0;
1675
1676 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1677 if (crtc == test_crtc)
1678 continue;
1679
Alex Deucher57b35e22012-09-17 17:34:45 -04001680 test_radeon_crtc = to_radeon_crtc(test_crtc);
1681 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
1682 pll_in_use |= (1 << test_radeon_crtc->pll_id);
Alex Deucherf3dd8502012-08-31 11:56:50 -04001683 }
1684 return pll_in_use;
1685}
1686
1687/**
1688 * radeon_get_shared_dp_ppll - return the PPLL used by another crtc for DP
1689 *
1690 * @crtc: drm crtc
1691 *
1692 * Returns the PPLL (Pixel PLL) used by another crtc/encoder which is
1693 * also in DP mode. For DP, a single PPLL can be used for all DP
1694 * crtcs/encoders.
1695 */
1696static int radeon_get_shared_dp_ppll(struct drm_crtc *crtc)
1697{
1698 struct drm_device *dev = crtc->dev;
Alex Deucher57b35e22012-09-17 17:34:45 -04001699 struct drm_crtc *test_crtc;
Alex Deucher5df31962012-09-13 11:52:08 -04001700 struct radeon_crtc *test_radeon_crtc;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001701
Alex Deucher57b35e22012-09-17 17:34:45 -04001702 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1703 if (crtc == test_crtc)
1704 continue;
1705 test_radeon_crtc = to_radeon_crtc(test_crtc);
1706 if (test_radeon_crtc->encoder &&
1707 ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_radeon_crtc->encoder))) {
1708 /* for DP use the same PLL for all */
1709 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
1710 return test_radeon_crtc->pll_id;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001711 }
1712 }
1713 return ATOM_PPLL_INVALID;
1714}
1715
1716/**
Alex Deucher2f454cf2012-09-12 18:54:14 -04001717 * radeon_get_shared_nondp_ppll - return the PPLL used by another non-DP crtc
1718 *
1719 * @crtc: drm crtc
1720 * @encoder: drm encoder
1721 *
1722 * Returns the PPLL (Pixel PLL) used by another non-DP crtc/encoder which can
1723 * be shared (i.e., same clock).
1724 */
Alex Deucher5df31962012-09-13 11:52:08 -04001725static int radeon_get_shared_nondp_ppll(struct drm_crtc *crtc)
Alex Deucher2f454cf2012-09-12 18:54:14 -04001726{
Alex Deucher5df31962012-09-13 11:52:08 -04001727 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher2f454cf2012-09-12 18:54:14 -04001728 struct drm_device *dev = crtc->dev;
Alex Deucher9642ac02012-09-13 12:43:41 -04001729 struct drm_crtc *test_crtc;
Alex Deucher5df31962012-09-13 11:52:08 -04001730 struct radeon_crtc *test_radeon_crtc;
Alex Deucher9642ac02012-09-13 12:43:41 -04001731 u32 adjusted_clock, test_adjusted_clock;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001732
Alex Deucher9642ac02012-09-13 12:43:41 -04001733 adjusted_clock = radeon_crtc->adjusted_clock;
1734
1735 if (adjusted_clock == 0)
1736 return ATOM_PPLL_INVALID;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001737
Alex Deucher57b35e22012-09-17 17:34:45 -04001738 list_for_each_entry(test_crtc, &dev->mode_config.crtc_list, head) {
1739 if (crtc == test_crtc)
1740 continue;
1741 test_radeon_crtc = to_radeon_crtc(test_crtc);
1742 if (test_radeon_crtc->encoder &&
1743 !ENCODER_MODE_IS_DP(atombios_get_encoder_mode(test_radeon_crtc->encoder))) {
1744 /* check if we are already driving this connector with another crtc */
1745 if (test_radeon_crtc->connector == radeon_crtc->connector) {
1746 /* if we are, return that pll */
1747 if (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID)
Alex Deucher5df31962012-09-13 11:52:08 -04001748 return test_radeon_crtc->pll_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001749 }
Alex Deucher57b35e22012-09-17 17:34:45 -04001750 /* for non-DP check the clock */
1751 test_adjusted_clock = test_radeon_crtc->adjusted_clock;
1752 if ((crtc->mode.clock == test_crtc->mode.clock) &&
1753 (adjusted_clock == test_adjusted_clock) &&
1754 (radeon_crtc->ss_enabled == test_radeon_crtc->ss_enabled) &&
1755 (test_radeon_crtc->pll_id != ATOM_PPLL_INVALID))
1756 return test_radeon_crtc->pll_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001757 }
1758 }
1759 return ATOM_PPLL_INVALID;
1760}
1761
1762/**
Alex Deucherf3dd8502012-08-31 11:56:50 -04001763 * radeon_atom_pick_pll - Allocate a PPLL for use by the crtc.
1764 *
1765 * @crtc: drm crtc
1766 *
1767 * Returns the PPLL (Pixel PLL) to be used by the crtc. For DP monitors
1768 * a single PPLL can be used for all DP crtcs/encoders. For non-DP
1769 * monitors a dedicated PPLL must be used. If a particular board has
1770 * an external DP PLL, return ATOM_PPLL_INVALID to skip PLL programming
1771 * as there is no need to program the PLL itself. If we are not able to
1772 * allocate a PLL, return ATOM_PPLL_INVALID to skip PLL programming to
1773 * avoid messing up an existing monitor.
1774 *
1775 * Asic specific PLL information
1776 *
Alex Deucher0331f672012-09-14 11:57:21 -04001777 * DCE 8.x
1778 * KB/KV
1779 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP)
1780 * CI
1781 * - PPLL0, PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1782 *
Alex Deucherf3dd8502012-08-31 11:56:50 -04001783 * DCE 6.1
1784 * - PPLL2 is only available to UNIPHYA (both DP and non-DP)
1785 * - PPLL0, PPLL1 are available for UNIPHYB/C/D/E/F (both DP and non-DP)
1786 *
1787 * DCE 6.0
1788 * - PPLL0 is available to all UNIPHY (DP only)
1789 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1790 *
1791 * DCE 5.0
1792 * - DCPLL is available to all UNIPHY (DP only)
1793 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1794 *
1795 * DCE 3.0/4.0/4.1
1796 * - PPLL1, PPLL2 are available for all UNIPHY (both DP and non-DP) and DAC
1797 *
1798 */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001799static int radeon_atom_pick_pll(struct drm_crtc *crtc)
1800{
Alex Deucher5df31962012-09-13 11:52:08 -04001801 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001802 struct drm_device *dev = crtc->dev;
1803 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001804 struct radeon_encoder *radeon_encoder =
1805 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucherf3dd8502012-08-31 11:56:50 -04001806 u32 pll_in_use;
1807 int pll;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001808
Alex Deucher0331f672012-09-14 11:57:21 -04001809 if (ASIC_IS_DCE8(rdev)) {
1810 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1811 if (rdev->clock.dp_extclk)
1812 /* skip PPLL programming if using ext clock */
1813 return ATOM_PPLL_INVALID;
1814 else {
1815 /* use the same PPLL for all DP monitors */
1816 pll = radeon_get_shared_dp_ppll(crtc);
1817 if (pll != ATOM_PPLL_INVALID)
1818 return pll;
1819 }
1820 } else {
1821 /* use the same PPLL for all monitors with the same clock */
1822 pll = radeon_get_shared_nondp_ppll(crtc);
1823 if (pll != ATOM_PPLL_INVALID)
1824 return pll;
1825 }
1826 /* otherwise, pick one of the plls */
1827 if ((rdev->family == CHIP_KAVERI) ||
Samuel Lib214f2a2014-04-30 18:40:53 -04001828 (rdev->family == CHIP_KABINI) ||
1829 (rdev->family == CHIP_MULLINS)) {
1830 /* KB/KV/ML has PPLL1 and PPLL2 */
Alex Deucher0331f672012-09-14 11:57:21 -04001831 pll_in_use = radeon_get_pll_use_mask(crtc);
1832 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1833 return ATOM_PPLL2;
1834 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1835 return ATOM_PPLL1;
1836 DRM_ERROR("unable to allocate a PPLL\n");
1837 return ATOM_PPLL_INVALID;
1838 } else {
1839 /* CI has PPLL0, PPLL1, and PPLL2 */
1840 pll_in_use = radeon_get_pll_use_mask(crtc);
1841 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1842 return ATOM_PPLL2;
1843 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1844 return ATOM_PPLL1;
1845 if (!(pll_in_use & (1 << ATOM_PPLL0)))
1846 return ATOM_PPLL0;
1847 DRM_ERROR("unable to allocate a PPLL\n");
1848 return ATOM_PPLL_INVALID;
1849 }
1850 } else if (ASIC_IS_DCE61(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001851 struct radeon_encoder_atom_dig *dig =
1852 radeon_encoder->enc_priv;
Alex Deucher24e1f792012-03-20 17:18:32 -04001853
Alex Deucher5df31962012-09-13 11:52:08 -04001854 if ((radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_UNIPHY) &&
1855 (dig->linkb == false))
1856 /* UNIPHY A uses PPLL2 */
1857 return ATOM_PPLL2;
1858 else if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1859 /* UNIPHY B/C/D/E/F */
1860 if (rdev->clock.dp_extclk)
1861 /* skip PPLL programming if using ext clock */
1862 return ATOM_PPLL_INVALID;
1863 else {
1864 /* use the same PPLL for all DP monitors */
1865 pll = radeon_get_shared_dp_ppll(crtc);
1866 if (pll != ATOM_PPLL_INVALID)
1867 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001868 }
Alex Deucher5df31962012-09-13 11:52:08 -04001869 } else {
1870 /* use the same PPLL for all monitors with the same clock */
1871 pll = radeon_get_shared_nondp_ppll(crtc);
1872 if (pll != ATOM_PPLL_INVALID)
1873 return pll;
Alex Deucher24e1f792012-03-20 17:18:32 -04001874 }
1875 /* UNIPHY B/C/D/E/F */
Alex Deucherf3dd8502012-08-31 11:56:50 -04001876 pll_in_use = radeon_get_pll_use_mask(crtc);
1877 if (!(pll_in_use & (1 << ATOM_PPLL0)))
Alex Deucher24e1f792012-03-20 17:18:32 -04001878 return ATOM_PPLL0;
Alex Deucherf3dd8502012-08-31 11:56:50 -04001879 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1880 return ATOM_PPLL1;
1881 DRM_ERROR("unable to allocate a PPLL\n");
1882 return ATOM_PPLL_INVALID;
Alex Deucher9ef4e1d2014-02-25 10:21:43 -05001883 } else if (ASIC_IS_DCE41(rdev)) {
1884 /* Don't share PLLs on DCE4.1 chips */
1885 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1886 if (rdev->clock.dp_extclk)
1887 /* skip PPLL programming if using ext clock */
1888 return ATOM_PPLL_INVALID;
1889 }
1890 pll_in_use = radeon_get_pll_use_mask(crtc);
1891 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1892 return ATOM_PPLL1;
1893 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1894 return ATOM_PPLL2;
1895 DRM_ERROR("unable to allocate a PPLL\n");
1896 return ATOM_PPLL_INVALID;
Alex Deucher24e1f792012-03-20 17:18:32 -04001897 } else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher5df31962012-09-13 11:52:08 -04001898 /* in DP mode, the DP ref clock can come from PPLL, DCPLL, or ext clock,
1899 * depending on the asic:
1900 * DCE4: PPLL or ext clock
1901 * DCE5: PPLL, DCPLL, or ext clock
1902 * DCE6: PPLL, PPLL0, or ext clock
1903 *
1904 * Setting ATOM_PPLL_INVALID will cause SetPixelClock to skip
1905 * PPLL/DCPLL programming and only program the DP DTO for the
1906 * crtc virtual pixel clock.
1907 */
1908 if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder))) {
1909 if (rdev->clock.dp_extclk)
1910 /* skip PPLL programming if using ext clock */
1911 return ATOM_PPLL_INVALID;
1912 else if (ASIC_IS_DCE6(rdev))
1913 /* use PPLL0 for all DP */
1914 return ATOM_PPLL0;
1915 else if (ASIC_IS_DCE5(rdev))
1916 /* use DCPLL for all DP */
1917 return ATOM_DCPLL;
1918 else {
1919 /* use the same PPLL for all DP monitors */
1920 pll = radeon_get_shared_dp_ppll(crtc);
1921 if (pll != ATOM_PPLL_INVALID)
1922 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001923 }
Alex Deucher9ef4e1d2014-02-25 10:21:43 -05001924 } else {
Alex Deucher5df31962012-09-13 11:52:08 -04001925 /* use the same PPLL for all monitors with the same clock */
1926 pll = radeon_get_shared_nondp_ppll(crtc);
1927 if (pll != ATOM_PPLL_INVALID)
1928 return pll;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001929 }
1930 /* all other cases */
1931 pll_in_use = radeon_get_pll_use_mask(crtc);
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001932 if (!(pll_in_use & (1 << ATOM_PPLL1)))
1933 return ATOM_PPLL1;
Alex Deucher29dbe3b2012-10-05 10:22:02 -04001934 if (!(pll_in_use & (1 << ATOM_PPLL2)))
1935 return ATOM_PPLL2;
Alex Deucher9dbbcfc2012-09-12 17:39:57 -04001936 DRM_ERROR("unable to allocate a PPLL\n");
1937 return ATOM_PPLL_INVALID;
Alex Deucher1e4db5f2012-11-05 10:16:12 -05001938 } else {
1939 /* on pre-R5xx asics, the crtc to pll mapping is hardcoded */
Jerome Glissefc58acd2012-11-27 16:12:29 -05001940 /* some atombios (observed in some DCE2/DCE3) code have a bug,
1941 * the matching btw pll and crtc is done through
1942 * PCLK_CRTC[1|2]_CNTL (0x480/0x484) but atombios code use the
1943 * pll (1 or 2) to select which register to write. ie if using
1944 * pll1 it will use PCLK_CRTC1_CNTL (0x480) and if using pll2
1945 * it will use PCLK_CRTC2_CNTL (0x484), it then use crtc id to
1946 * choose which value to write. Which is reverse order from
1947 * register logic. So only case that works is when pllid is
1948 * same as crtcid or when both pll and crtc are enabled and
1949 * both use same clock.
1950 *
1951 * So just return crtc id as if crtc and pll were hard linked
1952 * together even if they aren't
1953 */
Alex Deucher1e4db5f2012-11-05 10:16:12 -05001954 return radeon_crtc->crtc_id;
Alex Deucher2f454cf2012-09-12 18:54:14 -04001955 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05001956}
1957
Alex Deucherf3f1f032012-03-20 17:18:04 -04001958void radeon_atom_disp_eng_pll_init(struct radeon_device *rdev)
Alex Deucher3fa47d92012-01-20 14:56:39 -05001959{
1960 /* always set DCPLL */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001961 if (ASIC_IS_DCE6(rdev))
1962 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
1963 else if (ASIC_IS_DCE4(rdev)) {
Alex Deucher3fa47d92012-01-20 14:56:39 -05001964 struct radeon_atom_ss ss;
1965 bool ss_enabled = radeon_atombios_get_asic_ss_info(rdev, &ss,
1966 ASIC_INTERNAL_SS_ON_DCPLL,
1967 rdev->clock.default_dispclk);
1968 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001969 atombios_crtc_program_ss(rdev, ATOM_DISABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001970 /* XXX: DCE5, make sure voltage, dispclk is high enough */
Alex Deucherf3f1f032012-03-20 17:18:04 -04001971 atombios_crtc_set_disp_eng_pll(rdev, rdev->clock.default_dispclk);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001972 if (ss_enabled)
Jerome Glisse5efcc762012-08-17 14:40:04 -04001973 atombios_crtc_program_ss(rdev, ATOM_ENABLE, ATOM_DCPLL, -1, &ss);
Alex Deucher3fa47d92012-01-20 14:56:39 -05001974 }
1975
1976}
1977
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001978int atombios_crtc_mode_set(struct drm_crtc *crtc,
1979 struct drm_display_mode *mode,
1980 struct drm_display_mode *adjusted_mode,
1981 int x, int y, struct drm_framebuffer *old_fb)
1982{
1983 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
1984 struct drm_device *dev = crtc->dev;
1985 struct radeon_device *rdev = dev->dev_private;
Alex Deucher5df31962012-09-13 11:52:08 -04001986 struct radeon_encoder *radeon_encoder =
1987 to_radeon_encoder(radeon_crtc->encoder);
Alex Deucher54bfe492010-09-03 15:52:53 -04001988 bool is_tvcv = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001989
Alex Deucher5df31962012-09-13 11:52:08 -04001990 if (radeon_encoder->active_device &
1991 (ATOM_DEVICE_TV_SUPPORT | ATOM_DEVICE_CV_SUPPORT))
1992 is_tvcv = true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001993
Christian Königcde10122014-05-02 14:27:42 +02001994 if (!radeon_crtc->adjusted_clock)
1995 return -EINVAL;
1996
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001997 atombios_crtc_set_pll(crtc, adjusted_mode);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001998
Alex Deucher54bfe492010-09-03 15:52:53 -04001999 if (ASIC_IS_DCE4(rdev))
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002000 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher54bfe492010-09-03 15:52:53 -04002001 else if (ASIC_IS_AVIVO(rdev)) {
2002 if (is_tvcv)
2003 atombios_crtc_set_timing(crtc, adjusted_mode);
2004 else
2005 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
2006 } else {
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002007 atombios_crtc_set_timing(crtc, adjusted_mode);
Alex Deucher5a9bcac2009-10-08 15:09:31 -04002008 if (radeon_crtc->crtc_id == 0)
2009 atombios_set_crtc_dtd_timing(crtc, adjusted_mode);
Alex Deucher615e0cb2010-01-20 16:22:53 -05002010 radeon_legacy_atom_fixup(crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002011 }
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002012 atombios_crtc_set_base(crtc, x, y, old_fb);
Jerome Glissec93bb852009-07-13 21:04:08 +02002013 atombios_overscan_setup(crtc, mode, adjusted_mode);
2014 atombios_scaler_setup(crtc);
Alex Deucher66edc1c2013-07-08 11:26:42 -04002015 /* update the hw version fpr dpm */
2016 radeon_crtc->hw_mode = *adjusted_mode;
2017
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002018 return 0;
2019}
2020
2021static bool atombios_crtc_mode_fixup(struct drm_crtc *crtc,
Laurent Pincharte811f5a2012-07-17 17:56:50 +02002022 const struct drm_display_mode *mode,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002023 struct drm_display_mode *adjusted_mode)
2024{
Alex Deucher5df31962012-09-13 11:52:08 -04002025 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
2026 struct drm_device *dev = crtc->dev;
2027 struct drm_encoder *encoder;
2028
2029 /* assign the encoder to the radeon crtc to avoid repeated lookups later */
2030 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
2031 if (encoder->crtc == crtc) {
2032 radeon_crtc->encoder = encoder;
Alex Deucher57b35e22012-09-17 17:34:45 -04002033 radeon_crtc->connector = radeon_get_connector_for_encoder(encoder);
Alex Deucher5df31962012-09-13 11:52:08 -04002034 break;
2035 }
2036 }
Alex Deucher57b35e22012-09-17 17:34:45 -04002037 if ((radeon_crtc->encoder == NULL) || (radeon_crtc->connector == NULL)) {
2038 radeon_crtc->encoder = NULL;
2039 radeon_crtc->connector = NULL;
Alex Deucher5df31962012-09-13 11:52:08 -04002040 return false;
Alex Deucher57b35e22012-09-17 17:34:45 -04002041 }
Jerome Glissec93bb852009-07-13 21:04:08 +02002042 if (!radeon_crtc_scaling_mode_fixup(crtc, mode, adjusted_mode))
2043 return false;
Alex Deucher19eca432012-09-13 10:56:16 -04002044 if (!atombios_crtc_prepare_pll(crtc, adjusted_mode))
2045 return false;
Alex Deucherc0fd0832012-09-14 12:30:51 -04002046 /* pick pll */
2047 radeon_crtc->pll_id = radeon_atom_pick_pll(crtc);
2048 /* if we can't get a PPLL for a non-DP encoder, fail */
2049 if ((radeon_crtc->pll_id == ATOM_PPLL_INVALID) &&
2050 !ENCODER_MODE_IS_DP(atombios_get_encoder_mode(radeon_crtc->encoder)))
2051 return false;
2052
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002053 return true;
2054}
2055
2056static void atombios_crtc_prepare(struct drm_crtc *crtc)
2057{
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04002058 struct drm_device *dev = crtc->dev;
2059 struct radeon_device *rdev = dev->dev_private;
Alex Deucher267364a2010-03-08 17:10:41 -05002060
Alex Deucher6c0ae2a2012-07-26 13:38:52 -04002061 /* disable crtc pair power gating before programming */
2062 if (ASIC_IS_DCE6(rdev))
2063 atombios_powergate_crtc(crtc, ATOM_DISABLE);
2064
Alex Deucher37b43902010-02-09 12:04:43 -05002065 atombios_lock_crtc(crtc, ATOM_ENABLE);
Alex Deuchera348c842010-01-21 16:50:30 -05002066 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002067}
2068
2069static void atombios_crtc_commit(struct drm_crtc *crtc)
2070{
2071 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
Alex Deucher37b43902010-02-09 12:04:43 -05002072 atombios_lock_crtc(crtc, ATOM_DISABLE);
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002073}
2074
Alex Deucher37f90032010-06-11 17:58:38 -04002075static void atombios_crtc_disable(struct drm_crtc *crtc)
2076{
2077 struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc);
Alex Deucher64199872012-03-20 17:18:33 -04002078 struct drm_device *dev = crtc->dev;
2079 struct radeon_device *rdev = dev->dev_private;
Alex Deucher8e8e5232011-05-20 04:34:16 -04002080 struct radeon_atom_ss ss;
Alex Deucher4e585912012-08-21 19:06:21 -04002081 int i;
Alex Deucher8e8e5232011-05-20 04:34:16 -04002082
Alex Deucher37f90032010-06-11 17:58:38 -04002083 atombios_crtc_dpms(crtc, DRM_MODE_DPMS_OFF);
Matt Roperf4510a22014-04-01 15:22:40 -07002084 if (crtc->primary->fb) {
Ilija Hadzic75b871e2013-11-02 23:00:19 -04002085 int r;
2086 struct radeon_framebuffer *radeon_fb;
2087 struct radeon_bo *rbo;
2088
Matt Roperf4510a22014-04-01 15:22:40 -07002089 radeon_fb = to_radeon_framebuffer(crtc->primary->fb);
Ilija Hadzic75b871e2013-11-02 23:00:19 -04002090 rbo = gem_to_radeon_bo(radeon_fb->obj);
2091 r = radeon_bo_reserve(rbo, false);
2092 if (unlikely(r))
2093 DRM_ERROR("failed to reserve rbo before unpin\n");
2094 else {
2095 radeon_bo_unpin(rbo);
2096 radeon_bo_unreserve(rbo);
2097 }
2098 }
Alex Deucherac4d04d2013-08-21 14:44:15 -04002099 /* disable the GRPH */
2100 if (ASIC_IS_DCE4(rdev))
2101 WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 0);
2102 else if (ASIC_IS_AVIVO(rdev))
2103 WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 0);
2104
Alex Deucher0e3d50b2013-02-05 11:47:09 -05002105 if (ASIC_IS_DCE6(rdev))
2106 atombios_powergate_crtc(crtc, ATOM_ENABLE);
Alex Deucher37f90032010-06-11 17:58:38 -04002107
Alex Deucher4e585912012-08-21 19:06:21 -04002108 for (i = 0; i < rdev->num_crtc; i++) {
2109 if (rdev->mode_info.crtcs[i] &&
2110 rdev->mode_info.crtcs[i]->enabled &&
2111 i != radeon_crtc->crtc_id &&
2112 radeon_crtc->pll_id == rdev->mode_info.crtcs[i]->pll_id) {
2113 /* one other crtc is using this pll don't turn
2114 * off the pll
2115 */
2116 goto done;
2117 }
2118 }
2119
Alex Deucher37f90032010-06-11 17:58:38 -04002120 switch (radeon_crtc->pll_id) {
2121 case ATOM_PPLL1:
2122 case ATOM_PPLL2:
2123 /* disable the ppll */
2124 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
Alex Deucher8e8e5232011-05-20 04:34:16 -04002125 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
Alex Deucher37f90032010-06-11 17:58:38 -04002126 break;
Alex Deucher64199872012-03-20 17:18:33 -04002127 case ATOM_PPLL0:
2128 /* disable the ppll */
Alex Deucher7eeeabf2013-08-19 10:22:26 -04002129 if ((rdev->family == CHIP_ARUBA) ||
2130 (rdev->family == CHIP_BONAIRE) ||
2131 (rdev->family == CHIP_HAWAII))
Alex Deucher64199872012-03-20 17:18:33 -04002132 atombios_crtc_program_pll(crtc, radeon_crtc->crtc_id, radeon_crtc->pll_id,
2133 0, 0, ATOM_DISABLE, 0, 0, 0, 0, 0, false, &ss);
2134 break;
Alex Deucher37f90032010-06-11 17:58:38 -04002135 default:
2136 break;
2137 }
Alex Deucher4e585912012-08-21 19:06:21 -04002138done:
Alex Deucherf3dd8502012-08-31 11:56:50 -04002139 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04002140 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04002141 radeon_crtc->encoder = NULL;
Alex Deucher57b35e22012-09-17 17:34:45 -04002142 radeon_crtc->connector = NULL;
Alex Deucher37f90032010-06-11 17:58:38 -04002143}
2144
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002145static const struct drm_crtc_helper_funcs atombios_helper_funcs = {
2146 .dpms = atombios_crtc_dpms,
2147 .mode_fixup = atombios_crtc_mode_fixup,
2148 .mode_set = atombios_crtc_mode_set,
2149 .mode_set_base = atombios_crtc_set_base,
Chris Ball4dd19b02010-09-26 06:47:23 -05002150 .mode_set_base_atomic = atombios_crtc_set_base_atomic,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002151 .prepare = atombios_crtc_prepare,
2152 .commit = atombios_crtc_commit,
Dave Airlie068143d2009-10-05 09:58:02 +10002153 .load_lut = radeon_crtc_load_lut,
Alex Deucher37f90032010-06-11 17:58:38 -04002154 .disable = atombios_crtc_disable,
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002155};
2156
2157void radeon_atombios_init_crtc(struct drm_device *dev,
2158 struct radeon_crtc *radeon_crtc)
2159{
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002160 struct radeon_device *rdev = dev->dev_private;
2161
2162 if (ASIC_IS_DCE4(rdev)) {
2163 switch (radeon_crtc->crtc_id) {
2164 case 0:
2165 default:
Alex Deucher12d77982010-02-09 17:18:48 -05002166 radeon_crtc->crtc_offset = EVERGREEN_CRTC0_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002167 break;
2168 case 1:
Alex Deucher12d77982010-02-09 17:18:48 -05002169 radeon_crtc->crtc_offset = EVERGREEN_CRTC1_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002170 break;
2171 case 2:
Alex Deucher12d77982010-02-09 17:18:48 -05002172 radeon_crtc->crtc_offset = EVERGREEN_CRTC2_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002173 break;
2174 case 3:
Alex Deucher12d77982010-02-09 17:18:48 -05002175 radeon_crtc->crtc_offset = EVERGREEN_CRTC3_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002176 break;
2177 case 4:
Alex Deucher12d77982010-02-09 17:18:48 -05002178 radeon_crtc->crtc_offset = EVERGREEN_CRTC4_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002179 break;
2180 case 5:
Alex Deucher12d77982010-02-09 17:18:48 -05002181 radeon_crtc->crtc_offset = EVERGREEN_CRTC5_REGISTER_OFFSET;
Alex Deucherbcc1c2a2010-01-12 17:54:34 -05002182 break;
2183 }
2184 } else {
2185 if (radeon_crtc->crtc_id == 1)
2186 radeon_crtc->crtc_offset =
2187 AVIVO_D2CRTC_H_TOTAL - AVIVO_D1CRTC_H_TOTAL;
2188 else
2189 radeon_crtc->crtc_offset = 0;
2190 }
Alex Deucherf3dd8502012-08-31 11:56:50 -04002191 radeon_crtc->pll_id = ATOM_PPLL_INVALID;
Alex Deucher9642ac02012-09-13 12:43:41 -04002192 radeon_crtc->adjusted_clock = 0;
Alex Deucher5df31962012-09-13 11:52:08 -04002193 radeon_crtc->encoder = NULL;
Alex Deucher57b35e22012-09-17 17:34:45 -04002194 radeon_crtc->connector = NULL;
Jerome Glisse771fe6b2009-06-05 14:42:42 +02002195 drm_crtc_helper_add(&radeon_crtc->base, &atombios_helper_funcs);
2196}