4 * Copyright (C) 2012 Sascha Hauer, Pengutronix
6 * Based on Samsung Exynos code
8 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #include <linux/module.h>
22 #include <drm/drm_crtc.h>
23 #include <drm/drm_crtc_helper.h>
24 #include <drm/drm_gem_cma_helper.h>
25 #include <drm/drm_fb_cma_helper.h>
29 static struct drm_mode_config_funcs imx_drm_mode_config_funcs
= {
30 .fb_create
= drm_fb_cma_create
,
33 void imx_drm_mode_config_init(struct drm_device
*dev
)
35 dev
->mode_config
.min_width
= 64;
36 dev
->mode_config
.min_height
= 64;
39 * set max width and height as default value(4096x4096).
40 * this value would be used to check framebuffer size limitation
41 * at drm_mode_addfb().
43 dev
->mode_config
.max_width
= 4096;
44 dev
->mode_config
.max_height
= 4096;
46 dev
->mode_config
.funcs
= &imx_drm_mode_config_funcs
;