Path: blob/main/sys/contrib/device-tree/Bindings/bus/microsoft,vmbus.yaml
48377 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/bus/microsoft,vmbus.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Microsoft Hyper-V VMBus78maintainers:9- Saurabh Sengar <ssengar@linux.microsoft.com>1011description:12VMBus is a software bus that implement the protocols for communication13between the root or host OS and guest OSs (virtual machines).1415properties:16compatible:17const: microsoft,vmbus1819ranges: true2021'#address-cells':22const: 22324'#size-cells':25const: 12627required:28- compatible29- ranges30- '#address-cells'31- '#size-cells'3233additionalProperties: false3435examples:36- |37soc {38#address-cells = <2>;39#size-cells = <1>;40bus {41compatible = "simple-bus";42#address-cells = <2>;43#size-cells = <1>;44ranges;4546vmbus@ff0000000 {47compatible = "microsoft,vmbus";48#address-cells = <2>;49#size-cells = <1>;50ranges = <0x0f 0xf0000000 0x0f 0xf0000000 0x10000000>;51};52};53};545556