2018-05-06 23:16:26 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 OR MIT */
|
2009-12-10 00:19:58 +00:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
2018-05-06 23:16:26 +00:00
|
|
|
* Copyright 2009-2015 VMware, Inc., Palo Alto, CA., USA
|
2009-12-10 00:19:58 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VMWGFX_KMS_H_
|
|
|
|
#define VMWGFX_KMS_H_
|
|
|
|
|
2012-10-02 17:01:07 +00:00
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
2016-11-28 18:51:09 +00:00
|
|
|
#include <drm/drm_encoder.h>
|
2009-12-10 00:19:58 +00:00
|
|
|
#include "vmwgfx_drv.h"
|
|
|
|
|
2017-03-23 18:28:11 +00:00
|
|
|
|
|
|
|
|
2015-06-26 09:03:53 +00:00
|
|
|
/**
|
|
|
|
* struct vmw_kms_dirty - closure structure for the vmw_kms_helper_dirty
|
|
|
|
* function.
|
|
|
|
*
|
|
|
|
* @fifo_commit: Callback that is called once for each display unit after
|
|
|
|
* all clip rects. This function must commit the fifo space reserved by the
|
|
|
|
* helper. Set up by the caller.
|
|
|
|
* @clip: Callback that is called for each cliprect on each display unit.
|
|
|
|
* Set up by the caller.
|
|
|
|
* @fifo_reserve_size: Fifo size that the helper should try to allocat for
|
|
|
|
* each display unit. Set up by the caller.
|
|
|
|
* @dev_priv: Pointer to the device private. Set up by the helper.
|
|
|
|
* @unit: The current display unit. Set up by the helper before a call to @clip.
|
|
|
|
* @cmd: The allocated fifo space. Set up by the helper before the first @clip
|
|
|
|
* call.
|
2018-01-16 07:24:17 +00:00
|
|
|
* @crtc: The crtc for which to build dirty commands.
|
2015-06-26 09:03:53 +00:00
|
|
|
* @num_hits: Number of clip rect commands for this display unit.
|
|
|
|
* Cleared by the helper before the first @clip call. Updated by the @clip
|
|
|
|
* callback.
|
|
|
|
* @fb_x: Clip rect left side in framebuffer coordinates.
|
|
|
|
* @fb_y: Clip rect right side in framebuffer coordinates.
|
|
|
|
* @unit_x1: Clip rect left side in crtc coordinates.
|
|
|
|
* @unit_y1: Clip rect top side in crtc coordinates.
|
|
|
|
* @unit_x2: Clip rect right side in crtc coordinates.
|
|
|
|
* @unit_y2: Clip rect bottom side in crtc coordinates.
|
|
|
|
*
|
|
|
|
* The clip rect coordinates are updated by the helper for each @clip call.
|
|
|
|
* Note that this may be derived from if more info needs to be passed between
|
|
|
|
* helper caller and helper callbacks.
|
|
|
|
*/
|
|
|
|
struct vmw_kms_dirty {
|
|
|
|
void (*fifo_commit)(struct vmw_kms_dirty *);
|
|
|
|
void (*clip)(struct vmw_kms_dirty *);
|
|
|
|
size_t fifo_reserve_size;
|
|
|
|
struct vmw_private *dev_priv;
|
|
|
|
struct vmw_display_unit *unit;
|
|
|
|
void *cmd;
|
2018-01-16 07:24:17 +00:00
|
|
|
struct drm_crtc *crtc;
|
2015-06-26 09:03:53 +00:00
|
|
|
u32 num_hits;
|
|
|
|
s32 fb_x;
|
|
|
|
s32 fb_y;
|
|
|
|
s32 unit_x1;
|
|
|
|
s32 unit_y1;
|
|
|
|
s32 unit_x2;
|
|
|
|
s32 unit_y2;
|
|
|
|
};
|
2015-06-26 08:23:42 +00:00
|
|
|
|
2011-10-04 18:13:22 +00:00
|
|
|
#define VMWGFX_NUM_DISPLAY_UNITS 8
|
|
|
|
|
2009-12-10 00:19:58 +00:00
|
|
|
|
|
|
|
#define vmw_framebuffer_to_vfb(x) \
|
|
|
|
container_of(x, struct vmw_framebuffer, base)
|
2015-06-26 08:23:42 +00:00
|
|
|
#define vmw_framebuffer_to_vfbs(x) \
|
|
|
|
container_of(x, struct vmw_framebuffer_surface, base.base)
|
|
|
|
#define vmw_framebuffer_to_vfbd(x) \
|
2018-06-19 13:02:16 +00:00
|
|
|
container_of(x, struct vmw_framebuffer_bo, base.base)
|
2009-12-10 00:19:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class for framebuffers
|
|
|
|
*
|
|
|
|
* @pin is called the when ever a crtc uses this framebuffer
|
|
|
|
* @unpin is called
|
|
|
|
*/
|
|
|
|
struct vmw_framebuffer {
|
|
|
|
struct drm_framebuffer base;
|
|
|
|
int (*pin)(struct vmw_framebuffer *fb);
|
|
|
|
int (*unpin)(struct vmw_framebuffer *fb);
|
2018-06-19 13:02:16 +00:00
|
|
|
bool bo;
|
2011-10-04 18:13:32 +00:00
|
|
|
struct ttm_base_object *user_obj;
|
|
|
|
uint32_t user_handle;
|
2009-12-10 00:19:58 +00:00
|
|
|
};
|
|
|
|
|
2015-06-26 08:23:42 +00:00
|
|
|
/*
|
|
|
|
* Clip rectangle
|
|
|
|
*/
|
|
|
|
struct vmw_clip_rect {
|
|
|
|
int x1, x2, y1, y2;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct vmw_framebuffer_surface {
|
|
|
|
struct vmw_framebuffer base;
|
|
|
|
struct vmw_surface *surface;
|
2018-06-19 13:02:16 +00:00
|
|
|
struct vmw_buffer_object *buffer;
|
2015-06-26 08:23:42 +00:00
|
|
|
struct list_head head;
|
2018-06-19 13:02:16 +00:00
|
|
|
bool is_bo_proxy; /* true if this is proxy surface for DMA buf */
|
2015-06-26 08:23:42 +00:00
|
|
|
};
|
2009-12-10 00:19:58 +00:00
|
|
|
|
2015-06-26 08:23:42 +00:00
|
|
|
|
2018-06-19 13:02:16 +00:00
|
|
|
struct vmw_framebuffer_bo {
|
2015-06-26 08:23:42 +00:00
|
|
|
struct vmw_framebuffer base;
|
2018-06-19 13:02:16 +00:00
|
|
|
struct vmw_buffer_object *buffer;
|
2015-06-26 08:23:42 +00:00
|
|
|
};
|
2009-12-10 00:19:58 +00:00
|
|
|
|
|
|
|
|
2017-03-23 18:28:11 +00:00
|
|
|
static const uint32_t vmw_primary_plane_formats[] = {
|
|
|
|
DRM_FORMAT_XRGB1555,
|
|
|
|
DRM_FORMAT_RGB565,
|
|
|
|
DRM_FORMAT_RGB888,
|
|
|
|
DRM_FORMAT_XRGB8888,
|
|
|
|
DRM_FORMAT_ARGB8888,
|
|
|
|
};
|
2009-12-10 00:19:58 +00:00
|
|
|
|
2017-03-23 18:28:11 +00:00
|
|
|
static const uint32_t vmw_cursor_plane_formats[] = {
|
|
|
|
DRM_FORMAT_ARGB8888,
|
|
|
|
};
|
2011-11-28 12:19:14 +00:00
|
|
|
|
2017-03-23 18:33:39 +00:00
|
|
|
|
|
|
|
#define vmw_crtc_state_to_vcs(x) container_of(x, struct vmw_crtc_state, base)
|
2017-03-23 18:36:05 +00:00
|
|
|
#define vmw_plane_state_to_vps(x) container_of(x, struct vmw_plane_state, base)
|
2017-03-23 18:48:44 +00:00
|
|
|
#define vmw_connector_state_to_vcs(x) \
|
|
|
|
container_of(x, struct vmw_connector_state, base)
|
2017-03-23 18:33:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Derived class for crtc state object
|
|
|
|
*
|
|
|
|
* @base DRM crtc object
|
|
|
|
*/
|
|
|
|
struct vmw_crtc_state {
|
|
|
|
struct drm_crtc_state base;
|
|
|
|
};
|
|
|
|
|
2017-03-23 18:36:05 +00:00
|
|
|
/**
|
|
|
|
* Derived class for plane state object
|
|
|
|
*
|
|
|
|
* @base DRM plane object
|
|
|
|
* @surf Display surface for STDU
|
2018-06-19 13:02:16 +00:00
|
|
|
* @bo display bo for SOU
|
2017-03-23 18:36:05 +00:00
|
|
|
* @content_fb_type Used by STDU.
|
2018-06-19 13:02:16 +00:00
|
|
|
* @bo_size Size of the bo, used by Screen Object Display Unit
|
2017-03-23 18:36:05 +00:00
|
|
|
* @pinned pin count for STDU display surface
|
|
|
|
*/
|
|
|
|
struct vmw_plane_state {
|
|
|
|
struct drm_plane_state base;
|
|
|
|
struct vmw_surface *surf;
|
2018-06-19 13:02:16 +00:00
|
|
|
struct vmw_buffer_object *bo;
|
2017-03-23 18:36:05 +00:00
|
|
|
|
|
|
|
int content_fb_type;
|
2018-06-19 13:02:16 +00:00
|
|
|
unsigned long bo_size;
|
2017-03-23 18:36:05 +00:00
|
|
|
|
|
|
|
int pinned;
|
2017-03-23 22:39:16 +00:00
|
|
|
|
|
|
|
/* For CPU Blit */
|
|
|
|
unsigned int cpp;
|
2017-03-23 18:36:05 +00:00
|
|
|
};
|
|
|
|
|
2017-03-23 18:48:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Derived class for connector state object
|
|
|
|
*
|
|
|
|
* @base DRM connector object
|
|
|
|
* @is_implicit connector property
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct vmw_connector_state {
|
|
|
|
struct drm_connector_state base;
|
|
|
|
|
|
|
|
bool is_implicit;
|
2018-06-20 09:34:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @gui_x:
|
|
|
|
*
|
|
|
|
* vmwgfx connector property representing the x position of this display
|
|
|
|
* unit (connector is synonymous to display unit) in overall topology.
|
|
|
|
* This is what the device expect as xRoot while creating screen.
|
|
|
|
*/
|
|
|
|
int gui_x;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @gui_y:
|
|
|
|
*
|
|
|
|
* vmwgfx connector property representing the y position of this display
|
|
|
|
* unit (connector is synonymous to display unit) in overall topology.
|
|
|
|
* This is what the device expect as yRoot while creating screen.
|
|
|
|
*/
|
|
|
|
int gui_y;
|
2017-03-23 18:48:44 +00:00
|
|
|
};
|
|
|
|
|
2009-12-10 00:19:58 +00:00
|
|
|
/**
|
|
|
|
* Base class display unit.
|
|
|
|
*
|
|
|
|
* Since the SVGA hw doesn't have a concept of a crtc, encoder or connector
|
|
|
|
* so the display unit is all of them at the same time. This is true for both
|
|
|
|
* legacy multimon and screen objects.
|
|
|
|
*/
|
|
|
|
struct vmw_display_unit {
|
|
|
|
struct drm_crtc crtc;
|
|
|
|
struct drm_encoder encoder;
|
|
|
|
struct drm_connector connector;
|
2017-03-23 18:28:11 +00:00
|
|
|
struct drm_plane primary;
|
|
|
|
struct drm_plane cursor;
|
2009-12-10 00:19:58 +00:00
|
|
|
|
|
|
|
struct vmw_surface *cursor_surface;
|
2018-06-19 13:02:16 +00:00
|
|
|
struct vmw_buffer_object *cursor_bo;
|
2009-12-10 00:19:58 +00:00
|
|
|
size_t cursor_age;
|
|
|
|
|
|
|
|
int cursor_x;
|
|
|
|
int cursor_y;
|
|
|
|
|
|
|
|
int hotspot_x;
|
|
|
|
int hotspot_y;
|
2015-11-26 18:45:16 +00:00
|
|
|
s32 core_hotspot_x;
|
|
|
|
s32 core_hotspot_y;
|
2009-12-10 00:19:58 +00:00
|
|
|
|
|
|
|
unsigned unit;
|
2011-10-04 18:13:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Prefered mode tracking.
|
|
|
|
*/
|
|
|
|
unsigned pref_width;
|
|
|
|
unsigned pref_height;
|
|
|
|
bool pref_active;
|
|
|
|
struct drm_display_mode *pref_mode;
|
2011-10-25 21:35:53 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Gui positioning
|
|
|
|
*/
|
|
|
|
int gui_x;
|
|
|
|
int gui_y;
|
2011-11-02 08:43:11 +00:00
|
|
|
bool is_implicit;
|
2016-02-12 08:00:26 +00:00
|
|
|
bool active_implicit;
|
2016-02-12 08:57:15 +00:00
|
|
|
int set_gui_x;
|
|
|
|
int set_gui_y;
|
2009-12-10 00:19:58 +00:00
|
|
|
};
|
|
|
|
|
2018-03-21 09:18:38 +00:00
|
|
|
struct vmw_validation_ctx {
|
|
|
|
struct vmw_resource *res;
|
2018-06-19 13:02:16 +00:00
|
|
|
struct vmw_buffer_object *buf;
|
2018-03-21 09:18:38 +00:00
|
|
|
};
|
|
|
|
|
2011-10-04 18:13:26 +00:00
|
|
|
#define vmw_crtc_to_du(x) \
|
|
|
|
container_of(x, struct vmw_display_unit, crtc)
|
2011-10-04 18:13:20 +00:00
|
|
|
#define vmw_connector_to_du(x) \
|
|
|
|
container_of(x, struct vmw_display_unit, connector)
|
|
|
|
|
|
|
|
|
2009-12-10 00:19:58 +00:00
|
|
|
/*
|
|
|
|
* Shared display unit functions - vmwgfx_kms.c
|
|
|
|
*/
|
2015-06-26 08:23:42 +00:00
|
|
|
void vmw_du_cleanup(struct vmw_display_unit *du);
|
2011-10-04 18:13:20 +00:00
|
|
|
void vmw_du_crtc_save(struct drm_crtc *crtc);
|
|
|
|
void vmw_du_crtc_restore(struct drm_crtc *crtc);
|
2016-06-07 10:49:30 +00:00
|
|
|
int vmw_du_crtc_gamma_set(struct drm_crtc *crtc,
|
2011-10-04 18:13:20 +00:00
|
|
|
u16 *r, u16 *g, u16 *b,
|
2017-04-03 08:33:01 +00:00
|
|
|
uint32_t size,
|
|
|
|
struct drm_modeset_acquire_ctx *ctx);
|
2017-03-23 18:33:39 +00:00
|
|
|
int vmw_du_connector_set_property(struct drm_connector *connector,
|
|
|
|
struct drm_property *property,
|
|
|
|
uint64_t val);
|
2017-03-23 18:48:44 +00:00
|
|
|
int vmw_du_connector_atomic_set_property(struct drm_connector *connector,
|
|
|
|
struct drm_connector_state *state,
|
|
|
|
struct drm_property *property,
|
|
|
|
uint64_t val);
|
|
|
|
int
|
|
|
|
vmw_du_connector_atomic_get_property(struct drm_connector *connector,
|
|
|
|
const struct drm_connector_state *state,
|
|
|
|
struct drm_property *property,
|
|
|
|
uint64_t *val);
|
2015-07-21 09:34:55 +00:00
|
|
|
int vmw_du_connector_dpms(struct drm_connector *connector, int mode);
|
2011-10-04 18:13:20 +00:00
|
|
|
void vmw_du_connector_save(struct drm_connector *connector);
|
|
|
|
void vmw_du_connector_restore(struct drm_connector *connector);
|
|
|
|
enum drm_connector_status
|
|
|
|
vmw_du_connector_detect(struct drm_connector *connector, bool force);
|
|
|
|
int vmw_du_connector_fill_modes(struct drm_connector *connector,
|
|
|
|
uint32_t max_width, uint32_t max_height);
|
2015-06-26 09:03:53 +00:00
|
|
|
int vmw_kms_helper_dirty(struct vmw_private *dev_priv,
|
|
|
|
struct vmw_framebuffer *framebuffer,
|
|
|
|
const struct drm_clip_rect *clips,
|
|
|
|
const struct drm_vmw_rect *vclips,
|
|
|
|
s32 dest_x, s32 dest_y,
|
|
|
|
int num_clips,
|
|
|
|
int increment,
|
|
|
|
struct vmw_kms_dirty *dirty);
|
2011-10-25 21:35:53 +00:00
|
|
|
|
2018-09-26 13:34:50 +00:00
|
|
|
void vmw_kms_helper_validation_finish(struct vmw_private *dev_priv,
|
|
|
|
struct drm_file *file_priv,
|
|
|
|
struct vmw_validation_context *ctx,
|
|
|
|
struct vmw_fence_obj **out_fence,
|
|
|
|
struct drm_vmw_fence_rep __user *
|
|
|
|
user_fence_rep);
|
2015-06-26 09:14:27 +00:00
|
|
|
int vmw_kms_readback(struct vmw_private *dev_priv,
|
|
|
|
struct drm_file *file_priv,
|
|
|
|
struct vmw_framebuffer *vfb,
|
|
|
|
struct drm_vmw_fence_rep __user *user_fence_rep,
|
|
|
|
struct drm_vmw_rect *vclips,
|
|
|
|
uint32_t num_clips);
|
2015-06-28 09:50:56 +00:00
|
|
|
struct vmw_framebuffer *
|
|
|
|
vmw_kms_new_framebuffer(struct vmw_private *dev_priv,
|
2018-06-19 13:02:16 +00:00
|
|
|
struct vmw_buffer_object *bo,
|
2015-06-28 09:50:56 +00:00
|
|
|
struct vmw_surface *surface,
|
|
|
|
bool only_2d,
|
2016-12-02 07:07:40 +00:00
|
|
|
const struct drm_mode_fb_cmd2 *mode_cmd);
|
2015-06-29 19:55:07 +00:00
|
|
|
int vmw_kms_fbdev_init_data(struct vmw_private *dev_priv,
|
|
|
|
unsigned unit,
|
|
|
|
u32 max_width,
|
|
|
|
u32 max_height,
|
|
|
|
struct drm_connector **p_con,
|
|
|
|
struct drm_crtc **p_crtc,
|
|
|
|
struct drm_display_mode **p_mode);
|
|
|
|
void vmw_guess_mode_timing(struct drm_display_mode *mode);
|
2016-02-12 08:00:26 +00:00
|
|
|
void vmw_kms_del_active(struct vmw_private *dev_priv,
|
|
|
|
struct vmw_display_unit *du);
|
|
|
|
void vmw_kms_add_active(struct vmw_private *dev_priv,
|
|
|
|
struct vmw_display_unit *du,
|
|
|
|
struct vmw_framebuffer *vfb);
|
|
|
|
bool vmw_kms_crtc_flippable(struct vmw_private *dev_priv,
|
|
|
|
struct drm_crtc *crtc);
|
|
|
|
void vmw_kms_update_implicit_fb(struct vmw_private *dev_priv,
|
|
|
|
struct drm_crtc *crtc);
|
2016-02-12 08:55:45 +00:00
|
|
|
void vmw_kms_create_implicit_placement_property(struct vmw_private *dev_priv,
|
|
|
|
bool immutable);
|
2016-02-12 08:00:26 +00:00
|
|
|
|
2017-03-23 18:28:11 +00:00
|
|
|
/* Universal Plane Helpers */
|
|
|
|
void vmw_du_primary_plane_destroy(struct drm_plane *plane);
|
|
|
|
void vmw_du_cursor_plane_destroy(struct drm_plane *plane);
|
|
|
|
|
2017-03-23 20:14:54 +00:00
|
|
|
/* Atomic Helpers */
|
2017-03-23 21:18:32 +00:00
|
|
|
int vmw_du_primary_plane_atomic_check(struct drm_plane *plane,
|
|
|
|
struct drm_plane_state *state);
|
|
|
|
int vmw_du_cursor_plane_atomic_check(struct drm_plane *plane,
|
|
|
|
struct drm_plane_state *state);
|
|
|
|
void vmw_du_cursor_plane_atomic_update(struct drm_plane *plane,
|
|
|
|
struct drm_plane_state *old_state);
|
|
|
|
int vmw_du_cursor_plane_prepare_fb(struct drm_plane *plane,
|
|
|
|
struct drm_plane_state *new_state);
|
|
|
|
void vmw_du_plane_cleanup_fb(struct drm_plane *plane,
|
|
|
|
struct drm_plane_state *old_state);
|
2017-03-23 18:36:05 +00:00
|
|
|
void vmw_du_plane_reset(struct drm_plane *plane);
|
|
|
|
struct drm_plane_state *vmw_du_plane_duplicate_state(struct drm_plane *plane);
|
|
|
|
void vmw_du_plane_destroy_state(struct drm_plane *plane,
|
|
|
|
struct drm_plane_state *state);
|
2017-03-23 21:18:32 +00:00
|
|
|
void vmw_du_plane_unpin_surf(struct vmw_plane_state *vps,
|
|
|
|
bool unreference);
|
|
|
|
|
2017-03-23 20:14:54 +00:00
|
|
|
int vmw_du_crtc_atomic_check(struct drm_crtc *crtc,
|
|
|
|
struct drm_crtc_state *state);
|
|
|
|
void vmw_du_crtc_atomic_begin(struct drm_crtc *crtc,
|
|
|
|
struct drm_crtc_state *old_crtc_state);
|
|
|
|
void vmw_du_crtc_atomic_flush(struct drm_crtc *crtc,
|
|
|
|
struct drm_crtc_state *old_crtc_state);
|
2017-03-23 18:33:39 +00:00
|
|
|
void vmw_du_crtc_reset(struct drm_crtc *crtc);
|
|
|
|
struct drm_crtc_state *vmw_du_crtc_duplicate_state(struct drm_crtc *crtc);
|
|
|
|
void vmw_du_crtc_destroy_state(struct drm_crtc *crtc,
|
|
|
|
struct drm_crtc_state *state);
|
2017-03-23 18:48:44 +00:00
|
|
|
void vmw_du_connector_reset(struct drm_connector *connector);
|
|
|
|
struct drm_connector_state *
|
|
|
|
vmw_du_connector_duplicate_state(struct drm_connector *connector);
|
|
|
|
|
|
|
|
void vmw_du_connector_destroy_state(struct drm_connector *connector,
|
|
|
|
struct drm_connector_state *state);
|
2009-12-10 00:19:58 +00:00
|
|
|
|
|
|
|
/*
|
2010-06-01 09:54:20 +00:00
|
|
|
* Legacy display unit functions - vmwgfx_ldu.c
|
2009-12-10 00:19:58 +00:00
|
|
|
*/
|
2015-06-26 08:23:42 +00:00
|
|
|
int vmw_kms_ldu_init_display(struct vmw_private *dev_priv);
|
|
|
|
int vmw_kms_ldu_close_display(struct vmw_private *dev_priv);
|
2018-06-19 13:02:16 +00:00
|
|
|
int vmw_kms_ldu_do_bo_dirty(struct vmw_private *dev_priv,
|
|
|
|
struct vmw_framebuffer *framebuffer,
|
|
|
|
unsigned int flags, unsigned int color,
|
|
|
|
struct drm_clip_rect *clips,
|
|
|
|
unsigned int num_clips, int increment);
|
2015-06-26 09:22:40 +00:00
|
|
|
int vmw_kms_update_proxy(struct vmw_resource *res,
|
|
|
|
const struct drm_clip_rect *clips,
|
|
|
|
unsigned num_clips,
|
|
|
|
int increment);
|
2009-12-10 00:19:58 +00:00
|
|
|
|
2011-10-04 18:13:22 +00:00
|
|
|
/*
|
|
|
|
* Screen Objects display functions - vmwgfx_scrn.c
|
|
|
|
*/
|
2015-06-26 08:23:42 +00:00
|
|
|
int vmw_kms_sou_init_display(struct vmw_private *dev_priv);
|
|
|
|
int vmw_kms_sou_do_surface_dirty(struct vmw_private *dev_priv,
|
|
|
|
struct vmw_framebuffer *framebuffer,
|
|
|
|
struct drm_clip_rect *clips,
|
2015-06-26 09:14:27 +00:00
|
|
|
struct drm_vmw_rect *vclips,
|
|
|
|
struct vmw_resource *srf,
|
|
|
|
s32 dest_x,
|
|
|
|
s32 dest_y,
|
2015-06-26 08:23:42 +00:00
|
|
|
unsigned num_clips, int inc,
|
2018-01-16 07:24:17 +00:00
|
|
|
struct vmw_fence_obj **out_fence,
|
|
|
|
struct drm_crtc *crtc);
|
2018-06-19 13:02:16 +00:00
|
|
|
int vmw_kms_sou_do_bo_dirty(struct vmw_private *dev_priv,
|
|
|
|
struct vmw_framebuffer *framebuffer,
|
|
|
|
struct drm_clip_rect *clips,
|
|
|
|
struct drm_vmw_rect *vclips,
|
|
|
|
unsigned int num_clips, int increment,
|
|
|
|
bool interruptible,
|
|
|
|
struct vmw_fence_obj **out_fence,
|
|
|
|
struct drm_crtc *crtc);
|
2015-06-26 09:14:27 +00:00
|
|
|
int vmw_kms_sou_readback(struct vmw_private *dev_priv,
|
|
|
|
struct drm_file *file_priv,
|
|
|
|
struct vmw_framebuffer *vfb,
|
|
|
|
struct drm_vmw_fence_rep __user *user_fence_rep,
|
|
|
|
struct drm_vmw_rect *vclips,
|
2018-01-16 07:24:17 +00:00
|
|
|
uint32_t num_clips,
|
|
|
|
struct drm_crtc *crtc);
|
2015-06-26 08:42:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Screen Target Display Unit functions - vmwgfx_stdu.c
|
|
|
|
*/
|
|
|
|
int vmw_kms_stdu_init_display(struct vmw_private *dev_priv);
|
2015-06-26 09:22:40 +00:00
|
|
|
int vmw_kms_stdu_surface_dirty(struct vmw_private *dev_priv,
|
|
|
|
struct vmw_framebuffer *framebuffer,
|
|
|
|
struct drm_clip_rect *clips,
|
|
|
|
struct drm_vmw_rect *vclips,
|
|
|
|
struct vmw_resource *srf,
|
|
|
|
s32 dest_x,
|
|
|
|
s32 dest_y,
|
|
|
|
unsigned num_clips, int inc,
|
2018-01-16 07:24:17 +00:00
|
|
|
struct vmw_fence_obj **out_fence,
|
|
|
|
struct drm_crtc *crtc);
|
2015-06-26 09:22:40 +00:00
|
|
|
int vmw_kms_stdu_dma(struct vmw_private *dev_priv,
|
|
|
|
struct drm_file *file_priv,
|
|
|
|
struct vmw_framebuffer *vfb,
|
|
|
|
struct drm_vmw_fence_rep __user *user_fence_rep,
|
|
|
|
struct drm_clip_rect *clips,
|
|
|
|
struct drm_vmw_rect *vclips,
|
|
|
|
uint32_t num_clips,
|
|
|
|
int increment,
|
|
|
|
bool to_surface,
|
2018-01-16 07:24:17 +00:00
|
|
|
bool interruptible,
|
|
|
|
struct drm_crtc *crtc);
|
2012-02-09 15:56:45 +00:00
|
|
|
|
2017-04-03 06:30:24 +00:00
|
|
|
int vmw_kms_set_config(struct drm_mode_set *set,
|
|
|
|
struct drm_modeset_acquire_ctx *ctx);
|
2009-12-10 00:19:58 +00:00
|
|
|
#endif
|