HomeSort by relevance Sort by last modified time
    Searched refs:pi2s_tx (Results 1 - 3 of 3) sorted by null

  /external/u-boot/drivers/sound/
sound-i2s.c 97 * @param pi2s_tx i2s parameters required by codec
100 static int codec_init(const void *blob, struct i2stx_info *pi2s_tx)
123 ret = wm8994_init(blob, pi2s_tx->id + 1,
124 pi2s_tx->samplingrate,
125 (pi2s_tx->samplingrate * (pi2s_tx->rfs)),
126 pi2s_tx->bitspersample, pi2s_tx->channels);
128 ret = max98095_init(blob, pi2s_tx->id + 1,
129 pi2s_tx->samplingrate
148 struct i2stx_info *pi2s_tx = &g_i2stx_pri; local
    [all...]
samsung-i2s.c 258 int i2s_transfer_tx_data(struct i2stx_info *pi2s_tx, unsigned int *data,
264 (struct i2s_reg *)pi2s_tx->base_address;
296 int i2s_tx_init(struct i2stx_info *pi2s_tx)
300 (struct i2s_reg *)pi2s_tx->base_address;
301 if (pi2s_tx->id == 0) {
306 ret = set_epll_clk(pi2s_tx->samplingrate * pi2s_tx->rfs * 4);
307 } else if (pi2s_tx->id == 1) {
312 ret = set_epll_clk(pi2s_tx->audio_pll_clk);
314 debug("%s: unsupported i2s-%d bus\n", __func__, pi2s_tx->id)
    [all...]
  /external/u-boot/include/
i2s.h 93 * @param pi2s_tx pointer of i2s transmitter parameter structure.
99 int i2s_transfer_tx_data(struct i2stx_info *pi2s_tx, unsigned *data,
105 * @param pi2s_tx pointer of i2s transmitter parameter structure.
109 int i2s_tx_init(struct i2stx_info *pi2s_tx);

Completed in 90 milliseconds