
Kernel audio drivers can be categorised into below folders. asoc - ALSA based drivers, asoc/codecs - codec drivers, ipc - APR IPC communication drivers, dsp - DSP low level drivers/Audio ION/ADSP Loader, dsp/codecs - Native encoders and decoders, soc - SoC based drivers(pinctrl/regmap/soundwire) Restructure drivers to above folder format. Include directories also follow above format. Change-Id: I8fa0857baaacd47db126fb5c1f1f5ed7e886dbc0 Signed-off-by: Laxminath Kasam <lkasam@codeaurora.org>
68 lines
1.7 KiB
C
68 lines
1.7 KiB
C
/* Copyright (c) 2016-2017, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#include <linux/regmap.h>
|
|
#include "sdm660-cdc-registers.h"
|
|
|
|
extern struct reg_default
|
|
msm89xx_cdc_core_defaults[MSM89XX_CDC_CORE_CACHE_SIZE];
|
|
extern struct reg_default
|
|
msm89xx_pmic_cdc_defaults[MSM89XX_PMIC_CDC_CACHE_SIZE];
|
|
|
|
bool msm89xx_cdc_core_readable_reg(struct device *dev, unsigned int reg);
|
|
bool msm89xx_cdc_core_writeable_reg(struct device *dev, unsigned int reg);
|
|
bool msm89xx_cdc_core_volatile_reg(struct device *dev, unsigned int reg);
|
|
|
|
enum {
|
|
AIF1_PB = 0,
|
|
AIF1_CAP,
|
|
AIF2_VIFEED,
|
|
AIF3_SVA,
|
|
NUM_CODEC_DAIS,
|
|
};
|
|
|
|
enum codec_versions {
|
|
TOMBAK_1_0,
|
|
TOMBAK_2_0,
|
|
CONGA,
|
|
CAJON,
|
|
CAJON_2_0,
|
|
DIANGU,
|
|
DRAX_CDC,
|
|
UNSUPPORTED,
|
|
};
|
|
|
|
/* Support different hph modes */
|
|
enum {
|
|
NORMAL_MODE = 0,
|
|
HD2_MODE,
|
|
};
|
|
|
|
enum dig_cdc_notify_event {
|
|
DIG_CDC_EVENT_INVALID,
|
|
DIG_CDC_EVENT_CLK_ON,
|
|
DIG_CDC_EVENT_CLK_OFF,
|
|
DIG_CDC_EVENT_RX1_MUTE_ON,
|
|
DIG_CDC_EVENT_RX1_MUTE_OFF,
|
|
DIG_CDC_EVENT_RX2_MUTE_ON,
|
|
DIG_CDC_EVENT_RX2_MUTE_OFF,
|
|
DIG_CDC_EVENT_RX3_MUTE_ON,
|
|
DIG_CDC_EVENT_RX3_MUTE_OFF,
|
|
DIG_CDC_EVENT_PRE_RX1_INT_ON,
|
|
DIG_CDC_EVENT_PRE_RX2_INT_ON,
|
|
DIG_CDC_EVENT_POST_RX1_INT_OFF,
|
|
DIG_CDC_EVENT_POST_RX2_INT_OFF,
|
|
DIG_CDC_EVENT_SSR_DOWN,
|
|
DIG_CDC_EVENT_SSR_UP,
|
|
DIG_CDC_EVENT_LAST,
|
|
};
|