/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2021 StarFive Technology Co., Ltd. */ #ifndef _STARFIVE_DRM_DRV_H #define _STARFIVE_DRM_DRV_H #include #include #include #include #include struct starfive_drm_private { struct drm_fb_helper fbdev_helper; struct drm_gem_object *fbdev_bo; struct mutex mm_lock; struct drm_mm mm; }; extern struct platform_driver starfive_crtc_driver; extern struct platform_driver starfive_encoder_driver; extern struct platform_driver starfive_dsi_platform_driver; #endif /* _STARFIVE_DRM_DRV_H_ */