
git-subtree-dir: qcom/opensource/audio-kernel git-subtree-mainline:99ab089c55
git-subtree-split:0ee387dfad
Change-Id: repo: https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/audio-kernel-ar tag: AUDIO.LA.9.0.r1-07400-lanai.0
33 lines
654 B
C
33 lines
654 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _AQT1000_PDATA_H_
|
|
#define _AQT1000_PDATA_H_
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/device.h>
|
|
#include <asoc/msm-cdc-supply.h>
|
|
|
|
struct aqt1000_micbias_setting {
|
|
u8 ldoh_v;
|
|
u32 cfilt1_mv;
|
|
u32 micb1_mv;
|
|
u8 bias1_cfilt_sel;
|
|
};
|
|
|
|
struct aqt1000_pdata {
|
|
unsigned int irq_gpio;
|
|
unsigned int irq_flags;
|
|
struct cdc_regulator *regulator;
|
|
int num_supplies;
|
|
struct aqt1000_micbias_setting micbias;
|
|
struct device_node *aqt_rst_np;
|
|
u32 mclk_rate;
|
|
u32 ext_clk_rate;
|
|
u32 ext_1p8v_supply;
|
|
};
|
|
|
|
#endif /* _AQT1000_PDATA_H_ */
|