All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v8 0/4] mfd: rt5033: Add Richtek RT5033 drivers
@ 2014-12-09 12:03 Beomho Seo
       [not found] ` <1418126634-4781-1-git-send-email-beomho.seo-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Beomho Seo @ 2014-12-09 12:03 UTC (permalink / raw)
  To: linux-kernel, linux-pm, devicetree
  Cc: sameo, lee.jone, lgirdwood, broonie, sre, dbaryshkov, dwmw2,
	robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak,
	cw00.choi, geunsik.lim, inki.dae, sw0312.kim, Beomho Seo

 This patchset adds driver for Richtek rt5033 chip The chip contains
switching charge mode Li-Ion/Li-Polymer battery charger, fuelgauge, regulators.
This patchset provides common support for accessing the device.
This patchset have been tested base on exynos board.

Changes in v8
- Add description of hardware.
- Move structure.

Changes in v7
- Use small description.
- Change some names for a variable.
- Revise of_device_id struct style.

Changes in v6
- Fix white space issue in mfd cell struct.

Changes in v5
- Change possible built as a module.
- Revise rt5033_dev mfd cell entry.
- Fix incorrect typo.
- Add module alias.

Changes in v4
- rt5033 regulator patch is applied by Mark Brown.

Changes in v3
- Correct sentence errors.
- Add author information the top of each drivers.
- Remove unnecessary pre-initialise, struct member(rt5033->i2c) and blink.
- Change some return check.
- Use bool and of_match_ptr().

Changes in v2:
- Remove volatile_reg callback. Because this driver not in use regmap cache.
- Remove unnecessary subnode of_compatible.
- Add definde for set high impedance mode of charger.
- Remove unnecessary device specific code.
- Fix wrong register name.
- Fix wrong error message.
- Fix return vallue at error case.
- Revise binding documentation.

Beomho Seo (4):
  mfd: rt5033: Add Richtek RT5033 driver core.
  power: rt5033_battery: Add RT5033 Fuel gauge device driver
  power: rt5033_charger: Add RT5033 charger device driver
  Documentation: Add documentation for rt5033 multifunction device

 Documentation/devicetree/bindings/mfd/rt5033.txt   |  108 +++++
 .../devicetree/bindings/vendor-prefixes.txt        |    1 +
 drivers/mfd/Kconfig                                |   12 +
 drivers/mfd/Makefile                               |    1 +
 drivers/mfd/rt5033.c                               |  142 ++++++
 drivers/power/Kconfig                              |   16 +
 drivers/power/Makefile                             |    2 +
 drivers/power/rt5033_battery.c                     |  177 +++++++
 drivers/power/rt5033_charger.c                     |  485 ++++++++++++++++++++
 include/linux/mfd/rt5033-private.h                 |  260 +++++++++++
 include/linux/mfd/rt5033.h                         |   62 +++
 11 files changed, 1266 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mfd/rt5033.txt
 create mode 100644 drivers/mfd/rt5033.c
 create mode 100644 drivers/power/rt5033_battery.c
 create mode 100644 drivers/power/rt5033_charger.c
 create mode 100644 include/linux/mfd/rt5033-private.h
 create mode 100644 include/linux/mfd/rt5033.h

-- 
1.7.9.5

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

end of thread, other threads:[~2014-12-10 15:17 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-09 12:03 [PATCH v8 0/4] mfd: rt5033: Add Richtek RT5033 drivers Beomho Seo
     [not found] ` <1418126634-4781-1-git-send-email-beomho.seo-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-12-09 12:03   ` [PATCH v8 1/4] mfd: rt5033: Add Richtek RT5033 driver core Beomho Seo
2014-12-09 12:03     ` Beomho Seo
     [not found]     ` <1418126634-4781-2-git-send-email-beomho.seo-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-12-09 14:01       ` Lee Jones
2014-12-09 14:01         ` Lee Jones
2014-12-10 10:37         ` Beomho Seo
     [not found]           ` <54882255.9060303-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-12-10 12:13             ` Lee Jones
2014-12-10 12:13               ` Lee Jones
2014-12-10 12:34               ` Beomho Seo
2014-12-10 15:16     ` Lee Jones
2014-12-09 12:03 ` [PATCH v8 2/4] power: rt5033_battery: Add RT5033 Fuel gauge device driver Beomho Seo
2014-12-09 12:03 ` [PATCH v8 3/4] power: rt5033_charger: Add RT5033 charger " Beomho Seo
2014-12-09 12:03 ` [PATCH v8 4/4] Documentation: Add documentation for rt5033 multifunction device Beomho Seo

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.