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 8 #ifndef __ARCH_ARM_MACH_OMAP2_DISPLAY_H 9 #define __ARCH_ARM_MACH_OMAP2_DISPLAY_H 10 11 #include <linux/kernel.h> 12 13 struct omap_dss_dispc_dev_attr { 14 u8 manager_count; 15 bool has_framedonetv_irq; 16 }; 17 18 int omap_init_vrfb(void); 19 int omap_init_fb(void); 20 int omap_init_vout(void); 21 22 #endif 23