Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c048c984 authored by Sean Paul's avatar Sean Paul
Browse files

Merge remote-tracking branch 'airlied/drm-next' into drm-misc-next-fixes

Backmerge drm-next with rc7
parents 38cb266a 6d61e70c
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -22,7 +22,8 @@ Required properties :
- #clock-cells : must contain 1
- #clock-cells : must contain 1
- #reset-cells : must contain 1
- #reset-cells : must contain 1


For the PRCM CCUs on H3/A64, one more clock is needed:
For the PRCM CCUs on H3/A64, two more clocks are needed:
- "pll-periph": the SoC's peripheral PLL from the main CCU
- "iosc": the SoC's internal frequency oscillator
- "iosc": the SoC's internal frequency oscillator


Example for generic CCU:
Example for generic CCU:
@@ -39,8 +40,8 @@ Example for PRCM CCU:
r_ccu: clock@01f01400 {
r_ccu: clock@01f01400 {
	compatible = "allwinner,sun50i-a64-r-ccu";
	compatible = "allwinner,sun50i-a64-r-ccu";
	reg = <0x01f01400 0x100>;
	reg = <0x01f01400 0x100>;
	clocks = <&osc24M>, <&osc32k>, <&iosc>;
	clocks = <&osc24M>, <&osc32k>, <&iosc>, <&ccu CLK_PLL_PERIPH0>;
	clock-names = "hosc", "losc", "iosc";
	clock-names = "hosc", "losc", "iosc", "pll-periph";
	#clock-cells = <1>;
	#clock-cells = <1>;
	#reset-cells = <1>;
	#reset-cells = <1>;
};
};
+3 −3
Original line number Original line Diff line number Diff line
@@ -41,9 +41,9 @@ Required properties:
Optional properties:
Optional properties:


In order to use the GPIO lines in PWM mode, some additional optional
In order to use the GPIO lines in PWM mode, some additional optional
properties are required. Only Armada 370 and XP support these properties.
properties are required.


- compatible: Must contain "marvell,armada-370-xp-gpio"
- compatible: Must contain "marvell,armada-370-gpio"


- reg: an additional register set is needed, for the GPIO Blink
- reg: an additional register set is needed, for the GPIO Blink
  Counter on/off registers.
  Counter on/off registers.
@@ -71,7 +71,7 @@ Example:
		};
		};


		gpio1: gpio@18140 {
		gpio1: gpio@18140 {
			compatible = "marvell,armada-370-xp-gpio";
			compatible = "marvell,armada-370-gpio";
			reg = <0x18140 0x40>, <0x181c8 0x08>;
			reg = <0x18140 0x40>, <0x181c8 0x08>;
			reg-names = "gpio", "pwm";
			reg-names = "gpio", "pwm";
			ngpios = <17>;
			ngpios = <17>;
+1 −1
Original line number Original line Diff line number Diff line
@@ -31,7 +31,7 @@ Example:
		compatible = "st,stm32-timers";
		compatible = "st,stm32-timers";
		reg = <0x40010000 0x400>;
		reg = <0x40010000 0x400>;
		clocks = <&rcc 0 160>;
		clocks = <&rcc 0 160>;
		clock-names = "clk_int";
		clock-names = "int";


		pwm {
		pwm {
			compatible = "st,stm32-pwm";
			compatible = "st,stm32-pwm";
+1 −1
Original line number Original line Diff line number Diff line
@@ -34,7 +34,7 @@ Required properties:
      "brcm,bcm6328-switch"
      "brcm,bcm6328-switch"
      "brcm,bcm6368-switch" and the mandatory "brcm,bcm63xx-switch"
      "brcm,bcm6368-switch" and the mandatory "brcm,bcm63xx-switch"


See Documentation/devicetree/bindings/dsa/dsa.txt for a list of additional
See Documentation/devicetree/bindings/net/dsa/dsa.txt for a list of additional
required and optional properties.
required and optional properties.


Examples:
Examples:
+1 −0
Original line number Original line Diff line number Diff line
@@ -27,6 +27,7 @@ Optional properties:
  of the device. On many systems this is wired high so the device goes
  of the device. On many systems this is wired high so the device goes
  out of reset at power-on, but if it is under program control, this
  out of reset at power-on, but if it is under program control, this
  optional GPIO can wake up in response to it.
  optional GPIO can wake up in response to it.
- vdd33a-supply, vddvario-supply : 3.3V analog and IO logic power supplies


Examples:
Examples:


Loading