devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] mfd: lp87565: Add lp87565 PMIC support
@ 2017-05-19 12:42 Keerthy
  2017-05-19 12:42 ` [PATCH 1/3] " Keerthy
       [not found] ` <1495197739-17446-1-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>
  0 siblings, 2 replies; 24+ messages in thread
From: Keerthy @ 2017-05-19 12:42 UTC (permalink / raw)
  To: broonie-DgEjT+Ai2ygdnm+yROfE0A, lee.jones-QSEj5FYQhm4dnm+yROfE0A,
	robh+dt-DgEjT+Ai2ygdnm+yROfE0A
  Cc: j-keerthy-l0cyMroinI0, t-kristo-l0cyMroinI0,
	tony-4v6yS6AI5VpBDgjK7y7TUQ, mark.rutland-5wv7dgnIgG8,
	linux-omap-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA

The LP87565 chip is a power management IC for Portable Navigation Systems
    and Tablet Computing devices. It contains the following components:

     - Regulators.
     - Configurable General Purpose Output Signals(GPO).

PMIC interacts with the main processor through i2c. PMIC has
a bunch of regulatos (Step-Down DC-DC Converter Cores)
that can be programmed to be single phase or multi phase
regulators. PMIC also has a couple of GPOs(General Purpose Output
Signals).

The register sets and the individual bit fields of registers were
compared against lp87* PMICs. None were matching even close. Hence
came up with new drivers and is based on lp873x drivers.

Keerthy (3):
  mfd: lp87565: Add lp87565 PMIC support
  regulator: lp87565: Add support for lp87565 PMIC regulators
  regulator: tps65917: Add support for SMPS12

 Documentation/devicetree/bindings/mfd/lp87565.txt |  44 ++++
 drivers/mfd/Kconfig                               |  14 ++
 drivers/mfd/Makefile                              |   1 +
 drivers/mfd/lp87565.c                             | 103 ++++++++
 drivers/regulator/Kconfig                         |   8 +
 drivers/regulator/Makefile                        |   1 +
 drivers/regulator/lp87565-regulator.c             | 244 +++++++++++++++++++
 drivers/regulator/palmas-regulator.c              |  18 +-
 include/linux/mfd/lp87565.h                       | 275 ++++++++++++++++++++++
 include/linux/mfd/palmas.h                        |   2 +
 10 files changed, 707 insertions(+), 3 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/lp87565.txt
 create mode 100644 drivers/mfd/lp87565.c
 create mode 100644 drivers/regulator/lp87565-regulator.c
 create mode 100644 include/linux/mfd/lp87565.h

-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2017-05-26 11:42 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-19 12:42 [PATCH 0/3] mfd: lp87565: Add lp87565 PMIC support Keerthy
2017-05-19 12:42 ` [PATCH 1/3] " Keerthy
     [not found]   ` <1495197739-17446-2-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>
2017-05-19 15:42     ` Andrew F. Davis
     [not found]       ` <f6a16fe0-4212-bc73-090c-351b189ed864-l0cyMroinI0@public.gmane.org>
2017-05-22  4:23         ` Keerthy
2017-05-23  3:08           ` Keerthy
     [not found]             ` <f62f225b-931e-c68b-4e59-243c0c0b0d02-l0cyMroinI0@public.gmane.org>
2017-05-23  6:56               ` Lee Jones
2017-05-22 17:48     ` Lee Jones
2017-05-23  2:35       ` Keerthy
     [not found]         ` <26169872-1b43-88d1-3e5b-367b4d446222-l0cyMroinI0@public.gmane.org>
2017-05-23  3:00           ` Keerthy
2017-05-23  6:57           ` Lee Jones
2017-05-23  7:41             ` Keerthy
     [not found]               ` <a753fdb4-feb9-0894-6f40-a19d3f05714c-l0cyMroinI0@public.gmane.org>
2017-05-23  7:58                 ` Keerthy
2017-05-23  8:47                   ` Lee Jones
2017-05-23  9:53                     ` Keerthy
2017-05-23  8:45               ` Lee Jones
2017-05-23 10:11                 ` Keerthy
     [not found]                   ` <ce83f605-879b-dee0-d09e-63d01a7f66c7-l0cyMroinI0@public.gmane.org>
2017-05-23 12:21                     ` Keerthy
2017-05-23 15:39                     ` Lee Jones
     [not found] ` <1495197739-17446-1-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>
2017-05-19 12:42   ` [PATCH 2/3] regulator: lp87565: Add support for lp87565 PMIC regulators Keerthy
     [not found]     ` <1495197739-17446-3-git-send-email-j-keerthy-l0cyMroinI0@public.gmane.org>
2017-05-19 15:53       ` Andrew F. Davis
     [not found]         ` <d7637719-a3f8-b711-f773-75ec5da8880b-l0cyMroinI0@public.gmane.org>
2017-05-22  4:28           ` Keerthy
2017-05-19 12:42   ` [PATCH 3/3] regulator: tps65917: Add support for SMPS12 Keerthy
2017-05-22 17:41     ` Lee Jones
2017-05-26 11:42     ` Applied "regulator: tps65917: Add support for SMPS12" to the regulator tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).