Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/Documentation/devicetree/bindings/iio/magnetometer/infineon,tlv493d-a1b6.yaml
29539 views
1
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2
%YAML 1.2
3
---
4
$id: http://devicetree.org/schemas/iio/magnetometer/infineon,tlv493d-a1b6.yaml#
5
$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7
title: Infineon Technologies TLV493D Low-Power 3D Magnetic Sensor
8
9
maintainers:
10
- Dixit Parmar <dixitparmar19@gmail.com>
11
12
properties:
13
$nodename:
14
pattern: '^magnetometer@[0-9a-f]+$'
15
16
compatible:
17
const: infineon,tlv493d-a1b6
18
19
reg:
20
maxItems: 1
21
22
vdd-supply:
23
description: 2.8V to 3.5V VDD supply
24
25
interrupts:
26
maxItems: 1
27
28
required:
29
- compatible
30
- reg
31
- vdd-supply
32
33
additionalProperties: false
34
35
examples:
36
- |
37
i2c {
38
#address-cells = <1>;
39
#size-cells = <0>;
40
magnetometer@5e {
41
compatible = "infineon,tlv493d-a1b6";
42
reg = <0x5e>;
43
vdd-supply = <&hall_vcc>;
44
};
45
};
46
47