display.h 430 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * display.h - OMAP2+ integration-specific DSS header
  4. *
  5. * Copyright (C) 2011 Texas Instruments, Inc.
  6. */
  7. #ifndef __ARCH_ARM_MACH_OMAP2_DISPLAY_H
  8. #define __ARCH_ARM_MACH_OMAP2_DISPLAY_H
  9. #include <linux/kernel.h>
  10. struct omap_dss_dispc_dev_attr {
  11. u8 manager_count;
  12. bool has_framedonetv_irq;
  13. };
  14. int omap_init_vrfb(void);
  15. int omap_init_fb(void);
  16. int omap_init_vout(void);
  17. #endif