Skip to content

Commit 6f6291f

Browse files
superna9999jic23
authored andcommitted
dt-bindings: iio: magnetometer: document the Allegro MicroSystems ALS31300 3-D Linear Hall Effect Sensor
Document the bindings for the Allegro MicroSystems ALS31300 3-D Linear Hall Effect Sensor controller by an I2C interface, mainly used in 3D head-on motion sensing applications. The device can be configured with different sensitivities in factory, but the sensitivity value used to calculate value into the Gauss unit is not available from registers, thus the sensitivity is provided by the compatible/device-id string which is based on the part number as described in the datasheet page 2. Datasheet: https://www.allegromicro.com/-/media/files/datasheets/als31300-datasheet.pdf Reviewed-by: Rob Herring (Arm) <[email protected]> Signed-off-by: Neil Armstrong <[email protected]> Link: https://patch.msgid.link/20241030-topic-input-upstream-als31300-v4-2-494297c9e50a@linaro.org Signed-off-by: Jonathan Cameron <[email protected]>
1 parent 8122339 commit 6f6291f

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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/allegromicro,als31300.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Allegro MicroSystems ALS31300 3-D Linear Hall Effect sensor
8+
9+
maintainers:
10+
- Neil Armstrong <[email protected]>
11+
12+
properties:
13+
$nodename:
14+
pattern: '^magnetometer@[0-9a-f]+$'
15+
16+
compatible:
17+
enum:
18+
- allegromicro,als31300-500 # Factory configured at 500 Gauss input range
19+
- allegromicro,als31300-1000 # Factory configured at 1000 Gauss input range
20+
- allegromicro,als31300-2000 # Factory configured at 2000 Gauss input range
21+
22+
reg:
23+
maxItems: 1
24+
25+
vcc-supply:
26+
description: 5.5V supply
27+
28+
interrupts:
29+
maxItems: 1
30+
31+
required:
32+
- compatible
33+
34+
additionalProperties: false
35+
36+
examples:
37+
- |
38+
i2c {
39+
#address-cells = <1>;
40+
#size-cells = <0>;
41+
magnetometer@61 {
42+
compatible = "allegromicro,als31300-500";
43+
reg = <0x61>;
44+
vcc-supply = <&hall_vcc>;
45+
};
46+
};

0 commit comments

Comments
 (0)