Commit 9f3849be authored by Rob Herring's avatar Rob Herring

dt-bindings: mfd: ti,j721e-system-controller: Fix mux node errors

The ti,j721e-system-controller binding does not follow the standard mux
controller node name 'mux-controller' and the example is incomplete. Fix
these to avoid schema errors before the mux controller binding is
converted to schema.

Cc: Lee Jones <lee.jones@linaro.org>
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Acked-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20210526184839.2937899-2-robh@kernel.org
parent 70c1fc34
...@@ -43,12 +43,10 @@ properties: ...@@ -43,12 +43,10 @@ properties:
patternProperties: patternProperties:
# Optional children # Optional children
"^serdes-ln-ctrl@[0-9a-f]+$": "^mux-controller@[0-9a-f]+$":
type: object type: object
description: | description:
This is the SERDES lane control mux. It should follow the bindings This is the SERDES lane control mux.
specified in
Documentation/devicetree/bindings/mux/reg-mux.txt
required: required:
- compatible - compatible
...@@ -68,9 +66,18 @@ examples: ...@@ -68,9 +66,18 @@ examples:
#size-cells = <1>; #size-cells = <1>;
ranges; ranges;
serdes_ln_ctrl: serdes-ln-ctrl@4080 { serdes_ln_ctrl: mux-controller@4080 {
compatible = "mmio-mux"; compatible = "mmio-mux";
reg = <0x00004080 0x50>; reg = <0x00004080 0x50>;
#mux-control-cells = <1>;
mux-reg-masks =
<0x4080 0x3>, <0x4084 0x3>, /* SERDES0 lane0/1 select */
<0x4090 0x3>, <0x4094 0x3>, /* SERDES1 lane0/1 select */
<0x40a0 0x3>, <0x40a4 0x3>, /* SERDES2 lane0/1 select */
<0x40b0 0x3>, <0x40b4 0x3>, /* SERDES3 lane0/1 select */
<0x40c0 0x3>, <0x40c4 0x3>, <0x40c8 0x3>, <0x40cc 0x3>;
/* SERDES4 lane0/1/2/3 select */
}; };
}; };
... ...
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment