Unverified Commit db576ed7 authored by Mark Brown's avatar Mark Brown
Browse files

Add USB VBUS regulator for RZ/G2L

Merge series from Biju Das <biju.das.jz@bp.renesas.com>:

As per RZ/G2L HW manual, VBUS enable can be controlled by the VBOUT bit of
the VBUS Control Register(VBENCTL) register in the USBPHY Control. But
this IP is in the Reset block.

Reset driver exposes this register as regmap and instantiate the USB VBUS
regulator device. Consumers(phy device) can use regulator APIs to control
VBUS as controlling is done in the atomic context using a new API which
is added for the purpose.
parents b147ae7a 84fbd619
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -608,6 +608,7 @@ Simon Kelley <simon@thekelleys.org.uk>
Sricharan Ramabadhran <quic_srichara@quicinc.com> <sricharan@codeaurora.org>
Srinivas Ramana <quic_sramana@quicinc.com> <sramana@codeaurora.org>
Sriram R <quic_srirrama@quicinc.com> <srirrama@codeaurora.org>
Stanislav Fomichev <sdf@fomichev.me> <sdf@google.com>
Stefan Wahren <wahrenst@gmx.net> <stefan.wahren@i2se.com>
Stéphane Witzmann <stephane.witzmann@ubpmes.univ-bpclermont.fr>
Stephen Hemminger <stephen@networkplumber.org> <shemminger@linux-foundation.org>
+0 −6
Original line number Diff line number Diff line
@@ -2192,12 +2192,6 @@
			Format: 0 | 1
			Default set by CONFIG_INIT_ON_FREE_DEFAULT_ON.

	init_mlocked_on_free=	[MM] Fill freed userspace memory with zeroes if
				it was mlock'ed and not explicitly munlock'ed
				afterwards.
				Format: 0 | 1
				Default set by CONFIG_INIT_MLOCKED_ON_FREE_DEFAULT_ON

	init_pkru=	[X86] Specify the default memory protection keys rights
			register contents for all processes.  0x55555554 by
			default (disallow access to all but pkey 0).  Can
+2 −2
Original line number Diff line number Diff line
@@ -59,8 +59,8 @@ properties:
      - 3

  dma-channels:
    minItems: 1
    maxItems: 64
    minimum: 1
    maximum: 64

  clocks:
    minItems: 1
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ required:
  - clocks

allOf:
  - $ref: i2c-controller.yaml
  - $ref: /schemas/i2c/i2c-controller.yaml#
  - if:
      properties:
        compatible:
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ description: |
  google,cros-ec-spi or google,cros-ec-i2c.

allOf:
  - $ref: i2c-controller.yaml#
  - $ref: /schemas/i2c/i2c-controller.yaml#

properties:
  compatible:
Loading