Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Texas Instruments |
| 3 | * Author: Rob Clark <robdclark@gmail.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 | |
Sean Paul | ce2f2c3 | 2016-09-21 06:14:53 -0700 | [diff] [blame] | 18 | #include <drm/drm_atomic.h> |
Jyri Sarha | 305198d | 2016-04-07 15:05:16 +0300 | [diff] [blame] | 19 | #include <drm/drm_atomic_helper.h> |
Sean Paul | ce2f2c3 | 2016-09-21 06:14:53 -0700 | [diff] [blame] | 20 | #include <drm/drm_crtc.h> |
| 21 | #include <drm/drm_flip_work.h> |
| 22 | #include <drm/drm_plane_helper.h> |
Jyri Sarha | 4e910c7 | 2016-09-06 22:55:33 +0300 | [diff] [blame] | 23 | #include <linux/workqueue.h> |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 24 | |
| 25 | #include "tilcdc_drv.h" |
| 26 | #include "tilcdc_regs.h" |
| 27 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 28 | #define TILCDC_VBLANK_SAFETY_THRESHOLD_US 1000 |
| 29 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 30 | struct tilcdc_crtc { |
| 31 | struct drm_crtc base; |
| 32 | |
Jyri Sarha | 47f571c | 2016-04-07 15:04:18 +0300 | [diff] [blame] | 33 | struct drm_plane primary; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 34 | const struct tilcdc_panel_info *info; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 35 | struct drm_pending_vblank_event *event; |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 36 | struct mutex enable_lock; |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 37 | bool enabled; |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 38 | bool shutdown; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 39 | wait_queue_head_t frame_done_wq; |
| 40 | bool frame_done; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 41 | spinlock_t irq_lock; |
| 42 | |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 43 | unsigned int lcd_fck_rate; |
| 44 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 45 | ktime_t last_vblank; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 46 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 47 | struct drm_framebuffer *curr_fb; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 48 | struct drm_framebuffer *next_fb; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 49 | |
| 50 | /* for deferred fb unref's: */ |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 51 | struct drm_flip_work unref_work; |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 52 | |
| 53 | /* Only set if an external encoder is connected */ |
| 54 | bool simulate_vesa_sync; |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 55 | |
| 56 | int sync_lost_count; |
| 57 | bool frame_intact; |
Jyri Sarha | 13b3d72 | 2016-04-06 14:02:38 +0300 | [diff] [blame] | 58 | struct work_struct recover_work; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 59 | }; |
| 60 | #define to_tilcdc_crtc(x) container_of(x, struct tilcdc_crtc, base) |
| 61 | |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 62 | static void unref_worker(struct drm_flip_work *work, void *val) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 63 | { |
Darren Etheridge | f7b4575 | 2013-06-21 13:52:26 -0500 | [diff] [blame] | 64 | struct tilcdc_crtc *tilcdc_crtc = |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 65 | container_of(work, struct tilcdc_crtc, unref_work); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 66 | struct drm_device *dev = tilcdc_crtc->base.dev; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 67 | |
| 68 | mutex_lock(&dev->mode_config.mutex); |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 69 | drm_framebuffer_unreference(val); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 70 | mutex_unlock(&dev->mode_config.mutex); |
| 71 | } |
| 72 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 73 | static void set_scanout(struct drm_crtc *crtc, struct drm_framebuffer *fb) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 74 | { |
| 75 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 76 | struct drm_device *dev = crtc->dev; |
Daniel Schultz | 4c268d6 | 2016-10-28 13:52:41 +0200 | [diff] [blame] | 77 | struct tilcdc_drm_private *priv = dev->dev_private; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 78 | struct drm_gem_cma_object *gem; |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 79 | dma_addr_t start, end; |
Jyri Sarha | 7eb9f06 | 2016-08-26 15:10:14 +0300 | [diff] [blame] | 80 | u64 dma_base_and_ceiling; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 81 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 82 | gem = drm_fb_cma_get_gem_obj(fb, 0); |
| 83 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 84 | start = gem->paddr + fb->offsets[0] + |
| 85 | crtc->y * fb->pitches[0] + |
Laurent Pinchart | 59f11a4 | 2016-10-18 01:41:14 +0300 | [diff] [blame] | 86 | crtc->x * drm_format_plane_cpp(fb->pixel_format, 0); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 87 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 88 | end = start + (crtc->mode.vdisplay * fb->pitches[0]); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 89 | |
Jyri Sarha | 7eb9f06 | 2016-08-26 15:10:14 +0300 | [diff] [blame] | 90 | /* Write LCDC_DMA_FB_BASE_ADDR_0_REG and LCDC_DMA_FB_CEILING_ADDR_0_REG |
| 91 | * with a single insruction, if available. This should make it more |
| 92 | * unlikely that LCDC would fetch the DMA addresses in the middle of |
| 93 | * an update. |
| 94 | */ |
Daniel Schultz | 4c268d6 | 2016-10-28 13:52:41 +0200 | [diff] [blame] | 95 | if (priv->rev == 1) |
| 96 | end -= 1; |
| 97 | |
| 98 | dma_base_and_ceiling = (u64)end << 32 | start; |
Jyri Sarha | 7eb9f06 | 2016-08-26 15:10:14 +0300 | [diff] [blame] | 99 | tilcdc_write64(dev, LCDC_DMA_FB_BASE_ADDR_0_REG, dma_base_and_ceiling); |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 100 | |
| 101 | if (tilcdc_crtc->curr_fb) |
| 102 | drm_flip_work_queue(&tilcdc_crtc->unref_work, |
| 103 | tilcdc_crtc->curr_fb); |
| 104 | |
| 105 | tilcdc_crtc->curr_fb = fb; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 106 | } |
| 107 | |
Jyri Sarha | afaf833 | 2016-06-21 16:00:44 +0300 | [diff] [blame] | 108 | static void tilcdc_crtc_enable_irqs(struct drm_device *dev) |
| 109 | { |
| 110 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 111 | |
| 112 | tilcdc_clear_irqstatus(dev, 0xffffffff); |
| 113 | |
| 114 | if (priv->rev == 1) { |
| 115 | tilcdc_set(dev, LCDC_RASTER_CTRL_REG, |
Jyri Sarha | cba8844 | 2016-11-16 00:12:27 +0200 | [diff] [blame^] | 116 | LCDC_V1_SYNC_LOST_INT_ENA | |
Jyri Sarha | afaf833 | 2016-06-21 16:00:44 +0300 | [diff] [blame] | 117 | LCDC_V1_UNDERFLOW_INT_ENA); |
Karl Beldan | 8d6c3f7 | 2016-08-23 12:57:00 +0000 | [diff] [blame] | 118 | tilcdc_set(dev, LCDC_DMA_CTRL_REG, |
| 119 | LCDC_V1_END_OF_FRAME_INT_ENA); |
Jyri Sarha | afaf833 | 2016-06-21 16:00:44 +0300 | [diff] [blame] | 120 | } else { |
| 121 | tilcdc_write(dev, LCDC_INT_ENABLE_SET_REG, |
| 122 | LCDC_V2_UNDERFLOW_INT_ENA | |
| 123 | LCDC_V2_END_OF_FRAME0_INT_ENA | |
| 124 | LCDC_FRAME_DONE | LCDC_SYNC_LOST); |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | static void tilcdc_crtc_disable_irqs(struct drm_device *dev) |
| 129 | { |
| 130 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 131 | |
| 132 | /* disable irqs that we might have enabled: */ |
| 133 | if (priv->rev == 1) { |
| 134 | tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, |
Jyri Sarha | cba8844 | 2016-11-16 00:12:27 +0200 | [diff] [blame^] | 135 | LCDC_V1_SYNC_LOST_INT_ENA | |
Jyri Sarha | afaf833 | 2016-06-21 16:00:44 +0300 | [diff] [blame] | 136 | LCDC_V1_UNDERFLOW_INT_ENA | LCDC_V1_PL_INT_ENA); |
| 137 | tilcdc_clear(dev, LCDC_DMA_CTRL_REG, |
| 138 | LCDC_V1_END_OF_FRAME_INT_ENA); |
| 139 | } else { |
| 140 | tilcdc_write(dev, LCDC_INT_ENABLE_CLR_REG, |
| 141 | LCDC_V2_UNDERFLOW_INT_ENA | LCDC_V2_PL_INT_ENA | |
| 142 | LCDC_V2_END_OF_FRAME0_INT_ENA | |
| 143 | LCDC_FRAME_DONE | LCDC_SYNC_LOST); |
| 144 | } |
| 145 | } |
| 146 | |
Tomi Valkeinen | 2efec4f | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 147 | static void reset(struct drm_crtc *crtc) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 148 | { |
| 149 | struct drm_device *dev = crtc->dev; |
| 150 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 151 | |
Tomi Valkeinen | 2efec4f | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 152 | if (priv->rev != 2) |
| 153 | return; |
| 154 | |
| 155 | tilcdc_set(dev, LCDC_CLK_RESET_REG, LCDC_CLK_MAIN_RESET); |
| 156 | usleep_range(250, 1000); |
| 157 | tilcdc_clear(dev, LCDC_CLK_RESET_REG, LCDC_CLK_MAIN_RESET); |
| 158 | } |
| 159 | |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 160 | static void tilcdc_crtc_enable(struct drm_crtc *crtc) |
Tomi Valkeinen | 2efec4f | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 161 | { |
| 162 | struct drm_device *dev = crtc->dev; |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 163 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 164 | |
Jyri Sarha | 2e0965b | 2016-09-06 17:25:08 +0300 | [diff] [blame] | 165 | WARN_ON(!drm_modeset_is_locked(&crtc->mutex)); |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 166 | mutex_lock(&tilcdc_crtc->enable_lock); |
| 167 | if (tilcdc_crtc->enabled || tilcdc_crtc->shutdown) { |
| 168 | mutex_unlock(&tilcdc_crtc->enable_lock); |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 169 | return; |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 170 | } |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 171 | |
| 172 | pm_runtime_get_sync(dev->dev); |
Tomi Valkeinen | 2efec4f | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 173 | |
| 174 | reset(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 175 | |
Jyri Sarha | afaf833 | 2016-06-21 16:00:44 +0300 | [diff] [blame] | 176 | tilcdc_crtc_enable_irqs(dev); |
| 177 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 178 | tilcdc_clear(dev, LCDC_DMA_CTRL_REG, LCDC_DUAL_FRAME_BUFFER_ENABLE); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 179 | tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_PALETTE_LOAD_MODE(DATA_ONLY)); |
| 180 | tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ENABLE); |
Jyri Sarha | d85f850e | 2016-06-15 11:16:23 +0300 | [diff] [blame] | 181 | |
| 182 | drm_crtc_vblank_on(crtc); |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 183 | |
| 184 | tilcdc_crtc->enabled = true; |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 185 | mutex_unlock(&tilcdc_crtc->enable_lock); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 186 | } |
| 187 | |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 188 | static void tilcdc_crtc_off(struct drm_crtc *crtc, bool shutdown) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 189 | { |
Jyri Sarha | 2d5be88 | 2016-04-07 20:20:23 +0300 | [diff] [blame] | 190 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 191 | struct drm_device *dev = crtc->dev; |
Jyri Sarha | 2d5be88 | 2016-04-07 20:20:23 +0300 | [diff] [blame] | 192 | struct tilcdc_drm_private *priv = dev->dev_private; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 193 | |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 194 | mutex_lock(&tilcdc_crtc->enable_lock); |
| 195 | if (shutdown) |
| 196 | tilcdc_crtc->shutdown = true; |
| 197 | if (!tilcdc_crtc->enabled) { |
| 198 | mutex_unlock(&tilcdc_crtc->enable_lock); |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 199 | return; |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 200 | } |
Jyri Sarha | 2d5be88 | 2016-04-07 20:20:23 +0300 | [diff] [blame] | 201 | tilcdc_crtc->frame_done = false; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 202 | tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ENABLE); |
Jyri Sarha | 2d5be88 | 2016-04-07 20:20:23 +0300 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * if necessary wait for framedone irq which will still come |
| 206 | * before putting things to sleep.. |
| 207 | */ |
| 208 | if (priv->rev == 2) { |
| 209 | int ret = wait_event_timeout(tilcdc_crtc->frame_done_wq, |
| 210 | tilcdc_crtc->frame_done, |
Jyri Sarha | 437c7d9 | 2016-06-16 16:19:17 +0300 | [diff] [blame] | 211 | msecs_to_jiffies(500)); |
Jyri Sarha | 2d5be88 | 2016-04-07 20:20:23 +0300 | [diff] [blame] | 212 | if (ret == 0) |
| 213 | dev_err(dev->dev, "%s: timeout waiting for framedone\n", |
| 214 | __func__); |
| 215 | } |
Jyri Sarha | d85f850e | 2016-06-15 11:16:23 +0300 | [diff] [blame] | 216 | |
| 217 | drm_crtc_vblank_off(crtc); |
Jyri Sarha | afaf833 | 2016-06-21 16:00:44 +0300 | [diff] [blame] | 218 | |
| 219 | tilcdc_crtc_disable_irqs(dev); |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 220 | |
| 221 | pm_runtime_put_sync(dev->dev); |
| 222 | |
| 223 | if (tilcdc_crtc->next_fb) { |
| 224 | drm_flip_work_queue(&tilcdc_crtc->unref_work, |
| 225 | tilcdc_crtc->next_fb); |
| 226 | tilcdc_crtc->next_fb = NULL; |
| 227 | } |
| 228 | |
| 229 | if (tilcdc_crtc->curr_fb) { |
| 230 | drm_flip_work_queue(&tilcdc_crtc->unref_work, |
| 231 | tilcdc_crtc->curr_fb); |
| 232 | tilcdc_crtc->curr_fb = NULL; |
| 233 | } |
| 234 | |
| 235 | drm_flip_work_commit(&tilcdc_crtc->unref_work, priv->wq); |
| 236 | tilcdc_crtc->last_vblank = ktime_set(0, 0); |
| 237 | |
| 238 | tilcdc_crtc->enabled = false; |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 239 | mutex_unlock(&tilcdc_crtc->enable_lock); |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 240 | } |
| 241 | |
Jyri Sarha | 9e79e06 | 2016-10-18 23:23:27 +0300 | [diff] [blame] | 242 | static void tilcdc_crtc_disable(struct drm_crtc *crtc) |
| 243 | { |
| 244 | WARN_ON(!drm_modeset_is_locked(&crtc->mutex)); |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 245 | tilcdc_crtc_off(crtc, false); |
| 246 | } |
| 247 | |
| 248 | void tilcdc_crtc_shutdown(struct drm_crtc *crtc) |
| 249 | { |
| 250 | tilcdc_crtc_off(crtc, true); |
Jyri Sarha | 9e79e06 | 2016-10-18 23:23:27 +0300 | [diff] [blame] | 251 | } |
| 252 | |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 253 | static bool tilcdc_crtc_is_on(struct drm_crtc *crtc) |
| 254 | { |
| 255 | return crtc->state && crtc->state->enable && crtc->state->active; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 256 | } |
| 257 | |
Jyri Sarha | 13b3d72 | 2016-04-06 14:02:38 +0300 | [diff] [blame] | 258 | static void tilcdc_crtc_recover_work(struct work_struct *work) |
| 259 | { |
| 260 | struct tilcdc_crtc *tilcdc_crtc = |
| 261 | container_of(work, struct tilcdc_crtc, recover_work); |
| 262 | struct drm_crtc *crtc = &tilcdc_crtc->base; |
| 263 | |
| 264 | dev_info(crtc->dev->dev, "%s: Reset CRTC", __func__); |
| 265 | |
| 266 | drm_modeset_lock_crtc(crtc, NULL); |
| 267 | |
| 268 | if (!tilcdc_crtc_is_on(crtc)) |
| 269 | goto out; |
| 270 | |
| 271 | tilcdc_crtc_disable(crtc); |
| 272 | tilcdc_crtc_enable(crtc); |
| 273 | out: |
| 274 | drm_modeset_unlock_crtc(crtc); |
| 275 | } |
| 276 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 277 | static void tilcdc_crtc_destroy(struct drm_crtc *crtc) |
| 278 | { |
| 279 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
Jyri Sarha | 4e910c7 | 2016-09-06 22:55:33 +0300 | [diff] [blame] | 280 | struct tilcdc_drm_private *priv = crtc->dev->dev_private; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 281 | |
Jyri Sarha | 6c94c71 | 2016-09-07 11:46:40 +0300 | [diff] [blame] | 282 | drm_modeset_lock_crtc(crtc, NULL); |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 283 | tilcdc_crtc_disable(crtc); |
Jyri Sarha | 6c94c71 | 2016-09-07 11:46:40 +0300 | [diff] [blame] | 284 | drm_modeset_unlock_crtc(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 285 | |
Jyri Sarha | 4e910c7 | 2016-09-06 22:55:33 +0300 | [diff] [blame] | 286 | flush_workqueue(priv->wq); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 287 | |
Jyri Sarha | d66284fb | 2015-05-27 11:58:37 +0300 | [diff] [blame] | 288 | of_node_put(crtc->port); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 289 | drm_crtc_cleanup(crtc); |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 290 | drm_flip_work_cleanup(&tilcdc_crtc->unref_work); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 291 | } |
| 292 | |
Jyri Sarha | e0e344e | 2016-06-22 17:21:06 +0300 | [diff] [blame] | 293 | int tilcdc_crtc_update_fb(struct drm_crtc *crtc, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 294 | struct drm_framebuffer *fb, |
Jyri Sarha | e0e344e | 2016-06-22 17:21:06 +0300 | [diff] [blame] | 295 | struct drm_pending_vblank_event *event) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 296 | { |
| 297 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 298 | struct drm_device *dev = crtc->dev; |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 299 | unsigned long flags; |
Tomi Valkeinen | 6f206e9 | 2014-02-07 17:37:07 +0000 | [diff] [blame] | 300 | |
Jyri Sarha | 2e0965b | 2016-09-06 17:25:08 +0300 | [diff] [blame] | 301 | WARN_ON(!drm_modeset_is_locked(&crtc->mutex)); |
| 302 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 303 | if (tilcdc_crtc->event) { |
| 304 | dev_err(dev->dev, "already pending page flip!\n"); |
| 305 | return -EBUSY; |
| 306 | } |
| 307 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 308 | drm_framebuffer_reference(fb); |
| 309 | |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 310 | crtc->primary->fb = fb; |
Tomi Valkeinen | 65734a2 | 2015-10-19 12:30:03 +0300 | [diff] [blame] | 311 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 312 | spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags); |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 313 | |
Jyri Sarha | 0a1fe1b | 2016-06-13 09:53:36 +0300 | [diff] [blame] | 314 | if (crtc->hwmode.vrefresh && ktime_to_ns(tilcdc_crtc->last_vblank)) { |
| 315 | ktime_t next_vblank; |
| 316 | s64 tdiff; |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 317 | |
Jyri Sarha | 0a1fe1b | 2016-06-13 09:53:36 +0300 | [diff] [blame] | 318 | next_vblank = ktime_add_us(tilcdc_crtc->last_vblank, |
| 319 | 1000000 / crtc->hwmode.vrefresh); |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 320 | |
Jyri Sarha | 0a1fe1b | 2016-06-13 09:53:36 +0300 | [diff] [blame] | 321 | tdiff = ktime_to_us(ktime_sub(next_vblank, ktime_get())); |
| 322 | |
| 323 | if (tdiff < TILCDC_VBLANK_SAFETY_THRESHOLD_US) |
| 324 | tilcdc_crtc->next_fb = fb; |
| 325 | } |
| 326 | |
| 327 | if (tilcdc_crtc->next_fb != fb) |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 328 | set_scanout(crtc, fb); |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 329 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 330 | tilcdc_crtc->event = event; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 331 | |
| 332 | spin_unlock_irqrestore(&tilcdc_crtc->irq_lock, flags); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 333 | |
| 334 | return 0; |
| 335 | } |
| 336 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 337 | static bool tilcdc_crtc_mode_fixup(struct drm_crtc *crtc, |
| 338 | const struct drm_display_mode *mode, |
| 339 | struct drm_display_mode *adjusted_mode) |
| 340 | { |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 341 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 342 | |
| 343 | if (!tilcdc_crtc->simulate_vesa_sync) |
| 344 | return true; |
| 345 | |
| 346 | /* |
| 347 | * tilcdc does not generate VESA-compliant sync but aligns |
| 348 | * VS on the second edge of HS instead of first edge. |
| 349 | * We use adjusted_mode, to fixup sync by aligning both rising |
| 350 | * edges and add HSKEW offset to fix the sync. |
| 351 | */ |
| 352 | adjusted_mode->hskew = mode->hsync_end - mode->hsync_start; |
| 353 | adjusted_mode->flags |= DRM_MODE_FLAG_HSKEW; |
| 354 | |
| 355 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) { |
| 356 | adjusted_mode->flags |= DRM_MODE_FLAG_PHSYNC; |
| 357 | adjusted_mode->flags &= ~DRM_MODE_FLAG_NHSYNC; |
| 358 | } else { |
| 359 | adjusted_mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 360 | adjusted_mode->flags &= ~DRM_MODE_FLAG_PHSYNC; |
| 361 | } |
| 362 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 363 | return true; |
| 364 | } |
| 365 | |
Bartosz Golaszewski | cb42e20 | 2016-09-29 18:43:57 +0200 | [diff] [blame] | 366 | /* |
| 367 | * Calculate the percentage difference between the requested pixel clock rate |
| 368 | * and the effective rate resulting from calculating the clock divider value. |
| 369 | */ |
| 370 | static unsigned int tilcdc_pclk_diff(unsigned long rate, |
| 371 | unsigned long real_rate) |
| 372 | { |
| 373 | int r = rate / 100, rr = real_rate / 100; |
| 374 | |
| 375 | return (unsigned int)(abs(((rr - r) * 100) / r)); |
| 376 | } |
| 377 | |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 378 | static void tilcdc_crtc_set_clk(struct drm_crtc *crtc) |
| 379 | { |
| 380 | struct drm_device *dev = crtc->dev; |
| 381 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 382 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
Bartosz Golaszewski | cb42e20 | 2016-09-29 18:43:57 +0200 | [diff] [blame] | 383 | unsigned long clk_rate, real_rate, req_rate; |
| 384 | unsigned int clkdiv; |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 385 | int ret; |
| 386 | |
Bartosz Golaszewski | cb42e20 | 2016-09-29 18:43:57 +0200 | [diff] [blame] | 387 | clkdiv = 2; /* first try using a standard divider of 2 */ |
| 388 | |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 389 | /* mode.clock is in KHz, set_rate wants parameter in Hz */ |
Bartosz Golaszewski | cb42e20 | 2016-09-29 18:43:57 +0200 | [diff] [blame] | 390 | req_rate = crtc->mode.clock * 1000; |
| 391 | |
| 392 | ret = clk_set_rate(priv->clk, req_rate * clkdiv); |
| 393 | clk_rate = clk_get_rate(priv->clk); |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 394 | if (ret < 0) { |
Bartosz Golaszewski | cb42e20 | 2016-09-29 18:43:57 +0200 | [diff] [blame] | 395 | /* |
| 396 | * If we fail to set the clock rate (some architectures don't |
| 397 | * use the common clock framework yet and may not implement |
| 398 | * all the clk API calls for every clock), try the next best |
| 399 | * thing: adjusting the clock divider, unless clk_get_rate() |
| 400 | * failed as well. |
| 401 | */ |
| 402 | if (!clk_rate) { |
| 403 | /* Nothing more we can do. Just bail out. */ |
| 404 | dev_err(dev->dev, |
| 405 | "failed to set the pixel clock - unable to read current lcdc clock rate\n"); |
| 406 | return; |
| 407 | } |
| 408 | |
| 409 | clkdiv = DIV_ROUND_CLOSEST(clk_rate, req_rate); |
| 410 | |
| 411 | /* |
| 412 | * Emit a warning if the real clock rate resulting from the |
| 413 | * calculated divider differs much from the requested rate. |
| 414 | * |
| 415 | * 5% is an arbitrary value - LCDs are usually quite tolerant |
| 416 | * about pixel clock rates. |
| 417 | */ |
| 418 | real_rate = clkdiv * req_rate; |
| 419 | |
| 420 | if (tilcdc_pclk_diff(clk_rate, real_rate) > 5) { |
| 421 | dev_warn(dev->dev, |
| 422 | "effective pixel clock rate (%luHz) differs from the calculated rate (%luHz)\n", |
| 423 | clk_rate, real_rate); |
| 424 | } |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 425 | } |
| 426 | |
Bartosz Golaszewski | cb42e20 | 2016-09-29 18:43:57 +0200 | [diff] [blame] | 427 | tilcdc_crtc->lcd_fck_rate = clk_rate; |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 428 | |
| 429 | DBG("lcd_clk=%u, mode clock=%d, div=%u", |
| 430 | tilcdc_crtc->lcd_fck_rate, crtc->mode.clock, clkdiv); |
| 431 | |
| 432 | /* Configure the LCD clock divisor. */ |
| 433 | tilcdc_write(dev, LCDC_CTRL_REG, LCDC_CLK_DIVISOR(clkdiv) | |
| 434 | LCDC_RASTER_MODE); |
| 435 | |
| 436 | if (priv->rev == 2) |
| 437 | tilcdc_set(dev, LCDC_CLK_ENABLE_REG, |
| 438 | LCDC_V2_DMA_CLK_EN | LCDC_V2_LIDD_CLK_EN | |
| 439 | LCDC_V2_CORE_CLK_EN); |
| 440 | } |
| 441 | |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 442 | static void tilcdc_crtc_mode_set_nofb(struct drm_crtc *crtc) |
| 443 | { |
| 444 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 445 | struct drm_device *dev = crtc->dev; |
| 446 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 447 | const struct tilcdc_panel_info *info = tilcdc_crtc->info; |
| 448 | uint32_t reg, hbp, hfp, hsw, vbp, vfp, vsw; |
| 449 | struct drm_display_mode *mode = &crtc->state->adjusted_mode; |
| 450 | struct drm_framebuffer *fb = crtc->primary->state->fb; |
| 451 | |
Jyri Sarha | 2e0965b | 2016-09-06 17:25:08 +0300 | [diff] [blame] | 452 | WARN_ON(!drm_modeset_is_locked(&crtc->mutex)); |
| 453 | |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 454 | if (WARN_ON(!info)) |
| 455 | return; |
| 456 | |
| 457 | if (WARN_ON(!fb)) |
| 458 | return; |
| 459 | |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 460 | /* Configure the Burst Size and fifo threshold of DMA: */ |
| 461 | reg = tilcdc_read(dev, LCDC_DMA_CTRL_REG) & ~0x00000770; |
| 462 | switch (info->dma_burst_sz) { |
| 463 | case 1: |
| 464 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_1); |
| 465 | break; |
| 466 | case 2: |
| 467 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_2); |
| 468 | break; |
| 469 | case 4: |
| 470 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_4); |
| 471 | break; |
| 472 | case 8: |
| 473 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_8); |
| 474 | break; |
| 475 | case 16: |
| 476 | reg |= LCDC_DMA_BURST_SIZE(LCDC_DMA_BURST_16); |
| 477 | break; |
| 478 | default: |
| 479 | dev_err(dev->dev, "invalid burst size\n"); |
| 480 | return; |
| 481 | } |
| 482 | reg |= (info->fifo_th << 8); |
| 483 | tilcdc_write(dev, LCDC_DMA_CTRL_REG, reg); |
| 484 | |
| 485 | /* Configure timings: */ |
| 486 | hbp = mode->htotal - mode->hsync_end; |
| 487 | hfp = mode->hsync_start - mode->hdisplay; |
| 488 | hsw = mode->hsync_end - mode->hsync_start; |
| 489 | vbp = mode->vtotal - mode->vsync_end; |
| 490 | vfp = mode->vsync_start - mode->vdisplay; |
| 491 | vsw = mode->vsync_end - mode->vsync_start; |
| 492 | |
| 493 | DBG("%dx%d, hbp=%u, hfp=%u, hsw=%u, vbp=%u, vfp=%u, vsw=%u", |
| 494 | mode->hdisplay, mode->vdisplay, hbp, hfp, hsw, vbp, vfp, vsw); |
| 495 | |
| 496 | /* Set AC Bias Period and Number of Transitions per Interrupt: */ |
| 497 | reg = tilcdc_read(dev, LCDC_RASTER_TIMING_2_REG) & ~0x000fff00; |
| 498 | reg |= LCDC_AC_BIAS_FREQUENCY(info->ac_bias) | |
| 499 | LCDC_AC_BIAS_TRANSITIONS_PER_INT(info->ac_bias_intrpt); |
| 500 | |
| 501 | /* |
| 502 | * subtract one from hfp, hbp, hsw because the hardware uses |
| 503 | * a value of 0 as 1 |
| 504 | */ |
| 505 | if (priv->rev == 2) { |
| 506 | /* clear bits we're going to set */ |
| 507 | reg &= ~0x78000033; |
| 508 | reg |= ((hfp-1) & 0x300) >> 8; |
| 509 | reg |= ((hbp-1) & 0x300) >> 4; |
| 510 | reg |= ((hsw-1) & 0x3c0) << 21; |
| 511 | } |
| 512 | tilcdc_write(dev, LCDC_RASTER_TIMING_2_REG, reg); |
| 513 | |
| 514 | reg = (((mode->hdisplay >> 4) - 1) << 4) | |
| 515 | (((hbp-1) & 0xff) << 24) | |
| 516 | (((hfp-1) & 0xff) << 16) | |
| 517 | (((hsw-1) & 0x3f) << 10); |
| 518 | if (priv->rev == 2) |
| 519 | reg |= (((mode->hdisplay >> 4) - 1) & 0x40) >> 3; |
| 520 | tilcdc_write(dev, LCDC_RASTER_TIMING_0_REG, reg); |
| 521 | |
| 522 | reg = ((mode->vdisplay - 1) & 0x3ff) | |
| 523 | ((vbp & 0xff) << 24) | |
| 524 | ((vfp & 0xff) << 16) | |
| 525 | (((vsw-1) & 0x3f) << 10); |
| 526 | tilcdc_write(dev, LCDC_RASTER_TIMING_1_REG, reg); |
| 527 | |
| 528 | /* |
| 529 | * be sure to set Bit 10 for the V2 LCDC controller, |
| 530 | * otherwise limited to 1024 pixels width, stopping |
| 531 | * 1920x1080 being supported. |
| 532 | */ |
| 533 | if (priv->rev == 2) { |
| 534 | if ((mode->vdisplay - 1) & 0x400) { |
| 535 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, |
| 536 | LCDC_LPP_B10); |
| 537 | } else { |
| 538 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, |
| 539 | LCDC_LPP_B10); |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | /* Configure display type: */ |
| 544 | reg = tilcdc_read(dev, LCDC_RASTER_CTRL_REG) & |
| 545 | ~(LCDC_TFT_MODE | LCDC_MONO_8BIT_MODE | LCDC_MONOCHROME_MODE | |
| 546 | LCDC_V2_TFT_24BPP_MODE | LCDC_V2_TFT_24BPP_UNPACK | |
| 547 | 0x000ff000 /* Palette Loading Delay bits */); |
| 548 | reg |= LCDC_TFT_MODE; /* no monochrome/passive support */ |
| 549 | if (info->tft_alt_mode) |
| 550 | reg |= LCDC_TFT_ALT_ENABLE; |
| 551 | if (priv->rev == 2) { |
Laurent Pinchart | 59f11a4 | 2016-10-18 01:41:14 +0300 | [diff] [blame] | 552 | switch (fb->pixel_format) { |
| 553 | case DRM_FORMAT_BGR565: |
| 554 | case DRM_FORMAT_RGB565: |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 555 | break; |
Laurent Pinchart | 59f11a4 | 2016-10-18 01:41:14 +0300 | [diff] [blame] | 556 | case DRM_FORMAT_XBGR8888: |
| 557 | case DRM_FORMAT_XRGB8888: |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 558 | reg |= LCDC_V2_TFT_24BPP_UNPACK; |
| 559 | /* fallthrough */ |
Laurent Pinchart | 59f11a4 | 2016-10-18 01:41:14 +0300 | [diff] [blame] | 560 | case DRM_FORMAT_BGR888: |
| 561 | case DRM_FORMAT_RGB888: |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 562 | reg |= LCDC_V2_TFT_24BPP_MODE; |
| 563 | break; |
| 564 | default: |
| 565 | dev_err(dev->dev, "invalid pixel format\n"); |
| 566 | return; |
| 567 | } |
| 568 | } |
| 569 | reg |= info->fdd < 12; |
| 570 | tilcdc_write(dev, LCDC_RASTER_CTRL_REG, reg); |
| 571 | |
| 572 | if (info->invert_pxl_clk) |
| 573 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_PIXEL_CLOCK); |
| 574 | else |
| 575 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_PIXEL_CLOCK); |
| 576 | |
| 577 | if (info->sync_ctrl) |
| 578 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_CTRL); |
| 579 | else |
| 580 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_CTRL); |
| 581 | |
| 582 | if (info->sync_edge) |
| 583 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_EDGE); |
| 584 | else |
| 585 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_SYNC_EDGE); |
| 586 | |
| 587 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) |
| 588 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_HSYNC); |
| 589 | else |
| 590 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_HSYNC); |
| 591 | |
| 592 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 593 | tilcdc_set(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_VSYNC); |
| 594 | else |
| 595 | tilcdc_clear(dev, LCDC_RASTER_TIMING_2_REG, LCDC_INVERT_VSYNC); |
| 596 | |
| 597 | if (info->raster_order) |
| 598 | tilcdc_set(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ORDER); |
| 599 | else |
| 600 | tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, LCDC_RASTER_ORDER); |
| 601 | |
| 602 | drm_framebuffer_reference(fb); |
| 603 | |
| 604 | set_scanout(crtc, fb); |
| 605 | |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 606 | tilcdc_crtc_set_clk(crtc); |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 607 | |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 608 | crtc->hwmode = crtc->state->adjusted_mode; |
| 609 | } |
| 610 | |
Jyri Sarha | db380c5 | 2016-04-07 15:10:23 +0300 | [diff] [blame] | 611 | static int tilcdc_crtc_atomic_check(struct drm_crtc *crtc, |
| 612 | struct drm_crtc_state *state) |
| 613 | { |
| 614 | struct drm_display_mode *mode = &state->mode; |
| 615 | int ret; |
| 616 | |
| 617 | /* If we are not active we don't care */ |
| 618 | if (!state->active) |
| 619 | return 0; |
| 620 | |
| 621 | if (state->state->planes[0].ptr != crtc->primary || |
| 622 | state->state->planes[0].state == NULL || |
| 623 | state->state->planes[0].state->crtc != crtc) { |
| 624 | dev_dbg(crtc->dev->dev, "CRTC primary plane must be present"); |
| 625 | return -EINVAL; |
| 626 | } |
| 627 | |
| 628 | ret = tilcdc_crtc_mode_valid(crtc, mode); |
| 629 | if (ret) { |
| 630 | dev_dbg(crtc->dev->dev, "Mode \"%s\" not valid", mode->name); |
| 631 | return -EINVAL; |
| 632 | } |
| 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 637 | static const struct drm_crtc_funcs tilcdc_crtc_funcs = { |
Jyri Sarha | 305198d | 2016-04-07 15:05:16 +0300 | [diff] [blame] | 638 | .destroy = tilcdc_crtc_destroy, |
| 639 | .set_config = drm_atomic_helper_set_config, |
| 640 | .page_flip = drm_atomic_helper_page_flip, |
| 641 | .reset = drm_atomic_helper_crtc_reset, |
| 642 | .atomic_duplicate_state = drm_atomic_helper_crtc_duplicate_state, |
| 643 | .atomic_destroy_state = drm_atomic_helper_crtc_destroy_state, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 644 | }; |
| 645 | |
| 646 | static const struct drm_crtc_helper_funcs tilcdc_crtc_helper_funcs = { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 647 | .mode_fixup = tilcdc_crtc_mode_fixup, |
Jyri Sarha | 305198d | 2016-04-07 15:05:16 +0300 | [diff] [blame] | 648 | .enable = tilcdc_crtc_enable, |
| 649 | .disable = tilcdc_crtc_disable, |
Jyri Sarha | db380c5 | 2016-04-07 15:10:23 +0300 | [diff] [blame] | 650 | .atomic_check = tilcdc_crtc_atomic_check, |
Jyri Sarha | f6382f1 | 2016-04-07 15:09:50 +0300 | [diff] [blame] | 651 | .mode_set_nofb = tilcdc_crtc_mode_set_nofb, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 652 | }; |
| 653 | |
| 654 | int tilcdc_crtc_max_width(struct drm_crtc *crtc) |
| 655 | { |
| 656 | struct drm_device *dev = crtc->dev; |
| 657 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 658 | int max_width = 0; |
| 659 | |
| 660 | if (priv->rev == 1) |
| 661 | max_width = 1024; |
| 662 | else if (priv->rev == 2) |
| 663 | max_width = 2048; |
| 664 | |
| 665 | return max_width; |
| 666 | } |
| 667 | |
| 668 | int tilcdc_crtc_mode_valid(struct drm_crtc *crtc, struct drm_display_mode *mode) |
| 669 | { |
| 670 | struct tilcdc_drm_private *priv = crtc->dev->dev_private; |
| 671 | unsigned int bandwidth; |
Darren Etheridge | e1c5d0a | 2013-06-21 13:52:25 -0500 | [diff] [blame] | 672 | uint32_t hbp, hfp, hsw, vbp, vfp, vsw; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 673 | |
Darren Etheridge | e1c5d0a | 2013-06-21 13:52:25 -0500 | [diff] [blame] | 674 | /* |
| 675 | * check to see if the width is within the range that |
| 676 | * the LCD Controller physically supports |
| 677 | */ |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 678 | if (mode->hdisplay > tilcdc_crtc_max_width(crtc)) |
| 679 | return MODE_VIRTUAL_X; |
| 680 | |
| 681 | /* width must be multiple of 16 */ |
| 682 | if (mode->hdisplay & 0xf) |
| 683 | return MODE_VIRTUAL_X; |
| 684 | |
| 685 | if (mode->vdisplay > 2048) |
| 686 | return MODE_VIRTUAL_Y; |
| 687 | |
Darren Etheridge | e1c5d0a | 2013-06-21 13:52:25 -0500 | [diff] [blame] | 688 | DBG("Processing mode %dx%d@%d with pixel clock %d", |
| 689 | mode->hdisplay, mode->vdisplay, |
| 690 | drm_mode_vrefresh(mode), mode->clock); |
| 691 | |
| 692 | hbp = mode->htotal - mode->hsync_end; |
| 693 | hfp = mode->hsync_start - mode->hdisplay; |
| 694 | hsw = mode->hsync_end - mode->hsync_start; |
| 695 | vbp = mode->vtotal - mode->vsync_end; |
| 696 | vfp = mode->vsync_start - mode->vdisplay; |
| 697 | vsw = mode->vsync_end - mode->vsync_start; |
| 698 | |
| 699 | if ((hbp-1) & ~0x3ff) { |
| 700 | DBG("Pruning mode: Horizontal Back Porch out of range"); |
| 701 | return MODE_HBLANK_WIDE; |
| 702 | } |
| 703 | |
| 704 | if ((hfp-1) & ~0x3ff) { |
| 705 | DBG("Pruning mode: Horizontal Front Porch out of range"); |
| 706 | return MODE_HBLANK_WIDE; |
| 707 | } |
| 708 | |
| 709 | if ((hsw-1) & ~0x3ff) { |
| 710 | DBG("Pruning mode: Horizontal Sync Width out of range"); |
| 711 | return MODE_HSYNC_WIDE; |
| 712 | } |
| 713 | |
| 714 | if (vbp & ~0xff) { |
| 715 | DBG("Pruning mode: Vertical Back Porch out of range"); |
| 716 | return MODE_VBLANK_WIDE; |
| 717 | } |
| 718 | |
| 719 | if (vfp & ~0xff) { |
| 720 | DBG("Pruning mode: Vertical Front Porch out of range"); |
| 721 | return MODE_VBLANK_WIDE; |
| 722 | } |
| 723 | |
| 724 | if ((vsw-1) & ~0x3f) { |
| 725 | DBG("Pruning mode: Vertical Sync Width out of range"); |
| 726 | return MODE_VSYNC_WIDE; |
| 727 | } |
| 728 | |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 729 | /* |
| 730 | * some devices have a maximum allowed pixel clock |
| 731 | * configured from the DT |
| 732 | */ |
| 733 | if (mode->clock > priv->max_pixelclock) { |
Darren Etheridge | f7b4575 | 2013-06-21 13:52:26 -0500 | [diff] [blame] | 734 | DBG("Pruning mode: pixel clock too high"); |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 735 | return MODE_CLOCK_HIGH; |
| 736 | } |
| 737 | |
| 738 | /* |
| 739 | * some devices further limit the max horizontal resolution |
| 740 | * configured from the DT |
| 741 | */ |
| 742 | if (mode->hdisplay > priv->max_width) |
| 743 | return MODE_BAD_WIDTH; |
| 744 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 745 | /* filter out modes that would require too much memory bandwidth: */ |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 746 | bandwidth = mode->hdisplay * mode->vdisplay * |
| 747 | drm_mode_vrefresh(mode); |
| 748 | if (bandwidth > priv->max_bandwidth) { |
Darren Etheridge | f7b4575 | 2013-06-21 13:52:26 -0500 | [diff] [blame] | 749 | DBG("Pruning mode: exceeds defined bandwidth limit"); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 750 | return MODE_BAD; |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 751 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 752 | |
| 753 | return MODE_OK; |
| 754 | } |
| 755 | |
| 756 | void tilcdc_crtc_set_panel_info(struct drm_crtc *crtc, |
| 757 | const struct tilcdc_panel_info *info) |
| 758 | { |
| 759 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 760 | tilcdc_crtc->info = info; |
| 761 | } |
| 762 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 763 | void tilcdc_crtc_set_simulate_vesa_sync(struct drm_crtc *crtc, |
| 764 | bool simulate_vesa_sync) |
| 765 | { |
| 766 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 767 | |
| 768 | tilcdc_crtc->simulate_vesa_sync = simulate_vesa_sync; |
| 769 | } |
| 770 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 771 | void tilcdc_crtc_update_clk(struct drm_crtc *crtc) |
| 772 | { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 773 | struct drm_device *dev = crtc->dev; |
| 774 | struct tilcdc_drm_private *priv = dev->dev_private; |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 775 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 776 | |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 777 | drm_modeset_lock_crtc(crtc, NULL); |
| 778 | if (tilcdc_crtc->lcd_fck_rate != clk_get_rate(priv->clk)) { |
| 779 | if (tilcdc_crtc_is_on(crtc)) { |
| 780 | pm_runtime_get_sync(dev->dev); |
| 781 | tilcdc_crtc_disable(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 782 | |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 783 | tilcdc_crtc_set_clk(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 784 | |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 785 | tilcdc_crtc_enable(crtc); |
| 786 | pm_runtime_put_sync(dev->dev); |
| 787 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 788 | } |
Jyri Sarha | 642e516 | 2016-09-06 16:19:54 +0300 | [diff] [blame] | 789 | drm_modeset_unlock_crtc(crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 790 | } |
| 791 | |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 792 | #define SYNC_LOST_COUNT_LIMIT 50 |
| 793 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 794 | irqreturn_t tilcdc_crtc_irq(struct drm_crtc *crtc) |
| 795 | { |
| 796 | struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc); |
| 797 | struct drm_device *dev = crtc->dev; |
| 798 | struct tilcdc_drm_private *priv = dev->dev_private; |
Tomi Valkeinen | 317aae7 | 2015-10-20 12:08:03 +0300 | [diff] [blame] | 799 | uint32_t stat; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 800 | |
Tomi Valkeinen | 317aae7 | 2015-10-20 12:08:03 +0300 | [diff] [blame] | 801 | stat = tilcdc_read_irqstatus(dev); |
| 802 | tilcdc_clear_irqstatus(dev, stat); |
| 803 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 804 | if (stat & LCDC_END_OF_FRAME0) { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 805 | unsigned long flags; |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 806 | bool skip_event = false; |
| 807 | ktime_t now; |
| 808 | |
| 809 | now = ktime_get(); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 810 | |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 811 | drm_flip_work_commit(&tilcdc_crtc->unref_work, priv->wq); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 812 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 813 | spin_lock_irqsave(&tilcdc_crtc->irq_lock, flags); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 814 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 815 | tilcdc_crtc->last_vblank = now; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 816 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 817 | if (tilcdc_crtc->next_fb) { |
| 818 | set_scanout(crtc, tilcdc_crtc->next_fb); |
| 819 | tilcdc_crtc->next_fb = NULL; |
| 820 | skip_event = true; |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 821 | } |
| 822 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 823 | spin_unlock_irqrestore(&tilcdc_crtc->irq_lock, flags); |
| 824 | |
Gustavo Padovan | 099ede8 | 2016-07-04 21:04:52 -0300 | [diff] [blame] | 825 | drm_crtc_handle_vblank(crtc); |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 826 | |
| 827 | if (!skip_event) { |
| 828 | struct drm_pending_vblank_event *event; |
| 829 | |
| 830 | spin_lock_irqsave(&dev->event_lock, flags); |
| 831 | |
| 832 | event = tilcdc_crtc->event; |
| 833 | tilcdc_crtc->event = NULL; |
| 834 | if (event) |
Gustavo Padovan | dfebc15 | 2016-04-14 10:48:22 -0700 | [diff] [blame] | 835 | drm_crtc_send_vblank_event(crtc, event); |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 836 | |
| 837 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 838 | } |
Jyri Sarha | 5895d08 | 2016-01-08 14:33:09 +0200 | [diff] [blame] | 839 | |
| 840 | if (tilcdc_crtc->frame_intact) |
| 841 | tilcdc_crtc->sync_lost_count = 0; |
| 842 | else |
| 843 | tilcdc_crtc->frame_intact = true; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 844 | } |
| 845 | |
Jyri Sarha | 1494411 | 2016-04-07 20:36:48 +0300 | [diff] [blame] | 846 | if (stat & LCDC_FIFO_UNDERFLOW) |
Daniel Schultz | d701453 | 2016-10-28 13:52:42 +0200 | [diff] [blame] | 847 | dev_err_ratelimited(dev->dev, "%s(0x%08x): FIFO underflow", |
Jyri Sarha | 1494411 | 2016-04-07 20:36:48 +0300 | [diff] [blame] | 848 | __func__, stat); |
| 849 | |
Jyri Sarha | cba8844 | 2016-11-16 00:12:27 +0200 | [diff] [blame^] | 850 | if (stat & LCDC_SYNC_LOST) { |
| 851 | dev_err_ratelimited(dev->dev, "%s(0x%08x): Sync lost", |
| 852 | __func__, stat); |
| 853 | tilcdc_crtc->frame_intact = false; |
| 854 | if (tilcdc_crtc->sync_lost_count++ > |
| 855 | SYNC_LOST_COUNT_LIMIT) { |
| 856 | dev_err(dev->dev, "%s(0x%08x): Sync lost flood detected, recovering", __func__, stat); |
| 857 | queue_work(system_wq, &tilcdc_crtc->recover_work); |
| 858 | if (priv->rev == 1) |
| 859 | tilcdc_clear(dev, LCDC_RASTER_CTRL_REG, |
| 860 | LCDC_V1_SYNC_LOST_INT_ENA); |
| 861 | else |
| 862 | tilcdc_write(dev, LCDC_INT_ENABLE_CLR_REG, |
| 863 | LCDC_SYNC_LOST); |
| 864 | tilcdc_crtc->sync_lost_count = 0; |
| 865 | } |
| 866 | } |
| 867 | |
Jyri Sarha | 1494411 | 2016-04-07 20:36:48 +0300 | [diff] [blame] | 868 | /* For revision 2 only */ |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 869 | if (priv->rev == 2) { |
| 870 | if (stat & LCDC_FRAME_DONE) { |
| 871 | tilcdc_crtc->frame_done = true; |
| 872 | wake_up(&tilcdc_crtc->frame_done_wq); |
| 873 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 874 | |
Jyri Sarha | 1494411 | 2016-04-07 20:36:48 +0300 | [diff] [blame] | 875 | /* Indicate to LCDC that the interrupt service routine has |
| 876 | * completed, see 13.3.6.1.6 in AM335x TRM. |
| 877 | */ |
| 878 | tilcdc_write(dev, LCDC_END_OF_INT_IND_REG, 0); |
| 879 | } |
Jyri Sarha | c0c2baa | 2015-12-18 13:07:52 +0200 | [diff] [blame] | 880 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 881 | return IRQ_HANDLED; |
| 882 | } |
| 883 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 884 | struct drm_crtc *tilcdc_crtc_create(struct drm_device *dev) |
| 885 | { |
Jyri Sarha | d66284fb | 2015-05-27 11:58:37 +0300 | [diff] [blame] | 886 | struct tilcdc_drm_private *priv = dev->dev_private; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 887 | struct tilcdc_crtc *tilcdc_crtc; |
| 888 | struct drm_crtc *crtc; |
| 889 | int ret; |
| 890 | |
Jyri Sarha | d0ec32c | 2016-02-23 12:44:27 +0200 | [diff] [blame] | 891 | tilcdc_crtc = devm_kzalloc(dev->dev, sizeof(*tilcdc_crtc), GFP_KERNEL); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 892 | if (!tilcdc_crtc) { |
| 893 | dev_err(dev->dev, "allocation failed\n"); |
| 894 | return NULL; |
| 895 | } |
| 896 | |
| 897 | crtc = &tilcdc_crtc->base; |
| 898 | |
Jyri Sarha | 47f571c | 2016-04-07 15:04:18 +0300 | [diff] [blame] | 899 | ret = tilcdc_plane_init(dev, &tilcdc_crtc->primary); |
| 900 | if (ret < 0) |
| 901 | goto fail; |
| 902 | |
Jyri Sarha | 2d53a18 | 2016-10-25 12:27:31 +0300 | [diff] [blame] | 903 | mutex_init(&tilcdc_crtc->enable_lock); |
| 904 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 905 | init_waitqueue_head(&tilcdc_crtc->frame_done_wq); |
| 906 | |
Boris BREZILLON | d7f8db5 | 2014-11-14 19:30:30 +0100 | [diff] [blame] | 907 | drm_flip_work_init(&tilcdc_crtc->unref_work, |
Rob Clark | a464d61 | 2013-08-07 13:41:20 -0400 | [diff] [blame] | 908 | "unref", unref_worker); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 909 | |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 910 | spin_lock_init(&tilcdc_crtc->irq_lock); |
Jyri Sarha | 13b3d72 | 2016-04-06 14:02:38 +0300 | [diff] [blame] | 911 | INIT_WORK(&tilcdc_crtc->recover_work, tilcdc_crtc_recover_work); |
Tomi Valkeinen | 2b3a8cd | 2015-11-03 12:00:51 +0200 | [diff] [blame] | 912 | |
Jyri Sarha | 47f571c | 2016-04-07 15:04:18 +0300 | [diff] [blame] | 913 | ret = drm_crtc_init_with_planes(dev, crtc, |
| 914 | &tilcdc_crtc->primary, |
| 915 | NULL, |
| 916 | &tilcdc_crtc_funcs, |
| 917 | "tilcdc crtc"); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 918 | if (ret < 0) |
| 919 | goto fail; |
| 920 | |
| 921 | drm_crtc_helper_add(crtc, &tilcdc_crtc_helper_funcs); |
| 922 | |
Jyri Sarha | d66284fb | 2015-05-27 11:58:37 +0300 | [diff] [blame] | 923 | if (priv->is_componentized) { |
| 924 | struct device_node *ports = |
| 925 | of_get_child_by_name(dev->dev->of_node, "ports"); |
| 926 | |
| 927 | if (ports) { |
| 928 | crtc->port = of_get_child_by_name(ports, "port"); |
| 929 | of_node_put(ports); |
| 930 | } else { |
| 931 | crtc->port = |
| 932 | of_get_child_by_name(dev->dev->of_node, "port"); |
| 933 | } |
| 934 | if (!crtc->port) { /* This should never happen */ |
| 935 | dev_err(dev->dev, "Port node not found in %s\n", |
| 936 | dev->dev->of_node->full_name); |
| 937 | goto fail; |
| 938 | } |
| 939 | } |
| 940 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 941 | return crtc; |
| 942 | |
| 943 | fail: |
| 944 | tilcdc_crtc_destroy(crtc); |
| 945 | return NULL; |
| 946 | } |