58 lines
1.3 KiB
C
58 lines
1.3 KiB
C
/* Copyright (c) 2012-2013, 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.
|
|
*/
|
|
|
|
#ifndef __MSM_DAI_Q6_PDATA_H__
|
|
|
|
#define __MSM_DAI_Q6_PDATA_H__
|
|
|
|
#define MSM_MI2S_SD0 (1 << 0)
|
|
#define MSM_MI2S_SD1 (1 << 1)
|
|
#define MSM_MI2S_SD2 (1 << 2)
|
|
#define MSM_MI2S_SD3 (1 << 3)
|
|
#define MSM_MI2S_CAP_RX 0
|
|
#define MSM_MI2S_CAP_TX 1
|
|
|
|
#define MSM_PRIM_MI2S 0
|
|
#define MSM_SEC_MI2S 1
|
|
#define MSM_TERT_MI2S 2
|
|
#define MSM_QUAT_MI2S 3
|
|
|
|
struct msm_dai_auxpcm_config {
|
|
u16 mode;
|
|
u16 sync;
|
|
u16 frame;
|
|
u16 quant;
|
|
/* modify slot to arr[4] to specify
|
|
* the slot number for each channel
|
|
* in multichannel scenario */
|
|
u16 slot;
|
|
u16 data;
|
|
int pcm_clk_rate;
|
|
};
|
|
|
|
struct msm_dai_auxpcm_pdata {
|
|
void *clk_cfg;
|
|
struct msm_dai_auxpcm_config mode_8k;
|
|
struct msm_dai_auxpcm_config mode_16k;
|
|
};
|
|
|
|
struct msm_mi2s_pdata {
|
|
u16 rx_sd_lines;
|
|
u16 tx_sd_lines;
|
|
};
|
|
|
|
struct msm_i2s_data {
|
|
u32 capability; /* RX or TX */
|
|
u16 sd_lines;
|
|
};
|
|
#endif
|