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