Based on kernel version 6.12.4
. Page generated on 2024-12-12 21:01 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) # Copyright 2019 Bootlin %YAML 1.2 --- $id: http://devicetree.org/schemas/mfd/xylon,logicvc.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Xylon LogiCVC multi-function device maintainers: - Paul Kocialkowski <paul.kocialkowski@bootlin.com> description: | The LogiCVC is a display controller that also contains a GPIO controller. As a result, a multi-function device is exposed as parent of the display and GPIO blocks. properties: compatible: items: - enum: - xylon,logicvc-3.02.a - const: syscon - const: simple-mfd reg: maxItems: 1 '#address-cells': const: 1 '#size-cells': const: 1 select: properties: compatible: contains: enum: - xylon,logicvc-3.02.a required: - compatible patternProperties: "^gpio@[0-9a-f]+$": $ref: /schemas/gpio/xylon,logicvc-gpio.yaml# "^display@[0-9a-f]+$": $ref: /schemas/display/xylon,logicvc-display.yaml# required: - compatible - reg additionalProperties: false examples: - | logicvc: logicvc@43c00000 { compatible = "xylon,logicvc-3.02.a", "syscon", "simple-mfd"; reg = <0x43c00000 0x6000>; }; |