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 | |
| 18 | /* LCDC DRM driver, based on da8xx-fb */ |
| 19 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 20 | #include <linux/component.h> |
Dave Gerlach | 416a07f | 2014-07-29 06:27:58 +0000 | [diff] [blame] | 21 | #include <linux/pinctrl/consumer.h> |
| 22 | #include <linux/suspend.h> |
Jyri Sarha | edc4330 | 2015-12-30 17:40:24 +0200 | [diff] [blame] | 23 | #include <drm/drm_atomic.h> |
| 24 | #include <drm/drm_atomic_helper.h> |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 25 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 26 | #include "tilcdc_drv.h" |
| 27 | #include "tilcdc_regs.h" |
| 28 | #include "tilcdc_tfp410.h" |
Rob Clark | 0d4bbaf | 2012-12-18 17:34:16 -0600 | [diff] [blame] | 29 | #include "tilcdc_panel.h" |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 30 | #include "tilcdc_external.h" |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 31 | |
| 32 | #include "drm_fb_helper.h" |
| 33 | |
| 34 | static LIST_HEAD(module_list); |
| 35 | |
Jyri Sarha | bcc5a6f | 2016-08-11 19:09:43 +0300 | [diff] [blame] | 36 | static const u32 tilcdc_rev1_formats[] = { DRM_FORMAT_RGB565 }; |
| 37 | |
| 38 | static const u32 tilcdc_straight_formats[] = { DRM_FORMAT_RGB565, |
| 39 | DRM_FORMAT_BGR888, |
| 40 | DRM_FORMAT_XBGR8888 }; |
| 41 | |
| 42 | static const u32 tilcdc_crossed_formats[] = { DRM_FORMAT_BGR565, |
| 43 | DRM_FORMAT_RGB888, |
| 44 | DRM_FORMAT_XRGB8888 }; |
| 45 | |
| 46 | static const u32 tilcdc_legacy_formats[] = { DRM_FORMAT_RGB565, |
| 47 | DRM_FORMAT_RGB888, |
| 48 | DRM_FORMAT_XRGB8888 }; |
| 49 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 50 | void tilcdc_module_init(struct tilcdc_module *mod, const char *name, |
| 51 | const struct tilcdc_module_ops *funcs) |
| 52 | { |
| 53 | mod->name = name; |
| 54 | mod->funcs = funcs; |
| 55 | INIT_LIST_HEAD(&mod->list); |
| 56 | list_add(&mod->list, &module_list); |
| 57 | } |
| 58 | |
| 59 | void tilcdc_module_cleanup(struct tilcdc_module *mod) |
| 60 | { |
| 61 | list_del(&mod->list); |
| 62 | } |
| 63 | |
| 64 | static struct of_device_id tilcdc_of_match[]; |
| 65 | |
| 66 | static struct drm_framebuffer *tilcdc_fb_create(struct drm_device *dev, |
Ville Syrjälä | 1eb8345 | 2015-11-11 19:11:29 +0200 | [diff] [blame] | 67 | struct drm_file *file_priv, const struct drm_mode_fb_cmd2 *mode_cmd) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 68 | { |
| 69 | return drm_fb_cma_create(dev, file_priv, mode_cmd); |
| 70 | } |
| 71 | |
| 72 | static void tilcdc_fb_output_poll_changed(struct drm_device *dev) |
| 73 | { |
| 74 | struct tilcdc_drm_private *priv = dev->dev_private; |
Markus Elfring | c0844817 | 2014-11-19 17:05:20 +0100 | [diff] [blame] | 75 | drm_fbdev_cma_hotplug_event(priv->fbdev); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 76 | } |
| 77 | |
Jyri Sarha | edc4330 | 2015-12-30 17:40:24 +0200 | [diff] [blame] | 78 | int tilcdc_atomic_check(struct drm_device *dev, |
| 79 | struct drm_atomic_state *state) |
| 80 | { |
| 81 | int ret; |
| 82 | |
| 83 | ret = drm_atomic_helper_check_modeset(dev, state); |
| 84 | if (ret) |
| 85 | return ret; |
| 86 | |
| 87 | ret = drm_atomic_helper_check_planes(dev, state); |
| 88 | if (ret) |
| 89 | return ret; |
| 90 | |
| 91 | /* |
| 92 | * tilcdc ->atomic_check can update ->mode_changed if pixel format |
| 93 | * changes, hence will we check modeset changes again. |
| 94 | */ |
| 95 | ret = drm_atomic_helper_check_modeset(dev, state); |
| 96 | if (ret) |
| 97 | return ret; |
| 98 | |
| 99 | return ret; |
| 100 | } |
| 101 | |
| 102 | static int tilcdc_commit(struct drm_device *dev, |
| 103 | struct drm_atomic_state *state, |
| 104 | bool async) |
| 105 | { |
| 106 | int ret; |
| 107 | |
| 108 | ret = drm_atomic_helper_prepare_planes(dev, state); |
| 109 | if (ret) |
| 110 | return ret; |
| 111 | |
| 112 | drm_atomic_helper_swap_state(state, true); |
| 113 | |
| 114 | /* |
| 115 | * Everything below can be run asynchronously without the need to grab |
| 116 | * any modeset locks at all under one condition: It must be guaranteed |
| 117 | * that the asynchronous work has either been cancelled (if the driver |
| 118 | * supports it, which at least requires that the framebuffers get |
| 119 | * cleaned up with drm_atomic_helper_cleanup_planes()) or completed |
| 120 | * before the new state gets committed on the software side with |
| 121 | * drm_atomic_helper_swap_state(). |
| 122 | * |
| 123 | * This scheme allows new atomic state updates to be prepared and |
| 124 | * checked in parallel to the asynchronous completion of the previous |
| 125 | * update. Which is important since compositors need to figure out the |
| 126 | * composition of the next frame right after having submitted the |
| 127 | * current layout. |
| 128 | */ |
| 129 | |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 130 | /* Keep HW on while we commit the state. */ |
| 131 | pm_runtime_get_sync(dev->dev); |
| 132 | |
Jyri Sarha | edc4330 | 2015-12-30 17:40:24 +0200 | [diff] [blame] | 133 | drm_atomic_helper_commit_modeset_disables(dev, state); |
| 134 | |
Liu Ying | 2b58e98 | 2016-08-29 17:12:03 +0800 | [diff] [blame] | 135 | drm_atomic_helper_commit_planes(dev, state, 0); |
Jyri Sarha | edc4330 | 2015-12-30 17:40:24 +0200 | [diff] [blame] | 136 | |
| 137 | drm_atomic_helper_commit_modeset_enables(dev, state); |
| 138 | |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 139 | /* Now HW should remain on if need becase the crtc is enabled */ |
| 140 | pm_runtime_put_sync(dev->dev); |
| 141 | |
Jyri Sarha | edc4330 | 2015-12-30 17:40:24 +0200 | [diff] [blame] | 142 | drm_atomic_helper_wait_for_vblanks(dev, state); |
| 143 | |
| 144 | drm_atomic_helper_cleanup_planes(dev, state); |
| 145 | |
| 146 | drm_atomic_state_free(state); |
| 147 | |
| 148 | return 0; |
| 149 | } |
| 150 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 151 | static const struct drm_mode_config_funcs mode_config_funcs = { |
| 152 | .fb_create = tilcdc_fb_create, |
| 153 | .output_poll_changed = tilcdc_fb_output_poll_changed, |
Jyri Sarha | edc4330 | 2015-12-30 17:40:24 +0200 | [diff] [blame] | 154 | .atomic_check = tilcdc_atomic_check, |
| 155 | .atomic_commit = tilcdc_commit, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | static int modeset_init(struct drm_device *dev) |
| 159 | { |
| 160 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 161 | struct tilcdc_module *mod; |
| 162 | |
| 163 | drm_mode_config_init(dev); |
| 164 | |
| 165 | priv->crtc = tilcdc_crtc_create(dev); |
| 166 | |
| 167 | list_for_each_entry(mod, &module_list, list) { |
| 168 | DBG("loading module: %s", mod->name); |
| 169 | mod->funcs->modeset_init(mod, dev); |
| 170 | } |
| 171 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 172 | dev->mode_config.min_width = 0; |
| 173 | dev->mode_config.min_height = 0; |
| 174 | dev->mode_config.max_width = tilcdc_crtc_max_width(priv->crtc); |
| 175 | dev->mode_config.max_height = 2048; |
| 176 | dev->mode_config.funcs = &mode_config_funcs; |
| 177 | |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | #ifdef CONFIG_CPU_FREQ |
| 182 | static int cpufreq_transition(struct notifier_block *nb, |
| 183 | unsigned long val, void *data) |
| 184 | { |
| 185 | struct tilcdc_drm_private *priv = container_of(nb, |
| 186 | struct tilcdc_drm_private, freq_transition); |
Jyri Sarha | a6b7eba | 2016-09-05 20:39:32 +0300 | [diff] [blame^] | 187 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 188 | if (val == CPUFREQ_POSTCHANGE) { |
| 189 | if (priv->lcd_fck_rate != clk_get_rate(priv->clk)) { |
Jyri Sarha | a6b7eba | 2016-09-05 20:39:32 +0300 | [diff] [blame^] | 190 | drm_modeset_lock_crtc(priv->crtc, NULL); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 191 | priv->lcd_fck_rate = clk_get_rate(priv->clk); |
| 192 | tilcdc_crtc_update_clk(priv->crtc); |
Jyri Sarha | a6b7eba | 2016-09-05 20:39:32 +0300 | [diff] [blame^] | 193 | drm_modeset_unlock_crtc(priv->crtc); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | |
| 197 | return 0; |
| 198 | } |
| 199 | #endif |
| 200 | |
| 201 | /* |
| 202 | * DRM operations: |
| 203 | */ |
| 204 | |
| 205 | static int tilcdc_unload(struct drm_device *dev) |
| 206 | { |
| 207 | struct tilcdc_drm_private *priv = dev->dev_private; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 208 | |
Jyri Sarha | 47bfd6c | 2016-06-22 16:27:54 +0300 | [diff] [blame] | 209 | tilcdc_crtc_disable(priv->crtc); |
Tomi Valkeinen | 1aea1e7 | 2015-10-19 14:15:26 +0300 | [diff] [blame] | 210 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 211 | tilcdc_remove_external_encoders(dev); |
| 212 | |
Guido Martínez | 3a49012 | 2014-06-17 11:17:07 -0300 | [diff] [blame] | 213 | drm_fbdev_cma_fini(priv->fbdev); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 214 | drm_kms_helper_poll_fini(dev); |
| 215 | drm_mode_config_cleanup(dev); |
| 216 | drm_vblank_cleanup(dev); |
| 217 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 218 | drm_irq_uninstall(dev); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 219 | |
| 220 | #ifdef CONFIG_CPU_FREQ |
| 221 | cpufreq_unregister_notifier(&priv->freq_transition, |
| 222 | CPUFREQ_TRANSITION_NOTIFIER); |
| 223 | #endif |
| 224 | |
| 225 | if (priv->clk) |
| 226 | clk_put(priv->clk); |
| 227 | |
| 228 | if (priv->mmio) |
| 229 | iounmap(priv->mmio); |
| 230 | |
| 231 | flush_workqueue(priv->wq); |
| 232 | destroy_workqueue(priv->wq); |
| 233 | |
| 234 | dev->dev_private = NULL; |
| 235 | |
| 236 | pm_runtime_disable(dev->dev); |
| 237 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 238 | return 0; |
| 239 | } |
| 240 | |
| 241 | static int tilcdc_load(struct drm_device *dev, unsigned long flags) |
| 242 | { |
| 243 | struct platform_device *pdev = dev->platformdev; |
| 244 | struct device_node *node = pdev->dev.of_node; |
| 245 | struct tilcdc_drm_private *priv; |
| 246 | struct resource *res; |
Benoit Parrot | dc28aa0 | 2013-06-18 17:18:31 -0500 | [diff] [blame] | 247 | u32 bpp = 0; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 248 | int ret; |
| 249 | |
Jyri Sarha | d0ec32c | 2016-02-23 12:44:27 +0200 | [diff] [blame] | 250 | priv = devm_kzalloc(dev->dev, sizeof(*priv), GFP_KERNEL); |
Jyri Sarha | 514d1a1 | 2016-06-16 11:28:23 +0300 | [diff] [blame] | 251 | if (!priv) { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 252 | dev_err(dev->dev, "failed to allocate private data\n"); |
| 253 | return -ENOMEM; |
| 254 | } |
| 255 | |
| 256 | dev->dev_private = priv; |
| 257 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 258 | priv->is_componentized = |
| 259 | tilcdc_get_external_components(dev->dev, NULL) > 0; |
| 260 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 261 | priv->wq = alloc_ordered_workqueue("tilcdc", 0); |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 262 | if (!priv->wq) { |
| 263 | ret = -ENOMEM; |
Jyri Sarha | d0ec32c | 2016-02-23 12:44:27 +0200 | [diff] [blame] | 264 | goto fail_unset_priv; |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 265 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 266 | |
| 267 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 268 | if (!res) { |
| 269 | dev_err(dev->dev, "failed to get memory resource\n"); |
| 270 | ret = -EINVAL; |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 271 | goto fail_free_wq; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | priv->mmio = ioremap_nocache(res->start, resource_size(res)); |
| 275 | if (!priv->mmio) { |
| 276 | dev_err(dev->dev, "failed to ioremap\n"); |
| 277 | ret = -ENOMEM; |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 278 | goto fail_free_wq; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | priv->clk = clk_get(dev->dev, "fck"); |
| 282 | if (IS_ERR(priv->clk)) { |
| 283 | dev_err(dev->dev, "failed to get functional clock\n"); |
| 284 | ret = -ENODEV; |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 285 | goto fail_iounmap; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 286 | } |
| 287 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 288 | #ifdef CONFIG_CPU_FREQ |
| 289 | priv->lcd_fck_rate = clk_get_rate(priv->clk); |
| 290 | priv->freq_transition.notifier_call = cpufreq_transition; |
| 291 | ret = cpufreq_register_notifier(&priv->freq_transition, |
| 292 | CPUFREQ_TRANSITION_NOTIFIER); |
| 293 | if (ret) { |
| 294 | dev_err(dev->dev, "failed to register cpufreq notifier\n"); |
Darren Etheridge | 3d19306 | 2014-01-15 15:52:36 -0600 | [diff] [blame] | 295 | goto fail_put_clk; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 296 | } |
| 297 | #endif |
| 298 | |
| 299 | if (of_property_read_u32(node, "max-bandwidth", &priv->max_bandwidth)) |
Darren Etheridge | 4e56434 | 2013-06-21 13:52:23 -0500 | [diff] [blame] | 300 | priv->max_bandwidth = TILCDC_DEFAULT_MAX_BANDWIDTH; |
| 301 | |
| 302 | DBG("Maximum Bandwidth Value %d", priv->max_bandwidth); |
| 303 | |
| 304 | if (of_property_read_u32(node, "ti,max-width", &priv->max_width)) |
| 305 | priv->max_width = TILCDC_DEFAULT_MAX_WIDTH; |
| 306 | |
| 307 | DBG("Maximum Horizontal Pixel Width Value %dpixels", priv->max_width); |
| 308 | |
| 309 | if (of_property_read_u32(node, "ti,max-pixelclock", |
| 310 | &priv->max_pixelclock)) |
| 311 | priv->max_pixelclock = TILCDC_DEFAULT_MAX_PIXELCLOCK; |
| 312 | |
| 313 | DBG("Maximum Pixel Clock Value %dKHz", priv->max_pixelclock); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 314 | |
| 315 | pm_runtime_enable(dev->dev); |
| 316 | |
| 317 | /* Determine LCD IP Version */ |
| 318 | pm_runtime_get_sync(dev->dev); |
| 319 | switch (tilcdc_read(dev, LCDC_PID_REG)) { |
| 320 | case 0x4c100102: |
| 321 | priv->rev = 1; |
| 322 | break; |
| 323 | case 0x4f200800: |
| 324 | case 0x4f201000: |
| 325 | priv->rev = 2; |
| 326 | break; |
| 327 | default: |
| 328 | dev_warn(dev->dev, "Unknown PID Reg value 0x%08x, " |
| 329 | "defaulting to LCD revision 1\n", |
| 330 | tilcdc_read(dev, LCDC_PID_REG)); |
| 331 | priv->rev = 1; |
| 332 | break; |
| 333 | } |
| 334 | |
| 335 | pm_runtime_put_sync(dev->dev); |
| 336 | |
Jyri Sarha | bcc5a6f | 2016-08-11 19:09:43 +0300 | [diff] [blame] | 337 | if (priv->rev == 1) { |
| 338 | DBG("Revision 1 LCDC supports only RGB565 format"); |
| 339 | priv->pixelformats = tilcdc_rev1_formats; |
| 340 | priv->num_pixelformats = ARRAY_SIZE(tilcdc_rev1_formats); |
Jyri Sarha | c566538 | 2016-08-13 21:08:20 +0300 | [diff] [blame] | 341 | bpp = 16; |
Jyri Sarha | bcc5a6f | 2016-08-11 19:09:43 +0300 | [diff] [blame] | 342 | } else { |
| 343 | const char *str = "\0"; |
| 344 | |
| 345 | of_property_read_string(node, "blue-and-red-wiring", &str); |
| 346 | if (0 == strcmp(str, "crossed")) { |
| 347 | DBG("Configured for crossed blue and red wires"); |
| 348 | priv->pixelformats = tilcdc_crossed_formats; |
| 349 | priv->num_pixelformats = |
| 350 | ARRAY_SIZE(tilcdc_crossed_formats); |
Jyri Sarha | c566538 | 2016-08-13 21:08:20 +0300 | [diff] [blame] | 351 | bpp = 32; /* Choose bpp with RGB support for fbdef */ |
Jyri Sarha | bcc5a6f | 2016-08-11 19:09:43 +0300 | [diff] [blame] | 352 | } else if (0 == strcmp(str, "straight")) { |
| 353 | DBG("Configured for straight blue and red wires"); |
| 354 | priv->pixelformats = tilcdc_straight_formats; |
| 355 | priv->num_pixelformats = |
| 356 | ARRAY_SIZE(tilcdc_straight_formats); |
Jyri Sarha | c566538 | 2016-08-13 21:08:20 +0300 | [diff] [blame] | 357 | bpp = 16; /* Choose bpp with RGB support for fbdef */ |
Jyri Sarha | bcc5a6f | 2016-08-11 19:09:43 +0300 | [diff] [blame] | 358 | } else { |
| 359 | DBG("Blue and red wiring '%s' unknown, use legacy mode", |
| 360 | str); |
| 361 | priv->pixelformats = tilcdc_legacy_formats; |
| 362 | priv->num_pixelformats = |
| 363 | ARRAY_SIZE(tilcdc_legacy_formats); |
Jyri Sarha | c566538 | 2016-08-13 21:08:20 +0300 | [diff] [blame] | 364 | bpp = 16; /* This is just a guess */ |
Jyri Sarha | bcc5a6f | 2016-08-11 19:09:43 +0300 | [diff] [blame] | 365 | } |
| 366 | } |
| 367 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 368 | ret = modeset_init(dev); |
| 369 | if (ret < 0) { |
| 370 | dev_err(dev->dev, "failed to initialize mode setting\n"); |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 371 | goto fail_cpufreq_unregister; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 372 | } |
| 373 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 374 | platform_set_drvdata(pdev, dev); |
| 375 | |
| 376 | if (priv->is_componentized) { |
| 377 | ret = component_bind_all(dev->dev, dev); |
| 378 | if (ret < 0) |
| 379 | goto fail_mode_config_cleanup; |
| 380 | |
Jyri Sarha | c566538 | 2016-08-13 21:08:20 +0300 | [diff] [blame] | 381 | ret = tilcdc_add_external_encoders(dev); |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 382 | if (ret < 0) |
| 383 | goto fail_component_cleanup; |
| 384 | } |
| 385 | |
| 386 | if ((priv->num_encoders == 0) || (priv->num_connectors == 0)) { |
| 387 | dev_err(dev->dev, "no encoders/connectors found\n"); |
| 388 | ret = -ENXIO; |
| 389 | goto fail_external_cleanup; |
| 390 | } |
| 391 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 392 | ret = drm_vblank_init(dev, 1); |
| 393 | if (ret < 0) { |
| 394 | dev_err(dev->dev, "failed to initialize vblank\n"); |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 395 | goto fail_external_cleanup; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 396 | } |
| 397 | |
Daniel Vetter | bb0f1b5 | 2013-11-03 21:09:27 +0100 | [diff] [blame] | 398 | ret = drm_irq_install(dev, platform_get_irq(dev->platformdev, 0)); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 399 | if (ret < 0) { |
| 400 | dev_err(dev->dev, "failed to install IRQ handler\n"); |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 401 | goto fail_vblank_cleanup; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 402 | } |
| 403 | |
Jyri Sarha | 522a76f | 2015-12-29 17:27:32 +0200 | [diff] [blame] | 404 | drm_mode_config_reset(dev); |
| 405 | |
Benoit Parrot | dc28aa0 | 2013-06-18 17:18:31 -0500 | [diff] [blame] | 406 | priv->fbdev = drm_fbdev_cma_init(dev, bpp, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 407 | dev->mode_config.num_crtc, |
| 408 | dev->mode_config.num_connector); |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 409 | if (IS_ERR(priv->fbdev)) { |
| 410 | ret = PTR_ERR(priv->fbdev); |
| 411 | goto fail_irq_uninstall; |
| 412 | } |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 413 | |
| 414 | drm_kms_helper_poll_init(dev); |
| 415 | |
| 416 | return 0; |
| 417 | |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 418 | fail_irq_uninstall: |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 419 | drm_irq_uninstall(dev); |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 420 | |
| 421 | fail_vblank_cleanup: |
| 422 | drm_vblank_cleanup(dev); |
| 423 | |
| 424 | fail_mode_config_cleanup: |
| 425 | drm_mode_config_cleanup(dev); |
| 426 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 427 | fail_component_cleanup: |
| 428 | if (priv->is_componentized) |
| 429 | component_unbind_all(dev->dev, dev); |
| 430 | |
| 431 | fail_external_cleanup: |
| 432 | tilcdc_remove_external_encoders(dev); |
| 433 | |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 434 | fail_cpufreq_unregister: |
| 435 | pm_runtime_disable(dev->dev); |
| 436 | #ifdef CONFIG_CPU_FREQ |
| 437 | cpufreq_unregister_notifier(&priv->freq_transition, |
| 438 | CPUFREQ_TRANSITION_NOTIFIER); |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 439 | |
| 440 | fail_put_clk: |
Grygorii Strashko | 7974dff | 2015-02-25 18:19:43 +0200 | [diff] [blame] | 441 | #endif |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 442 | clk_put(priv->clk); |
| 443 | |
| 444 | fail_iounmap: |
| 445 | iounmap(priv->mmio); |
| 446 | |
| 447 | fail_free_wq: |
| 448 | flush_workqueue(priv->wq); |
| 449 | destroy_workqueue(priv->wq); |
| 450 | |
Jyri Sarha | d0ec32c | 2016-02-23 12:44:27 +0200 | [diff] [blame] | 451 | fail_unset_priv: |
Ezequiel Garcia | b478e336b | 2014-09-02 09:51:15 -0300 | [diff] [blame] | 452 | dev->dev_private = NULL; |
Jyri Sarha | d0ec32c | 2016-02-23 12:44:27 +0200 | [diff] [blame] | 453 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 454 | return ret; |
| 455 | } |
| 456 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 457 | static void tilcdc_lastclose(struct drm_device *dev) |
| 458 | { |
| 459 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 460 | drm_fbdev_cma_restore_mode(priv->fbdev); |
| 461 | } |
| 462 | |
Daniel Vetter | e9f0d76 | 2013-12-11 11:34:42 +0100 | [diff] [blame] | 463 | static irqreturn_t tilcdc_irq(int irq, void *arg) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 464 | { |
| 465 | struct drm_device *dev = arg; |
| 466 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 467 | return tilcdc_crtc_irq(priv->crtc); |
| 468 | } |
| 469 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 470 | static int tilcdc_enable_vblank(struct drm_device *dev, unsigned int pipe) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 471 | { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 472 | return 0; |
| 473 | } |
| 474 | |
Thierry Reding | 88e7271 | 2015-09-24 18:35:31 +0200 | [diff] [blame] | 475 | static void tilcdc_disable_vblank(struct drm_device *dev, unsigned int pipe) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 476 | { |
Tomi Valkeinen | 2b2080d7 | 2015-10-20 09:37:27 +0300 | [diff] [blame] | 477 | return; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 478 | } |
| 479 | |
Jyri Sarha | 514d1a1 | 2016-06-16 11:28:23 +0300 | [diff] [blame] | 480 | #if defined(CONFIG_DEBUG_FS) |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 481 | static const struct { |
| 482 | const char *name; |
| 483 | uint8_t rev; |
| 484 | uint8_t save; |
| 485 | uint32_t reg; |
Sachin Kamat | 3250145 | 2013-03-02 15:53:08 +0530 | [diff] [blame] | 486 | } registers[] = { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 487 | #define REG(rev, save, reg) { #reg, rev, save, reg } |
| 488 | /* exists in revision 1: */ |
| 489 | REG(1, false, LCDC_PID_REG), |
| 490 | REG(1, true, LCDC_CTRL_REG), |
| 491 | REG(1, false, LCDC_STAT_REG), |
| 492 | REG(1, true, LCDC_RASTER_CTRL_REG), |
| 493 | REG(1, true, LCDC_RASTER_TIMING_0_REG), |
| 494 | REG(1, true, LCDC_RASTER_TIMING_1_REG), |
| 495 | REG(1, true, LCDC_RASTER_TIMING_2_REG), |
| 496 | REG(1, true, LCDC_DMA_CTRL_REG), |
| 497 | REG(1, true, LCDC_DMA_FB_BASE_ADDR_0_REG), |
| 498 | REG(1, true, LCDC_DMA_FB_CEILING_ADDR_0_REG), |
| 499 | REG(1, true, LCDC_DMA_FB_BASE_ADDR_1_REG), |
| 500 | REG(1, true, LCDC_DMA_FB_CEILING_ADDR_1_REG), |
| 501 | /* new in revision 2: */ |
| 502 | REG(2, false, LCDC_RAW_STAT_REG), |
| 503 | REG(2, false, LCDC_MASKED_STAT_REG), |
Jyri Sarha | f3a9994 | 2016-01-08 12:17:50 +0200 | [diff] [blame] | 504 | REG(2, true, LCDC_INT_ENABLE_SET_REG), |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 505 | REG(2, false, LCDC_INT_ENABLE_CLR_REG), |
| 506 | REG(2, false, LCDC_END_OF_INT_IND_REG), |
| 507 | REG(2, true, LCDC_CLK_ENABLE_REG), |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 508 | #undef REG |
| 509 | }; |
Jyri Sarha | 29ddd6e | 2015-07-02 16:26:12 +0300 | [diff] [blame] | 510 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 511 | #endif |
| 512 | |
| 513 | #ifdef CONFIG_DEBUG_FS |
| 514 | static int tilcdc_regs_show(struct seq_file *m, void *arg) |
| 515 | { |
| 516 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 517 | struct drm_device *dev = node->minor->dev; |
| 518 | struct tilcdc_drm_private *priv = dev->dev_private; |
| 519 | unsigned i; |
| 520 | |
| 521 | pm_runtime_get_sync(dev->dev); |
| 522 | |
| 523 | seq_printf(m, "revision: %d\n", priv->rev); |
| 524 | |
| 525 | for (i = 0; i < ARRAY_SIZE(registers); i++) |
| 526 | if (priv->rev >= registers[i].rev) |
| 527 | seq_printf(m, "%s:\t %08x\n", registers[i].name, |
| 528 | tilcdc_read(dev, registers[i].reg)); |
| 529 | |
| 530 | pm_runtime_put_sync(dev->dev); |
| 531 | |
| 532 | return 0; |
| 533 | } |
| 534 | |
| 535 | static int tilcdc_mm_show(struct seq_file *m, void *arg) |
| 536 | { |
| 537 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 538 | struct drm_device *dev = node->minor->dev; |
Daniel Vetter | b04a590 | 2013-12-11 14:24:46 +0100 | [diff] [blame] | 539 | return drm_mm_dump_table(m, &dev->vma_offset_manager->vm_addr_space_mm); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | static struct drm_info_list tilcdc_debugfs_list[] = { |
| 543 | { "regs", tilcdc_regs_show, 0 }, |
| 544 | { "mm", tilcdc_mm_show, 0 }, |
| 545 | { "fb", drm_fb_cma_debugfs_show, 0 }, |
| 546 | }; |
| 547 | |
| 548 | static int tilcdc_debugfs_init(struct drm_minor *minor) |
| 549 | { |
| 550 | struct drm_device *dev = minor->dev; |
| 551 | struct tilcdc_module *mod; |
| 552 | int ret; |
| 553 | |
| 554 | ret = drm_debugfs_create_files(tilcdc_debugfs_list, |
| 555 | ARRAY_SIZE(tilcdc_debugfs_list), |
| 556 | minor->debugfs_root, minor); |
| 557 | |
| 558 | list_for_each_entry(mod, &module_list, list) |
| 559 | if (mod->funcs->debugfs_init) |
| 560 | mod->funcs->debugfs_init(mod, minor); |
| 561 | |
| 562 | if (ret) { |
| 563 | dev_err(dev->dev, "could not install tilcdc_debugfs_list\n"); |
| 564 | return ret; |
| 565 | } |
| 566 | |
| 567 | return ret; |
| 568 | } |
| 569 | |
| 570 | static void tilcdc_debugfs_cleanup(struct drm_minor *minor) |
| 571 | { |
| 572 | struct tilcdc_module *mod; |
| 573 | drm_debugfs_remove_files(tilcdc_debugfs_list, |
| 574 | ARRAY_SIZE(tilcdc_debugfs_list), minor); |
| 575 | |
| 576 | list_for_each_entry(mod, &module_list, list) |
| 577 | if (mod->funcs->debugfs_cleanup) |
| 578 | mod->funcs->debugfs_cleanup(mod, minor); |
| 579 | } |
| 580 | #endif |
| 581 | |
| 582 | static const struct file_operations fops = { |
| 583 | .owner = THIS_MODULE, |
| 584 | .open = drm_open, |
| 585 | .release = drm_release, |
| 586 | .unlocked_ioctl = drm_ioctl, |
| 587 | #ifdef CONFIG_COMPAT |
| 588 | .compat_ioctl = drm_compat_ioctl, |
| 589 | #endif |
| 590 | .poll = drm_poll, |
| 591 | .read = drm_read, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 592 | .llseek = no_llseek, |
| 593 | .mmap = drm_gem_cma_mmap, |
| 594 | }; |
| 595 | |
| 596 | static struct drm_driver tilcdc_driver = { |
Jyri Sarha | 9c15390 | 2015-06-23 14:31:17 +0300 | [diff] [blame] | 597 | .driver_features = (DRIVER_HAVE_IRQ | DRIVER_GEM | DRIVER_MODESET | |
Jyri Sarha | 305198d | 2016-04-07 15:05:16 +0300 | [diff] [blame] | 598 | DRIVER_PRIME | DRIVER_ATOMIC), |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 599 | .load = tilcdc_load, |
| 600 | .unload = tilcdc_unload, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 601 | .lastclose = tilcdc_lastclose, |
| 602 | .irq_handler = tilcdc_irq, |
Ville Syrjälä | b44f840 | 2015-09-30 16:46:48 +0300 | [diff] [blame] | 603 | .get_vblank_counter = drm_vblank_no_hw_counter, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 604 | .enable_vblank = tilcdc_enable_vblank, |
| 605 | .disable_vblank = tilcdc_disable_vblank, |
Daniel Vetter | aa0438c | 2016-05-30 19:53:05 +0200 | [diff] [blame] | 606 | .gem_free_object_unlocked = drm_gem_cma_free_object, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 607 | .gem_vm_ops = &drm_gem_cma_vm_ops, |
| 608 | .dumb_create = drm_gem_cma_dumb_create, |
| 609 | .dumb_map_offset = drm_gem_cma_dumb_map_offset, |
Daniel Vetter | 43387b3 | 2013-07-16 09:12:04 +0200 | [diff] [blame] | 610 | .dumb_destroy = drm_gem_dumb_destroy, |
Jyri Sarha | 9c15390 | 2015-06-23 14:31:17 +0300 | [diff] [blame] | 611 | |
| 612 | .prime_handle_to_fd = drm_gem_prime_handle_to_fd, |
| 613 | .prime_fd_to_handle = drm_gem_prime_fd_to_handle, |
| 614 | .gem_prime_import = drm_gem_prime_import, |
| 615 | .gem_prime_export = drm_gem_prime_export, |
| 616 | .gem_prime_get_sg_table = drm_gem_cma_prime_get_sg_table, |
| 617 | .gem_prime_import_sg_table = drm_gem_cma_prime_import_sg_table, |
| 618 | .gem_prime_vmap = drm_gem_cma_prime_vmap, |
| 619 | .gem_prime_vunmap = drm_gem_cma_prime_vunmap, |
| 620 | .gem_prime_mmap = drm_gem_cma_prime_mmap, |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 621 | #ifdef CONFIG_DEBUG_FS |
| 622 | .debugfs_init = tilcdc_debugfs_init, |
| 623 | .debugfs_cleanup = tilcdc_debugfs_cleanup, |
| 624 | #endif |
| 625 | .fops = &fops, |
| 626 | .name = "tilcdc", |
| 627 | .desc = "TI LCD Controller DRM", |
| 628 | .date = "20121205", |
| 629 | .major = 1, |
| 630 | .minor = 0, |
| 631 | }; |
| 632 | |
| 633 | /* |
| 634 | * Power management: |
| 635 | */ |
| 636 | |
| 637 | #ifdef CONFIG_PM_SLEEP |
| 638 | static int tilcdc_pm_suspend(struct device *dev) |
| 639 | { |
| 640 | struct drm_device *ddev = dev_get_drvdata(dev); |
| 641 | struct tilcdc_drm_private *priv = ddev->dev_private; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 642 | |
Jyri Sarha | 514d1a1 | 2016-06-16 11:28:23 +0300 | [diff] [blame] | 643 | priv->saved_state = drm_atomic_helper_suspend(ddev); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 644 | |
Darren Etheridge | 85fd27f | 2014-09-19 01:42:57 +0000 | [diff] [blame] | 645 | /* Select sleep pin state */ |
| 646 | pinctrl_pm_select_sleep_state(dev); |
| 647 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 648 | return 0; |
| 649 | } |
| 650 | |
| 651 | static int tilcdc_pm_resume(struct device *dev) |
| 652 | { |
| 653 | struct drm_device *ddev = dev_get_drvdata(dev); |
| 654 | struct tilcdc_drm_private *priv = ddev->dev_private; |
Jyri Sarha | 514d1a1 | 2016-06-16 11:28:23 +0300 | [diff] [blame] | 655 | int ret = 0; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 656 | |
Dave Gerlach | 416a07f | 2014-07-29 06:27:58 +0000 | [diff] [blame] | 657 | /* Select default pin state */ |
| 658 | pinctrl_pm_select_default_state(dev); |
| 659 | |
Jyri Sarha | 514d1a1 | 2016-06-16 11:28:23 +0300 | [diff] [blame] | 660 | if (priv->saved_state) |
| 661 | ret = drm_atomic_helper_resume(ddev, priv->saved_state); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 662 | |
Jyri Sarha | 514d1a1 | 2016-06-16 11:28:23 +0300 | [diff] [blame] | 663 | return ret; |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 664 | } |
| 665 | #endif |
| 666 | |
| 667 | static const struct dev_pm_ops tilcdc_pm_ops = { |
| 668 | SET_SYSTEM_SLEEP_PM_OPS(tilcdc_pm_suspend, tilcdc_pm_resume) |
| 669 | }; |
| 670 | |
| 671 | /* |
| 672 | * Platform driver: |
| 673 | */ |
| 674 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 675 | static int tilcdc_bind(struct device *dev) |
| 676 | { |
| 677 | return drm_platform_init(&tilcdc_driver, to_platform_device(dev)); |
| 678 | } |
| 679 | |
| 680 | static void tilcdc_unbind(struct device *dev) |
| 681 | { |
Jyri Sarha | 20a98ac | 2016-06-23 11:07:16 +0300 | [diff] [blame] | 682 | struct drm_device *ddev = dev_get_drvdata(dev); |
| 683 | |
| 684 | /* Check if a subcomponent has already triggered the unloading. */ |
| 685 | if (!ddev->dev_private) |
| 686 | return; |
| 687 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 688 | drm_put_dev(dev_get_drvdata(dev)); |
| 689 | } |
| 690 | |
| 691 | static const struct component_master_ops tilcdc_comp_ops = { |
| 692 | .bind = tilcdc_bind, |
| 693 | .unbind = tilcdc_unbind, |
| 694 | }; |
| 695 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 696 | static int tilcdc_pdev_probe(struct platform_device *pdev) |
| 697 | { |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 698 | struct component_match *match = NULL; |
| 699 | int ret; |
| 700 | |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 701 | /* bail out early if no DT data: */ |
| 702 | if (!pdev->dev.of_node) { |
| 703 | dev_err(&pdev->dev, "device-tree data is missing\n"); |
| 704 | return -ENXIO; |
| 705 | } |
| 706 | |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 707 | ret = tilcdc_get_external_components(&pdev->dev, &match); |
| 708 | if (ret < 0) |
| 709 | return ret; |
| 710 | else if (ret == 0) |
| 711 | return drm_platform_init(&tilcdc_driver, pdev); |
| 712 | else |
| 713 | return component_master_add_with_match(&pdev->dev, |
| 714 | &tilcdc_comp_ops, |
| 715 | match); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | static int tilcdc_pdev_remove(struct platform_device *pdev) |
| 719 | { |
Jyri Sarha | 20a98ac | 2016-06-23 11:07:16 +0300 | [diff] [blame] | 720 | int ret; |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 721 | |
Jyri Sarha | 20a98ac | 2016-06-23 11:07:16 +0300 | [diff] [blame] | 722 | ret = tilcdc_get_external_components(&pdev->dev, NULL); |
| 723 | if (ret < 0) |
| 724 | return ret; |
| 725 | else if (ret == 0) |
Jyri Sarha | 103cd8b | 2015-02-10 14:13:23 +0200 | [diff] [blame] | 726 | drm_put_dev(platform_get_drvdata(pdev)); |
Jyri Sarha | 20a98ac | 2016-06-23 11:07:16 +0300 | [diff] [blame] | 727 | else |
| 728 | component_master_del(&pdev->dev, &tilcdc_comp_ops); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 729 | |
| 730 | return 0; |
| 731 | } |
| 732 | |
| 733 | static struct of_device_id tilcdc_of_match[] = { |
| 734 | { .compatible = "ti,am33xx-tilcdc", }, |
| 735 | { }, |
| 736 | }; |
| 737 | MODULE_DEVICE_TABLE(of, tilcdc_of_match); |
| 738 | |
| 739 | static struct platform_driver tilcdc_platform_driver = { |
| 740 | .probe = tilcdc_pdev_probe, |
| 741 | .remove = tilcdc_pdev_remove, |
| 742 | .driver = { |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 743 | .name = "tilcdc", |
| 744 | .pm = &tilcdc_pm_ops, |
| 745 | .of_match_table = tilcdc_of_match, |
| 746 | }, |
| 747 | }; |
| 748 | |
| 749 | static int __init tilcdc_drm_init(void) |
| 750 | { |
| 751 | DBG("init"); |
| 752 | tilcdc_tfp410_init(); |
Rob Clark | 0d4bbaf | 2012-12-18 17:34:16 -0600 | [diff] [blame] | 753 | tilcdc_panel_init(); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 754 | return platform_driver_register(&tilcdc_platform_driver); |
| 755 | } |
| 756 | |
| 757 | static void __exit tilcdc_drm_fini(void) |
| 758 | { |
| 759 | DBG("fini"); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 760 | platform_driver_unregister(&tilcdc_platform_driver); |
Guido Martínez | eb565a2 | 2014-06-17 11:17:08 -0300 | [diff] [blame] | 761 | tilcdc_panel_fini(); |
Guido Martínez | eb565a2 | 2014-06-17 11:17:08 -0300 | [diff] [blame] | 762 | tilcdc_tfp410_fini(); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 763 | } |
| 764 | |
Guido Martínez | 2023d84 | 2014-06-17 11:17:11 -0300 | [diff] [blame] | 765 | module_init(tilcdc_drm_init); |
Rob Clark | 16ea975 | 2013-01-08 15:04:28 -0600 | [diff] [blame] | 766 | module_exit(tilcdc_drm_fini); |
| 767 | |
| 768 | MODULE_AUTHOR("Rob Clark <robdclark@gmail.com"); |
| 769 | MODULE_DESCRIPTION("TI LCD Controller DRM Driver"); |
| 770 | MODULE_LICENSE("GPL"); |