blob: 80edd6628979c0d4d9224a6e145a2a5c7d6d97fe [file] [log] [blame]
Linus Walleij5fc537b2019-05-24 11:20:19 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2018 Linus Walleij <linus.walleij@linaro.org>
4 * Parts of this file were based on the MCDE driver by Marcus Lorentzon
5 * (C) ST-Ericsson SA 2013
6 */
7#include <drm/drm_simple_kms_helper.h>
8
9#ifndef _MCDE_DRM_H_
10#define _MCDE_DRM_H_
11
12struct mcde {
13 struct drm_device drm;
14 struct device *dev;
15 struct drm_panel *panel;
16 struct drm_bridge *bridge;
17 struct drm_connector *connector;
18 struct drm_simple_display_pipe pipe;
19 struct mipi_dsi_device *mdsi;
20 s16 stride;
21 bool te_sync;
Stephan Gerholdd920e8d2019-11-06 17:58:30 +010022 bool video_mode;
Linus Walleij5fc537b2019-05-24 11:20:19 +020023 bool oneshot_mode;
24 unsigned int flow_active;
25 spinlock_t flow_lock; /* Locks the channel flow control */
26
27 void __iomem *regs;
28
29 struct clk *mcde_clk;
30 struct clk *lcd_clk;
31 struct clk *hdmi_clk;
32
33 struct regulator *epod;
34 struct regulator *vana;
35};
36
37bool mcde_dsi_irq(struct mipi_dsi_device *mdsi);
38void mcde_dsi_te_request(struct mipi_dsi_device *mdsi);
39extern struct platform_driver mcde_dsi_driver;
40
41void mcde_display_irq(struct mcde *mcde);
42void mcde_display_disable_irqs(struct mcde *mcde);
43int mcde_display_init(struct drm_device *drm);
44
45#endif /* _MCDE_DRM_H_ */