sti_drv.c 8.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) STMicroelectronics SA 2014
 * Author: Benjamin Gaignard <benjamin.gaignard@st.com> for STMicroelectronics.
 * License terms:  GNU General Public License (GPL), version 2
 */

#include <drm/drmP.h>

#include <linux/component.h>
#include <linux/debugfs.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/of_platform.h>

15 16
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
17 18 19
#include <drm/drm_crtc_helper.h>
#include <drm/drm_gem_cma_helper.h>
#include <drm/drm_fb_cma_helper.h>
20
#include <drm/drm_of.h>
21

22 23
#include "sti_crtc.h"
#include "sti_drv.h"
24
#include "sti_plane.h"
25 26 27 28 29 30 31 32 33 34

#define DRIVER_NAME	"sti"
#define DRIVER_DESC	"STMicroelectronics SoC DRM"
#define DRIVER_DATE	"20140601"
#define DRIVER_MAJOR	1
#define DRIVER_MINOR	0

#define STI_MAX_FB_HEIGHT	4096
#define STI_MAX_FB_WIDTH	4096

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
static int sti_drm_fps_get(void *data, u64 *val)
{
	struct drm_device *drm_dev = data;
	struct drm_plane *p;
	unsigned int i = 0;

	*val = 0;
	list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
		struct sti_plane *plane = to_sti_plane(p);

		*val |= plane->fps_info.output << i;
		i++;
	}

	return 0;
}

static int sti_drm_fps_set(void *data, u64 val)
{
	struct drm_device *drm_dev = data;
	struct drm_plane *p;
	unsigned int i = 0;

	list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) {
		struct sti_plane *plane = to_sti_plane(p);

V
Vincent Abriou 已提交
61
		memset(&plane->fps_info, 0, sizeof(plane->fps_info));
62
		plane->fps_info.output = (val >> i) & 1;
V
Vincent Abriou 已提交
63

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
		i++;
	}

	return 0;
}

DEFINE_SIMPLE_ATTRIBUTE(sti_drm_fps_fops,
			sti_drm_fps_get, sti_drm_fps_set, "%llu\n");

static int sti_drm_fps_dbg_show(struct seq_file *s, void *data)
{
	struct drm_info_node *node = s->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_plane *p;

	list_for_each_entry(p, &dev->mode_config.plane_list, head) {
		struct sti_plane *plane = to_sti_plane(p);

		seq_printf(s, "%s%s\n",
			   plane->fps_info.fps_str,
			   plane->fps_info.fips_str);
	}

	return 0;
}

static struct drm_info_list sti_drm_dbg_list[] = {
	{"fps_get", sti_drm_fps_dbg_show, 0},
};

static int sti_drm_dbg_init(struct drm_minor *minor)
{
96
	struct dentry *dentry;
97 98 99 100 101 102 103 104
	int ret;

	ret = drm_debugfs_create_files(sti_drm_dbg_list,
				       ARRAY_SIZE(sti_drm_dbg_list),
				       minor->debugfs_root, minor);
	if (ret)
		goto err;

105 106
	dentry = debugfs_create_file("fps_show", S_IRUGO | S_IWUSR,
				     minor->debugfs_root, minor->dev,
107
				     &sti_drm_fps_fops);
108 109
	if (!dentry) {
		ret = -ENOMEM;
110
		goto err;
111
	}
112 113 114 115 116 117 118 119

	DRM_INFO("%s: debugfs installed\n", DRIVER_NAME);
	return 0;
err:
	DRM_ERROR("%s: cannot install debugfs\n", DRIVER_NAME);
	return ret;
}

120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
static int sti_atomic_check(struct drm_device *dev,
			    struct drm_atomic_state *state)
{
	int ret;

	ret = drm_atomic_helper_check_modeset(dev, state);
	if (ret)
		return ret;

	ret = drm_atomic_normalize_zpos(dev, state);
	if (ret)
		return ret;

