Message ID | 20220601125344.60602-4-stefan.wahren@i2se.com |
---|---|
State | Changes Requested, archived |
Headers | show |
Series | soc: bcm2835-power: Prepare BCM2711 V3D support | expand |
Context | Check | Description |
---|---|---|
robh/checkpatch | success | |
robh/patch-applied | success | |
robh/dtbs-check | warning | build log |
robh/dt-meta-schema | success |
On Wed, Jun 1, 2022 at 1:54 PM Stefan Wahren <stefan.wahren@i2se.com> wrote: > > Add a new compatible string for BCM2711 and the option to provide a > third reg property for the board's new RPiVid ASB. > > In BCM2711 the new RPiVid ASB took over V3D, which is our only consumer > of this driver so far. The old ASB is still be present with ISP and H264 > bits but no V3D. > > Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> Reviewed-by: Peter Robinson <pbrobinson@gmail.com> > --- > .../devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml | 10 +++++++--- > 1 file changed, 7 insertions(+), 3 deletions(-) > > diff --git a/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml b/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml > index 883ab7cb96e9..f448f034a33a 100644 > --- a/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml > +++ b/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml > @@ -19,17 +19,21 @@ allOf: > properties: > compatible: > items: > - - const: brcm,bcm2835-pm > + - enum: > + - brcm,bcm2835-pm > + - brcm,bcm2711-pm > - const: brcm,bcm2835-pm-wdt > > reg: > - minItems: 2 > - maxItems: 2 > + minItems: 1 > + maxItems: 3 > > reg-names: > + minItems: 2 > items: > - const: pm > - const: asb > + - const: rpivid_asb > > "#power-domain-cells": > const: 1 > -- > 2.25.1 >
On Wed, Jun 01, 2022 at 02:53:36PM +0200, Stefan Wahren wrote: > Add a new compatible string for BCM2711 and the option to provide a > third reg property for the board's new RPiVid ASB. > > In BCM2711 the new RPiVid ASB took over V3D, which is our only consumer > of this driver so far. The old ASB is still be present with ISP and H264 > bits but no V3D. > > Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> > --- > .../devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml | 10 +++++++--- > 1 file changed, 7 insertions(+), 3 deletions(-) > > diff --git a/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml b/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml > index 883ab7cb96e9..f448f034a33a 100644 > --- a/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml > +++ b/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml > @@ -19,17 +19,21 @@ allOf: > properties: > compatible: > items: > - - const: brcm,bcm2835-pm > + - enum: > + - brcm,bcm2835-pm > + - brcm,bcm2711-pm > - const: brcm,bcm2835-pm-wdt > > reg: > - minItems: 2 > - maxItems: 2 > + minItems: 1 2? > + maxItems: 3 > > reg-names: > + minItems: 2 > items: > - const: pm > - const: asb > + - const: rpivid_asb > > "#power-domain-cells": > const: 1 > -- > 2.25.1 > >
diff --git a/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml b/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml index 883ab7cb96e9..f448f034a33a 100644 --- a/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml +++ b/Documentation/devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml @@ -19,17 +19,21 @@ allOf: properties: compatible: items: - - const: brcm,bcm2835-pm + - enum: + - brcm,bcm2835-pm + - brcm,bcm2711-pm - const: brcm,bcm2835-pm-wdt reg: - minItems: 2 - maxItems: 2 + minItems: 1 + maxItems: 3 reg-names: + minItems: 2 items: - const: pm - const: asb + - const: rpivid_asb "#power-domain-cells": const: 1
Add a new compatible string for BCM2711 and the option to provide a third reg property for the board's new RPiVid ASB. In BCM2711 the new RPiVid ASB took over V3D, which is our only consumer of this driver so far. The old ASB is still be present with ISP and H264 bits but no V3D. Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> --- .../devicetree/bindings/soc/bcm/brcm,bcm2835-pm.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-)