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> |
Gustavo Padovan | adf5691 | 2014-11-27 14:56:09 -0200 | [diff] [blame] | 15 | #include <drm/drm_plane_helper.h> |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 16 | #include "exynos_drm_drv.h" |
Sean Paul | 080be03d | 2014-02-19 21:02:55 +0900 | [diff] [blame] | 17 | #include "exynos_drm_crtc.h" |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 18 | #include "exynos_drm_fb.h" |
| 19 | #include "exynos_drm_gem.h" |
Mark Brown | e30655d | 2013-08-13 00:46:40 +0100 | [diff] [blame] | 20 | #include "exynos_drm_plane.h" |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 21 | |
Eunchul Kim | ba3849d | 2012-03-16 18:47:15 +0900 | [diff] [blame] | 22 | static const uint32_t formats[] = { |
| 23 | DRM_FORMAT_XRGB8888, |
Seung-Woo Kim | 6b1c762 | 2012-04-05 11:21:09 +0900 | [diff] [blame] | 24 | DRM_FORMAT_ARGB8888, |
| 25 | DRM_FORMAT_NV12, |
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 | |
Gustavo Padovan | adf5691 | 2014-11-27 14:56:09 -0200 | [diff] [blame] | 64 | int exynos_check_plane(struct drm_plane *plane, struct drm_framebuffer *fb) |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 65 | { |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 66 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 67 | int nr; |
| 68 | int i; |
| 69 | |
Gustavo Padovan | b744868 | 2015-06-01 12:04:42 -0300 | [diff] [blame^] | 70 | if (!fb) |
| 71 | return 0; |
| 72 | |
Inki Dae | 01ed812 | 2012-08-20 20:05:56 +0900 | [diff] [blame] | 73 | nr = exynos_drm_fb_get_buf_cnt(fb); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 74 | for (i = 0; i < nr; i++) { |
| 75 | struct exynos_drm_gem_buf *buffer = exynos_drm_fb_buffer(fb, i); |
| 76 | |
| 77 | if (!buffer) { |
Lespiau, Damien | 133dcde | 2014-03-24 15:53:10 +0000 | [diff] [blame] | 78 | DRM_DEBUG_KMS("buffer is null\n"); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 79 | return -EFAULT; |
| 80 | } |
| 81 | |
Tobias Jakobi | 5d878bd | 2015-04-27 23:10:14 +0200 | [diff] [blame] | 82 | exynos_plane->dma_addr[i] = buffer->dma_addr + fb->offsets[i]; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 83 | |
YoungJun Cho | ddd8e95 | 2012-12-10 15:44:58 +0900 | [diff] [blame] | 84 | DRM_DEBUG_KMS("buffer: %d, dma_addr = 0x%lx\n", |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 85 | i, (unsigned long)exynos_plane->dma_addr[i]); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 86 | } |
| 87 | |
Gustavo Padovan | adf5691 | 2014-11-27 14:56:09 -0200 | [diff] [blame] | 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | void exynos_plane_mode_set(struct drm_plane *plane, struct drm_crtc *crtc, |
| 92 | struct drm_framebuffer *fb, int crtc_x, int crtc_y, |
| 93 | unsigned int crtc_w, unsigned int crtc_h, |
| 94 | uint32_t src_x, uint32_t src_y, |
| 95 | uint32_t src_w, uint32_t src_h) |
| 96 | { |
| 97 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Gustavo Padovan | adf5691 | 2014-11-27 14:56:09 -0200 | [diff] [blame] | 98 | unsigned int actual_w; |
| 99 | unsigned int actual_h; |
| 100 | |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 101 | actual_w = exynos_plane_get_size(crtc_x, crtc_w, crtc->mode.hdisplay); |
| 102 | actual_h = exynos_plane_get_size(crtc_y, crtc_h, crtc->mode.vdisplay); |
| 103 | |
| 104 | if (crtc_x < 0) { |
| 105 | if (actual_w) |
| 106 | src_x -= crtc_x; |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 107 | crtc_x = 0; |
| 108 | } |
| 109 | |
| 110 | if (crtc_y < 0) { |
| 111 | if (actual_h) |
| 112 | src_y -= crtc_y; |
Joonyoung Shim | 2ab9792 | 2012-09-27 19:25:21 +0900 | [diff] [blame] | 113 | crtc_y = 0; |
| 114 | } |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 115 | |
Joonyoung Shim | 3cabaf7 | 2015-04-07 15:59:39 +0900 | [diff] [blame] | 116 | /* set ratio */ |
| 117 | exynos_plane->h_ratio = (src_w << 16) / crtc_w; |
| 118 | exynos_plane->v_ratio = (src_h << 16) / crtc_h; |
| 119 | |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 120 | /* set drm framebuffer data. */ |
Joonyoung Shim | cb8a3db | 2015-04-07 15:59:38 +0900 | [diff] [blame] | 121 | exynos_plane->src_x = src_x; |
| 122 | exynos_plane->src_y = src_y; |
Joonyoung Shim | 3cabaf7 | 2015-04-07 15:59:39 +0900 | [diff] [blame] | 123 | exynos_plane->src_width = (actual_w * exynos_plane->h_ratio) >> 16; |
| 124 | exynos_plane->src_height = (actual_h * exynos_plane->v_ratio) >> 16; |
Joonyoung Shim | cb8a3db | 2015-04-07 15:59:38 +0900 | [diff] [blame] | 125 | exynos_plane->fb_width = fb->width; |
| 126 | exynos_plane->fb_height = fb->height; |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 127 | exynos_plane->bpp = fb->bits_per_pixel; |
| 128 | exynos_plane->pitch = fb->pitches[0]; |
| 129 | exynos_plane->pixel_format = fb->pixel_format; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 130 | |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 131 | /* set plane range to be displayed. */ |
| 132 | exynos_plane->crtc_x = crtc_x; |
| 133 | exynos_plane->crtc_y = crtc_y; |
| 134 | exynos_plane->crtc_width = actual_w; |
| 135 | exynos_plane->crtc_height = actual_h; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 136 | |
| 137 | /* set drm mode data. */ |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 138 | exynos_plane->mode_width = crtc->mode.hdisplay; |
| 139 | exynos_plane->mode_height = crtc->mode.vdisplay; |
| 140 | exynos_plane->refresh = crtc->mode.vrefresh; |
| 141 | exynos_plane->scan_flag = crtc->mode.flags; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 142 | |
Gustavo Padovan | 8837dee | 2014-11-03 18:13:27 -0200 | [diff] [blame] | 143 | DRM_DEBUG_KMS("plane : offset_x/y(%d,%d), width/height(%d,%d)", |
| 144 | exynos_plane->crtc_x, exynos_plane->crtc_y, |
| 145 | exynos_plane->crtc_width, exynos_plane->crtc_height); |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 146 | |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 147 | plane->crtc = crtc; |
Joonyoung Shim | 4070d21 | 2012-06-27 14:27:05 +0900 | [diff] [blame] | 148 | } |
| 149 | |
Gustavo Padovan | 43dbdad | 2015-06-01 12:04:41 -0300 | [diff] [blame] | 150 | void |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 151 | exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc, |
| 152 | struct drm_framebuffer *fb, int crtc_x, int crtc_y, |
| 153 | unsigned int crtc_w, unsigned int crtc_h, |
| 154 | uint32_t src_x, uint32_t src_y, |
| 155 | uint32_t src_w, uint32_t src_h) |
| 156 | { |
Gustavo Padovan | 93bca24 | 2015-01-18 18:16:23 +0900 | [diff] [blame] | 157 | struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(crtc); |
Gustavo Padovan | 9d5310c | 2014-11-13 22:17:46 -0200 | [diff] [blame] | 158 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 159 | |
Gustavo Padovan | adf5691 | 2014-11-27 14:56:09 -0200 | [diff] [blame] | 160 | exynos_plane_mode_set(plane, crtc, fb, crtc_x, crtc_y, |
| 161 | crtc_w, crtc_h, src_x >> 16, src_y >> 16, |
| 162 | src_w >> 16, src_h >> 16); |
| 163 | |
Gustavo Padovan | 93bca24 | 2015-01-18 18:16:23 +0900 | [diff] [blame] | 164 | if (exynos_crtc->ops->win_commit) |
| 165 | exynos_crtc->ops->win_commit(exynos_crtc, exynos_plane->zpos); |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 166 | } |
| 167 | |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 168 | static struct drm_plane_funcs exynos_plane_funcs = { |
Gustavo Padovan | 43dbdad | 2015-06-01 12:04:41 -0300 | [diff] [blame] | 169 | .update_plane = drm_plane_helper_update, |
Gustavo Padovan | b744868 | 2015-06-01 12:04:42 -0300 | [diff] [blame^] | 170 | .disable_plane = drm_plane_helper_disable, |
Gustavo Padovan | 97464d7 | 2015-04-01 13:02:10 -0300 | [diff] [blame] | 171 | .destroy = drm_plane_cleanup, |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 172 | }; |
| 173 | |
Gustavo Padovan | 43dbdad | 2015-06-01 12:04:41 -0300 | [diff] [blame] | 174 | static int exynos_plane_atomic_check(struct drm_plane *plane, |
| 175 | struct drm_plane_state *state) |
| 176 | { |
| 177 | return exynos_check_plane(plane, state->fb); |
| 178 | } |
| 179 | |
| 180 | static void exynos_plane_atomic_update(struct drm_plane *plane, |
| 181 | struct drm_plane_state *old_state) |
| 182 | { |
| 183 | struct drm_plane_state *state = plane->state; |
| 184 | |
| 185 | if (!state->crtc) |
| 186 | return; |
| 187 | |
| 188 | exynos_update_plane(plane, state->crtc, state->fb, |
| 189 | state->crtc_x, state->crtc_y, |
| 190 | state->crtc_w, state->crtc_h, |
| 191 | state->src_x, state->src_y, |
| 192 | state->src_w, state->src_h); |
| 193 | } |
| 194 | |
Gustavo Padovan | b744868 | 2015-06-01 12:04:42 -0300 | [diff] [blame^] | 195 | static void exynos_plane_atomic_disable(struct drm_plane *plane, |
| 196 | struct drm_plane_state *old_state) |
| 197 | { |
| 198 | struct exynos_drm_plane *exynos_plane = to_exynos_plane(plane); |
| 199 | struct exynos_drm_crtc *exynos_crtc = to_exynos_crtc(old_state->crtc); |
| 200 | |
| 201 | if (!old_state->crtc) |
| 202 | return; |
| 203 | |
| 204 | if (exynos_crtc->ops->win_disable) |
| 205 | exynos_crtc->ops->win_disable(exynos_crtc, |
| 206 | exynos_plane->zpos); |
| 207 | } |
| 208 | |
Gustavo Padovan | 43dbdad | 2015-06-01 12:04:41 -0300 | [diff] [blame] | 209 | static const struct drm_plane_helper_funcs plane_helper_funcs = { |
| 210 | .atomic_check = exynos_plane_atomic_check, |
| 211 | .atomic_update = exynos_plane_atomic_update, |
Gustavo Padovan | b744868 | 2015-06-01 12:04:42 -0300 | [diff] [blame^] | 212 | .atomic_disable = exynos_plane_atomic_disable, |
Gustavo Padovan | 43dbdad | 2015-06-01 12:04:41 -0300 | [diff] [blame] | 213 | }; |
| 214 | |
Gustavo Padovan | 6e2a3b6 | 2015-04-03 21:05:52 +0900 | [diff] [blame] | 215 | static void exynos_plane_attach_zpos_property(struct drm_plane *plane, |
| 216 | unsigned int zpos) |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 217 | { |
| 218 | struct drm_device *dev = plane->dev; |
| 219 | struct exynos_drm_private *dev_priv = dev->dev_private; |
| 220 | struct drm_property *prop; |
| 221 | |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 222 | prop = dev_priv->plane_zpos_property; |
| 223 | if (!prop) { |
Gustavo Padovan | 9210488 | 2015-04-01 13:02:09 -0300 | [diff] [blame] | 224 | prop = drm_property_create_range(dev, DRM_MODE_PROP_IMMUTABLE, |
| 225 | "zpos", 0, MAX_PLANE - 1); |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 226 | if (!prop) |
| 227 | return; |
| 228 | |
| 229 | dev_priv->plane_zpos_property = prop; |
| 230 | } |
| 231 | |
Gustavo Padovan | 6e2a3b6 | 2015-04-03 21:05:52 +0900 | [diff] [blame] | 232 | drm_object_attach_property(&plane->base, prop, zpos); |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 233 | } |
| 234 | |
Gustavo Padovan | 7ee14cd | 2015-04-03 21:03:40 +0900 | [diff] [blame] | 235 | int exynos_plane_init(struct drm_device *dev, |
| 236 | struct exynos_drm_plane *exynos_plane, |
Gustavo Padovan | 6e2a3b6 | 2015-04-03 21:05:52 +0900 | [diff] [blame] | 237 | unsigned long possible_crtcs, enum drm_plane_type type, |
| 238 | unsigned int zpos) |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 239 | { |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 240 | int err; |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 241 | |
Andrzej Hajda | 72ed6cc | 2014-09-19 14:58:53 +0200 | [diff] [blame] | 242 | err = drm_universal_plane_init(dev, &exynos_plane->base, possible_crtcs, |
| 243 | &exynos_plane_funcs, formats, |
| 244 | ARRAY_SIZE(formats), type); |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 245 | if (err) { |
| 246 | DRM_ERROR("failed to initialize plane\n"); |
Gustavo Padovan | 7ee14cd | 2015-04-03 21:03:40 +0900 | [diff] [blame] | 247 | return err; |
Joonyoung Shim | b5d2eb3 | 2012-06-27 14:27:04 +0900 | [diff] [blame] | 248 | } |
| 249 | |
Gustavo Padovan | 43dbdad | 2015-06-01 12:04:41 -0300 | [diff] [blame] | 250 | drm_plane_helper_add(&exynos_plane->base, &plane_helper_funcs); |
| 251 | |
Gustavo Padovan | 6e2a3b6 | 2015-04-03 21:05:52 +0900 | [diff] [blame] | 252 | exynos_plane->zpos = zpos; |
| 253 | |
| 254 | if (type == DRM_PLANE_TYPE_OVERLAY) |
| 255 | exynos_plane_attach_zpos_property(&exynos_plane->base, zpos); |
Joonyoung Shim | 00ae67c | 2012-06-27 14:27:06 +0900 | [diff] [blame] | 256 | |
Gustavo Padovan | 7ee14cd | 2015-04-03 21:03:40 +0900 | [diff] [blame] | 257 | return 0; |
Joonyoung Shim | 864ee9e | 2011-12-08 17:54:07 +0900 | [diff] [blame] | 258 | } |