mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 15:24:02 -04:00
Drop the requirement of "-master" suffix in node names because: 1. "Master" word is discouraged and MIPI Alliance renamed it to "Controller". 2. Some devices can operate in Controller (Master) or Target mode, thus the name is not accurate in such cases. 3. Other buses, like I2C controllers, use simple "i2c". Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Jeremy Kerr <jk@codeconstruct.com.au> Acked-by: Conor Dooley <conor.dooley@microchip.com> Link: https://lore.kernel.org/r/20240117075618.81932-1-krzysztof.kozlowski@linaro.org Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
61 lines
1.1 KiB
YAML
61 lines
1.1 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/i3c/silvaco,i3c-master.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Silvaco I3C master
|
|
|
|
maintainers:
|
|
- Conor Culhane <conor.culhane@silvaco.com>
|
|
|
|
allOf:
|
|
- $ref: i3c.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
const: silvaco,i3c-master-v1
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
items:
|
|
- description: system clock
|
|
- description: bus clock
|
|
- description: other (slower) events clock
|
|
|
|
clock-names:
|
|
items:
|
|
- const: pclk
|
|
- const: fast_clk
|
|
- const: slow_clk
|
|
|
|
resets:
|
|
maxItems: 1
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
- clock-names
|
|
- clocks
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
i3c@a0000000 {
|
|
compatible = "silvaco,i3c-master-v1";
|
|
clocks = <&zynqmp_clk 71>, <&fclk>, <&sclk>;
|
|
clock-names = "pclk", "fast_clk", "slow_clk";
|
|
interrupt-parent = <&gic>;
|
|
interrupts = <0 89 4>;
|
|
reg = <0xa0000000 0x1000>;
|
|
#address-cells = <3>;
|
|
#size-cells = <0>;
|
|
};
|