mirror of
https://github.com/torvalds/linux.git
synced 2026-04-20 07:43:57 -04:00
As indicated in link: https://lore.kernel.org/all/20220822204945.GA808626-robh@kernel.org/ DT schema files should not have 'Device Tree Binding' as part of there title: line. Remove this in most .yaml files, so hopefully preventing developers copying it into new .yaml files, and being asked to remove it. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Link: https://lore.kernel.org/r/20220825020427.3460650-1-andrew@lunn.ch Signed-off-by: Rob Herring <robh@kernel.org>
66 lines
1.3 KiB
YAML
66 lines
1.3 KiB
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/usb/generic-xhci.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: USB xHCI Controller
|
|
|
|
maintainers:
|
|
- Mathias Nyman <mathias.nyman@intel.com>
|
|
|
|
allOf:
|
|
- $ref: "usb-xhci.yaml#"
|
|
|
|
properties:
|
|
compatible:
|
|
oneOf:
|
|
- description: Generic xHCI device
|
|
const: generic-xhci
|
|
- description: Armada 37xx/375/38x/8k SoCs
|
|
items:
|
|
- enum:
|
|
- marvell,armada3700-xhci
|
|
- marvell,armada-375-xhci
|
|
- marvell,armada-380-xhci
|
|
- marvell,armada-8k-xhci
|
|
- const: generic-xhci
|
|
- description: Broadcom STB SoCs with xHCI
|
|
enum:
|
|
- brcm,xhci-brcm-v2
|
|
- brcm,bcm7445-xhci
|
|
- description: Generic xHCI device
|
|
const: xhci-platform
|
|
deprecated: true
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
minItems: 1
|
|
maxItems: 2
|
|
|
|
clock-names:
|
|
minItems: 1
|
|
items:
|
|
- const: core
|
|
- const: reg
|
|
|
|
unevaluatedProperties: false
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
|
|
examples:
|
|
- |
|
|
usb@f0931000 {
|
|
compatible = "generic-xhci";
|
|
reg = <0xf0931000 0x8c8>;
|
|
interrupts = <0x0 0x4e 0x0>;
|
|
};
|