Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | # SPDX-License-Identifier: GPL-2.0 %YAML 1.2 --- $id: http://devicetree.org/schemas/input/allwinner,sun4i-a10-lradc-keys.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Allwinner A10 LRADC maintainers: - Chen-Yu Tsai <wens@csie.org> - Maxime Ripard <mripard@kernel.org> properties: compatible: oneOf: - const: allwinner,sun4i-a10-lradc-keys - const: allwinner,sun8i-a83t-r-lradc - items: - enum: - allwinner,suniv-f1c100s-lradc - allwinner,sun50i-a64-lradc - const: allwinner,sun8i-a83t-r-lradc - const: allwinner,sun50i-r329-lradc - items: - enum: - allwinner,sun50i-h616-lradc - allwinner,sun20i-d1-lradc - const: allwinner,sun50i-r329-lradc reg: maxItems: 1 clocks: maxItems: 1 resets: maxItems: 1 interrupts: maxItems: 1 vref-supply: description: Regulator for the LRADC reference voltage wakeup-source: true patternProperties: "^button-[0-9]+$": type: object $ref: input.yaml# properties: label: description: Descriptive name of the key linux,code: true channel: $ref: /schemas/types.yaml#/definitions/uint32 enum: [0, 1] description: ADC Channel this key is attached to voltage: $ref: /schemas/types.yaml#/definitions/uint32 description: Voltage in microvolts at LRADC input when this key is pressed required: - label - linux,code - channel - voltage additionalProperties: false required: - compatible - reg - interrupts - vref-supply if: properties: compatible: contains: enum: - allwinner,sun50i-r329-lradc then: required: - clocks - resets additionalProperties: false examples: - | lradc: lradc@1c22800 { compatible = "allwinner,sun4i-a10-lradc-keys"; reg = <0x01c22800 0x100>; interrupts = <31>; vref-supply = <®_vcc3v0>; button-191 { label = "Volume Up"; linux,code = <115>; channel = <0>; voltage = <191274>; }; button-392 { label = "Volume Down"; linux,code = <114>; channel = <0>; voltage = <392644>; }; }; ... |