1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #ifndef _PL111_DRM_H_
- #define _PL111_DRM_H_
- #include <drm/drm_gem.h>
- #include <drm/drm_simple_kms_helper.h>
- #include <drm/drm_connector.h>
- #include <drm/drm_encoder.h>
- #include <drm/drm_panel.h>
- #include <drm/drm_bridge.h>
- #include <linux/clk-provider.h>
- #include <linux/interrupt.h>
- #define CLCD_IRQ_NEXTBASE_UPDATE BIT(2)
- struct drm_minor;
- struct pl111_variant_data {
- const char *name;
- bool is_pl110;
- bool is_lcdc;
- bool external_bgr;
- bool broken_clockdivider;
- bool broken_vblank;
- bool st_bitmux_control;
- const u32 *formats;
- unsigned int nformats;
- unsigned int fb_bpp;
- };
- struct pl111_drm_dev_private {
- struct drm_device *drm;
- struct drm_connector *connector;
- struct drm_panel *panel;
- struct drm_bridge *bridge;
- struct drm_simple_display_pipe pipe;
- void *regs;
- u32 memory_bw;
- u32 ienb;
- u32 ctrl;
-
- struct clk *clk;
-
- struct clk_hw clk_div;
-
- spinlock_t tim2_lock;
- const struct pl111_variant_data *variant;
- void (*variant_display_enable) (struct drm_device *drm, u32 format);
- void (*variant_display_disable) (struct drm_device *drm);
- bool use_device_memory;
- };
- int pl111_display_init(struct drm_device *dev);
- irqreturn_t pl111_irq(int irq, void *data);
- int pl111_debugfs_init(struct drm_minor *minor);
- #endif
|