Documentation/devicetree/bindings/iio/magnetometer/bosch,bmc150_magn.yaml

Source file repositories/reference/linux-study-clean/Documentation/devicetree/bindings/iio/magnetometer/bosch,bmc150_magn.yaml

File Facts

System
Linux kernel
Corpus path
Documentation/devicetree/bindings/iio/magnetometer/bosch,bmc150_magn.yaml
Extension
.yaml
Size
1521 bytes
Lines
66
Domain
Support Tooling And Documentation
Bucket
Documentation
Inferred role
Support Tooling And Documentation: configuration, schema, or hardware description
Status
atlas-only

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/magnetometer/bosch,bmc150_magn.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Bosch BMC150 magnetometer sensor

maintainers:
  - Jonathan Cameron <jic23@kernel.org>

description: |
  Supports a range of parts, some of which form part of a multi die
  package that also contains other sensors.  The interface is independent
  however, so a separate driver is used to support the magnetometer part.
  Datasheet at:
  http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf

properties:
  compatible:
    description:
      Note the bmm150_magn is a deprecated compatible as this part contains only
      a magnetometer.
    oneOf:
      - enum:
          - bosch,bmc150_magn
          - bosch,bmc156_magn
          - bosch,bmm150
          - bosch,bmm150_magn
      - items:
          - const: bosch,bmx055-magn
          - const: bosch,bmc150_magn

  reg:
    maxItems: 1

  vdd-supply: true
  vddio-supply: true

  interrupts:
    maxItems: 1

  mount-matrix:
    description: an optional 3x3 mounting rotation matrix.

additionalProperties: false

required:
  - compatible
  - reg

examples:
  - |
    i2c {
        #address-cells = <1>;
        #size-cells = <0>;

        magnetometer@12 {
            compatible = "bosch,bmc150_magn";
            reg = <0x12>;
            interrupt-parent = <&gpio1>;
            interrupts = <0 1>;
        };
    };
...

Annotation

Implementation Notes