 24305db864
			
		
	
	
	24305db864
	
	
	
		
			
			PicoDLP is a micro projector from TI. DLP used in OMAP4 is dpp2600 (DLP Pico Projector) The DLP requires commands to be sent over i2c for configurations. To know more about dpp2600 commands please visit: https://focus.ti.com/myti/docs/extranet.tsp?sectionId=403 The picodlp module consists of a dss driver and an i2c_client. To know more please visit: http://www.omappedia.org/wiki/PicoDLP_projector_guide Based on original design from Mythri P K <mythripk@ti.com> Signed-off-by: Mayuresh Janorkar <mayur@ti.com> Signed-off-by: Mythri P K <mythripk@ti.com> [tomi.valkeinen@ti.com: squashed commits] Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			590 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			590 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * panel data for picodlp panel
 | |
|  *
 | |
|  * Copyright (C) 2011 Texas Instruments
 | |
|  *
 | |
|  * Author: Mayuresh Janorkar <mayur@ti.com>
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License version 2 as
 | |
|  * published by the Free Software Foundation.
 | |
|  */
 | |
| #ifndef __PANEL_PICODLP_H
 | |
| #define __PANEL_PICODLP_H
 | |
| /**
 | |
|  * struct : picodlp panel data
 | |
|  * picodlp_adapter_id:	i2c_adapter number for picodlp
 | |
|  */
 | |
| struct picodlp_panel_data {
 | |
| 	int picodlp_adapter_id;
 | |
| 	int emu_done_gpio;
 | |
| 	int pwrgood_gpio;
 | |
| };
 | |
| #endif /* __PANEL_PICODLP_H */
 |