hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * ARC PGU DRM driver.
 *
 * Copyright (C) 2016 Synopsys, Inc. (www.synopsys.com)
 */
 
#ifndef _ARCPGU_H_
#define _ARCPGU_H_
 
struct arcpgu_drm_private {
   void __iomem        *regs;
   struct clk        *clk;
   struct drm_framebuffer    *fb;
   struct drm_crtc        crtc;
   struct drm_plane    *plane;
};
 
#define crtc_to_arcpgu_priv(x) container_of(x, struct arcpgu_drm_private, crtc)
 
static inline void arc_pgu_write(struct arcpgu_drm_private *arcpgu,
                unsigned int reg, u32 value)
{
   iowrite32(value, arcpgu->regs + reg);
}
 
static inline u32 arc_pgu_read(struct arcpgu_drm_private *arcpgu,
                  unsigned int reg)
{
   return ioread32(arcpgu->regs + reg);
}
 
int arc_pgu_setup_crtc(struct drm_device *dev);
int arcpgu_drm_hdmi_init(struct drm_device *drm, struct device_node *np);
int arcpgu_drm_sim_init(struct drm_device *drm, struct device_node *np);
 
#endif