添加内核启动阶段播放声音的驱动

This commit is contained in:
张兆鹏 2025-04-11 18:29:20 +08:00
parent 485e855b5e
commit 2daf93c952
11 changed files with 1609 additions and 0 deletions

View File

@ -1457,6 +1457,26 @@
};
&codec_has {
/* external-avcc; */
/* avcc-supply = <&reg_aldo1>; */
avcc-vol = <1800000>; /* uv */
lineout-vol = <31>;
mic1gain = <31>;
mic2gain = <31>;
adcdelaytime = <0>;
dma_tx_fifo = <0x02030000>;
/* lineout-single; */
/* mic1-single; */
/* mic2-single; */
pa-pin-max = <1>; /* set pa */
pa-pin-0 = <&pio PD 21 1 1 1 0>;
pa-pin-level-0 = <1>;
pa-pin-msleep-0 = <0>;
tx-hub-en;
rx-sync-en;
status = "disabled";
};
/* audio dirver module -> audio codec */
&codec {

View File

@ -1127,6 +1127,7 @@ CONFIG_SUNXI_SYS_INFO=y
CONFIG_DUMP_REG=y
CONFIG_DUMP_REG_MISC=y
# CONFIG_SUNXI_TIMER_TEST is not set
# CONFIG_HAS_INTERNALCODEC is not set
# CONFIG_MEM_OPERATION is not set
# CONFIG_SUNXI_TRANSFORM is not set
# CONFIG_SUNXI_DI is not set

View File

@ -1254,6 +1254,7 @@ CONFIG_SUNXI_SYS_INFO=y
CONFIG_DUMP_REG=y
CONFIG_DUMP_REG_MISC=y
# CONFIG_SUNXI_TIMER_TEST is not set
# CONFIG_HAS_INTERNALCODEC is not set
CONFIG_MEM_OPERATION=y
# CONFIG_SUNXI_TRANSFORM is not set
# CONFIG_SUNXI_DI is not set

View File

@ -1170,6 +1170,15 @@
gpr_cur_pos = <6>;
};
codec_has:codec_has@0x02030000 {
#sound-dai-cells = <0>;
compatible = "has,has-snd-codec";
reg = <0x0 0x02030000 0x0 0x34C>;
clocks = <&clk_pll_audio>,
<&clk_codec_dac>,
<&clk_codec_adc>;
status = "disabled";
};
/* audio dirver module -> audio codec */
codec:codec@0x02030000 {
#sound-dai-cells = <0>;

View File

@ -596,6 +596,7 @@ source "drivers/char/sunxi-scr/Kconfig"
source "drivers/char/sunxi-sysinfo/Kconfig"
source "drivers/char/dump_reg/Kconfig"
source "drivers/char/timer_test/Kconfig"
source "drivers/char/hichs-has/Kconfig"
source "drivers/char/mem_operation/Kconfig"
source "drivers/char/sunxi_tr/Kconfig"
source "drivers/char/sunxi-di/Kconfig"

View File

@ -64,6 +64,7 @@ obj-$(CONFIG_POWERNV_OP_PANEL) += powernv-op-panel.o
obj-$(CONFIG_ARCH_SUNXI) += sunxi-sysinfo/
obj-$(CONFIG_SUNXI_TIMER_TEST) += timer_test/
obj-$(CONFIG_HAS_INTERNALCODEC) += hichs-has/
obj-$(CONFIG_MEM_OPERATION) += mem_operation/
obj-$(CONFIG_DUMP_REG) += dump_reg/
obj-$(CONFIG_SUNXI_TRANSFORM) += sunxi_tr/

View File

@ -0,0 +1,12 @@
#
# Touchscreen driver configuration
#
config HAS_INTERNALCODEC
tristate "play pcm file from Specific partition to internalcodec(DAC) during start up"
# depends on INPUT && I2C
default N
help
Say Y here if you need to plat sound during start up.
If unsure, say N.

View File

@ -0,0 +1,5 @@
obj-$(CONFIG_HAS_INTERNALCODEC) += has_boot_doorbell.o
has_boot_doorbell-objs := snd_has_play_sound.o

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,460 @@
/* sound\soc\sunxi\snd_sun8iw21_codec.h
* (C) Copyright 2021-2025
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
* Dby <dby@allwinnertech.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
#ifndef __SND_HAS_SUN8IW21_CODEC_H
#define __SND_HAS_SUN8IW21_CODEC_H
#define SUNXI_DAC_DPC 0x00
#define SUNXI_DAC_VOL_CTRL 0x04
#define SUNXI_DAC_FIFOC 0x10
#define SUNXI_DAC_FIFOS 0x14
#define SUNXI_DAC_TXDATA 0X20
#define SUNXI_DAC_CNT 0x24
#define SUNXI_DAC_DG 0x28
#define SUNXI_ADC_FIFOC 0x30
#define SUNXI_ADC_VOL_CTRL 0x34
#define SUNXI_ADC_FIFOS 0x38
#define SUNXI_ADC_RXDATA 0x40
#define SUNXI_ADC_CNT 0x44
#define SUNXI_ADC_DG 0x4C
#define SUNXI_ADC_DIG_CTRL 0x50
#define SUNXI_VRA1SPEEDUP_DOWN_CTRL 0x54
#define SUNXI_DAC_DAP_CTL 0xF0
#define SUNXI_ADC_DAP_CTL 0xF8
#define SUNXI_DAC_DRC_HHPFC 0x100
#define SUNXI_DAC_DRC_LHPFC 0x104
#define SUNXI_DAC_DRC_CTRL 0x108
#define SUNXI_DAC_DRC_LPFHAT 0x10C
#define SUNXI_DAC_DRC_LPFLAT 0x110
#define SUNXI_DAC_DRC_RPFHAT 0x114
#define SUNXI_DAC_DRC_RPFLAT 0x118
#define SUNXI_DAC_DRC_LPFHRT 0x11C
#define SUNXI_DAC_DRC_LPFLRT 0x120
#define SUNXI_DAC_DRC_RPFHRT 0x124
#define SUNXI_DAC_DRC_RPFLRT 0x128
#define SUNXI_DAC_DRC_LRMSHAT 0x12C
#define SUNXI_DAC_DRC_LRMSLAT 0x130
#define SUNXI_DAC_DRC_RRMSHAT 0x134
#define SUNXI_DAC_DRC_RRMSLAT 0x138
#define SUNXI_DAC_DRC_HCT 0x13C
#define SUNXI_DAC_DRC_LCT 0x140
#define SUNXI_DAC_DRC_HKC 0x144
#define SUNXI_DAC_DRC_LKC 0x148
#define SUNXI_DAC_DRC_HOPC 0x14C
#define SUNXI_DAC_DRC_LOPC 0x150
#define SUNXI_DAC_DRC_HLT 0x154
#define SUNXI_DAC_DRC_LLT 0x158
#define SUNXI_DAC_DRC_HKI 0x15C
#define SUNXI_DAC_DRC_LKI 0x160
#define SUNXI_DAC_DRC_HOPL 0x164
#define SUNXI_DAC_DRC_LOPL 0x168
#define SUNXI_DAC_DRC_HET 0x16C
#define SUNXI_DAC_DRC_LET 0x170
#define SUNXI_DAC_DRC_HKE 0x174
#define SUNXI_DAC_DRC_LKE 0x178
#define SUNXI_DAC_DRC_HOPE 0x17C
#define SUNXI_DAC_DRC_LOPE 0x180
#define SUNXI_DAC_DRC_HKN 0x184
#define SUNXI_DAC_DRC_LKN 0x188
#define SUNXI_DAC_DRC_SFHAT 0x18C
#define SUNXI_DAC_DRC_SFLAT 0x190
#define SUNXI_DAC_DRC_SFHRT 0x194
#define SUNXI_DAC_DRC_SFLRT 0x198
#define SUNXI_DAC_DRC_MXGHS 0x19C
#define SUNXI_DAC_DRC_MXGLS 0x1A0
#define SUNXI_DAC_DRC_MNGHS 0x1A4
#define SUNXI_DAC_DRC_MNGLS 0x1A8
#define SUNXI_DAC_DRC_EPSHC 0x1AC
#define SUNXI_DAC_DRC_EPSLC 0x1B0
#define SUNXI_DAC_DRC_OPT 0x1B4
#define SUNXI_DAC_DRC_HPFHGAIN 0x1B8
#define SUNXI_DAC_DRC_HPFLGAIN 0x1BC
#define SUNXI_ADC_DRC_HHPFC 0x200
#define SUNXI_ADC_DRC_LHPFC 0x204
#define SUNXI_ADC_DRC_CTRL 0x208
#define SUNXI_ADC_DRC_LPFHAT 0x20C
#define SUNXI_ADC_DRC_LPFLAT 0x210
#define SUNXI_ADC_DRC_RPFHAT 0x214
#define SUNXI_ADC_DRC_RPFLAT 0x218
#define SUNXI_ADC_DRC_LPFHRT 0x21C
#define SUNXI_ADC_DRC_LPFLRT 0x220
#define SUNXI_ADC_DRC_RPFHRT 0x224
#define SUNXI_ADC_DRC_RPFLRT 0x228
#define SUNXI_ADC_DRC_LRMSHAT 0x22C
#define SUNXI_ADC_DRC_LRMSLAT 0x230
#define SUNXI_ADC_DRC_HCT 0x23C
#define SUNXI_ADC_DRC_LCT 0x240
#define SUNXI_ADC_DRC_HKC 0x244
#define SUNXI_ADC_DRC_LKC 0x248
#define SUNXI_ADC_DRC_HOPC 0x24C
#define SUNXI_ADC_DRC_LOPC 0x250
#define SUNXI_ADC_DRC_HLT 0x254
#define SUNXI_ADC_DRC_LLT 0x258
#define SUNXI_ADC_DRC_HKI 0x25C
#define SUNXI_ADC_DRC_LKI 0x260
#define SUNXI_ADC_DRC_HOPL 0x264
#define SUNXI_ADC_DRC_LOPL 0x268
#define SUNXI_ADC_DRC_HET 0x26C
#define SUNXI_ADC_DRC_LET 0x270
#define SUNXI_ADC_DRC_HKE 0x274
#define SUNXI_ADC_DRC_LKE 0x278
#define SUNXI_ADC_DRC_HOPE 0x27C
#define SUNXI_ADC_DRC_LOPE 0x280
#define SUNXI_ADC_DRC_HKN 0x284
#define SUNXI_ADC_DRC_LKN 0x288
#define SUNXI_ADC_DRC_SFHAT 0x28C
#define SUNXI_ADC_DRC_SFLAT 0x290
#define SUNXI_ADC_DRC_SFHRT 0x294
#define SUNXI_ADC_DRC_SFLRT 0x298
#define SUNXI_ADC_DRC_MXGHS 0x29C
#define SUNXI_ADC_DRC_MXGLS 0x2A0
#define SUNXI_ADC_DRC_MNGHS 0x2A4
#define SUNXI_ADC_DRC_MNGLS 0x2A8
#define SUNXI_ADC_DRC_EPSHC 0x2AC
#define SUNXI_ADC_DRC_EPSLC 0x2B0
#define SUNXI_ADC_DRC_OPT 0x2B4
#define SUNXI_ADC_DRC_HPFHGAIN 0x2B8
#define SUNXI_ADC_DRC_HPFLGAIN 0x2BC
#define SUNXI_AC_VERSION 0x2C0
/* Analog register */
#define SUNXI_ADC1_REG 0x300
#define SUNXI_ADC2_REG 0x304
#define SUNXI_DAC_REG 0x310
#define SUNXI_MICBIAS_REG 0x318
#define SUNXI_RAMP_REG 0x31C /* only set bit[1] at init */
#define SUNXI_BIAS_REG 0x320
#define SUNXI_POWER_REG 0x348
#define SUNXI_ADC_CUR_REG 0x34C
#define SUNXI_CODEC_REG_MAX SUNXI_ADC_CUR_REG
/* SUNXI_DAC_DPC:0x00 */
#define EN_DAC 31
#define MODQU 25
#define DWA_EN 24
#define HPF_EN 18
#define DVOL 12
#define DAC_HUB_EN 0
/* SUNXI_DAC_VOL_CTRL:0x04 */
#define DAC_VOL_SEL 16
#define DAC_VOL_L 8
#define DAC_VOL_R 0
/* SUNXI_DAC_FIFOC:0x10 */
#define DAC_FS 29
#define FIR_VER 28
#define SEND_LASAT 26
#define FIFO_MODE 24
#define DAC_DRQ_CLR_CNT 21
#define TX_TRIG_LEVEL 8
#define DAC_MONO_EN 6
#define TX_SAMPLE_BITS 5
#define DAC_DRQ_EN 4
#define DAC_IRQ_EN 3
#define FIFO_UNDERRUN_IRQ_EN 2
#define FIFO_OVERRUN_IRQ_EN 1
#define FIFO_FLUSH 0
/* SUNXI_DAC_FIFOS:0x14 */
#define TX_EMPTY 23
#define DAC_TXE_CNT 8
#define DAC_TXE_INT 3
#define DAC_TXU_INT 2
#define DAC_TXO_INT 1
/* SUNXI_DAC_DG:0x28 */
#define DAC_MODU_SEL 11
#define DAC_PATTERN_SEL 9
#define DAC_CODEC_CLK_SEL 8
#define DAC_SWP 6
#define ADDA_LOOP_MODE 0
/* SUNXI_ADC_FIFOC:0x30 */
#define ADC_FS 29
#define EN_AD 28
#define ADCFDT 26
#define ADCDFEN 25
#define RX_FIFO_MODE 24
#define RX_SYNC_EN_START 21
#define RX_SYNC_EN 20
#define RX_SAMPLE_BITS 16
#define RX_FIFO_TRG_LEVEL 4
#define ADC_DRQ_EN 3
#define ADC_IRQ_EN 2
#define ADC_OVERRUN_IRQ_EN 1
#define ADC_FIFO_FLUSH 0
/* SUNXI_ADC_VOL_CTRL:0x34 */
#define ADC2_VOL 8
#define ADC1_VOL 0
/* SUNXI_ADC_FIFOS:0x38 */
#define RXA 23
#define ADC_RXA_CNT 8
#define ADC_RXA_INT 3
#define ADC_RXO_INT 1
/* SUNXI_ADC_DG:0x4C */
#define AD_SWP1 24
/* SUNXI_ADC_DIG_CTRL:0x50 */
#define ADC1_2_VOL_EN 16
#define ADC2_CHANNEL_EN 1
#define ADC1_CHANNEL_EN 0
#define ADC_CHANNEL_EN 0
/* SUNXI_VRA1SPEEDUP_DOWN_CTRL:0x54 */
#define VRA1SPEEDUP_DOWN_STATE 4
#define VRA1SPEEDUP_DOWN_CTRL 1
#define VRA1SPEEDUP_DOWN_RST_CTRL 0
/* SUNXI_DAC_DAP_CTL:0xf0 */
#define DDAP_EN 31
#define DDAP_DRC_EN 29
#define DDAP_HPF_EN 28
/* SUNXI_ADC_DAP_CTL:0xf8 */
#define ADC_DAP0_EN 31
#define ADC_DRC0_EN 29
#define ADC_HPF0_EN 28
#define ADC_DAP1_EN 27
#define ADC_DRC1_EN 25
#define ADC_HPF1_EN 24
/* SUNXI_DAC_DRC_HHPFC: 0x100*/
#define DAC_HHPF_CONF 0
/* SUNXI_DAC_DRC_LHPFC: 0x104*/
#define DAC_LHPF_CONF 0
/* SUNXI_DAC_DRC_CTRL: 0x108*/
#define DAC_DRC_DELAY_OUT_STATE 15
#define DAC_DRC_SIGNAL_DELAY 8
#define DAC_DRC_DELAY_BUF_EN 7
#define DAC_DRC_GAIN_MAX_EN 6
#define DAC_DRC_GAIN_MIN_EN 5
#define DAC_DRC_NOISE_DET_EN 4
#define DAC_DRC_SIGNAL_SEL 3
#define DAC_DRC_DELAY_EN 2
#define DAC_DRC_LT_EN 1
#define DAC_DRC_ET_EN 0
/* SUNXI_ADC_DRC_HHPFC: 0x200*/
#define ADC_HHPF_CONF 0
/* SUNXI_ADC_DRC_LHPFC: 0x204*/
#define ADC_LHPF_CONF 0
/* SUNXI_ADC_DRC_CTRL: 0x208*/
#define ADC_DRC_DELAY_OUT_STATE 15
#define ADC_DRC_SIGNAL_DELAY 8
#define ADC_DRC_DELAY_BUF_EN 7
#define ADC_DRC_GAIN_MAX_EN 6
#define ADC_DRC_GAIN_MIN_EN 5
#define ADC_DRC_NOISE_DET_EN 4
#define ADC_DRC_SIGNAL_SEL 3
#define ADC_DRC_DELAY_EN 2
#define ADC_DRC_LT_EN 1
#define ADC_DRC_ER_EN 0
/* SUNXI_DAC_DRC_HHPFC: 0x100*/
#define DAC_HHPF_CONF 0
/* SUNXI_DAC_DRC_LHPFC: 0x104*/
#define DAC_LHPF_CONF 0
/* SUNXI_ADC_DRC_HHPFC: 0x200*/
#define ADC_HHPF_CONF 0
/* SUNXI_ADC_DRC_LHPFC: 0x204*/
#define ADC_LHPF_CONF 0
/* SUNXI_ADC1_REG : 0x300 */
#define ADC1_EN 31
#define MIC1_PGA_EN 30
#define ADC1_DITHER_CTRL 29
#define MIC1_SIN_EN 28
#define FMINLEN 27
#define FMINLG 26
#define ADC1_DSM_DITHER_LVL 24
#define LINEINLEN 23
#define LINEINLG 22
#define ADC1_IOPBUFFER 20
#define ADC1_PGA_CTRL_RCM 18
#define ADC1_PGA_IN_VCM_CTRL 16
#define ADC1_2_CURRENT_SEL 14
#define ADC1_SINGLE_NOISE_CTL 13
#define ADC1_PGA_GAIN_CTRL 8
#define ADC1_IOPAAF 6
#define ADC1_IOPSDM1 4
#define ADC1_IOPSDM2 2
#define ADC1_IOPMIC 0
/* SUNXI_ADC2_REG : 0x304 */
#define ADC2_EN 31
#define MIC2_PGA_EN 30
#define ADC2_DITHER_CTRL 29
#define MIC2_SIN_EN 28
#define FMINREN 27
#define FMINRG 26
#define ADC2_DSM_DITHER_LVL 24
#define LINEINREN 23
#define LINEINRG 22
#define ADC2_IOPBUFFER 20
#define ADC2_PGA_CTRL_RCM 18
#define ADC2_PGA_IN_VCM_CTRL 16
#define ADC2_SINGLE_NOISE_CTL 13
#define ADC2_PGA_GAIN_CTRL 8
#define ADC2_IOPAAF 6
#define ADC2_IOPSDM1 4
#define ADC2_IOPSDM2 2
#define ADC2_IOPMIC 0
/* SUNXI_DAC_REG : 0x310 */
#define P_CURRENT_TEST_SELECT 24
#define N_CURRENT_TEST_SELECT 22
#define VRA2_IOPVRS 20
#define ILINEOUTAMPS 18
#define IOPDACS 16
#define DACLEN 15
#define LINEOUTLEN 13
#define DACLMUTE 12
#define VRA2_OPVR_OI_CTRL 7
#define LINEOUTLDIFFEN 6
#define LINEOUT_VOL 0
/* SUNXI_MICBIAS_REG : 0x318 */
#define MMICBIASEN 7
#define MBIASSEL 5
#define MMICBIAS_CHOP_EN 4
#define MMICBIAS_CHOP_CLK_SEL 2
/* SUNXI_RAMP_REG : 0x31C */
#define RMC_EN 1
/* SUNXI_BIAS_REG : 0x320 */
#define AC_BIASDATA 0
/* SUNXI_POWER_REG :0x348 */
#define ALDO_EN 31
#define VAR1SPEEDUP_DOWN_FURTHER_CTRL 29
#define BG_BUFFER_DISABLE 15
#define ALDO_OUTPUT_VOLTAGE 12
#define BG_ROUGH_TRIM 8
#define BG_FINE_TRIM 0
/* SUNXI_ADC_CUR_REG :0x34C */
#define ADC2_IOPMIC2 12
#define ADC2_OP_MIC1_CUR 10
#define ADC2_OP_MIC2_CUR 8
#define ADC1_IOPMIC2 4
#define ADC1_OP_MIC1_CUR 2
#define ADC1_OP_MIC2_CUR 0
struct sunxi_has_clk {
struct clk *pllaudio;
struct clk *dacclk;
struct clk *adcclk;
};
struct sunxi_regulator {
bool external_avcc;
unsigned int avcc_vol;
struct regulator *avcc;
};
struct sunxi_has_dts {
unsigned int lineout_vol;
unsigned int mic1gain;
unsigned int mic2gain;
unsigned int adc_dtime;
bool lineout_single; /* true: single mode; false: differ mode */
bool mic1_single;
bool mic2_single;
/* tx_hub */
bool tx_hub_en;
/* components func -> rx sync */
bool rx_sync_en; /* read from dts */
bool rx_sync_ctl;
int rx_sync_id;
// rx_sync_domain_t rx_sync_domain;
};
struct sunxi_dap {
unsigned int dap_enable;
struct mutex mutex;
};
// struct sunxi_codec_runtime {
// /* input: micin and linein have common parts, need manage */
// unsigned int mic1gain;
// unsigned int mic2gain;
// bool mic1_single;
// bool mic2_single;
// unsigned int lineinlgain;
// unsigned int lineinrgain;
// bool mic1_run;
// bool mic2_run;
// bool linein_run;
// struct mutex input_mutex;
// /* output: only lineout, unneed manage. */
// };
// enum SUNXI_kCONTROL_SHIFT {
// KCONTROL_SHIFT_MIC1_GAIN = 0,
// KCONTROL_SHIFT_MIC2_GAIN,
// KCONTROL_SHIFT_LINEINL_GAIN,
// KCONTROL_SHIFT_LINEINR_GAIN,
// };
// enum SUNXI_WIDGET_SHIFT {
// WIDGET_SHIFT_ADC1 = 0,
// WIDGET_SHIFT_ADC2,
// WIDGET_SHIFT_MIC1_INPUT_SELECT,
// WIDGET_SHIFT_MIC2_INPUT_SELECT,
// WIDGET_SHIFT_MIC1_GAIN,
// WIDGET_SHIFT_MIC2_GAIN,
// WIDGET_SHIFT_LINEINL_GAIN,
// WIDGET_SHIFT_LINEINR_GAIN,
// };
// struct sunxi_codec {
// struct platform_device *pdev;
// struct sunxi_has_mem mem;
// struct sunxi_clk clk;
// struct sunxi_regulator rglt;
// // struct sunxi_dts dts;
// struct sunxi_dap dac_dap;
// struct sunxi_dap adc_dap;
// unsigned int pa_pin_max;
// struct pa_config *pa_config;
// struct sunxi_codec_runtime runtime;
// };
#endif /* __SND_HAS_SUN8IW21_CODEC_H */

View File

@ -0,0 +1,55 @@
/* sound\soc\sunxi\snd_sunxi_common.h
* (C) Copyright 2021-2025
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
* Dby <dby@allwinnertech.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
#ifndef __SND_HAS_SUNXI_COMMON_H
#define __SND_HAS_SUNXI_COMMON_H
/* for regmap */
struct sunxi_has_mem {
char *dev_name;
struct resource *res;
struct regmap_config *regmap_config;
void __iomem *membase;
struct resource *memregion;
struct regmap *regmap;
};
// int snd_sunxi_mem_init(struct platform_device *pdev, struct sunxi_mem *mem);
// void snd_sunxi_mem_exit(struct platform_device *pdev, struct sunxi_mem *mem);
// /* for reg debug */
// #define REG_LABEL(constant) {#constant, constant, 0}
// #define REG_LABEL_END {NULL, 0, 0}
struct reg_label {
const char *name;
const unsigned int address;
unsigned int value;
};
// int snd_sunxi_save_reg(struct regmap *regmap, struct reg_label *reg_labels);
// int snd_sunxi_echo_reg(struct regmap *regmap, struct reg_label *reg_labels);
/* for pa config */
struct has_pa_config {
u32 pin;
u32 msleep;
bool used;
bool level;
};
// struct pa_config *snd_sunxi_pa_pin_init(struct platform_device *pdev, u32 *pa_pin_max);
// void snd_sunxi_pa_pin_exit(struct platform_device *pdev, struct pa_config *pa_cfg, u32 pa_pin_max);
// int snd_sunxi_pa_pin_enable(struct pa_config *pa_cfg, u32 pa_pin_max);
// int snd_sunxi_pa_pin_disable(struct pa_config *pa_cfg, u32 pa_pin_max);
#endif /* __SND_HAS_SUNXI_COMMON_H */