linux-usb.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v10 00/15] TCPM support for FRS and AutoDischarge Disconnect
@ 2020-10-08  6:15 Badhri Jagan Sridharan
  2020-10-08  6:15 ` [PATCH v10 01/15] usb: typec: tcpci: Add a getter method to retrieve tcpm_port reference Badhri Jagan Sridharan
                   ` (16 more replies)
  0 siblings, 17 replies; 26+ messages in thread
From: Badhri Jagan Sridharan @ 2020-10-08  6:15 UTC (permalink / raw)
  To: Guenter Roeck, Heikki Krogerus, Greg Kroah-Hartman, Rob Herring,
	Lee Jones, Mark Brown, Maxime Ripard, Alexandre Belloni,
	Thierry Reding, Prashant Malani, Badhri Jagan Sridharan
  Cc: devicetree, linux-kernel, linux-usb, Amelie Delaunay

Hi,

Made two changes:

1. Added "additionalProperties: false" as suggested by Rob Herring in
https://lore.kernel.org/linux-usb/20201005144618.GA154206@bogus/

2. Removed FRS dts binding constants to address Rob Herring's comment in
https://lore.kernel.org/linux-usb/20201006182940.GA2574941@bogus/

Thanks,
Badhri

Badhri Jagan Sridharan (15):
  usb: typec: tcpci: Add a getter method to retrieve tcpm_port reference
  usb: typec: tcpci: Add set_vbus tcpci callback
  dt-bindings: usb: Maxim type-c controller device tree binding document
  usb: typec: tcpci_maxim: Chip level TCPC driver
  dt-bindings: connector: Add property to set initial current cap for
    FRS
  usb: typec: tcpm: Add support for Sink Fast Role SWAP(FRS)
  usb: typec: tcpci: Implement callbacks for FRS
  usb: typec: tcpci_maxim: Add support for Sink FRS
  usb: typec: tcpm: frs sourcing vbus callback
  usb: typec: tcpci: frs sourcing vbus callback
  usb: typec: tcpci_max77759: Fix vbus stuck on upon diconnecting sink
  usb: typec: tcpm: Parse frs type-c current from device tree
  usb: typec: tcpm: Implement enabling Auto Discharge disconnect support
  usb: typec: tcpci: Implement Auto discharge disconnect callbacks
  usb: typec: tcpci_maxim: Enable auto discharge disconnect

 .../bindings/connector/usb-connector.yaml     |  26 +
 .../devicetree/bindings/usb/maxim,tcpci.yaml  |  70 +++
 drivers/usb/typec/tcpm/Kconfig                |   6 +
 drivers/usb/typec/tcpm/Makefile               |  15 +-
 drivers/usb/typec/tcpm/tcpci.c                | 102 +++-
 drivers/usb/typec/tcpm/tcpci.h                |  30 +-
 drivers/usb/typec/tcpm/tcpci_maxim.c          | 504 ++++++++++++++++++
 drivers/usb/typec/tcpm/tcpm.c                 | 299 ++++++++++-
 include/linux/usb/pd.h                        |  19 +-
 include/linux/usb/tcpm.h                      |  27 +-
 include/linux/usb/typec.h                     |  12 +
 11 files changed, 1085 insertions(+), 25 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/usb/maxim,tcpci.yaml
 create mode 100644 drivers/usb/typec/tcpm/tcpci_maxim.c

-- 
2.28.0.806.g8561365e88-goog


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

end of thread, other threads:[~2020-10-19 13:55 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08  6:15 [PATCH v10 00/15] TCPM support for FRS and AutoDischarge Disconnect Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 01/15] usb: typec: tcpci: Add a getter method to retrieve tcpm_port reference Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 02/15] usb: typec: tcpci: Add set_vbus tcpci callback Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 03/15] dt-bindings: usb: Maxim type-c controller device tree binding document Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 04/15] usb: typec: tcpci_maxim: Chip level TCPC driver Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 05/15] dt-bindings: connector: Add property to set initial current cap for FRS Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 06/15] usb: typec: tcpm: Add support for Sink Fast Role SWAP(FRS) Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 07/15] usb: typec: tcpci: Implement callbacks for FRS Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 08/15] usb: typec: tcpci_maxim: Add support for Sink FRS Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 09/15] usb: typec: tcpm: frs sourcing vbus callback Badhri Jagan Sridharan
2020-10-19 13:40   ` Heikki Krogerus
2020-10-08  6:15 ` [PATCH v10 10/15] usb: typec: tcpci: " Badhri Jagan Sridharan
2020-10-19 13:41   ` Heikki Krogerus
2020-10-08  6:15 ` [PATCH v10 11/15] usb: typec: tcpci_max77759: Fix vbus stuck on upon diconnecting sink Badhri Jagan Sridharan
2020-10-19 13:44   ` Heikki Krogerus
2020-10-08  6:15 ` [PATCH v10 12/15] usb: typec: tcpm: Parse frs type-c current from device tree Badhri Jagan Sridharan
2020-10-08  6:15 ` [PATCH v10 13/15] usb: typec: tcpm: Implement enabling Auto Discharge disconnect support Badhri Jagan Sridharan
2020-10-19 13:48   ` Heikki Krogerus
2020-10-08  6:15 ` [PATCH v10 14/15] usb: typec: tcpci: Implement Auto discharge disconnect callbacks Badhri Jagan Sridharan
2020-10-19 13:49   ` Heikki Krogerus
2020-10-08  6:15 ` [PATCH v10 15/15] usb: typec: tcpci_maxim: Enable auto discharge disconnect Badhri Jagan Sridharan
2020-10-19 13:50   ` Heikki Krogerus
2020-10-08  7:46 ` [PATCH v10 00/15] TCPM support for FRS and AutoDischarge Disconnect Greg Kroah-Hartman
2020-10-08 17:54   ` Badhri Jagan Sridharan
2020-10-13 14:11   ` Rob Herring
2020-10-19 13:55 ` Heikki Krogerus

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