sti_gdp.h 565 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) STMicroelectronics SA 2014
  4. * Authors: Benjamin Gaignard <[email protected]>
  5. * Fabien Dessenne <[email protected]>
  6. * for STMicroelectronics.
  7. */
  8. #ifndef _STI_GDP_H_
  9. #define _STI_GDP_H_
  10. #include <linux/types.h>
  11. #include <drm/drm_plane.h>
  12. struct drm_device;
  13. struct device;
  14. struct drm_plane *sti_gdp_create(struct drm_device *drm_dev,
  15. struct device *dev, int desc,
  16. void __iomem *baseaddr,
  17. unsigned int possible_crtcs,
  18. enum drm_plane_type type);
  19. #endif