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