blob: 973ee1fc95c900ac896f1a5c7f3eb60e1f122b74 [file] [log] [blame]
Maxime Ripard9026e0d2015-10-29 09:36:23 +01001/*
2 * Copyright (C) 2015 Free Electrons
3 * Copyright (C) 2015 NextThing Co
4 *
5 * Maxime Ripard <maxime.ripard@free-electrons.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 */
12
Maxime Ripard5d68be92018-01-22 10:25:25 +010013#include <drm/drm_atomic.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010014#include <drm/drm_atomic_helper.h>
Noralf Trønnes22efc852017-11-15 15:19:53 +010015#include <drm/drm_fb_helper.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010016#include <drm/drm_fb_cma_helper.h>
Noralf Trønnes1287c942017-09-24 14:26:23 +020017#include <drm/drm_gem_framebuffer_helper.h>
Maxime Ripard9026e0d2015-10-29 09:36:23 +010018#include <drm/drmP.h>
19
20#include "sun4i_drv.h"
Baoyou Xie0c3ff442016-09-08 18:59:22 +080021#include "sun4i_framebuffer.h"
Maxime Ripard9026e0d2015-10-29 09:36:23 +010022
Maxime Ripardb8f12302017-12-17 18:06:05 +010023static int sun4i_de_atomic_check(struct drm_device *dev,
24 struct drm_atomic_state *state)
25{
26 int ret;
27
28 ret = drm_atomic_helper_check_modeset(dev, state);
29 if (ret)
30 return ret;
31
32 return drm_atomic_helper_check_planes(dev, state);
33}
34
Maxime Ripard9026e0d2015-10-29 09:36:23 +010035static const struct drm_mode_config_funcs sun4i_de_mode_config_funcs = {
Noralf Trønnes22efc852017-11-15 15:19:53 +010036 .output_poll_changed = drm_fb_helper_output_poll_changed,
Maxime Ripardb8f12302017-12-17 18:06:05 +010037 .atomic_check = sun4i_de_atomic_check,
Maxime Ripard9026e0d2015-10-29 09:36:23 +010038 .atomic_commit = drm_atomic_helper_commit,
Noralf Trønnes1287c942017-09-24 14:26:23 +020039 .fb_create = drm_gem_fb_create,
Maxime Ripard9026e0d2015-10-29 09:36:23 +010040};
41
Maxime Ripard5d68be92018-01-22 10:25:25 +010042static struct drm_mode_config_helper_funcs sun4i_de_mode_config_helpers = {
43 .atomic_commit_tail = drm_atomic_helper_commit_tail_rpm,
44};
45
Noralf Trønnes22efc852017-11-15 15:19:53 +010046int sun4i_framebuffer_init(struct drm_device *drm)
Maxime Ripard9026e0d2015-10-29 09:36:23 +010047{
48 drm_mode_config_reset(drm);
49
50 drm->mode_config.max_width = 8192;
51 drm->mode_config.max_height = 8192;
52
53 drm->mode_config.funcs = &sun4i_de_mode_config_funcs;
Maxime Ripard5d68be92018-01-22 10:25:25 +010054 drm->mode_config.helper_private = &sun4i_de_mode_config_helpers;
Maxime Ripard9026e0d2015-10-29 09:36:23 +010055
Noralf Trønnes22efc852017-11-15 15:19:53 +010056 return drm_fb_cma_fbdev_init(drm, 32, 0);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010057}
58
59void sun4i_framebuffer_free(struct drm_device *drm)
60{
Noralf Trønnes22efc852017-11-15 15:19:53 +010061 drm_fb_cma_fbdev_fini(drm);
Maxime Ripard9026e0d2015-10-29 09:36:23 +010062}