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