Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) STMicroelectronics SA 2014 |
| 3 | * Authors: Benjamin Gaignard <benjamin.gaignard@st.com> |
| 4 | * Fabien Dessenne <fabien.dessenne@st.com> |
| 5 | * for STMicroelectronics. |
| 6 | * License terms: GNU General Public License (GPL), version 2 |
| 7 | */ |
| 8 | |
| 9 | #include <linux/clk.h> |
| 10 | |
| 11 | #include <drm/drmP.h> |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 12 | #include <drm/drm_atomic.h> |
| 13 | #include <drm/drm_atomic_helper.h> |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 14 | #include <drm/drm_crtc_helper.h> |
Daniel Vetter | 3cb9ae4 | 2014-10-29 10:03:57 +0100 | [diff] [blame] | 15 | #include <drm/drm_plane_helper.h> |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 16 | |
| 17 | #include "sti_compositor.h" |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 18 | #include "sti_crtc.h" |
| 19 | #include "sti_drv.h" |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 20 | #include "sti_vid.h" |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 21 | #include "sti_vtg.h" |
| 22 | |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 23 | static void sti_crtc_enable(struct drm_crtc *crtc) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 24 | { |
| 25 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
| 26 | struct device *dev = mixer->dev; |
| 27 | struct sti_compositor *compo = dev_get_drvdata(dev); |
| 28 | |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 29 | DRM_DEBUG_DRIVER("\n"); |
| 30 | |
| 31 | mixer->status = STI_MIXER_READY; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 32 | |
| 33 | /* Prepare and enable the compo IP clock */ |
| 34 | if (mixer->id == STI_MIXER_MAIN) { |
| 35 | if (clk_prepare_enable(compo->clk_compo_main)) |
| 36 | DRM_INFO("Failed to prepare/enable compo_main clk\n"); |
| 37 | } else { |
| 38 | if (clk_prepare_enable(compo->clk_compo_aux)) |
| 39 | DRM_INFO("Failed to prepare/enable compo_aux clk\n"); |
| 40 | } |
Benjamin Gaignard | 2f7d0e82c | 2014-12-04 11:17:32 +0100 | [diff] [blame] | 41 | |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 42 | drm_crtc_vblank_on(crtc); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 43 | } |
| 44 | |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 45 | static void sti_crtc_disabling(struct drm_crtc *crtc) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 46 | { |
| 47 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 48 | |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 49 | DRM_DEBUG_DRIVER("\n"); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 50 | |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 51 | mixer->status = STI_MIXER_DISABLING; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 52 | } |
| 53 | |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 54 | static int |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 55 | sti_crtc_mode_set(struct drm_crtc *crtc, struct drm_display_mode *mode) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 56 | { |
| 57 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
| 58 | struct device *dev = mixer->dev; |
| 59 | struct sti_compositor *compo = dev_get_drvdata(dev); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 60 | struct clk *clk; |
| 61 | int rate = mode->clock * 1000; |
| 62 | int res; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 63 | |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 64 | DRM_DEBUG_KMS("CRTC:%d (%s) mode:%d (%s)\n", |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 65 | crtc->base.id, sti_mixer_to_str(mixer), |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 66 | mode->base.id, mode->name); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 67 | |
| 68 | DRM_DEBUG_KMS("%d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n", |
| 69 | mode->vrefresh, mode->clock, |
| 70 | mode->hdisplay, |
| 71 | mode->hsync_start, mode->hsync_end, |
| 72 | mode->htotal, |
| 73 | mode->vdisplay, |
| 74 | mode->vsync_start, mode->vsync_end, |
| 75 | mode->vtotal, mode->type, mode->flags); |
| 76 | |
| 77 | /* Set rate and prepare/enable pixel clock */ |
| 78 | if (mixer->id == STI_MIXER_MAIN) |
| 79 | clk = compo->clk_pix_main; |
| 80 | else |
| 81 | clk = compo->clk_pix_aux; |
| 82 | |
| 83 | res = clk_set_rate(clk, rate); |
| 84 | if (res < 0) { |
| 85 | DRM_ERROR("Cannot set rate (%dHz) for pix clk\n", rate); |
| 86 | return -EINVAL; |
| 87 | } |
| 88 | if (clk_prepare_enable(clk)) { |
| 89 | DRM_ERROR("Failed to prepare/enable pix clk\n"); |
| 90 | return -EINVAL; |
| 91 | } |
| 92 | |
| 93 | sti_vtg_set_config(mixer->id == STI_MIXER_MAIN ? |
| 94 | compo->vtg_main : compo->vtg_aux, &crtc->mode); |
| 95 | |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 96 | res = sti_mixer_active_video_area(mixer, &crtc->mode); |
| 97 | if (res) { |
Vincent Abriou | 871bcdf | 2015-07-31 11:32:13 +0200 | [diff] [blame] | 98 | DRM_ERROR("Can't set active video area\n"); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 99 | return -EINVAL; |
| 100 | } |
| 101 | |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 102 | return res; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 103 | } |
| 104 | |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 105 | static void sti_crtc_disable(struct drm_crtc *crtc) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 106 | { |
| 107 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
| 108 | struct device *dev = mixer->dev; |
| 109 | struct sti_compositor *compo = dev_get_drvdata(dev); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 110 | |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 111 | DRM_DEBUG_KMS("CRTC:%d (%s)\n", crtc->base.id, sti_mixer_to_str(mixer)); |
| 112 | |
| 113 | /* Disable Background */ |
| 114 | sti_mixer_set_background_status(mixer, false); |
| 115 | |
Benjamin Gaignard | ca614aa | 2014-12-04 11:27:45 +0100 | [diff] [blame] | 116 | drm_crtc_vblank_off(crtc); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 117 | |
| 118 | /* Disable pixel clock and compo IP clocks */ |
| 119 | if (mixer->id == STI_MIXER_MAIN) { |
| 120 | clk_disable_unprepare(compo->clk_pix_main); |
| 121 | clk_disable_unprepare(compo->clk_compo_main); |
| 122 | } else { |
| 123 | clk_disable_unprepare(compo->clk_pix_aux); |
| 124 | clk_disable_unprepare(compo->clk_compo_aux); |
| 125 | } |
| 126 | |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 127 | mixer->status = STI_MIXER_DISABLED; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 128 | } |
| 129 | |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 130 | static void |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 131 | sti_crtc_mode_set_nofb(struct drm_crtc *crtc) |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 132 | { |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 133 | sti_crtc_enable(crtc); |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 134 | sti_crtc_mode_set(crtc, &crtc->state->adjusted_mode); |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 135 | } |
| 136 | |
Dave Airlie | e1474e7 | 2015-08-14 10:14:23 +1000 | [diff] [blame] | 137 | static void sti_crtc_atomic_begin(struct drm_crtc *crtc, |
| 138 | struct drm_crtc_state *old_crtc_state) |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 139 | { |
| 140 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
| 141 | |
| 142 | if (crtc->state->event) { |
| 143 | crtc->state->event->pipe = drm_crtc_index(crtc); |
| 144 | |
| 145 | WARN_ON(drm_crtc_vblank_get(crtc) != 0); |
| 146 | |
| 147 | mixer->pending_event = crtc->state->event; |
| 148 | crtc->state->event = NULL; |
| 149 | } |
| 150 | } |
| 151 | |
Dave Airlie | e1474e7 | 2015-08-14 10:14:23 +1000 | [diff] [blame] | 152 | static void sti_crtc_atomic_flush(struct drm_crtc *crtc, |
| 153 | struct drm_crtc_state *old_crtc_state) |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 154 | { |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 155 | struct drm_device *drm_dev = crtc->dev; |
| 156 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
| 157 | struct sti_compositor *compo = dev_get_drvdata(mixer->dev); |
| 158 | struct drm_plane *p; |
| 159 | |
| 160 | DRM_DEBUG_DRIVER("\n"); |
| 161 | |
| 162 | /* perform plane actions */ |
| 163 | list_for_each_entry(p, &drm_dev->mode_config.plane_list, head) { |
| 164 | struct sti_plane *plane = to_sti_plane(p); |
| 165 | |
| 166 | switch (plane->status) { |
| 167 | case STI_PLANE_UPDATED: |
| 168 | /* update planes tag as updated */ |
| 169 | DRM_DEBUG_DRIVER("update plane %s\n", |
| 170 | sti_plane_to_str(plane)); |
| 171 | |
| 172 | if (sti_mixer_set_plane_depth(mixer, plane)) { |
| 173 | DRM_ERROR("Cannot set plane %s depth\n", |
| 174 | sti_plane_to_str(plane)); |
| 175 | break; |
| 176 | } |
| 177 | |
| 178 | if (sti_mixer_set_plane_status(mixer, plane, true)) { |
| 179 | DRM_ERROR("Cannot enable plane %s at mixer\n", |
| 180 | sti_plane_to_str(plane)); |
| 181 | break; |
| 182 | } |
| 183 | |
| 184 | /* if plane is HQVDP_0 then commit the vid[0] */ |
| 185 | if (plane->desc == STI_HQVDP_0) |
| 186 | sti_vid_commit(compo->vid[0], p->state); |
| 187 | |
| 188 | plane->status = STI_PLANE_READY; |
| 189 | |
| 190 | break; |
| 191 | case STI_PLANE_DISABLING: |
| 192 | /* disabling sequence for planes tag as disabling */ |
| 193 | DRM_DEBUG_DRIVER("disable plane %s from mixer\n", |
| 194 | sti_plane_to_str(plane)); |
| 195 | |
| 196 | if (sti_mixer_set_plane_status(mixer, plane, false)) { |
| 197 | DRM_ERROR("Cannot disable plane %s at mixer\n", |
| 198 | sti_plane_to_str(plane)); |
| 199 | continue; |
| 200 | } |
| 201 | |
| 202 | if (plane->desc == STI_CURSOR) |
| 203 | /* tag plane status for disabled */ |
| 204 | plane->status = STI_PLANE_DISABLED; |
| 205 | else |
| 206 | /* tag plane status for flushing */ |
| 207 | plane->status = STI_PLANE_FLUSHING; |
| 208 | |
| 209 | /* if plane is HQVDP_0 then disable the vid[0] */ |
| 210 | if (plane->desc == STI_HQVDP_0) |
| 211 | sti_vid_disable(compo->vid[0]); |
| 212 | |
| 213 | break; |
| 214 | default: |
| 215 | /* Other status case are not handled */ |
| 216 | break; |
| 217 | } |
| 218 | } |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 219 | } |
| 220 | |
Ville Syrjälä | c5de485 | 2015-09-02 13:44:15 +0300 | [diff] [blame] | 221 | static const struct drm_crtc_helper_funcs sti_crtc_helper_funcs = { |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 222 | .enable = sti_crtc_enable, |
| 223 | .disable = sti_crtc_disabling, |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 224 | .mode_set = drm_helper_crtc_mode_set, |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 225 | .mode_set_nofb = sti_crtc_mode_set_nofb, |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 226 | .mode_set_base = drm_helper_crtc_mode_set_base, |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 227 | .atomic_begin = sti_crtc_atomic_begin, |
| 228 | .atomic_flush = sti_crtc_atomic_flush, |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 229 | }; |
| 230 | |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 231 | static void sti_crtc_destroy(struct drm_crtc *crtc) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 232 | { |
| 233 | DRM_DEBUG_KMS("\n"); |
| 234 | drm_crtc_cleanup(crtc); |
| 235 | } |
| 236 | |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 237 | static int sti_crtc_set_property(struct drm_crtc *crtc, |
| 238 | struct drm_property *property, |
| 239 | uint64_t val) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 240 | { |
| 241 | DRM_DEBUG_KMS("\n"); |
| 242 | return 0; |
| 243 | } |
| 244 | |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 245 | int sti_crtc_vblank_cb(struct notifier_block *nb, |
| 246 | unsigned long event, void *data) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 247 | { |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 248 | struct sti_compositor *compo = |
| 249 | container_of(nb, struct sti_compositor, vtg_vblank_nb); |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 250 | struct drm_crtc *crtc = data; |
| 251 | struct sti_mixer *mixer; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 252 | unsigned long flags; |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 253 | struct sti_private *priv; |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 254 | unsigned int pipe; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 255 | |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 256 | priv = crtc->dev->dev_private; |
| 257 | pipe = drm_crtc_index(crtc); |
| 258 | mixer = compo->mixer[pipe]; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 259 | |
| 260 | if ((event != VTG_TOP_FIELD_EVENT) && |
| 261 | (event != VTG_BOTTOM_FIELD_EVENT)) { |
| 262 | DRM_ERROR("unknown event: %lu\n", event); |
| 263 | return -EINVAL; |
| 264 | } |
| 265 | |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 266 | drm_crtc_handle_vblank(crtc); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 267 | |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 268 | spin_lock_irqsave(&crtc->dev->event_lock, flags); |
| 269 | if (mixer->pending_event) { |
| 270 | drm_crtc_send_vblank_event(crtc, mixer->pending_event); |
| 271 | drm_crtc_vblank_put(crtc); |
| 272 | mixer->pending_event = NULL; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 273 | } |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 274 | spin_unlock_irqrestore(&crtc->dev->event_lock, flags); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 275 | |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 276 | if (mixer->status == STI_MIXER_DISABLING) { |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 277 | struct drm_plane *p; |
| 278 | |
| 279 | /* Disable mixer only if all overlay planes (GDP and VDP) |
| 280 | * are disabled */ |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 281 | list_for_each_entry(p, &crtc->dev->mode_config.plane_list, |
| 282 | head) { |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 283 | struct sti_plane *plane = to_sti_plane(p); |
| 284 | |
| 285 | if ((plane->desc & STI_PLANE_TYPE_MASK) <= STI_VDP) |
| 286 | if (plane->status != STI_PLANE_DISABLED) |
| 287 | return 0; |
| 288 | } |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 289 | sti_crtc_disable(crtc); |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 290 | } |
| 291 | |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 292 | return 0; |
| 293 | } |
| 294 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 295 | int sti_crtc_enable_vblank(struct drm_device *dev, unsigned int pipe) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 296 | { |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 297 | struct sti_private *dev_priv = dev->dev_private; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 298 | struct sti_compositor *compo = dev_priv->compo; |
| 299 | struct notifier_block *vtg_vblank_nb = &compo->vtg_vblank_nb; |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 300 | struct drm_crtc *crtc = &compo->mixer[pipe]->drm_crtc; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 301 | |
Vincent Abriou | 871bcdf | 2015-07-31 11:32:13 +0200 | [diff] [blame] | 302 | DRM_DEBUG_DRIVER("\n"); |
| 303 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 304 | if (sti_vtg_register_client(pipe == STI_MIXER_MAIN ? |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 305 | compo->vtg_main : compo->vtg_aux, |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 306 | vtg_vblank_nb, crtc)) { |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 307 | DRM_ERROR("Cannot register VTG notifier\n"); |
| 308 | return -EINVAL; |
| 309 | } |
| 310 | |
| 311 | return 0; |
| 312 | } |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 313 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 314 | void sti_crtc_disable_vblank(struct drm_device *drm_dev, unsigned int pipe) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 315 | { |
Vincent Abriou | 29d1dc6 | 2015-08-03 14:22:16 +0200 | [diff] [blame] | 316 | struct sti_private *priv = drm_dev->dev_private; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 317 | struct sti_compositor *compo = priv->compo; |
| 318 | struct notifier_block *vtg_vblank_nb = &compo->vtg_vblank_nb; |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 319 | struct drm_crtc *crtc = &compo->mixer[pipe]->drm_crtc; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 320 | |
| 321 | DRM_DEBUG_DRIVER("\n"); |
| 322 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 323 | if (sti_vtg_unregister_client(pipe == STI_MIXER_MAIN ? |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 324 | compo->vtg_main : compo->vtg_aux, vtg_vblank_nb)) |
| 325 | DRM_DEBUG_DRIVER("Warning: cannot unregister VTG notifier\n"); |
| 326 | |
| 327 | /* free the resources of the pending requests */ |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 328 | if (compo->mixer[pipe]->pending_event) { |
Thierry Reding | 2388693 | 2015-09-24 18:35:38 +0200 | [diff] [blame] | 329 | drm_crtc_vblank_put(crtc); |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 330 | compo->mixer[pipe]->pending_event = NULL; |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 331 | } |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 332 | } |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 333 | |
Benjamin Gaignard | 83af0a4 | 2016-06-21 15:09:39 +0200 | [diff] [blame] | 334 | static int sti_crtc_late_register(struct drm_crtc *crtc) |
| 335 | { |
| 336 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
| 337 | struct sti_compositor *compo = dev_get_drvdata(mixer->dev); |
| 338 | |
| 339 | if (drm_crtc_index(crtc) == 0) |
| 340 | return sti_compositor_debufs_init(compo, crtc->dev->primary); |
| 341 | |
| 342 | return 0; |
| 343 | } |
| 344 | |
Ville Syrjälä | c5de485 | 2015-09-02 13:44:15 +0300 | [diff] [blame] | 345 | static const struct drm_crtc_funcs sti_crtc_funcs = { |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 346 | .set_config = drm_atomic_helper_set_config, |
| 347 | .page_flip = drm_atomic_helper_page_flip, |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 348 | .destroy = sti_crtc_destroy, |
| 349 | .set_property = sti_crtc_set_property, |
Benjamin Gaignard | de4b00b | 2015-03-19 13:35:16 +0100 | [diff] [blame] | 350 | .reset = drm_atomic_helper_crtc_reset, |
| 351 | .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state, |
| 352 | .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state, |
Benjamin Gaignard | 83af0a4 | 2016-06-21 15:09:39 +0200 | [diff] [blame] | 353 | .late_register = sti_crtc_late_register, |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 354 | }; |
| 355 | |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 356 | bool sti_crtc_is_main(struct drm_crtc *crtc) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 357 | { |
| 358 | struct sti_mixer *mixer = to_sti_mixer(crtc); |
| 359 | |
| 360 | if (mixer->id == STI_MIXER_MAIN) |
| 361 | return true; |
| 362 | |
| 363 | return false; |
| 364 | } |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 365 | |
Vincent Abriou | 9e1f05b | 2015-07-31 11:32:34 +0200 | [diff] [blame] | 366 | int sti_crtc_init(struct drm_device *drm_dev, struct sti_mixer *mixer, |
| 367 | struct drm_plane *primary, struct drm_plane *cursor) |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 368 | { |
| 369 | struct drm_crtc *crtc = &mixer->drm_crtc; |
| 370 | int res; |
| 371 | |
| 372 | res = drm_crtc_init_with_planes(drm_dev, crtc, primary, cursor, |
Ville Syrjälä | f988287 | 2015-12-09 16:19:31 +0200 | [diff] [blame] | 373 | &sti_crtc_funcs, NULL); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 374 | if (res) { |
Vincent Abriou | 871bcdf | 2015-07-31 11:32:13 +0200 | [diff] [blame] | 375 | DRM_ERROR("Can't initialze CRTC\n"); |
Benjamin Gaignard | 9bbf86f | 2014-07-31 09:39:11 +0200 | [diff] [blame] | 376 | return -EINVAL; |
| 377 | } |
| 378 | |
| 379 | drm_crtc_helper_add(crtc, &sti_crtc_helper_funcs); |
| 380 | |
| 381 | DRM_DEBUG_DRIVER("drm CRTC:%d mapped to %s\n", |
| 382 | crtc->base.id, sti_mixer_to_str(mixer)); |
| 383 | |
| 384 | return 0; |
| 385 | } |