Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Samsung Electronics Co.Ltd |
| 3 | * Authors: Joonyoung Shim <jy0922.shim@samsung.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 as published by the |
| 7 | * Free Software Foundation; either version 2 of the License, or (at your |
| 8 | * option) any later version. |
| 9 | * |
| 10 | */ |
| 11 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 12 | #include <drm/drmP.h> |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 13 | |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 14 | #include <drm/exynos_drm.h> |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 15 | #include "exynos_drm_drv.h" |
Sean Paul | 080be03d | 2014-02-19 21:02:55 +0900 | [diff] [blame] | 16 | #include "exynos_drm_crtc.h" |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 17 | #include "exynos_drm_fb.h" |
| 18 | #include "exynos_drm_gem.h" |
Mark Brown | e30655d | 2013-08-13 00:46:40 +0100 | [diff] [blame] | 19 | #include "exynos_drm_plane.h" |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 20 | |
Eunchul Kim | ba3849d | 2012-03-16 18:47:15 +0900 | [diff] [blame] | 21 | static const uint32_t formats[] = { |
| 22 | DRM_FORMAT_XRGB8888, |
Seung-Woo Kim | 6b1c762 | 2012-04-05 11:21:09 +0900 | [diff] [blame] | 23 | DRM_FORMAT_ARGB8888, |
| 24 | DRM_FORMAT_NV12, |
Seung-Woo Kim | 6b1c762 | 2012-04-05 11:21:09 +0900 | [diff] [blame] | 25 | DRM_FORMAT_NV12MT, |
Eunchul Kim | ba3849d | 2012-03-16 18:47:15 +0900 | [diff] [blame] | 26 | }; |
| 27 | |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 28 | /* |
| 29 | * This function is to get X or Y size shown via screen. This needs length and |
| 30 | * start position of CRTC. |
| 31 | * |
| 32 | * <--- length ---> |
| 33 | * CRTC ---------------- |
| 34 | * ^ start ^ end |
| 35 | * |
Joonyoung Shim | 60a705a | 2012-12-14 15:48:22 +0900 | [diff] [blame] | 36 | * There are six cases from a to f. |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 37 | * |
| 38 | * <----- SCREEN -----> |
| 39 | * 0 last |
| 40 | * ----------|------------------|---------- |
| 41 | * CRTCs |
| 42 | * a ------- |
| 43 | * b ------- |
| 44 | * c -------------------------- |
| 45 | * d -------- |
| 46 | * e ------- |
| 47 | * f ------- |
| 48 | */ |
| 49 | static int exynos_plane_get_size(int start, unsigned length, unsigned last) |
| 50 | { |
| 51 | int end = start + length; |
| 52 | int size = 0; |
| 53 | |
| 54 | if (start <= 0) { |
| 55 | if (end > 0) |
| 56 | size = min_t(unsigned, end, last); |
| 57 | } else if (start <= last) { |
| 58 | size = min_t(unsigned, last - start, length); |
| 59 | } |
| 60 | |
| 61 | return size; |
| 62 | } |
| 63 | |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 64 | int exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc, |
| 65 | struct drm_framebuffer *fb, int crtc_x, int crtc_y, |
| 66 | unsigned int crtc_w, unsigned int crtc_h, |
| 67 | uint32_t src_x, uint32_t src_y, |
| 68 | uint32_t src_w, uint32_t src_h) |
| 69 | { |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 70 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Gustavo Padovan | 1e3b423 | 2014-10-29 19:25:53 +0000 | [diff] [blame] | 71 | struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 72 | unsigned int actual_w; |
| 73 | unsigned int actual_h; |
| 74 | int nr; |
| 75 | int i; |
| 76 | |
Inki Dae | 01ed812 | 2012-08-20 20:05:56 +0900 | [diff] [blame] | 77 | nr = exynos_drm_fb_get_buf_cnt(fb); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 78 | for (i = 0; i < nr; i++) { |
| 79 | struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i); |
| 80 | |
| 81 | if (!buffer) { |
Lespiau, Damien | 133dcde | 2014-03-24 15:53:10 +0000 | [diff] [blame] | 82 | DRM_DEBUG_KMS("buffer is null\n"); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 83 | return -EFAULT; |
| 84 | } |
| 85 | |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 86 | exynos_plane->dma_addr[i] = buffer->dma_addr; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 87 | |
YoungJun Cho | ddd8e95 | 2012-12-10 15:44:58 +0900 | [diff] [blame] | 88 | DRM_DEBUG_KMS("buffer: %d, dma_addr = 0x%lx\n", |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 89 | i, (unsigned long)exynos_plane->dma_addr[i]); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 90 | } |
| 91 | |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 92 | actual_w = exynos_plane_get_size(crtc_x, crtc_w, crtc->mode.hdisplay); |
| 93 | actual_h = exynos_plane_get_size(crtc_y, crtc_h, crtc->mode.vdisplay); |
| 94 | |
| 95 | if (crtc_x < 0) { |
| 96 | if (actual_w) |
| 97 | src_x -= crtc_x; |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 98 | crtc_x = 0; |
| 99 | } |
| 100 | |
| 101 | if (crtc_y < 0) { |
| 102 | if (actual_h) |
| 103 | src_y -= crtc_y; |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 104 | crtc_y = 0; |
| 105 | } |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 106 | |
| 107 | /* set drm framebuffer data. */ |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 108 | exynos_plane->fb_x = src_x; |
| 109 | exynos_plane->fb_y = src_y; |
| 110 | exynos_plane->fb_width = fb->width; |
| 111 | exynos_plane->fb_height = fb->height; |
| 112 | exynos_plane->src_width = src_w; |
| 113 | exynos_plane->src_height = src_h; |
| 114 | exynos_plane->bpp = fb->bits_per_pixel; |
| 115 | exynos_plane->pitch = fb->pitches[0]; |
| 116 | exynos_plane->pixel_format = fb->pixel_format; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 117 | |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 118 | /* set plane range to be displayed. */ |
| 119 | exynos_plane->crtc_x = crtc_x; |
| 120 | exynos_plane->crtc_y = crtc_y; |
| 121 | exynos_plane->crtc_width = actual_w; |
| 122 | exynos_plane->crtc_height = actual_h; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 123 | |
| 124 | /* set drm mode data. */ |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 125 | exynos_plane->mode_width = crtc->mode.hdisplay; |
| 126 | exynos_plane->mode_height = crtc->mode.vdisplay; |
| 127 | exynos_plane->refresh = crtc->mode.vrefresh; |
| 128 | exynos_plane->scan_flag = crtc->mode.flags; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 129 | |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 130 | DRM_DEBUG_KMS("plane : offset_x/y(%d,%d), width/height(%d,%d)", |
| 131 | exynos_plane->crtc_x, exynos_plane->crtc_y, |
| 132 | exynos_plane->crtc_width, exynos_plane->crtc_height); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 133 | |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 134 | plane->crtc = crtc; |
| 135 | |
Gustavo Padovan | 1e3b423 | 2014-10-29 19:25:53 +0000 | [diff] [blame] | 136 | if (manager->ops->win_mode_set) |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 137 | manager->ops->win_mode_set(manager, exynos_plane); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 138 | |
| 139 | return 0; |
| 140 | } |
| 141 | |
Joonyoung Shim | cf5188a | 2012-06-27 14:27:09 +0900 | [diff] [blame] | 142 | void exynos_plane_dpms(struct drm_plane *plane, int mode) |
| 143 | { |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 144 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Gustavo Padovan | 1e3b423 | 2014-10-29 19:25:53 +0000 | [diff] [blame] | 145 | struct exynos_drm_manager *manager; |
Joonyoung Shim | cf5188a | 2012-06-27 14:27:09 +0900 | [diff] [blame] | 146 | |
Joonyoung Shim | cf5188a | 2012-06-27 14:27:09 +0900 | [diff] [blame] | 147 | if (mode == DRM_MODE_DPMS_ON) { |
| 148 | if (exynos_plane->enabled) |
| 149 | return; |
| 150 | |
Gustavo Padovan | 1e3b423 | 2014-10-29 19:25:53 +0000 | [diff] [blame] | 151 | manager = to_exynos_crtc(plane->crtc)->manager; |
| 152 | if (manager->ops->win_enable) |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 153 | manager->ops->win_enable(manager, exynos_plane->zpos); |
Gustavo Padovan | 1e3b423 | 2014-10-29 19:25:53 +0000 | [diff] [blame] | 154 | |
Joonyoung Shim | cf5188a | 2012-06-27 14:27:09 +0900 | [diff] [blame] | 155 | exynos_plane->enabled = true; |
| 156 | } else { |
| 157 | if (!exynos_plane->enabled) |
| 158 | return; |
| 159 | |
Gustavo Padovan | 1e3b423 | 2014-10-29 19:25:53 +0000 | [diff] [blame] | 160 | manager = to_exynos_crtc(plane->crtc)->manager; |
| 161 | if (manager->ops->win_disable) |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 162 | manager->ops->win_disable(manager, exynos_plane->zpos); |
Gustavo Padovan | 1e3b423 | 2014-10-29 19:25:53 +0000 | [diff] [blame] | 163 | |
Joonyoung Shim | cf5188a | 2012-06-27 14:27:09 +0900 | [diff] [blame] | 164 | exynos_plane->enabled = false; |
| 165 | } |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 166 | } |
| 167 | |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 168 | static int |
| 169 | exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc, |
| 170 | struct drm_framebuffer *fb, int crtc_x, int crtc_y, |
| 171 | unsigned int crtc_w, unsigned int crtc_h, |
| 172 | uint32_t src_x, uint32_t src_y, |
| 173 | uint32_t src_w, uint32_t src_h) |
| 174 | { |
Gustavo Padovan | 9d5310c | 2014-11-13 22:17:46 -0200 | [diff] [blame^] | 175 | |
| 176 | struct exynos_drm_manager *manager = to_exynos_crtc(crtc)->manager; |
| 177 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 178 | int ret; |
| 179 | |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 180 | ret = exynos_plane_mode_set(plane, crtc, fb, crtc_x, crtc_y, |
| 181 | crtc_w, crtc_h, src_x >> 16, src_y >> 16, |
| 182 | src_w >> 16, src_h >> 16); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 183 | if (ret < 0) |
| 184 | return ret; |
| 185 | |
Gustavo Padovan | 9d5310c | 2014-11-13 22:17:46 -0200 | [diff] [blame^] | 186 | if (manager->ops->win_commit) |
| 187 | manager->ops->win_commit(manager, exynos_plane->zpos); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 188 | |
| 189 | return 0; |
| 190 | } |
| 191 | |
| 192 | static int exynos_disable_plane(struct drm_plane *plane) |
| 193 | { |
Joonyoung Shim | cf5188a | 2012-06-27 14:27:09 +0900 | [diff] [blame] | 194 | exynos_plane_dpms(plane, DRM_MODE_DPMS_OFF); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | static void exynos_plane_destroy(struct drm_plane *plane) |
| 200 | { |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 201 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 202 | |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 203 | exynos_disable_plane(plane); |
| 204 | drm_plane_cleanup(plane); |
| 205 | kfree(exynos_plane); |
| 206 | } |
| 207 | |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 208 | static int exynos_plane_set_property(struct drm_plane *plane, |
| 209 | struct drm_property *property, |
| 210 | uint64_t val) |
| 211 | { |
| 212 | struct drm_device *dev = plane->dev; |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 213 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 214 | struct exynos_drm_private *dev_priv = dev->dev_private; |
| 215 | |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 216 | if (property == dev_priv->plane_zpos_property) { |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 217 | exynos_plane->zpos = val; |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | return -EINVAL; |
| 222 | } |
| 223 | |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 224 | static struct drm_plane_funcs exynos_plane_funcs = { |
| 225 | .update_plane = exynos_update_plane, |
| 226 | .disable_plane = exynos_disable_plane, |
| 227 | .destroy = exynos_plane_destroy, |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 228 | .set_property = exynos_plane_set_property, |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 229 | }; |
| 230 | |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 231 | static void exynos_plane_attach_zpos_property(struct drm_plane *plane) |
| 232 | { |
| 233 | struct drm_device *dev = plane->dev; |
| 234 | struct exynos_drm_private *dev_priv = dev->dev_private; |
| 235 | struct drm_property *prop; |
| 236 | |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 237 | prop = dev_priv->plane_zpos_property; |
| 238 | if (!prop) { |
| 239 | prop = drm_property_create_range(dev, 0, "zpos", 0, |
| 240 | MAX_PLANE - 1); |
| 241 | if (!prop) |
| 242 | return; |
| 243 | |
| 244 | dev_priv->plane_zpos_property = prop; |
| 245 | } |
| 246 | |
| 247 | drm_object_attach_property(&plane->base, prop, 0); |
| 248 | } |
| 249 | |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 250 | struct drm_plane *exynos_plane_init(struct drm_device *dev, |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 251 | unsigned long possible_crtcs, |
| 252 | enum drm_plane_type type) |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 253 | { |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 254 | struct exynos_drm_plane *exynos_plane; |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 255 | int err; |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 256 | |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 257 | exynos_plane = kzalloc(sizeof(struct exynos_drm_plane), GFP_KERNEL); |
Sachin Kamat | 38bb525 | 2013-08-19 19:04:55 +0900 | [diff] [blame] | 258 | if (!exynos_plane) |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 259 | return ERR_PTR(-ENOMEM); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 260 | |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 261 | err = drm_universal_plane_init(dev, &exynos_plane->base, possible_crtcs, |
| 262 | &exynos_plane_funcs, formats, |
| 263 | ARRAY_SIZE(formats), type); |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 264 | if (err) { |
| 265 | DRM_ERROR("failed to initialize plane\n"); |
| 266 | kfree(exynos_plane); |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 267 | return ERR_PTR(err); |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 268 | } |
| 269 | |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 270 | if (type == DRM_PLANE_TYPE_PRIMARY) |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 271 | exynos_plane->zpos = DEFAULT_ZPOS; |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 272 | else |
| 273 | exynos_plane_attach_zpos_property(&exynos_plane->base); |
| 274 | |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 275 | return &exynos_plane->base; |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 276 | } |