blob: 3e43a5d4fb09e0c9233f02b6bd1545e5abc190cc [file] [log] [blame]
Carlos Palminha51dacf22016-02-19 15:30:26 +03001/*
2 * ARC PGU DRM driver.
3 *
4 * Copyright (C) 2016 Synopsys, Inc. (www.synopsys.com)
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
17#include <linux/clk.h>
18#include <drm/drm_crtc_helper.h>
19#include <drm/drm_fb_cma_helper.h>
20#include <drm/drm_gem_cma_helper.h>
21#include <drm/drm_atomic_helper.h>
Alexey Brodkin8aeab992016-04-27 16:02:39 +030022#include <linux/of_reserved_mem.h>
Carlos Palminha51dacf22016-02-19 15:30:26 +030023
24#include "arcpgu.h"
25#include "arcpgu_regs.h"
26
27static void arcpgu_fb_output_poll_changed(struct drm_device *dev)
28{
29 struct arcpgu_drm_private *arcpgu = dev->dev_private;
30
Markus Elfringf15a8e92016-07-15 21:52:40 +020031 drm_fbdev_cma_hotplug_event(arcpgu->fbdev);
Carlos Palminha51dacf22016-02-19 15:30:26 +030032}
33
Carlos Palminha51dacf22016-02-19 15:30:26 +030034static struct drm_mode_config_funcs arcpgu_drm_modecfg_funcs = {
35 .fb_create = drm_fb_cma_create,
36 .output_poll_changed = arcpgu_fb_output_poll_changed,
37 .atomic_check = drm_atomic_helper_check,
Daniel Vetter17b58b22016-06-08 14:19:03 +020038 .atomic_commit = drm_atomic_helper_commit,
Carlos Palminha51dacf22016-02-19 15:30:26 +030039};
40
41static void arcpgu_setup_mode_config(struct drm_device *drm)
42{
43 drm_mode_config_init(drm);
44 drm->mode_config.min_width = 0;
45 drm->mode_config.min_height = 0;
46 drm->mode_config.max_width = 1920;
47 drm->mode_config.max_height = 1080;
48 drm->mode_config.funcs = &arcpgu_drm_modecfg_funcs;
49}
50
Wei Yongjunee29a9e2016-07-19 12:04:05 +000051static int arcpgu_gem_mmap(struct file *filp, struct vm_area_struct *vma)
Carlos Palminha51dacf22016-02-19 15:30:26 +030052{
53 int ret;
54
55 ret = drm_gem_mmap(filp, vma);
56 if (ret)
57 return ret;
58
59 vma->vm_page_prot = pgprot_noncached(vm_get_page_prot(vma->vm_flags));
60 return 0;
61}
62
63static const struct file_operations arcpgu_drm_ops = {
64 .owner = THIS_MODULE,
65 .open = drm_open,
66 .release = drm_release,
67 .unlocked_ioctl = drm_ioctl,
Carlos Palminha51dacf22016-02-19 15:30:26 +030068 .compat_ioctl = drm_compat_ioctl,
Carlos Palminha51dacf22016-02-19 15:30:26 +030069 .poll = drm_poll,
70 .read = drm_read,
71 .llseek = no_llseek,
72 .mmap = arcpgu_gem_mmap,
73};
74
Carlos Palminha51dacf22016-02-19 15:30:26 +030075static void arcpgu_lastclose(struct drm_device *drm)
76{
77 struct arcpgu_drm_private *arcpgu = drm->dev_private;
78
79 drm_fbdev_cma_restore_mode(arcpgu->fbdev);
80}
81
82static int arcpgu_load(struct drm_device *drm)
83{
84 struct platform_device *pdev = to_platform_device(drm->dev);
85 struct arcpgu_drm_private *arcpgu;
86 struct device_node *encoder_node;
87 struct resource *res;
88 int ret;
89
90 arcpgu = devm_kzalloc(&pdev->dev, sizeof(*arcpgu), GFP_KERNEL);
91 if (arcpgu == NULL)
92 return -ENOMEM;
93
94 drm->dev_private = arcpgu;
95
96 arcpgu->clk = devm_clk_get(drm->dev, "pxlclk");
97 if (IS_ERR(arcpgu->clk))
98 return PTR_ERR(arcpgu->clk);
99
Carlos Palminha51dacf22016-02-19 15:30:26 +0300100 arcpgu_setup_mode_config(drm);
101
102 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
103 arcpgu->regs = devm_ioremap_resource(&pdev->dev, res);
Wei Yongjun77259362016-07-19 12:01:37 +0000104 if (IS_ERR(arcpgu->regs))
Carlos Palminha51dacf22016-02-19 15:30:26 +0300105 return PTR_ERR(arcpgu->regs);
Carlos Palminha51dacf22016-02-19 15:30:26 +0300106
107 dev_info(drm->dev, "arc_pgu ID: 0x%x\n",
108 arc_pgu_read(arcpgu, ARCPGU_REG_ID));
109
Alexey Brodkin8aeab992016-04-27 16:02:39 +0300110 /* Get the optional framebuffer memory resource */
111 ret = of_reserved_mem_device_init(drm->dev);
112 if (ret && ret != -ENODEV)
113 return ret;
114
Carlos Palminha51dacf22016-02-19 15:30:26 +0300115 if (dma_set_mask_and_coherent(drm->dev, DMA_BIT_MASK(32)))
116 return -ENODEV;
117
118 if (arc_pgu_setup_crtc(drm) < 0)
119 return -ENODEV;
120
121 /* find the encoder node and initialize it */
122 encoder_node = of_parse_phandle(drm->dev->of_node, "encoder-slave", 0);
Ruud Derwiga189d282016-06-06 10:47:46 +0300123 if (encoder_node) {
124 ret = arcpgu_drm_hdmi_init(drm, encoder_node);
Peter Chen8e7446c2016-07-15 11:17:05 +0800125 of_node_put(encoder_node);
Ruud Derwiga189d282016-06-06 10:47:46 +0300126 if (ret < 0)
127 return ret;
128 } else {
Wei Yongjunee29a9e2016-07-19 12:04:05 +0000129 ret = arcpgu_drm_sim_init(drm, NULL);
Ruud Derwiga189d282016-06-06 10:47:46 +0300130 if (ret < 0)
131 return ret;
Carlos Palminha51dacf22016-02-19 15:30:26 +0300132 }
133
Carlos Palminha51dacf22016-02-19 15:30:26 +0300134 drm_mode_config_reset(drm);
135 drm_kms_helper_poll_init(drm);
136
137 arcpgu->fbdev = drm_fbdev_cma_init(drm, 16,
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200138 drm->mode_config.num_connector);
Carlos Palminha51dacf22016-02-19 15:30:26 +0300139 if (IS_ERR(arcpgu->fbdev)) {
140 ret = PTR_ERR(arcpgu->fbdev);
141 arcpgu->fbdev = NULL;
142 return -ENODEV;
143 }
144
145 platform_set_drvdata(pdev, arcpgu);
146 return 0;
147}
148
Wei Yongjunee29a9e2016-07-19 12:04:05 +0000149static int arcpgu_unload(struct drm_device *drm)
Carlos Palminha51dacf22016-02-19 15:30:26 +0300150{
151 struct arcpgu_drm_private *arcpgu = drm->dev_private;
152
153 if (arcpgu->fbdev) {
154 drm_fbdev_cma_fini(arcpgu->fbdev);
155 arcpgu->fbdev = NULL;
156 }
157 drm_kms_helper_poll_fini(drm);
Carlos Palminha51dacf22016-02-19 15:30:26 +0300158 drm_mode_config_cleanup(drm);
159
160 return 0;
161}
162
163static struct drm_driver arcpgu_drm_driver = {
164 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME |
165 DRIVER_ATOMIC,
Carlos Palminha51dacf22016-02-19 15:30:26 +0300166 .lastclose = arcpgu_lastclose,
167 .name = "drm-arcpgu",
168 .desc = "ARC PGU Controller",
169 .date = "20160219",
170 .major = 1,
171 .minor = 0,
172 .patchlevel = 0,
173 .fops = &arcpgu_drm_ops,
174 .dumb_create = drm_gem_cma_dumb_create,
175 .dumb_map_offset = drm_gem_cma_dumb_map_offset,
176 .dumb_destroy = drm_gem_dumb_destroy,
Carlos Palminha51dacf22016-02-19 15:30:26 +0300177 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
178 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
Daniel Vettere1512ee2016-05-30 19:53:16 +0200179 .gem_free_object_unlocked = drm_gem_cma_free_object,
Carlos Palminha51dacf22016-02-19 15:30:26 +0300180 .gem_vm_ops = &drm_gem_cma_vm_ops,
181 .gem_prime_export = drm_gem_prime_export,
182 .gem_prime_import = drm_gem_prime_import,
183 .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table,
184 .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table,
185 .gem_prime_vmap = drm_gem_cma_prime_vmap,
186 .gem_prime_vunmap = drm_gem_cma_prime_vunmap,
187 .gem_prime_mmap = drm_gem_cma_prime_mmap,
188};
189
190static int arcpgu_probe(struct platform_device *pdev)
191{
192 struct drm_device *drm;
193 int ret;
194
195 drm = drm_dev_alloc(&arcpgu_drm_driver, &pdev->dev);
Tom Gundersen0f288602016-09-21 16:59:19 +0200196 if (IS_ERR(drm))
197 return PTR_ERR(drm);
Carlos Palminha51dacf22016-02-19 15:30:26 +0300198
199 ret = arcpgu_load(drm);
200 if (ret)
201 goto err_unref;
202
203 ret = drm_dev_register(drm, 0);
204 if (ret)
205 goto err_unload;
206
Carlos Palminha51dacf22016-02-19 15:30:26 +0300207 return 0;
208
Carlos Palminha51dacf22016-02-19 15:30:26 +0300209err_unload:
210 arcpgu_unload(drm);
211
212err_unref:
213 drm_dev_unref(drm);
214
215 return ret;
216}
217
218static int arcpgu_remove(struct platform_device *pdev)
219{
220 struct drm_device *drm = platform_get_drvdata(pdev);
221
Carlos Palminha51dacf22016-02-19 15:30:26 +0300222 drm_dev_unregister(drm);
223 arcpgu_unload(drm);
224 drm_dev_unref(drm);
225
226 return 0;
227}
228
229static const struct of_device_id arcpgu_of_table[] = {
230 {.compatible = "snps,arcpgu"},
231 {}
232};
233
234MODULE_DEVICE_TABLE(of, arcpgu_of_table);
235
236static struct platform_driver arcpgu_platform_driver = {
237 .probe = arcpgu_probe,
238 .remove = arcpgu_remove,
239 .driver = {
240 .name = "arcpgu",
241 .of_match_table = arcpgu_of_table,
242 },
243};
244
245module_platform_driver(arcpgu_platform_driver);
246
247MODULE_AUTHOR("Carlos Palminha <palminha@synopsys.com>");
248MODULE_DESCRIPTION("ARC PGU DRM driver");
249MODULE_LICENSE("GPL");