forked from Minki/linux
72661ff766
This adds the schema binding for the Cirrus Logic CS35L45 Smart Amp and associated header file. Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20220405135419.1230088-5-rf@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org>
21 lines
488 B
C
21 lines
488 B
C
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
|
/*
|
|
* cs35l45.h -- CS35L45 ALSA SoC audio driver DT bindings header
|
|
*
|
|
* Copyright 2022 Cirrus Logic, Inc.
|
|
*/
|
|
|
|
#ifndef DT_CS35L45_H
|
|
#define DT_CS35L45_H
|
|
|
|
/*
|
|
* cirrus,asp-sdout-hiz-ctrl
|
|
*
|
|
* TX_HIZ_UNUSED: TX pin high-impedance during unused slots.
|
|
* TX_HIZ_DISABLED: TX pin high-impedance when all channels disabled.
|
|
*/
|
|
#define CS35L45_ASP_TX_HIZ_UNUSED 0x1
|
|
#define CS35L45_ASP_TX_HIZ_DISABLED 0x2
|
|
|
|
#endif /* DT_CS35L45_H */
|