forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
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
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/iio/chemical/sensirion,scd30.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
 
title: Sensirion SCD30 carbon dioxide sensor
 
maintainers:
  - Tomasz Duszynski <tomasz.duszynski@octakon.com>
 
description: |
  Air quality sensor capable of measuring co2 concentration, temperature
  and relative humidity.
 
properties:
  compatible:
    enum:
      - sensirion,scd30
 
  reg:
    maxItems: 1
 
  interrupts:
    maxItems: 1
 
  vdd-supply: true
 
  sensirion,sel-gpios:
    description: GPIO connected to the SEL line
    maxItems: 1
 
  sensirion,pwm-gpios:
    description: GPIO connected to the PWM line
    maxItems: 1
 
required:
  - compatible
 
additionalProperties: false
 
examples:
  - |
    # include <dt-bindings/interrupt-controller/irq.h>
    i2c {
      #address-cells = <1>;
      #size-cells = <0>;
 
      co2-sensor@61 {
        compatible = "sensirion,scd30";
        reg = <0x61>;
        vdd-supply = <&vdd>;
        interrupt-parent = <&gpio0>;
        interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
      };
    };
  - |
    # include <dt-bindings/interrupt-controller/irq.h>
    serial {
      co2-sensor {
        compatible = "sensirion,scd30";
        vdd-supply = <&vdd>;
        interrupt-parent = <&gpio0>;
        interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
      };
    };
 
...