linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/3] Introduce usb charger framework to deal with the usb gadget power negotation
@ 2015-08-18 11:14 Baolin Wang
  2015-08-18 11:14 ` [PATCH v3 1/3] gadget: Support for the usb charger framework Baolin Wang
                   ` (2 more replies)
  0 siblings, 3 replies; 16+ messages in thread
From: Baolin Wang @ 2015-08-18 11:14 UTC (permalink / raw)
  To: balbi
  Cc: broonie, linus.walleij, linux-kernel, baolin.wang, gregkh,
	peter.chen, sojka, stern, r.baldyga, yoshihiro.shimoda.uh,
	linux-usb, device-mainlining, sre, dbaryshkov, dwmw2, sameo,
	lee.jones, patches, linux-pm

Currently the Linux kernel does not provide any standard integration of this
feature that integrates the USB subsystem with the system power regulation
provided by PMICs meaning that either vendors must add this in their kernels
or USB gadget devices based on Linux (such as mobile phones) may not behave
as they should.

Providing a standard framework for doing this in the kernel.

Now introduce one user with wm831x_power to support and test the usb charger,
which is pending testing. Moreover there may be other potential users will use
it in future.

Changes since v2:
 - Use macro DEVICE_ATTR_RW()/ATTRIBUTE_GROUPS() and change the method to
   register the attruibutes.
 - Remove the 'name' and 'entry' member of struct 'usb_charger'.
 - Replace devm_kzalloc() with kzalloc() to follow the the lifetime rules.
 - Other modifications.

Baolin Wang (3):
  gadget: Support for the usb charger framework
  gadget: Introduce the usb charger framework
  power: wm831x_power: Support USB charger current limit management

 drivers/power/wm831x_power.c      |   69 +++++
 drivers/usb/gadget/Kconfig        |    7 +
 drivers/usb/gadget/Makefile       |    1 +
 drivers/usb/gadget/charger.c      |  538 +++++++++++++++++++++++++++++++++++++
 drivers/usb/gadget/udc/udc-core.c |   41 ++-
 include/linux/mfd/wm831x/pdata.h  |    3 +
 include/linux/usb/gadget.h        |   20 ++
 include/linux/usb/usb_charger.h   |  138 ++++++++++
 8 files changed, 816 insertions(+), 1 deletion(-)
 create mode 100644 drivers/usb/gadget/charger.c
 create mode 100644 include/linux/usb/usb_charger.h

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH v3 0/3] Introduce USB charger support in USB phy
@ 2017-07-25  7:59 Baolin Wang
  2017-07-25  8:00 ` [PATCH v3 3/3] power: wm831x_power: Support USB charger current limit management Baolin Wang
  0 siblings, 1 reply; 16+ messages in thread
From: Baolin Wang @ 2017-07-25  7:59 UTC (permalink / raw)
  To: balbi, gregkh, sre, lee.jones, robh+dt, mark.rutland
  Cc: jun.li, peter.chen, broonie, john.stultz, neilb, patches,
	baolin.wang, linux-pm, linux-usb, device-mainlining, linux-kernel,
	devicetree

Currently the Linux kernel does not provide any standard integration of this
feature that integrates the USB subsystem with the system power regulation
provided by PMICs meaning that either vendors must add this in their kernels
or USB gadget devices based on Linux (such as mobile phones) may not behave
as they should. Thus provide a standard USB charger support in USB phy core
for doing this in kernel.

Now introduce one user with wm831x_power to support and test the usb charger.
In future we will also cnvert below power drivers:
drivers/power/supply/axp288_charger.c
drivers/power/supply/bq24190_charger.c
drivers/power/supply/charger-manager.c
drivers/power/supply/qcom_smbb.c

Changes since v1:
 - Fix building errors.
Changes since v2:
 - Add DT binding documentation for wm831x_power driver.
 - Change 'usb-phy' as one optional property for wm831x_power driver.

Baolin Wang (3):
  include: uapi: usb: Introduce USB charger type and state definition
  usb: phy: Add USB charger support
  power: wm831x_power: Support USB charger current limit management

 Documentation/devicetree/bindings/mfd/wm831x.txt |    1 +
 drivers/power/supply/wm831x_power.c              |   58 +++++
 drivers/usb/phy/phy.c                            |  272 ++++++++++++++++++++++
 include/linux/usb/phy.h                          |   49 ++++
 include/uapi/linux/usb/charger.h                 |   31 +++
 5 files changed, 411 insertions(+)
 create mode 100644 include/uapi/linux/usb/charger.h

-- 
1.7.9.5

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

end of thread, other threads:[~2017-07-27  2:56 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-18 11:14 [PATCH v3 0/3] Introduce usb charger framework to deal with the usb gadget power negotation Baolin Wang
2015-08-18 11:14 ` [PATCH v3 1/3] gadget: Support for the usb charger framework Baolin Wang
     [not found]   ` <6a4d68543dcffe76993dc70d94a0a04617ef2257.1439866451.git.baolin.wang-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-08-18 16:04     ` Greg KH
2015-08-19  1:29       ` Baolin Wang
2015-08-18 11:14 ` [PATCH v3 2/3] gadget: Introduce " Baolin Wang
2015-08-18 11:14 ` [PATCH v3 3/3] power: wm831x_power: Support USB charger current limit management Baolin Wang
     [not found]   ` <4e3447ef209fbbdc3ee1c82428be2bc19c30bd30.1439866451.git.baolin.wang-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2015-08-18 11:43     ` Lee Jones
2015-08-18 13:24   ` Charles Keepax
2015-08-18 13:51     ` Lee Jones
  -- strict thread matches above, loose matches on Subject: below --
2017-07-25  7:59 [PATCH v3 0/3] Introduce USB charger support in USB phy Baolin Wang
2017-07-25  8:00 ` [PATCH v3 3/3] power: wm831x_power: Support USB charger current limit management Baolin Wang
2017-07-25  9:17   ` Lee Jones
2017-07-25  9:38   ` Charles Keepax
2017-07-25  9:59   ` Sebastian Reichel
2017-07-26  3:05     ` Baolin Wang
2017-07-26 12:08       ` Sebastian Reichel
2017-07-27  2:56         ` Baolin Wang

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).