All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] TWL6030, TWL6032 GPADC driver
@ 2013-07-10  7:08 ` Oleksandr Kozaruk
  0 siblings, 0 replies; 9+ messages in thread
From: Oleksandr Kozaruk @ 2013-07-10  7:08 UTC (permalink / raw)
  To: tony, gg, peter.ujfalusi, kishon, benoit.cousson, grant.likely,
	rob.herring, sameo, ch.naveen, milo.kim, poeschel, balajitk
  Cc: linux-kernel, linux-iio, devicetree-discuss, linux-arm-kernel,
	linux-omap

Hello,

This is version 2 - the driver put in drivers/iio, and
converted using iio facilities as suggested by Graeme.

TWL603[02] GPADC is used to measure battery voltage,
battery temperature, battery presence ID, and could
be used to measure twl603[02] die temperature.
This is used on TI blaze, blaze tablet platforms.

The TWL6030/TWL6032 is a PMIC that has a GPADC with 17/19
channels respectively. Some channels have current
source and are used for measuring voltage drop
on resistive load for detecting battery ID resistance,
or measuring voltage drop on NTC resistors for external
temperature measurements, other channels measure voltage,
(i.e. battery voltage), and have inbuilt voltage dividers,
thus, capable to scale voltage. Some channels are dedicated
for measuring die temperature.

Some channels could be calibrated in 2 points, having
offsets from ideal values in trim registers.

The difference between GPADC in TWL6030 and TWL6032:
- 10 bit vs 12 bit ADC;
- 17 vs 19 channels;
- channels have different purpose(i. e. battery voltage
  channel 8 vs channel 18);
- trim values are interpreted differently.

The driver exports function returning converted value for
requested channels.

Sysfs entries are added to start and read conversion result
in millivolts for chosen channel.

The driver is derived from git://git.omapzoom.org/kernel/omap.git
The original driver's authors and contributors are Balaji T K,
Graeme Gregory, Ambresh K, Girish S Ghongdemath.

The changes to the original driver:
- device tree adaptation;
- drop ioctl support - never been used;
- unified measurement method for both devices;
- get rid of "if (device == X)" code style to data driven;
- drop polling end of conversion and use interrupt instead;
- iio framework is used

Tested with on blaze tablet 2 with OMAP4430(twl6030), and
OMAP4470(twl6032) SOMs.

The patches were tested against 3.10-rc7

Oleksandr Kozaruk (2):
  ARM: dts: twl: Add GPADC data to device tree
  iio: twl6030-gpadc: TWL6030, TWL6032 GPADC driver

 arch/arm/boot/dts/twl6030.dtsi  |    6 +
 drivers/iio/adc/Kconfig         |    8 +
 drivers/iio/adc/Makefile        |    1 +
 drivers/iio/adc/twl6030-gpadc.c | 1019 +++++++++++++++++++++++++++++++++++++++
 4 files changed, 1034 insertions(+)
 create mode 100644 drivers/iio/adc/twl6030-gpadc.c

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-07-10  7:10 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-10  7:08 [PATCH v2 0/2] TWL6030, TWL6032 GPADC driver Oleksandr Kozaruk
2013-07-10  7:08 ` Oleksandr Kozaruk
2013-07-10  7:08 ` Oleksandr Kozaruk
2013-07-10  7:08 ` [PATCH v2 1/2] ARM: dts: twl: Add GPADC data to device tree Oleksandr Kozaruk
2013-07-10  7:08   ` Oleksandr Kozaruk
2013-07-10  7:08   ` Oleksandr Kozaruk
2013-07-10  7:08 ` [PATCH v2 2/2] iio: twl6030-gpadc: TWL6030, TWL6032 GPADC driver Oleksandr Kozaruk
2013-07-10  7:08   ` Oleksandr Kozaruk
2013-07-10  7:08   ` Oleksandr Kozaruk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.