	ret = drm_atomic_helper_check_planes(dev, state);
	if (ret)
		return ret;

	return ret;
}

140 141 142 143
static void sti_output_poll_changed(struct drm_device *ddev)
{
	struct sti_private *private = ddev->dev_private;

144
	drm_fbdev_cma_hotplug_event(private->fbdev);
145 146
}

147
static const struct drm_mode_config_funcs sti_mode_config_funcs = {
148
	.fb_create = drm_fb_cma_create,
149
	.output_poll_changed = sti_output_poll_changed,
150
	.atomic_check = sti_atomic_check,
151
	.atomic_commit = drm_atomic_helper_commit,
152 153
};

154
static void sti_mode_config_init(struct drm_device *dev)
155 156 157 158 159 160 161 162 163
{
	dev->mode_config.min_width = 0;
	dev->mode_config.min_height = 0;

	/*
	 * set max width and height as default value.
	 * this value would be used to check framebuffer size limitation
	 * at drm_mode_addfb().
	 */
164 165
	dev->mode_config.max_width = STI_MAX_FB_WIDTH;
	dev->mode_config.max_height = STI_MAX_FB_HEIGHT;
166

167
	dev->mode_config.funcs = &sti_mode_config_funcs;
168 169
}

170
DEFINE_DRM_GEM_CMA_FOPS(sti_driver_fops);
171

172
static struct drm_driver sti_driver = {
173
	.driver_features = DRIVER_MODESET |
174
	    DRIVER_GEM | DRIVER_PRIME | DRIVER_ATOMIC,
175
	.gem_free_object_unlocked = drm_gem_cma_free_object,
176 177 178 179
	.gem_vm_ops = &drm_gem_cma_vm_ops,
	.dumb_create = drm_gem_cma_dumb_create,
	.dumb_map_offset = drm_gem_cma_dumb_map_offset,
	.dumb_destroy = drm_gem_dumb_destroy,
180
	.fops = &sti_driver_fops,
181

182 183
	.enable_vblank = sti_crtc_enable_vblank,
	.disable_vblank = sti_crtc_disable_vblank,
184 185 186

	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
187
	.gem_prime_export = drm_gem_prime_export,
188 189 190 191 192 193 194
	.gem_prime_import = drm_gem_prime_import,
	.gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
	.gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
	.gem_prime_vmap = drm_gem_cma_prime_vmap,
	.gem_prime_vunmap = drm_gem_cma_prime_vunmap,
	.gem_prime_mmap = drm_gem_cma_prime_mmap,

195 196
	.debugfs_init = sti_drm_dbg_init,

197 198 199 200 201 202 203 204 205 206 207 208
	.name = DRIVER_NAME,
	.desc = DRIVER_DESC,
	.date = DRIVER_DATE,
	.major = DRIVER_MAJOR,
	.minor = DRIVER_MINOR,
};

static int compare_of(struct device *dev, void *data)
{
	return dev->of_node == data;
}

209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
static int sti_init(struct drm_device *ddev)
{
	struct sti_private *private;

	private = kzalloc(sizeof(*private), GFP_KERNEL);
	if (!private)
		return -ENOMEM;

	ddev->dev_private = (void *)private;
	dev_set_drvdata(ddev->dev, ddev);
	private->drm_dev = ddev;

	drm_mode_config_init(ddev);

	sti_mode_config_init(ddev);

	drm_kms_helper_poll_init(ddev);

	return 0;
}

static void sti_cleanup(struct drm_device *ddev)
{
	struct sti_private *private = ddev->dev_private;

	if (private->fbdev) {
		drm_fbdev_cma_fini(private->fbdev);
		private->fbdev = NULL;
	}

	drm_kms_helper_poll_fini(ddev);
240
	component_unbind_all(ddev->dev, ddev);
241 242 243 244
	kfree(private);
	ddev->dev_private = NULL;
}

