mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-24 14:51:43 -04:00
drm-misc-next for 7.3:
UAPI Changes:
- connector: Add color format property
Cross-subsystem Changes:
- dmem: introduce a peak file
Core Changes:
- atomic: Add create_state callback and helpers to all objects, add
documentation on atomic commit lifetime
- buddy: Fix use-after-free, add per-order free and used block
scoreboards
- gem: Remove DRIVER_GEM_GPUVA feature flag
- hdmi: Hook the color format property in the helpers
- mipi-dsi: Add MIPI_DSI_MODE_DSC_ALL_SLICES_IN_PKT flag
- sched: Add test suite for concurrent job submissions
- virtio: Add support for saving and restoring virtio_gpu_objects,
abort virtqueue wait on device removal to avoid hung task
Driver Changes:
- amdgpu: Implement "color format" DRM property
- amdxdna: Disable device buffer exporting
- ethosu: Add performance counter support
- msm: Support DSC configurations with slice_per_pkt > 1
- mxsfb: Fix disable sequence
- panthor: Support sparse mappings
- rockchip: Support YUV background color, Fix layer config timeout, add
edp support for rk3576, cleanups and formats improvements
- solomon: Add a batch command submission function
- tegra: Add DSI support for Tegra 20 and 30, fix dsi driver when the
firmware hasn't enabled the controller,
- v3d: Reduce PM runtime autosuspend delay, Scheduler and submission
fixes and refactoring, Deprecate V3D 3.3 and 4.1 support
- bridge:
- display-connector: don't autoenable HPD IRQ, trigger initial HPD
event for DP
- dw-dp: Null pointer dereference and use-after-free fixes
- ti-sn65dsi83: Remove NO_HFP and NO_HBP mode flags
- panel:
- himax-hx83121a: add backlight regulator support
- novatek-nt36672a: Inline panel init sequences
- panel-edp: Add quirks for AUO B116XAT04.3, CMN N116BCP-EA2, CSW
MNB601LS1-8, BOE NV116WH2-M30, BOE NT116WHM-N21, BOE NV116FH1-M31,
BOE NV116FH1-M30, NV140FHM-N5B, TM156VDXP25
- New panels: Samsung ATNA40HQ08-0, Anbernic TD4310, Chipone
ICNA35XX, Ilitek ILI9488
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Maxime Ripard <mripard@redhat.com>
Link: https://patch.msgid.link/20260619-burgundy-termite-of-whirlwind-f7a4dd@houat
341 lines
9.3 KiB
C
341 lines
9.3 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright 2021 Microsoft
|
|
*/
|
|
|
|
#include <linux/hyperv.h>
|
|
|
|
#include <drm/drm_atomic.h>
|
|
#include <drm/drm_crtc_helper.h>
|
|
#include <drm/drm_damage_helper.h>
|
|
#include <drm/drm_drv.h>
|
|
#include <drm/drm_edid.h>
|
|
#include <drm/drm_format_helper.h>
|
|
#include <drm/drm_fourcc.h>
|
|
#include <drm/drm_framebuffer.h>
|
|
#include <drm/drm_gem_atomic_helper.h>
|
|
#include <drm/drm_gem_framebuffer_helper.h>
|
|
#include <drm/drm_gem_shmem_helper.h>
|
|
#include <drm/drm_probe_helper.h>
|
|
#include <drm/drm_panic.h>
|
|
#include <drm/drm_plane.h>
|
|
#include <drm/drm_print.h>
|
|
#include <drm/drm_vblank.h>
|
|
#include <drm/drm_vblank_helper.h>
|
|
|
|
#include "hyperv_drm.h"
|
|
|
|
static int hv_drm_blit_to_vram_rect(struct drm_framebuffer *fb,
|
|
const struct iosys_map *vmap,
|
|
struct drm_rect *rect)
|
|
{
|
|
struct hv_drm_device *hv = to_hv_drm(fb->dev);
|
|
struct iosys_map dst = IOSYS_MAP_INIT_VADDR_IOMEM(hv->vram);
|
|
int idx;
|
|
|
|
if (!drm_dev_enter(&hv->dev, &idx))
|
|
return -ENODEV;
|
|
|
|
iosys_map_incr(&dst, drm_fb_clip_offset(fb->pitches[0], fb->format, rect));
|
|
drm_fb_memcpy(&dst, fb->pitches, vmap, fb, rect);
|
|
|
|
drm_dev_exit(idx);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int hv_drm_connector_get_modes(struct drm_connector *connector)
|
|
{
|
|
struct hv_drm_device *hv = to_hv_drm(connector->dev);
|
|
int count;
|
|
|
|
count = drm_add_modes_noedid(connector,
|
|
connector->dev->mode_config.max_width,
|
|
connector->dev->mode_config.max_height);
|
|
drm_set_preferred_mode(connector, hv->preferred_width,
|
|
hv->preferred_height);
|
|
|
|
return count;
|
|
}
|
|
|
|
static const struct drm_connector_helper_funcs hv_drm_connector_helper_funcs = {
|
|
.get_modes = hv_drm_connector_get_modes,
|
|
};
|
|
|
|
static const struct drm_connector_funcs hv_drm_connector_funcs = {
|
|
.fill_modes = drm_helper_probe_single_connector_modes,
|
|
.destroy = drm_connector_cleanup,
|
|
.reset = drm_atomic_helper_connector_reset,
|
|
.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
|
|
.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
|
|
};
|
|
|
|
static inline int hv_drm_conn_init(struct hv_drm_device *hv)
|
|
{
|
|
drm_connector_helper_add(&hv->connector, &hv_drm_connector_helper_funcs);
|
|
return drm_connector_init(&hv->dev, &hv->connector,
|
|
&hv_drm_connector_funcs,
|
|
DRM_MODE_CONNECTOR_VIRTUAL);
|
|
}
|
|
|
|
static int hv_drm_check_size(struct hv_drm_device *hv, int w, int h,
|
|
struct drm_framebuffer *fb)
|
|
{
|
|
u32 pitch = w * (hv->screen_depth / 8);
|
|
|
|
if (fb)
|
|
pitch = fb->pitches[0];
|
|
|
|
if (pitch * h > hv->fb_size)
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const uint32_t hv_drm_formats[] = {
|
|
DRM_FORMAT_XRGB8888,
|
|
};
|
|
|
|
static const uint64_t hv_drm_modifiers[] = {
|
|
DRM_FORMAT_MOD_LINEAR,
|
|
DRM_FORMAT_MOD_INVALID
|
|
};
|
|
|
|
static void hv_drm_crtc_helper_atomic_enable(struct drm_crtc *crtc,
|
|
struct drm_atomic_commit *state)
|
|
{
|
|
struct hv_drm_device *hv = to_hv_drm(crtc->dev);
|
|
struct drm_plane *plane = &hv->plane;
|
|
struct drm_plane_state *plane_state = plane->state;
|
|
struct drm_crtc_state *crtc_state = crtc->state;
|
|
|
|
hv_drm_hide_hw_ptr(hv->hdev);
|
|
hv_drm_update_situation(hv->hdev, 1, hv->screen_depth,
|
|
crtc_state->mode.hdisplay,
|
|
crtc_state->mode.vdisplay,
|
|
plane_state->fb->pitches[0]);
|
|
|
|
drm_crtc_vblank_on(crtc);
|
|
}
|
|
|
|
static const struct drm_crtc_helper_funcs hv_drm_crtc_helper_funcs = {
|
|
.atomic_check = drm_crtc_helper_atomic_check,
|
|
.atomic_flush = drm_crtc_vblank_atomic_flush,
|
|
.atomic_enable = hv_drm_crtc_helper_atomic_enable,
|
|
.atomic_disable = drm_crtc_vblank_atomic_disable,
|
|
};
|
|
|
|
static const struct drm_crtc_funcs hv_drm_crtc_funcs = {
|
|
.reset = drm_atomic_helper_crtc_reset,
|
|
.destroy = drm_crtc_cleanup,
|
|
.set_config = drm_atomic_helper_set_config,
|
|
.page_flip = drm_atomic_helper_page_flip,
|
|
.atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state,
|
|
.atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
|
|
DRM_CRTC_VBLANK_TIMER_FUNCS,
|
|
};
|
|
|
|
static int hv_drm_plane_atomic_check(struct drm_plane *plane,
|
|
struct drm_atomic_commit *state)
|
|
{
|
|
struct drm_plane_state *plane_state = drm_atomic_get_new_plane_state(state, plane);
|
|
struct hv_drm_device *hv = to_hv_drm(plane->dev);
|
|
struct drm_framebuffer *fb = plane_state->fb;
|
|
struct drm_crtc *crtc = plane_state->crtc;
|
|
struct drm_crtc_state *crtc_state = NULL;
|
|
int ret;
|
|
|
|
if (crtc)
|
|
crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
|
|
|
|
ret = drm_atomic_helper_check_plane_state(plane_state, crtc_state,
|
|
DRM_PLANE_NO_SCALING,
|
|
DRM_PLANE_NO_SCALING,
|
|
false, false);
|
|
if (ret)
|
|
return ret;
|
|
|
|
if (!plane_state->visible)
|
|
return 0;
|
|
|
|
if (fb->pitches[0] * fb->height > hv->fb_size) {
|
|
drm_err(&hv->dev, "fb size requested by %s for %dX%d (pitch %d) greater than %ld\n",
|
|
current->comm, fb->width, fb->height, fb->pitches[0], hv->fb_size);
|
|
return -EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void hv_drm_plane_atomic_update(struct drm_plane *plane,
|
|
struct drm_atomic_commit *state)
|
|
{
|
|
struct hv_drm_device *hv = to_hv_drm(plane->dev);
|
|
struct drm_plane_state *old_state = drm_atomic_get_old_plane_state(state, plane);
|
|
struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state, plane);
|
|
struct drm_shadow_plane_state *shadow_plane_state = to_drm_shadow_plane_state(new_state);
|
|
struct drm_rect damage;
|
|
struct drm_rect dst_clip;
|
|
struct drm_atomic_helper_damage_iter iter;
|
|
|
|
drm_atomic_helper_damage_iter_init(&iter, old_state, new_state);
|
|
drm_atomic_for_each_plane_damage(&iter, &damage) {
|
|
dst_clip = new_state->dst;
|
|
|
|
if (!drm_rect_intersect(&dst_clip, &damage))
|
|
continue;
|
|
|
|
hv_drm_blit_to_vram_rect(new_state->fb, &shadow_plane_state->data[0], &damage);
|
|
hv_drm_update_dirt(hv->hdev, &damage);
|
|
}
|
|
}
|
|
|
|
static int hv_drm_plane_get_scanout_buffer(struct drm_plane *plane,
|
|
struct drm_scanout_buffer *sb)
|
|
{
|
|
struct hv_drm_device *hv = to_hv_drm(plane->dev);
|
|
struct iosys_map map = IOSYS_MAP_INIT_VADDR_IOMEM(hv->vram);
|
|
|
|
if (plane->state && plane->state->fb) {
|
|
sb->format = plane->state->fb->format;
|
|
sb->width = plane->state->fb->width;
|
|
sb->height = plane->state->fb->height;
|
|
sb->pitch[0] = plane->state->fb->pitches[0];
|
|
sb->map[0] = map;
|
|
return 0;
|
|
}
|
|
return -ENODEV;
|
|
}
|
|
|
|
static void hv_drm_plane_panic_flush(struct drm_plane *plane)
|
|
{
|
|
struct hv_drm_device *hv = to_hv_drm(plane->dev);
|
|
struct drm_rect rect;
|
|
|
|
if (plane->state && plane->state->fb) {
|
|
rect.x1 = 0;
|
|
rect.y1 = 0;
|
|
rect.x2 = plane->state->fb->width;
|
|
rect.y2 = plane->state->fb->height;
|
|
|
|
hv_drm_update_dirt(hv->hdev, &rect);
|
|
}
|
|
|
|
vmbus_initiate_unload(true);
|
|
}
|
|
|
|
static const struct drm_plane_helper_funcs hv_drm_plane_helper_funcs = {
|
|
DRM_GEM_SHADOW_PLANE_HELPER_FUNCS,
|
|
.atomic_check = hv_drm_plane_atomic_check,
|
|
.atomic_update = hv_drm_plane_atomic_update,
|
|
.get_scanout_buffer = hv_drm_plane_get_scanout_buffer,
|
|
.panic_flush = hv_drm_plane_panic_flush,
|
|
};
|
|
|
|
static const struct drm_plane_funcs hv_drm_plane_funcs = {
|
|
.update_plane = drm_atomic_helper_update_plane,
|
|
.disable_plane = drm_atomic_helper_disable_plane,
|
|
.destroy = drm_plane_cleanup,
|
|
DRM_GEM_SHADOW_PLANE_FUNCS,
|
|
};
|
|
|
|
static const struct drm_encoder_funcs hv_drm_simple_encoder_funcs_cleanup = {
|
|
.destroy = drm_encoder_cleanup,
|
|
};
|
|
|
|
static inline int hv_drm_pipe_init(struct hv_drm_device *hv)
|
|
{
|
|
struct drm_device *dev = &hv->dev;
|
|
struct drm_encoder *encoder = &hv->encoder;
|
|
struct drm_plane *plane = &hv->plane;
|
|
struct drm_crtc *crtc = &hv->crtc;
|
|
struct drm_connector *connector = &hv->connector;
|
|
int ret;
|
|
|
|
ret = drm_universal_plane_init(dev, plane, 0,
|
|
&hv_drm_plane_funcs,
|
|
hv_drm_formats, ARRAY_SIZE(hv_drm_formats),
|
|
hv_drm_modifiers,
|
|
DRM_PLANE_TYPE_PRIMARY, NULL);
|
|
if (ret)
|
|
return ret;
|
|
drm_plane_helper_add(plane, &hv_drm_plane_helper_funcs);
|
|
drm_plane_enable_fb_damage_clips(plane);
|
|
|
|
ret = drm_crtc_init_with_planes(dev, crtc, plane, NULL,
|
|
&hv_drm_crtc_funcs, NULL);
|
|
if (ret)
|
|
return ret;
|
|
drm_crtc_helper_add(crtc, &hv_drm_crtc_helper_funcs);
|
|
|
|
encoder->possible_crtcs = drm_crtc_mask(crtc);
|
|
ret = drm_encoder_init(dev, encoder,
|
|
&hv_drm_simple_encoder_funcs_cleanup,
|
|
DRM_MODE_ENCODER_NONE, NULL);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = hv_drm_conn_init(hv);
|
|
if (ret) {
|
|
drm_err(dev, "Failed to initialized connector.\n");
|
|
return ret;
|
|
}
|
|
|
|
return drm_connector_attach_encoder(connector, encoder);
|
|
}
|
|
|
|
static enum drm_mode_status
|
|
hv_drm_mode_valid(struct drm_device *dev,
|
|
const struct drm_display_mode *mode)
|
|
{
|
|
struct hv_drm_device *hv = to_hv_drm(dev);
|
|
|
|
if (hv_drm_check_size(hv, mode->hdisplay, mode->vdisplay, NULL))
|
|
return MODE_BAD;
|
|
|
|
return MODE_OK;
|
|
}
|
|
|
|
static const struct drm_mode_config_funcs hv_drm_mode_config_funcs = {
|
|
.fb_create = drm_gem_fb_create_with_dirty,
|
|
.mode_valid = hv_drm_mode_valid,
|
|
.atomic_check = drm_atomic_helper_check,
|
|
.atomic_commit = drm_atomic_helper_commit,
|
|
};
|
|
|
|
int hv_drm_mode_config_init(struct hv_drm_device *hv)
|
|
{
|
|
struct drm_device *dev = &hv->dev;
|
|
int ret;
|
|
|
|
ret = drmm_mode_config_init(dev);
|
|
if (ret) {
|
|
drm_err(dev, "Failed to initialized mode setting.\n");
|
|
return ret;
|
|
}
|
|
|
|
dev->mode_config.min_width = 0;
|
|
dev->mode_config.min_height = 0;
|
|
dev->mode_config.max_width = hv->screen_width_max;
|
|
dev->mode_config.max_height = hv->screen_height_max;
|
|
|
|
dev->mode_config.preferred_depth = hv->screen_depth;
|
|
dev->mode_config.prefer_shadow = 0;
|
|
|
|
dev->mode_config.funcs = &hv_drm_mode_config_funcs;
|
|
|
|
ret = hv_drm_pipe_init(hv);
|
|
if (ret) {
|
|
drm_err(dev, "Failed to initialized pipe.\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = drm_vblank_init(dev, 1);
|
|
if (ret)
|
|
return ret;
|
|
|
|
drm_mode_config_reset(dev);
|
|
|
|
return 0;
|
|
}
|