forked from mirrors/linux
		
	 2874c5fd28
			
		
	
	
		2874c5fd28
		
	
	
	
	
		
			
			Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 3029 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070032.746973796@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			897 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			897 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0-or-later */
 | |
| /*
 | |
|  * Copyright (C) 2016 Texas Instruments, Inc.
 | |
|  */
 | |
| 
 | |
| #ifndef __OMAPDSS_PDATA_H
 | |
| #define __OMAPDSS_PDATA_H
 | |
| 
 | |
| enum omapdss_version {
 | |
| 	OMAPDSS_VER_UNKNOWN = 0,
 | |
| 	OMAPDSS_VER_OMAP24xx,
 | |
| 	OMAPDSS_VER_OMAP34xx_ES1,	/* OMAP3430 ES1.0, 2.0 */
 | |
| 	OMAPDSS_VER_OMAP34xx_ES3,	/* OMAP3430 ES3.0+ */
 | |
| 	OMAPDSS_VER_OMAP3630,
 | |
| 	OMAPDSS_VER_AM35xx,
 | |
| 	OMAPDSS_VER_OMAP4430_ES1,	/* OMAP4430 ES1.0 */
 | |
| 	OMAPDSS_VER_OMAP4430_ES2,	/* OMAP4430 ES2.0, 2.1, 2.2 */
 | |
| 	OMAPDSS_VER_OMAP4,		/* All other OMAP4s */
 | |
| 	OMAPDSS_VER_OMAP5,
 | |
| 	OMAPDSS_VER_AM43xx,
 | |
| 	OMAPDSS_VER_DRA7xx,
 | |
| };
 | |
| 
 | |
| /* Board specific data */
 | |
| struct omap_dss_board_info {
 | |
| 	int (*dsi_enable_pads)(int dsi_id, unsigned int lane_mask);
 | |
| 	void (*dsi_disable_pads)(int dsi_id, unsigned int lane_mask);
 | |
| 	int (*set_min_bus_tput)(struct device *dev, unsigned long r);
 | |
| 	enum omapdss_version version;
 | |
| };
 | |
| 
 | |
| #endif /* __OMAPDSS_PDATA_H */
 |