245
static int sti_bind(struct device *dev)
246
{
247
	struct drm_device *ddev;
248 249
	struct sti_private *private;
	struct drm_fbdev_cma *fbdev;
250 251 252
	int ret;

	ddev = drm_dev_alloc(&sti_driver, dev);
253 254
	if (IS_ERR(ddev))
		return PTR_ERR(ddev);
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269

	ret = sti_init(ddev);
	if (ret)
		goto err_drm_dev_unref;

	ret = component_bind_all(ddev->dev, ddev);
	if (ret)
		goto err_cleanup;

	ret = drm_dev_register(ddev, 0);
	if (ret)
		goto err_register;

	drm_mode_config_reset(ddev);

270 271
	private = ddev->dev_private;
	if (ddev->mode_config.num_connector) {
272
		fbdev = drm_fbdev_cma_init(ddev, 32,
273 274 275 276 277 278 279 280
					   ddev->mode_config.num_connector);
		if (IS_ERR(fbdev)) {
			DRM_DEBUG_DRIVER("Warning: fails to create fbdev\n");
			fbdev = NULL;
		}
		private->fbdev = fbdev;
	}

281 282 283 284 285 286 287 288 289
	return 0;

err_register:
	drm_mode_config_cleanup(ddev);
err_cleanup:
	sti_cleanup(ddev);
err_drm_dev_unref:
	drm_dev_unref(ddev);
	return ret;
290 291
}

292
static void sti_unbind(struct device *dev)
293
{
294 295 296 297 298
	struct drm_device *ddev = dev_get_drvdata(dev);

	drm_dev_unregister(ddev);
	sti_cleanup(ddev);
	drm_dev_unref(ddev);
299 300
}

301 302 303
static const struct component_master_ops sti_ops = {
	.bind = sti_bind,
	.unbind = sti_unbind,
304 305
};

306
static int sti_platform_probe(struct platform_device *pdev)
307 308
{
	struct device *dev = &pdev->dev;
309
	struct device_node *node = dev->of_node;
310 311 312 313 314
	struct device_node *child_np;
	struct component_match *match = NULL;

	dma_set_coherent_mask(dev, DMA_BIT_MASK(32));

315
	devm_of_platform_populate(dev);
316

317 318 319
	child_np = of_get_next_available_child(node, NULL);

	while (child_np) {
320 321
		drm_of_component_match_add(dev, &match, compare_of,
					   child_np);
322 323 324
		child_np = of_get_next_available_child(node, child_np);
	}

325
	return component_master_add_with_match(dev, &sti_ops, match);
326 327
}

328
static int sti_platform_remove(struct platform_device *pdev)
329
{
330
	component_master_del(&pdev->dev, &sti_ops);
331

332 333 334
	return 0;
}

335
static const struct of_device_id sti_dt_ids[] = {
336 337 338
	{ .compatible = "st,sti-display-subsystem", },
	{ /* end node */ },
};
339
MODULE_DEVICE_TABLE(of, sti_dt_ids);
340

341 342 343
static struct platform_driver sti_platform_driver = {
	.probe = sti_platform_probe,
	.remove = sti_platform_remove,
344 345
	.driver = {
		.name = DRIVER_NAME,
346
		.of_match_table = sti_dt_ids,
347 348 349
	},
};

T
Thierry Reding 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
static struct platform_driver * const drivers[] = {
	&sti_tvout_driver,
	&sti_hqvdp_driver,
	&sti_hdmi_driver,
	&sti_hda_driver,
	&sti_dvo_driver,
	&sti_vtg_driver,
	&sti_compositor_driver,
	&sti_platform_driver,
};

static int sti_drm_init(void)
{
	return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
}
module_init(sti_drm_init);

static void sti_drm_exit(void)
{
	platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
}
module_exit(sti_drm_exit);
372 373 374 375

MODULE_AUTHOR("Benjamin Gaignard <benjamin.gaignard@st.com>");
MODULE_DESCRIPTION("STMicroelectronics SoC DRM driver");
MODULE_LICENSE("GPL");