mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
9b915776e0
MAX98390 is a smart amplifier and exposes one DAI, so '#sound-dai-cells' property is needed for describing the DAI links. Reference the dai-common.yaml schema to allow '#sound-dai-cells' to be used. This fixes dtbs_check error: '#sound-dai-cells' does not match any of the regexes: 'pinctrl-[0-9]+' Signed-off-by: Fei Shao <fshao@chromium.org> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://patch.msgid.link/20241105091513.3963102-1-fshao@chromium.org Signed-off-by: Mark Brown <broonie@kernel.org>
61 lines
1.3 KiB
YAML
61 lines
1.3 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/sound/maxim,max98390.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Maxim Integrated MAX98390 Speaker Amplifier with Integrated Dynamic Speaker Management
|
|
|
|
maintainers:
|
|
- Steve Lee <steves.lee@maximintegrated.com>
|
|
|
|
allOf:
|
|
- $ref: dai-common.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
const: maxim,max98390
|
|
|
|
reg:
|
|
maxItems: 1
|
|
description: I2C address of the device.
|
|
|
|
maxim,temperature_calib:
|
|
description: The calculated temperature data was measured while doing the calibration.
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
minimum: 0
|
|
maximum: 65535
|
|
|
|
maxim,r0_calib:
|
|
description: This is r0 calibration data which was measured in factory mode.
|
|
$ref: /schemas/types.yaml#/definitions/uint32
|
|
minimum: 1
|
|
maximum: 8388607
|
|
|
|
reset-gpios:
|
|
maxItems: 1
|
|
|
|
'#sound-dai-cells':
|
|
const: 0
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
i2c {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
max98390: amplifier@38 {
|
|
compatible = "maxim,max98390";
|
|
reg = <0x38>;
|
|
maxim,temperature_calib = <1024>;
|
|
maxim,r0_calib = <100232>;
|
|
reset-gpios = <&gpio 9 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|