Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) COPYRIGHT 2016 ARM Limited. All rights reserved. |
| 3 | * Author: Liviu Dudau <Liviu.Dudau@arm.com> |
| 4 | * |
| 5 | * This program is free software and is provided to you under the terms of the |
| 6 | * GNU General Public License version 2 as published by the Free Software |
| 7 | * Foundation, and any use by you of this program is subject to the terms |
| 8 | * of such GNU licence. |
| 9 | * |
| 10 | * ARM Mali DP500/DP550/DP650 driver (crtc operations) |
| 11 | */ |
| 12 | |
| 13 | #include <drm/drmP.h> |
| 14 | #include <drm/drm_atomic.h> |
| 15 | #include <drm/drm_atomic_helper.h> |
| 16 | #include <drm/drm_crtc.h> |
| 17 | #include <drm/drm_crtc_helper.h> |
| 18 | #include <linux/clk.h> |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 19 | #include <linux/pm_runtime.h> |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 20 | #include <video/videomode.h> |
| 21 | |
| 22 | #include "malidp_drv.h" |
| 23 | #include "malidp_hw.h" |
| 24 | |
| 25 | static bool malidp_crtc_mode_fixup(struct drm_crtc *crtc, |
| 26 | const struct drm_display_mode *mode, |
| 27 | struct drm_display_mode *adjusted_mode) |
| 28 | { |
| 29 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 30 | struct malidp_hw_device *hwdev = malidp->dev; |
| 31 | |
| 32 | /* |
| 33 | * check that the hardware can drive the required clock rate, |
| 34 | * but skip the check if the clock is meant to be disabled (req_rate = 0) |
| 35 | */ |
| 36 | long rate, req_rate = mode->crtc_clock * 1000; |
| 37 | |
| 38 | if (req_rate) { |
| 39 | rate = clk_round_rate(hwdev->mclk, req_rate); |
| 40 | if (rate < req_rate) { |
| 41 | DRM_DEBUG_DRIVER("mclk clock unable to reach %d kHz\n", |
| 42 | mode->crtc_clock); |
| 43 | return false; |
| 44 | } |
| 45 | |
| 46 | rate = clk_round_rate(hwdev->pxlclk, req_rate); |
| 47 | if (rate != req_rate) { |
| 48 | DRM_DEBUG_DRIVER("pxlclk doesn't support %ld Hz\n", |
| 49 | req_rate); |
| 50 | return false; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | return true; |
| 55 | } |
| 56 | |
| 57 | static void malidp_crtc_enable(struct drm_crtc *crtc) |
| 58 | { |
| 59 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 60 | struct malidp_hw_device *hwdev = malidp->dev; |
| 61 | struct videomode vm; |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 62 | int err = pm_runtime_get_sync(crtc->dev->dev); |
| 63 | |
| 64 | if (err < 0) { |
| 65 | DRM_DEBUG_DRIVER("Failed to enable runtime power management: %d\n", err); |
| 66 | return; |
| 67 | } |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 68 | |
| 69 | drm_display_mode_to_videomode(&crtc->state->adjusted_mode, &vm); |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 70 | clk_prepare_enable(hwdev->pxlclk); |
| 71 | |
Mihail Atanassov | 9a8b0a2 | 2017-02-15 14:00:15 +0000 | [diff] [blame] | 72 | /* We rely on firmware to set mclk to a sensible level. */ |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 73 | clk_set_rate(hwdev->pxlclk, crtc->state->adjusted_mode.crtc_clock * 1000); |
| 74 | |
| 75 | hwdev->modeset(hwdev, &vm); |
| 76 | hwdev->leave_config_mode(hwdev); |
| 77 | drm_crtc_vblank_on(crtc); |
| 78 | } |
| 79 | |
| 80 | static void malidp_crtc_disable(struct drm_crtc *crtc) |
| 81 | { |
| 82 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 83 | struct malidp_hw_device *hwdev = malidp->dev; |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 84 | int err; |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 85 | |
| 86 | drm_crtc_vblank_off(crtc); |
| 87 | hwdev->enter_config_mode(hwdev); |
| 88 | clk_disable_unprepare(hwdev->pxlclk); |
Liviu Dudau | 85f6421 | 2017-03-22 10:44:57 +0000 | [diff] [blame] | 89 | |
| 90 | err = pm_runtime_put(crtc->dev->dev); |
| 91 | if (err < 0) { |
| 92 | DRM_DEBUG_DRIVER("Failed to disable runtime power management: %d\n", err); |
| 93 | } |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static int malidp_crtc_atomic_check(struct drm_crtc *crtc, |
| 97 | struct drm_crtc_state *state) |
| 98 | { |
| 99 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 100 | struct malidp_hw_device *hwdev = malidp->dev; |
| 101 | struct drm_plane *plane; |
| 102 | const struct drm_plane_state *pstate; |
| 103 | u32 rot_mem_free, rot_mem_usable; |
| 104 | int rotated_planes = 0; |
| 105 | |
| 106 | /* |
| 107 | * check if there is enough rotation memory available for planes |
| 108 | * that need 90° and 270° rotation. Each plane has set its required |
| 109 | * memory size in the ->plane_check() callback, here we only make |
| 110 | * sure that the sums are less that the total usable memory. |
| 111 | * |
| 112 | * The rotation memory allocation algorithm (for each plane): |
| 113 | * a. If no more rotated planes exist, all remaining rotate |
| 114 | * memory in the bank is available for use by the plane. |
| 115 | * b. If other rotated planes exist, and plane's layer ID is |
| 116 | * DE_VIDEO1, it can use all the memory from first bank if |
| 117 | * secondary rotation memory bank is available, otherwise it can |
| 118 | * use up to half the bank's memory. |
| 119 | * c. If other rotated planes exist, and plane's layer ID is not |
| 120 | * DE_VIDEO1, it can use half of the available memory |
| 121 | * |
| 122 | * Note: this algorithm assumes that the order in which the planes are |
| 123 | * checked always has DE_VIDEO1 plane first in the list if it is |
| 124 | * rotated. Because that is how we create the planes in the first |
| 125 | * place, under current DRM version things work, but if ever the order |
| 126 | * in which drm_atomic_crtc_state_for_each_plane() iterates over planes |
| 127 | * changes, we need to pre-sort the planes before validation. |
| 128 | */ |
| 129 | |
| 130 | /* first count the number of rotated planes */ |
| 131 | drm_atomic_crtc_state_for_each_plane_state(plane, pstate, state) { |
| 132 | if (pstate->rotation & MALIDP_ROTATED_MASK) |
| 133 | rotated_planes++; |
| 134 | } |
| 135 | |
| 136 | rot_mem_free = hwdev->rotation_memory[0]; |
| 137 | /* |
| 138 | * if we have more than 1 plane using rotation memory, use the second |
| 139 | * block of rotation memory as well |
| 140 | */ |
| 141 | if (rotated_planes > 1) |
| 142 | rot_mem_free += hwdev->rotation_memory[1]; |
| 143 | |
| 144 | /* now validate the rotation memory requirements */ |
| 145 | drm_atomic_crtc_state_for_each_plane_state(plane, pstate, state) { |
| 146 | struct malidp_plane *mp = to_malidp_plane(plane); |
| 147 | struct malidp_plane_state *ms = to_malidp_plane_state(pstate); |
| 148 | |
| 149 | if (pstate->rotation & MALIDP_ROTATED_MASK) { |
| 150 | /* process current plane */ |
| 151 | rotated_planes--; |
| 152 | |
| 153 | if (!rotated_planes) { |
| 154 | /* no more rotated planes, we can use what's left */ |
| 155 | rot_mem_usable = rot_mem_free; |
| 156 | } else { |
| 157 | if ((mp->layer->id != DE_VIDEO1) || |
| 158 | (hwdev->rotation_memory[1] == 0)) |
| 159 | rot_mem_usable = rot_mem_free / 2; |
| 160 | else |
| 161 | rot_mem_usable = hwdev->rotation_memory[0]; |
| 162 | } |
| 163 | |
| 164 | rot_mem_free -= rot_mem_usable; |
| 165 | |
| 166 | if (ms->rotmem_size > rot_mem_usable) |
| 167 | return -EINVAL; |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | return 0; |
| 172 | } |
| 173 | |
| 174 | static const struct drm_crtc_helper_funcs malidp_crtc_helper_funcs = { |
| 175 | .mode_fixup = malidp_crtc_mode_fixup, |
| 176 | .enable = malidp_crtc_enable, |
| 177 | .disable = malidp_crtc_disable, |
| 178 | .atomic_check = malidp_crtc_atomic_check, |
| 179 | }; |
| 180 | |
Mihail Atanassov | 99665d0 | 2017-02-01 14:48:49 +0000 | [diff] [blame^] | 181 | static struct drm_crtc_state *malidp_crtc_duplicate_state(struct drm_crtc *crtc) |
| 182 | { |
| 183 | struct malidp_crtc_state *state; |
| 184 | |
| 185 | if (WARN_ON(!crtc->state)) |
| 186 | return NULL; |
| 187 | |
| 188 | state = kmalloc(sizeof(*state), GFP_KERNEL); |
| 189 | if (!state) |
| 190 | return NULL; |
| 191 | |
| 192 | __drm_atomic_helper_crtc_duplicate_state(crtc, &state->base); |
| 193 | |
| 194 | return &state->base; |
| 195 | } |
| 196 | |
| 197 | static void malidp_crtc_reset(struct drm_crtc *crtc) |
| 198 | { |
| 199 | struct malidp_crtc_state *state = NULL; |
| 200 | |
| 201 | if (crtc->state) { |
| 202 | state = to_malidp_crtc_state(crtc->state); |
| 203 | __drm_atomic_helper_crtc_destroy_state(crtc->state); |
| 204 | } |
| 205 | |
| 206 | kfree(state); |
| 207 | state = kzalloc(sizeof(*state), GFP_KERNEL); |
| 208 | if (state) { |
| 209 | crtc->state = &state->base; |
| 210 | crtc->state->crtc = crtc; |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | static void malidp_crtc_destroy_state(struct drm_crtc *crtc, |
| 215 | struct drm_crtc_state *state) |
| 216 | { |
| 217 | struct malidp_crtc_state *mali_state = NULL; |
| 218 | |
| 219 | if (state) { |
| 220 | mali_state = to_malidp_crtc_state(state); |
| 221 | __drm_atomic_helper_crtc_destroy_state(state); |
| 222 | } |
| 223 | |
| 224 | kfree(mali_state); |
| 225 | } |
| 226 | |
Shawn Guo | d7ae94b | 2017-02-07 17:16:17 +0800 | [diff] [blame] | 227 | static int malidp_crtc_enable_vblank(struct drm_crtc *crtc) |
| 228 | { |
| 229 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 230 | struct malidp_hw_device *hwdev = malidp->dev; |
| 231 | |
| 232 | malidp_hw_enable_irq(hwdev, MALIDP_DE_BLOCK, |
| 233 | hwdev->map.de_irq_map.vsync_irq); |
| 234 | return 0; |
| 235 | } |
| 236 | |
| 237 | static void malidp_crtc_disable_vblank(struct drm_crtc *crtc) |
| 238 | { |
| 239 | struct malidp_drm *malidp = crtc_to_malidp_device(crtc); |
| 240 | struct malidp_hw_device *hwdev = malidp->dev; |
| 241 | |
| 242 | malidp_hw_disable_irq(hwdev, MALIDP_DE_BLOCK, |
| 243 | hwdev->map.de_irq_map.vsync_irq); |
| 244 | } |
| 245 | |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 246 | static const struct drm_crtc_funcs malidp_crtc_funcs = { |
| 247 | .destroy = drm_crtc_cleanup, |
| 248 | .set_config = drm_atomic_helper_set_config, |
| 249 | .page_flip = drm_atomic_helper_page_flip, |
Mihail Atanassov | 99665d0 | 2017-02-01 14:48:49 +0000 | [diff] [blame^] | 250 | .reset = malidp_crtc_reset, |
| 251 | .atomic_duplicate_state = malidp_crtc_duplicate_state, |
| 252 | .atomic_destroy_state = malidp_crtc_destroy_state, |
Shawn Guo | d7ae94b | 2017-02-07 17:16:17 +0800 | [diff] [blame] | 253 | .enable_vblank = malidp_crtc_enable_vblank, |
| 254 | .disable_vblank = malidp_crtc_disable_vblank, |
Liviu Dudau | ad49f86 | 2016-03-07 10:00:53 +0000 | [diff] [blame] | 255 | }; |
| 256 | |
| 257 | int malidp_crtc_init(struct drm_device *drm) |
| 258 | { |
| 259 | struct malidp_drm *malidp = drm->dev_private; |
| 260 | struct drm_plane *primary = NULL, *plane; |
| 261 | int ret; |
| 262 | |
| 263 | ret = malidp_de_planes_init(drm); |
| 264 | if (ret < 0) { |
| 265 | DRM_ERROR("Failed to initialise planes\n"); |
| 266 | return ret; |
| 267 | } |
| 268 | |
| 269 | drm_for_each_plane(plane, drm) { |
| 270 | if (plane->type == DRM_PLANE_TYPE_PRIMARY) { |
| 271 | primary = plane; |
| 272 | break; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | if (!primary) { |
| 277 | DRM_ERROR("no primary plane found\n"); |
| 278 | ret = -EINVAL; |
| 279 | goto crtc_cleanup_planes; |
| 280 | } |
| 281 | |
| 282 | ret = drm_crtc_init_with_planes(drm, &malidp->crtc, primary, NULL, |
| 283 | &malidp_crtc_funcs, NULL); |
| 284 | |
| 285 | if (!ret) { |
| 286 | drm_crtc_helper_add(&malidp->crtc, &malidp_crtc_helper_funcs); |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | crtc_cleanup_planes: |
| 291 | malidp_de_planes_destroy(drm); |
| 292 | |
| 293 | return ret; |
| 294 | } |