[PATCH v4 04/11] media: dt-bindings: media: add bindings for rockchip mipi csi host
Rob Herring
robh at kernel.org
Fri Feb 21 14:20:39 PST 2025
On Fri, Feb 21, 2025 at 02:13:13PM +0000, Sakari Ailus wrote:
> Hi Michael,
>
> On Wed, Feb 19, 2025 at 11:16:35AM +0100, Michael Riesch wrote:
> > Add documentation for the Rockchip RK3568 MIPI CSI-2 Host unit.
> >
> > Signed-off-by: Michael Riesch <michael.riesch at wolfvision.net>
> > ---
> > .../bindings/media/rockchip,rk3568-mipi-csi.yaml | 123 +++++++++++++++++++++
> > MAINTAINERS | 1 +
> > 2 files changed, 124 insertions(+)
> >
> > diff --git a/Documentation/devicetree/bindings/media/rockchip,rk3568-mipi-csi.yaml b/Documentation/devicetree/bindings/media/rockchip,rk3568-mipi-csi.yaml
> > new file mode 100644
> > index 000000000000..288941686e96
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/media/rockchip,rk3568-mipi-csi.yaml
> > @@ -0,0 +1,123 @@
> > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> > +%YAML 1.2
> > +---
> > +$id: http://devicetree.org/schemas/media/rockchip,rk3568-mipi-csi.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: Rockchip RK3568 MIPI CSI-2 Host
> > +
> > +maintainers:
> > + - Michael Riesch <michael.riesch at wolfvision.net>
> > +
> > +description:
> > + The Rockchip RK3568 MIPI CSI-2 Host is a CSI-2 bridge with one input port
> > + and one output port. It receives the data with the help of an external
> > + MIPI PHY (C-PHY or D-PHY) and passes it to the Rockchip RK3568 Video Capture
> > + (VICAP) block.
> > +
> > +properties:
> > + compatible:
> > + const: rockchip,rk3568-mipi-csi
> > +
> > + reg:
> > + maxItems: 1
> > +
> > + clocks:
> > + maxItems: 1
> > +
> > + phys:
> > + maxItems: 1
> > + description: MIPI C-PHY or D-PHY.
> > +
> > + phy-names:
> > + items:
> > + - const: csiphy
*-names is kind of pointless when there is only 1. Drop it.
> > +
> > + power-domains:
> > + maxItems: 1
> > +
> > + resets:
> > + maxItems: 1
> > +
> > + ports:
> > + $ref: /schemas/graph.yaml#/properties/ports
> > +
> > + properties:
> > + port at 0:
> > + $ref: /schemas/graph.yaml#/$defs/port-base
> > + unevaluatedProperties: false
> > + description:
> > + Input port node. Connect to e.g., a MIPI CSI-2 image sensor.
> > +
> > + properties:
> > + endpoint:
> > + $ref: video-interfaces.yaml#
> > + unevaluatedProperties: false
> > +
> > + properties:
> > + bus-type:
> > + enum: [1, 4]
> > +
> > + required:
> > + - bus-type
> > +
> > + port at 1:
> > + $ref: /schemas/graph.yaml#/$defs/port-base
> > + unevaluatedProperties: false
> > + description:
> > + Output port node. Connect to RK3568 VICAP MIPI CSI-2 port.
>
> What's the purpose of a port node without an endpoint?
If there are not custom endpoint properties, then you don't need to
describe the endpoint node. But that case should be this instead:
$ref: /schemas/graph.yaml#/properties/port
(no unevaluatedProperties)
Rob
More information about the Linux-rockchip
mailing list