blob: 0b1a411cb89e9ec2c0a5db73de227f9e5b646678 [file] [log] [blame]
Dave Airlief9aa76a2012-04-17 14:12:29 +01001
2/*
3 * Copyright 2012 Red Hat
4 *
5 * This file is subject to the terms and conditions of the GNU General
6 * Public License version 2. See the file COPYING in the main
7 * directory of this archive for more details.
8 *
9 * Authors: Matthew Garrett
10 * Dave Airlie
11 *
12 * Portions of this code derived from cirrusfb.c:
13 * drivers/video/cirrusfb.c - driver for Cirrus Logic chipsets
14 *
15 * Copyright 1999-2001 Jeff Garzik <jgarzik@pobox.com>
16 */
David Howells760285e2012-10-02 18:01:07 +010017#include <drm/drmP.h>
18#include <drm/drm_crtc_helper.h>
Daniel Vetter3cb9ae42014-10-29 10:03:57 +010019#include <drm/drm_plane_helper.h>
Dave Airlief9aa76a2012-04-17 14:12:29 +010020
21#include <video/cirrus.h>
22
23#include "cirrus_drv.h"
24
25#define CIRRUS_LUT_SIZE 256
26
27#define PALETTE_INDEX 0x8
28#define PALETTE_DATA 0x9
29
30/*
31 * This file contains setup code for the CRTC.
32 */
33
34static void cirrus_crtc_load_lut(struct drm_crtc *crtc)
35{
36 struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
37 struct drm_device *dev = crtc->dev;
38 struct cirrus_device *cdev = dev->dev_private;
39 int i;
40
41 if (!crtc->enabled)
42 return;
43
44 for (i = 0; i < CIRRUS_LUT_SIZE; i++) {
45 /* VGA registers */
46 WREG8(PALETTE_INDEX, i);
47 WREG8(PALETTE_DATA, cirrus_crtc->lut_r[i]);
48 WREG8(PALETTE_DATA, cirrus_crtc->lut_g[i]);
49 WREG8(PALETTE_DATA, cirrus_crtc->lut_b[i]);
50 }
51}
52
53/*
54 * The DRM core requires DPMS functions, but they make little sense in our
55 * case and so are just stubs
56 */
57
58static void cirrus_crtc_dpms(struct drm_crtc *crtc, int mode)
59{
60 struct drm_device *dev = crtc->dev;
61 struct cirrus_device *cdev = dev->dev_private;
62 u8 sr01, gr0e;
63
64 switch (mode) {
65 case DRM_MODE_DPMS_ON:
66 sr01 = 0x00;
67 gr0e = 0x00;
68 break;
69 case DRM_MODE_DPMS_STANDBY:
70 sr01 = 0x20;
71 gr0e = 0x02;
72 break;
73 case DRM_MODE_DPMS_SUSPEND:
74 sr01 = 0x20;
75 gr0e = 0x04;
76 break;
77 case DRM_MODE_DPMS_OFF:
78 sr01 = 0x20;
79 gr0e = 0x06;
80 break;
81 default:
82 return;
83 }
84
85 WREG8(SEQ_INDEX, 0x1);
86 sr01 |= RREG8(SEQ_DATA) & ~0x20;
87 WREG_SEQ(0x1, sr01);
88
89 WREG8(GFX_INDEX, 0xe);
90 gr0e |= RREG8(GFX_DATA) & ~0x06;
91 WREG_GFX(0xe, gr0e);
92}
93
Rashika5e894402014-01-06 20:30:14 +053094static void cirrus_set_start_address(struct drm_crtc *crtc, unsigned offset)
Dave Airlief9aa76a2012-04-17 14:12:29 +010095{
96 struct cirrus_device *cdev = crtc->dev->dev_private;
97 u32 addr;
98 u8 tmp;
99
100 addr = offset >> 2;
101 WREG_CRT(0x0c, (u8)((addr >> 8) & 0xff));
102 WREG_CRT(0x0d, (u8)(addr & 0xff));
103
104 WREG8(CRT_INDEX, 0x1b);
105 tmp = RREG8(CRT_DATA);
106 tmp &= 0xf2;
107 tmp |= (addr >> 16) & 0x01;
108 tmp |= (addr >> 15) & 0x0c;
109 WREG_CRT(0x1b, tmp);
110 WREG8(CRT_INDEX, 0x1d);
111 tmp = RREG8(CRT_DATA);
112 tmp &= 0x7f;
113 tmp |= (addr >> 12) & 0x80;
114 WREG_CRT(0x1d, tmp);
115}
116
117/* cirrus is different - we will force move buffers out of VRAM */
118static int cirrus_crtc_do_set_base(struct drm_crtc *crtc,
119 struct drm_framebuffer *fb,
120 int x, int y, int atomic)
121{
122 struct cirrus_device *cdev = crtc->dev->dev_private;
123 struct drm_gem_object *obj;
124 struct cirrus_framebuffer *cirrus_fb;
125 struct cirrus_bo *bo;
126 int ret;
127 u64 gpu_addr;
128
129 /* push the previous fb to system ram */
130 if (!atomic && fb) {
131 cirrus_fb = to_cirrus_framebuffer(fb);
132 obj = cirrus_fb->obj;
133 bo = gem_to_cirrus_bo(obj);
134 ret = cirrus_bo_reserve(bo, false);
135 if (ret)
136 return ret;
137 cirrus_bo_push_sysram(bo);
138 cirrus_bo_unreserve(bo);
139 }
140
Matt Roperf4510a22014-04-01 15:22:40 -0700141 cirrus_fb = to_cirrus_framebuffer(crtc->primary->fb);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100142 obj = cirrus_fb->obj;
143 bo = gem_to_cirrus_bo(obj);
144
145 ret = cirrus_bo_reserve(bo, false);
146 if (ret)
147 return ret;
148
149 ret = cirrus_bo_pin(bo, TTM_PL_FLAG_VRAM, &gpu_addr);
150 if (ret) {
151 cirrus_bo_unreserve(bo);
152 return ret;
153 }
154
155 if (&cdev->mode_info.gfbdev->gfb == cirrus_fb) {
156 /* if pushing console in kmap it */
157 ret = ttm_bo_kmap(&bo->bo, 0, bo->bo.num_pages, &bo->kmap);
158 if (ret)
159 DRM_ERROR("failed to kmap fbcon\n");
160 }
161 cirrus_bo_unreserve(bo);
162
163 cirrus_set_start_address(crtc, (u32)gpu_addr);
164 return 0;
165}
166
167static int cirrus_crtc_mode_set_base(struct drm_crtc *crtc, int x, int y,
168 struct drm_framebuffer *old_fb)
169{
170 return cirrus_crtc_do_set_base(crtc, old_fb, x, y, 0);
171}
172
173/*
174 * The meat of this driver. The core passes us a mode and we have to program
175 * it. The modesetting here is the bare minimum required to satisfy the qemu
176 * emulation of this hardware, and running this against a real device is
177 * likely to result in an inadequately programmed mode. We've already had
178 * the opportunity to modify the mode, so whatever we receive here should
179 * be something that can be correctly programmed and displayed
180 */
181static int cirrus_crtc_mode_set(struct drm_crtc *crtc,
182 struct drm_display_mode *mode,
183 struct drm_display_mode *adjusted_mode,
184 int x, int y, struct drm_framebuffer *old_fb)
185{
186 struct drm_device *dev = crtc->dev;
187 struct cirrus_device *cdev = dev->dev_private;
188 int hsyncstart, hsyncend, htotal, hdispend;
189 int vtotal, vdispend;
190 int tmp;
191 int sr07 = 0, hdr = 0;
192
193 htotal = mode->htotal / 8;
194 hsyncend = mode->hsync_end / 8;
195 hsyncstart = mode->hsync_start / 8;
196 hdispend = mode->hdisplay / 8;
197
198 vtotal = mode->vtotal;
199 vdispend = mode->vdisplay;
200
201 vdispend -= 1;
202 vtotal -= 2;
203
204 htotal -= 5;
205 hdispend -= 1;
206 hsyncstart += 1;
207 hsyncend += 1;
208
209 WREG_CRT(VGA_CRTC_V_SYNC_END, 0x20);
210 WREG_CRT(VGA_CRTC_H_TOTAL, htotal);
211 WREG_CRT(VGA_CRTC_H_DISP, hdispend);
212 WREG_CRT(VGA_CRTC_H_SYNC_START, hsyncstart);
213 WREG_CRT(VGA_CRTC_H_SYNC_END, hsyncend);
214 WREG_CRT(VGA_CRTC_V_TOTAL, vtotal & 0xff);
215 WREG_CRT(VGA_CRTC_V_DISP_END, vdispend & 0xff);
216
217 tmp = 0x40;
218 if ((vdispend + 1) & 512)
219 tmp |= 0x20;
220 WREG_CRT(VGA_CRTC_MAX_SCAN, tmp);
221
222 /*
223 * Overflow bits for values that don't fit in the standard registers
224 */
225 tmp = 16;
226 if (vtotal & 256)
227 tmp |= 1;
228 if (vdispend & 256)
229 tmp |= 2;
230 if ((vdispend + 1) & 256)
231 tmp |= 8;
232 if (vtotal & 512)
233 tmp |= 32;
234 if (vdispend & 512)
235 tmp |= 64;
236 WREG_CRT(VGA_CRTC_OVERFLOW, tmp);
237
238 tmp = 0;
239
240 /* More overflow bits */
241
242 if ((htotal + 5) & 64)
243 tmp |= 16;
244 if ((htotal + 5) & 128)
245 tmp |= 32;
246 if (vtotal & 256)
247 tmp |= 64;
248 if (vtotal & 512)
249 tmp |= 128;
250
251 WREG_CRT(CL_CRT1A, tmp);
252
253 /* Disable Hercules/CGA compatibility */
254 WREG_CRT(VGA_CRTC_MODE, 0x03);
255
256 WREG8(SEQ_INDEX, 0x7);
257 sr07 = RREG8(SEQ_DATA);
258 sr07 &= 0xe0;
259 hdr = 0;
Matt Roperf4510a22014-04-01 15:22:40 -0700260 switch (crtc->primary->fb->bits_per_pixel) {
Dave Airlief9aa76a2012-04-17 14:12:29 +0100261 case 8:
262 sr07 |= 0x11;
263 break;
264 case 16:
Takashi Iwai25105382014-01-21 14:34:51 -0800265 sr07 |= 0x17;
266 hdr = 0xc1;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100267 break;
268 case 24:
269 sr07 |= 0x15;
270 hdr = 0xc5;
271 break;
272 case 32:
273 sr07 |= 0x19;
274 hdr = 0xc5;
275 break;
276 default:
277 return -1;
278 }
279
280 WREG_SEQ(0x7, sr07);
281
282 /* Program the pitch */
Matt Roperf4510a22014-04-01 15:22:40 -0700283 tmp = crtc->primary->fb->pitches[0] / 8;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100284 WREG_CRT(VGA_CRTC_OFFSET, tmp);
285
286 /* Enable extended blanking and pitch bits, and enable full memory */
287 tmp = 0x22;
Matt Roperf4510a22014-04-01 15:22:40 -0700288 tmp |= (crtc->primary->fb->pitches[0] >> 7) & 0x10;
289 tmp |= (crtc->primary->fb->pitches[0] >> 6) & 0x40;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100290 WREG_CRT(0x1b, tmp);
291
292 /* Enable high-colour modes */
293 WREG_GFX(VGA_GFX_MODE, 0x40);
294
295 /* And set graphics mode */
296 WREG_GFX(VGA_GFX_MISC, 0x01);
297
298 WREG_HDR(hdr);
299 cirrus_crtc_do_set_base(crtc, old_fb, x, y, 0);
Gerd Hoffmann2f1e8002014-04-14 11:34:48 +0200300
301 /* Unblank (needed on S3 resume, vgabios doesn't do it then) */
302 outb(0x20, 0x3c0);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100303 return 0;
304}
305
306/*
307 * This is called before a mode is programmed. A typical use might be to
308 * enable DPMS during the programming to avoid seeing intermediate stages,
309 * but that's not relevant to us
310 */
311static void cirrus_crtc_prepare(struct drm_crtc *crtc)
312{
313}
314
315/*
316 * This is called after a mode is programmed. It should reverse anything done
317 * by the prepare function
318 */
319static void cirrus_crtc_commit(struct drm_crtc *crtc)
320{
321}
322
323/*
324 * The core can pass us a set of gamma values to program. We actually only
325 * use this for 8-bit mode so can't perform smooth fades on deeper modes,
326 * but it's a requirement that we provide the function
327 */
328static void cirrus_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
329 u16 *blue, uint32_t start, uint32_t size)
330{
331 struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
332 int i;
333
Dave Airlief9aa76a2012-04-17 14:12:29 +0100334 for (i = 0; i < CIRRUS_LUT_SIZE; i++) {
335 cirrus_crtc->lut_r[i] = red[i];
336 cirrus_crtc->lut_g[i] = green[i];
337 cirrus_crtc->lut_b[i] = blue[i];
338 }
339 cirrus_crtc_load_lut(crtc);
340}
341
342/* Simple cleanup function */
343static void cirrus_crtc_destroy(struct drm_crtc *crtc)
344{
345 struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
346
347 drm_crtc_cleanup(crtc);
348 kfree(cirrus_crtc);
349}
350
351/* These provide the minimum set of functions required to handle a CRTC */
352static const struct drm_crtc_funcs cirrus_crtc_funcs = {
353 .gamma_set = cirrus_crtc_gamma_set,
354 .set_config = drm_crtc_helper_set_config,
355 .destroy = cirrus_crtc_destroy,
356};
357
358static const struct drm_crtc_helper_funcs cirrus_helper_funcs = {
359 .dpms = cirrus_crtc_dpms,
Dave Airlief9aa76a2012-04-17 14:12:29 +0100360 .mode_set = cirrus_crtc_mode_set,
361 .mode_set_base = cirrus_crtc_mode_set_base,
362 .prepare = cirrus_crtc_prepare,
363 .commit = cirrus_crtc_commit,
364 .load_lut = cirrus_crtc_load_lut,
365};
366
367/* CRTC setup */
368static void cirrus_crtc_init(struct drm_device *dev)
369{
370 struct cirrus_device *cdev = dev->dev_private;
371 struct cirrus_crtc *cirrus_crtc;
372 int i;
373
374 cirrus_crtc = kzalloc(sizeof(struct cirrus_crtc) +
375 (CIRRUSFB_CONN_LIMIT * sizeof(struct drm_connector *)),
376 GFP_KERNEL);
377
378 if (cirrus_crtc == NULL)
379 return;
380
381 drm_crtc_init(dev, &cirrus_crtc->base, &cirrus_crtc_funcs);
382
383 drm_mode_crtc_set_gamma_size(&cirrus_crtc->base, CIRRUS_LUT_SIZE);
384 cdev->mode_info.crtc = cirrus_crtc;
385
386 for (i = 0; i < CIRRUS_LUT_SIZE; i++) {
387 cirrus_crtc->lut_r[i] = i;
388 cirrus_crtc->lut_g[i] = i;
389 cirrus_crtc->lut_b[i] = i;
390 }
391
392 drm_crtc_helper_add(&cirrus_crtc->base, &cirrus_helper_funcs);
393}
394
395/** Sets the color ramps on behalf of fbcon */
396void cirrus_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
397 u16 blue, int regno)
398{
399 struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
400
401 cirrus_crtc->lut_r[regno] = red;
402 cirrus_crtc->lut_g[regno] = green;
403 cirrus_crtc->lut_b[regno] = blue;
404}
405
406/** Gets the color ramps on behalf of fbcon */
407void cirrus_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
408 u16 *blue, int regno)
409{
410 struct cirrus_crtc *cirrus_crtc = to_cirrus_crtc(crtc);
411
412 *red = cirrus_crtc->lut_r[regno];
413 *green = cirrus_crtc->lut_g[regno];
414 *blue = cirrus_crtc->lut_b[regno];
415}
416
Dave Airlief9aa76a2012-04-17 14:12:29 +0100417static void cirrus_encoder_mode_set(struct drm_encoder *encoder,
418 struct drm_display_mode *mode,
419 struct drm_display_mode *adjusted_mode)
420{
421}
422
423static void cirrus_encoder_dpms(struct drm_encoder *encoder, int state)
424{
425 return;
426}
427
428static void cirrus_encoder_prepare(struct drm_encoder *encoder)
429{
430}
431
432static void cirrus_encoder_commit(struct drm_encoder *encoder)
433{
434}
435
Rashika5e894402014-01-06 20:30:14 +0530436static void cirrus_encoder_destroy(struct drm_encoder *encoder)
Dave Airlief9aa76a2012-04-17 14:12:29 +0100437{
438 struct cirrus_encoder *cirrus_encoder = to_cirrus_encoder(encoder);
439 drm_encoder_cleanup(encoder);
440 kfree(cirrus_encoder);
441}
442
443static const struct drm_encoder_helper_funcs cirrus_encoder_helper_funcs = {
444 .dpms = cirrus_encoder_dpms,
Dave Airlief9aa76a2012-04-17 14:12:29 +0100445 .mode_set = cirrus_encoder_mode_set,
446 .prepare = cirrus_encoder_prepare,
447 .commit = cirrus_encoder_commit,
448};
449
450static const struct drm_encoder_funcs cirrus_encoder_encoder_funcs = {
451 .destroy = cirrus_encoder_destroy,
452};
453
454static struct drm_encoder *cirrus_encoder_init(struct drm_device *dev)
455{
456 struct drm_encoder *encoder;
457 struct cirrus_encoder *cirrus_encoder;
458
459 cirrus_encoder = kzalloc(sizeof(struct cirrus_encoder), GFP_KERNEL);
460 if (!cirrus_encoder)
461 return NULL;
462
463 encoder = &cirrus_encoder->base;
464 encoder->possible_crtcs = 0x1;
465
466 drm_encoder_init(dev, encoder, &cirrus_encoder_encoder_funcs,
Ville Syrjälä13a3d912015-12-09 16:20:18 +0200467 DRM_MODE_ENCODER_DAC, NULL);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100468 drm_encoder_helper_add(encoder, &cirrus_encoder_helper_funcs);
469
470 return encoder;
471}
472
473
Rashika5e894402014-01-06 20:30:14 +0530474static int cirrus_vga_get_modes(struct drm_connector *connector)
Dave Airlief9aa76a2012-04-17 14:12:29 +0100475{
Gerd Hoffmann121a6a12013-10-11 10:01:09 +0200476 int count;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100477
Gerd Hoffmann121a6a12013-10-11 10:01:09 +0200478 /* Just add a static list of modes */
Takashi Iwai7f551b12015-02-03 17:51:23 +0100479 if (cirrus_bpp <= 24) {
480 count = drm_add_modes_noedid(connector, 1280, 1024);
481 drm_set_preferred_mode(connector, 1024, 768);
482 } else {
483 count = drm_add_modes_noedid(connector, 800, 600);
484 drm_set_preferred_mode(connector, 800, 600);
485 }
Gerd Hoffmann121a6a12013-10-11 10:01:09 +0200486 return count;
Dave Airlief9aa76a2012-04-17 14:12:29 +0100487}
488
Rashika5e894402014-01-06 20:30:14 +0530489static struct drm_encoder *cirrus_connector_best_encoder(struct drm_connector
Dave Airlief9aa76a2012-04-17 14:12:29 +0100490 *connector)
491{
492 int enc_id = connector->encoder_ids[0];
Dave Airlief9aa76a2012-04-17 14:12:29 +0100493 /* pick the encoder ids */
Rob Clarkef13aec2014-07-17 23:29:58 -0400494 if (enc_id)
495 return drm_encoder_find(connector->dev, enc_id);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100496 return NULL;
497}
498
499static enum drm_connector_status cirrus_vga_detect(struct drm_connector
500 *connector, bool force)
501{
502 return connector_status_connected;
503}
504
505static void cirrus_connector_destroy(struct drm_connector *connector)
506{
507 drm_connector_cleanup(connector);
508 kfree(connector);
509}
510
Ville Syrjäläc8770902015-12-15 12:21:05 +0100511static const struct drm_connector_helper_funcs cirrus_vga_connector_helper_funcs = {
Dave Airlief9aa76a2012-04-17 14:12:29 +0100512 .get_modes = cirrus_vga_get_modes,
Dave Airlief9aa76a2012-04-17 14:12:29 +0100513 .best_encoder = cirrus_connector_best_encoder,
514};
515
Ville Syrjäläc8770902015-12-15 12:21:05 +0100516static const struct drm_connector_funcs cirrus_vga_connector_funcs = {
Dave Airlief9aa76a2012-04-17 14:12:29 +0100517 .dpms = drm_helper_connector_dpms,
518 .detect = cirrus_vga_detect,
519 .fill_modes = drm_helper_probe_single_connector_modes,
520 .destroy = cirrus_connector_destroy,
521};
522
523static struct drm_connector *cirrus_vga_init(struct drm_device *dev)
524{
525 struct drm_connector *connector;
526 struct cirrus_connector *cirrus_connector;
527
528 cirrus_connector = kzalloc(sizeof(struct cirrus_connector), GFP_KERNEL);
529 if (!cirrus_connector)
530 return NULL;
531
532 connector = &cirrus_connector->base;
533
534 drm_connector_init(dev, connector,
535 &cirrus_vga_connector_funcs, DRM_MODE_CONNECTOR_VGA);
536
537 drm_connector_helper_add(connector, &cirrus_vga_connector_helper_funcs);
538
Gerd Hoffmannc5267092014-09-19 10:11:36 +0200539 drm_connector_register(connector);
Dave Airlief9aa76a2012-04-17 14:12:29 +0100540 return connector;
541}
542
543
544int cirrus_modeset_init(struct cirrus_device *cdev)
545{
546 struct drm_encoder *encoder;
547 struct drm_connector *connector;
548 int ret;
549
550 drm_mode_config_init(cdev->dev);
551 cdev->mode_info.mode_config_initialized = true;
552
553 cdev->dev->mode_config.max_width = CIRRUS_MAX_FB_WIDTH;
554 cdev->dev->mode_config.max_height = CIRRUS_MAX_FB_HEIGHT;
555
556 cdev->dev->mode_config.fb_base = cdev->mc.vram_base;
557 cdev->dev->mode_config.preferred_depth = 24;
558 /* don't prefer a shadow on virt GPU */
559 cdev->dev->mode_config.prefer_shadow = 0;
560
561 cirrus_crtc_init(cdev->dev);
562
563 encoder = cirrus_encoder_init(cdev->dev);
564 if (!encoder) {
565 DRM_ERROR("cirrus_encoder_init failed\n");
566 return -1;
567 }
568
569 connector = cirrus_vga_init(cdev->dev);
570 if (!connector) {
571 DRM_ERROR("cirrus_vga_init failed\n");
572 return -1;
573 }
574
575 drm_mode_connector_attach_encoder(connector, encoder);
576
577 ret = cirrus_fbdev_init(cdev);
578 if (ret) {
579 DRM_ERROR("cirrus_fbdev_init failed\n");
580 return ret;
581 }
582
583 return 0;
584}
585
586void cirrus_modeset_fini(struct cirrus_device *cdev)
587{
588 cirrus_fbdev_fini(cdev);
589
590 if (cdev->mode_info.mode_config_initialized) {
591 drm_mode_config_cleanup(cdev->dev);
592 cdev->mode_info.mode_config_initialized = false;
593 }
594}