1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2016 Marek Vasut <marex@denx.de>
5 * This code is based on drivers/video/fbdev/mxsfb.c :
6 * Copyright (C) 2010 Juergen Beisert, Pengutronix
7 * Copyright (C) 2008-2009 Freescale Semiconductor, Inc. All Rights Reserved.
8 * Copyright (C) 2008 Embedded Alley Solutions, Inc All Rights Reserved.
11 #include <linux/clk.h>
12 #include <linux/dma-mapping.h>
14 #include <linux/module.h>
15 #include <linux/of_device.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm_runtime.h>
19 #include <drm/drm_atomic_helper.h>
20 #include <drm/drm_bridge.h>
21 #include <drm/drm_connector.h>
22 #include <drm/drm_drv.h>
23 #include <drm/drm_fb_helper.h>
24 #include <drm/drm_fourcc.h>
25 #include <drm/drm_gem_cma_helper.h>
26 #include <drm/drm_gem_framebuffer_helper.h>
27 #include <drm/drm_mode_config.h>
28 #include <drm/drm_of.h>
29 #include <drm/drm_probe_helper.h>
30 #include <drm/drm_vblank.h>
32 #include "mxsfb_drv.h"
33 #include "mxsfb_regs.h"
39 * Starting at i.MX6 the hardware version register is gone, use the
40 * i.MX family number as the version.
45 static const struct mxsfb_devdata mxsfb_devdata[] = {
47 .transfer_count = LCDC_V3_TRANSFER_COUNT,
48 .cur_buf = LCDC_V3_CUR_BUF,
49 .next_buf = LCDC_V3_NEXT_BUF,
56 .transfer_count = LCDC_V4_TRANSFER_COUNT,
57 .cur_buf = LCDC_V4_CUR_BUF,
58 .next_buf = LCDC_V4_NEXT_BUF,
59 .hs_wdth_mask = 0x3fff,
65 .transfer_count = LCDC_V4_TRANSFER_COUNT,
66 .cur_buf = LCDC_V4_CUR_BUF,
67 .next_buf = LCDC_V4_NEXT_BUF,
68 .hs_wdth_mask = 0x3fff,
75 void mxsfb_enable_axi_clk(struct mxsfb_drm_private *mxsfb)
78 clk_prepare_enable(mxsfb->clk_axi);
81 void mxsfb_disable_axi_clk(struct mxsfb_drm_private *mxsfb)
84 clk_disable_unprepare(mxsfb->clk_axi);
87 static struct drm_framebuffer *
88 mxsfb_fb_create(struct drm_device *dev, struct drm_file *file_priv,
89 const struct drm_mode_fb_cmd2 *mode_cmd)
91 const struct drm_format_info *info;
93 info = drm_get_format_info(dev, mode_cmd);
95 return ERR_PTR(-EINVAL);
97 if (mode_cmd->width * info->cpp[0] != mode_cmd->pitches[0]) {
98 dev_dbg(dev->dev, "Invalid pitch: fb width must match pitch\n");
99 return ERR_PTR(-EINVAL);
102 return drm_gem_fb_create(dev, file_priv, mode_cmd);
105 static const struct drm_mode_config_funcs mxsfb_mode_config_funcs = {
106 .fb_create = mxsfb_fb_create,
107 .atomic_check = drm_atomic_helper_check,
108 .atomic_commit = drm_atomic_helper_commit,
111 static const struct drm_mode_config_helper_funcs mxsfb_mode_config_helpers = {
112 .atomic_commit_tail = drm_atomic_helper_commit_tail_rpm,
115 static int mxsfb_attach_bridge(struct mxsfb_drm_private *mxsfb)
117 struct drm_device *drm = mxsfb->drm;
118 struct drm_connector_list_iter iter;
119 struct drm_panel *panel;
120 struct drm_bridge *bridge;
123 ret = drm_of_find_panel_or_bridge(drm->dev->of_node, 0, 0, &panel,
129 bridge = devm_drm_panel_bridge_add_typed(drm->dev, panel,
130 DRM_MODE_CONNECTOR_DPI);
132 return PTR_ERR(bridge);
138 ret = drm_bridge_attach(&mxsfb->encoder, bridge, NULL, 0);
140 return dev_err_probe(drm->dev, ret, "Failed to attach bridge\n");
142 mxsfb->bridge = bridge;
145 * Get hold of the connector. This is a bit of a hack, until the bridge
146 * API gives us bus flags and formats.
148 drm_connector_list_iter_begin(drm, &iter);
149 mxsfb->connector = drm_connector_list_iter_next(&iter);
150 drm_connector_list_iter_end(&iter);
155 static irqreturn_t mxsfb_irq_handler(int irq, void *data)
157 struct drm_device *drm = data;
158 struct mxsfb_drm_private *mxsfb = drm->dev_private;
161 reg = readl(mxsfb->base + LCDC_CTRL1);
163 if (reg & CTRL1_CUR_FRAME_DONE_IRQ)
164 drm_crtc_handle_vblank(&mxsfb->crtc);
166 writel(CTRL1_CUR_FRAME_DONE_IRQ, mxsfb->base + LCDC_CTRL1 + REG_CLR);
171 static void mxsfb_irq_disable(struct drm_device *drm)
173 struct mxsfb_drm_private *mxsfb = drm->dev_private;
175 mxsfb_enable_axi_clk(mxsfb);
176 mxsfb->crtc.funcs->disable_vblank(&mxsfb->crtc);
177 mxsfb_disable_axi_clk(mxsfb);
180 static int mxsfb_irq_install(struct drm_device *dev, int irq)
182 if (irq == IRQ_NOTCONNECTED)
185 mxsfb_irq_disable(dev);
187 return request_irq(irq, mxsfb_irq_handler, 0, dev->driver->name, dev);
190 static void mxsfb_irq_uninstall(struct drm_device *dev)
192 struct mxsfb_drm_private *mxsfb = dev->dev_private;
194 mxsfb_irq_disable(dev);
195 free_irq(mxsfb->irq, dev);
198 static int mxsfb_load(struct drm_device *drm,
199 const struct mxsfb_devdata *devdata)
201 struct platform_device *pdev = to_platform_device(drm->dev);
202 struct mxsfb_drm_private *mxsfb;
203 struct resource *res;
206 mxsfb = devm_kzalloc(&pdev->dev, sizeof(*mxsfb), GFP_KERNEL);
211 drm->dev_private = mxsfb;
212 mxsfb->devdata = devdata;
214 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
215 mxsfb->base = devm_ioremap_resource(drm->dev, res);
216 if (IS_ERR(mxsfb->base))
217 return PTR_ERR(mxsfb->base);
219 mxsfb->clk = devm_clk_get(drm->dev, NULL);
220 if (IS_ERR(mxsfb->clk))
221 return PTR_ERR(mxsfb->clk);
223 mxsfb->clk_axi = devm_clk_get(drm->dev, "axi");
224 if (IS_ERR(mxsfb->clk_axi))
225 mxsfb->clk_axi = NULL;
227 mxsfb->clk_disp_axi = devm_clk_get(drm->dev, "disp_axi");
228 if (IS_ERR(mxsfb->clk_disp_axi))
229 mxsfb->clk_disp_axi = NULL;
231 ret = dma_set_mask_and_coherent(drm->dev, DMA_BIT_MASK(32));
235 pm_runtime_enable(drm->dev);
238 drm_mode_config_init(drm);
240 ret = mxsfb_kms_init(mxsfb);
242 dev_err(drm->dev, "Failed to initialize KMS pipeline\n");
246 ret = drm_vblank_init(drm, drm->mode_config.num_crtc);
248 dev_err(drm->dev, "Failed to initialise vblank\n");
252 /* Start with vertical blanking interrupt reporting disabled. */
253 drm_crtc_vblank_off(&mxsfb->crtc);
255 ret = mxsfb_attach_bridge(mxsfb);
257 if (ret != -EPROBE_DEFER)
258 dev_err(drm->dev, "Cannot connect bridge: %d\n", ret);
262 drm->mode_config.min_width = MXSFB_MIN_XRES;
263 drm->mode_config.min_height = MXSFB_MIN_YRES;
264 drm->mode_config.max_width = MXSFB_MAX_XRES;
265 drm->mode_config.max_height = MXSFB_MAX_YRES;
266 drm->mode_config.funcs = &mxsfb_mode_config_funcs;
267 drm->mode_config.helper_private = &mxsfb_mode_config_helpers;
269 drm_mode_config_reset(drm);
271 ret = platform_get_irq(pdev, 0);
276 pm_runtime_get_sync(drm->dev);
277 ret = mxsfb_irq_install(drm, mxsfb->irq);
278 pm_runtime_put_sync(drm->dev);
281 dev_err(drm->dev, "Failed to install IRQ handler\n");
285 drm_kms_helper_poll_init(drm);
287 platform_set_drvdata(pdev, drm);
289 drm_helper_hpd_irq_event(drm);
294 pm_runtime_disable(drm->dev);
299 static void mxsfb_unload(struct drm_device *drm)
301 drm_kms_helper_poll_fini(drm);
302 drm_mode_config_cleanup(drm);
304 pm_runtime_get_sync(drm->dev);
305 mxsfb_irq_uninstall(drm);
306 pm_runtime_put_sync(drm->dev);
308 drm->dev_private = NULL;
310 pm_runtime_disable(drm->dev);
313 DEFINE_DRM_GEM_CMA_FOPS(fops);
315 static const struct drm_driver mxsfb_driver = {
316 .driver_features = DRIVER_GEM | DRIVER_MODESET | DRIVER_ATOMIC,
317 DRM_GEM_CMA_DRIVER_OPS,
320 .desc = "MXSFB Controller DRM",
326 static const struct of_device_id mxsfb_dt_ids[] = {
327 { .compatible = "fsl,imx23-lcdif", .data = &mxsfb_devdata[MXSFB_V3], },
328 { .compatible = "fsl,imx28-lcdif", .data = &mxsfb_devdata[MXSFB_V4], },
329 { .compatible = "fsl,imx6sx-lcdif", .data = &mxsfb_devdata[MXSFB_V6], },
332 MODULE_DEVICE_TABLE(of, mxsfb_dt_ids);
334 static int mxsfb_probe(struct platform_device *pdev)
336 struct drm_device *drm;
337 const struct of_device_id *of_id =
338 of_match_device(mxsfb_dt_ids, &pdev->dev);
341 if (!pdev->dev.of_node)
344 drm = drm_dev_alloc(&mxsfb_driver, &pdev->dev);
348 ret = mxsfb_load(drm, of_id->data);
352 ret = drm_dev_register(drm, 0);
356 drm_fbdev_generic_setup(drm, 32);
368 static int mxsfb_remove(struct platform_device *pdev)
370 struct drm_device *drm = platform_get_drvdata(pdev);
372 drm_dev_unregister(drm);
379 #ifdef CONFIG_PM_SLEEP
380 static int mxsfb_suspend(struct device *dev)
382 struct drm_device *drm = dev_get_drvdata(dev);
384 return drm_mode_config_helper_suspend(drm);
387 static int mxsfb_resume(struct device *dev)
389 struct drm_device *drm = dev_get_drvdata(dev);
391 return drm_mode_config_helper_resume(drm);
395 static const struct dev_pm_ops mxsfb_pm_ops = {
396 SET_SYSTEM_SLEEP_PM_OPS(mxsfb_suspend, mxsfb_resume)
399 static struct platform_driver mxsfb_platform_driver = {
400 .probe = mxsfb_probe,
401 .remove = mxsfb_remove,
404 .of_match_table = mxsfb_dt_ids,
409 module_platform_driver(mxsfb_platform_driver);
411 MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
412 MODULE_DESCRIPTION("Freescale MXS DRM/KMS driver");
413 MODULE_LICENSE("GPL");