GNU Linux-libre 4.14.251-gnu1
[releases.git] / drivers / gpu / drm / gma500 / framebuffer.c
1 /**************************************************************************
2  * Copyright (c) 2007-2011, Intel Corporation.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms and conditions of the GNU General Public License,
7  * version 2, as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope 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, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17  *
18  **************************************************************************/
19
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/errno.h>
23 #include <linux/string.h>
24 #include <linux/pfn_t.h>
25 #include <linux/mm.h>
26 #include <linux/tty.h>
27 #include <linux/slab.h>
28 #include <linux/delay.h>
29 #include <linux/init.h>
30 #include <linux/console.h>
31
32 #include <drm/drmP.h>
33 #include <drm/drm.h>
34 #include <drm/drm_crtc.h>
35 #include <drm/drm_fb_helper.h>
36
37 #include "psb_drv.h"
38 #include "psb_intel_reg.h"
39 #include "psb_intel_drv.h"
40 #include "framebuffer.h"
41 #include "gtt.h"
42
43 static void psb_user_framebuffer_destroy(struct drm_framebuffer *fb);
44 static int psb_user_framebuffer_create_handle(struct drm_framebuffer *fb,
45                                               struct drm_file *file_priv,
46                                               unsigned int *handle);
47
48 static const struct drm_framebuffer_funcs psb_fb_funcs = {
49         .destroy = psb_user_framebuffer_destroy,
50         .create_handle = psb_user_framebuffer_create_handle,
51 };
52
53 #define CMAP_TOHW(_val, _width) ((((_val) << (_width)) + 0x7FFF - (_val)) >> 16)
54
55 static int psbfb_setcolreg(unsigned regno, unsigned red, unsigned green,
56                            unsigned blue, unsigned transp,
57                            struct fb_info *info)
58 {
59         struct psb_fbdev *fbdev = info->par;
60         struct drm_framebuffer *fb = fbdev->psb_fb_helper.fb;
61         uint32_t v;
62
63         if (!fb)
64                 return -ENOMEM;
65
66         if (regno > 255)
67                 return 1;
68
69         red = CMAP_TOHW(red, info->var.red.length);
70         blue = CMAP_TOHW(blue, info->var.blue.length);
71         green = CMAP_TOHW(green, info->var.green.length);
72         transp = CMAP_TOHW(transp, info->var.transp.length);
73
74         v = (red << info->var.red.offset) |
75             (green << info->var.green.offset) |
76             (blue << info->var.blue.offset) |
77             (transp << info->var.transp.offset);
78
79         if (regno < 16) {
80                 switch (fb->format->cpp[0] * 8) {
81                 case 16:
82                         ((uint32_t *) info->pseudo_palette)[regno] = v;
83                         break;
84                 case 24:
85                 case 32:
86                         ((uint32_t *) info->pseudo_palette)[regno] = v;
87                         break;
88                 }
89         }
90
91         return 0;
92 }
93
94 static int psbfb_pan(struct fb_var_screeninfo *var, struct fb_info *info)
95 {
96         struct psb_fbdev *fbdev = info->par;
97         struct psb_framebuffer *psbfb = &fbdev->pfb;
98         struct drm_device *dev = psbfb->base.dev;
99
100         /*
101          *      We have to poke our nose in here. The core fb code assumes
102          *      panning is part of the hardware that can be invoked before
103          *      the actual fb is mapped. In our case that isn't quite true.
104          */
105         if (psbfb->gtt->npage) {
106                 /* GTT roll shifts in 4K pages, we need to shift the right
107                    number of pages */
108                 int pages = info->fix.line_length >> 12;
109                 psb_gtt_roll(dev, psbfb->gtt, var->yoffset * pages);
110         }
111         return 0;
112 }
113
114 static int psbfb_vm_fault(struct vm_fault *vmf)
115 {
116         struct vm_area_struct *vma = vmf->vma;
117         struct psb_framebuffer *psbfb = vma->vm_private_data;
118         struct drm_device *dev = psbfb->base.dev;
119         struct drm_psb_private *dev_priv = dev->dev_private;
120         int page_num;
121         int i;
122         unsigned long address;
123         int ret;
124         unsigned long pfn;
125         unsigned long phys_addr = (unsigned long)dev_priv->stolen_base +
126                                   psbfb->gtt->offset;
127
128         page_num = vma_pages(vma);
129         address = vmf->address - (vmf->pgoff << PAGE_SHIFT);
130
131         vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
132
133         for (i = 0; i < page_num; i++) {
134                 pfn = (phys_addr >> PAGE_SHIFT);
135
136                 ret = vm_insert_mixed(vma, address,
137                                 __pfn_to_pfn_t(pfn, PFN_DEV));
138                 if (unlikely((ret == -EBUSY) || (ret != 0 && i > 0)))
139                         break;
140                 else if (unlikely(ret != 0)) {
141                         ret = (ret == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS;
142                         return ret;
143                 }
144                 address += PAGE_SIZE;
145                 phys_addr += PAGE_SIZE;
146         }
147         return VM_FAULT_NOPAGE;
148 }
149
150 static void psbfb_vm_open(struct vm_area_struct *vma)
151 {
152 }
153
154 static void psbfb_vm_close(struct vm_area_struct *vma)
155 {
156 }
157
158 static const struct vm_operations_struct psbfb_vm_ops = {
159         .fault  = psbfb_vm_fault,
160         .open   = psbfb_vm_open,
161         .close  = psbfb_vm_close
162 };
163
164 static int psbfb_mmap(struct fb_info *info, struct vm_area_struct *vma)
165 {
166         struct psb_fbdev *fbdev = info->par;
167         struct psb_framebuffer *psbfb = &fbdev->pfb;
168
169         if (vma->vm_pgoff != 0)
170                 return -EINVAL;
171         if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
172                 return -EINVAL;
173
174         if (!psbfb->addr_space)
175                 psbfb->addr_space = vma->vm_file->f_mapping;
176         /*
177          * If this is a GEM object then info->screen_base is the virtual
178          * kernel remapping of the object. FIXME: Review if this is
179          * suitable for our mmap work
180          */
181         vma->vm_ops = &psbfb_vm_ops;
182         vma->vm_private_data = (void *)psbfb;
183         vma->vm_flags |= VM_IO | VM_MIXEDMAP | VM_DONTEXPAND | VM_DONTDUMP;
184         return 0;
185 }
186
187 static struct fb_ops psbfb_ops = {
188         .owner = THIS_MODULE,
189         DRM_FB_HELPER_DEFAULT_OPS,
190         .fb_setcolreg = psbfb_setcolreg,
191         .fb_fillrect = drm_fb_helper_cfb_fillrect,
192         .fb_copyarea = psbfb_copyarea,
193         .fb_imageblit = drm_fb_helper_cfb_imageblit,
194         .fb_mmap = psbfb_mmap,
195         .fb_sync = psbfb_sync,
196 };
197
198 static struct fb_ops psbfb_roll_ops = {
199         .owner = THIS_MODULE,
200         DRM_FB_HELPER_DEFAULT_OPS,
201         .fb_setcolreg = psbfb_setcolreg,
202         .fb_fillrect = drm_fb_helper_cfb_fillrect,
203         .fb_copyarea = drm_fb_helper_cfb_copyarea,
204         .fb_imageblit = drm_fb_helper_cfb_imageblit,
205         .fb_pan_display = psbfb_pan,
206         .fb_mmap = psbfb_mmap,
207 };
208
209 static struct fb_ops psbfb_unaccel_ops = {
210         .owner = THIS_MODULE,
211         DRM_FB_HELPER_DEFAULT_OPS,
212         .fb_setcolreg = psbfb_setcolreg,
213         .fb_fillrect = drm_fb_helper_cfb_fillrect,
214         .fb_copyarea = drm_fb_helper_cfb_copyarea,
215         .fb_imageblit = drm_fb_helper_cfb_imageblit,
216         .fb_mmap = psbfb_mmap,
217 };
218
219 /**
220  *      psb_framebuffer_init    -       initialize a framebuffer
221  *      @dev: our DRM device
222  *      @fb: framebuffer to set up
223  *      @mode_cmd: mode description
224  *      @gt: backing object
225  *
226  *      Configure and fill in the boilerplate for our frame buffer. Return
227  *      0 on success or an error code if we fail.
228  */
229 static int psb_framebuffer_init(struct drm_device *dev,
230                                         struct psb_framebuffer *fb,
231                                         const struct drm_mode_fb_cmd2 *mode_cmd,
232                                         struct gtt_range *gt)
233 {
234         const struct drm_format_info *info;
235         int ret;
236
237         /*
238          * Reject unknown formats, YUV formats, and formats with more than
239          * 4 bytes per pixel.
240          */
241         info = drm_format_info(mode_cmd->pixel_format);
242         if (!info || !info->depth || info->cpp[0] > 4)
243                 return -EINVAL;
244
245         if (mode_cmd->pitches[0] & 63)
246                 return -EINVAL;
247
248         drm_helper_mode_fill_fb_struct(dev, &fb->base, mode_cmd);
249         fb->gtt = gt;
250         ret = drm_framebuffer_init(dev, &fb->base, &psb_fb_funcs);
251         if (ret) {
252                 dev_err(dev->dev, "framebuffer init failed: %d\n", ret);
253                 return ret;
254         }
255         return 0;
256 }
257
258 /**
259  *      psb_framebuffer_create  -       create a framebuffer backed by gt
260  *      @dev: our DRM device
261  *      @mode_cmd: the description of the requested mode
262  *      @gt: the backing object
263  *
264  *      Create a framebuffer object backed by the gt, and fill in the
265  *      boilerplate required
266  *
267  *      TODO: review object references
268  */
269
270 static struct drm_framebuffer *psb_framebuffer_create
271                         (struct drm_device *dev,
272                          const struct drm_mode_fb_cmd2 *mode_cmd,
273                          struct gtt_range *gt)
274 {
275         struct psb_framebuffer *fb;
276         int ret;
277
278         fb = kzalloc(sizeof(*fb), GFP_KERNEL);
279         if (!fb)
280                 return ERR_PTR(-ENOMEM);
281
282         ret = psb_framebuffer_init(dev, fb, mode_cmd, gt);
283         if (ret) {
284                 kfree(fb);
285                 return ERR_PTR(ret);
286         }
287         return &fb->base;
288 }
289
290 /**
291  *      psbfb_alloc             -       allocate frame buffer memory
292  *      @dev: the DRM device
293  *      @aligned_size: space needed
294  *
295  *      Allocate the frame buffer. In the usual case we get a GTT range that
296  *      is stolen memory backed and life is simple. If there isn't sufficient
297  *      we fail as we don't have the virtual mapping space to really vmap it
298  *      and the kernel console code can't handle non linear framebuffers.
299  *
300  *      Re-address this as and if the framebuffer layer grows this ability.
301  */
302 static struct gtt_range *psbfb_alloc(struct drm_device *dev, int aligned_size)
303 {
304         struct gtt_range *backing;
305         /* Begin by trying to use stolen memory backing */
306         backing = psb_gtt_alloc_range(dev, aligned_size, "fb", 1, PAGE_SIZE);
307         if (backing) {
308                 drm_gem_private_object_init(dev, &backing->gem, aligned_size);
309                 return backing;
310         }
311         return NULL;
312 }
313
314 /**
315  *      psbfb_create            -       create a framebuffer
316  *      @fbdev: the framebuffer device
317  *      @sizes: specification of the layout
318  *
319  *      Create a framebuffer to the specifications provided
320  */
321 static int psbfb_create(struct psb_fbdev *fbdev,
322                                 struct drm_fb_helper_surface_size *sizes)
323 {
324         struct drm_device *dev = fbdev->psb_fb_helper.dev;
325         struct drm_psb_private *dev_priv = dev->dev_private;
326         struct fb_info *info;
327         struct drm_framebuffer *fb;
328         struct psb_framebuffer *psbfb = &fbdev->pfb;
329         struct drm_mode_fb_cmd2 mode_cmd;
330         int size;
331         int ret;
332         struct gtt_range *backing;
333         u32 bpp, depth;
334         int gtt_roll = 0;
335         int pitch_lines = 0;
336
337         mode_cmd.width = sizes->surface_width;
338         mode_cmd.height = sizes->surface_height;
339         bpp = sizes->surface_bpp;
340         depth = sizes->surface_depth;
341
342         /* No 24bit packed */
343         if (bpp == 24)
344                 bpp = 32;
345
346         do {
347                 /*
348                  * Acceleration via the GTT requires pitch to be
349                  * power of two aligned. Preferably page but less
350                  * is ok with some fonts
351                  */
352                 mode_cmd.pitches[0] =  ALIGN(mode_cmd.width * ((bpp + 7) / 8), 4096 >> pitch_lines);
353
354                 size = mode_cmd.pitches[0] * mode_cmd.height;
355                 size = ALIGN(size, PAGE_SIZE);
356
357                 /* Allocate the fb in the GTT with stolen page backing */
358                 backing = psbfb_alloc(dev, size);
359
360                 if (pitch_lines)
361                         pitch_lines *= 2;
362                 else
363                         pitch_lines = 1;
364                 gtt_roll++;
365         } while (backing == NULL && pitch_lines <= 16);
366
367         /* The final pitch we accepted if we succeeded */
368         pitch_lines /= 2;
369
370         if (backing == NULL) {
371                 /*
372                  *      We couldn't get the space we wanted, fall back to the
373                  *      display engine requirement instead.  The HW requires
374                  *      the pitch to be 64 byte aligned
375                  */
376
377                 gtt_roll = 0;   /* Don't use GTT accelerated scrolling */
378                 pitch_lines = 64;
379
380                 mode_cmd.pitches[0] =  ALIGN(mode_cmd.width * ((bpp + 7) / 8), 64);
381
382                 size = mode_cmd.pitches[0] * mode_cmd.height;
383                 size = ALIGN(size, PAGE_SIZE);
384
385                 /* Allocate the framebuffer in the GTT with stolen page backing */
386                 backing = psbfb_alloc(dev, size);
387                 if (backing == NULL)
388                         return -ENOMEM;
389         }
390
391         memset(dev_priv->vram_addr + backing->offset, 0, size);
392
393         info = drm_fb_helper_alloc_fbi(&fbdev->psb_fb_helper);
394         if (IS_ERR(info)) {
395                 ret = PTR_ERR(info);
396                 goto out;
397         }
398         info->par = fbdev;
399
400         mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
401
402         ret = psb_framebuffer_init(dev, psbfb, &mode_cmd, backing);
403         if (ret)
404                 goto out;
405
406         fb = &psbfb->base;
407         psbfb->fbdev = info;
408
409         fbdev->psb_fb_helper.fb = fb;
410
411         drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth);
412         strcpy(info->fix.id, "psbdrmfb");
413
414         info->flags = FBINFO_DEFAULT;
415         if (dev_priv->ops->accel_2d && pitch_lines > 8) /* 2D engine */
416                 info->fbops = &psbfb_ops;
417         else if (gtt_roll) {    /* GTT rolling seems best */
418                 info->fbops = &psbfb_roll_ops;
419                 info->flags |= FBINFO_HWACCEL_YPAN;
420         } else  /* Software */
421                 info->fbops = &psbfb_unaccel_ops;
422
423         info->fix.smem_start = dev->mode_config.fb_base;
424         info->fix.smem_len = size;
425         info->fix.ywrapstep = gtt_roll;
426         info->fix.ypanstep = 0;
427
428         /* Accessed stolen memory directly */
429         info->screen_base = dev_priv->vram_addr + backing->offset;
430         info->screen_size = size;
431
432         if (dev_priv->gtt.stolen_size) {
433                 info->apertures->ranges[0].base = dev->mode_config.fb_base;
434                 info->apertures->ranges[0].size = dev_priv->gtt.stolen_size;
435         }
436
437         drm_fb_helper_fill_var(info, &fbdev->psb_fb_helper,
438                                 sizes->fb_width, sizes->fb_height);
439
440         info->fix.mmio_start = pci_resource_start(dev->pdev, 0);
441         info->fix.mmio_len = pci_resource_len(dev->pdev, 0);
442
443         /* Use default scratch pixmap (info->pixmap.flags = FB_PIXMAP_SYSTEM) */
444
445         dev_dbg(dev->dev, "allocated %dx%d fb\n",
446                                         psbfb->base.width, psbfb->base.height);
447
448         return 0;
449 out:
450         psb_gtt_free_range(dev, backing);
451         return ret;
452 }
453
454 /**
455  *      psb_user_framebuffer_create     -       create framebuffer
456  *      @dev: our DRM device
457  *      @filp: client file
458  *      @cmd: mode request
459  *
460  *      Create a new framebuffer backed by a userspace GEM object
461  */
462 static struct drm_framebuffer *psb_user_framebuffer_create
463                         (struct drm_device *dev, struct drm_file *filp,
464                          const struct drm_mode_fb_cmd2 *cmd)
465 {
466         struct gtt_range *r;
467         struct drm_gem_object *obj;
468
469         /*
470          *      Find the GEM object and thus the gtt range object that is
471          *      to back this space
472          */
473         obj = drm_gem_object_lookup(filp, cmd->handles[0]);
474         if (obj == NULL)
475                 return ERR_PTR(-ENOENT);
476
477         /* Let the core code do all the work */
478         r = container_of(obj, struct gtt_range, gem);
479         return psb_framebuffer_create(dev, cmd, r);
480 }
481
482 static int psbfb_probe(struct drm_fb_helper *helper,
483                                 struct drm_fb_helper_surface_size *sizes)
484 {
485         struct psb_fbdev *psb_fbdev =
486                 container_of(helper, struct psb_fbdev, psb_fb_helper);
487         struct drm_device *dev = psb_fbdev->psb_fb_helper.dev;
488         struct drm_psb_private *dev_priv = dev->dev_private;
489         unsigned int fb_size;
490         int bytespp;
491
492         bytespp = sizes->surface_bpp / 8;
493         if (bytespp == 3)       /* no 24bit packed */
494                 bytespp = 4;
495
496         /* If the mode will not fit in 32bit then switch to 16bit to get
497            a console on full resolution. The X mode setting server will
498            allocate its own 32bit GEM framebuffer */
499         fb_size = ALIGN(sizes->surface_width * bytespp, 64) *
500                   sizes->surface_height;
501         fb_size = ALIGN(fb_size, PAGE_SIZE);
502
503         if (fb_size > dev_priv->vram_stolen_size) {
504                 sizes->surface_bpp = 16;
505                 sizes->surface_depth = 16;
506         }
507
508         return psbfb_create(psb_fbdev, sizes);
509 }
510
511 static const struct drm_fb_helper_funcs psb_fb_helper_funcs = {
512         .fb_probe = psbfb_probe,
513 };
514
515 static int psb_fbdev_destroy(struct drm_device *dev, struct psb_fbdev *fbdev)
516 {
517         struct psb_framebuffer *psbfb = &fbdev->pfb;
518
519         drm_fb_helper_unregister_fbi(&fbdev->psb_fb_helper);
520
521         drm_fb_helper_fini(&fbdev->psb_fb_helper);
522         drm_framebuffer_unregister_private(&psbfb->base);
523         drm_framebuffer_cleanup(&psbfb->base);
524
525         if (psbfb->gtt)
526                 drm_gem_object_unreference_unlocked(&psbfb->gtt->gem);
527         return 0;
528 }
529
530 int psb_fbdev_init(struct drm_device *dev)
531 {
532         struct psb_fbdev *fbdev;
533         struct drm_psb_private *dev_priv = dev->dev_private;
534         int ret;
535
536         fbdev = kzalloc(sizeof(struct psb_fbdev), GFP_KERNEL);
537         if (!fbdev) {
538                 dev_err(dev->dev, "no memory\n");
539                 return -ENOMEM;
540         }
541
542         dev_priv->fbdev = fbdev;
543
544         drm_fb_helper_prepare(dev, &fbdev->psb_fb_helper, &psb_fb_helper_funcs);
545
546         ret = drm_fb_helper_init(dev, &fbdev->psb_fb_helper,
547                                  INTELFB_CONN_LIMIT);
548         if (ret)
549                 goto free;
550
551         ret = drm_fb_helper_single_add_all_connectors(&fbdev->psb_fb_helper);
552         if (ret)
553                 goto fini;
554
555         /* disable all the possible outputs/crtcs before entering KMS mode */
556         drm_helper_disable_unused_functions(dev);
557
558         ret = drm_fb_helper_initial_config(&fbdev->psb_fb_helper, 32);
559         if (ret)
560                 goto fini;
561
562         return 0;
563
564 fini:
565         drm_fb_helper_fini(&fbdev->psb_fb_helper);
566 free:
567         kfree(fbdev);
568         return ret;
569 }
570
571 static void psb_fbdev_fini(struct drm_device *dev)
572 {
573         struct drm_psb_private *dev_priv = dev->dev_private;
574
575         if (!dev_priv->fbdev)
576                 return;
577
578         psb_fbdev_destroy(dev, dev_priv->fbdev);
579         kfree(dev_priv->fbdev);
580         dev_priv->fbdev = NULL;
581 }
582
583 static void psbfb_output_poll_changed(struct drm_device *dev)
584 {
585         struct drm_psb_private *dev_priv = dev->dev_private;
586         struct psb_fbdev *fbdev = (struct psb_fbdev *)dev_priv->fbdev;
587         drm_fb_helper_hotplug_event(&fbdev->psb_fb_helper);
588 }
589
590 /**
591  *      psb_user_framebuffer_create_handle - add hamdle to a framebuffer
592  *      @fb: framebuffer
593  *      @file_priv: our DRM file
594  *      @handle: returned handle
595  *
596  *      Our framebuffer object is a GTT range which also contains a GEM
597  *      object. We need to turn it into a handle for userspace. GEM will do
598  *      the work for us
599  */
600 static int psb_user_framebuffer_create_handle(struct drm_framebuffer *fb,
601                                               struct drm_file *file_priv,
602                                               unsigned int *handle)
603 {
604         struct psb_framebuffer *psbfb = to_psb_fb(fb);
605         struct gtt_range *r = psbfb->gtt;
606         return drm_gem_handle_create(file_priv, &r->gem, handle);
607 }
608
609 /**
610  *      psb_user_framebuffer_destroy    -       destruct user created fb
611  *      @fb: framebuffer
612  *
613  *      User framebuffers are backed by GEM objects so all we have to do is
614  *      clean up a bit and drop the reference, GEM will handle the fallout
615  */
616 static void psb_user_framebuffer_destroy(struct drm_framebuffer *fb)
617 {
618         struct psb_framebuffer *psbfb = to_psb_fb(fb);
619         struct gtt_range *r = psbfb->gtt;
620
621         /* Let DRM do its clean up */
622         drm_framebuffer_cleanup(fb);
623         /*  We are no longer using the resource in GEM */
624         drm_gem_object_unreference_unlocked(&r->gem);
625         kfree(fb);
626 }
627
628 static const struct drm_mode_config_funcs psb_mode_funcs = {
629         .fb_create = psb_user_framebuffer_create,
630         .output_poll_changed = psbfb_output_poll_changed,
631 };
632
633 static void psb_setup_outputs(struct drm_device *dev)
634 {
635         struct drm_psb_private *dev_priv = dev->dev_private;
636         struct drm_connector *connector;
637
638         drm_mode_create_scaling_mode_property(dev);
639
640         /* It is ok for this to fail - we just don't get backlight control */
641         if (!dev_priv->backlight_property)
642                 dev_priv->backlight_property = drm_property_create_range(dev, 0,
643                                                         "backlight", 0, 100);
644         dev_priv->ops->output_init(dev);
645
646         list_for_each_entry(connector, &dev->mode_config.connector_list,
647                             head) {
648                 struct gma_encoder *gma_encoder = gma_attached_encoder(connector);
649                 struct drm_encoder *encoder = &gma_encoder->base;
650                 int crtc_mask = 0, clone_mask = 0;
651
652                 /* valid crtcs */
653                 switch (gma_encoder->type) {
654                 case INTEL_OUTPUT_ANALOG:
655                         crtc_mask = (1 << 0);
656                         clone_mask = (1 << INTEL_OUTPUT_ANALOG);
657                         break;
658                 case INTEL_OUTPUT_SDVO:
659                         crtc_mask = dev_priv->ops->sdvo_mask;
660                         clone_mask = (1 << INTEL_OUTPUT_SDVO);
661                         break;
662                 case INTEL_OUTPUT_LVDS:
663                         crtc_mask = dev_priv->ops->lvds_mask;
664                         clone_mask = (1 << INTEL_OUTPUT_LVDS);
665                         break;
666                 case INTEL_OUTPUT_MIPI:
667                         crtc_mask = (1 << 0);
668                         clone_mask = (1 << INTEL_OUTPUT_MIPI);
669                         break;
670                 case INTEL_OUTPUT_MIPI2:
671                         crtc_mask = (1 << 2);
672                         clone_mask = (1 << INTEL_OUTPUT_MIPI2);
673                         break;
674                 case INTEL_OUTPUT_HDMI:
675                         crtc_mask = dev_priv->ops->hdmi_mask;
676                         clone_mask = (1 << INTEL_OUTPUT_HDMI);
677                         break;
678                 case INTEL_OUTPUT_DISPLAYPORT:
679                         crtc_mask = (1 << 0) | (1 << 1);
680                         clone_mask = (1 << INTEL_OUTPUT_DISPLAYPORT);
681                         break;
682                 case INTEL_OUTPUT_EDP:
683                         crtc_mask = (1 << 1);
684                         clone_mask = (1 << INTEL_OUTPUT_EDP);
685                 }
686                 encoder->possible_crtcs = crtc_mask;
687                 encoder->possible_clones =
688                     gma_connector_clones(dev, clone_mask);
689         }
690 }
691
692 void psb_modeset_init(struct drm_device *dev)
693 {
694         struct drm_psb_private *dev_priv = dev->dev_private;
695         struct psb_intel_mode_device *mode_dev = &dev_priv->mode_dev;
696         int i;
697
698         drm_mode_config_init(dev);
699
700         dev->mode_config.min_width = 0;
701         dev->mode_config.min_height = 0;
702
703         dev->mode_config.funcs = &psb_mode_funcs;
704
705         /* set memory base */
706         /* Oaktrail and Poulsbo should use BAR 2*/
707         pci_read_config_dword(dev->pdev, PSB_BSM, (u32 *)
708                                         &(dev->mode_config.fb_base));
709
710         /* num pipes is 2 for PSB but 1 for Mrst */
711         for (i = 0; i < dev_priv->num_pipe; i++)
712                 psb_intel_crtc_init(dev, i, mode_dev);
713
714         dev->mode_config.max_width = 4096;
715         dev->mode_config.max_height = 4096;
716
717         psb_setup_outputs(dev);
718
719         if (dev_priv->ops->errata)
720                 dev_priv->ops->errata(dev);
721
722         dev_priv->modeset = true;
723 }
724
725 void psb_modeset_cleanup(struct drm_device *dev)
726 {
727         struct drm_psb_private *dev_priv = dev->dev_private;
728         if (dev_priv->modeset) {
729                 drm_kms_helper_poll_fini(dev);
730                 psb_fbdev_fini(dev);
731                 drm_mode_config_cleanup(dev);
732         }
733 }