Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / gpu / drm / sun4i / sun4i_framebuffer.c
blob6825ef46f43fe83e9a9e1a76f5c96cd5ebcce8e2
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Copyright (C) 2015 Free Electrons
4 * Copyright (C) 2015 NextThing Co
6 * Maxime Ripard <maxime.ripard@free-electrons.com>
7 */
9 #include <drm/drm_atomic.h>
10 #include <drm/drm_atomic_helper.h>
11 #include <drm/drm_gem_framebuffer_helper.h>
13 #include "sun4i_drv.h"
14 #include "sun4i_framebuffer.h"
16 static int sun4i_de_atomic_check(struct drm_device *dev,
17 struct drm_atomic_state *state)
19 int ret;
21 ret = drm_atomic_helper_check_modeset(dev, state);
22 if (ret)
23 return ret;
25 ret = drm_atomic_normalize_zpos(dev, state);
26 if (ret)
27 return ret;
29 return drm_atomic_helper_check_planes(dev, state);
32 static const struct drm_mode_config_funcs sun4i_de_mode_config_funcs = {
33 .atomic_check = sun4i_de_atomic_check,
34 .atomic_commit = drm_atomic_helper_commit,
35 .fb_create = drm_gem_fb_create,
38 static const struct drm_mode_config_helper_funcs sun4i_de_mode_config_helpers = {
39 .atomic_commit_tail = drm_atomic_helper_commit_tail_rpm,
42 void sun4i_framebuffer_init(struct drm_device *drm)
44 drm_mode_config_reset(drm);
46 drm->mode_config.max_width = 8192;
47 drm->mode_config.max_height = 8192;
49 drm->mode_config.funcs = &sun4i_de_mode_config_funcs;
50 drm->mode_config.helper_private = &sun4i_de_mode_config_helpers;