Documentation / devicetree / bindings / sound / adi,ssm2305.yaml


Based on kernel version 7.2. Page generated on 2026-08-20 08:41 EST.

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
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/sound/adi,ssm2305.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Analog Devices SSM2305 Class-D Speaker Amplifier

maintainers:
  - Lars-Peter Clausen <lars@metafoo.de>

description:
  The SSM2305 is a filterless, high efficiency, mono 2.8 W Class-D
  audio amplifier with a micropower shutdown mode controlled via a
  dedicated active-low GPIO pin.

allOf:
  - $ref: dai-common.yaml#

properties:
  compatible:
    const: adi,ssm2305

  shutdown-gpios:
    maxItems: 1
    description:
      GPIO connected to the shutdown pin (SD) of the SSM2305.
      The pin is active-low; asserting it puts the device into
      micropower shutdown mode.

required:
  - compatible
  - shutdown-gpios

unevaluatedProperties: false

examples:
  - |
    #include <dt-bindings/gpio/gpio.h>
 
    analog-amplifier {
        compatible = "adi,ssm2305";
        shutdown-gpios = <&gpio3 20 GPIO_ACTIVE_LOW>;
    };

...