From: surajsonawane0215@gmail.com
To: jic23@kernel.org
Cc: surajsonawane0215@gmail.com, lars@metafoo.de, robh@kernel.org,
krzk+dt@kernel.org, conor+dt@kernel.org,
linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH 1/2] dt-bindings: iio: chemical: Add sharp,gp2y1010au0f
Date: Sat, 26 Apr 2025 03:21:49 +0530 [thread overview]
Message-ID: <20250425215149.49068-1-surajsonawane0215@gmail.com> (raw)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2859 bytes --]
From: Suraj Sonawane <surajsonawane0215@gmail.com>
Add Device Tree bindings for Sharp GP2Y1010AU0F optical dust sensor.
The sensor measures particulate matter concentration via infrared
scattering and requires:
1. GPIO for LED pulse control (280μs pulses with 40μs delay)
2. ADC channel for analog output measurement
3. Power regulator (vdd-supply)
Datasheet:
https://global.sharp/products/device/lineup/data/pdf/datasheet/gp2y1010au_appl_e.pdf
Signed-off-by: Suraj Sonawane <surajsonawane0215@gmail.com>
---
.../iio/chemical/sharp,gp2y1010au0f.yaml | 67 +++++++++++++++++++
1 file changed, 67 insertions(+)
create mode 100644 Documentation/devicetree/bindings/iio/chemical/sharp,gp2y1010au0f.yaml
diff --git a/Documentation/devicetree/bindings/iio/chemical/sharp,gp2y1010au0f.yaml b/Documentation/devicetree/bindings/iio/chemical/sharp,gp2y1010au0f.yaml
new file mode 100644
index 000000000..358c2b2f7
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/chemical/sharp,gp2y1010au0f.yaml
@@ -0,0 +1,67 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/iio/chemical/sharp,gp2y1010au0f.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Sharp GP2Y1010AU0F Optical Dust Sensor
+
+maintainers:
+ - Suraj Sonawane <surajsonawane0215@gmail.com>
+
+description: |
+ Optical dust sensor measuring particulate matter concentration via infrared scattering.
+ Requires ADC for analog output and GPIO for pulsed LED control with strict timing.
+ Datasheet: https://global.sharp/products/device/lineup/data/pdf/datasheet/gp2y1010au_appl_e.pdf
+
+properties:
+ compatible:
+ const: sharp,gp2y1010au0f
+
+ vdd-supply:
+ description: Phandle to the regulator that provides power to the sensor
+
+ led-gpios:
+ description: GPIO connected to the sensor's LED control pin (V-LED)
+ maxItems: 1
+
+ io-channels:
+ description: ADC channel connected to the sensor's analog output (Vo)
+ maxItems: 1
+
+ io-channel-names:
+ const: dust
+
+ sharp,led-on-delay-us:
+ description: Time in microseconds to wait after turning LED on before ADC read
+ default: 40
+ minimum: 0
+ maximum: 100
+
+ sharp,measurement-window-us:
+ description: Measurement window in microseconds after LED turn-on
+ default: 200
+ minimum: 0
+ maximum: 280
+
+required:
+ - compatible
+ - led-gpios
+ - io-channels
+ - io-channel-names
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+
+ dust_sensor {
+ compatible = "sharp,gp2y1010au0f";
+ vdd-supply = <&vcc>;
+ led-gpios = <&gpio 44 GPIO_ACTIVE_HIGH>;
+ io-channels = <&adc 0>;
+ io-channel-names = "dust";
+ sharp,led-on-delay-us = <40>;
+ sharp,measurement-window-us = <200>;
+ };
--
2.34.1
next reply other threads:[~2025-04-25 21:54 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-25 21:51 surajsonawane0215 [this message]
2025-04-26 10:47 ` [PATCH 1/2] dt-bindings: iio: chemical: Add sharp,gp2y1010au0f Jonathan Cameron
2025-04-26 11:10 ` Jonathan Cameron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250425215149.49068-1-surajsonawane0215@gmail.com \
--to=surajsonawane0215@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox