Commit de67276e authored by Miquel Raynal's avatar Miquel Raynal Committed by Alexandre Belloni

dt-bindings: i3c: mipi-hci: Include the bus binding

Update a little bit the content to match the bus binding, including:
- the node title should have been named after the description done
  in the historical i3c.txt file, ie: i3c-master@<address>
- child nodes should be accepted even though the drivers do not currently
  support it
- #address-cells and #size-cells are also mandatory and have specific
  values

Cc: Nicolas Pitre <nico@fluxnic.net>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: default avatarRob Herring <robh@kernel.org>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20210121101808.14654-3-miquel.raynal@bootlin.com
parent 5e4cdca8
...@@ -9,6 +9,9 @@ title: MIPI I3C HCI Device Tree Bindings ...@@ -9,6 +9,9 @@ title: MIPI I3C HCI Device Tree Bindings
maintainers: maintainers:
- Nicolas Pitre <npitre@baylibre.com> - Nicolas Pitre <npitre@baylibre.com>
allOf:
- $ref: /schemas/i3c/i3c.yaml#
description: | description: |
MIPI I3C Host Controller Interface MIPI I3C Host Controller Interface
...@@ -36,12 +39,14 @@ required: ...@@ -36,12 +39,14 @@ required:
- reg - reg
- interrupts - interrupts
additionalProperties: false unevaluatedProperties: false
examples: examples:
- | - |
i3c@a0000000 { i3c-master@a0000000 {
compatible = "mipi-i3c-hci"; compatible = "mipi-i3c-hci";
reg = <0xa0000000 0x2000>; reg = <0xa0000000 0x2000>;
interrupts = <89>; interrupts = <89>;
#address-cells = <3>;
#size-cells = <0>;
}; };
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