1 /* SPDX-License-Identifier: GPL-2.0 */ 2 // 3 // ALSA SoC Texas Instruments TAS5825 Audio Smart Amplifier 4 // 5 // Copyright (C) 2025 Texas Instruments Incorporated 6 // https://www.ti.com 7 // 8 // The TAS5825 hda driver implements for one or two TAS5825 chips. 9 // 10 // Author: Baojun Xu <baojun.xu@ti.com> 11 // 12 13 #ifndef __TAS5825_TLV_H__ 14 #define __TAS5825_TLV_H__ 15 16 #define TAS5825_DVC_LEVEL TASDEVICE_REG(0x0, 0x0, 0x4c) 17 #define TAS5825_AMP_LEVEL TASDEVICE_REG(0x0, 0x0, 0x54) 18 19 static const __maybe_unused DECLARE_TLV_DB_SCALE( 20 tas5825_dvc_tlv, -10300, 50, 0); 21 static const __maybe_unused DECLARE_TLV_DB_SCALE( 22 tas5825_amp_tlv, -1550, 50, 0); 23 24 #endif 25