3 * Copyright 2012 Red Hat
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.
9 * Authors: Matthew Garrett
12 * Portions of this code derived from cirrusfb.c:
13 * drivers/video/cirrusfb.c - driver for Cirrus Logic chipsets
15 * Copyright 1999-2001 Jeff Garzik <jgarzik@pobox.com>
18 #include <drm/drm_crtc_helper.h>
19 #include <drm/drm_plane_helper.h>
21 #include <video/cirrus.h>
23 #include "cirrus_drv.h"
25 #define CIRRUS_LUT_SIZE 256
27 #define PALETTE_INDEX 0x8
28 #define PALETTE_DATA 0x9
31 * This file contains setup code for the CRTC.
35 * The DRM core requires DPMS functions, but they make little sense in our
36 * case and so are just stubs
39 static void cirrus_crtc_dpms(struct drm_crtc
*crtc
, int mode
)
41 struct drm_device
*dev
= crtc
->dev
;
42 struct cirrus_device
*cdev
= dev
->dev_private
;
46 case DRM_MODE_DPMS_ON
:
50 case DRM_MODE_DPMS_STANDBY
:
54 case DRM_MODE_DPMS_SUSPEND
:
58 case DRM_MODE_DPMS_OFF
:
66 WREG8(SEQ_INDEX
, 0x1);
67 sr01
|= RREG8(SEQ_DATA
) & ~0x20;
70 WREG8(GFX_INDEX
, 0xe);
71 gr0e
|= RREG8(GFX_DATA
) & ~0x06;
75 static void cirrus_set_start_address(struct drm_crtc
*crtc
, unsigned offset
)
77 struct cirrus_device
*cdev
= crtc
->dev
->dev_private
;
82 WREG_CRT(0x0c, (u8
)((addr
>> 8) & 0xff));
83 WREG_CRT(0x0d, (u8
)(addr
& 0xff));
85 WREG8(CRT_INDEX
, 0x1b);
86 tmp
= RREG8(CRT_DATA
);
88 tmp
|= (addr
>> 16) & 0x01;
89 tmp
|= (addr
>> 15) & 0x0c;
91 WREG8(CRT_INDEX
, 0x1d);
92 tmp
= RREG8(CRT_DATA
);
94 tmp
|= (addr
>> 12) & 0x80;
98 /* cirrus is different - we will force move buffers out of VRAM */
99 static int cirrus_crtc_do_set_base(struct drm_crtc
*crtc
,
100 struct drm_framebuffer
*fb
,
101 int x
, int y
, int atomic
)
103 struct cirrus_device
*cdev
= crtc
->dev
->dev_private
;
104 struct cirrus_bo
*bo
;
108 /* push the previous fb to system ram */
110 bo
= gem_to_cirrus_bo(fb
->obj
[0]);
111 ret
= cirrus_bo_reserve(bo
, false);
114 cirrus_bo_push_sysram(bo
);
115 cirrus_bo_unreserve(bo
);
118 bo
= gem_to_cirrus_bo(crtc
->primary
->fb
->obj
[0]);
120 ret
= cirrus_bo_reserve(bo
, false);
124 ret
= cirrus_bo_pin(bo
, TTM_PL_FLAG_VRAM
, &gpu_addr
);
126 cirrus_bo_unreserve(bo
);
130 if (cdev
->mode_info
.gfbdev
->gfb
== crtc
->primary
->fb
) {
131 /* if pushing console in kmap it */
132 ret
= ttm_bo_kmap(&bo
->bo
, 0, bo
->bo
.num_pages
, &bo
->kmap
);
134 DRM_ERROR("failed to kmap fbcon\n");
136 cirrus_bo_unreserve(bo
);
138 cirrus_set_start_address(crtc
, (u32
)gpu_addr
);
142 static int cirrus_crtc_mode_set_base(struct drm_crtc
*crtc
, int x
, int y
,
143 struct drm_framebuffer
*old_fb
)
145 return cirrus_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
149 * The meat of this driver. The core passes us a mode and we have to program
150 * it. The modesetting here is the bare minimum required to satisfy the qemu
151 * emulation of this hardware, and running this against a real device is
152 * likely to result in an inadequately programmed mode. We've already had
153 * the opportunity to modify the mode, so whatever we receive here should
154 * be something that can be correctly programmed and displayed
156 static int cirrus_crtc_mode_set(struct drm_crtc
*crtc
,
157 struct drm_display_mode
*mode
,
158 struct drm_display_mode
*adjusted_mode
,
159 int x
, int y
, struct drm_framebuffer
*old_fb
)
161 struct drm_device
*dev
= crtc
->dev
;
162 struct cirrus_device
*cdev
= dev
->dev_private
;
163 const struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
164 int hsyncstart
, hsyncend
, htotal
, hdispend
;
165 int vtotal
, vdispend
;
167 int sr07
= 0, hdr
= 0;
169 htotal
= mode
->htotal
/ 8;
170 hsyncend
= mode
->hsync_end
/ 8;
171 hsyncstart
= mode
->hsync_start
/ 8;
172 hdispend
= mode
->hdisplay
/ 8;
174 vtotal
= mode
->vtotal
;
175 vdispend
= mode
->vdisplay
;
185 WREG_CRT(VGA_CRTC_V_SYNC_END
, 0x20);
186 WREG_CRT(VGA_CRTC_H_TOTAL
, htotal
);
187 WREG_CRT(VGA_CRTC_H_DISP
, hdispend
);
188 WREG_CRT(VGA_CRTC_H_SYNC_START
, hsyncstart
);
189 WREG_CRT(VGA_CRTC_H_SYNC_END
, hsyncend
);
190 WREG_CRT(VGA_CRTC_V_TOTAL
, vtotal
& 0xff);
191 WREG_CRT(VGA_CRTC_V_DISP_END
, vdispend
& 0xff);
194 if ((vdispend
+ 1) & 512)
196 WREG_CRT(VGA_CRTC_MAX_SCAN
, tmp
);
199 * Overflow bits for values that don't fit in the standard registers
206 if ((vdispend
+ 1) & 256)
212 WREG_CRT(VGA_CRTC_OVERFLOW
, tmp
);
216 /* More overflow bits */
218 if ((htotal
+ 5) & 64)
220 if ((htotal
+ 5) & 128)
227 WREG_CRT(CL_CRT1A
, tmp
);
229 /* Disable Hercules/CGA compatibility */
230 WREG_CRT(VGA_CRTC_MODE
, 0x03);
232 WREG8(SEQ_INDEX
, 0x7);
233 sr07
= RREG8(SEQ_DATA
);
236 switch (fb
->format
->cpp
[0] * 8) {
258 /* Program the pitch */
259 tmp
= fb
->pitches
[0] / 8;
260 WREG_CRT(VGA_CRTC_OFFSET
, tmp
);
262 /* Enable extended blanking and pitch bits, and enable full memory */
264 tmp
|= (fb
->pitches
[0] >> 7) & 0x10;
265 tmp
|= (fb
->pitches
[0] >> 6) & 0x40;
268 /* Enable high-colour modes */
269 WREG_GFX(VGA_GFX_MODE
, 0x40);
271 /* And set graphics mode */
272 WREG_GFX(VGA_GFX_MISC
, 0x01);
275 cirrus_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
277 /* Unblank (needed on S3 resume, vgabios doesn't do it then) */
283 * This is called before a mode is programmed. A typical use might be to
284 * enable DPMS during the programming to avoid seeing intermediate stages,
285 * but that's not relevant to us
287 static void cirrus_crtc_prepare(struct drm_crtc
*crtc
)
291 static void cirrus_crtc_load_lut(struct drm_crtc
*crtc
)
293 struct drm_device
*dev
= crtc
->dev
;
294 struct cirrus_device
*cdev
= dev
->dev_private
;
301 r
= crtc
->gamma_store
;
302 g
= r
+ crtc
->gamma_size
;
303 b
= g
+ crtc
->gamma_size
;
305 for (i
= 0; i
< CIRRUS_LUT_SIZE
; i
++) {
307 WREG8(PALETTE_INDEX
, i
);
308 WREG8(PALETTE_DATA
, *r
++ >> 8);
309 WREG8(PALETTE_DATA
, *g
++ >> 8);
310 WREG8(PALETTE_DATA
, *b
++ >> 8);
315 * This is called after a mode is programmed. It should reverse anything done
316 * by the prepare function
318 static void cirrus_crtc_commit(struct drm_crtc
*crtc
)
320 cirrus_crtc_load_lut(crtc
);
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
328 static int cirrus_crtc_gamma_set(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
329 u16
*blue
, uint32_t size
,
330 struct drm_modeset_acquire_ctx
*ctx
)
332 cirrus_crtc_load_lut(crtc
);
337 /* Simple cleanup function */
338 static void cirrus_crtc_destroy(struct drm_crtc
*crtc
)
340 struct cirrus_crtc
*cirrus_crtc
= to_cirrus_crtc(crtc
);
342 drm_crtc_cleanup(crtc
);
346 /* These provide the minimum set of functions required to handle a CRTC */
347 static const struct drm_crtc_funcs cirrus_crtc_funcs
= {
348 .gamma_set
= cirrus_crtc_gamma_set
,
349 .set_config
= drm_crtc_helper_set_config
,
350 .destroy
= cirrus_crtc_destroy
,
353 static const struct drm_crtc_helper_funcs cirrus_helper_funcs
= {
354 .dpms
= cirrus_crtc_dpms
,
355 .mode_set
= cirrus_crtc_mode_set
,
356 .mode_set_base
= cirrus_crtc_mode_set_base
,
357 .prepare
= cirrus_crtc_prepare
,
358 .commit
= cirrus_crtc_commit
,
362 static void cirrus_crtc_init(struct drm_device
*dev
)
364 struct cirrus_device
*cdev
= dev
->dev_private
;
365 struct cirrus_crtc
*cirrus_crtc
;
367 cirrus_crtc
= kzalloc(sizeof(struct cirrus_crtc
) +
368 (CIRRUSFB_CONN_LIMIT
* sizeof(struct drm_connector
*)),
371 if (cirrus_crtc
== NULL
)
374 drm_crtc_init(dev
, &cirrus_crtc
->base
, &cirrus_crtc_funcs
);
376 drm_mode_crtc_set_gamma_size(&cirrus_crtc
->base
, CIRRUS_LUT_SIZE
);
377 cdev
->mode_info
.crtc
= cirrus_crtc
;
379 drm_crtc_helper_add(&cirrus_crtc
->base
, &cirrus_helper_funcs
);
382 static void cirrus_encoder_mode_set(struct drm_encoder
*encoder
,
383 struct drm_display_mode
*mode
,
384 struct drm_display_mode
*adjusted_mode
)
388 static void cirrus_encoder_dpms(struct drm_encoder
*encoder
, int state
)
393 static void cirrus_encoder_prepare(struct drm_encoder
*encoder
)
397 static void cirrus_encoder_commit(struct drm_encoder
*encoder
)
401 static void cirrus_encoder_destroy(struct drm_encoder
*encoder
)
403 struct cirrus_encoder
*cirrus_encoder
= to_cirrus_encoder(encoder
);
404 drm_encoder_cleanup(encoder
);
405 kfree(cirrus_encoder
);
408 static const struct drm_encoder_helper_funcs cirrus_encoder_helper_funcs
= {
409 .dpms
= cirrus_encoder_dpms
,
410 .mode_set
= cirrus_encoder_mode_set
,
411 .prepare
= cirrus_encoder_prepare
,
412 .commit
= cirrus_encoder_commit
,
415 static const struct drm_encoder_funcs cirrus_encoder_encoder_funcs
= {
416 .destroy
= cirrus_encoder_destroy
,
419 static struct drm_encoder
*cirrus_encoder_init(struct drm_device
*dev
)
421 struct drm_encoder
*encoder
;
422 struct cirrus_encoder
*cirrus_encoder
;
424 cirrus_encoder
= kzalloc(sizeof(struct cirrus_encoder
), GFP_KERNEL
);
428 encoder
= &cirrus_encoder
->base
;
429 encoder
->possible_crtcs
= 0x1;
431 drm_encoder_init(dev
, encoder
, &cirrus_encoder_encoder_funcs
,
432 DRM_MODE_ENCODER_DAC
, NULL
);
433 drm_encoder_helper_add(encoder
, &cirrus_encoder_helper_funcs
);
439 static int cirrus_vga_get_modes(struct drm_connector
*connector
)
443 /* Just add a static list of modes */
444 if (cirrus_bpp
<= 24) {
445 count
= drm_add_modes_noedid(connector
, 1280, 1024);
446 drm_set_preferred_mode(connector
, 1024, 768);
448 count
= drm_add_modes_noedid(connector
, 800, 600);
449 drm_set_preferred_mode(connector
, 800, 600);
454 static struct drm_encoder
*cirrus_connector_best_encoder(struct drm_connector
457 int enc_id
= connector
->encoder_ids
[0];
458 /* pick the encoder ids */
460 return drm_encoder_find(connector
->dev
, NULL
, enc_id
);
464 static void cirrus_connector_destroy(struct drm_connector
*connector
)
466 drm_connector_cleanup(connector
);
470 static const struct drm_connector_helper_funcs cirrus_vga_connector_helper_funcs
= {
471 .get_modes
= cirrus_vga_get_modes
,
472 .best_encoder
= cirrus_connector_best_encoder
,
475 static const struct drm_connector_funcs cirrus_vga_connector_funcs
= {
476 .dpms
= drm_helper_connector_dpms
,
477 .fill_modes
= drm_helper_probe_single_connector_modes
,
478 .destroy
= cirrus_connector_destroy
,
481 static struct drm_connector
*cirrus_vga_init(struct drm_device
*dev
)
483 struct drm_connector
*connector
;
484 struct cirrus_connector
*cirrus_connector
;
486 cirrus_connector
= kzalloc(sizeof(struct cirrus_connector
), GFP_KERNEL
);
487 if (!cirrus_connector
)
490 connector
= &cirrus_connector
->base
;
492 drm_connector_init(dev
, connector
,
493 &cirrus_vga_connector_funcs
, DRM_MODE_CONNECTOR_VGA
);
495 drm_connector_helper_add(connector
, &cirrus_vga_connector_helper_funcs
);
497 drm_connector_register(connector
);
502 int cirrus_modeset_init(struct cirrus_device
*cdev
)
504 struct drm_encoder
*encoder
;
505 struct drm_connector
*connector
;
508 drm_mode_config_init(cdev
->dev
);
509 cdev
->mode_info
.mode_config_initialized
= true;
511 cdev
->dev
->mode_config
.max_width
= CIRRUS_MAX_FB_WIDTH
;
512 cdev
->dev
->mode_config
.max_height
= CIRRUS_MAX_FB_HEIGHT
;
514 cdev
->dev
->mode_config
.fb_base
= cdev
->mc
.vram_base
;
515 cdev
->dev
->mode_config
.preferred_depth
= 24;
516 /* don't prefer a shadow on virt GPU */
517 cdev
->dev
->mode_config
.prefer_shadow
= 0;
519 cirrus_crtc_init(cdev
->dev
);
521 encoder
= cirrus_encoder_init(cdev
->dev
);
523 DRM_ERROR("cirrus_encoder_init failed\n");
527 connector
= cirrus_vga_init(cdev
->dev
);
529 DRM_ERROR("cirrus_vga_init failed\n");
533 drm_connector_attach_encoder(connector
, encoder
);
535 ret
= cirrus_fbdev_init(cdev
);
537 DRM_ERROR("cirrus_fbdev_init failed\n");
544 void cirrus_modeset_fini(struct cirrus_device
*cdev
)
546 cirrus_fbdev_fini(cdev
);
548 if (cdev
->mode_info
.mode_config_initialized
) {
549 drm_mode_config_cleanup(cdev
->dev
);
550 cdev
->mode_info
.mode_config_initialized
= false;