| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Battery driver for Maxim MAX8925 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2009-2010 Marvell International Ltd. | 
					
						
							|  |  |  |  *	Haojian Zhuang <haojian.zhuang@marvell.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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <linux/err.h>
 | 
					
						
							| 
									
										
											  
											
												include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files.  percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed.  Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability.  As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
  http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
  only the necessary includes are there.  ie. if only gfp is used,
  gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
  blocks and try to put the new include such that its order conforms
  to its surrounding.  It's put in the include block which contains
  core kernel includes, in the same order that the rest are ordered -
  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
  doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
  because the file doesn't have fitting include block), it prints out
  an error message indicating which .h file needs to be added to the
  file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
   over 4000 files, deleting around 700 includes and adding ~480 gfp.h
   and ~3000 slab.h inclusions.  The script emitted errors for ~400
   files.
2. Each error was manually checked.  Some didn't need the inclusion,
   some needed manual addition while adding it to implementation .h or
   embedding .c file was more appropriate for others.  This step added
   inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
   from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
   e.g. lib/decompress_*.c used malloc/free() wrappers around slab
   APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
   editing them as sprinkling gfp.h and slab.h inclusions around .h
   files could easily lead to inclusion dependency hell.  Most gfp.h
   inclusion directives were ignored as stuff from gfp.h was usually
   wildly available and often used in preprocessor macros.  Each
   slab.h inclusion directive was examined and added manually as
   necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
   distributed build env didn't work with gcov compiles) and a few
   more options had to be turned off depending on archs to make things
   build (like ipr on powerpc/64 which failed due to missing writeq).
   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
   * powerpc and powerpc64 SMP allmodconfig
   * sparc and sparc64 SMP allmodconfig
   * ia64 SMP allmodconfig
   * s390 SMP allmodconfig
   * alpha SMP allmodconfig
   * um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
   a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
											
										 
											2010-03-24 17:04:11 +09:00
										 |  |  | #include <linux/slab.h>
 | 
					
						
							| 
									
										
										
										
											2012-11-19 15:39:12 +08:00
										 |  |  | #include <linux/of.h>
 | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | #include <linux/i2c.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/power_supply.h>
 | 
					
						
							|  |  |  | #include <linux/mfd/max8925.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* registers in GPM */ | 
					
						
							|  |  |  | #define MAX8925_OUT5VEN			0x54
 | 
					
						
							|  |  |  | #define MAX8925_OUT3VEN			0x58
 | 
					
						
							|  |  |  | #define MAX8925_CHG_CNTL1		0x7c
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* bits definition */ | 
					
						
							|  |  |  | #define MAX8925_CHG_STAT_VSYSLOW	(1 << 0)
 | 
					
						
							|  |  |  | #define MAX8925_CHG_STAT_MODE_MASK	(3 << 2)
 | 
					
						
							|  |  |  | #define MAX8925_CHG_STAT_EN_MASK	(1 << 4)
 | 
					
						
							|  |  |  | #define MAX8925_CHG_MBDET		(1 << 1)
 | 
					
						
							|  |  |  | #define MAX8925_CHG_AC_RANGE_MASK	(3 << 6)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* registers in ADC */ | 
					
						
							|  |  |  | #define MAX8925_ADC_RES_CNFG1		0x06
 | 
					
						
							|  |  |  | #define MAX8925_ADC_AVG_CNFG1		0x07
 | 
					
						
							|  |  |  | #define MAX8925_ADC_ACQ_CNFG1		0x08
 | 
					
						
							|  |  |  | #define MAX8925_ADC_ACQ_CNFG2		0x09
 | 
					
						
							|  |  |  | /* 2 bytes registers in below. MSB is 1st, LSB is 2nd. */ | 
					
						
							|  |  |  | #define MAX8925_ADC_AUX2		0x62
 | 
					
						
							|  |  |  | #define MAX8925_ADC_VCHG		0x64
 | 
					
						
							|  |  |  | #define MAX8925_ADC_VBBATT		0x66
 | 
					
						
							|  |  |  | #define MAX8925_ADC_VMBATT		0x68
 | 
					
						
							|  |  |  | #define MAX8925_ADC_ISNS		0x6a
 | 
					
						
							|  |  |  | #define MAX8925_ADC_THM			0x6c
 | 
					
						
							|  |  |  | #define MAX8925_ADC_TDIE		0x6e
 | 
					
						
							|  |  |  | #define MAX8925_CMD_AUX2		0xc8
 | 
					
						
							|  |  |  | #define MAX8925_CMD_VCHG		0xd0
 | 
					
						
							|  |  |  | #define MAX8925_CMD_VBBATT		0xd8
 | 
					
						
							|  |  |  | #define MAX8925_CMD_VMBATT		0xe0
 | 
					
						
							|  |  |  | #define MAX8925_CMD_ISNS		0xe8
 | 
					
						
							|  |  |  | #define MAX8925_CMD_THM			0xf0
 | 
					
						
							|  |  |  | #define MAX8925_CMD_TDIE		0xf8
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  | 	MEASURE_AUX2, | 
					
						
							|  |  |  | 	MEASURE_VCHG, | 
					
						
							|  |  |  | 	MEASURE_VBBATT, | 
					
						
							|  |  |  | 	MEASURE_VMBATT, | 
					
						
							|  |  |  | 	MEASURE_ISNS, | 
					
						
							|  |  |  | 	MEASURE_THM, | 
					
						
							|  |  |  | 	MEASURE_TDIE, | 
					
						
							|  |  |  | 	MEASURE_MAX, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct max8925_power_info { | 
					
						
							|  |  |  | 	struct max8925_chip	*chip; | 
					
						
							|  |  |  | 	struct i2c_client	*gpm; | 
					
						
							|  |  |  | 	struct i2c_client	*adc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct power_supply	ac; | 
					
						
							|  |  |  | 	struct power_supply	usb; | 
					
						
							|  |  |  | 	struct power_supply	battery; | 
					
						
							|  |  |  | 	int			irq_base; | 
					
						
							|  |  |  | 	unsigned		ac_online:1; | 
					
						
							|  |  |  | 	unsigned		usb_online:1; | 
					
						
							|  |  |  | 	unsigned		bat_online:1; | 
					
						
							|  |  |  | 	unsigned		chg_mode:2; | 
					
						
							|  |  |  | 	unsigned		batt_detect:1;	/* detecing MB by ID pin */ | 
					
						
							|  |  |  | 	unsigned		topoff_threshold:2; | 
					
						
							|  |  |  | 	unsigned		fast_charge:3; | 
					
						
							| 
									
										
										
										
											2011-11-25 23:19:37 +04:00
										 |  |  | 	unsigned		no_temp_support:1; | 
					
						
							| 
									
										
										
										
											2011-11-25 23:24:03 +04:00
										 |  |  | 	unsigned		no_insert_detect:1; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	int (*set_charger) (int); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __set_charger(struct max8925_power_info *info, int enable) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct max8925_chip *chip = info->chip; | 
					
						
							|  |  |  | 	if (enable) { | 
					
						
							|  |  |  | 		/* enable charger in platform */ | 
					
						
							|  |  |  | 		if (info->set_charger) | 
					
						
							|  |  |  | 			info->set_charger(1); | 
					
						
							|  |  |  | 		/* enable charger */ | 
					
						
							|  |  |  | 		max8925_set_bits(info->gpm, MAX8925_CHG_CNTL1, 1 << 7, 0); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* disable charge */ | 
					
						
							|  |  |  | 		max8925_set_bits(info->gpm, MAX8925_CHG_CNTL1, 1 << 7, 1 << 7); | 
					
						
							|  |  |  | 		if (info->set_charger) | 
					
						
							|  |  |  | 			info->set_charger(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dev_dbg(chip->dev, "%s\n", (enable) ? "Enable charger" | 
					
						
							|  |  |  | 		: "Disable charger"); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static irqreturn_t max8925_charger_handler(int irq, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct max8925_power_info *info = (struct max8925_power_info *)data; | 
					
						
							|  |  |  | 	struct max8925_chip *chip = info->chip; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (irq - chip->irq_base) { | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_DC_R: | 
					
						
							|  |  |  | 		info->ac_online = 1; | 
					
						
							|  |  |  | 		__set_charger(info, 1); | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Adapter inserted\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_DC_F: | 
					
						
							|  |  |  | 		info->ac_online = 0; | 
					
						
							|  |  |  | 		__set_charger(info, 0); | 
					
						
							| 
									
										
										
										
											2011-11-25 23:19:37 +04:00
										 |  |  | 		dev_dbg(chip->dev, "Adapter removed\n"); | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_THM_OK_F: | 
					
						
							|  |  |  | 		/* Battery is not ready yet */ | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Battery temperature is out of range\n"); | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_DC_OVP: | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Error detection\n"); | 
					
						
							|  |  |  | 		__set_charger(info, 0); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_THM_OK_R: | 
					
						
							|  |  |  | 		/* Battery is ready now */ | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Battery temperature is in range\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_SYSLOW_R: | 
					
						
							|  |  |  | 		/* VSYS is low */ | 
					
						
							|  |  |  | 		dev_info(chip->dev, "Sys power is too low\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_SYSLOW_F: | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Sys power is above low threshold\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_DONE: | 
					
						
							|  |  |  | 		__set_charger(info, 0); | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Charging is done\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_TOPOFF: | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Charging in top-off mode\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_TMR_FAULT: | 
					
						
							|  |  |  | 		__set_charger(info, 0); | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Safe timer is expired\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MAX8925_IRQ_VCHG_RST: | 
					
						
							|  |  |  | 		__set_charger(info, 0); | 
					
						
							|  |  |  | 		dev_dbg(chip->dev, "Charger is reset\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return IRQ_HANDLED; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int start_measure(struct max8925_power_info *info, int type) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned char buf[2] = {0, 0}; | 
					
						
							| 
									
										
										
										
											2011-09-02 04:20:01 +02:00
										 |  |  | 	int meas_cmd; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	int meas_reg = 0, ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (type) { | 
					
						
							|  |  |  | 	case MEASURE_VCHG: | 
					
						
							| 
									
										
										
										
											2011-09-02 04:20:01 +02:00
										 |  |  | 		meas_cmd = MAX8925_CMD_VCHG; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 		meas_reg = MAX8925_ADC_VCHG; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MEASURE_VBBATT: | 
					
						
							| 
									
										
										
										
											2011-09-02 04:20:01 +02:00
										 |  |  | 		meas_cmd = MAX8925_CMD_VBBATT; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 		meas_reg = MAX8925_ADC_VBBATT; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MEASURE_VMBATT: | 
					
						
							| 
									
										
										
										
											2011-09-02 04:20:01 +02:00
										 |  |  | 		meas_cmd = MAX8925_CMD_VMBATT; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 		meas_reg = MAX8925_ADC_VMBATT; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case MEASURE_ISNS: | 
					
						
							| 
									
										
										
										
											2011-09-02 04:20:01 +02:00
										 |  |  | 		meas_cmd = MAX8925_CMD_ISNS; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 		meas_reg = MAX8925_ADC_ISNS; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-02 04:20:01 +02:00
										 |  |  | 	max8925_reg_write(info->adc, meas_cmd, 0); | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	max8925_bulk_read(info->adc, meas_reg, 2, buf); | 
					
						
							| 
									
										
										
										
											2011-11-25 21:25:23 +04:00
										 |  |  | 	ret = ((buf[0]<<8) | buf[1]) >> 4; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int max8925_ac_get_prop(struct power_supply *psy, | 
					
						
							|  |  |  | 			       enum power_supply_property psp, | 
					
						
							|  |  |  | 			       union power_supply_propval *val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct max8925_power_info *info = dev_get_drvdata(psy->dev->parent); | 
					
						
							|  |  |  | 	int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (psp) { | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_ONLINE: | 
					
						
							|  |  |  | 		val->intval = info->ac_online; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_VOLTAGE_NOW: | 
					
						
							|  |  |  | 		if (info->ac_online) { | 
					
						
							|  |  |  | 			ret = start_measure(info, MEASURE_VCHG); | 
					
						
							|  |  |  | 			if (ret >= 0) { | 
					
						
							| 
									
										
										
										
											2011-11-25 21:25:23 +04:00
										 |  |  | 				val->intval = ret * 2000;	/* unit is uV */ | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 				goto out; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ret = -ENODATA; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		ret = -ENODEV; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static enum power_supply_property max8925_ac_props[] = { | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_ONLINE, | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_VOLTAGE_NOW, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int max8925_usb_get_prop(struct power_supply *psy, | 
					
						
							|  |  |  | 				enum power_supply_property psp, | 
					
						
							|  |  |  | 				union power_supply_propval *val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct max8925_power_info *info = dev_get_drvdata(psy->dev->parent); | 
					
						
							|  |  |  | 	int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (psp) { | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_ONLINE: | 
					
						
							|  |  |  | 		val->intval = info->usb_online; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_VOLTAGE_NOW: | 
					
						
							|  |  |  | 		if (info->usb_online) { | 
					
						
							|  |  |  | 			ret = start_measure(info, MEASURE_VCHG); | 
					
						
							|  |  |  | 			if (ret >= 0) { | 
					
						
							| 
									
										
										
										
											2011-11-25 21:25:23 +04:00
										 |  |  | 				val->intval = ret * 2000;	/* unit is uV */ | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 				goto out; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ret = -ENODATA; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		ret = -ENODEV; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static enum power_supply_property max8925_usb_props[] = { | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_ONLINE, | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_VOLTAGE_NOW, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int max8925_bat_get_prop(struct power_supply *psy, | 
					
						
							|  |  |  | 				enum power_supply_property psp, | 
					
						
							|  |  |  | 				union power_supply_propval *val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct max8925_power_info *info = dev_get_drvdata(psy->dev->parent); | 
					
						
							|  |  |  | 	int ret = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (psp) { | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_ONLINE: | 
					
						
							|  |  |  | 		val->intval = info->bat_online; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_VOLTAGE_NOW: | 
					
						
							|  |  |  | 		if (info->bat_online) { | 
					
						
							|  |  |  | 			ret = start_measure(info, MEASURE_VMBATT); | 
					
						
							|  |  |  | 			if (ret >= 0) { | 
					
						
							| 
									
										
										
										
											2011-11-25 21:25:23 +04:00
										 |  |  | 				val->intval = ret * 2000;	/* unit is uV */ | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 				ret = 0; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ret = -ENODATA; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_CURRENT_NOW: | 
					
						
							|  |  |  | 		if (info->bat_online) { | 
					
						
							|  |  |  | 			ret = start_measure(info, MEASURE_ISNS); | 
					
						
							|  |  |  | 			if (ret >= 0) { | 
					
						
							| 
									
										
										
										
											2011-11-25 21:25:23 +04:00
										 |  |  | 				/* assume r_sns is 0.02 */ | 
					
						
							|  |  |  | 				ret = ((ret * 6250) - 3125) /* uA */; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 				val->intval = 0; | 
					
						
							|  |  |  | 				if (ret > 0) | 
					
						
							|  |  |  | 					val->intval = ret; /* unit is mA */ | 
					
						
							|  |  |  | 				ret = 0; | 
					
						
							|  |  |  | 				break; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ret = -ENODATA; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_CHARGE_TYPE: | 
					
						
							|  |  |  | 		if (!info->bat_online) { | 
					
						
							|  |  |  | 			ret = -ENODATA; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ret = max8925_reg_read(info->gpm, MAX8925_CHG_STATUS); | 
					
						
							|  |  |  | 		ret = (ret & MAX8925_CHG_STAT_MODE_MASK) >> 2; | 
					
						
							|  |  |  | 		switch (ret) { | 
					
						
							|  |  |  | 		case 1: | 
					
						
							|  |  |  | 			val->intval = POWER_SUPPLY_CHARGE_TYPE_FAST; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 0: | 
					
						
							|  |  |  | 		case 2: | 
					
						
							|  |  |  | 			val->intval = POWER_SUPPLY_CHARGE_TYPE_TRICKLE; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 3: | 
					
						
							|  |  |  | 			val->intval = POWER_SUPPLY_CHARGE_TYPE_NONE; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ret = 0; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case POWER_SUPPLY_PROP_STATUS: | 
					
						
							|  |  |  | 		if (!info->bat_online) { | 
					
						
							|  |  |  | 			ret = -ENODATA; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ret = max8925_reg_read(info->gpm, MAX8925_CHG_STATUS); | 
					
						
							|  |  |  | 		if (info->usb_online || info->ac_online) { | 
					
						
							|  |  |  | 			val->intval = POWER_SUPPLY_STATUS_NOT_CHARGING; | 
					
						
							|  |  |  | 			if (ret & MAX8925_CHG_STAT_EN_MASK) | 
					
						
							|  |  |  | 				val->intval = POWER_SUPPLY_STATUS_CHARGING; | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 			val->intval = POWER_SUPPLY_STATUS_DISCHARGING; | 
					
						
							|  |  |  | 		ret = 0; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		ret = -ENODEV; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static enum power_supply_property max8925_battery_props[] = { | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_ONLINE, | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_VOLTAGE_NOW, | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_CURRENT_NOW, | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_CHARGE_TYPE, | 
					
						
							|  |  |  | 	POWER_SUPPLY_PROP_STATUS, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define REQUEST_IRQ(_irq, _name)					\
 | 
					
						
							|  |  |  | do {									\ | 
					
						
							|  |  |  | 	ret = request_threaded_irq(chip->irq_base + _irq, NULL,		\ | 
					
						
							|  |  |  | 				    max8925_charger_handler,		\ | 
					
						
							|  |  |  | 				    IRQF_ONESHOT, _name, info);		\ | 
					
						
							|  |  |  | 	if (ret)							\ | 
					
						
							|  |  |  | 		dev_err(chip->dev, "Failed to request IRQ #%d: %d\n",	\ | 
					
						
							|  |  |  | 			_irq, ret);					\ | 
					
						
							|  |  |  | } while (0) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 13:22:23 -05:00
										 |  |  | static int max8925_init_charger(struct max8925_chip *chip, | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 					  struct max8925_power_info *info) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	REQUEST_IRQ(MAX8925_IRQ_VCHG_DC_OVP, "ac-ovp"); | 
					
						
							| 
									
										
										
										
											2011-11-25 23:24:03 +04:00
										 |  |  | 	if (!info->no_insert_detect) { | 
					
						
							|  |  |  | 		REQUEST_IRQ(MAX8925_IRQ_VCHG_DC_F, "ac-remove"); | 
					
						
							|  |  |  | 		REQUEST_IRQ(MAX8925_IRQ_VCHG_DC_R, "ac-insert"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-11-25 23:19:37 +04:00
										 |  |  | 	if (!info->no_temp_support) { | 
					
						
							|  |  |  | 		REQUEST_IRQ(MAX8925_IRQ_VCHG_THM_OK_R, "batt-temp-in-range"); | 
					
						
							|  |  |  | 		REQUEST_IRQ(MAX8925_IRQ_VCHG_THM_OK_F, "batt-temp-out-range"); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	REQUEST_IRQ(MAX8925_IRQ_VCHG_SYSLOW_F, "vsys-high"); | 
					
						
							|  |  |  | 	REQUEST_IRQ(MAX8925_IRQ_VCHG_SYSLOW_R, "vsys-low"); | 
					
						
							|  |  |  | 	REQUEST_IRQ(MAX8925_IRQ_VCHG_RST, "charger-reset"); | 
					
						
							|  |  |  | 	REQUEST_IRQ(MAX8925_IRQ_VCHG_DONE, "charger-done"); | 
					
						
							|  |  |  | 	REQUEST_IRQ(MAX8925_IRQ_VCHG_TOPOFF, "charger-topoff"); | 
					
						
							|  |  |  | 	REQUEST_IRQ(MAX8925_IRQ_VCHG_TMR_FAULT, "charger-timer-expire"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	info->usb_online = 0; | 
					
						
							|  |  |  | 	info->bat_online = 0; | 
					
						
							| 
									
										
										
										
											2011-09-02 04:20:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* check for power - can miss interrupt at boot time */ | 
					
						
							|  |  |  | 	if (start_measure(info, MEASURE_VCHG) * 2000 > 500000) | 
					
						
							|  |  |  | 		info->ac_online = 1; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		info->ac_online = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	ret = max8925_reg_read(info->gpm, MAX8925_CHG_STATUS); | 
					
						
							|  |  |  | 	if (ret >= 0) { | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * If battery detection is enabled, ID pin of battery is | 
					
						
							|  |  |  | 		 * connected to MBDET pin of MAX8925. It could be used to | 
					
						
							|  |  |  | 		 * detect battery presence. | 
					
						
							|  |  |  | 		 * Otherwise, we have to assume that battery is always on. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (info->batt_detect) | 
					
						
							|  |  |  | 			info->bat_online = (ret & MAX8925_CHG_MBDET) ? 0 : 1; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			info->bat_online = 1; | 
					
						
							|  |  |  | 		if (ret & MAX8925_CHG_AC_RANGE_MASK) | 
					
						
							|  |  |  | 			info->ac_online = 1; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			info->ac_online = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* disable charge */ | 
					
						
							|  |  |  | 	max8925_set_bits(info->gpm, MAX8925_CHG_CNTL1, 1 << 7, 1 << 7); | 
					
						
							|  |  |  | 	/* set charging current in charge topoff mode */ | 
					
						
							|  |  |  | 	max8925_set_bits(info->gpm, MAX8925_CHG_CNTL1, 3 << 5, | 
					
						
							|  |  |  | 			 info->topoff_threshold << 5); | 
					
						
							|  |  |  | 	/* set charing current in fast charge mode */ | 
					
						
							|  |  |  | 	max8925_set_bits(info->gpm, MAX8925_CHG_CNTL1, 7, info->fast_charge); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 13:26:07 -05:00
										 |  |  | static int max8925_deinit_charger(struct max8925_power_info *info) | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct max8925_chip *chip = info->chip; | 
					
						
							|  |  |  | 	int irq; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	irq = chip->irq_base + MAX8925_IRQ_VCHG_DC_OVP; | 
					
						
							|  |  |  | 	for (; irq <= chip->irq_base + MAX8925_IRQ_VCHG_TMR_FAULT; irq++) | 
					
						
							|  |  |  | 		free_irq(irq, info); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 15:39:12 +08:00
										 |  |  | #ifdef CONFIG_OF
 | 
					
						
							|  |  |  | static struct max8925_power_pdata * | 
					
						
							|  |  |  | max8925_power_dt_init(struct platform_device *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct device_node *nproot = pdev->dev.parent->of_node; | 
					
						
							|  |  |  | 	struct device_node *np; | 
					
						
							|  |  |  | 	int batt_detect; | 
					
						
							|  |  |  | 	int topoff_threshold; | 
					
						
							|  |  |  | 	int fast_charge; | 
					
						
							|  |  |  | 	int no_temp_support; | 
					
						
							|  |  |  | 	int no_insert_detect; | 
					
						
							|  |  |  | 	struct max8925_power_pdata *pdata; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!nproot) | 
					
						
							|  |  |  | 		return pdev->dev.platform_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	np = of_find_node_by_name(nproot, "charger"); | 
					
						
							|  |  |  | 	if (!np) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "failed to find charger node\n"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pdata = devm_kzalloc(&pdev->dev, | 
					
						
							|  |  |  | 			sizeof(struct max8925_power_pdata), | 
					
						
							|  |  |  | 			GFP_KERNEL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	of_property_read_u32(np, "topoff-threshold", &topoff_threshold); | 
					
						
							|  |  |  | 	of_property_read_u32(np, "batt-detect", &batt_detect); | 
					
						
							|  |  |  | 	of_property_read_u32(np, "fast-charge", &fast_charge); | 
					
						
							|  |  |  | 	of_property_read_u32(np, "no-insert-detect", &no_insert_detect); | 
					
						
							|  |  |  | 	of_property_read_u32(np, "no-temp-support", &no_temp_support); | 
					
						
							| 
									
										
										
										
											2013-08-26 15:06:36 +08:00
										 |  |  | 	of_node_put(np); | 
					
						
							| 
									
										
										
										
											2012-11-19 15:39:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	pdata->batt_detect = batt_detect; | 
					
						
							|  |  |  | 	pdata->fast_charge = fast_charge; | 
					
						
							|  |  |  | 	pdata->topoff_threshold = topoff_threshold; | 
					
						
							|  |  |  | 	pdata->no_insert_detect = no_insert_detect; | 
					
						
							|  |  |  | 	pdata->no_temp_support = no_temp_support; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pdata; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | static struct max8925_power_pdata * | 
					
						
							|  |  |  | max8925_power_dt_init(struct platform_device *pdev) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return pdev->dev.platform_data; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 13:22:23 -05:00
										 |  |  | static int max8925_power_probe(struct platform_device *pdev) | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct max8925_chip *chip = dev_get_drvdata(pdev->dev.parent); | 
					
						
							|  |  |  | 	struct max8925_power_pdata *pdata = NULL; | 
					
						
							|  |  |  | 	struct max8925_power_info *info; | 
					
						
							|  |  |  | 	int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 15:39:12 +08:00
										 |  |  | 	pdata = max8925_power_dt_init(pdev); | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	if (!pdata) { | 
					
						
							|  |  |  | 		dev_err(&pdev->dev, "platform data isn't assigned to " | 
					
						
							|  |  |  | 			"power supply\n"); | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-11 15:31:39 +09:00
										 |  |  | 	info = devm_kzalloc(&pdev->dev, sizeof(struct max8925_power_info), | 
					
						
							|  |  |  | 				GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	if (!info) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	info->chip = chip; | 
					
						
							|  |  |  | 	info->gpm = chip->i2c; | 
					
						
							|  |  |  | 	info->adc = chip->adc; | 
					
						
							| 
									
										
										
										
											2011-04-18 22:04:08 +08:00
										 |  |  | 	platform_set_drvdata(pdev, info); | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	info->ac.name = "max8925-ac"; | 
					
						
							|  |  |  | 	info->ac.type = POWER_SUPPLY_TYPE_MAINS; | 
					
						
							|  |  |  | 	info->ac.properties = max8925_ac_props; | 
					
						
							|  |  |  | 	info->ac.num_properties = ARRAY_SIZE(max8925_ac_props); | 
					
						
							|  |  |  | 	info->ac.get_property = max8925_ac_get_prop; | 
					
						
							| 
									
										
										
										
											2011-08-29 09:32:04 -07:00
										 |  |  | 	info->ac.supplied_to = pdata->supplied_to; | 
					
						
							|  |  |  | 	info->ac.num_supplicants = pdata->num_supplicants; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	ret = power_supply_register(&pdev->dev, &info->ac); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	info->ac.dev->parent = &pdev->dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	info->usb.name = "max8925-usb"; | 
					
						
							|  |  |  | 	info->usb.type = POWER_SUPPLY_TYPE_USB; | 
					
						
							|  |  |  | 	info->usb.properties = max8925_usb_props; | 
					
						
							|  |  |  | 	info->usb.num_properties = ARRAY_SIZE(max8925_usb_props); | 
					
						
							|  |  |  | 	info->usb.get_property = max8925_usb_get_prop; | 
					
						
							| 
									
										
										
										
											2011-08-29 09:32:04 -07:00
										 |  |  | 	info->usb.supplied_to = pdata->supplied_to; | 
					
						
							|  |  |  | 	info->usb.num_supplicants = pdata->num_supplicants; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	ret = power_supply_register(&pdev->dev, &info->usb); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto out_usb; | 
					
						
							|  |  |  | 	info->usb.dev->parent = &pdev->dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	info->battery.name = "max8925-battery"; | 
					
						
							|  |  |  | 	info->battery.type = POWER_SUPPLY_TYPE_BATTERY; | 
					
						
							|  |  |  | 	info->battery.properties = max8925_battery_props; | 
					
						
							|  |  |  | 	info->battery.num_properties = ARRAY_SIZE(max8925_battery_props); | 
					
						
							|  |  |  | 	info->battery.get_property = max8925_bat_get_prop; | 
					
						
							|  |  |  | 	ret = power_supply_register(&pdev->dev, &info->battery); | 
					
						
							|  |  |  | 	if (ret) | 
					
						
							|  |  |  | 		goto out_battery; | 
					
						
							|  |  |  | 	info->battery.dev->parent = &pdev->dev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	info->batt_detect = pdata->batt_detect; | 
					
						
							|  |  |  | 	info->topoff_threshold = pdata->topoff_threshold; | 
					
						
							|  |  |  | 	info->fast_charge = pdata->fast_charge; | 
					
						
							|  |  |  | 	info->set_charger = pdata->set_charger; | 
					
						
							| 
									
										
										
										
											2011-11-25 23:19:37 +04:00
										 |  |  | 	info->no_temp_support = pdata->no_temp_support; | 
					
						
							| 
									
										
										
										
											2011-11-25 23:24:03 +04:00
										 |  |  | 	info->no_insert_detect = pdata->no_insert_detect; | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	max8925_init_charger(chip, info); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | out_battery: | 
					
						
							|  |  |  | 	power_supply_unregister(&info->battery); | 
					
						
							|  |  |  | out_usb: | 
					
						
							|  |  |  | 	power_supply_unregister(&info->ac); | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-19 13:26:07 -05:00
										 |  |  | static int max8925_power_remove(struct platform_device *pdev) | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct max8925_power_info *info = platform_get_drvdata(pdev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (info) { | 
					
						
							|  |  |  | 		power_supply_unregister(&info->ac); | 
					
						
							|  |  |  | 		power_supply_unregister(&info->usb); | 
					
						
							|  |  |  | 		power_supply_unregister(&info->battery); | 
					
						
							|  |  |  | 		max8925_deinit_charger(info); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_driver max8925_power_driver = { | 
					
						
							|  |  |  | 	.probe	= max8925_power_probe, | 
					
						
							| 
									
										
										
										
											2012-11-19 13:20:40 -05:00
										 |  |  | 	.remove	= max8925_power_remove, | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 	.driver	= { | 
					
						
							|  |  |  | 		.name	= "max8925-power", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-26 12:01:10 +08:00
										 |  |  | module_platform_driver(max8925_power_driver); | 
					
						
							| 
									
										
										
										
											2010-01-25 10:38:35 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); | 
					
						
							|  |  |  | MODULE_DESCRIPTION("Power supply driver for MAX8925"); | 
					
						
							|  |  |  | MODULE_ALIAS("platform:max8925-power"); |