2023-06-18 12:28:16 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
//
|
|
|
|
// ALSA SoC Texas Instruments TAS2781 Audio Smart Amplifier
|
|
|
|
//
|
2024-07-10 06:42:37 +00:00
|
|
|
// Copyright (C) 2022 - 2024 Texas Instruments Incorporated
|
2023-06-18 12:28:16 +00:00
|
|
|
// https://www.ti.com
|
|
|
|
//
|
|
|
|
// The TAS2781 driver implements a flexible and configurable
|
|
|
|
// algo coefficient setting for one, two, or even multiple
|
|
|
|
// TAS2781 chips.
|
|
|
|
//
|
|
|
|
// Author: Shenghao Ding <shenghao-ding@ti.com>
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __TAS2781_TLV_H__
|
|
|
|
#define __TAS2781_TLV_H__
|
|
|
|
|
2024-03-28 22:47:37 +00:00
|
|
|
static const __maybe_unused DECLARE_TLV_DB_SCALE(dvc_tlv, -10000, 100, 0);
|
2024-07-19 09:56:34 +00:00
|
|
|
static const __maybe_unused DECLARE_TLV_DB_SCALE(amp_vol_tlv, 1100, 50, 0);
|
2023-06-18 12:28:16 +00:00
|
|
|
|
|
|
|
#endif
|