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 drm_gem_object
*obj
;
105 struct cirrus_framebuffer
*cirrus_fb
;
106 struct cirrus_bo
*bo
;
110 /* push the previous fb to system ram */
112 cirrus_fb
= to_cirrus_framebuffer(fb
);
113 obj
= cirrus_fb
->obj
;
114 bo
= gem_to_cirrus_bo(obj
);
115 ret
= cirrus_bo_reserve(bo
, false);
118 cirrus_bo_push_sysram(bo
);
119 cirrus_bo_unreserve(bo
);
122 cirrus_fb
= to_cirrus_framebuffer(crtc
->primary
->fb
);
123 obj
= cirrus_fb
->obj
;
124 bo
= gem_to_cirrus_bo(obj
);
126 ret
= cirrus_bo_reserve(bo
, false);
130 ret
= cirrus_bo_pin(bo
, TTM_PL_FLAG_VRAM
, &gpu_addr
);
132 cirrus_bo_unreserve(bo
);
136 if (&cdev
->mode_info
.gfbdev
->gfb
== cirrus_fb
) {
137 /* if pushing console in kmap it */
138 ret
= ttm_bo_kmap(&bo
->bo
, 0, bo
->bo
.num_pages
, &bo
->kmap
);
140 DRM_ERROR("failed to kmap fbcon\n");
142 cirrus_bo_unreserve(bo
);
144 cirrus_set_start_address(crtc
, (u32
)gpu_addr
);
148 static int cirrus_crtc_mode_set_base(struct drm_crtc
*crtc
, int x
, int y
,
149 struct drm_framebuffer
*old_fb
)
151 return cirrus_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
155 * The meat of this driver. The core passes us a mode and we have to program
156 * it. The modesetting here is the bare minimum required to satisfy the qemu
157 * emulation of this hardware, and running this against a real device is
158 * likely to result in an inadequately programmed mode. We've already had
159 * the opportunity to modify the mode, so whatever we receive here should
160 * be something that can be correctly programmed and displayed
162 static int cirrus_crtc_mode_set(struct drm_crtc
*crtc
,
163 struct drm_display_mode
*mode
,
164 struct drm_display_mode
*adjusted_mode
,
165 int x
, int y
, struct drm_framebuffer
*old_fb
)
167 struct drm_device
*dev
= crtc
->dev
;
168 struct cirrus_device
*cdev
= dev
->dev_private
;
169 const struct drm_framebuffer
*fb
= crtc
->primary
->fb
;
170 int hsyncstart
, hsyncend
, htotal
, hdispend
;
171 int vtotal
, vdispend
;
173 int sr07
= 0, hdr
= 0;
175 htotal
= mode
->htotal
/ 8;
176 hsyncend
= mode
->hsync_end
/ 8;
177 hsyncstart
= mode
->hsync_start
/ 8;
178 hdispend
= mode
->hdisplay
/ 8;
180 vtotal
= mode
->vtotal
;
181 vdispend
= mode
->vdisplay
;
191 WREG_CRT(VGA_CRTC_V_SYNC_END
, 0x20);
192 WREG_CRT(VGA_CRTC_H_TOTAL
, htotal
);
193 WREG_CRT(VGA_CRTC_H_DISP
, hdispend
);
194 WREG_CRT(VGA_CRTC_H_SYNC_START
, hsyncstart
);
195 WREG_CRT(VGA_CRTC_H_SYNC_END
, hsyncend
);
196 WREG_CRT(VGA_CRTC_V_TOTAL
, vtotal
& 0xff);
197 WREG_CRT(VGA_CRTC_V_DISP_END
, vdispend
& 0xff);
200 if ((vdispend
+ 1) & 512)
202 WREG_CRT(VGA_CRTC_MAX_SCAN
, tmp
);
205 * Overflow bits for values that don't fit in the standard registers
212 if ((vdispend
+ 1) & 256)
218 WREG_CRT(VGA_CRTC_OVERFLOW
, tmp
);
222 /* More overflow bits */
224 if ((htotal
+ 5) & 64)
226 if ((htotal
+ 5) & 128)
233 WREG_CRT(CL_CRT1A
, tmp
);
235 /* Disable Hercules/CGA compatibility */
236 WREG_CRT(VGA_CRTC_MODE
, 0x03);
238 WREG8(SEQ_INDEX
, 0x7);
239 sr07
= RREG8(SEQ_DATA
);
242 switch (fb
->format
->cpp
[0] * 8) {
264 /* Program the pitch */
265 tmp
= fb
->pitches
[0] / 8;
266 WREG_CRT(VGA_CRTC_OFFSET
, tmp
);
268 /* Enable extended blanking and pitch bits, and enable full memory */
270 tmp
|= (fb
->pitches
[0] >> 7) & 0x10;
271 tmp
|= (fb
->pitches
[0] >> 6) & 0x40;
274 /* Enable high-colour modes */
275 WREG_GFX(VGA_GFX_MODE
, 0x40);
277 /* And set graphics mode */
278 WREG_GFX(VGA_GFX_MISC
, 0x01);
281 cirrus_crtc_do_set_base(crtc
, old_fb
, x
, y
, 0);
283 /* Unblank (needed on S3 resume, vgabios doesn't do it then) */
289 * This is called before a mode is programmed. A typical use might be to
290 * enable DPMS during the programming to avoid seeing intermediate stages,
291 * but that's not relevant to us
293 static void cirrus_crtc_prepare(struct drm_crtc
*crtc
)
297 static void cirrus_crtc_load_lut(struct drm_crtc
*crtc
)
299 struct drm_device
*dev
= crtc
->dev
;
300 struct cirrus_device
*cdev
= dev
->dev_private
;
307 r
= crtc
->gamma_store
;
308 g
= r
+ crtc
->gamma_size
;
309 b
= g
+ crtc
->gamma_size
;
311 for (i
= 0; i
< CIRRUS_LUT_SIZE
; i
++) {
313 WREG8(PALETTE_INDEX
, i
);
314 WREG8(PALETTE_DATA
, *r
++ >> 8);
315 WREG8(PALETTE_DATA
, *g
++ >> 8);
316 WREG8(PALETTE_DATA
, *b
++ >> 8);
321 * This is called after a mode is programmed. It should reverse anything done
322 * by the prepare function
324 static void cirrus_crtc_commit(struct drm_crtc
*crtc
)
326 cirrus_crtc_load_lut(crtc
);
330 * The core can pass us a set of gamma values to program. We actually only
331 * use this for 8-bit mode so can't perform smooth fades on deeper modes,
332 * but it's a requirement that we provide the function
334 static int cirrus_crtc_gamma_set(struct drm_crtc
*crtc
, u16
*red
, u16
*green
,
335 u16
*blue
, uint32_t size
,
336 struct drm_modeset_acquire_ctx
*ctx
)
338 cirrus_crtc_load_lut(crtc
);
343 /* Simple cleanup function */
344 static void cirrus_crtc_destroy(struct drm_crtc
*crtc
)
346 struct cirrus_crtc
*cirrus_crtc
= to_cirrus_crtc(crtc
);
348 drm_crtc_cleanup(crtc
);
352 /* These provide the minimum set of functions required to handle a CRTC */
353 static const struct drm_crtc_funcs cirrus_crtc_funcs
= {
354 .gamma_set
= cirrus_crtc_gamma_set
,
355 .set_config
= drm_crtc_helper_set_config
,
356 .destroy
= cirrus_crtc_destroy
,
359 static const struct drm_crtc_helper_funcs cirrus_helper_funcs
= {
360 .dpms
= cirrus_crtc_dpms
,
361 .mode_set
= cirrus_crtc_mode_set
,
362 .mode_set_base
= cirrus_crtc_mode_set_base
,
363 .prepare
= cirrus_crtc_prepare
,
364 .commit
= cirrus_crtc_commit
,
368 static void cirrus_crtc_init(struct drm_device
*dev
)
370 struct cirrus_device
*cdev
= dev
->dev_private
;
371 struct cirrus_crtc
*cirrus_crtc
;
373 cirrus_crtc
= kzalloc(sizeof(struct cirrus_crtc
) +
374 (CIRRUSFB_CONN_LIMIT
* sizeof(struct drm_connector
*)),
377 if (cirrus_crtc
== NULL
)
380 drm_crtc_init(dev
, &cirrus_crtc
->base
, &cirrus_crtc_funcs
);
382 drm_mode_crtc_set_gamma_size(&cirrus_crtc
->base
, CIRRUS_LUT_SIZE
);
383 cdev
->mode_info
.crtc
= cirrus_crtc
;
385 drm_crtc_helper_add(&cirrus_crtc
->base
, &cirrus_helper_funcs
);
388 static void cirrus_encoder_mode_set(struct drm_encoder
*encoder
,
389 struct drm_display_mode
*mode
,
390 struct drm_display_mode
*adjusted_mode
)
394 static void cirrus_encoder_dpms(struct drm_encoder
*encoder
, int state
)
399 static void cirrus_encoder_prepare(struct drm_encoder
*encoder
)
403 static void cirrus_encoder_commit(struct drm_encoder
*encoder
)
407 static void cirrus_encoder_destroy(struct drm_encoder
*encoder
)
409 struct cirrus_encoder
*cirrus_encoder
= to_cirrus_encoder(encoder
);
410 drm_encoder_cleanup(encoder
);
411 kfree(cirrus_encoder
);
414 static const struct drm_encoder_helper_funcs cirrus_encoder_helper_funcs
= {
415 .dpms
= cirrus_encoder_dpms
,
416 .mode_set
= cirrus_encoder_mode_set
,
417 .prepare
= cirrus_encoder_prepare
,
418 .commit
= cirrus_encoder_commit
,
421 static const struct drm_encoder_funcs cirrus_encoder_encoder_funcs
= {
422 .destroy
= cirrus_encoder_destroy
,
425 static struct drm_encoder
*cirrus_encoder_init(struct drm_device
*dev
)
427 struct drm_encoder
*encoder
;
428 struct cirrus_encoder
*cirrus_encoder
;
430 cirrus_encoder
= kzalloc(sizeof(struct cirrus_encoder
), GFP_KERNEL
);
434 encoder
= &cirrus_encoder
->base
;
435 encoder
->possible_crtcs
= 0x1;
437 drm_encoder_init(dev
, encoder
, &cirrus_encoder_encoder_funcs
,
438 DRM_MODE_ENCODER_DAC
, NULL
);
439 drm_encoder_helper_add(encoder
, &cirrus_encoder_helper_funcs
);
445 static int cirrus_vga_get_modes(struct drm_connector
*connector
)
449 /* Just add a static list of modes */
450 if (cirrus_bpp
<= 24) {
451 count
= drm_add_modes_noedid(connector
, 1280, 1024);
452 drm_set_preferred_mode(connector
, 1024, 768);
454 count
= drm_add_modes_noedid(connector
, 800, 600);
455 drm_set_preferred_mode(connector
, 800, 600);
460 static struct drm_encoder
*cirrus_connector_best_encoder(struct drm_connector
463 int enc_id
= connector
->encoder_ids
[0];
464 /* pick the encoder ids */
466 return drm_encoder_find(connector
->dev
, NULL
, enc_id
);
470 static void cirrus_connector_destroy(struct drm_connector
*connector
)
472 drm_connector_cleanup(connector
);
476 static const struct drm_connector_helper_funcs cirrus_vga_connector_helper_funcs
= {
477 .get_modes
= cirrus_vga_get_modes
,
478 .best_encoder
= cirrus_connector_best_encoder
,
481 static const struct drm_connector_funcs cirrus_vga_connector_funcs
= {
482 .dpms
= drm_helper_connector_dpms
,
483 .fill_modes
= drm_helper_probe_single_connector_modes
,
484 .destroy
= cirrus_connector_destroy
,
487 static struct drm_connector
*cirrus_vga_init(struct drm_device
*dev
)
489 struct drm_connector
*connector
;
490 struct cirrus_connector
*cirrus_connector
;
492 cirrus_connector
= kzalloc(sizeof(struct cirrus_connector
), GFP_KERNEL
);
493 if (!cirrus_connector
)
496 connector
= &cirrus_connector
->base
;
498 drm_connector_init(dev
, connector
,
499 &cirrus_vga_connector_funcs
, DRM_MODE_CONNECTOR_VGA
);
501 drm_connector_helper_add(connector
, &cirrus_vga_connector_helper_funcs
);
503 drm_connector_register(connector
);
508 int cirrus_modeset_init(struct cirrus_device
*cdev
)
510 struct drm_encoder
*encoder
;
511 struct drm_connector
*connector
;
514 drm_mode_config_init(cdev
->dev
);
515 cdev
->mode_info
.mode_config_initialized
= true;
517 cdev
->dev
->mode_config
.max_width
= CIRRUS_MAX_FB_WIDTH
;
518 cdev
->dev
->mode_config
.max_height
= CIRRUS_MAX_FB_HEIGHT
;
520 cdev
->dev
->mode_config
.fb_base
= cdev
->mc
.vram_base
;
521 cdev
->dev
->mode_config
.preferred_depth
= 24;
522 /* don't prefer a shadow on virt GPU */
523 cdev
->dev
->mode_config
.prefer_shadow
= 0;
525 cirrus_crtc_init(cdev
->dev
);
527 encoder
= cirrus_encoder_init(cdev
->dev
);
529 DRM_ERROR("cirrus_encoder_init failed\n");
533 connector
= cirrus_vga_init(cdev
->dev
);
535 DRM_ERROR("cirrus_vga_init failed\n");
539 drm_mode_connector_attach_encoder(connector
, encoder
);
541 ret
= cirrus_fbdev_init(cdev
);
543 DRM_ERROR("cirrus_fbdev_init failed\n");
550 void cirrus_modeset_fini(struct cirrus_device
*cdev
)
552 cirrus_fbdev_fini(cdev
);
554 if (cdev
->mode_info
.mode_config_initialized
) {
555 drm_mode_config_cleanup(cdev
->dev
);
556 cdev
->mode_info
.mode_config_initialized
= false;