Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / gpu / drm / arm / hdlcd_drv.h
blob56f34dfff64065640284e5eee100e628f4a59204
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * ARM HDLCD Controller register definition
4 */
6 #ifndef __HDLCD_DRV_H__
7 #define __HDLCD_DRV_H__
9 struct hdlcd_drm_private {
10 void __iomem *mmio;
11 struct clk *clk;
12 struct drm_fbdev_cma *fbdev;
13 struct drm_crtc crtc;
14 struct drm_plane *plane;
15 struct drm_atomic_state *state;
16 #ifdef CONFIG_DEBUG_FS
17 atomic_t buffer_underrun_count;
18 atomic_t bus_error_count;
19 atomic_t vsync_count;
20 atomic_t dma_end_count;
21 #endif
24 #define crtc_to_hdlcd_priv(x) container_of(x, struct hdlcd_drm_private, crtc)
26 static inline void hdlcd_write(struct hdlcd_drm_private *hdlcd,
27 unsigned int reg, u32 value)
29 writel(value, hdlcd->mmio + reg);
32 static inline u32 hdlcd_read(struct hdlcd_drm_private *hdlcd, unsigned int reg)
34 return readl(hdlcd->mmio + reg);
37 int hdlcd_setup_crtc(struct drm_device *dev);
38 void hdlcd_set_scanout(struct hdlcd_drm_private *hdlcd);
40 #endif /* __HDLCD_DRV_H__ */