| 
									
										
										
										
											2011-02-28 16:55:28 -08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-12-05 17:50:46 -08:00
										 |  |  |  * Gas Gauge driver for SBS Compliant Gas Gauges | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:28 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2010, NVIDIA Corporation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, but WITHOUT | 
					
						
							|  |  |  |  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |  * more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License along | 
					
						
							|  |  |  |  * with this program; if not, write to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |  * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-05 17:50:46 -08:00
										 |  |  | #ifndef __LINUX_POWER_SBS_BATTERY_H_
 | 
					
						
							|  |  |  | #define __LINUX_POWER_SBS_BATTERY_H_
 | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:28 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/power_supply.h>
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2011-12-05 17:50:46 -08:00
										 |  |  |  * struct sbs_platform_data - platform data for sbs devices | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:28 -08:00
										 |  |  |  * @battery_detect:		GPIO which is used to detect battery presence | 
					
						
							|  |  |  |  * @battery_detect_present:	gpio state when battery is present (0 / 1) | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:29 -08:00
										 |  |  |  * @i2c_retry_count:		# of times to retry on i2c IO failure | 
					
						
							| 
									
										
										
										
											2011-05-24 12:05:59 -07:00
										 |  |  |  * @poll_retry_count:		# of times to retry looking for new status after | 
					
						
							|  |  |  |  *				external change notification | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:28 -08:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-12-05 17:50:46 -08:00
										 |  |  | struct sbs_platform_data { | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:28 -08:00
										 |  |  | 	int battery_detect; | 
					
						
							|  |  |  | 	int battery_detect_present; | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:29 -08:00
										 |  |  | 	int i2c_retry_count; | 
					
						
							| 
									
										
										
										
											2011-05-24 12:05:59 -07:00
										 |  |  | 	int poll_retry_count; | 
					
						
							| 
									
										
										
										
											2011-02-28 16:55:28 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |