1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2021 Microsoft
6 #include <linux/hyperv.h>
8 #include <drm/drm_damage_helper.h>
9 #include <drm/drm_drv.h>
10 #include <drm/drm_fb_helper.h>
11 #include <drm/drm_format_helper.h>
12 #include <drm/drm_fourcc.h>
13 #include <drm/drm_gem_atomic_helper.h>
14 #include <drm/drm_gem_framebuffer_helper.h>
15 #include <drm/drm_gem_shmem_helper.h>
16 #include <drm/drm_probe_helper.h>
17 #include <drm/drm_simple_kms_helper.h>
19 #include "hyperv_drm.h"
21 static int hyperv_blit_to_vram_rect(struct drm_framebuffer *fb,
22 const struct iosys_map *map,
23 struct drm_rect *rect)
25 struct hyperv_drm_device *hv = to_hv(fb->dev);
26 void __iomem *dst = hv->vram;
27 void *vmap = map->vaddr; /* TODO: Use mapping abstraction properly */
30 if (!drm_dev_enter(&hv->dev, &idx))
33 dst += drm_fb_clip_offset(fb->pitches[0], fb->format, rect);
34 drm_fb_memcpy_toio(dst, fb->pitches[0], vmap, fb, rect);
41 static int hyperv_blit_to_vram_fullscreen(struct drm_framebuffer *fb,
42 const struct iosys_map *map)
44 struct drm_rect fullscreen = {
50 return hyperv_blit_to_vram_rect(fb, map, &fullscreen);
53 static int hyperv_connector_get_modes(struct drm_connector *connector)
55 struct hyperv_drm_device *hv = to_hv(connector->dev);
58 count = drm_add_modes_noedid(connector,
59 connector->dev->mode_config.max_width,
60 connector->dev->mode_config.max_height);
61 drm_set_preferred_mode(connector, hv->preferred_width,
62 hv->preferred_height);
67 static const struct drm_connector_helper_funcs hyperv_connector_helper_funcs = {
68 .get_modes = hyperv_connector_get_modes,
71 static const struct drm_connector_funcs hyperv_connector_funcs = {
72 .fill_modes = drm_helper_probe_single_connector_modes,
73 .destroy = drm_connector_cleanup,
74 .reset = drm_atomic_helper_connector_reset,
75 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
76 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
79 static inline int hyperv_conn_init(struct hyperv_drm_device *hv)
81 drm_connector_helper_add(&hv->connector, &hyperv_connector_helper_funcs);
82 return drm_connector_init(&hv->dev, &hv->connector,
83 &hyperv_connector_funcs,
84 DRM_MODE_CONNECTOR_VIRTUAL);
87 static int hyperv_check_size(struct hyperv_drm_device *hv, int w, int h,
88 struct drm_framebuffer *fb)
90 u32 pitch = w * (hv->screen_depth / 8);
93 pitch = fb->pitches[0];
95 if (pitch * h > hv->fb_size)
101 static void hyperv_pipe_enable(struct drm_simple_display_pipe *pipe,
102 struct drm_crtc_state *crtc_state,
103 struct drm_plane_state *plane_state)
105 struct hyperv_drm_device *hv = to_hv(pipe->crtc.dev);
106 struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(plane_state);
108 hyperv_hide_hw_ptr(hv->hdev);
109 hyperv_update_situation(hv->hdev, 1, hv->screen_depth,
110 crtc_state->mode.hdisplay,
111 crtc_state->mode.vdisplay,
112 plane_state->fb->pitches[0]);
113 hyperv_blit_to_vram_fullscreen(plane_state->fb, &shadow_plane_state->data[0]);
116 static int hyperv_pipe_check(struct drm_simple_display_pipe *pipe,
117 struct drm_plane_state *plane_state,
118 struct drm_crtc_state *crtc_state)
120 struct hyperv_drm_device *hv = to_hv(pipe->crtc.dev);
121 struct drm_framebuffer *fb = plane_state->fb;
123 if (fb->format->format != DRM_FORMAT_XRGB8888)
126 if (fb->pitches[0] * fb->height > hv->fb_size)
132 static void hyperv_pipe_update(struct drm_simple_display_pipe *pipe,
133 struct drm_plane_state *old_state)
135 struct hyperv_drm_device *hv = to_hv(pipe->crtc.dev);
136 struct drm_plane_state *state = pipe->plane.state;
137 struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(state);
138 struct drm_rect rect;
140 if (drm_atomic_helper_damage_merged(old_state, state, &rect)) {
141 hyperv_blit_to_vram_rect(state->fb, &shadow_plane_state->data[0], &rect);
142 hyperv_update_dirt(hv->hdev, &rect);
146 static const struct drm_simple_display_pipe_funcs hyperv_pipe_funcs = {
147 .enable = hyperv_pipe_enable,
148 .check = hyperv_pipe_check,
149 .update = hyperv_pipe_update,
150 DRM_GEM_SIMPLE_DISPLAY_PIPE_SHADOW_PLANE_FUNCS,
153 static const uint32_t hyperv_formats[] = {
157 static const uint64_t hyperv_modifiers[] = {
158 DRM_FORMAT_MOD_LINEAR,
159 DRM_FORMAT_MOD_INVALID
162 static inline int hyperv_pipe_init(struct hyperv_drm_device *hv)
166 ret = drm_simple_display_pipe_init(&hv->dev,
170 ARRAY_SIZE(hyperv_formats),
176 drm_plane_enable_fb_damage_clips(&hv->pipe.plane);
181 static enum drm_mode_status
182 hyperv_mode_valid(struct drm_device *dev,
183 const struct drm_display_mode *mode)
185 struct hyperv_drm_device *hv = to_hv(dev);
187 if (hyperv_check_size(hv, mode->hdisplay, mode->vdisplay, NULL))
193 static const struct drm_mode_config_funcs hyperv_mode_config_funcs = {
194 .fb_create = drm_gem_fb_create_with_dirty,
195 .mode_valid = hyperv_mode_valid,
196 .atomic_check = drm_atomic_helper_check,
197 .atomic_commit = drm_atomic_helper_commit,
200 int hyperv_mode_config_init(struct hyperv_drm_device *hv)
202 struct drm_device *dev = &hv->dev;
205 ret = drmm_mode_config_init(dev);
207 drm_err(dev, "Failed to initialized mode setting.\n");
211 dev->mode_config.min_width = 0;
212 dev->mode_config.min_height = 0;
213 dev->mode_config.max_width = hv->screen_width_max;
214 dev->mode_config.max_height = hv->screen_height_max;
216 dev->mode_config.preferred_depth = hv->screen_depth;
217 dev->mode_config.prefer_shadow = 0;
219 dev->mode_config.funcs = &hyperv_mode_config_funcs;
221 ret = hyperv_conn_init(hv);
223 drm_err(dev, "Failed to initialized connector.\n");
227 ret = hyperv_pipe_init(hv);
229 drm_err(dev, "Failed to initialized pipe.\n");
233 drm_mode_config_reset(dev);