drm/msm: move irq utils to mdp_kms
[cascardo/linux.git] / drivers / gpu / drm / msm / mdp / mdp4 / mdp4_kms.c
1 /*
2  * Copyright (C) 2013 Red Hat
3  * Author: Rob Clark <robdclark@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18
19 #include "msm_drv.h"
20 #include "msm_mmu.h"
21 #include "mdp4_kms.h"
22
23 static struct mdp4_platform_config *mdp4_get_config(struct platform_device *dev);
24
25 static int mdp4_hw_init(struct msm_kms *kms)
26 {
27         struct mdp4_kms *mdp4_kms = to_mdp4_kms(to_mdp_kms(kms));
28         struct drm_device *dev = mdp4_kms->dev;
29         uint32_t version, major, minor, dmap_cfg, vg_cfg;
30         unsigned long clk;
31         int ret = 0;
32
33         pm_runtime_get_sync(dev->dev);
34
35         mdp4_enable(mdp4_kms);
36         version = mdp4_read(mdp4_kms, REG_MDP4_VERSION);
37         mdp4_disable(mdp4_kms);
38
39         major = FIELD(version, MDP4_VERSION_MAJOR);
40         minor = FIELD(version, MDP4_VERSION_MINOR);
41
42         DBG("found MDP version v%d.%d", major, minor);
43
44         if (major != 4) {
45                 dev_err(dev->dev, "unexpected MDP version: v%d.%d\n",
46                                 major, minor);
47                 ret = -ENXIO;
48                 goto out;
49         }
50
51         mdp4_kms->rev = minor;
52
53         if (mdp4_kms->dsi_pll_vdda) {
54                 if ((mdp4_kms->rev == 2) || (mdp4_kms->rev == 4)) {
55                         ret = regulator_set_voltage(mdp4_kms->dsi_pll_vdda,
56                                         1200000, 1200000);
57                         if (ret) {
58                                 dev_err(dev->dev,
59                                         "failed to set dsi_pll_vdda voltage: %d\n", ret);
60                                 goto out;
61                         }
62                 }
63         }
64
65         if (mdp4_kms->dsi_pll_vddio) {
66                 if (mdp4_kms->rev == 2) {
67                         ret = regulator_set_voltage(mdp4_kms->dsi_pll_vddio,
68                                         1800000, 1800000);
69                         if (ret) {
70                                 dev_err(dev->dev,
71                                         "failed to set dsi_pll_vddio voltage: %d\n", ret);
72                                 goto out;
73                         }
74                 }
75         }
76
77         if (mdp4_kms->rev > 1) {
78                 mdp4_write(mdp4_kms, REG_MDP4_CS_CONTROLLER0, 0x0707ffff);
79                 mdp4_write(mdp4_kms, REG_MDP4_CS_CONTROLLER1, 0x03073f3f);
80         }
81
82         mdp4_write(mdp4_kms, REG_MDP4_PORTMAP_MODE, 0x3);
83
84         /* max read pending cmd config, 3 pending requests: */
85         mdp4_write(mdp4_kms, REG_MDP4_READ_CNFG, 0x02222);
86
87         clk = clk_get_rate(mdp4_kms->clk);
88
89         if ((mdp4_kms->rev >= 1) || (clk >= 90000000)) {
90                 dmap_cfg = 0x47;     /* 16 bytes-burst x 8 req */
91                 vg_cfg = 0x47;       /* 16 bytes-burs x 8 req */
92         } else {
93                 dmap_cfg = 0x27;     /* 8 bytes-burst x 8 req */
94                 vg_cfg = 0x43;       /* 16 bytes-burst x 4 req */
95         }
96
97         DBG("fetch config: dmap=%02x, vg=%02x", dmap_cfg, vg_cfg);
98
99         mdp4_write(mdp4_kms, REG_MDP4_DMA_FETCH_CONFIG(DMA_P), dmap_cfg);
100         mdp4_write(mdp4_kms, REG_MDP4_DMA_FETCH_CONFIG(DMA_E), dmap_cfg);
101
102         mdp4_write(mdp4_kms, REG_MDP4_PIPE_FETCH_CONFIG(VG1), vg_cfg);
103         mdp4_write(mdp4_kms, REG_MDP4_PIPE_FETCH_CONFIG(VG2), vg_cfg);
104         mdp4_write(mdp4_kms, REG_MDP4_PIPE_FETCH_CONFIG(RGB1), vg_cfg);
105         mdp4_write(mdp4_kms, REG_MDP4_PIPE_FETCH_CONFIG(RGB2), vg_cfg);
106
107         if (mdp4_kms->rev >= 2)
108                 mdp4_write(mdp4_kms, REG_MDP4_LAYERMIXER_IN_CFG_UPDATE_METHOD, 1);
109
110         /* disable CSC matrix / YUV by default: */
111         mdp4_write(mdp4_kms, REG_MDP4_PIPE_OP_MODE(VG1), 0);
112         mdp4_write(mdp4_kms, REG_MDP4_PIPE_OP_MODE(VG2), 0);
113         mdp4_write(mdp4_kms, REG_MDP4_DMA_P_OP_MODE, 0);
114         mdp4_write(mdp4_kms, REG_MDP4_DMA_S_OP_MODE, 0);
115         mdp4_write(mdp4_kms, REG_MDP4_OVLP_CSC_CONFIG(1), 0);
116         mdp4_write(mdp4_kms, REG_MDP4_OVLP_CSC_CONFIG(2), 0);
117
118         if (mdp4_kms->rev > 1)
119                 mdp4_write(mdp4_kms, REG_MDP4_RESET_STATUS, 1);
120
121 out:
122         pm_runtime_put_sync(dev->dev);
123
124         return ret;
125 }
126
127 static long mdp4_round_pixclk(struct msm_kms *kms, unsigned long rate,
128                 struct drm_encoder *encoder)
129 {
130         /* if we had >1 encoder, we'd need something more clever: */
131         return mdp4_dtv_round_pixclk(encoder, rate);
132 }
133
134 static void mdp4_preclose(struct msm_kms *kms, struct drm_file *file)
135 {
136         struct mdp4_kms *mdp4_kms = to_mdp4_kms(to_mdp_kms(kms));
137         struct msm_drm_private *priv = mdp4_kms->dev->dev_private;
138         unsigned i;
139
140         for (i = 0; i < priv->num_crtcs; i++)
141                 mdp4_crtc_cancel_pending_flip(priv->crtcs[i], file);
142 }
143
144 static void mdp4_destroy(struct msm_kms *kms)
145 {
146         struct mdp4_kms *mdp4_kms = to_mdp4_kms(to_mdp_kms(kms));
147         kfree(mdp4_kms);
148 }
149
150 static const struct mdp_kms_funcs kms_funcs = {
151         .base = {
152                 .hw_init         = mdp4_hw_init,
153                 .irq_preinstall  = mdp4_irq_preinstall,
154                 .irq_postinstall = mdp4_irq_postinstall,
155                 .irq_uninstall   = mdp4_irq_uninstall,
156                 .irq             = mdp4_irq,
157                 .enable_vblank   = mdp4_enable_vblank,
158                 .disable_vblank  = mdp4_disable_vblank,
159                 .get_format      = mdp_get_format,
160                 .round_pixclk    = mdp4_round_pixclk,
161                 .preclose        = mdp4_preclose,
162                 .destroy         = mdp4_destroy,
163         },
164         .set_irqmask         = mdp4_set_irqmask,
165 };
166
167 int mdp4_disable(struct mdp4_kms *mdp4_kms)
168 {
169         DBG("");
170
171         clk_disable_unprepare(mdp4_kms->clk);
172         if (mdp4_kms->pclk)
173                 clk_disable_unprepare(mdp4_kms->pclk);
174         clk_disable_unprepare(mdp4_kms->lut_clk);
175
176         return 0;
177 }
178
179 int mdp4_enable(struct mdp4_kms *mdp4_kms)
180 {
181         DBG("");
182
183         clk_prepare_enable(mdp4_kms->clk);
184         if (mdp4_kms->pclk)
185                 clk_prepare_enable(mdp4_kms->pclk);
186         clk_prepare_enable(mdp4_kms->lut_clk);
187
188         return 0;
189 }
190
191 static int modeset_init(struct mdp4_kms *mdp4_kms)
192 {
193         struct drm_device *dev = mdp4_kms->dev;
194         struct msm_drm_private *priv = dev->dev_private;
195         struct drm_plane *plane;
196         struct drm_crtc *crtc;
197         struct drm_encoder *encoder;
198         int ret;
199
200         /*
201          *  NOTE: this is a bit simplistic until we add support
202          * for more than just RGB1->DMA_E->DTV->HDMI
203          */
204
205         /* construct non-private planes: */
206         plane = mdp4_plane_init(dev, VG1, false);
207         if (IS_ERR(plane)) {
208                 dev_err(dev->dev, "failed to construct plane for VG1\n");
209                 ret = PTR_ERR(plane);
210                 goto fail;
211         }
212         priv->planes[priv->num_planes++] = plane;
213
214         plane = mdp4_plane_init(dev, VG2, false);
215         if (IS_ERR(plane)) {
216                 dev_err(dev->dev, "failed to construct plane for VG2\n");
217                 ret = PTR_ERR(plane);
218                 goto fail;
219         }
220         priv->planes[priv->num_planes++] = plane;
221
222         /* the CRTCs get constructed with a private plane: */
223         plane = mdp4_plane_init(dev, RGB1, true);
224         if (IS_ERR(plane)) {
225                 dev_err(dev->dev, "failed to construct plane for RGB1\n");
226                 ret = PTR_ERR(plane);
227                 goto fail;
228         }
229
230         crtc  = mdp4_crtc_init(dev, plane, priv->num_crtcs, 1, DMA_E);
231         if (IS_ERR(crtc)) {
232                 dev_err(dev->dev, "failed to construct crtc for DMA_E\n");
233                 ret = PTR_ERR(crtc);
234                 goto fail;
235         }
236         priv->crtcs[priv->num_crtcs++] = crtc;
237
238         encoder = mdp4_dtv_encoder_init(dev);
239         if (IS_ERR(encoder)) {
240                 dev_err(dev->dev, "failed to construct DTV encoder\n");
241                 ret = PTR_ERR(encoder);
242                 goto fail;
243         }
244         encoder->possible_crtcs = 0x1;     /* DTV can be hooked to DMA_E */
245         priv->encoders[priv->num_encoders++] = encoder;
246
247         ret = hdmi_init(dev, encoder);
248         if (ret) {
249                 dev_err(dev->dev, "failed to initialize HDMI\n");
250                 goto fail;
251         }
252
253         return 0;
254
255 fail:
256         return ret;
257 }
258
259 static const char *iommu_ports[] = {
260                 "mdp_port0_cb0", "mdp_port1_cb0",
261 };
262
263 struct msm_kms *mdp4_kms_init(struct drm_device *dev)
264 {
265         struct platform_device *pdev = dev->platformdev;
266         struct mdp4_platform_config *config = mdp4_get_config(pdev);
267         struct mdp4_kms *mdp4_kms;
268         struct msm_kms *kms = NULL;
269         struct msm_mmu *mmu;
270         int ret;
271
272         mdp4_kms = kzalloc(sizeof(*mdp4_kms), GFP_KERNEL);
273         if (!mdp4_kms) {
274                 dev_err(dev->dev, "failed to allocate kms\n");
275                 ret = -ENOMEM;
276                 goto fail;
277         }
278
279         mdp_kms_init(&mdp4_kms->base, &kms_funcs);
280
281         kms = &mdp4_kms->base.base;
282
283         mdp4_kms->dev = dev;
284
285         mdp4_kms->mmio = msm_ioremap(pdev, NULL, "MDP4");
286         if (IS_ERR(mdp4_kms->mmio)) {
287                 ret = PTR_ERR(mdp4_kms->mmio);
288                 goto fail;
289         }
290
291         mdp4_kms->dsi_pll_vdda = devm_regulator_get(&pdev->dev, "dsi_pll_vdda");
292         if (IS_ERR(mdp4_kms->dsi_pll_vdda))
293                 mdp4_kms->dsi_pll_vdda = NULL;
294
295         mdp4_kms->dsi_pll_vddio = devm_regulator_get(&pdev->dev, "dsi_pll_vddio");
296         if (IS_ERR(mdp4_kms->dsi_pll_vddio))
297                 mdp4_kms->dsi_pll_vddio = NULL;
298
299         mdp4_kms->vdd = devm_regulator_get(&pdev->dev, "vdd");
300         if (IS_ERR(mdp4_kms->vdd))
301                 mdp4_kms->vdd = NULL;
302
303         if (mdp4_kms->vdd) {
304                 ret = regulator_enable(mdp4_kms->vdd);
305                 if (ret) {
306                         dev_err(dev->dev, "failed to enable regulator vdd: %d\n", ret);
307                         goto fail;
308                 }
309         }
310
311         mdp4_kms->clk = devm_clk_get(&pdev->dev, "core_clk");
312         if (IS_ERR(mdp4_kms->clk)) {
313                 dev_err(dev->dev, "failed to get core_clk\n");
314                 ret = PTR_ERR(mdp4_kms->clk);
315                 goto fail;
316         }
317
318         mdp4_kms->pclk = devm_clk_get(&pdev->dev, "iface_clk");
319         if (IS_ERR(mdp4_kms->pclk))
320                 mdp4_kms->pclk = NULL;
321
322         // XXX if (rev >= MDP_REV_42) { ???
323         mdp4_kms->lut_clk = devm_clk_get(&pdev->dev, "lut_clk");
324         if (IS_ERR(mdp4_kms->lut_clk)) {
325                 dev_err(dev->dev, "failed to get lut_clk\n");
326                 ret = PTR_ERR(mdp4_kms->lut_clk);
327                 goto fail;
328         }
329
330         clk_set_rate(mdp4_kms->clk, config->max_clk);
331         clk_set_rate(mdp4_kms->lut_clk, config->max_clk);
332
333         /* make sure things are off before attaching iommu (bootloader could
334          * have left things on, in which case we'll start getting faults if
335          * we don't disable):
336          */
337         mdp4_enable(mdp4_kms);
338         mdp4_write(mdp4_kms, REG_MDP4_DTV_ENABLE, 0);
339         mdp4_write(mdp4_kms, REG_MDP4_LCDC_ENABLE, 0);
340         mdp4_write(mdp4_kms, REG_MDP4_DSI_ENABLE, 0);
341         mdp4_disable(mdp4_kms);
342         mdelay(16);
343
344         if (config->iommu) {
345                 mmu = msm_iommu_new(dev, config->iommu);
346                 if (IS_ERR(mmu)) {
347                         ret = PTR_ERR(mmu);
348                         goto fail;
349                 }
350                 ret = mmu->funcs->attach(mmu, iommu_ports,
351                                 ARRAY_SIZE(iommu_ports));
352                 if (ret)
353                         goto fail;
354         } else {
355                 dev_info(dev->dev, "no iommu, fallback to phys "
356                                 "contig buffers for scanout\n");
357                 mmu = NULL;
358         }
359
360         mdp4_kms->id = msm_register_mmu(dev, mmu);
361         if (mdp4_kms->id < 0) {
362                 ret = mdp4_kms->id;
363                 dev_err(dev->dev, "failed to register mdp4 iommu: %d\n", ret);
364                 goto fail;
365         }
366
367         ret = modeset_init(mdp4_kms);
368         if (ret) {
369                 dev_err(dev->dev, "modeset_init failed: %d\n", ret);
370                 goto fail;
371         }
372
373         return kms;
374
375 fail:
376         if (kms)
377                 mdp4_destroy(kms);
378         return ERR_PTR(ret);
379 }
380
381 static struct mdp4_platform_config *mdp4_get_config(struct platform_device *dev)
382 {
383         static struct mdp4_platform_config config = {};
384 #ifdef CONFIG_OF
385         /* TODO */
386 #else
387         if (cpu_is_apq8064())
388                 config.max_clk = 266667000;
389         else
390                 config.max_clk = 200000000;
391
392         config.iommu = msm_get_iommu_domain(DISPLAY_READ_DOMAIN);
393 #endif
394         return &config;
395 }