[PATCH 1/2] iio: light: veml3328: add devicetree binding for new sensor

From: Joshua Crofts

Date: Sat May 16 2026 - 17:51:44 EST


Add devicetree binding for the Vishay VEML3328 RGB/IR light sensor
connected via I2C (SMBus compatible).

Additionally, add an entry in MAINTAINERS.

Signed-off-by: Joshua Crofts <joshua.crofts1@xxxxxxxxx>
---
.../bindings/iio/light/vishay,veml3328.yaml | 45 ++++++++++++++++++++++
MAINTAINERS | 6 +++
2 files changed, 51 insertions(+)

diff --git a/Documentation/devicetree/bindings/iio/light/vishay,veml3328.yaml b/Documentation/devicetree/bindings/iio/light/vishay,veml3328.yaml
new file mode 100644
index 000000000000..1a30e8470fc6
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/light/vishay,veml3328.yaml
@@ -0,0 +1,45 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/iio/light/vishay,veml3328.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Vishay VEML3328 RGBCIR Light Sensor
+
+maintainers:
+ - Joshua Crofts <joshua.crofts1@xxxxxxxxx>
+
+description:
+ Vishay VEML3328 color RGBCIR light sensor.
+
+ The VEML3328 datasheet can be found at https://www.vishay.com/docs/84968/veml3328.pdf
+
+properties:
+ compatible:
+ enum:
+ - vishay,veml3328
+
+ reg:
+ maxItems: 1
+
+ vdd-supply: true
+
+required:
+ - compatible
+ - reg
+ - vdd-supply
+
+additionalProperties: false
+
+examples:
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ light-sensor@10 {
+ compatible = "vishay,veml3328";
+ reg = <0x10>;
+ vdd-supply = <&vcc_3v3>;
+ };
+ };
diff --git a/MAINTAINERS b/MAINTAINERS
index d6c3c7d22403..134690aa9866 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -28386,6 +28386,12 @@ S: Maintained
F: Documentation/devicetree/bindings/iio/light/vishay,veml6030.yaml
F: drivers/iio/light/veml3235.c

+VISHAY VEML3328 RGB IR LIGHT SENSOR DRIVER
+M: Joshua Crofts <joshua.crofts1@xxxxxxxxx>
+S: Maintained
+F: Documentation/devicetree/bindings/iio/light/vishay,veml3328.yaml
+F: drivers/iio/light/veml3328.c
+
VISHAY VEML6030 AMBIENT LIGHT SENSOR DRIVER
M: Javier Carrasco <javier.carrasco.cruz@xxxxxxxxx>
S: Maintained

--
2.34.1