Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 1 | /* |
Andrew F. Davis | bb5cdf8 | 2017-12-05 14:29:31 -0600 | [diff] [blame] | 2 | * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 3 | * Author: Rob Clark <rob@ti.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 version 2 as published by |
| 7 | * the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
Laurent Pinchart | 2d278f5 | 2015-03-05 21:31:37 +0200 | [diff] [blame] | 18 | #include <linux/list.h> |
| 19 | |
| 20 | #include <drm/drm_crtc.h> |
Daniel Vetter | fcd70cd | 2019-01-17 22:03:34 +0100 | [diff] [blame] | 21 | #include <drm/drm_modeset_helper_vtables.h> |
Tomi Valkeinen | 4f930c0 | 2014-06-18 14:19:48 +0300 | [diff] [blame] | 22 | #include <drm/drm_edid.h> |
| 23 | |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 24 | #include "omap_drv.h" |
| 25 | |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 26 | /* |
| 27 | * encoder funcs |
| 28 | */ |
| 29 | |
| 30 | #define to_omap_encoder(x) container_of(x, struct omap_encoder, base) |
| 31 | |
Rob Clark | f5f9454 | 2012-12-04 13:59:12 -0600 | [diff] [blame] | 32 | /* The encoder and connector both map to same dssdev.. the encoder |
| 33 | * handles the 'active' parts, ie. anything the modifies the state |
| 34 | * of the hw, and the connector handles the 'read-only' parts, like |
| 35 | * detecting connection and reading edid. |
| 36 | */ |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 37 | struct omap_encoder { |
| 38 | struct drm_encoder base; |
Laurent Pinchart | d96aaad | 2018-05-31 23:14:43 +0300 | [diff] [blame] | 39 | struct omap_dss_device *output; |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | static void omap_encoder_destroy(struct drm_encoder *encoder) |
| 43 | { |
| 44 | struct omap_encoder *omap_encoder = to_omap_encoder(encoder); |
Archit Taneja | ec72a81 | 2014-01-02 14:49:53 +0530 | [diff] [blame] | 45 | |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 46 | drm_encoder_cleanup(encoder); |
| 47 | kfree(omap_encoder); |
| 48 | } |
| 49 | |
Rob Clark | f5f9454 | 2012-12-04 13:59:12 -0600 | [diff] [blame] | 50 | static const struct drm_encoder_funcs omap_encoder_funcs = { |
| 51 | .destroy = omap_encoder_destroy, |
| 52 | }; |
| 53 | |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 54 | static void omap_encoder_update_videomode_flags(struct videomode *vm, |
| 55 | u32 bus_flags) |
| 56 | { |
| 57 | if (!(vm->flags & (DISPLAY_FLAGS_DE_LOW | |
| 58 | DISPLAY_FLAGS_DE_HIGH))) { |
| 59 | if (bus_flags & DRM_BUS_FLAG_DE_LOW) |
| 60 | vm->flags |= DISPLAY_FLAGS_DE_LOW; |
| 61 | else if (bus_flags & DRM_BUS_FLAG_DE_HIGH) |
| 62 | vm->flags |= DISPLAY_FLAGS_DE_HIGH; |
| 63 | } |
| 64 | |
| 65 | if (!(vm->flags & (DISPLAY_FLAGS_PIXDATA_POSEDGE | |
| 66 | DISPLAY_FLAGS_PIXDATA_NEGEDGE))) { |
| 67 | if (bus_flags & DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE) |
| 68 | vm->flags |= DISPLAY_FLAGS_PIXDATA_POSEDGE; |
| 69 | else if (bus_flags & DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE) |
| 70 | vm->flags |= DISPLAY_FLAGS_PIXDATA_NEGEDGE; |
| 71 | } |
| 72 | |
| 73 | if (!(vm->flags & (DISPLAY_FLAGS_SYNC_POSEDGE | |
| 74 | DISPLAY_FLAGS_SYNC_NEGEDGE))) { |
| 75 | if (bus_flags & DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE) |
| 76 | vm->flags |= DISPLAY_FLAGS_SYNC_POSEDGE; |
| 77 | else if (bus_flags & DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE) |
| 78 | vm->flags |= DISPLAY_FLAGS_SYNC_NEGEDGE; |
| 79 | } |
| 80 | } |
| 81 | |
Sebastian Reichel | 3c613a3 | 2018-11-21 17:09:14 +0100 | [diff] [blame] | 82 | static void omap_encoder_hdmi_mode_set(struct drm_encoder *encoder, |
| 83 | struct drm_display_mode *adjusted_mode) |
| 84 | { |
| 85 | struct drm_device *dev = encoder->dev; |
| 86 | struct omap_encoder *omap_encoder = to_omap_encoder(encoder); |
| 87 | struct omap_dss_device *dssdev = omap_encoder->output; |
| 88 | struct drm_connector *connector; |
| 89 | bool hdmi_mode; |
| 90 | |
| 91 | hdmi_mode = false; |
| 92 | list_for_each_entry(connector, &dev->mode_config.connector_list, head) { |
| 93 | if (connector->encoder == encoder) { |
| 94 | hdmi_mode = omap_connector_get_hdmi_mode(connector); |
| 95 | break; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | if (dssdev->ops->hdmi.set_hdmi_mode) |
| 100 | dssdev->ops->hdmi.set_hdmi_mode(dssdev, hdmi_mode); |
| 101 | |
| 102 | if (hdmi_mode && dssdev->ops->hdmi.set_infoframe) { |
| 103 | struct hdmi_avi_infoframe avi; |
| 104 | int r; |
| 105 | |
Maxime Ripard | 23d19ba | 2019-01-11 16:32:10 +0100 | [diff] [blame] | 106 | r = drm_hdmi_avi_infoframe_from_display_mode(&avi, connector, |
| 107 | adjusted_mode); |
Sebastian Reichel | 3c613a3 | 2018-11-21 17:09:14 +0100 | [diff] [blame] | 108 | if (r == 0) |
| 109 | dssdev->ops->hdmi.set_infoframe(dssdev, &avi); |
| 110 | } |
| 111 | } |
| 112 | |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 113 | static void omap_encoder_mode_set(struct drm_encoder *encoder, |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 114 | struct drm_display_mode *mode, |
| 115 | struct drm_display_mode *adjusted_mode) |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 116 | { |
Tomi Valkeinen | 4f930c0 | 2014-06-18 14:19:48 +0300 | [diff] [blame] | 117 | struct omap_encoder *omap_encoder = to_omap_encoder(encoder); |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 118 | struct omap_dss_device *output = omap_encoder->output; |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 119 | struct omap_dss_device *dssdev; |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 120 | struct drm_bridge *bridge; |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 121 | struct videomode vm = { 0 }; |
Tomi Valkeinen | 4f930c0 | 2014-06-18 14:19:48 +0300 | [diff] [blame] | 122 | |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 123 | drm_display_mode_to_videomode(adjusted_mode, &vm); |
| 124 | |
| 125 | /* |
| 126 | * HACK: This fixes the vm flags. |
| 127 | * struct drm_display_mode does not contain the VSYNC/HSYNC/DE flags and |
| 128 | * they get lost when converting back and forth between struct |
| 129 | * drm_display_mode and struct videomode. The hack below goes and |
| 130 | * fetches the missing flags. |
| 131 | * |
| 132 | * A better solution is to use DRM's bus-flags through the whole driver. |
| 133 | */ |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 134 | for (dssdev = output; dssdev; dssdev = dssdev->next) |
| 135 | omap_encoder_update_videomode_flags(&vm, dssdev->bus_flags); |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 136 | |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 137 | for (bridge = output->bridge; bridge; bridge = bridge->next) { |
| 138 | u32 bus_flags; |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 139 | |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 140 | if (!bridge->timings) |
| 141 | continue; |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 142 | |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 143 | bus_flags = bridge->timings->input_bus_flags; |
| 144 | omap_encoder_update_videomode_flags(&vm, bus_flags); |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 145 | } |
| 146 | |
Laurent Pinchart | 6ea48430 | 2018-06-07 19:55:04 +0300 | [diff] [blame] | 147 | /* Set timings for all devices in the display pipeline. */ |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 148 | dss_mgr_set_timings(output, &vm); |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 149 | |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 150 | for (dssdev = output; dssdev; dssdev = dssdev->next) { |
Laurent Pinchart | 6ea48430 | 2018-06-07 19:55:04 +0300 | [diff] [blame] | 151 | if (dssdev->ops->set_timings) |
Laurent Pinchart | 41322aa | 2018-09-21 17:00:29 +0300 | [diff] [blame] | 152 | dssdev->ops->set_timings(dssdev, adjusted_mode); |
Laurent Pinchart | 6ea48430 | 2018-06-07 19:55:04 +0300 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | /* Set the HDMI mode and HDMI infoframe if applicable. */ |
Laurent Pinchart | 79107f2 | 2018-09-23 12:58:15 +0300 | [diff] [blame^] | 156 | if (output->type == OMAP_DISPLAY_TYPE_HDMI) |
Sebastian Reichel | 3c613a3 | 2018-11-21 17:09:14 +0100 | [diff] [blame] | 157 | omap_encoder_hdmi_mode_set(encoder, adjusted_mode); |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 158 | } |
| 159 | |
Laurent Pinchart | 68dc039 | 2015-03-07 00:22:39 +0200 | [diff] [blame] | 160 | static void omap_encoder_disable(struct drm_encoder *encoder) |
| 161 | { |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 162 | struct omap_encoder *omap_encoder = to_omap_encoder(encoder); |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 163 | struct omap_dss_device *dssdev = omap_encoder->output; |
Laurent Pinchart | b80bfc6 | 2018-09-04 17:22:27 +0300 | [diff] [blame] | 164 | struct drm_device *dev = encoder->dev; |
| 165 | |
| 166 | dev_dbg(dev->dev, "disable(%s)\n", dssdev->name); |
| 167 | |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 168 | /* |
| 169 | * Disable the chain of external devices, starting at the one at the |
| 170 | * internal encoder's output. |
| 171 | */ |
| 172 | omapdss_device_disable(dssdev->next); |
Laurent Pinchart | b80bfc6 | 2018-09-04 17:22:27 +0300 | [diff] [blame] | 173 | |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 174 | /* |
| 175 | * Disable the internal encoder. This will disable the DSS output. The |
| 176 | * DSI is treated as an exception as DSI pipelines still use the legacy |
| 177 | * flow where the pipeline output controls the encoder. |
| 178 | */ |
Laurent Pinchart | 0dbfc39 | 2018-12-10 14:00:38 +0200 | [diff] [blame] | 179 | if (dssdev->type != OMAP_DISPLAY_TYPE_DSI) { |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 180 | dssdev->ops->disable(dssdev); |
| 181 | dssdev->state = OMAP_DSS_DISPLAY_DISABLED; |
| 182 | } |
| 183 | |
| 184 | /* |
| 185 | * Perform the post-disable operations on the chain of external devices |
| 186 | * to complete the display pipeline disable. |
| 187 | */ |
| 188 | omapdss_device_post_disable(dssdev->next); |
Rob Clark | f5f9454 | 2012-12-04 13:59:12 -0600 | [diff] [blame] | 189 | } |
| 190 | |
Laurent Pinchart | 4029755e | 2015-05-28 02:34:05 +0300 | [diff] [blame] | 191 | static void omap_encoder_enable(struct drm_encoder *encoder) |
| 192 | { |
| 193 | struct omap_encoder *omap_encoder = to_omap_encoder(encoder); |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 194 | struct omap_dss_device *dssdev = omap_encoder->output; |
Laurent Pinchart | b80bfc6 | 2018-09-04 17:22:27 +0300 | [diff] [blame] | 195 | struct drm_device *dev = encoder->dev; |
Laurent Pinchart | 4029755e | 2015-05-28 02:34:05 +0300 | [diff] [blame] | 196 | |
Laurent Pinchart | b80bfc6 | 2018-09-04 17:22:27 +0300 | [diff] [blame] | 197 | dev_dbg(dev->dev, "enable(%s)\n", dssdev->name); |
| 198 | |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 199 | /* Prepare the chain of external devices for pipeline enable. */ |
| 200 | omapdss_device_pre_enable(dssdev->next); |
| 201 | |
| 202 | /* |
| 203 | * Enable the internal encoder. This will enable the DSS output. The |
| 204 | * DSI is treated as an exception as DSI pipelines still use the legacy |
| 205 | * flow where the pipeline output controls the encoder. |
| 206 | */ |
Laurent Pinchart | 0dbfc39 | 2018-12-10 14:00:38 +0200 | [diff] [blame] | 207 | if (dssdev->type != OMAP_DISPLAY_TYPE_DSI) { |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 208 | dssdev->ops->enable(dssdev); |
| 209 | dssdev->state = OMAP_DSS_DISPLAY_ACTIVE; |
Laurent Pinchart | b49a213 | 2018-09-04 23:53:34 +0300 | [diff] [blame] | 210 | } |
Laurent Pinchart | b80bfc6 | 2018-09-04 17:22:27 +0300 | [diff] [blame] | 211 | |
Laurent Pinchart | 19b4200 | 2018-08-24 19:38:07 +0300 | [diff] [blame] | 212 | /* |
| 213 | * Enable the chain of external devices, starting at the one at the |
| 214 | * internal encoder's output. |
| 215 | */ |
| 216 | omapdss_device_enable(dssdev->next); |
Laurent Pinchart | 4029755e | 2015-05-28 02:34:05 +0300 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | static int omap_encoder_atomic_check(struct drm_encoder *encoder, |
| 220 | struct drm_crtc_state *crtc_state, |
| 221 | struct drm_connector_state *conn_state) |
| 222 | { |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 223 | struct omap_encoder *omap_encoder = to_omap_encoder(encoder); |
Laurent Pinchart | d68164f | 2018-09-21 16:13:00 +0300 | [diff] [blame] | 224 | enum drm_mode_status status; |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 225 | |
Laurent Pinchart | d68164f | 2018-09-21 16:13:00 +0300 | [diff] [blame] | 226 | status = omap_connector_mode_fixup(omap_encoder->output, |
| 227 | &crtc_state->mode, |
| 228 | &crtc_state->adjusted_mode); |
| 229 | if (status != MODE_OK) { |
| 230 | dev_err(encoder->dev->dev, "invalid timings: %d\n", status); |
| 231 | return -EINVAL; |
Laurent Pinchart | 3fbda31 | 2018-06-07 17:58:57 +0300 | [diff] [blame] | 232 | } |
| 233 | |
Laurent Pinchart | d68164f | 2018-09-21 16:13:00 +0300 | [diff] [blame] | 234 | return 0; |
Laurent Pinchart | 4029755e | 2015-05-28 02:34:05 +0300 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | static const struct drm_encoder_helper_funcs omap_encoder_helper_funcs = { |
| 238 | .mode_set = omap_encoder_mode_set, |
| 239 | .disable = omap_encoder_disable, |
| 240 | .enable = omap_encoder_enable, |
| 241 | .atomic_check = omap_encoder_atomic_check, |
| 242 | }; |
| 243 | |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 244 | /* initialize encoder */ |
| 245 | struct drm_encoder *omap_encoder_init(struct drm_device *dev, |
Laurent Pinchart | 79d11e9 | 2018-09-13 02:23:26 +0300 | [diff] [blame] | 246 | struct omap_dss_device *output) |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 247 | { |
| 248 | struct drm_encoder *encoder = NULL; |
| 249 | struct omap_encoder *omap_encoder; |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 250 | |
| 251 | omap_encoder = kzalloc(sizeof(*omap_encoder), GFP_KERNEL); |
Joe Perches | 78110bb | 2013-02-11 09:41:29 -0800 | [diff] [blame] | 252 | if (!omap_encoder) |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 253 | goto fail; |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 254 | |
Laurent Pinchart | d96aaad | 2018-05-31 23:14:43 +0300 | [diff] [blame] | 255 | omap_encoder->output = output; |
Rob Clark | f5f9454 | 2012-12-04 13:59:12 -0600 | [diff] [blame] | 256 | |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 257 | encoder = &omap_encoder->base; |
| 258 | |
| 259 | drm_encoder_init(dev, encoder, &omap_encoder_funcs, |
Ville Syrjälä | 13a3d91 | 2015-12-09 16:20:18 +0200 | [diff] [blame] | 260 | DRM_MODE_ENCODER_TMDS, NULL); |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 261 | drm_encoder_helper_add(encoder, &omap_encoder_helper_funcs); |
| 262 | |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 263 | return encoder; |
| 264 | |
| 265 | fail: |
YAMANE Toshiaki | 582bc28 | 2012-11-14 19:31:27 +0900 | [diff] [blame] | 266 | if (encoder) |
Rob Clark | 65b0bd0 | 2011-12-09 23:26:07 -0600 | [diff] [blame] | 267 | omap_encoder_destroy(encoder); |
Rob Clark | cd5351f | 2011-11-12 12:09:40 -0600 | [diff] [blame] | 268 | |
| 269 | return NULL; |
| 270 | } |