blob: 011211e4167d41dce17d56e8baee0b168b37e7b6 [file] [log] [blame]
Inki Dae1c248b72011-10-04 19:19:01 +09001/* exynos_drm_core.c
2 *
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * Author:
5 * Inki Dae <inki.dae@samsung.com>
6 * Joonyoung Shim <jy0922.shim@samsung.com>
7 * Seung-Woo Kim <sw0312.kim@samsung.com>
8 *
Inki Daed81aecb2012-12-18 02:30:17 +09009 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
Inki Dae1c248b72011-10-04 19:19:01 +090013 */
14
David Howells760285e2012-10-02 18:01:07 +010015#include <drm/drmP.h>
Inki Dae1c248b72011-10-04 19:19:01 +090016#include "exynos_drm_drv.h"
Sean Paul080be03d2014-02-19 21:02:55 +090017#include "exynos_drm_crtc.h"
Inki Dae1c248b72011-10-04 19:19:01 +090018#include "exynos_drm_fbdev.h"
19
Inki Dae1c248b72011-10-04 19:19:01 +090020static LIST_HEAD(exynos_drm_subdrv_list);
Inki Dae1c248b72011-10-04 19:19:01 +090021
Inki Dae1c248b72011-10-04 19:19:01 +090022int exynos_drm_subdrv_register(struct exynos_drm_subdrv *subdrv)
23{
Inki Dae1c248b72011-10-04 19:19:01 +090024 if (!subdrv)
25 return -EINVAL;
26
Inki Dae1c248b72011-10-04 19:19:01 +090027 list_add_tail(&subdrv->list, &exynos_drm_subdrv_list);
Inki Dae1c248b72011-10-04 19:19:01 +090028
29 return 0;
30}
Inki Dae1c248b72011-10-04 19:19:01 +090031
32int exynos_drm_subdrv_unregister(struct exynos_drm_subdrv *subdrv)
33{
Joonyoung Shim132a5b92012-03-16 18:47:08 +090034 if (!subdrv)
35 return -EINVAL;
Inki Dae1c248b72011-10-04 19:19:01 +090036
Joonyoung Shim132a5b92012-03-16 18:47:08 +090037 list_del(&subdrv->list);
Inki Dae1c248b72011-10-04 19:19:01 +090038
Joonyoung Shim132a5b92012-03-16 18:47:08 +090039 return 0;
Inki Dae1c248b72011-10-04 19:19:01 +090040}
Joonyoung Shim9084f7b2012-03-16 18:47:09 +090041
Inki Daef37cd5e2014-05-09 14:25:20 +090042int exynos_drm_device_subdrv_probe(struct drm_device *dev)
43{
44 struct exynos_drm_subdrv *subdrv, *n;
45 int err;
46
47 if (!dev)
48 return -EINVAL;
49
50 list_for_each_entry_safe(subdrv, n, &exynos_drm_subdrv_list, list) {
51 if (subdrv->probe) {
52 subdrv->drm_dev = dev;
53
54 /*
55 * this probe callback would be called by sub driver
56 * after setting of all resources to this sub driver,
57 * such as clock, irq and register map are done.
58 */
59 err = subdrv->probe(dev, subdrv->dev);
60 if (err) {
61 DRM_DEBUG("exynos drm subdrv probe failed.\n");
62 list_del(&subdrv->list);
63 continue;
64 }
65 }
66 }
67
68 return 0;
69}
Inki Daef37cd5e2014-05-09 14:25:20 +090070
71int exynos_drm_device_subdrv_remove(struct drm_device *dev)
72{
73 struct exynos_drm_subdrv *subdrv;
74
75 if (!dev) {
76 WARN(1, "Unexpected drm device unregister!\n");
77 return -EINVAL;
78 }
79
80 list_for_each_entry(subdrv, &exynos_drm_subdrv_list, list) {
81 if (subdrv->remove)
82 subdrv->remove(dev, subdrv->dev);
83 }
84
85 return 0;
86}
Inki Daef37cd5e2014-05-09 14:25:20 +090087
Joonyoung Shim9084f7b2012-03-16 18:47:09 +090088int exynos_drm_subdrv_open(struct drm_device *dev, struct drm_file *file)
89{
90 struct exynos_drm_subdrv *subdrv;
91 int ret;
92
93 list_for_each_entry(subdrv, &exynos_drm_subdrv_list, list) {
94 if (subdrv->open) {
Joonyoung Shim677e84c2012-04-05 20:49:27 +090095 ret = subdrv->open(dev, subdrv->dev, file);
Joonyoung Shim9084f7b2012-03-16 18:47:09 +090096 if (ret)
97 goto err;
98 }
99 }
100
101 return 0;
102
103err:
Arnd Bergmann55c4b902016-03-14 15:22:25 +0100104 list_for_each_entry_continue_reverse(subdrv, &exynos_drm_subdrv_list, list) {
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900105 if (subdrv->close)
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900106 subdrv->close(dev, subdrv->dev, file);
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900107 }
108 return ret;
109}
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900110
111void exynos_drm_subdrv_close(struct drm_device *dev, struct drm_file *file)
112{
113 struct exynos_drm_subdrv *subdrv;
114
115 list_for_each_entry(subdrv, &exynos_drm_subdrv_list, list) {
116 if (subdrv->close)
Joonyoung Shim677e84c2012-04-05 20:49:27 +0900117 subdrv->close(dev, subdrv->dev, file);
Joonyoung Shim9084f7b2012-03-16 18:47:09 +0900118 }
119}